File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change 8
8
9
9
import {
10
10
afterRenderEffect ,
11
- AfterViewInit ,
12
11
booleanAttribute ,
13
12
computed ,
14
13
contentChildren ,
@@ -104,9 +103,6 @@ export class CdkRadioGroup<V> {
104
103
/** Whether the radio group has received focus yet. */
105
104
private _hasFocused = signal ( false ) ;
106
105
107
- /** Whether the radio buttons in the group have been initialized. */
108
- private _isViewInitialized = signal ( false ) ;
109
-
110
106
constructor ( ) {
111
107
afterRenderEffect ( ( ) => {
112
108
if ( ! this . _hasFocused ( ) ) {
Original file line number Diff line number Diff line change 6
6
* found in the LICENSE file at https://angular.dev/license
7
7
*/
8
8
9
- import { computed , signal } from '@angular/core' ;
9
+ import { computed } from '@angular/core' ;
10
10
import { KeyboardEventManager } from '../behaviors/event-manager/keyboard-event-manager' ;
11
11
import { PointerEventManager } from '../behaviors/event-manager/pointer-event-manager' ;
12
12
import { ListFocus , ListFocusInputs } from '../behaviors/list-focus/list-focus' ;
You can’t perform that action at this time.
0 commit comments