We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5079ed1 commit af6c5aaCopy full SHA for af6c5aa
1 file changed
src/vscode-list/vscode-list.ts
@@ -31,6 +31,9 @@ export class VscodeList extends VscElement {
31
@property({type: Number, reflect: true})
32
indent = 8;
33
34
+ @property({type: Boolean, reflect: true})
35
+ multiselect = false;
36
+
37
/** @internal */
38
@property({type: String, reflect: true})
39
role = 'tree';
@@ -125,7 +128,7 @@ export class VscodeList extends VscElement {
125
128
}
126
129
127
130
- if (key === 'Enter') {
131
+ if (key === 'Enter' || key === ' ') {
132
const {focusedItem} = this._listContextState;
133
134
if (focusedItem) {
0 commit comments