@lvce-editor/constants 1.35.0 → 1.37.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
|
@@ -712,11 +712,18 @@ declare const TestWithPlaywrightCli = 6000;
|
|
|
712
712
|
declare const TestWithPlaywrightWorker = 6001;
|
|
713
713
|
declare const IconThemeWorker = 7009;
|
|
714
714
|
declare const TextSearchWorker = 7010;
|
|
715
|
+
declare const TextMeasurementWorker = 7011;
|
|
715
716
|
declare const Left = 1;
|
|
716
717
|
declare const Right = 2;
|
|
717
718
|
declare const File$2 = 1;
|
|
718
719
|
declare const Match = 2;
|
|
719
720
|
declare const uidSymbol: unique symbol;
|
|
721
|
+
declare const None$3 = 0;
|
|
722
|
+
declare const CheckingForUpdate = 1;
|
|
723
|
+
declare const DownloadingUpdate = 2;
|
|
724
|
+
declare const DownloadedUpdate = 3;
|
|
725
|
+
declare const WaitingForRestart = 4;
|
|
726
|
+
declare const InstallingUpdated = 5;
|
|
720
727
|
declare const FocusElementByName = "Viewlet.focusElementByName";
|
|
721
728
|
declare const FocusSelector = "Viewlet.focusSelector";
|
|
722
729
|
declare const SetCss = "Viewlet.setCss";
|
|
@@ -953,7 +960,7 @@ declare namespace PlatformType {
|
|
|
953
960
|
export { Electron, Remote, Test, Web };
|
|
954
961
|
}
|
|
955
962
|
declare namespace RpcId {
|
|
956
|
-
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 };
|
|
963
|
+
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 };
|
|
957
964
|
}
|
|
958
965
|
declare namespace SideBarLocationType {
|
|
959
966
|
export { Left, Right };
|
|
@@ -964,6 +971,9 @@ declare namespace TextSearchResultType {
|
|
|
964
971
|
declare namespace UidSymbol {
|
|
965
972
|
export { uidSymbol };
|
|
966
973
|
}
|
|
974
|
+
declare namespace UpdateState {
|
|
975
|
+
export { CheckingForUpdate, DownloadedUpdate, DownloadingUpdate, InstallingUpdated, None$3 as None, WaitingForRestart };
|
|
976
|
+
}
|
|
967
977
|
declare namespace ViewletCommand {
|
|
968
978
|
export { FocusElementByName, FocusSelector, SetCss, SetDom2, SetDragData, SetFocusContext, SetProperty, SetSelectionByName, SetValueByName };
|
|
969
979
|
}
|
|
@@ -1015,6 +1025,7 @@ export {
|
|
|
1015
1025
|
SideBarLocationType,
|
|
1016
1026
|
TextSearchResultType,
|
|
1017
1027
|
UidSymbol,
|
|
1028
|
+
UpdateState,
|
|
1018
1029
|
ViewMode,
|
|
1019
1030
|
ViewletCommand,
|
|
1020
1031
|
ViewletModuleId,
|
package/dist/parts/Main/Main.js
CHANGED
|
@@ -29,6 +29,7 @@ export * as RpcId from "../RpcId/RpcId.js";
|
|
|
29
29
|
export * as SideBarLocationType from "../SideBarLocationType/SideBarLocationType.js";
|
|
30
30
|
export * as TextSearchResultType from "../TextSearchResultType/TextSearchResultType.js";
|
|
31
31
|
export * as UidSymbol from "../UidSymbol/UidSymbol.js";
|
|
32
|
+
export * as UpdateState from "../UpdateState/UpdateState.js";
|
|
32
33
|
export * as ViewletCommand from "../ViewletCommand/ViewletCommand.js";
|
|
33
34
|
export * as ViewletModuleId from "../ViewletModuleId/ViewletModuleId.js";
|
|
34
35
|
export * as ViewMode from "../ViewMode/ViewMode.js";
|