@lvce-editor/constants 1.39.0 → 1.41.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
|
@@ -680,6 +680,18 @@ declare const Web = 1;
|
|
|
680
680
|
declare const Electron = 2;
|
|
681
681
|
declare const Remote = 3;
|
|
682
682
|
declare const Test = 4;
|
|
683
|
+
declare const ColorTheme = 0;
|
|
684
|
+
declare const Commands = 1;
|
|
685
|
+
declare const Custom = 2;
|
|
686
|
+
declare const File$2 = 3;
|
|
687
|
+
declare const GoToLine = 4;
|
|
688
|
+
declare const Help$1 = 5;
|
|
689
|
+
declare const Recent = 6;
|
|
690
|
+
declare const Symbol$1 = 7;
|
|
691
|
+
declare const View$1 = 8;
|
|
692
|
+
declare const WorkspaceSymbol = 9;
|
|
693
|
+
declare const Noop = 10;
|
|
694
|
+
declare const EveryThing = 100;
|
|
683
695
|
declare const ClipBoardProcess = 3401;
|
|
684
696
|
declare const ClipBoardWorker = 3400;
|
|
685
697
|
declare const ColorPickerWorker = 302;
|
|
@@ -716,7 +728,7 @@ declare const TextSearchWorker = 7010;
|
|
|
716
728
|
declare const TextMeasurementWorker = 7011;
|
|
717
729
|
declare const Left = 1;
|
|
718
730
|
declare const Right = 2;
|
|
719
|
-
declare const File$
|
|
731
|
+
declare const File$3 = 1;
|
|
720
732
|
declare const Match = 2;
|
|
721
733
|
declare const uidSymbol: unique symbol;
|
|
722
734
|
declare const None$3 = 0;
|
|
@@ -961,6 +973,9 @@ declare namespace PatchType {
|
|
|
961
973
|
declare namespace PlatformType {
|
|
962
974
|
export { Electron, Remote, Test, Web };
|
|
963
975
|
}
|
|
976
|
+
declare namespace QuickPickEntryId {
|
|
977
|
+
export { ColorTheme, Commands, Custom, EveryThing, File$2 as File, GoToLine, Help$1 as Help, Noop, Recent, Symbol$1 as Symbol, View$1 as View, WorkspaceSymbol };
|
|
978
|
+
}
|
|
964
979
|
declare namespace RpcId {
|
|
965
980
|
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, TextMeasurementWorker, TextSearchWorker };
|
|
966
981
|
}
|
|
@@ -968,7 +983,7 @@ declare namespace SideBarLocationType {
|
|
|
968
983
|
export { Left, Right };
|
|
969
984
|
}
|
|
970
985
|
declare namespace TextSearchResultType {
|
|
971
|
-
export { File$
|
|
986
|
+
export { File$3 as File, Match };
|
|
972
987
|
}
|
|
973
988
|
declare namespace UidSymbol {
|
|
974
989
|
export { uidSymbol };
|
|
@@ -1023,6 +1038,7 @@ export {
|
|
|
1023
1038
|
ParseKey,
|
|
1024
1039
|
PatchType,
|
|
1025
1040
|
PlatformType,
|
|
1041
|
+
QuickPickEntryId,
|
|
1026
1042
|
RpcId,
|
|
1027
1043
|
SideBarLocationType,
|
|
1028
1044
|
TextSearchResultType,
|
package/dist/parts/Key/Key.js
CHANGED
|
@@ -81,6 +81,7 @@ export const Minus = '-';
|
|
|
81
81
|
export const Period = '.';
|
|
82
82
|
export const Slash = '/';
|
|
83
83
|
export const Backquote = '`';
|
|
84
|
+
export const Backquote2 = 'Backquote';
|
|
84
85
|
export const BracketLeft = '[';
|
|
85
86
|
export const Backslash = '\\';
|
|
86
87
|
export const BracketRight = ']';
|
package/dist/parts/Main/Main.js
CHANGED
|
@@ -25,6 +25,7 @@ export * as MouseEventType from "../MouseEventType/MouseEventType.js";
|
|
|
25
25
|
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
|
+
export * as QuickPickEntryId from "../QuickPickEntryId/QuickPickEntryId.js";
|
|
28
29
|
export * as RpcId from "../RpcId/RpcId.js";
|
|
29
30
|
export * as SideBarLocationType from "../SideBarLocationType/SideBarLocationType.js";
|
|
30
31
|
export * as TextSearchResultType from "../TextSearchResultType/TextSearchResultType.js";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export const ColorTheme = 0;
|
|
2
|
+
export const Commands = 1;
|
|
3
|
+
export const Custom = 2;
|
|
4
|
+
export const File = 3;
|
|
5
|
+
export const GoToLine = 4;
|
|
6
|
+
export const Help = 5;
|
|
7
|
+
export const Recent = 6;
|
|
8
|
+
export const Symbol = 7;
|
|
9
|
+
export const View = 8;
|
|
10
|
+
export const WorkspaceSymbol = 9;
|
|
11
|
+
export const Noop = 10;
|
|
12
|
+
export const EveryThing = 100;
|