@lvce-editor/constants 1.11.0 → 1.12.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.
package/dist/index.d.ts
CHANGED
|
@@ -251,6 +251,26 @@ declare const ViewletSearchMessage = "ViewletSearchMessage";
|
|
|
251
251
|
declare const ViewletSearchMessageIndented = "ViewletSearchMessageIndented";
|
|
252
252
|
declare const Welcome = "Welcome";
|
|
253
253
|
declare const WelcomeMessage = "WelcomeMessage";
|
|
254
|
+
declare const CompositionUpdate = "compositionUpdate";
|
|
255
|
+
declare const ContentEditableInput = "contentEditableInput";
|
|
256
|
+
declare const Delete = "delete";
|
|
257
|
+
declare const DeleteHorizontalRight = "deleteHorizontalRight";
|
|
258
|
+
declare const DeleteLeft = "deleteLeft";
|
|
259
|
+
declare const EditorCut = "editorCut";
|
|
260
|
+
declare const EditorPasteText = "editorPasteText";
|
|
261
|
+
declare const EditorSnippet = "editorSnippet";
|
|
262
|
+
declare const EditorType = "editorType";
|
|
263
|
+
declare const EditorTypeWithAutoClosing = "editorTypeWithAutoClosing";
|
|
264
|
+
declare const Format = "format";
|
|
265
|
+
declare const IndentLess = "indentLess";
|
|
266
|
+
declare const IndentMore = "indentMore";
|
|
267
|
+
declare const InsertLineBreak = "insertLineBreak";
|
|
268
|
+
declare const LineComment = "lineComment";
|
|
269
|
+
declare const Rename = "rename";
|
|
270
|
+
declare const Replace = "replace";
|
|
271
|
+
declare const ReplaceAll = "replaceAll";
|
|
272
|
+
declare const ToggleBlockComment = "toggleBlockComment";
|
|
273
|
+
declare const Unknown = "unknown";
|
|
254
274
|
declare const getElementTag: (type: number) => string;
|
|
255
275
|
declare const Audio = "audio";
|
|
256
276
|
declare const Button$2 = "button";
|
|
@@ -337,12 +357,12 @@ declare const DeleteContentBackward = "deleteContentBackward";
|
|
|
337
357
|
declare const DeleteContentForward = "deleteContentForward";
|
|
338
358
|
declare const DeleteWordForward = "deleteWordForward";
|
|
339
359
|
declare const DeleteWordBackward = "deleteWordBackward";
|
|
340
|
-
declare const InsertLineBreak = "insertLineBreak";
|
|
360
|
+
declare const InsertLineBreak$1 = "insertLineBreak";
|
|
341
361
|
declare const InsertCompositionText = "insertCompositionText";
|
|
342
362
|
declare const InsertFromPaste = "insertFromPaste";
|
|
343
363
|
declare const User = 1;
|
|
344
364
|
declare const Script = 1;
|
|
345
|
-
declare const Unknown = 0;
|
|
365
|
+
declare const Unknown$1 = 0;
|
|
346
366
|
declare const Backspace = 1;
|
|
347
367
|
declare const Tab$1 = 2;
|
|
348
368
|
declare const Enter = 3;
|
|
@@ -361,7 +381,7 @@ declare const UpArrow = 14;
|
|
|
361
381
|
declare const RightArrow = 15;
|
|
362
382
|
declare const DownArrow = 16;
|
|
363
383
|
declare const Insert = 17;
|
|
364
|
-
declare const Delete = 18;
|
|
384
|
+
declare const Delete$1 = 18;
|
|
365
385
|
declare const Digit0 = 19;
|
|
366
386
|
declare const Digit1 = 20;
|
|
367
387
|
declare const Digit2 = 21;
|
|
@@ -476,7 +496,7 @@ declare const Clear = 129;
|
|
|
476
496
|
declare const MaxValue = 130;
|
|
477
497
|
declare const Star = 131;
|
|
478
498
|
declare const Plus = 132;
|
|
479
|
-
declare const Unknown$
|
|
499
|
+
declare const Unknown$2 = "Unknown";
|
|
480
500
|
declare const Backspace$1 = "Backspace";
|
|
481
501
|
declare const Tab$2 = "Tab";
|
|
482
502
|
declare const Enter$1 = "Enter";
|
|
@@ -491,7 +511,7 @@ declare const UpArrow$1 = "UpArrow";
|
|
|
491
511
|
declare const RightArrow$1 = "RightArrow";
|
|
492
512
|
declare const DownArrow$1 = "DownArrow";
|
|
493
513
|
declare const Insert$1 = "Insert";
|
|
494
|
-
declare const Delete$
|
|
514
|
+
declare const Delete$2 = "Delete";
|
|
495
515
|
declare const Digit0$1 = "0";
|
|
496
516
|
declare const Digit1$1 = "1";
|
|
497
517
|
declare const Digit2$1 = "2";
|
|
@@ -573,6 +593,9 @@ declare const SourceActionWorker = 303;
|
|
|
573
593
|
declare const SourceControlWorker = 66;
|
|
574
594
|
declare const SyntaxHighlightingWorker = 3309;
|
|
575
595
|
declare const TestWorker = 9001;
|
|
596
|
+
declare const FindWidgetWorker = 9002;
|
|
597
|
+
declare const HoverWorker = 9003;
|
|
598
|
+
declare const RenameWorker = 9004;
|
|
576
599
|
declare const uidSymbol: unique symbol;
|
|
577
600
|
declare const FocusElementByName = "Viewlet.focusElementByName";
|
|
578
601
|
declare const FocusSelector = "Viewlet.focusSelector";
|
|
@@ -700,7 +723,7 @@ declare const Completion = 3;
|
|
|
700
723
|
declare const CompletionDetail = 4;
|
|
701
724
|
declare const Find = 5;
|
|
702
725
|
declare const Hover = 6;
|
|
703
|
-
declare const Rename = 7;
|
|
726
|
+
declare const Rename$1 = 7;
|
|
704
727
|
declare const SourceAction = 8;
|
|
705
728
|
declare const EditorHover = "EditorHover";
|
|
706
729
|
declare const EditorCodeGenerator = "EditorCodeGenerator";
|
|
@@ -719,6 +742,9 @@ declare namespace AriaRoles {
|
|
|
719
742
|
declare namespace ClassNames {
|
|
720
743
|
export { Actions, AdditionalDetails, AdditionalDetailsEntry, AdditionalDetailsTitle, Aside, Badge, Button$1 as Button, ButtonPrimary, CallStackArrow, CallStackDescription, CallStackLabel, Categories, Category, Changelog, Chevron, CloseMaskIcon, CodeGeneratorInput, CodeGeneratorMessage, CodeGeneratorWidget, ColorPicker, ColorPickerBackgroundColor, ColorPickerDark, ColorPickerLight, ColorPickerRectangle, ColorPickerSlider, ColorPickerSliderThumb, ColoredMaskIcon, CompletionDetailCloseButton, CompletionDetailContent, DebugButton, DebugButtons, DebugPausedMessage, DebugPropertyChevron, DebugPropertyKey, DebugRow, DebugRowCallStack, DebugRowCheckBox, DebugRowInputField, DebugSectionAction, DebugSectionActions, DebugSectionHeader, DebugValue, DebugValueBoolean, DebugValueFunction, DebugValueGetter, DebugValueNumber, DebugValueObject, DebugValueScopeName, DebugValueString, DebugValueSymbol, DebugValueUndefined, DefaultMarkdown, DefinitionListItem, DefinitionListItemHeading, DefinitionListItemValue, DeleteWatchExpression, Diagnostic, DiagnosticError, DiagnosticWarning, EditorCompletionItem, EditorCompletionItemDeprecated, EditorCompletionItemFocused, EditorCompletionItemHighlight, EditorCursor, EditorRow, EditorSelection, EditorSourceActions, EditorSourceActionsList, Empty, ExtensionActions, ExtensionActive, ExtensionDetail, ExtensionDetailDescription, ExtensionDetailHeader, ExtensionDetailHeaderActions, ExtensionDetailHeaderDetails, ExtensionDetailIcon, ExtensionDetailName, ExtensionDetailNameBadge, ExtensionDetailPanel, ExtensionDetailTab, ExtensionDetailTabSelected, ExtensionDetailTabs, ExtensionHeader, ExtensionListItem, ExtensionListItemAuthorName, ExtensionListItemDescription, ExtensionListItemDetail, ExtensionListItemFooter, ExtensionListItemIcon, ExtensionListItemName, Extensions, Feature, FeatureContent, FeatureWebView, Features, FeaturesList, FileIcon, Filter, FilterBadge, FindWidget, FindWidgetFind, FindWidgetMatchCount, FindWidgetMatchCountEmpty, FindWidgetReplace, FindWidgetRight, FocusOutline, Grow, Highlight, HighlightDeleted, HighlightInserted, HoverDisplayString, HoverDocumentation, HoverEditorRow, HoverProblem, HoverProblemDetail, HoverProblemMessage, IconButton, IconButtonDisabled, IconClose, InputBox, InputLabel, InputValidationError, Label, LabelCut, LabelDetail, Large, List, ListItems, Markdown, MaskIcon, MaskIconBook, MaskIconCaseSensitive, MaskIconChevronDown, MaskIconChevronRight, MaskIconEllipsis, MaskIconExclude, MaskIconPreserveCase, MaskIconRegex, MaskIconReplaceAll, MaskIconSymbolFile, MaskIconWholeWord, Message, MessageAction, MoreInfo, MoreInfoEntry, MoreInfoEntryKey, MoreInfoEntryOdd, MoreInfoEntryValue, MultilineInputBox, Normal, Problem, ProblemAt, ProblemBadge, ProblemSelected, Problems, ProblemsErrorIcon, ProblemsIcon, ProblemsList, ProblemsTable, ProblemsTableBody, ProblemsTableHeader, ProblemsTableRow, ProblemsTableRowItem, ProblemsTableRowOdd, ProblemsWarningIcon, QuickPick, QuickPickHeader, QuickPickHighlight, QuickPickItem, QuickPickItemActive, QuickPickItemDescription, QuickPickItemLabel, QuickPickItems, QuickPickMaskIcon, QuickPickScrollbar, QuickPickScrollbarSlider, QuickPickStatus, Resource, Resources, Sash, SashVertical, ScrollBar$1 as ScrollBar, ScrollBarSmall, ScrollBarThumb, ScrollBarThumbActive, ScrollBarVertical, Scrollbar, ScrollbarThumb, ScrollbarTrack, Search, SearchField, SearchFieldButton, SearchFieldButtonChecked, SearchFieldButtonDisabled, SearchFieldButtons, SearchFieldContainer, SearchFieldDisabled, SearchFieldError, SearchHeader, SearchHeaderDetails, SearchHeaderDetailsExpanded, SearchHeaderDetailsExpandedTop, SearchHeaderDetailsHeading, SearchHeaderTop, SearchHeaderTopRight, SearchInputError, SearchRemove, SearchToggleButton, SearchToggleButtonExpanded, SettingsButton, SettingsIcon, Small, SourceActionHeading, SourceActionIcon, SourceActionItem, SourceActionItemFocused, SourceControlBadge, Table, TableCell, TableHeading, ToggleDetails, Tree$1 as Tree, TreeItem$1 as TreeItem, TreeItemActive, TreeItems, Viewlet, ViewletFind, ViewletFindWidget, ViewletSearchMessage, ViewletSearchMessageIndented, Welcome, WelcomeMessage };
|
|
721
744
|
}
|
|
745
|
+
declare namespace EditOrigin {
|
|
746
|
+
export { CompositionUpdate, ContentEditableInput, Delete, DeleteHorizontalRight, DeleteLeft, EditorCut, EditorPasteText, EditorSnippet, EditorType, EditorTypeWithAutoClosing, Format, IndentLess, IndentMore, InsertLineBreak, LineComment, Rename, Replace, ReplaceAll, ToggleBlockComment, Unknown };
|
|
747
|
+
}
|
|
722
748
|
declare namespace ElementTagMap {
|
|
723
749
|
export { getElementTag };
|
|
724
750
|
}
|
|
@@ -741,16 +767,16 @@ declare namespace Icons {
|
|
|
741
767
|
export { Blank, Check, ClearAll, CollapseAll, DebugAlt2, Filter$1 as Filter, ListFlat, ListTree, NewFile, NewFolder, Refresh };
|
|
742
768
|
}
|
|
743
769
|
declare namespace InputEventType {
|
|
744
|
-
export { DeleteContentBackward, DeleteContentForward, DeleteWordBackward, DeleteWordForward, InsertCompositionText, InsertFromPaste, InsertLineBreak, InsertText };
|
|
770
|
+
export { DeleteContentBackward, DeleteContentForward, DeleteWordBackward, DeleteWordForward, InsertCompositionText, InsertFromPaste, InsertLineBreak$1 as InsertLineBreak, InsertText };
|
|
745
771
|
}
|
|
746
772
|
declare namespace InputSource {
|
|
747
773
|
export { Script, User };
|
|
748
774
|
}
|
|
749
775
|
declare namespace KeyCode {
|
|
750
|
-
export { ABNT_C1, ABNT_C2, Alt, AudioVolumeDown, AudioVolumeMute, AudioVolumeUp, Backquote, Backslash, Backspace, BracketLeft, BracketRight, BrowserBack, BrowserForward, BrowserHome, BrowserSearch, CapsLock, Clear, Comma, ContextMenu, Ctrl, Delete, Digit0, Digit1, Digit2, Digit3, Digit4, Digit5, Digit6, Digit7, Digit8, Digit9, DownArrow, End, Enter, Equal, Escape, F1, F10, F11, F12, F13, F14, F15, F16, F17, F18, F19, F2, F20, F21, F22, F23, F24, F3, F4, F5, F6, F7, F8, F9, Home, Insert, IntlBackslash, KeyA, KeyB, KeyC, KeyD, KeyE, KeyF, KeyG, KeyH, KeyI, KeyInComposition, KeyJ, KeyK, KeyL, KeyM, KeyN, KeyO, KeyP, KeyQ, KeyR, KeyS, KeyT, KeyU, KeyV, KeyW, KeyX, KeyY, KeyZ, LaunchApp2, LaunchMail, LaunchMediaPlayer, LeftArrow, MaxValue, MediaPlayPause, MediaStop, MediaTrackNext, MediaTrackPrevious, Meta, Minus, NumLock, Numpad0, Numpad1, Numpad2, Numpad3, Numpad4, Numpad5, Numpad6, Numpad7, Numpad8, Numpad9, NumpadAdd, NumpadDecimal, NumpadDivide, NumpadMultiply, NumpadSeparator, NumpadSubtract, OEM_8, PageDown, PageUp, PauseBreak, Period, Plus, Quote, RightArrow, ScrollLock, SemiColon, Slash, Space, Star, Tab$1 as Tab, Unknown, UpArrow };
|
|
776
|
+
export { ABNT_C1, ABNT_C2, Alt, AudioVolumeDown, AudioVolumeMute, AudioVolumeUp, Backquote, Backslash, Backspace, BracketLeft, BracketRight, BrowserBack, BrowserForward, BrowserHome, BrowserSearch, CapsLock, Clear, Comma, ContextMenu, Ctrl, Delete$1 as Delete, Digit0, Digit1, Digit2, Digit3, Digit4, Digit5, Digit6, Digit7, Digit8, Digit9, DownArrow, End, Enter, Equal, Escape, F1, F10, F11, F12, F13, F14, F15, F16, F17, F18, F19, F2, F20, F21, F22, F23, F24, F3, F4, F5, F6, F7, F8, F9, Home, Insert, IntlBackslash, KeyA, KeyB, KeyC, KeyD, KeyE, KeyF, KeyG, KeyH, KeyI, KeyInComposition, KeyJ, KeyK, KeyL, KeyM, KeyN, KeyO, KeyP, KeyQ, KeyR, KeyS, KeyT, KeyU, KeyV, KeyW, KeyX, KeyY, KeyZ, LaunchApp2, LaunchMail, LaunchMediaPlayer, LeftArrow, MaxValue, MediaPlayPause, MediaStop, MediaTrackNext, MediaTrackPrevious, Meta, Minus, NumLock, Numpad0, Numpad1, Numpad2, Numpad3, Numpad4, Numpad5, Numpad6, Numpad7, Numpad8, Numpad9, NumpadAdd, NumpadDecimal, NumpadDivide, NumpadMultiply, NumpadSeparator, NumpadSubtract, OEM_8, PageDown, PageUp, PauseBreak, Period, Plus, Quote, RightArrow, ScrollLock, SemiColon, Slash, Space, Star, Tab$1 as Tab, Unknown$1 as Unknown, UpArrow };
|
|
751
777
|
}
|
|
752
778
|
declare namespace KeyCodeString {
|
|
753
|
-
export { Backquote$1 as Backquote, Backslash$1 as Backslash, Backspace$1 as Backspace, Comma$1 as Comma, Delete$
|
|
779
|
+
export { Backquote$1 as Backquote, Backslash$1 as Backslash, Backspace$1 as Backspace, Comma$1 as Comma, Delete$2 as Delete, Digit0$1 as Digit0, Digit1$1 as Digit1, Digit2$1 as Digit2, Digit3$1 as Digit3, Digit4$1 as Digit4, Digit5$1 as Digit5, Digit6$1 as Digit6, Digit7$1 as Digit7, Digit8$1 as Digit8, Digit9$1 as Digit9, DownArrow$1 as DownArrow, End$1 as End, Enter$1 as Enter, Equal$1 as Equal, Escape$1 as Escape, F1$1 as F1, F2$1 as F2, F3$1 as F3, F4$1 as F4, F5$1 as F5, F6$1 as F6, Home$1 as Home, Insert$1 as Insert, KeyA$1 as KeyA, KeyB$1 as KeyB, KeyC$1 as KeyC, KeyD$1 as KeyD, KeyE$1 as KeyE, KeyF$1 as KeyF, KeyG$1 as KeyG, KeyH$1 as KeyH, KeyI$1 as KeyI, KeyJ$1 as KeyJ, KeyK$1 as KeyK, KeyL$1 as KeyL, KeyM$1 as KeyM, KeyN$1 as KeyN, KeyO$1 as KeyO, KeyP$1 as KeyP, KeyQ$1 as KeyQ, KeyR$1 as KeyR, KeyS$1 as KeyS, KeyT$1 as KeyT, KeyU$1 as KeyU, KeyV$1 as KeyV, KeyW$1 as KeyW, KeyX$1 as KeyX, KeyY$1 as KeyY, KeyZ$1 as KeyZ, LeftArrow$1 as LeftArrow, Minus$1 as Minus, PageDown$1 as PageDown, PageUp$1 as PageUp, Plus$1 as Plus, RightArrow$1 as RightArrow, Space$1 as Space, Star$1 as Star, Tab$2 as Tab, Unknown$2 as Unknown, UpArrow$1 as UpArrow };
|
|
754
780
|
}
|
|
755
781
|
declare namespace KeyModifier {
|
|
756
782
|
export { Alt$1 as Alt, CtrlCmd, Shift, WinCtrl };
|
|
@@ -759,7 +785,7 @@ declare namespace MouseEventType {
|
|
|
759
785
|
export { Keyboard, LeftClick };
|
|
760
786
|
}
|
|
761
787
|
declare namespace RpcId {
|
|
762
|
-
export { ClipBoardProcess, ClipBoardWorker, ColorPickerWorker, CompletionWorker, DebugWorker, EditorWorker, EmbedsProcess, EmbedsWorker, ErrorWorker, ExtensionDetailWorker, ExtensionHostWorker, FileSystemProcess, FileSystemWorker, MainProcess, MarkdownWorker, OutputWorker, ProblemsWorker, RendererProcess, RendererWorker, SearchProcess, SearchProcessElectron, SharedProcess, SourceActionWorker, SourceControlWorker, SyntaxHighlightingWorker, TestWorker };
|
|
788
|
+
export { ClipBoardProcess, ClipBoardWorker, ColorPickerWorker, CompletionWorker, DebugWorker, EditorWorker, EmbedsProcess, EmbedsWorker, ErrorWorker, ExtensionDetailWorker, ExtensionHostWorker, FileSystemProcess, FileSystemWorker, FindWidgetWorker, HoverWorker, MainProcess, MarkdownWorker, OutputWorker, ProblemsWorker, RenameWorker, RendererProcess, RendererWorker, SearchProcess, SearchProcessElectron, SharedProcess, SourceActionWorker, SourceControlWorker, SyntaxHighlightingWorker, TestWorker };
|
|
763
789
|
}
|
|
764
790
|
declare namespace UidSymbol {
|
|
765
791
|
export { uidSymbol };
|
|
@@ -774,12 +800,13 @@ declare namespace WhenExpression {
|
|
|
774
800
|
export { BrowserChromium, BrowserElectron, BrowserFirefox, Empty$1 as Empty, FocusAbout, FocusActivityBar, FocusColorPicker, FocusConfirm, FocusDebugConsoleInput, FocusDebugInput, FocusDebugScope, FocusDialog, FocusEditor, FocusEditorCodeGenerator, FocusEditorCompletions, FocusEditorHover, FocusEditorImage, FocusEditorRename, FocusEditorText, FocusExplorer, FocusExplorerEditBox, FocusExtensions, FocusFindWidget, FocusFindWidgetCloseButton, FocusFindWidgetMatchCase, FocusFindWidgetNextMatchButton, FocusFindWidgetPreviousMatchButton, FocusFindWidgetRegex, FocusFindWidgetReplace, FocusFindWidgetReplaceAllButton, FocusFindWidgetReplaceButton, FocusFindWidgetToggleReplace, FocusKeyBindingsTable, FocusKeyBindingsWhenExpression, FocusLocationList, FocusMenu, FocusOutput, FocusProblems, FocusQuickPickInput, FocusSearchInput, FocusSearchMatchCase, FocusSearchPreserveCase, FocusSearchRegex, FocusSearchReplaceAll, FocusSearchReplaceInput, FocusSearchResults, FocusSearchWholeWord, FocusSimpleBrowser, FocusSimpleBrowserInput, FocusSourceActions, FocusSourceControlInput, FocusTerminal, FocusTitleBarMenuBar, FocusViewletList };
|
|
775
801
|
}
|
|
776
802
|
declare namespace WidgetId {
|
|
777
|
-
export { CodeGenerator, ColorPicker$1 as ColorPicker, Completion, CompletionDetail, Find, Hover, Rename, SourceAction };
|
|
803
|
+
export { CodeGenerator, ColorPicker$1 as ColorPicker, Completion, CompletionDetail, Find, Hover, Rename$1 as Rename, SourceAction };
|
|
778
804
|
}
|
|
779
805
|
|
|
780
806
|
export {
|
|
781
807
|
AriaRoles,
|
|
782
808
|
ClassNames,
|
|
809
|
+
EditOrigin,
|
|
783
810
|
ElementTagMap,
|
|
784
811
|
ElementTags,
|
|
785
812
|
ErrorCodes,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// TODO use numeric enum
|
|
2
|
+
export const CompositionUpdate = 'compositionUpdate';
|
|
3
|
+
export const ContentEditableInput = 'contentEditableInput';
|
|
4
|
+
export const Delete = 'delete';
|
|
5
|
+
export const DeleteHorizontalRight = 'deleteHorizontalRight';
|
|
6
|
+
export const DeleteLeft = 'deleteLeft';
|
|
7
|
+
export const EditorCut = 'editorCut';
|
|
8
|
+
export const EditorPasteText = 'editorPasteText';
|
|
9
|
+
export const EditorSnippet = 'editorSnippet';
|
|
10
|
+
export const EditorType = 'editorType';
|
|
11
|
+
export const EditorTypeWithAutoClosing = 'editorTypeWithAutoClosing';
|
|
12
|
+
export const Format = 'format';
|
|
13
|
+
export const IndentLess = 'indentLess';
|
|
14
|
+
export const IndentMore = 'indentMore';
|
|
15
|
+
export const InsertLineBreak = 'insertLineBreak';
|
|
16
|
+
export const LineComment = 'lineComment';
|
|
17
|
+
export const Rename = 'rename';
|
|
18
|
+
export const Replace = 'replace';
|
|
19
|
+
export const ReplaceAll = 'replaceAll';
|
|
20
|
+
export const ToggleBlockComment = 'toggleBlockComment';
|
|
21
|
+
export const Unknown = 'unknown';
|
package/dist/parts/Main/Main.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * as AriaRoles from "../AriaRoles/AriaRoles.js";
|
|
2
2
|
export * as ClassNames from "../ClassNames/ClassNames.js";
|
|
3
|
+
export * as EditOrigin from "../EditOrigin/EditOrigin.js";
|
|
3
4
|
export * as ElementTagMap from "../ElementTagMap/ElementTagMap.js";
|
|
4
5
|
export * as ElementTags from "../ElementTags/ElementTags.js";
|
|
5
6
|
export * as ErrorCodes from "../ErrorCodes/ErrorCodes.js";
|
|
@@ -24,3 +24,6 @@ export const SourceActionWorker = 303;
|
|
|
24
24
|
export const SourceControlWorker = 66;
|
|
25
25
|
export const SyntaxHighlightingWorker = 3309;
|
|
26
26
|
export const TestWorker = 9001;
|
|
27
|
+
export const FindWidgetWorker = 9002;
|
|
28
|
+
export const HoverWorker = 9003;
|
|
29
|
+
export const RenameWorker = 9004;
|