@lvce-editor/constants 1.30.0 → 1.32.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,7 @@ 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;
|
|
647
648
|
declare const Separator$1 = 1;
|
|
648
649
|
declare const None$2 = 0;
|
|
649
650
|
declare const SubMenu = 4;
|
|
@@ -707,6 +708,8 @@ declare const TestWithPlaywrightCli = 6000;
|
|
|
707
708
|
declare const TestWithPlaywrightWorker = 6001;
|
|
708
709
|
declare const IconThemeWorker = 7009;
|
|
709
710
|
declare const TextSearchWorker = 7010;
|
|
711
|
+
declare const Left = 1;
|
|
712
|
+
declare const Right = 2;
|
|
710
713
|
declare const File$2 = 1;
|
|
711
714
|
declare const Match = 2;
|
|
712
715
|
declare const uidSymbol: unique symbol;
|
|
@@ -928,7 +931,7 @@ declare namespace KeyModifier {
|
|
|
928
931
|
export { Alt$1 as Alt, CtrlCmd, Shift, WinCtrl };
|
|
929
932
|
}
|
|
930
933
|
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 };
|
|
934
|
+
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, TitleBarContextMenu, View };
|
|
932
935
|
}
|
|
933
936
|
declare namespace MenuItemFlags {
|
|
934
937
|
export { Checked, Disabled, Ignore, None$2 as None, RestoreFocus, Separator$1 as Separator, SubMenu, Unchecked };
|
|
@@ -948,6 +951,9 @@ declare namespace PlatformType {
|
|
|
948
951
|
declare namespace RpcId {
|
|
949
952
|
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
953
|
}
|
|
954
|
+
declare namespace SideBarLocationType {
|
|
955
|
+
export { Left, Right };
|
|
956
|
+
}
|
|
951
957
|
declare namespace TextSearchResultType {
|
|
952
958
|
export { File$2 as File, Match };
|
|
953
959
|
}
|
|
@@ -1002,6 +1008,7 @@ export {
|
|
|
1002
1008
|
PatchType,
|
|
1003
1009
|
PlatformType,
|
|
1004
1010
|
RpcId,
|
|
1011
|
+
SideBarLocationType,
|
|
1005
1012
|
TextSearchResultType,
|
|
1006
1013
|
UidSymbol,
|
|
1007
1014
|
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";
|