@lvce-editor/constants 1.34.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
@@ -648,6 +648,7 @@ declare const E2eTests = 27;
648
648
  declare const ExtensionDetailIconContextMenu = 4091;
649
649
  declare const TitleBarContextMenu = 90;
650
650
  declare const InputContextMenu = 91;
651
+ declare const SearchMatchContextMenu = 93;
651
652
  declare const Separator$1 = 1;
652
653
  declare const None$2 = 0;
653
654
  declare const SubMenu = 4;
@@ -716,6 +717,12 @@ declare const Right = 2;
716
717
  declare const File$2 = 1;
717
718
  declare const Match = 2;
718
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;
719
726
  declare const FocusElementByName = "Viewlet.focusElementByName";
720
727
  declare const FocusSelector = "Viewlet.focusSelector";
721
728
  declare const SetCss = "Viewlet.setCss";
@@ -934,7 +941,7 @@ declare namespace KeyModifier {
934
941
  export { Alt$1 as Alt, CtrlCmd, Shift, WinCtrl };
935
942
  }
936
943
  declare namespace MenuEntryId {
937
- export { ActivityBar, ActivityBarAdditionalViews, E2eTests, Edit, Editor, EditorImage, Explorer, ExtensionDetailIconContextMenu, ExtensionDetailReadme, File$1 as File, Go, Help, InputContextMenu, 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 };
944
+ export { ActivityBar, ActivityBarAdditionalViews, E2eTests, Edit, Editor, EditorImage, Explorer, ExtensionDetailIconContextMenu, ExtensionDetailReadme, File$1 as File, Go, Help, InputContextMenu, KeyBindingsTable, Main, ManageExtension, OpenRecent, Problems$1 as Problems, ProblemsFilter, Run, Search$2 as Search, SearchMatchContextMenu, Selection, Settings, SimpleBrowser, SourceControl, Tab$4 as Tab, Terminal, TitleBar, TitleBarContextMenu, View };
938
945
  }
939
946
  declare namespace MenuItemFlags {
940
947
  export { Checked, Disabled, Ignore, None$2 as None, RestoreFocus, Separator$1 as Separator, SubMenu, Unchecked };
@@ -963,6 +970,9 @@ declare namespace TextSearchResultType {
963
970
  declare namespace UidSymbol {
964
971
  export { uidSymbol };
965
972
  }
973
+ declare namespace UpdateState {
974
+ export { CheckingForUpdate, DownloadedUpdate, DownloadingUpdate, InstallingUpdated, None$3 as None, WaitingForRestart };
975
+ }
966
976
  declare namespace ViewletCommand {
967
977
  export { FocusElementByName, FocusSelector, SetCss, SetDom2, SetDragData, SetFocusContext, SetProperty, SetSelectionByName, SetValueByName };
968
978
  }
@@ -1014,6 +1024,7 @@ export {
1014
1024
  SideBarLocationType,
1015
1025
  TextSearchResultType,
1016
1026
  UidSymbol,
1027
+ UpdateState,
1017
1028
  ViewMode,
1018
1029
  ViewletCommand,
1019
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";
@@ -28,3 +28,4 @@ export const E2eTests = 27;
28
28
  export const ExtensionDetailIconContextMenu = 4091;
29
29
  export const TitleBarContextMenu = 90;
30
30
  export const InputContextMenu = 91;
31
+ export const SearchMatchContextMenu = 93;
@@ -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.34.0",
3
+ "version": "1.36.0",
4
4
  "description": "Constants",
5
5
  "repository": {
6
6
  "type": "git",