@lvce-editor/constants 1.16.0 → 1.18.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 +79 -8
- package/dist/parts/DirentType/DirentType.js +12 -0
- package/dist/parts/Main/Main.js +5 -0
- package/dist/parts/MenuEntryId/MenuEntryId.js +27 -0
- package/dist/parts/MenuItemFlags/MenuItemFlags.js +8 -0
- package/dist/parts/PlatformType/PlatformType.js +2 -0
- package/dist/parts/ViewMode/ViewMode.js +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -251,6 +251,18 @@ 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 BlockDevice = 1;
|
|
255
|
+
declare const CharacterDevice = 2;
|
|
256
|
+
declare const Directory = 3;
|
|
257
|
+
declare const DirectoryExpanded = 4;
|
|
258
|
+
declare const DirectoryExpanding = 5;
|
|
259
|
+
declare const Fifo = 6;
|
|
260
|
+
declare const File = 7;
|
|
261
|
+
declare const Socket = 8;
|
|
262
|
+
declare const Symlink = 9;
|
|
263
|
+
declare const SymLinkFile = 10;
|
|
264
|
+
declare const SymLinkFolder = 11;
|
|
265
|
+
declare const Unknown = 12;
|
|
254
266
|
declare const CompositionUpdate = "compositionUpdate";
|
|
255
267
|
declare const ContentEditableInput = "contentEditableInput";
|
|
256
268
|
declare const Delete = "delete";
|
|
@@ -270,7 +282,7 @@ declare const Rename = "rename";
|
|
|
270
282
|
declare const Replace = "replace";
|
|
271
283
|
declare const ReplaceAll = "replaceAll";
|
|
272
284
|
declare const ToggleBlockComment = "toggleBlockComment";
|
|
273
|
-
declare const Unknown = "unknown";
|
|
285
|
+
declare const Unknown$1 = "unknown";
|
|
274
286
|
declare const getElementTag: (type: number) => string;
|
|
275
287
|
declare const Audio = "audio";
|
|
276
288
|
declare const Button$2 = "button";
|
|
@@ -363,7 +375,7 @@ declare const InsertCompositionText = "insertCompositionText";
|
|
|
363
375
|
declare const InsertFromPaste = "insertFromPaste";
|
|
364
376
|
declare const User = 1;
|
|
365
377
|
declare const Script = 2;
|
|
366
|
-
declare const Unknown$
|
|
378
|
+
declare const Unknown$2 = 0;
|
|
367
379
|
declare const Backspace = 1;
|
|
368
380
|
declare const Tab$1 = 2;
|
|
369
381
|
declare const Enter = 3;
|
|
@@ -497,7 +509,7 @@ declare const Clear = 129;
|
|
|
497
509
|
declare const MaxValue = 130;
|
|
498
510
|
declare const Star = 131;
|
|
499
511
|
declare const Plus = 132;
|
|
500
|
-
declare const Unknown$
|
|
512
|
+
declare const Unknown$3 = "Unknown";
|
|
501
513
|
declare const Backspace$1 = "Backspace";
|
|
502
514
|
declare const Tab$2 = "Tab";
|
|
503
515
|
declare const Enter$1 = "Enter";
|
|
@@ -566,8 +578,45 @@ declare const CtrlCmd: number;
|
|
|
566
578
|
declare const Shift: number;
|
|
567
579
|
declare const Alt$1: number;
|
|
568
580
|
declare const WinCtrl: number;
|
|
581
|
+
declare const ActivityBar = 1;
|
|
582
|
+
declare const Edit = 2;
|
|
583
|
+
declare const Editor = 3;
|
|
584
|
+
declare const Explorer = 4;
|
|
585
|
+
declare const File$1 = 5;
|
|
586
|
+
declare const Go = 6;
|
|
587
|
+
declare const Help = 7;
|
|
588
|
+
declare const ManageExtension = 8;
|
|
589
|
+
declare const OpenRecent = 9;
|
|
590
|
+
declare const Run = 10;
|
|
591
|
+
declare const Selection = 11;
|
|
592
|
+
declare const Settings = 12;
|
|
593
|
+
declare const Tab$3 = 13;
|
|
594
|
+
declare const Terminal = 14;
|
|
595
|
+
declare const TitleBar = 15;
|
|
596
|
+
declare const View = 16;
|
|
597
|
+
declare const ActivityBarAdditionalViews = 17;
|
|
598
|
+
declare const Search$2 = 18;
|
|
599
|
+
declare const EditorImage = 19;
|
|
600
|
+
declare const ExtensionDetailReadme = 20;
|
|
601
|
+
declare const SimpleBrowser = 21;
|
|
602
|
+
declare const SourceControl = 22;
|
|
603
|
+
declare const Problems$1 = 23;
|
|
604
|
+
declare const Main = 24;
|
|
605
|
+
declare const ProblemsFilter = 25;
|
|
606
|
+
declare const KeyBindingsTable = 26;
|
|
607
|
+
declare const E2eTests = 27;
|
|
608
|
+
declare const Separator = 1;
|
|
609
|
+
declare const None$1 = 0;
|
|
610
|
+
declare const SubMenu = 4;
|
|
611
|
+
declare const Checked = 2;
|
|
612
|
+
declare const Unchecked = 3;
|
|
613
|
+
declare const Disabled = 5;
|
|
614
|
+
declare const RestoreFocus = 6;
|
|
615
|
+
declare const Ignore = 7;
|
|
569
616
|
declare const Keyboard = -1;
|
|
570
617
|
declare const LeftClick = 0;
|
|
618
|
+
declare const Electron = 2;
|
|
619
|
+
declare const Remote = 3;
|
|
571
620
|
declare const ClipBoardProcess = 3401;
|
|
572
621
|
declare const ClipBoardWorker = 3400;
|
|
573
622
|
declare const ColorPickerWorker = 302;
|
|
@@ -609,6 +658,8 @@ declare const SetProperty = "Viewlet.setProperty";
|
|
|
609
658
|
declare const SetDragData = "Viewlet.setDragData";
|
|
610
659
|
declare const SetSelectionByName = "Viewlet.setSelectionByName";
|
|
611
660
|
declare const SetValueByName = "Viewlet.setValueByName";
|
|
661
|
+
declare const List$1 = 1;
|
|
662
|
+
declare const Tree$2 = 2;
|
|
612
663
|
declare const Audio$1 = 0;
|
|
613
664
|
declare const Button$4 = 1;
|
|
614
665
|
declare const Col$1 = 2;
|
|
@@ -641,7 +692,7 @@ declare const Footer$1 = 29;
|
|
|
641
692
|
declare const Header$1 = 30;
|
|
642
693
|
declare const Nav$1 = 40;
|
|
643
694
|
declare const Section$1 = 41;
|
|
644
|
-
declare const Search$
|
|
695
|
+
declare const Search$3 = 42;
|
|
645
696
|
declare const Dd$1 = 43;
|
|
646
697
|
declare const Dl$1 = 44;
|
|
647
698
|
declare const Figcaption$1 = 45;
|
|
@@ -753,8 +804,11 @@ declare namespace AriaRoles {
|
|
|
753
804
|
declare namespace ClassNames {
|
|
754
805
|
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 };
|
|
755
806
|
}
|
|
807
|
+
declare namespace DirentType {
|
|
808
|
+
export { BlockDevice, CharacterDevice, Directory, DirectoryExpanded, DirectoryExpanding, Fifo, File, Socket, SymLinkFile, SymLinkFolder, Symlink, Unknown };
|
|
809
|
+
}
|
|
756
810
|
declare namespace EditOrigin {
|
|
757
|
-
export { CompositionUpdate, ContentEditableInput, Delete, DeleteHorizontalRight, DeleteLeft, EditorCut, EditorPasteText, EditorSnippet, EditorType, EditorTypeWithAutoClosing, Format, IndentLess, IndentMore, InsertLineBreak, LineComment, Rename, Replace, ReplaceAll, ToggleBlockComment, Unknown };
|
|
811
|
+
export { CompositionUpdate, ContentEditableInput, Delete, DeleteHorizontalRight, DeleteLeft, EditorCut, EditorPasteText, EditorSnippet, EditorType, EditorTypeWithAutoClosing, Format, IndentLess, IndentMore, InsertLineBreak, LineComment, Rename, Replace, ReplaceAll, ToggleBlockComment, Unknown$1 as Unknown };
|
|
758
812
|
}
|
|
759
813
|
declare namespace ElementTagMap {
|
|
760
814
|
export { getElementTag };
|
|
@@ -787,17 +841,26 @@ declare namespace InputSource {
|
|
|
787
841
|
export { Script, User };
|
|
788
842
|
}
|
|
789
843
|
declare namespace KeyCode {
|
|
790
|
-
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$
|
|
844
|
+
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$2 as Unknown, UpArrow };
|
|
791
845
|
}
|
|
792
846
|
declare namespace KeyCodeString {
|
|
793
|
-
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$
|
|
847
|
+
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$3 as Unknown, UpArrow$1 as UpArrow };
|
|
794
848
|
}
|
|
795
849
|
declare namespace KeyModifier {
|
|
796
850
|
export { Alt$1 as Alt, CtrlCmd, Shift, WinCtrl };
|
|
797
851
|
}
|
|
852
|
+
declare namespace MenuEntryId {
|
|
853
|
+
export { ActivityBar, ActivityBarAdditionalViews, E2eTests, Edit, Editor, EditorImage, Explorer, ExtensionDetailReadme, File$1 as File, Go, Help, KeyBindingsTable, Main, ManageExtension, OpenRecent, Problems$1 as Problems, ProblemsFilter, Run, Search$2 as Search, Selection, Settings, SimpleBrowser, SourceControl, Tab$3 as Tab, Terminal, TitleBar, View };
|
|
854
|
+
}
|
|
855
|
+
declare namespace MenuItemFlags {
|
|
856
|
+
export { Checked, Disabled, Ignore, None$1 as None, RestoreFocus, Separator, SubMenu, Unchecked };
|
|
857
|
+
}
|
|
798
858
|
declare namespace MouseEventType {
|
|
799
859
|
export { Keyboard, LeftClick };
|
|
800
860
|
}
|
|
861
|
+
declare namespace PlatformType {
|
|
862
|
+
export { Electron, Remote };
|
|
863
|
+
}
|
|
801
864
|
declare namespace RpcId {
|
|
802
865
|
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, TestWithPlaywrightCli, TestWithPlaywrightWorker, TestWorker };
|
|
803
866
|
}
|
|
@@ -807,8 +870,11 @@ declare namespace UidSymbol {
|
|
|
807
870
|
declare namespace ViewletCommand {
|
|
808
871
|
export { FocusElementByName, FocusSelector, SetCss, SetDom2, SetDragData, SetFocusContext, SetProperty, SetSelectionByName, SetValueByName };
|
|
809
872
|
}
|
|
873
|
+
declare namespace ViewMode {
|
|
874
|
+
export { List$1 as List, Tree$2 as Tree };
|
|
875
|
+
}
|
|
810
876
|
declare namespace VirtualDomElements {
|
|
811
|
-
export { A$1 as A, Abbr$1 as Abbr, Article$1 as Article, Aside$2 as Aside, Audio$1 as Audio, Br$1 as Br, Button$4 as Button, Cite$1 as Cite, Code$1 as Code, Col$1 as Col, ColGroup$1 as ColGroup, Data$1 as Data, Dd$1 as Dd, Del$1 as Del, Div$1 as Div, Dl$1 as Dl, Dt$1 as Dt, Figcaption$1 as Figcaption, Figure$1 as Figure, Footer$1 as Footer, H1$1 as H1, H2$1 as H2, H3$1 as H3, H4$1 as H4, H5$1 as H5, H6$1 as H6, Header$1 as Header, Hr$1 as Hr, I$1 as I, Img$1 as Img, Input$1 as Input, Ins$1 as Ins, Kbd$1 as Kbd, Label$2 as Label, Li$1 as Li, Nav$1 as Nav, Ol$1 as Ol, Option$2 as Option, P$1 as P, Pre$1 as Pre, Root, Search$
|
|
877
|
+
export { A$1 as A, Abbr$1 as Abbr, Article$1 as Article, Aside$2 as Aside, Audio$1 as Audio, Br$1 as Br, Button$4 as Button, Cite$1 as Cite, Code$1 as Code, Col$1 as Col, ColGroup$1 as ColGroup, Data$1 as Data, Dd$1 as Dd, Del$1 as Del, Div$1 as Div, Dl$1 as Dl, Dt$1 as Dt, Figcaption$1 as Figcaption, Figure$1 as Figure, Footer$1 as Footer, H1$1 as H1, H2$1 as H2, H3$1 as H3, H4$1 as H4, H5$1 as H5, H6$1 as H6, Header$1 as Header, Hr$1 as Hr, I$1 as I, Img$1 as Img, Input$1 as Input, Ins$1 as Ins, Kbd$1 as Kbd, Label$2 as Label, Li$1 as Li, Nav$1 as Nav, Ol$1 as Ol, Option$2 as Option, P$1 as P, Pre$1 as Pre, Root, Search$3 as Search, Section$1 as Section, Select$1 as Select, Span$1 as Span, TBody$1 as TBody, THead$1 as THead, Table$2 as Table, Td$1 as Td, Text, TextArea$1 as TextArea, Tfoot$1 as Tfoot, Th$1 as Th, Time$1 as Time, Tr$1 as Tr, Ul$1 as Ul, Video$1 as Video };
|
|
812
878
|
}
|
|
813
879
|
declare namespace WhenExpression {
|
|
814
880
|
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, FocusIgnoreFiles, FocusKeyBindingsTable, FocusKeyBindingsWhenExpression, FocusLocationList, FocusMenu, FocusOutput, FocusProblems, FocusQuickPickInput, FocusSearch, FocusSearchExcludeInput, FocusSearchIncludeInput, FocusSearchInput, FocusSearchMatchCase, FocusSearchOpenEditors, FocusSearchPreserveCase, FocusSearchRegex, FocusSearchReplaceAll, FocusSearchReplaceInput, FocusSearchResults, FocusSearchWholeWord, FocusSimpleBrowser, FocusSimpleBrowserInput, FocusSourceActions, FocusSourceControlInput, FocusTerminal, FocusTitleBarMenuBar, FocusToggleDetails, FocusToggleReplace, FocusViewletList };
|
|
@@ -820,6 +886,7 @@ declare namespace WidgetId {
|
|
|
820
886
|
export {
|
|
821
887
|
AriaRoles,
|
|
822
888
|
ClassNames,
|
|
889
|
+
DirentType,
|
|
823
890
|
EditOrigin,
|
|
824
891
|
ElementTagMap,
|
|
825
892
|
ElementTags,
|
|
@@ -834,9 +901,13 @@ export {
|
|
|
834
901
|
KeyCode,
|
|
835
902
|
KeyCodeString,
|
|
836
903
|
KeyModifier,
|
|
904
|
+
MenuEntryId,
|
|
905
|
+
MenuItemFlags,
|
|
837
906
|
MouseEventType,
|
|
907
|
+
PlatformType,
|
|
838
908
|
RpcId,
|
|
839
909
|
UidSymbol,
|
|
910
|
+
ViewMode,
|
|
840
911
|
ViewletCommand,
|
|
841
912
|
VirtualDomElements,
|
|
842
913
|
WhenExpression,
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export const BlockDevice = 1;
|
|
2
|
+
export const CharacterDevice = 2;
|
|
3
|
+
export const Directory = 3;
|
|
4
|
+
export const DirectoryExpanded = 4;
|
|
5
|
+
export const DirectoryExpanding = 5;
|
|
6
|
+
export const Fifo = 6;
|
|
7
|
+
export const File = 7;
|
|
8
|
+
export const Socket = 8;
|
|
9
|
+
export const Symlink = 9;
|
|
10
|
+
export const SymLinkFile = 10;
|
|
11
|
+
export const SymLinkFolder = 11;
|
|
12
|
+
export const Unknown = 12;
|
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 DirentType from "../DirentType/DirentType.js";
|
|
3
4
|
export * as EditOrigin from "../EditOrigin/EditOrigin.js";
|
|
4
5
|
export * as ElementTagMap from "../ElementTagMap/ElementTagMap.js";
|
|
5
6
|
export * as ElementTags from "../ElementTags/ElementTags.js";
|
|
@@ -14,10 +15,14 @@ export * as InputSource from "../InputSource/InputSource.js";
|
|
|
14
15
|
export * as KeyCode from "../KeyCode/KeyCode.js";
|
|
15
16
|
export * as KeyCodeString from "../KeyCodeString/KeyCodeString.js";
|
|
16
17
|
export * as KeyModifier from "../KeyModifier/KeyModifier.js";
|
|
18
|
+
export * as MenuEntryId from "../MenuEntryId/MenuEntryId.js";
|
|
19
|
+
export * as MenuItemFlags from "../MenuItemFlags/MenuItemFlags.js";
|
|
17
20
|
export * as MouseEventType from "../MouseEventType/MouseEventType.js";
|
|
21
|
+
export * as PlatformType from "../PlatformType/PlatformType.js";
|
|
18
22
|
export * as RpcId from "../RpcId/RpcId.js";
|
|
19
23
|
export * as UidSymbol from "../UidSymbol/UidSymbol.js";
|
|
20
24
|
export * as ViewletCommand from "../ViewletCommand/ViewletCommand.js";
|
|
25
|
+
export * as ViewMode from "../ViewMode/ViewMode.js";
|
|
21
26
|
export * as VirtualDomElements from "../VirtualDomElements/VirtualDomElements.js";
|
|
22
27
|
export * as WhenExpression from "../WhenExpression/WhenExpression.js";
|
|
23
28
|
export * as WidgetId from "../WidgetId/WidgetId.js";
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export const ActivityBar = 1;
|
|
2
|
+
export const Edit = 2;
|
|
3
|
+
export const Editor = 3;
|
|
4
|
+
export const Explorer = 4;
|
|
5
|
+
export const File = 5;
|
|
6
|
+
export const Go = 6;
|
|
7
|
+
export const Help = 7;
|
|
8
|
+
export const ManageExtension = 8;
|
|
9
|
+
export const OpenRecent = 9;
|
|
10
|
+
export const Run = 10;
|
|
11
|
+
export const Selection = 11;
|
|
12
|
+
export const Settings = 12;
|
|
13
|
+
export const Tab = 13;
|
|
14
|
+
export const Terminal = 14;
|
|
15
|
+
export const TitleBar = 15;
|
|
16
|
+
export const View = 16;
|
|
17
|
+
export const ActivityBarAdditionalViews = 17;
|
|
18
|
+
export const Search = 18;
|
|
19
|
+
export const EditorImage = 19;
|
|
20
|
+
export const ExtensionDetailReadme = 20;
|
|
21
|
+
export const SimpleBrowser = 21;
|
|
22
|
+
export const SourceControl = 22;
|
|
23
|
+
export const Problems = 23;
|
|
24
|
+
export const Main = 24;
|
|
25
|
+
export const ProblemsFilter = 25;
|
|
26
|
+
export const KeyBindingsTable = 26;
|
|
27
|
+
export const E2eTests = 27;
|