@lvce-editor/constants 1.31.0 → 1.33.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
|
@@ -644,6 +644,8 @@ declare const ProblemsFilter = 25;
|
|
|
644
644
|
declare const KeyBindingsTable = 26;
|
|
645
645
|
declare const E2eTests = 27;
|
|
646
646
|
declare const ExtensionDetailIconContextMenu = 4091;
|
|
647
|
+
declare const TitleBarContextMenu = 90;
|
|
648
|
+
declare const InputContextMenu = 91;
|
|
647
649
|
declare const Separator$1 = 1;
|
|
648
650
|
declare const None$2 = 0;
|
|
649
651
|
declare const SubMenu = 4;
|
|
@@ -707,6 +709,8 @@ declare const TestWithPlaywrightCli = 6000;
|
|
|
707
709
|
declare const TestWithPlaywrightWorker = 6001;
|
|
708
710
|
declare const IconThemeWorker = 7009;
|
|
709
711
|
declare const TextSearchWorker = 7010;
|
|
712
|
+
declare const Left = 1;
|
|
713
|
+
declare const Right = 2;
|
|
710
714
|
declare const File$2 = 1;
|
|
711
715
|
declare const Match = 2;
|
|
712
716
|
declare const uidSymbol: unique symbol;
|
|
@@ -928,7 +932,7 @@ declare namespace KeyModifier {
|
|
|
928
932
|
export { Alt$1 as Alt, CtrlCmd, Shift, WinCtrl };
|
|
929
933
|
}
|
|
930
934
|
declare namespace MenuEntryId {
|
|
931
|
-
export { ActivityBar, ActivityBarAdditionalViews, E2eTests, Edit, Editor, EditorImage, Explorer, ExtensionDetailIconContextMenu, 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$4 as Tab, Terminal, TitleBar, View };
|
|
935
|
+
export { ActivityBar, ActivityBarAdditionalViews, E2eTests, Edit, Editor, EditorImage, Explorer, ExtensionDetailIconContextMenu, ExtensionDetailReadme, File$1 as File, Go, Help, InputContextMenu, KeyBindingsTable, Main, ManageExtension, OpenRecent, Problems$1 as Problems, ProblemsFilter, Run, Search$2 as Search, Selection, Settings, SimpleBrowser, SourceControl, Tab$4 as Tab, Terminal, TitleBar, TitleBarContextMenu, View };
|
|
932
936
|
}
|
|
933
937
|
declare namespace MenuItemFlags {
|
|
934
938
|
export { Checked, Disabled, Ignore, None$2 as None, RestoreFocus, Separator$1 as Separator, SubMenu, Unchecked };
|
|
@@ -948,6 +952,9 @@ declare namespace PlatformType {
|
|
|
948
952
|
declare namespace RpcId {
|
|
949
953
|
export { ClipBoardProcess, ClipBoardWorker, ColorPickerWorker, CompletionWorker, DebugWorker, EditorWorker, EmbedsProcess, EmbedsWorker, ErrorWorker, ExtensionDetailWorker, ExtensionHostWorker, FileSystemProcess, FileSystemWorker, FindWidgetWorker, HoverWorker, IconThemeWorker, MainProcess, MarkdownWorker, OutputWorker, ProblemsWorker, RenameWorker, RendererProcess, RendererWorker, SearchProcess, SearchProcessElectron, SharedProcess, SourceActionWorker, SourceControlWorker, SyntaxHighlightingWorker, TestWithPlaywrightCli, TestWithPlaywrightWorker, TestWorker, TextSearchWorker };
|
|
950
954
|
}
|
|
955
|
+
declare namespace SideBarLocationType {
|
|
956
|
+
export { Left, Right };
|
|
957
|
+
}
|
|
951
958
|
declare namespace TextSearchResultType {
|
|
952
959
|
export { File$2 as File, Match };
|
|
953
960
|
}
|
|
@@ -1002,6 +1009,7 @@ export {
|
|
|
1002
1009
|
PatchType,
|
|
1003
1010
|
PlatformType,
|
|
1004
1011
|
RpcId,
|
|
1012
|
+
SideBarLocationType,
|
|
1005
1013
|
TextSearchResultType,
|
|
1006
1014
|
UidSymbol,
|
|
1007
1015
|
ViewMode,
|
package/dist/parts/Main/Main.js
CHANGED
|
@@ -26,6 +26,7 @@ export * as ParseKey from "../ParseKey/ParseKey.js";
|
|
|
26
26
|
export * as PatchType from "../PatchType/PatchType.js";
|
|
27
27
|
export * as PlatformType from "../PlatformType/PlatformType.js";
|
|
28
28
|
export * as RpcId from "../RpcId/RpcId.js";
|
|
29
|
+
export * as SideBarLocationType from "../SideBarLocationType/SideBarLocationType.js";
|
|
29
30
|
export * as TextSearchResultType from "../TextSearchResultType/TextSearchResultType.js";
|
|
30
31
|
export * as UidSymbol from "../UidSymbol/UidSymbol.js";
|
|
31
32
|
export * as ViewletCommand from "../ViewletCommand/ViewletCommand.js";
|