@lvce-editor/quick-pick-worker 4.12.1 → 4.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -4230,6 +4230,7 @@ const QuickPickItem = 'QuickPickItem';
|
|
|
4230
4230
|
const QuickPickItemActive$1 = 'QuickPickItemActive';
|
|
4231
4231
|
const QuickPickItemDescription = 'QuickPickItemDescription';
|
|
4232
4232
|
const QuickPickItemLabel = 'QuickPickItemLabel';
|
|
4233
|
+
const QuickPickInputWrapper = 'QuickPickInputWrapper';
|
|
4233
4234
|
const QuickPickMaskIcon = 'QuickPickMaskIcon';
|
|
4234
4235
|
const QuickPickStatus = 'QuickPickStatus';
|
|
4235
4236
|
const ScrollBar = 'ScrollBar';
|
|
@@ -4252,7 +4253,11 @@ const QuickPickItemActive = 'QuickPickItemActive';
|
|
|
4252
4253
|
|
|
4253
4254
|
const getQuickPickInputVirtualDom = (placeholder = '') => {
|
|
4254
4255
|
const ariaLabel = typeNameofCommandToRun();
|
|
4255
|
-
return {
|
|
4256
|
+
return [{
|
|
4257
|
+
childCount: 1,
|
|
4258
|
+
className: QuickPickInputWrapper,
|
|
4259
|
+
type: Div
|
|
4260
|
+
}, {
|
|
4256
4261
|
ariaAutoComplete: 'list',
|
|
4257
4262
|
ariaExpanded: true,
|
|
4258
4263
|
ariaLabel: ariaLabel,
|
|
@@ -4269,7 +4274,7 @@ const getQuickPickInputVirtualDom = (placeholder = '') => {
|
|
|
4269
4274
|
role: ComboBox,
|
|
4270
4275
|
spellcheck: false,
|
|
4271
4276
|
type: Input
|
|
4272
|
-
};
|
|
4277
|
+
}];
|
|
4273
4278
|
};
|
|
4274
4279
|
|
|
4275
4280
|
const getQuickPickHeaderVirtualDom = (placeholder = '') => {
|
|
@@ -4277,7 +4282,7 @@ const getQuickPickHeaderVirtualDom = (placeholder = '') => {
|
|
|
4277
4282
|
childCount: 1,
|
|
4278
4283
|
className: QuickPickHeader,
|
|
4279
4284
|
type: Div
|
|
4280
|
-
}, getQuickPickInputVirtualDom(placeholder)];
|
|
4285
|
+
}, ...getQuickPickInputVirtualDom(placeholder)];
|
|
4281
4286
|
};
|
|
4282
4287
|
|
|
4283
4288
|
const getFileIconVirtualDom = icon => {
|