Skip to content

Commit 39a8707

Browse files
committed
fixup! feat(cdk-experimental/radio): create radio group and button directives
1 parent 9d2e2fa commit 39a8707

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

src/cdk-experimental/radio/radio.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
import {
1010
afterRenderEffect,
11-
AfterViewInit,
1211
booleanAttribute,
1312
computed,
1413
contentChildren,
@@ -104,9 +103,6 @@ export class CdkRadioGroup<V> {
104103
/** Whether the radio group has received focus yet. */
105104
private _hasFocused = signal(false);
106105

107-
/** Whether the radio buttons in the group have been initialized. */
108-
private _isViewInitialized = signal(false);
109-
110106
constructor() {
111107
afterRenderEffect(() => {
112108
if (!this._hasFocused()) {

src/cdk-experimental/ui-patterns/radio/radio-group.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* found in the LICENSE file at https://angular.dev/license
77
*/
88

9-
import {computed, signal} from '@angular/core';
9+
import {computed} from '@angular/core';
1010
import {KeyboardEventManager} from '../behaviors/event-manager/keyboard-event-manager';
1111
import {PointerEventManager} from '../behaviors/event-manager/pointer-event-manager';
1212
import {ListFocus, ListFocusInputs} from '../behaviors/list-focus/list-focus';

0 commit comments

Comments
 (0)