@lvce-editor/constants 1.17.0 → 1.18.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,8 @@ 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 Electron = 2;
|
|
619
|
+
declare const Remote = 3;
|
|
618
620
|
declare const ClipBoardProcess = 3401;
|
|
619
621
|
declare const ClipBoardWorker = 3400;
|
|
620
622
|
declare const ColorPickerWorker = 302;
|
|
@@ -656,6 +658,8 @@ declare const SetProperty = "Viewlet.setProperty";
|
|
|
656
658
|
declare const SetDragData = "Viewlet.setDragData";
|
|
657
659
|
declare const SetSelectionByName = "Viewlet.setSelectionByName";
|
|
658
660
|
declare const SetValueByName = "Viewlet.setValueByName";
|
|
661
|
+
declare const List$1 = 1;
|
|
662
|
+
declare const Tree$2 = 2;
|
|
659
663
|
declare const Audio$1 = 0;
|
|
660
664
|
declare const Button$4 = 1;
|
|
661
665
|
declare const Col$1 = 2;
|
|
@@ -854,6 +858,9 @@ declare namespace MenuItemFlags {
|
|
|
854
858
|
declare namespace MouseEventType {
|
|
855
859
|
export { Keyboard, LeftClick };
|
|
856
860
|
}
|
|
861
|
+
declare namespace PlatformType {
|
|
862
|
+
export { Electron, Remote };
|
|
863
|
+
}
|
|
857
864
|
declare namespace RpcId {
|
|
858
865
|
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 };
|
|
859
866
|
}
|
|
@@ -863,6 +870,9 @@ declare namespace UidSymbol {
|
|
|
863
870
|
declare namespace ViewletCommand {
|
|
864
871
|
export { FocusElementByName, FocusSelector, SetCss, SetDom2, SetDragData, SetFocusContext, SetProperty, SetSelectionByName, SetValueByName };
|
|
865
872
|
}
|
|
873
|
+
declare namespace ViewMode {
|
|
874
|
+
export { List$1 as List, Tree$2 as Tree };
|
|
875
|
+
}
|
|
866
876
|
declare namespace VirtualDomElements {
|
|
867
877
|
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
878
|
}
|
|
@@ -894,8 +904,10 @@ export {
|
|
|
894
904
|
MenuEntryId,
|
|
895
905
|
MenuItemFlags,
|
|
896
906
|
MouseEventType,
|
|
907
|
+
PlatformType,
|
|
897
908
|
RpcId,
|
|
898
909
|
UidSymbol,
|
|
910
|
+
ViewMode,
|
|
899
911
|
ViewletCommand,
|
|
900
912
|
VirtualDomElements,
|
|
901
913
|
WhenExpression,
|
package/dist/parts/Main/Main.js
CHANGED
|
@@ -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";
|