File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
src/cdk-experimental/ui-patterns/tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ export class TreePattern<V> {
168
168
/** The id of the current active item. */
169
169
readonly activedescendant = computed ( ( ) => this . focusManager . getActiveDescendant ( ) ) ;
170
170
171
- /** Whether the tree is in multi selection mode . */
171
+ /** Whether the tree is performing a range selection . */
172
172
readonly inSelection = signal ( false ) ;
173
173
174
174
/** The direct children of the root (top-level tree items). */
@@ -378,6 +378,8 @@ export class TreePattern<V> {
378
378
} ) ;
379
379
}
380
380
381
+ // TODO(ok7sai): add `setDefaultState` method.
382
+
381
383
/** Handles keydown events on the tree. */
382
384
onKeydown ( event : KeyboardEvent ) {
383
385
if ( ! this . disabled ( ) ) {
You can’t perform that action at this time.
0 commit comments