@lvce-editor/constants 1.17.0 → 1.19.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
@@ -615,6 +615,10 @@ declare const RestoreFocus = 6;
615
615
  declare const Ignore = 7;
616
616
  declare const Keyboard = -1;
617
617
  declare const LeftClick = 0;
618
+ declare const Web = 1;
619
+ declare const Electron = 2;
620
+ declare const Remote = 3;
621
+ declare const Test = 4;
618
622
  declare const ClipBoardProcess = 3401;
619
623
  declare const ClipBoardWorker = 3400;
620
624
  declare const ColorPickerWorker = 302;
@@ -646,6 +650,7 @@ declare const HoverWorker = 9003;
646
650
  declare const RenameWorker = 9004;
647
651
  declare const TestWithPlaywrightCli = 6000;
648
652
  declare const TestWithPlaywrightWorker = 6001;
653
+ declare const IconThemeWorker = 7009;
649
654
  declare const uidSymbol: unique symbol;
650
655
  declare const FocusElementByName = "Viewlet.focusElementByName";
651
656
  declare const FocusSelector = "Viewlet.focusSelector";
@@ -656,6 +661,8 @@ declare const SetProperty = "Viewlet.setProperty";
656
661
  declare const SetDragData = "Viewlet.setDragData";
657
662
  declare const SetSelectionByName = "Viewlet.setSelectionByName";
658
663
  declare const SetValueByName = "Viewlet.setValueByName";
664
+ declare const List$1 = 1;
665
+ declare const Tree$2 = 2;
659
666
  declare const Audio$1 = 0;
660
667
  declare const Button$4 = 1;
661
668
  declare const Col$1 = 2;
@@ -854,8 +861,11 @@ declare namespace MenuItemFlags {
854
861
  declare namespace MouseEventType {
855
862
  export { Keyboard, LeftClick };
856
863
  }
864
+ declare namespace PlatformType {
865
+ export { Electron, Remote, Test, Web };
866
+ }
857
867
  declare namespace RpcId {
858
- export { ClipBoardProcess, ClipBoardWorker, ColorPickerWorker, CompletionWorker, DebugWorker, EditorWorker, EmbedsProcess, EmbedsWorker, ErrorWorker, ExtensionDetailWorker, ExtensionHostWorker, FileSystemProcess, FileSystemWorker, FindWidgetWorker, HoverWorker, MainProcess, MarkdownWorker, OutputWorker, ProblemsWorker, RenameWorker, RendererProcess, RendererWorker, SearchProcess, SearchProcessElectron, SharedProcess, SourceActionWorker, SourceControlWorker, SyntaxHighlightingWorker, TestWithPlaywrightCli, TestWithPlaywrightWorker, TestWorker };
868
+ 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 };
859
869
  }
860
870
  declare namespace UidSymbol {
861
871
  export { uidSymbol };
@@ -863,6 +873,9 @@ declare namespace UidSymbol {
863
873
  declare namespace ViewletCommand {
864
874
  export { FocusElementByName, FocusSelector, SetCss, SetDom2, SetDragData, SetFocusContext, SetProperty, SetSelectionByName, SetValueByName };
865
875
  }
876
+ declare namespace ViewMode {
877
+ export { List$1 as List, Tree$2 as Tree };
878
+ }
866
879
  declare namespace VirtualDomElements {
867
880
  export { A$1 as A, Abbr$1 as Abbr, Article$1 as Article, Aside$2 as Aside, Audio$1 as Audio, Br$1 as Br, Button$4 as Button, Cite$1 as Cite, Code$1 as Code, Col$1 as Col, ColGroup$1 as ColGroup, Data$1 as Data, Dd$1 as Dd, Del$1 as Del, Div$1 as Div, Dl$1 as Dl, Dt$1 as Dt, Figcaption$1 as Figcaption, Figure$1 as Figure, Footer$1 as Footer, H1$1 as H1, H2$1 as H2, H3$1 as H3, H4$1 as H4, H5$1 as H5, H6$1 as H6, Header$1 as Header, Hr$1 as Hr, I$1 as I, Img$1 as Img, Input$1 as Input, Ins$1 as Ins, Kbd$1 as Kbd, Label$2 as Label, Li$1 as Li, Nav$1 as Nav, Ol$1 as Ol, Option$2 as Option, P$1 as P, Pre$1 as Pre, Root, Search$3 as Search, Section$1 as Section, Select$1 as Select, Span$1 as Span, TBody$1 as TBody, THead$1 as THead, Table$2 as Table, Td$1 as Td, Text, TextArea$1 as TextArea, Tfoot$1 as Tfoot, Th$1 as Th, Time$1 as Time, Tr$1 as Tr, Ul$1 as Ul, Video$1 as Video };
868
881
  }
@@ -894,8 +907,10 @@ export {
894
907
  MenuEntryId,
895
908
  MenuItemFlags,
896
909
  MouseEventType,
910
+ PlatformType,
897
911
  RpcId,
898
912
  UidSymbol,
913
+ ViewMode,
899
914
  ViewletCommand,
900
915
  VirtualDomElements,
901
916
  WhenExpression,
@@ -18,9 +18,11 @@ export * as KeyModifier from "../KeyModifier/KeyModifier.js";
18
18
  export * as MenuEntryId from "../MenuEntryId/MenuEntryId.js";
19
19
  export * as MenuItemFlags from "../MenuItemFlags/MenuItemFlags.js";
20
20
  export * as MouseEventType from "../MouseEventType/MouseEventType.js";
21
+ export * as PlatformType from "../PlatformType/PlatformType.js";
21
22
  export * as RpcId from "../RpcId/RpcId.js";
22
23
  export * as UidSymbol from "../UidSymbol/UidSymbol.js";
23
24
  export * as ViewletCommand from "../ViewletCommand/ViewletCommand.js";
25
+ export * as ViewMode from "../ViewMode/ViewMode.js";
24
26
  export * as VirtualDomElements from "../VirtualDomElements/VirtualDomElements.js";
25
27
  export * as WhenExpression from "../WhenExpression/WhenExpression.js";
26
28
  export * as WidgetId from "../WidgetId/WidgetId.js";
@@ -0,0 +1,4 @@
1
+ export const Web = 1;
2
+ export const Electron = 2;
3
+ export const Remote = 3;
4
+ export const Test = 4;
@@ -29,3 +29,4 @@ export const HoverWorker = 9003;
29
29
  export const RenameWorker = 9004;
30
30
  export const TestWithPlaywrightCli = 6000;
31
31
  export const TestWithPlaywrightWorker = 6001;
32
+ export const IconThemeWorker = 7009;
@@ -0,0 +1,2 @@
1
+ export const List = 1;
2
+ export const Tree = 2;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/constants",
3
- "version": "1.17.0",
3
+ "version": "1.19.0",
4
4
  "description": "Constants",
5
5
  "license": "MIT",
6
6
  "author": "Lvce Editor",