We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfb0943 commit 91e4d02Copy full SHA for 91e4d02
src/cdk-experimental/ui-patterns/tabs/tablist.ts
@@ -21,9 +21,6 @@ interface SelectOptions {
21
toggle?: boolean;
22
toggleOne?: boolean;
23
selectOne?: boolean;
24
- selectAll?: boolean;
25
- selectFromAnchor?: boolean;
26
- selectFromActive?: boolean;
27
}
28
29
/** The required inputs for the tablist. */
@@ -185,15 +182,6 @@ export class TablistPattern {
185
182
if (opts?.selectOne) {
186
183
this.selection.selectOne();
187
184
188
- if (opts?.selectAll) {
189
- this.selection.selectAll();
190
- }
191
- if (opts?.selectFromAnchor) {
192
- this.selection.selectFromPrevSelectedItem();
193
194
- if (opts?.selectFromActive) {
195
- this.selection.selectFromActive();
196
197
198
199
private _getItem(e: PointerEvent) {
0 commit comments