File tree Expand file tree Collapse file tree 1 file changed +0
-8
lines changed
src/cdk-experimental/ui-patterns/listbox Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -20,9 +20,7 @@ import {SignalLike} from '../behaviors/signal-like/signal-like';
2020/** The selection operations that the listbox can perform. */
2121interface SelectOptions {
2222 toggle ?: boolean ;
23- toggleOne ?: boolean ;
2423 selectOne ?: boolean ;
25- toggleAll ?: boolean ;
2624 selectRange ?: boolean ;
2725 anchor ?: boolean ;
2826}
@@ -314,15 +312,9 @@ export class ListboxPattern<V> {
314312 if ( opts . toggle ) {
315313 this . selection . toggle ( ) ;
316314 }
317- if ( opts . toggleOne ) {
318- this . selection . toggleOne ( ) ;
319- }
320315 if ( opts . selectOne ) {
321316 this . selection . selectOne ( ) ;
322317 }
323- if ( opts . toggleAll ) {
324- this . selection . toggleAll ( ) ;
325- }
326318 if ( opts . selectRange ) {
327319 this . selection . selectRange ( ) ;
328320 }
You can’t perform that action at this time.
0 commit comments