@lvce-editor/constants 1.42.0 → 1.43.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
@@ -692,6 +692,14 @@ declare const View$1 = 8;
692
692
  declare const WorkspaceSymbol = 9;
693
693
  declare const Noop = 10;
694
694
  declare const EveryThing = 100;
695
+ declare const Command = ">";
696
+ declare const Symbol$1 = "@";
697
+ declare const WorkspaceSymbol$1 = "#";
698
+ declare const GoToLine$1 = ":";
699
+ declare const View$2 = "view ";
700
+ declare const None$3 = "";
701
+ declare const Help$2 = "?";
702
+ declare const GoToColumn = "::";
695
703
  declare const ClipBoardProcess = 3401;
696
704
  declare const ClipBoardWorker = 3400;
697
705
  declare const ColorPickerWorker = 302;
@@ -726,12 +734,13 @@ declare const TestWithPlaywrightWorker = 6001;
726
734
  declare const IconThemeWorker = 7009;
727
735
  declare const TextSearchWorker = 7010;
728
736
  declare const TextMeasurementWorker = 7011;
737
+ declare const ExtensionManagementWorker = 9006;
729
738
  declare const Left = 1;
730
739
  declare const Right = 2;
731
740
  declare const File$3 = 1;
732
741
  declare const Match = 2;
733
742
  declare const uidSymbol: unique symbol;
734
- declare const None$3 = 0;
743
+ declare const None$4 = 0;
735
744
  declare const CheckingForUpdate = 1;
736
745
  declare const DownloadingUpdate = 2;
737
746
  declare const DownloadedUpdate = 3;
@@ -976,8 +985,11 @@ declare namespace PlatformType {
976
985
  declare namespace QuickPickEntryId {
977
986
  export { ColorTheme, Commands, Custom, EveryThing, File$2 as File, GoToLine, Help$1 as Help, Noop, Recent, Symbol$1 as Symbol, View$1 as View, WorkspaceSymbol };
978
987
  }
988
+ declare namespace QuickPickPrefix {
989
+ export { Command, GoToColumn, GoToLine$1 as GoToLine, Help$2 as Help, None$3 as None, Symbol$1 as Symbol, View$2 as View, WorkspaceSymbol$1 as WorkspaceSymbol };
990
+ }
979
991
  declare namespace RpcId {
980
- 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 };
992
+ export { ClipBoardProcess, ClipBoardWorker, ColorPickerWorker, CompletionWorker, DebugWorker, EditorWorker, EmbedsProcess, EmbedsWorker, ErrorWorker, ExtensionDetailWorker, ExtensionHostWorker, ExtensionManagementWorker, FileSystemProcess, FileSystemWorker, FindWidgetWorker, HoverWorker, IconThemeWorker, MainProcess, MarkdownWorker, OutputWorker, ProblemsWorker, RenameWorker, RendererProcess, RendererWorker, SearchProcess, SearchProcessElectron, SharedProcess, SourceActionWorker, SourceControlWorker, SyntaxHighlightingWorker, TestWithPlaywrightCli, TestWithPlaywrightWorker, TestWorker, TextMeasurementWorker, TextSearchWorker };
981
993
  }
982
994
  declare namespace SideBarLocationType {
983
995
  export { Left, Right };
@@ -989,7 +1001,7 @@ declare namespace UidSymbol {
989
1001
  export { uidSymbol };
990
1002
  }
991
1003
  declare namespace UpdateState {
992
- export { CheckingForUpdate, DownloadedUpdate, DownloadingUpdate, InstallingUpdated, None$3 as None, WaitingForRestart };
1004
+ export { CheckingForUpdate, DownloadedUpdate, DownloadingUpdate, InstallingUpdated, None$4 as None, WaitingForRestart };
993
1005
  }
994
1006
  declare namespace ViewletCommand {
995
1007
  export { FocusElementByName, FocusSelector, SetCss, SetDom2, SetDragData, SetFocusContext, SetProperty, SetSelectionByName, SetValueByName };
@@ -1039,6 +1051,7 @@ export {
1039
1051
  PatchType,
1040
1052
  PlatformType,
1041
1053
  QuickPickEntryId,
1054
+ QuickPickPrefix,
1042
1055
  RpcId,
1043
1056
  SideBarLocationType,
1044
1057
  TextSearchResultType,
@@ -26,6 +26,7 @@ export * as ParseKey from "../ParseKey/ParseKey.js";
26
26
  export * as PatchType from "../PatchType/PatchType.js";
27
27
  export * as PlatformType from "../PlatformType/PlatformType.js";
28
28
  export * as QuickPickEntryId from "../QuickPickEntryId/QuickPickEntryId.js";
29
+ export * as QuickPickPrefix from "../QuickPickPrefix/QuickPickPrefix.js";
29
30
  export * as RpcId from "../RpcId/RpcId.js";
30
31
  export * as SideBarLocationType from "../SideBarLocationType/SideBarLocationType.js";
31
32
  export * as TextSearchResultType from "../TextSearchResultType/TextSearchResultType.js";
@@ -0,0 +1,8 @@
1
+ export const Command = '>';
2
+ export const Symbol = '@';
3
+ export const WorkspaceSymbol = '#';
4
+ export const GoToLine = ':';
5
+ export const View = 'view ';
6
+ export const None = '';
7
+ export const Help = '?';
8
+ export const GoToColumn = '::';
@@ -32,3 +32,4 @@ export const TestWithPlaywrightWorker = 6001;
32
32
  export const IconThemeWorker = 7009;
33
33
  export const TextSearchWorker = 7010;
34
34
  export const TextMeasurementWorker = 7011;
35
+ export const ExtensionManagementWorker = 9006;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/constants",
3
- "version": "1.42.0",
3
+ "version": "1.43.0",
4
4
  "description": "Constants",
5
5
  "repository": {
6
6
  "type": "git",