@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,
|
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";
|