UNPKG

@angular/material

Version:
1 lines 49.6 kB
{"version":3,"file":"radio.mjs","sources":["../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/src/material/radio/radio.ts","../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/src/material/radio/radio.html","../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/src/material/radio/radio-module.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {_IdGenerator, FocusMonitor, FocusOrigin} from '@angular/cdk/a11y';\nimport {UniqueSelectionDispatcher} from '@angular/cdk/collections';\nimport {\n AfterContentInit,\n AfterViewInit,\n ChangeDetectionStrategy,\n ChangeDetectorRef,\n Component,\n ContentChildren,\n Directive,\n DoCheck,\n ElementRef,\n EventEmitter,\n InjectionToken,\n Injector,\n Input,\n NgZone,\n OnDestroy,\n OnInit,\n Output,\n QueryList,\n ViewChild,\n ViewEncapsulation,\n afterNextRender,\n booleanAttribute,\n forwardRef,\n inject,\n numberAttribute,\n HostAttributeToken,\n Renderer2,\n} from '@angular/core';\nimport {ControlValueAccessor, NG_VALUE_ACCESSOR} from '@angular/forms';\nimport {\n MatRipple,\n ThemePalette,\n _MatInternalFormField,\n _StructuralStylesLoader,\n _animationsDisabled,\n} from '../core';\nimport {Subscription} from 'rxjs';\nimport {_CdkPrivateStyleLoader} from '@angular/cdk/private';\n\n/** Change event object emitted by radio button and radio group. */\nexport class MatRadioChange<T = any> {\n constructor(\n /** The radio button that emits the change event. */\n public source: MatRadioButton,\n /** The value of the radio button. */\n public value: T,\n ) {}\n}\n\n/**\n * Provider Expression that allows mat-radio-group to register as a ControlValueAccessor. This\n * allows it to support [(ngModel)] and ngControl.\n * @docs-private\n */\nexport const MAT_RADIO_GROUP_CONTROL_VALUE_ACCESSOR: any = {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => MatRadioGroup),\n multi: true,\n};\n\n/**\n * Injection token that can be used to inject instances of `MatRadioGroup`. It serves as\n * alternative token to the actual `MatRadioGroup` class which could cause unnecessary\n * retention of the class and its component metadata.\n */\nexport const MAT_RADIO_GROUP = new InjectionToken<MatRadioGroup>('MatRadioGroup');\n\nexport interface MatRadioDefaultOptions {\n /**\n * Theme color of the radio button. This API is supported in M2 themes only, it\n * has no effect in M3 themes. For color customization in M3, see https://material.angular.dev/components/radio/styling.\n *\n * For information on applying color variants in M3, see\n * https://material.angular.dev/guide/material-2-theming#optional-add-backwards-compatibility-styles-for-color-variants\n */\n color: ThemePalette;\n\n /** Whether disabled radio buttons should be interactive. */\n disabledInteractive?: boolean;\n}\n\nexport const MAT_RADIO_DEFAULT_OPTIONS = new InjectionToken<MatRadioDefaultOptions>(\n 'mat-radio-default-options',\n {\n providedIn: 'root',\n factory: () => ({\n color: 'accent',\n disabledInteractive: false,\n }),\n },\n);\n\n/**\n * A group of radio buttons. May contain one or more `<mat-radio-button>` elements.\n */\n@Directive({\n selector: 'mat-radio-group',\n exportAs: 'matRadioGroup',\n providers: [\n MAT_RADIO_GROUP_CONTROL_VALUE_ACCESSOR,\n {provide: MAT_RADIO_GROUP, useExisting: MatRadioGroup},\n ],\n host: {\n 'role': 'radiogroup',\n 'class': 'mat-mdc-radio-group',\n },\n})\nexport class MatRadioGroup implements AfterContentInit, OnDestroy, ControlValueAccessor {\n private _changeDetector = inject(ChangeDetectorRef);\n\n /** Selected value for the radio group. */\n private _value: any = null;\n\n /** The HTML name attribute applied to radio buttons in this group. */\n private _name: string = inject(_IdGenerator).getId('mat-radio-group-');\n\n /** The currently selected radio button. Should match value. */\n private _selected: MatRadioButton | null = null;\n\n /** Whether the `value` has been set to its initial value. */\n private _isInitialized: boolean = false;\n\n /** Whether the labels should appear after or before the radio-buttons. Defaults to 'after' */\n private _labelPosition: 'before' | 'after' = 'after';\n\n /** Whether the radio group is disabled. */\n private _disabled: boolean = false;\n\n /** Whether the radio group is required. */\n private _required: boolean = false;\n\n /** Subscription to changes in amount of radio buttons. */\n private _buttonChanges: Subscription;\n\n /** The method to be called in order to update ngModel */\n _controlValueAccessorChangeFn: (value: any) => void = () => {};\n\n /**\n * onTouch function registered via registerOnTouch (ControlValueAccessor).\n * @docs-private\n */\n onTouched: () => any = () => {};\n\n /**\n * Event emitted when the group value changes.\n * Change events are only emitted when the value changes due to user interaction with\n * a radio button (the same behavior as `<input type-\"radio\">`).\n */\n @Output() readonly change: EventEmitter<MatRadioChange> = new EventEmitter<MatRadioChange>();\n\n /** Child radio buttons. */\n @ContentChildren(forwardRef(() => MatRadioButton), {descendants: true})\n _radios: QueryList<MatRadioButton>;\n\n /**\n * Theme color of the radio buttons in the group. This API is supported in M2\n * themes only, it has no effect in M3 themes. For color customization in M3, see https://material.angular.dev/components/radio/styling.\n *\n * For information on applying color variants in M3, see\n * https://material.angular.dev/guide/material-2-theming#optional-add-backwards-compatibility-styles-for-color-variants\n */\n @Input() color: ThemePalette;\n\n /** Name of the radio button group. All radio buttons inside this group will use this name. */\n @Input()\n get name(): string {\n return this._name;\n }\n set name(value: string) {\n this._name = value;\n this._updateRadioButtonNames();\n }\n\n /** Whether the labels should appear after or before the radio-buttons. Defaults to 'after' */\n @Input()\n get labelPosition(): 'before' | 'after' {\n return this._labelPosition;\n }\n set labelPosition(v) {\n this._labelPosition = v === 'before' ? 'before' : 'after';\n this._markRadiosForCheck();\n }\n\n /**\n * Value for the radio-group. Should equal the value of the selected radio button if there is\n * a corresponding radio button with a matching value. If there is not such a corresponding\n * radio button, this value persists to be applied in case a new radio button is added with a\n * matching value.\n */\n @Input()\n get value(): any {\n return this._value;\n }\n set value(newValue: any) {\n if (this._value !== newValue) {\n // Set this before proceeding to ensure no circular loop occurs with selection.\n this._value = newValue;\n\n this._updateSelectedRadioFromValue();\n this._checkSelectedRadioButton();\n }\n }\n\n _checkSelectedRadioButton() {\n if (this._selected && !this._selected.checked) {\n this._selected.checked = true;\n }\n }\n\n /**\n * The currently selected radio button. If set to a new radio button, the radio group value\n * will be updated to match the new selected button.\n */\n @Input()\n get selected() {\n return this._selected;\n }\n set selected(selected: MatRadioButton | null) {\n this._selected = selected;\n this.value = selected ? selected.value : null;\n this._checkSelectedRadioButton();\n }\n\n /** Whether the radio group is disabled */\n @Input({transform: booleanAttribute})\n get disabled(): boolean {\n return this._disabled;\n }\n set disabled(value: boolean) {\n this._disabled = value;\n this._markRadiosForCheck();\n }\n\n /** Whether the radio group is required */\n @Input({transform: booleanAttribute})\n get required(): boolean {\n return this._required;\n }\n set required(value: boolean) {\n this._required = value;\n this._markRadiosForCheck();\n }\n\n /** Whether buttons in the group should be interactive while they're disabled. */\n @Input({transform: booleanAttribute})\n get disabledInteractive(): boolean {\n return this._disabledInteractive;\n }\n set disabledInteractive(value: boolean) {\n this._disabledInteractive = value;\n this._markRadiosForCheck();\n }\n private _disabledInteractive = false;\n\n constructor(...args: unknown[]);\n\n constructor() {}\n\n /**\n * Initialize properties once content children are available.\n * This allows us to propagate relevant attributes to associated buttons.\n */\n ngAfterContentInit() {\n // Mark this component as initialized in AfterContentInit because the initial value can\n // possibly be set by NgModel on MatRadioGroup, and it is possible that the OnInit of the\n // NgModel occurs *after* the OnInit of the MatRadioGroup.\n this._isInitialized = true;\n\n // Clear the `selected` button when it's destroyed since the tabindex of the rest of the\n // buttons depends on it. Note that we don't clear the `value`, because the radio button\n // may be swapped out with a similar one and there are some internal apps that depend on\n // that behavior.\n this._buttonChanges = this._radios.changes.subscribe(() => {\n if (this.selected && !this._radios.find(radio => radio === this.selected)) {\n this._selected = null;\n }\n });\n }\n\n ngOnDestroy() {\n this._buttonChanges?.unsubscribe();\n }\n\n /**\n * Mark this group as being \"touched\" (for ngModel). Meant to be called by the contained\n * radio buttons upon their blur.\n */\n _touch() {\n if (this.onTouched) {\n this.onTouched();\n }\n }\n\n private _updateRadioButtonNames(): void {\n if (this._radios) {\n this._radios.forEach(radio => {\n radio.name = this.name;\n radio._markForCheck();\n });\n }\n }\n\n /** Updates the `selected` radio button from the internal _value state. */\n private _updateSelectedRadioFromValue(): void {\n // If the value already matches the selected radio, do nothing.\n const isAlreadySelected = this._selected !== null && this._selected.value === this._value;\n\n if (this._radios && !isAlreadySelected) {\n this._selected = null;\n this._radios.forEach(radio => {\n radio.checked = this.value === radio.value;\n if (radio.checked) {\n this._selected = radio;\n }\n });\n }\n }\n\n /** Dispatch change event with current selection and group value. */\n _emitChangeEvent(): void {\n if (this._isInitialized) {\n this.change.emit(new MatRadioChange(this._selected!, this._value));\n }\n }\n\n _markRadiosForCheck() {\n if (this._radios) {\n this._radios.forEach(radio => radio._markForCheck());\n }\n }\n\n /**\n * Sets the model value. Implemented as part of ControlValueAccessor.\n * @param value\n */\n writeValue(value: any) {\n this.value = value;\n this._changeDetector.markForCheck();\n }\n\n /**\n * Registers a callback to be triggered when the model value changes.\n * Implemented as part of ControlValueAccessor.\n * @param fn Callback to be registered.\n */\n registerOnChange(fn: (value: any) => void) {\n this._controlValueAccessorChangeFn = fn;\n }\n\n /**\n * Registers a callback to be triggered when the control is touched.\n * Implemented as part of ControlValueAccessor.\n * @param fn Callback to be registered.\n */\n registerOnTouched(fn: any) {\n this.onTouched = fn;\n }\n\n /**\n * Sets the disabled state of the control. Implemented as a part of ControlValueAccessor.\n * @param isDisabled Whether the control should be disabled.\n */\n setDisabledState(isDisabled: boolean) {\n this.disabled = isDisabled;\n this._changeDetector.markForCheck();\n }\n}\n\n@Component({\n selector: 'mat-radio-button',\n templateUrl: 'radio.html',\n styleUrl: 'radio.css',\n host: {\n 'class': 'mat-mdc-radio-button',\n '[attr.id]': 'id',\n '[class.mat-primary]': 'color === \"primary\"',\n '[class.mat-accent]': 'color === \"accent\"',\n '[class.mat-warn]': 'color === \"warn\"',\n '[class.mat-mdc-radio-checked]': 'checked',\n '[class.mat-mdc-radio-disabled]': 'disabled',\n '[class.mat-mdc-radio-disabled-interactive]': 'disabledInteractive',\n '[class._mat-animation-noopable]': '_noopAnimations',\n // Needs to be removed since it causes some a11y issues (see #21266).\n '[attr.tabindex]': 'null',\n '[attr.aria-label]': 'null',\n '[attr.aria-labelledby]': 'null',\n '[attr.aria-describedby]': 'null',\n // Note: under normal conditions focus shouldn't land on this element, however it may be\n // programmatically set, for example inside of a focus trap, in this case we want to forward\n // the focus to the native element.\n '(focus)': '_inputElement.nativeElement.focus()',\n },\n exportAs: 'matRadioButton',\n encapsulation: ViewEncapsulation.None,\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [MatRipple, _MatInternalFormField],\n})\nexport class MatRadioButton implements OnInit, AfterViewInit, DoCheck, OnDestroy {\n protected _elementRef = inject(ElementRef);\n private _changeDetector = inject(ChangeDetectorRef);\n private _focusMonitor = inject(FocusMonitor);\n private _radioDispatcher = inject(UniqueSelectionDispatcher);\n private _defaultOptions = inject<MatRadioDefaultOptions>(MAT_RADIO_DEFAULT_OPTIONS, {\n optional: true,\n });\n\n private _ngZone = inject(NgZone);\n private _renderer = inject(Renderer2);\n private _uniqueId = inject(_IdGenerator).getId('mat-radio-');\n private _cleanupClick: (() => void) | undefined;\n\n /** The unique ID for the radio button. */\n @Input() id: string = this._uniqueId;\n\n /** Analog to HTML 'name' attribute used to group radios for unique selection. */\n @Input() name: string;\n\n /** Used to set the 'aria-label' attribute on the underlying input element. */\n @Input('aria-label') ariaLabel: string;\n\n /** The 'aria-labelledby' attribute takes precedence as the element's text alternative. */\n @Input('aria-labelledby') ariaLabelledby: string;\n\n /** The 'aria-describedby' attribute is read after the element's label and field type. */\n @Input('aria-describedby') ariaDescribedby: string;\n\n /** Whether ripples are disabled inside the radio button */\n @Input({transform: booleanAttribute})\n disableRipple: boolean = false;\n\n /** Tabindex of the radio button. */\n @Input({\n transform: (value: unknown) => (value == null ? 0 : numberAttribute(value)),\n })\n tabIndex: number = 0;\n\n /** Whether this radio button is checked. */\n @Input({transform: booleanAttribute})\n get checked(): boolean {\n return this._checked;\n }\n set checked(value: boolean) {\n if (this._checked !== value) {\n this._checked = value;\n if (value && this.radioGroup && this.radioGroup.value !== this.value) {\n this.radioGroup.selected = this;\n } else if (!value && this.radioGroup && this.radioGroup.value === this.value) {\n // When unchecking the selected radio button, update the selected radio\n // property on the group.\n this.radioGroup.selected = null;\n }\n\n if (value) {\n // Notify all radio buttons with the same name to un-check.\n this._radioDispatcher.notify(this.id, this.name);\n }\n this._changeDetector.markForCheck();\n }\n }\n\n /** The value of this radio button. */\n @Input()\n get value(): any {\n return this._value;\n }\n set value(value: any) {\n if (this._value !== value) {\n this._value = value;\n if (this.radioGroup !== null) {\n if (!this.checked) {\n // Update checked when the value changed to match the radio group's value\n this.checked = this.radioGroup.value === value;\n }\n if (this.checked) {\n this.radioGroup.selected = this;\n }\n }\n }\n }\n\n /** Whether the label should appear after or before the radio button. Defaults to 'after' */\n @Input()\n get labelPosition(): 'before' | 'after' {\n return this._labelPosition || (this.radioGroup && this.radioGroup.labelPosition) || 'after';\n }\n set labelPosition(value) {\n this._labelPosition = value;\n }\n private _labelPosition: 'before' | 'after';\n\n /** Whether the radio button is disabled. */\n @Input({transform: booleanAttribute})\n get disabled(): boolean {\n return this._disabled || (this.radioGroup !== null && this.radioGroup.disabled);\n }\n set disabled(value: boolean) {\n this._setDisabled(value);\n }\n\n /** Whether the radio button is required. */\n @Input({transform: booleanAttribute})\n get required(): boolean {\n return this._required || (this.radioGroup && this.radioGroup.required);\n }\n set required(value: boolean) {\n if (value !== this._required) {\n this._changeDetector.markForCheck();\n }\n this._required = value;\n }\n\n /**\n * Theme color of the radio button. This API is supported in M2 themes only, it\n * has no effect in M3 themes. For color customization in M3, see https://material.angular.dev/components/radio/styling.\n *\n * For information on applying color variants in M3, see\n * https://material.angular.dev/guide/material-2-theming#optional-add-backwards-compatibility-styles-for-color-variants\n */\n @Input()\n get color(): ThemePalette {\n // As per M2 design specifications the selection control radio should use the accent color\n // palette by default. https://m2.material.io/components/radio-buttons#specs\n return (\n this._color ||\n (this.radioGroup && this.radioGroup.color) ||\n (this._defaultOptions && this._defaultOptions.color) ||\n 'accent'\n );\n }\n set color(newValue: ThemePalette) {\n this._color = newValue;\n }\n private _color: ThemePalette;\n\n /** Whether the radio button should remain interactive when it is disabled. */\n @Input({transform: booleanAttribute})\n get disabledInteractive(): boolean {\n return (\n this._disabledInteractive || (this.radioGroup !== null && this.radioGroup.disabledInteractive)\n );\n }\n set disabledInteractive(value: boolean) {\n this._disabledInteractive = value;\n }\n private _disabledInteractive: boolean;\n\n /**\n * Event emitted when the checked state of this radio button changes.\n * Change events are only emitted when the value changes due to user interaction with\n * the radio button (the same behavior as `<input type-\"radio\">`).\n */\n @Output() readonly change: EventEmitter<MatRadioChange> = new EventEmitter<MatRadioChange>();\n\n /** The parent radio group. May or may not be present. */\n radioGroup: MatRadioGroup;\n\n /** ID of the native input element inside `<mat-radio-button>` */\n get inputId(): string {\n return `${this.id || this._uniqueId}-input`;\n }\n\n /** Whether this radio is checked. */\n private _checked: boolean = false;\n\n /** Whether this radio is disabled. */\n private _disabled: boolean;\n\n /** Whether this radio is required. */\n private _required: boolean;\n\n /** Value assigned to this radio. */\n private _value: any = null;\n\n /** Unregister function for _radioDispatcher */\n private _removeUniqueSelectionListener: () => void = () => {};\n\n /** Previous value of the input's tabindex. */\n private _previousTabIndex: number | undefined;\n\n /** The native `<input type=radio>` element */\n @ViewChild('input') _inputElement: ElementRef<HTMLInputElement>;\n\n /** Trigger elements for the ripple events. */\n @ViewChild('formField', {read: ElementRef, static: true})\n _rippleTrigger: ElementRef<HTMLElement>;\n\n /** Whether animations are disabled. */\n _noopAnimations = _animationsDisabled();\n\n private _injector = inject(Injector);\n\n constructor(...args: unknown[]);\n\n constructor() {\n inject(_CdkPrivateStyleLoader).load(_StructuralStylesLoader);\n const radioGroup = inject<MatRadioGroup>(MAT_RADIO_GROUP, {optional: true})!;\n const tabIndex = inject(new HostAttributeToken('tabindex'), {optional: true});\n\n // Assertions. Ideally these should be stripped out by the compiler.\n // TODO(jelbourn): Assert that there's no name binding AND a parent radio group.\n this.radioGroup = radioGroup;\n this._disabledInteractive = this._defaultOptions?.disabledInteractive ?? false;\n\n if (tabIndex) {\n this.tabIndex = numberAttribute(tabIndex, 0);\n }\n }\n\n /** Focuses the radio button. */\n focus(options?: FocusOptions, origin?: FocusOrigin): void {\n if (origin) {\n this._focusMonitor.focusVia(this._inputElement, origin, options);\n } else {\n this._inputElement.nativeElement.focus(options);\n }\n }\n\n /**\n * Marks the radio button as needing checking for change detection.\n * This method is exposed because the parent radio group will directly\n * update bound properties of the radio button.\n */\n _markForCheck() {\n // When group value changes, the button will not be notified. Use `markForCheck` to explicit\n // update radio button's status\n this._changeDetector.markForCheck();\n }\n\n ngOnInit() {\n if (this.radioGroup) {\n // If the radio is inside a radio group, determine if it should be checked\n this.checked = this.radioGroup.value === this._value;\n\n if (this.checked) {\n this.radioGroup.selected = this;\n }\n\n // Copy name from parent radio group\n this.name = this.radioGroup.name;\n }\n\n this._removeUniqueSelectionListener = this._radioDispatcher.listen((id, name) => {\n if (id !== this.id && name === this.name) {\n this.checked = false;\n }\n });\n }\n\n ngDoCheck(): void {\n this._updateTabIndex();\n }\n\n ngAfterViewInit() {\n this._updateTabIndex();\n this._focusMonitor.monitor(this._elementRef, true).subscribe(focusOrigin => {\n if (!focusOrigin && this.radioGroup) {\n this.radioGroup._touch();\n }\n });\n\n // We bind this outside of the zone, because:\n // 1. Its logic is completely DOM-related so we can avoid some change detections.\n // 2. There appear to be some internal tests that break when this triggers a change detection.\n this._ngZone.runOutsideAngular(() => {\n this._cleanupClick = this._renderer.listen(\n this._inputElement.nativeElement,\n 'click',\n this._onInputClick,\n );\n });\n }\n\n ngOnDestroy() {\n this._cleanupClick?.();\n this._focusMonitor.stopMonitoring(this._elementRef);\n this._removeUniqueSelectionListener();\n }\n\n /** Dispatch change event with current value. */\n private _emitChangeEvent(): void {\n this.change.emit(new MatRadioChange(this, this._value));\n }\n\n _isRippleDisabled() {\n return this.disableRipple || this.disabled;\n }\n\n /** Triggered when the radio button receives an interaction from the user. */\n _onInputInteraction(event: Event) {\n // We always have to stop propagation on the change event.\n // Otherwise the change event, from the input element, will bubble up and\n // emit its event object to the `change` output.\n event.stopPropagation();\n\n if (!this.checked && !this.disabled) {\n const groupValueChanged = this.radioGroup && this.value !== this.radioGroup.value;\n this.checked = true;\n this._emitChangeEvent();\n\n if (this.radioGroup) {\n this.radioGroup._controlValueAccessorChangeFn(this.value);\n if (groupValueChanged) {\n this.radioGroup._emitChangeEvent();\n }\n }\n }\n }\n\n /** Triggered when the user clicks on the touch target. */\n _onTouchTargetClick(event: Event) {\n this._onInputInteraction(event);\n\n if (!this.disabled || this.disabledInteractive) {\n // Normally the input should be focused already, but if the click\n // comes from the touch target, then we might have to focus it ourselves.\n this._inputElement?.nativeElement.focus();\n }\n }\n\n /** Sets the disabled state and marks for check if a change occurred. */\n protected _setDisabled(value: boolean) {\n if (this._disabled !== value) {\n this._disabled = value;\n this._changeDetector.markForCheck();\n }\n }\n\n /** Called when the input is clicked. */\n private _onInputClick = (event: Event) => {\n // If the input is disabled while interactive, we need to prevent the\n // selection from happening in this event handler. Note that even though\n // this happens on `click` events, the logic applies when the user is\n // navigating with the keyboard as well. An alternative way of doing\n // this is by resetting the `checked` state in the `change` callback but\n // it isn't optimal, because it can allow a pre-checked disabled button\n // to be un-checked. This approach seems to cover everything.\n if (this.disabled && this.disabledInteractive) {\n event.preventDefault();\n }\n };\n\n /** Gets the tabindex for the underlying input element. */\n private _updateTabIndex() {\n const group = this.radioGroup;\n let value: number;\n\n // Implement a roving tabindex if the button is inside a group. For most cases this isn't\n // necessary, because the browser handles the tab order for inputs inside a group automatically,\n // but we need an explicitly higher tabindex for the selected button in order for things like\n // the focus trap to pick it up correctly.\n if (!group || !group.selected || this.disabled) {\n value = this.tabIndex;\n } else {\n value = group.selected === this ? this.tabIndex : -1;\n }\n\n if (value !== this._previousTabIndex) {\n // We have to set the tabindex directly on the DOM node, because it depends on\n // the selected state which is prone to \"changed after checked errors\".\n const input: HTMLInputElement | undefined = this._inputElement?.nativeElement;\n\n if (input) {\n input.setAttribute('tabindex', value + '');\n this._previousTabIndex = value;\n // Wait for any pending tabindex changes to be applied\n afterNextRender(\n () => {\n queueMicrotask(() => {\n // The radio group uses a \"selection follows focus\" pattern for tab management, so if this\n // radio button is currently focused and another radio button in the group becomes\n // selected, we should move focus to the newly selected radio button to maintain\n // consistency between the focused and selected states.\n if (\n group &&\n group.selected &&\n group.selected !== this &&\n document.activeElement === input\n ) {\n group.selected?._inputElement.nativeElement.focus();\n // If this radio button still has focus, the selected one must be disabled. In this\n // case the radio group as a whole should lose focus.\n if (document.activeElement === input) {\n this._inputElement.nativeElement.blur();\n }\n }\n });\n },\n {injector: this._injector},\n );\n }\n }\n }\n}\n","<div mat-internal-form-field [labelPosition]=\"labelPosition\" #formField>\n <div class=\"mdc-radio\" [class.mdc-radio--disabled]=\"disabled\">\n <!-- Render this element first so the input is on top. -->\n <div class=\"mat-mdc-radio-touch-target\" (click)=\"_onTouchTargetClick($event)\"></div>\n <!--\n Note that we set `aria-invalid=\"false\"` on the input, because otherwise some screen readers\n will read out \"required, invalid data\" for each radio button that hasn't been checked.\n An alternate approach is to use `aria-required` instead of `required`, however we have an\n internal check which enforces that elements marked as `aria-required` also have the `required`\n attribute which ends up re-introducing the issue for us.\n -->\n <input #input class=\"mdc-radio__native-control\" type=\"radio\"\n [id]=\"inputId\"\n [checked]=\"checked\"\n [disabled]=\"disabled && !disabledInteractive\"\n [attr.name]=\"name\"\n [attr.value]=\"value\"\n [required]=\"required\"\n aria-invalid=\"false\"\n [attr.aria-label]=\"ariaLabel\"\n [attr.aria-labelledby]=\"ariaLabelledby\"\n [attr.aria-describedby]=\"ariaDescribedby\"\n [attr.aria-disabled]=\"disabled && disabledInteractive ? 'true' : null\"\n (change)=\"_onInputInteraction($event)\">\n <div class=\"mdc-radio__background\">\n <div class=\"mdc-radio__outer-circle\"></div>\n <div class=\"mdc-radio__inner-circle\"></div>\n </div>\n <div mat-ripple class=\"mat-radio-ripple mat-focus-indicator\"\n [matRippleTrigger]=\"_rippleTrigger.nativeElement\"\n [matRippleDisabled]=\"_isRippleDisabled()\"\n [matRippleCentered]=\"true\">\n <div class=\"mat-ripple-element mat-radio-persistent-ripple\"></div>\n </div>\n </div>\n <label class=\"mdc-label\" [for]=\"inputId\">\n <ng-content></ng-content>\n </label>\n</div>\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {BidiModule} from '@angular/cdk/bidi';\nimport {NgModule} from '@angular/core';\nimport {MatRippleModule} from '../core';\nimport {MatRadioButton, MatRadioGroup} from './radio';\n\n@NgModule({\n imports: [MatRippleModule, MatRadioGroup, MatRadioButton],\n exports: [BidiModule, MatRadioGroup, MatRadioButton],\n})\nexport class MatRadioModule {}\n"],"names":["MatRadioChange","source","value","constructor","MAT_RADIO_GROUP_CONTROL_VALUE_ACCESSOR","provide","NG_VALUE_ACCESSOR","useExisting","forwardRef","MatRadioGroup","multi","MAT_RADIO_GROUP","InjectionToken","MAT_RADIO_DEFAULT_OPTIONS","providedIn","factory","color","disabledInteractive","_changeDetector","inject","ChangeDetectorRef","_value","_name","_IdGenerator","getId","_selected","_isInitialized","_labelPosition","_disabled","_required","_buttonChanges","_controlValueAccessorChangeFn","onTouched","change","EventEmitter","_radios","name","_updateRadioButtonNames","labelPosition","v","_markRadiosForCheck","newValue","_updateSelectedRadioFromValue","_checkSelectedRadioButton","checked","selected","disabled","required","_disabledInteractive","ngAfterContentInit","changes","subscribe","find","radio","ngOnDestroy","unsubscribe","_touch","forEach","_markForCheck","isAlreadySelected","_emitChangeEvent","emit","writeValue","markForCheck","registerOnChange","fn","registerOnTouched","setDisabledState","isDisabled","deps","target","i0","ɵɵFactoryTarget","Directive","ɵdir","ɵɵngDeclareDirective","minVersion","version","type","booleanAttribute","outputs","host","attributes","classAttribute","providers","queries","propertyName","predicate","MatRadioButton","descendants","exportAs","ngImport","decorators","args","selector","Output","ContentChildren","Input","transform","_elementRef","ElementRef","_focusMonitor","FocusMonitor","_radioDispatcher","UniqueSelectionDispatcher","_defaultOptions","optional","_ngZone","NgZone","_renderer","Renderer2","_uniqueId","_cleanupClick","id","ariaLabel","ariaLabelledby","ariaDescribedby","disableRipple","tabIndex","_checked","radioGroup","notify","_setDisabled","_color","inputId","_removeUniqueSelectionListener","_previousTabIndex","_inputElement","_rippleTrigger","_noopAnimations","_animationsDisabled","_injector","Injector","_CdkPrivateStyleLoader","load","_StructuralStylesLoader","HostAttributeToken","numberAttribute","focus","options","origin","focusVia","nativeElement","ngOnInit","listen","ngDoCheck","_updateTabIndex","ngAfterViewInit","monitor","focusOrigin","runOutsideAngular","_onInputClick","stopMonitoring","_isRippleDisabled","_onInputInteraction","event","stopPropagation","groupValueChanged","_onTouchTargetClick","preventDefault","group","input","setAttribute","afterNextRender","queueMicrotask","document","activeElement","blur","injector","Component","ɵcmp","ɵɵngDeclareComponent","static","template","styles","dependencies","kind","MatRipple","_MatInternalFormField","inputs","changeDetection","ChangeDetectionStrategy","OnPush","encapsulation","ViewEncapsulation","None","imports","ViewChild","read","MatRadioModule","NgModule","MatRippleModule","exports","BidiModule","ɵinj","ɵɵngDeclareInjector"],"mappings":"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"}