File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/cdk-experimental/tabs Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -80,15 +80,15 @@ export class CdkTabs {
8080 '[attr.aria-orientation]' : 'pattern.orientation()' ,
8181 '[attr.aria-activedescendant]' : 'pattern.activedescendant()' ,
8282 '(keydown)' : 'pattern.onKeydown($event)' ,
83- '(mousedown )' : 'pattern.onPointerdown($event)' ,
83+ '(pointerdown )' : 'pattern.onPointerdown($event)' ,
8484 } ,
8585} )
8686export class CdkTablist {
8787 /** The directionality (LTR / RTL) context for the application (or a subtree of it). */
8888 private readonly _directionality = inject ( Directionality ) ;
8989
9090 /** The CdkTabs nested inside of the CdkTablist. */
91- private readonly _cdkTabs = contentChildren ( CdkTab , { descendants : true } ) ;
91+ private readonly _cdkTabs = contentChildren ( CdkTab ) ;
9292
9393 /** A signal wrapper for directionality. */
9494 protected textDirection = toSignal ( this . _directionality . change , {
You can’t perform that action at this time.
0 commit comments