File tree 1 file changed +2
-2
lines changed
src/cdk-experimental/tabs
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -80,15 +80,15 @@ export class CdkTabs {
80
80
'[attr.aria-orientation]' : 'pattern.orientation()' ,
81
81
'[attr.aria-activedescendant]' : 'pattern.activedescendant()' ,
82
82
'(keydown)' : 'pattern.onKeydown($event)' ,
83
- '(mousedown )' : 'pattern.onPointerdown($event)' ,
83
+ '(pointerdown )' : 'pattern.onPointerdown($event)' ,
84
84
} ,
85
85
} )
86
86
export class CdkTablist {
87
87
/** The directionality (LTR / RTL) context for the application (or a subtree of it). */
88
88
private readonly _directionality = inject ( Directionality ) ;
89
89
90
90
/** The CdkTabs nested inside of the CdkTablist. */
91
- private readonly _cdkTabs = contentChildren ( CdkTab , { descendants : true } ) ;
91
+ private readonly _cdkTabs = contentChildren ( CdkTab ) ;
92
92
93
93
/** A signal wrapper for directionality. */
94
94
protected textDirection = toSignal ( this . _directionality . change , {
You can’t perform that action at this time.
0 commit comments