@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,
@@ -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";
@@ -31,3 +31,4 @@ export const TestWithPlaywrightCli = 6000;
31
31
  export const TestWithPlaywrightWorker = 6001;
32
32
  export const IconThemeWorker = 7009;
33
33
  export const TextSearchWorker = 7010;
34
+ export const TextMeasurementWorker = 7011;
@@ -0,0 +1,6 @@
1
+ export const None = 0;
2
+ export const CheckingForUpdate = 1;
3
+ export const DownloadingUpdate = 2;
4
+ export const DownloadedUpdate = 3;
5
+ export const WaitingForRestart = 4;
6
+ export const InstallingUpdated = 5;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/constants",
3
- "version": "1.35.0",
3
+ "version": "1.37.0",
4
4
  "description": "Constants",
5
5
  "repository": {
6
6
  "type": "git",