@lvce-editor/constants 1.35.0 → 1.36.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
@@ -717,6 +717,12 @@ declare const Right = 2;
717
717
  declare const File$2 = 1;
718
718
  declare const Match = 2;
719
719
  declare const uidSymbol: unique symbol;
720
+ declare const None$3 = 0;
721
+ declare const CheckingForUpdate = 1;
722
+ declare const DownloadingUpdate = 2;
723
+ declare const DownloadedUpdate = 3;
724
+ declare const WaitingForRestart = 4;
725
+ declare const InstallingUpdated = 5;
720
726
  declare const FocusElementByName = "Viewlet.focusElementByName";
721
727
  declare const FocusSelector = "Viewlet.focusSelector";
722
728
  declare const SetCss = "Viewlet.setCss";
@@ -964,6 +970,9 @@ declare namespace TextSearchResultType {
964
970
  declare namespace UidSymbol {
965
971
  export { uidSymbol };
966
972
  }
973
+ declare namespace UpdateState {
974
+ export { CheckingForUpdate, DownloadedUpdate, DownloadingUpdate, InstallingUpdated, None$3 as None, WaitingForRestart };
975
+ }
967
976
  declare namespace ViewletCommand {
968
977
  export { FocusElementByName, FocusSelector, SetCss, SetDom2, SetDragData, SetFocusContext, SetProperty, SetSelectionByName, SetValueByName };
969
978
  }
@@ -1015,6 +1024,7 @@ export {
1015
1024
  SideBarLocationType,
1016
1025
  TextSearchResultType,
1017
1026
  UidSymbol,
1027
+ UpdateState,
1018
1028
  ViewMode,
1019
1029
  ViewletCommand,
1020
1030
  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";
@@ -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.36.0",
4
4
  "description": "Constants",
5
5
  "repository": {
6
6
  "type": "git",