@@ -66,7 +66,6 @@ const MOUSE_MOVE_THROTTLE_TIME_MS = 10;
66
66
@Directive ( {
67
67
selector : 'table[editable], cdk-table[editable], mat-table[editable]' ,
68
68
providers : [ EditEventDispatcher , EditServices ] ,
69
- standalone : true ,
70
69
} )
71
70
export class CdkEditable implements AfterViewInit , OnDestroy {
72
71
protected readonly elementRef = inject ( ElementRef ) ;
@@ -190,7 +189,6 @@ const POPOVER_EDIT_INPUTS = [
190
189
selector : '[cdkPopoverEdit]:not([cdkPopoverEditTabOut])' ,
191
190
host : POPOVER_EDIT_HOST_BINDINGS ,
192
191
inputs : POPOVER_EDIT_INPUTS ,
193
- standalone : true ,
194
192
} )
195
193
export class CdkPopoverEdit < C > implements AfterViewInit , OnDestroy {
196
194
protected readonly services = inject ( EditServices ) ;
@@ -415,7 +413,6 @@ export class CdkPopoverEdit<C> implements AfterViewInit, OnDestroy {
415
413
selector : '[cdkPopoverEdit][cdkPopoverEditTabOut]' ,
416
414
host : POPOVER_EDIT_HOST_BINDINGS ,
417
415
inputs : POPOVER_EDIT_INPUTS ,
418
- standalone : true ,
419
416
} )
420
417
export class CdkPopoverEditTabOut < C > extends CdkPopoverEdit < C > {
421
418
protected readonly focusEscapeNotifierFactory = inject ( FocusEscapeNotifierFactory ) ;
@@ -446,7 +443,6 @@ export class CdkPopoverEditTabOut<C> extends CdkPopoverEdit<C> {
446
443
*/
447
444
@Directive ( {
448
445
selector : '[cdkRowHoverContent]' ,
449
- standalone : true ,
450
446
} )
451
447
export class CdkRowHoverContent implements AfterViewInit , OnDestroy {
452
448
protected readonly services = inject ( EditServices ) ;
@@ -541,7 +537,6 @@ export class CdkRowHoverContent implements AfterViewInit, OnDestroy {
541
537
host : {
542
538
'(click)' : 'openEdit($event)' ,
543
539
} ,
544
- standalone : true ,
545
540
} )
546
541
export class CdkEditOpen {
547
542
protected readonly elementRef = inject < ElementRef < HTMLElement > > ( ElementRef ) ;
0 commit comments