@lvce-editor/virtual-dom-worker 2.18.0 → 3.1.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.
Files changed (63) hide show
  1. package/dist/index.d.ts +2 -533
  2. package/dist/index.js +1 -1301
  3. package/dist/parts/AddPatch/AddPatch.js +1 -0
  4. package/dist/parts/ApplyPendingPatches/ApplyPendingPatches.js +17 -0
  5. package/dist/parts/AriaLive/AriaLive.js +1 -0
  6. package/dist/parts/AttributePatch/AttributePatch.js +1 -0
  7. package/dist/parts/DomEventListener/DomEventListener.js +1 -0
  8. package/dist/parts/GetKeys/GetKeys.js +5 -0
  9. package/dist/parts/GetTotalChildCount/GetTotalChildCount.js +11 -0
  10. package/dist/parts/InputEventType/InputEventType.js +8 -0
  11. package/dist/parts/IsKey/IsKey.js +3 -0
  12. package/dist/parts/Main/Main.js +6 -0
  13. package/dist/parts/MergeClassNames/MergeClassNames.js +3 -0
  14. package/dist/parts/MouseEventType/MouseEventType.js +2 -0
  15. package/dist/parts/NavigateChildPatch/NavigateChildPatch.js +1 -0
  16. package/dist/parts/NavigateParentPatch/NavigateParentPatch.js +1 -0
  17. package/dist/parts/NavigateSiblingPatch/NavigateSiblingPatch.js +1 -0
  18. package/dist/parts/Patch/Patch.js +1 -0
  19. package/dist/parts/PatchType/PatchType.js +10 -0
  20. package/dist/parts/Px/Px.js +6 -0
  21. package/dist/parts/RemoveAttributePatch/RemoveAttributePatch.js +1 -0
  22. package/dist/parts/RemoveChildPatch/RemoveChildPatch.js +1 -0
  23. package/dist/parts/RemovePatch/RemovePatch.js +1 -0
  24. package/dist/parts/ReplacePatch/ReplacePatch.js +1 -0
  25. package/dist/parts/Text/Text.js +8 -0
  26. package/dist/parts/TextPatch/TextPatch.js +1 -0
  27. package/dist/parts/VirtualDomDiff/VirtualDomDiff.js +176 -0
  28. package/dist/parts/VirtualDomNode/VirtualDomNode.js +1 -0
  29. package/dist/parts/WhenExpression/WhenExpression.js +54 -0
  30. package/package.json +4 -1
  31. package/src/index.ts +0 -1
  32. package/src/parts/AddPatch/AddPatch.ts +0 -6
  33. package/src/parts/ApplyPendingPatches/ApplyPendingPatches.ts +0 -22
  34. package/src/parts/AriaLive/AriaLive.ts +0 -1
  35. package/src/parts/AriaRoles/AriaRoles.ts +0 -18
  36. package/src/parts/AttributePatch/AttributePatch.ts +0 -5
  37. package/src/parts/ClassNames/ClassNames.ts +0 -233
  38. package/src/parts/DomEventListener/DomEventListener.ts +0 -6
  39. package/src/parts/GetKeys/GetKeys.ts +0 -7
  40. package/src/parts/GetTotalChildCount/GetTotalChildCount.ts +0 -16
  41. package/src/parts/InputEventType/InputEventType.ts +0 -15
  42. package/src/parts/IsKey/IsKey.ts +0 -3
  43. package/src/parts/KeyCode/KeyCode.ts +0 -149
  44. package/src/parts/KeyModifier/KeyModifier.ts +0 -4
  45. package/src/parts/Main/Main.ts +0 -14
  46. package/src/parts/MergeClassNames/MergeClassNames.ts +0 -3
  47. package/src/parts/MouseEventType/MouseEventType.ts +0 -3
  48. package/src/parts/NavigateChildPatch/NavigateChildPatch.ts +0 -4
  49. package/src/parts/NavigateParentPatch/NavigateParentPatch.ts +0 -3
  50. package/src/parts/NavigateSiblingPatch/NavigateSiblingPatch.ts +0 -4
  51. package/src/parts/Patch/Patch.ts +0 -22
  52. package/src/parts/PatchType/PatchType.ts +0 -10
  53. package/src/parts/Px/Px.ts +0 -7
  54. package/src/parts/RemoveAttributePatch/RemoveAttributePatch.ts +0 -4
  55. package/src/parts/RemoveChildPatch/RemoveChildPatch.ts +0 -4
  56. package/src/parts/RemovePatch/RemovePatch.ts +0 -4
  57. package/src/parts/ReplacePatch/ReplacePatch.ts +0 -7
  58. package/src/parts/Text/Text.ts +0 -10
  59. package/src/parts/TextPatch/TextPatch.ts +0 -4
  60. package/src/parts/VirtualDomDiff/VirtualDomDiff.ts +0 -202
  61. package/src/parts/VirtualDomElements/VirtualDomElements.ts +0 -57
  62. package/src/parts/VirtualDomNode/VirtualDomNode.ts +0 -4
  63. package/src/parts/WhenExpression/WhenExpression.ts +0 -53
package/dist/index.js CHANGED
@@ -1,1301 +1 @@
1
- const Polite = 'polite';
2
-
3
- const AriaLive = {
4
- __proto__: null,
5
- Polite
6
- };
7
-
8
- const Alert = 'alert';
9
- const Button$2 = 'button';
10
- const CheckBox = 'checkbox';
11
- const ComboBox = 'combobox';
12
- const Document = 'document';
13
- const Group = 'group';
14
- const ListBox = 'listbox';
15
- const Log = 'log';
16
- const None = 'none';
17
- const Option$1 = 'option';
18
- const Panel = 'panel';
19
- const ScrollBar$1 = 'scrollbar';
20
- const Status = 'status';
21
- const Tab$1 = 'tab';
22
- const TabList = 'tablist';
23
- const ToolBar = 'toolbar';
24
- const Tree$1 = 'tree';
25
- const TreeItem$1 = 'treeitem';
26
-
27
- const AriaRoles = {
28
- __proto__: null,
29
- Alert,
30
- Button: Button$2,
31
- CheckBox,
32
- ComboBox,
33
- Document,
34
- Group,
35
- ListBox,
36
- Log,
37
- None,
38
- Option: Option$1,
39
- Panel,
40
- ScrollBar: ScrollBar$1,
41
- Status,
42
- Tab: Tab$1,
43
- TabList,
44
- ToolBar,
45
- Tree: Tree$1,
46
- TreeItem: TreeItem$1
47
- };
48
-
49
- const Actions = 'Actions';
50
- const AdditionalDetails = 'AdditionalDetails';
51
- const AdditionalDetailsEntry = 'AdditionalDetailsEntry';
52
- const AdditionalDetailsTitle = 'AdditionalDetailsTitle';
53
- const Aside$1 = 'Aside';
54
- const Badge = 'Badge';
55
- const Button$1 = 'Button';
56
- const ButtonPrimary = 'ButtonPrimary';
57
- const CallStackArrow = 'CallStackArrow';
58
- const CallStackDescription = 'CallStackDescription';
59
- const CallStackLabel = 'CallStackLabel';
60
- const Categories = 'Categories';
61
- const Category = 'Category';
62
- const Changelog = 'Changelog';
63
- const Chevron = 'Chevron';
64
- const CloseMaskIcon = 'MaskIcon MaskIconClose';
65
- const CodeGeneratorInput = 'CodeGeneratorInput';
66
- const CodeGeneratorMessage = 'CodeGeneratorMessage';
67
- const CodeGeneratorWidget = 'CodeGeneratorWidget';
68
- const ColoredMaskIcon = 'ColoredMaskIcon';
69
- const ColorPicker = 'ColorPicker';
70
- const ColorPickerBackgroundColor = 'ColorPickerBackgroundColor';
71
- const ColorPickerDark = 'ColorPickerDark';
72
- const ColorPickerLight = 'ColorPickerLight';
73
- const ColorPickerRectangle = 'ColorPickerRectangle';
74
- const ColorPickerSlider = 'ColorPickerSlider';
75
- const ColorPickerSliderThumb = 'ColorPickerSliderThumb';
76
- const CompletionDetailCloseButton = 'CompletionDetailCloseButton';
77
- const CompletionDetailContent = 'CompletionDetailContent';
78
- const DebugButton = 'DebugButton';
79
- const DebugButtons = 'DebugButtons';
80
- const DebugPausedMessage = 'DebugPausedMessage';
81
- const DebugPropertyChevron = 'DebugPropertyChevron';
82
- const DebugPropertyKey = 'DebugPropertyKey';
83
- const DebugRow = 'DebugRow';
84
- const DebugRowCallStack = 'DebugRowCallStack';
85
- const DebugRowCheckBox = 'DebugRowCheckBox';
86
- const DebugRowInputField = 'DebugRowInputField';
87
- const DebugSectionAction = 'DebugSectionAction';
88
- const DebugSectionActions = 'DebugSectionActions';
89
- const DebugSectionHeader = 'DebugSectionHeader';
90
- const DebugValue = 'DebugValue';
91
- const DebugValueBoolean = 'DebugValueBoolean';
92
- const DebugValueFunction = 'DebugValueFunction';
93
- const DebugValueGetter = 'DebugValueGetter';
94
- const DebugValueNumber = 'DebugValueNumber';
95
- const DebugValueObject = 'DebugValueObject';
96
- const DebugValueScopeName = 'DebugValueScopeName';
97
- const DebugValueString = 'DebugValueString';
98
- const DebugValueSymbol = 'DebugValueSymbol';
99
- const DebugValueUndefined = 'DebugValueUndefined';
100
- const DefaultMarkdown = 'DefaultMarkdown';
101
- const DefinitionListItem = 'DefinitionListItem';
102
- const DefinitionListItemHeading = 'DefinitionListItemHeading';
103
- const DefinitionListItemValue = 'DefinitionListItemValue';
104
- const DeleteWatchExpression = 'DeleteWatchExpression';
105
- const Diagnostic = 'Diagnostic';
106
- const DiagnosticError = 'DiagnosticError';
107
- const DiagnosticWarning = 'DiagnosticWarning';
108
- const EditorCompletionItem = 'EditorCompletionItem';
109
- const EditorCompletionItemDeprecated = 'EditorCompletionItemDeprecated';
110
- const EditorCompletionItemFocused = 'EditorCompletionItemFocused';
111
- const EditorCompletionItemHighlight = 'EditorCompletionItemHighlight';
112
- const EditorCursor = 'EditorCursor';
113
- const EditorRow = 'EditorRow';
114
- const EditorSelection = 'EditorSelection';
115
- const EditorSourceActions = 'EditorSourceActions';
116
- const EditorSourceActionsList = 'EditorSourceActionsList';
117
- const Empty$1 = '';
118
- const ExtensionActions = 'ExtensionActions';
119
- const ExtensionActive = 'ExtensionActive';
120
- const ExtensionDetail = 'ExtensionDetail';
121
- const ExtensionDetailDescription = 'ExtensionDetailDescription';
122
- const ExtensionDetailHeader = 'ExtensionDetailHeader';
123
- const ExtensionDetailHeaderActions = 'ExtensionDetailHeaderActions';
124
- const ExtensionDetailHeaderDetails = 'ExtensionDetailHeaderDetails';
125
- const ExtensionDetailIcon = 'ExtensionDetailIcon';
126
- const ExtensionDetailName = 'ExtensionDetailName';
127
- const ExtensionDetailNameBadge = 'ExtensionDetailNameBadge';
128
- const ExtensionDetailPanel = 'ExtensionDetailPanel';
129
- const ExtensionDetailTab = 'ExtensionDetailTab';
130
- const ExtensionDetailTabs = 'ExtensionDetailTabs';
131
- const ExtensionDetailTabSelected = 'ExtensionDetailTabSelected';
132
- const ExtensionHeader = 'ExtensionHeader';
133
- const ExtensionListItem = 'ExtensionListItem';
134
- const ExtensionListItemAuthorName = 'ExtensionListItemAuthorName';
135
- const ExtensionListItemDescription = 'ExtensionListItemDescription';
136
- const ExtensionListItemDetail = 'ExtensionListItemDetail';
137
- const ExtensionListItemFooter = 'ExtensionListItemFooter';
138
- const ExtensionListItemIcon = 'ExtensionListItemIcon';
139
- const ExtensionListItemName = 'ExtensionListItemName';
140
- const Extensions = 'Extensions';
141
- const Feature = 'Feature';
142
- const FeatureContent = 'FeatureContent';
143
- const Features = 'Features';
144
- const FeaturesList = 'FeaturesList';
145
- const FeatureWebView = 'FeatureWebView';
146
- const FileIcon = 'FileIcon';
147
- const Filter = 'Filter';
148
- const FilterBadge = 'FilterBadge';
149
- const FindWidget = 'FindWidget';
150
- const FindWidgetFind = 'FindWidgetFind';
151
- const FindWidgetMatchCount = 'FindWidgetMatchCount';
152
- const FindWidgetMatchCountEmpty = 'FindWidgetMatchCountEmpty';
153
- const FindWidgetReplace = 'FindWidgetReplace';
154
- const FindWidgetRight = 'FindWidgetRight';
155
- const FocusOutline = 'FocusOutline';
156
- const Grow = 'Grow';
157
- const Highlight = 'Highlight';
158
- const HighlightDeleted = 'HighlightDeleted';
159
- const HighlightInserted = 'HighlightInserted';
160
- const HoverDisplayString = 'HoverDisplayString';
161
- const HoverDocumentation = 'HoverDocumentation';
162
- const HoverEditorRow = 'HoverEditorRow';
163
- const HoverProblem = 'HoverProblem';
164
- const HoverProblemDetail = 'HoverProblemDetail';
165
- const HoverProblemMessage = 'HoverProblemMessage';
166
- const IconButton = 'IconButton';
167
- const IconButtonDisabled = 'IconButtonDisabled';
168
- const IconClose = 'IconClose';
169
- const InputBox = 'InputBox';
170
- const InputLabel = 'InputLabel';
171
- const InputValidationError = 'InputValidationError';
172
- const Label$1 = 'Label';
173
- const LabelCut = 'LabelCut';
174
- const LabelDetail = 'LabelDetail';
175
- const Large = 'Large';
176
- const List = 'List';
177
- const ListItems = 'ListItems';
178
- const Markdown = 'Markdown';
179
- const MaskIcon = 'MaskIcon';
180
- const MaskIconBook = 'MaskIconBook';
181
- const MaskIconCaseSensitive = 'MaskIconCaseSensitive';
182
- const MaskIconChevronDown = 'MaskIconChevronDown';
183
- const MaskIconChevronRight = 'MaskIconChevronRight';
184
- const MaskIconEllipsis = 'MaskIconEllipsis';
185
- const MaskIconExclude = 'MaskIconExclude';
186
- const MaskIconPreserveCase = 'MaskIconPreserveCase';
187
- const MaskIconRegex = 'MaskIconRegex';
188
- const MaskIconReplaceAll = 'MaskIconReplaceAll';
189
- const MaskIconSymbolFile = 'MaskIconSymbolFile';
190
- const MaskIconWholeWord = 'MaskIconWholeWord';
191
- const Message = 'Message';
192
- const MessageAction = 'MessageAction';
193
- const MoreInfo = 'MoreInfo';
194
- const MoreInfoEntry = 'MoreInfoEntry';
195
- const MoreInfoEntryKey = 'MoreInfoEntryKey';
196
- const MoreInfoEntryOdd = 'MoreInfoEntryOdd';
197
- const MoreInfoEntryValue = 'MoreInfoEntryValue';
198
- const MultilineInputBox = 'MultilineInputBox';
199
- const Normal = 'Normal';
200
- const Problem = 'Problem';
201
- const ProblemAt = 'ProblemAt';
202
- const ProblemBadge = 'ProblemBadge';
203
- const Problems = 'Problems';
204
- const ProblemSelected = 'ProblemSelected';
205
- const ProblemsErrorIcon = 'ProblemsErrorIcon';
206
- const ProblemsIcon = 'ProblemsIcon';
207
- const ProblemsList = 'ProblemsList';
208
- const ProblemsTable = 'ProblemsTable';
209
- const ProblemsTableBody = 'ProblemsTableBody';
210
- const ProblemsTableHeader = 'ProblemsTableHeader';
211
- const ProblemsTableRow = 'ProblemsTableRow';
212
- const ProblemsTableRowItem = 'ProblemsTableRowItem';
213
- const ProblemsTableRowOdd = 'ProblemsTableRowOdd';
214
- const ProblemsWarningIcon = 'ProblemsWarningIcon';
215
- const QuickPick = 'QuickPick';
216
- const QuickPickHeader = 'QuickPickHeader';
217
- const QuickPickHighlight = 'QuickPickHighlight';
218
- const QuickPickItem = 'QuickPickItem';
219
- const QuickPickItemActive = 'QuickPickItemActive';
220
- const QuickPickItemDescription = 'QuickPickItemDescription';
221
- const QuickPickItemLabel = 'QuickPickItemLabel';
222
- const QuickPickItems = 'QuickPickItems';
223
- const QuickPickMaskIcon = 'QuickPickMaskIcon';
224
- const QuickPickScrollbar = 'QuickPickScrollbar';
225
- const QuickPickScrollbarSlider = 'QuickPickScrollbarSlider';
226
- const QuickPickStatus = 'QuickPickStatus';
227
- const Resource = 'Resource';
228
- const Resources = 'Resources';
229
- const Sash = 'Sash';
230
- const SashVertical = 'SashVertical';
231
- const Scrollbar = 'Scrollbar';
232
- const ScrollBar = 'ScrollBar';
233
- const ScrollBarSmall = 'ScrollBarSmall';
234
- const ScrollbarThumb = 'ScrollbarThumb';
235
- const ScrollBarThumb = 'ScrollBarThumb';
236
- const ScrollBarThumbActive = 'ScrollBarThumbActive';
237
- const ScrollbarTrack = 'ScrollbarTrack';
238
- const ScrollBarVertical = 'ScrollBarVertical';
239
- const Search$1 = 'Search';
240
- const SearchField = 'SearchField';
241
- const SearchFieldButton = 'SearchFieldButton';
242
- const SearchFieldButtonChecked = 'SearchFieldButtonChecked';
243
- const SearchFieldButtonDisabled = 'SearchFieldButtonDisabled';
244
- const SearchFieldButtons = 'SearchFieldButtons';
245
- const SearchFieldContainer = 'SearchFieldContainer';
246
- const SearchFieldDisabled = 'SearchFieldDisabled';
247
- const SearchFieldError = 'SearchFieldError';
248
- const SearchHeader = 'SearchHeader';
249
- const SearchHeaderDetails = 'SearchHeaderDetails';
250
- const SearchHeaderDetailsExpanded = 'SearchHeaderDetailsExpanded';
251
- const SearchHeaderDetailsExpandedTop = 'SearchHeaderDetailsExpandedTop';
252
- const SearchHeaderDetailsHeading = 'SearchHeaderDetailsHeading';
253
- const SearchHeaderTop = 'SearchHeaderTop';
254
- const SearchHeaderTopRight = 'SearchHeaderTopRight';
255
- const SearchInputError = 'SearchInputError';
256
- const SearchRemove = 'SearchRemove';
257
- const SearchToggleButton = 'SearchToggleButton';
258
- const SearchToggleButtonExpanded = 'SearchToggleButtonExpanded';
259
- const SettingsButton = 'SettingsButton';
260
- const SettingsIcon = 'SettingsIcon';
261
- const Small = 'Small';
262
- const SourceActionHeading = 'SourceActionHeading';
263
- const SourceActionIcon = 'SourceActionIcon';
264
- const SourceActionItem = 'SourceActionItem';
265
- const SourceActionItemFocused = 'SourceActionItemFocused';
266
- const SourceControlBadge = 'SourceControlBadge';
267
- const Table$1 = 'Table';
268
- const TableCell = 'TableCell';
269
- const TableHeading = 'TableHeading';
270
- const ToggleDetails = 'ToggleDetails';
271
- const Tree = 'Tree';
272
- const TreeItem = 'TreeItem';
273
- const TreeItemActive = 'TreeItemActive';
274
- const TreeItems = 'TreeItems';
275
- const Viewlet = 'Viewlet';
276
- const ViewletFind = 'ViewletFind';
277
- const ViewletFindWidget = 'ViewletFindWidget';
278
- const ViewletSearchMessage = 'ViewletSearchMessage';
279
- const ViewletSearchMessageIndented = 'ViewletSearchMessageIndented';
280
- const Welcome = 'Welcome';
281
- const WelcomeMessage = 'WelcomeMessage';
282
-
283
- const ClassNames = {
284
- __proto__: null,
285
- Actions,
286
- AdditionalDetails,
287
- AdditionalDetailsEntry,
288
- AdditionalDetailsTitle,
289
- Aside: Aside$1,
290
- Badge,
291
- Button: Button$1,
292
- ButtonPrimary,
293
- CallStackArrow,
294
- CallStackDescription,
295
- CallStackLabel,
296
- Categories,
297
- Category,
298
- Changelog,
299
- Chevron,
300
- CloseMaskIcon,
301
- CodeGeneratorInput,
302
- CodeGeneratorMessage,
303
- CodeGeneratorWidget,
304
- ColorPicker,
305
- ColorPickerBackgroundColor,
306
- ColorPickerDark,
307
- ColorPickerLight,
308
- ColorPickerRectangle,
309
- ColorPickerSlider,
310
- ColorPickerSliderThumb,
311
- ColoredMaskIcon,
312
- CompletionDetailCloseButton,
313
- CompletionDetailContent,
314
- DebugButton,
315
- DebugButtons,
316
- DebugPausedMessage,
317
- DebugPropertyChevron,
318
- DebugPropertyKey,
319
- DebugRow,
320
- DebugRowCallStack,
321
- DebugRowCheckBox,
322
- DebugRowInputField,
323
- DebugSectionAction,
324
- DebugSectionActions,
325
- DebugSectionHeader,
326
- DebugValue,
327
- DebugValueBoolean,
328
- DebugValueFunction,
329
- DebugValueGetter,
330
- DebugValueNumber,
331
- DebugValueObject,
332
- DebugValueScopeName,
333
- DebugValueString,
334
- DebugValueSymbol,
335
- DebugValueUndefined,
336
- DefaultMarkdown,
337
- DefinitionListItem,
338
- DefinitionListItemHeading,
339
- DefinitionListItemValue,
340
- DeleteWatchExpression,
341
- Diagnostic,
342
- DiagnosticError,
343
- DiagnosticWarning,
344
- EditorCompletionItem,
345
- EditorCompletionItemDeprecated,
346
- EditorCompletionItemFocused,
347
- EditorCompletionItemHighlight,
348
- EditorCursor,
349
- EditorRow,
350
- EditorSelection,
351
- EditorSourceActions,
352
- EditorSourceActionsList,
353
- Empty: Empty$1,
354
- ExtensionActions,
355
- ExtensionActive,
356
- ExtensionDetail,
357
- ExtensionDetailDescription,
358
- ExtensionDetailHeader,
359
- ExtensionDetailHeaderActions,
360
- ExtensionDetailHeaderDetails,
361
- ExtensionDetailIcon,
362
- ExtensionDetailName,
363
- ExtensionDetailNameBadge,
364
- ExtensionDetailPanel,
365
- ExtensionDetailTab,
366
- ExtensionDetailTabSelected,
367
- ExtensionDetailTabs,
368
- ExtensionHeader,
369
- ExtensionListItem,
370
- ExtensionListItemAuthorName,
371
- ExtensionListItemDescription,
372
- ExtensionListItemDetail,
373
- ExtensionListItemFooter,
374
- ExtensionListItemIcon,
375
- ExtensionListItemName,
376
- Extensions,
377
- Feature,
378
- FeatureContent,
379
- FeatureWebView,
380
- Features,
381
- FeaturesList,
382
- FileIcon,
383
- Filter,
384
- FilterBadge,
385
- FindWidget,
386
- FindWidgetFind,
387
- FindWidgetMatchCount,
388
- FindWidgetMatchCountEmpty,
389
- FindWidgetReplace,
390
- FindWidgetRight,
391
- FocusOutline,
392
- Grow,
393
- Highlight,
394
- HighlightDeleted,
395
- HighlightInserted,
396
- HoverDisplayString,
397
- HoverDocumentation,
398
- HoverEditorRow,
399
- HoverProblem,
400
- HoverProblemDetail,
401
- HoverProblemMessage,
402
- IconButton,
403
- IconButtonDisabled,
404
- IconClose,
405
- InputBox,
406
- InputLabel,
407
- InputValidationError,
408
- Label: Label$1,
409
- LabelCut,
410
- LabelDetail,
411
- Large,
412
- List,
413
- ListItems,
414
- Markdown,
415
- MaskIcon,
416
- MaskIconBook,
417
- MaskIconCaseSensitive,
418
- MaskIconChevronDown,
419
- MaskIconChevronRight,
420
- MaskIconEllipsis,
421
- MaskIconExclude,
422
- MaskIconPreserveCase,
423
- MaskIconRegex,
424
- MaskIconReplaceAll,
425
- MaskIconSymbolFile,
426
- MaskIconWholeWord,
427
- Message,
428
- MessageAction,
429
- MoreInfo,
430
- MoreInfoEntry,
431
- MoreInfoEntryKey,
432
- MoreInfoEntryOdd,
433
- MoreInfoEntryValue,
434
- MultilineInputBox,
435
- Normal,
436
- Problem,
437
- ProblemAt,
438
- ProblemBadge,
439
- ProblemSelected,
440
- Problems,
441
- ProblemsErrorIcon,
442
- ProblemsIcon,
443
- ProblemsList,
444
- ProblemsTable,
445
- ProblemsTableBody,
446
- ProblemsTableHeader,
447
- ProblemsTableRow,
448
- ProblemsTableRowItem,
449
- ProblemsTableRowOdd,
450
- ProblemsWarningIcon,
451
- QuickPick,
452
- QuickPickHeader,
453
- QuickPickHighlight,
454
- QuickPickItem,
455
- QuickPickItemActive,
456
- QuickPickItemDescription,
457
- QuickPickItemLabel,
458
- QuickPickItems,
459
- QuickPickMaskIcon,
460
- QuickPickScrollbar,
461
- QuickPickScrollbarSlider,
462
- QuickPickStatus,
463
- Resource,
464
- Resources,
465
- Sash,
466
- SashVertical,
467
- ScrollBar,
468
- ScrollBarSmall,
469
- ScrollBarThumb,
470
- ScrollBarThumbActive,
471
- ScrollBarVertical,
472
- Scrollbar,
473
- ScrollbarThumb,
474
- ScrollbarTrack,
475
- Search: Search$1,
476
- SearchField,
477
- SearchFieldButton,
478
- SearchFieldButtonChecked,
479
- SearchFieldButtonDisabled,
480
- SearchFieldButtons,
481
- SearchFieldContainer,
482
- SearchFieldDisabled,
483
- SearchFieldError,
484
- SearchHeader,
485
- SearchHeaderDetails,
486
- SearchHeaderDetailsExpanded,
487
- SearchHeaderDetailsExpandedTop,
488
- SearchHeaderDetailsHeading,
489
- SearchHeaderTop,
490
- SearchHeaderTopRight,
491
- SearchInputError,
492
- SearchRemove,
493
- SearchToggleButton,
494
- SearchToggleButtonExpanded,
495
- SettingsButton,
496
- SettingsIcon,
497
- Small,
498
- SourceActionHeading,
499
- SourceActionIcon,
500
- SourceActionItem,
501
- SourceActionItemFocused,
502
- SourceControlBadge,
503
- Table: Table$1,
504
- TableCell,
505
- TableHeading,
506
- ToggleDetails,
507
- Tree,
508
- TreeItem,
509
- TreeItemActive,
510
- TreeItems,
511
- Viewlet,
512
- ViewletFind,
513
- ViewletFindWidget,
514
- ViewletSearchMessage,
515
- ViewletSearchMessageIndented,
516
- Welcome,
517
- WelcomeMessage
518
- };
519
-
520
- const InsertText = 'insertText';
521
- const DeleteContentBackward = 'deleteContentBackward';
522
- const DeleteContentForward = 'deleteContentForward';
523
- const DeleteWordForward = 'deleteWordForward';
524
- const DeleteWordBackward = 'deleteWordBackward';
525
- const InsertLineBreak = 'insertLineBreak';
526
- const InsertCompositionText = 'insertCompositionText';
527
- const InsertFromPaste = 'insertFromPaste';
528
-
529
- const InputEventType = {
530
- __proto__: null,
531
- DeleteContentBackward,
532
- DeleteContentForward,
533
- DeleteWordBackward,
534
- DeleteWordForward,
535
- InsertCompositionText,
536
- InsertFromPaste,
537
- InsertLineBreak,
538
- InsertText
539
- };
540
-
541
- const Unknown = 0;
542
- const Backspace = 1;
543
- const Tab = 2;
544
- const Enter = 3;
545
- const Ctrl = 4;
546
- const Alt$1 = 5;
547
- const PauseBreak = 6;
548
- const CapsLock = 7;
549
- const Escape = 8;
550
- const Space = 9;
551
- const PageUp = 10;
552
- const PageDown = 11;
553
- const End = 255;
554
- const Home = 12;
555
- const LeftArrow = 13;
556
- const UpArrow = 14;
557
- const RightArrow = 15;
558
- const DownArrow = 16;
559
- const Insert = 17;
560
- const Delete = 18;
561
- const Digit0 = 19;
562
- const Digit1 = 20;
563
- const Digit2 = 21;
564
- const Digit3 = 22;
565
- const Digit4 = 23;
566
- const Digit5 = 24;
567
- const Digit6 = 25;
568
- const Digit7 = 26;
569
- const Digit8 = 27;
570
- const Digit9 = 28;
571
- const KeyA = 29;
572
- const KeyB = 30;
573
- const KeyC = 31;
574
- const KeyD = 32;
575
- const KeyE = 33;
576
- const KeyF = 34;
577
- const KeyG = 35;
578
- const KeyH = 36;
579
- const KeyI = 37;
580
- const KeyJ = 38;
581
- const KeyK = 39;
582
- const KeyL = 40;
583
- const KeyM = 41;
584
- const KeyN = 42;
585
- const KeyO = 43;
586
- const KeyP = 44;
587
- const KeyQ = 45;
588
- const KeyR = 46;
589
- const KeyS = 47;
590
- const KeyT = 48;
591
- const KeyU = 49;
592
- const KeyV = 50;
593
- const KeyW = 51;
594
- const KeyX = 52;
595
- const KeyY = 53;
596
- const KeyZ = 54;
597
- const Meta = 55;
598
- const ContextMenu = 56;
599
- const F1 = 57;
600
- const F2 = 58;
601
- const F3 = 59;
602
- const F4 = 60;
603
- const F5 = 61;
604
- const F6 = 62;
605
- const F7 = 63;
606
- const F8 = 64;
607
- const F9 = 65;
608
- const F10 = 66;
609
- const F11 = 67;
610
- const F12 = 68;
611
- const F13 = 69;
612
- const F14 = 70;
613
- const F15 = 71;
614
- const F16 = 72;
615
- const F17 = 72;
616
- const F18 = 74;
617
- const F19 = 75;
618
- const F20 = 76;
619
- const F21 = 77;
620
- const F22 = 78;
621
- const F23 = 79;
622
- const F24 = 80;
623
- const NumLock = 81;
624
- const ScrollLock = 82;
625
- const SemiColon = 83;
626
- const Equal = 84;
627
- const Comma = 85;
628
- const Minus = 86;
629
- const Period = 87;
630
- const Slash = 88;
631
- const Backquote = 89;
632
- const BracketLeft = 90;
633
- const Backslash = 91;
634
- const BracketRight = 92;
635
- const Quote = 93;
636
- const OEM_8 = 94;
637
- const IntlBackslash = 95;
638
- const Numpad0 = 96;
639
- const Numpad1 = 97;
640
- const Numpad2 = 98;
641
- const Numpad3 = 99;
642
- const Numpad4 = 100;
643
- const Numpad5 = 101;
644
- const Numpad6 = 102;
645
- const Numpad7 = 103;
646
- const Numpad8 = 104;
647
- const Numpad9 = 105;
648
- const NumpadMultiply = 106;
649
- const NumpadAdd = 107;
650
- const NumpadSeparator = 108;
651
- const NumpadSubtract = 109;
652
- const NumpadDecimal = 110;
653
- const NumpadDivide = 111;
654
- const KeyInComposition = 112;
655
- const ABNT_C1 = 113;
656
- const ABNT_C2 = 114;
657
- const AudioVolumeMute = 115;
658
- const AudioVolumeUp = 116;
659
- const AudioVolumeDown = 117;
660
- const BrowserSearch = 118;
661
- const BrowserHome = 119;
662
- const BrowserBack = 120;
663
- const BrowserForward = 121;
664
- const MediaTrackNext = 122;
665
- const MediaTrackPrevious = 123;
666
- const MediaStop = 124;
667
- const MediaPlayPause = 125;
668
- const LaunchMediaPlayer = 126;
669
- const LaunchMail = 127;
670
- const LaunchApp2 = 128;
671
- const Clear = 129;
672
- const MaxValue = 130;
673
- const Star = 131;
674
- const Plus = 132;
675
-
676
- const KeyCode = {
677
- __proto__: null,
678
- ABNT_C1,
679
- ABNT_C2,
680
- Alt: Alt$1,
681
- AudioVolumeDown,
682
- AudioVolumeMute,
683
- AudioVolumeUp,
684
- Backquote,
685
- Backslash,
686
- Backspace,
687
- BracketLeft,
688
- BracketRight,
689
- BrowserBack,
690
- BrowserForward,
691
- BrowserHome,
692
- BrowserSearch,
693
- CapsLock,
694
- Clear,
695
- Comma,
696
- ContextMenu,
697
- Ctrl,
698
- Delete,
699
- Digit0,
700
- Digit1,
701
- Digit2,
702
- Digit3,
703
- Digit4,
704
- Digit5,
705
- Digit6,
706
- Digit7,
707
- Digit8,
708
- Digit9,
709
- DownArrow,
710
- End,
711
- Enter,
712
- Equal,
713
- Escape,
714
- F1,
715
- F10,
716
- F11,
717
- F12,
718
- F13,
719
- F14,
720
- F15,
721
- F16,
722
- F17,
723
- F18,
724
- F19,
725
- F2,
726
- F20,
727
- F21,
728
- F22,
729
- F23,
730
- F24,
731
- F3,
732
- F4,
733
- F5,
734
- F6,
735
- F7,
736
- F8,
737
- F9,
738
- Home,
739
- Insert,
740
- IntlBackslash,
741
- KeyA,
742
- KeyB,
743
- KeyC,
744
- KeyD,
745
- KeyE,
746
- KeyF,
747
- KeyG,
748
- KeyH,
749
- KeyI,
750
- KeyInComposition,
751
- KeyJ,
752
- KeyK,
753
- KeyL,
754
- KeyM,
755
- KeyN,
756
- KeyO,
757
- KeyP,
758
- KeyQ,
759
- KeyR,
760
- KeyS,
761
- KeyT,
762
- KeyU,
763
- KeyV,
764
- KeyW,
765
- KeyX,
766
- KeyY,
767
- KeyZ,
768
- LaunchApp2,
769
- LaunchMail,
770
- LaunchMediaPlayer,
771
- LeftArrow,
772
- MaxValue,
773
- MediaPlayPause,
774
- MediaStop,
775
- MediaTrackNext,
776
- MediaTrackPrevious,
777
- Meta,
778
- Minus,
779
- NumLock,
780
- Numpad0,
781
- Numpad1,
782
- Numpad2,
783
- Numpad3,
784
- Numpad4,
785
- Numpad5,
786
- Numpad6,
787
- Numpad7,
788
- Numpad8,
789
- Numpad9,
790
- NumpadAdd,
791
- NumpadDecimal,
792
- NumpadDivide,
793
- NumpadMultiply,
794
- NumpadSeparator,
795
- NumpadSubtract,
796
- OEM_8,
797
- PageDown,
798
- PageUp,
799
- PauseBreak,
800
- Period,
801
- Plus,
802
- Quote,
803
- RightArrow,
804
- ScrollLock,
805
- SemiColon,
806
- Slash,
807
- Space,
808
- Star,
809
- Tab,
810
- Unknown,
811
- UpArrow
812
- };
813
-
814
- const CtrlCmd = 1 << 11 >>> 0;
815
- const Shift = 1 << 10 >>> 0;
816
- const Alt = 1 << 9 >>> 0;
817
- const WinCtrl = 1 << 8 >>> 0;
818
-
819
- const KeyModifier = {
820
- __proto__: null,
821
- Alt,
822
- CtrlCmd,
823
- Shift,
824
- WinCtrl
825
- };
826
-
827
- const mergeClassNames = (...classNames) => {
828
- return classNames.filter(Boolean).join(' ');
829
- };
830
-
831
- const Keyboard = -1;
832
- const LeftClick = 0;
833
-
834
- const MouseEventType = {
835
- __proto__: null,
836
- Keyboard,
837
- LeftClick
838
- };
839
-
840
- const px = value => {
841
- return `${value}px`;
842
- };
843
- const position = (x, y) => {
844
- return `${x}px ${y}px`;
845
- };
846
-
847
- const Audio = 0;
848
- const Button = 1;
849
- const Col = 2;
850
- const ColGroup = 3;
851
- const Div = 4;
852
- const H1 = 5;
853
- const Input = 6;
854
- const Kbd = 7;
855
- const Span = 8;
856
- const Table = 9;
857
- const TBody = 10;
858
- const Td = 11;
859
- const Text = 12;
860
- const Th = 13;
861
- const THead = 14;
862
- const Tr = 15;
863
- const I = 16;
864
- const Img = 17;
865
- const Root = 0;
866
- const Ins = 20;
867
- const Del = 21;
868
- const H2 = 22;
869
- const H3 = 23;
870
- const H4 = 24;
871
- const H5 = 25;
872
- const H6 = 26;
873
- const Article = 27;
874
- const Aside = 28;
875
- const Footer = 29;
876
- const Header = 30;
877
- const Nav = 40;
878
- const Section = 41;
879
- const Search = 42;
880
- const Dd = 43;
881
- const Dl = 44;
882
- const Figcaption = 45;
883
- const Figure = 46;
884
- const Hr = 47;
885
- const Li = 48;
886
- const Ol = 49;
887
- const P = 50;
888
- const Pre = 51;
889
- const A = 53;
890
- const Abbr = 54;
891
- const Br = 55;
892
- const Cite = 56;
893
- const Data = 57;
894
- const Time = 58;
895
- const Tfoot = 59;
896
- const Ul = 60;
897
- const Video = 61;
898
- const TextArea = 62;
899
- const Select = 63;
900
- const Option = 64;
901
- const Code = 65;
902
- const Label = 66;
903
- const Dt = 67;
904
-
905
- const VirtualDomElements = {
906
- __proto__: null,
907
- A,
908
- Abbr,
909
- Article,
910
- Aside,
911
- Audio,
912
- Br,
913
- Button,
914
- Cite,
915
- Code,
916
- Col,
917
- ColGroup,
918
- Data,
919
- Dd,
920
- Del,
921
- Div,
922
- Dl,
923
- Dt,
924
- Figcaption,
925
- Figure,
926
- Footer,
927
- H1,
928
- H2,
929
- H3,
930
- H4,
931
- H5,
932
- H6,
933
- Header,
934
- Hr,
935
- I,
936
- Img,
937
- Input,
938
- Ins,
939
- Kbd,
940
- Label,
941
- Li,
942
- Nav,
943
- Ol,
944
- Option,
945
- P,
946
- Pre,
947
- Root,
948
- Search,
949
- Section,
950
- Select,
951
- Span,
952
- TBody,
953
- THead,
954
- Table,
955
- Td,
956
- Text,
957
- TextArea,
958
- Tfoot,
959
- Th,
960
- Time,
961
- Tr,
962
- Ul,
963
- Video
964
- };
965
-
966
- const text = data => {
967
- return {
968
- type: Text,
969
- text: data,
970
- childCount: 0
971
- };
972
- };
973
-
974
- const SetText = 1;
975
- const SetAttribute = 3;
976
- const RemoveAttribute = 4;
977
- const Add = 6;
978
- const NavigateChild = 7;
979
- const NavigateParent = 8;
980
- const RemoveChild = 9;
981
- const NavigateSibling = 10;
982
-
983
- const applyPendingPatches = (patches, pendingPatches, skip) => {
984
- for (let k = 0; k < pendingPatches.length - skip; k += 2) {
985
- const type = pendingPatches[k];
986
- const index = pendingPatches[k + 1];
987
- if (type === NavigateParent) {
988
- patches.push({
989
- type
990
- });
991
- } else {
992
- patches.push({
993
- type,
994
- index
995
- });
996
- }
997
- }
998
- pendingPatches.length = 0;
999
- };
1000
-
1001
- const isKey = key => {
1002
- return key !== 'type' && key !== 'childCount';
1003
- };
1004
-
1005
- const getKeys = node => {
1006
- const keys = Object.keys(node).filter(isKey);
1007
- return keys;
1008
- };
1009
-
1010
- const getTotalChildCount = (nodes, index) => {
1011
- let i = index;
1012
- let pending = 1;
1013
- while (pending) {
1014
- const node = nodes[i];
1015
- pending += node.childCount;
1016
- pending--;
1017
- i++;
1018
- }
1019
- return i - index;
1020
- };
1021
-
1022
- const diff = (oldNodes, newNodes) => {
1023
- const patches = [];
1024
- const pendingPatches = [];
1025
- let i = 0;
1026
- let j = 0;
1027
- let siblingOffset = 0;
1028
- let maxSiblingOffset = 1;
1029
- const indexStack = [0, 1];
1030
- while (i < oldNodes.length && j < newNodes.length) {
1031
- const oldNode = oldNodes[i];
1032
- const newNode = newNodes[j];
1033
-
1034
- // TODO maybe don't have the current element in indexstack
1035
- if (siblingOffset === maxSiblingOffset) {
1036
- indexStack.pop();
1037
- indexStack.pop();
1038
- pendingPatches.push(NavigateParent, 0);
1039
- maxSiblingOffset = indexStack.pop();
1040
- siblingOffset = indexStack.pop() + 1;
1041
- }
1042
- while (siblingOffset === maxSiblingOffset) {
1043
- pendingPatches.push(NavigateParent, 0);
1044
- maxSiblingOffset = indexStack.pop();
1045
- siblingOffset = indexStack.pop() + 1;
1046
- }
1047
- if (oldNode.type !== newNode.type) {
1048
- let skip = 0;
1049
- if (pendingPatches.length > 0 && pendingPatches.at(-2) === NavigateChild) {
1050
- skip = 2;
1051
- }
1052
- applyPendingPatches(patches, pendingPatches, skip);
1053
- const oldTotal = getTotalChildCount(oldNodes, i);
1054
- const newTotal = getTotalChildCount(newNodes, j);
1055
- patches.push({
1056
- type: RemoveChild,
1057
- index: siblingOffset
1058
- });
1059
- patches.push({
1060
- type: Add,
1061
- nodes: newNodes.slice(j, j + newTotal)
1062
- });
1063
- siblingOffset++;
1064
- i += oldTotal;
1065
- j += newTotal;
1066
- continue;
1067
- }
1068
- if (oldNode.type === Text && newNode.type === Text) {
1069
- if (oldNode.text !== newNode.text) {
1070
- if (siblingOffset !== 0) {
1071
- pendingPatches.push(NavigateSibling, siblingOffset);
1072
- }
1073
- applyPendingPatches(patches, pendingPatches, 0);
1074
- patches.push({
1075
- type: SetText,
1076
- value: newNode.text
1077
- });
1078
- }
1079
- i++;
1080
- j++;
1081
- siblingOffset++;
1082
- continue;
1083
- }
1084
- const oldKeys = getKeys(oldNode);
1085
- const newKeys = getKeys(newNode);
1086
- let hasAttributeChanges = false;
1087
- for (const key of newKeys) {
1088
- if (oldNode[key] !== newNode[key]) {
1089
- hasAttributeChanges = true;
1090
- break;
1091
- }
1092
- }
1093
- for (const key of oldKeys) {
1094
- if (!(key in newNode)) {
1095
- hasAttributeChanges = true;
1096
- break;
1097
- }
1098
- }
1099
- if (hasAttributeChanges) {
1100
- if (siblingOffset > 0) {
1101
- pendingPatches.push(NavigateSibling, siblingOffset);
1102
- }
1103
- applyPendingPatches(patches, pendingPatches, 0);
1104
- for (const key of newKeys) {
1105
- if (oldNode[key] !== newNode[key]) {
1106
- patches.push({
1107
- type: SetAttribute,
1108
- key,
1109
- value: newNode[key]
1110
- });
1111
- }
1112
- }
1113
- for (const key of oldKeys) {
1114
- if (!(key in newNode)) {
1115
- patches.push({
1116
- type: RemoveAttribute,
1117
- key
1118
- });
1119
- }
1120
- }
1121
- }
1122
- if (oldNode.childCount && newNode.childCount) {
1123
- maxSiblingOffset = oldNode.childCount;
1124
- indexStack.push(0, maxSiblingOffset);
1125
- pendingPatches.push(NavigateChild, 0);
1126
- i++;
1127
- j++;
1128
- continue;
1129
- }
1130
- if (oldNode.childCount) {
1131
- applyPendingPatches(patches, pendingPatches, 0);
1132
- for (let k = 0; k < oldNode.childCount; k++) {
1133
- patches.push({
1134
- type: RemoveChild,
1135
- index: 0
1136
- });
1137
- }
1138
- i += getTotalChildCount(oldNodes, i);
1139
- j++;
1140
- siblingOffset++;
1141
- continue;
1142
- }
1143
- if (newNode.childCount) {
1144
- applyPendingPatches(patches, pendingPatches, 0);
1145
- const total = getTotalChildCount(newNodes, j);
1146
- patches.push({
1147
- type: Add,
1148
- nodes: newNodes.slice(j + 1, j + total)
1149
- });
1150
- i++;
1151
- j += total;
1152
- continue;
1153
- }
1154
- i++;
1155
- j++;
1156
- siblingOffset++;
1157
- }
1158
- while (i < oldNodes.length) {
1159
- if (indexStack.length !== 2) {
1160
- patches.push({
1161
- type: NavigateParent
1162
- });
1163
- }
1164
- patches.push({
1165
- type: RemoveChild,
1166
- index: siblingOffset
1167
- });
1168
- i += getTotalChildCount(oldNodes, i);
1169
- indexStack.pop();
1170
- indexStack.pop();
1171
- }
1172
- while (j < newNodes.length) {
1173
- if (siblingOffset > 0) {
1174
- patches.push({
1175
- type: NavigateSibling,
1176
- index: siblingOffset
1177
- });
1178
- siblingOffset = 0;
1179
- }
1180
- const count = getTotalChildCount(newNodes, j);
1181
- patches.push({
1182
- type: Add,
1183
- nodes: newNodes.slice(j, j + count)
1184
- });
1185
- j += count;
1186
- }
1187
- return patches;
1188
- };
1189
-
1190
- const Empty = 0;
1191
- const BrowserChromium = 1;
1192
- const BrowserElectron = 2;
1193
- const BrowserFirefox = 3;
1194
- const FocusAbout = 4;
1195
- const FocusActivityBar = 5;
1196
- const FocusDebugInput = 6;
1197
- const FocusDialog = 7;
1198
- const FocusEditor = 12;
1199
- const FocusEditorCompletions = 9;
1200
- const FocusEditorImage = 10;
1201
- const FocusEditorRename = 11;
1202
- const FocusEditorText = 12;
1203
- const FocusExplorer = 13;
1204
- const FocusExplorerEditBox = 14;
1205
- const FocusExtensions = 15;
1206
- const FocusFindWidget = 16;
1207
- const FocusLocationList = 17;
1208
- const FocusMenu = 18;
1209
- const FocusProblems = 19;
1210
- const FocusQuickPickInput = 20;
1211
- const FocusSearchInput = 21;
1212
- const FocusSearchResults = 22;
1213
- const FocusSimpleBrowserInput = 23;
1214
- const FocusSourceControlInput = 24;
1215
- const FocusTerminal = 25;
1216
- const FocusTitleBarMenuBar = 26;
1217
- const FocusViewletList = 27;
1218
- const FocusOutput = 28;
1219
- const FocusDebugConsoleInput = 29;
1220
- const FocusDebugScope = 30;
1221
- const FocusSearchReplaceInput = 31;
1222
- const FocusSearchMatchCase = 32;
1223
- const FocusSearchRegex = 33;
1224
- const FocusSearchWholeWord = 34;
1225
- const FocusSearchReplaceAll = 35;
1226
- const FocusSearchPreserveCase = 36;
1227
- const FocusSimpleBrowser = 37;
1228
- const FocusSourceActions = 38;
1229
- const FocusKeyBindingsTable = 39;
1230
- const FocusConfirm = 40;
1231
- const FocusColorPicker = 41;
1232
- const FocusFindWidgetToggleReplace = 42;
1233
- const FocusFindWidgetReplace = 43;
1234
- const FocusFindWidgetRegex = 44;
1235
- const FocusFindWidgetMatchCase = 45;
1236
- const FocusFindWidgetReplaceButton = 46;
1237
- const FocusFindWidgetReplaceAllButton = 47;
1238
- const FocusFindWidgetCloseButton = 48;
1239
- const FocusFindWidgetNextMatchButton = 49;
1240
- const FocusFindWidgetPreviousMatchButton = 50;
1241
- const FocusEditorHover = 51;
1242
- const FocusEditorCodeGenerator = 52;
1243
-
1244
- const WhenExpression = {
1245
- __proto__: null,
1246
- BrowserChromium,
1247
- BrowserElectron,
1248
- BrowserFirefox,
1249
- Empty,
1250
- FocusAbout,
1251
- FocusActivityBar,
1252
- FocusColorPicker,
1253
- FocusConfirm,
1254
- FocusDebugConsoleInput,
1255
- FocusDebugInput,
1256
- FocusDebugScope,
1257
- FocusDialog,
1258
- FocusEditor,
1259
- FocusEditorCodeGenerator,
1260
- FocusEditorCompletions,
1261
- FocusEditorHover,
1262
- FocusEditorImage,
1263
- FocusEditorRename,
1264
- FocusEditorText,
1265
- FocusExplorer,
1266
- FocusExplorerEditBox,
1267
- FocusExtensions,
1268
- FocusFindWidget,
1269
- FocusFindWidgetCloseButton,
1270
- FocusFindWidgetMatchCase,
1271
- FocusFindWidgetNextMatchButton,
1272
- FocusFindWidgetPreviousMatchButton,
1273
- FocusFindWidgetRegex,
1274
- FocusFindWidgetReplace,
1275
- FocusFindWidgetReplaceAllButton,
1276
- FocusFindWidgetReplaceButton,
1277
- FocusFindWidgetToggleReplace,
1278
- FocusKeyBindingsTable,
1279
- FocusLocationList,
1280
- FocusMenu,
1281
- FocusOutput,
1282
- FocusProblems,
1283
- FocusQuickPickInput,
1284
- FocusSearchInput,
1285
- FocusSearchMatchCase,
1286
- FocusSearchPreserveCase,
1287
- FocusSearchRegex,
1288
- FocusSearchReplaceAll,
1289
- FocusSearchReplaceInput,
1290
- FocusSearchResults,
1291
- FocusSearchWholeWord,
1292
- FocusSimpleBrowser,
1293
- FocusSimpleBrowserInput,
1294
- FocusSourceActions,
1295
- FocusSourceControlInput,
1296
- FocusTerminal,
1297
- FocusTitleBarMenuBar,
1298
- FocusViewletList
1299
- };
1300
-
1301
- export { AriaLive, AriaRoles, ClassNames, InputEventType, KeyCode, KeyModifier, MouseEventType, VirtualDomElements, WhenExpression, diff, mergeClassNames, position, px, text };
1
+ export * from "./parts/Main/Main.js";