@lvce-editor/constants 1.0.1 → 1.2.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
|
@@ -539,6 +539,12 @@ declare const Option$2 = 64;
|
|
|
539
539
|
declare const Code$1 = 65;
|
|
540
540
|
declare const Label$2 = 66;
|
|
541
541
|
declare const Dt$1 = 67;
|
|
542
|
+
declare const FocusElementByName = "Viewlet.focusElementByName";
|
|
543
|
+
declare const FocusSelector = "Viewlet.focusSelector";
|
|
544
|
+
declare const SetCss = "Viewlet.setCss";
|
|
545
|
+
declare const SetDom2 = "Viewlet.setDom2";
|
|
546
|
+
declare const SetFocusContext = "Viewlet.setFocusContext";
|
|
547
|
+
declare const SetProperty = "Viewlet.setProperty";
|
|
542
548
|
declare const Empty$1 = 0;
|
|
543
549
|
declare const BrowserChromium = 1;
|
|
544
550
|
declare const BrowserElectron = 2;
|
|
@@ -629,6 +635,9 @@ declare namespace UidSymbol {
|
|
|
629
635
|
declare namespace VirtualDomElements {
|
|
630
636
|
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$3 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$2 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 };
|
|
631
637
|
}
|
|
638
|
+
declare namespace ViewletCommand {
|
|
639
|
+
export { FocusElementByName, FocusSelector, SetCss, SetDom2, SetFocusContext, SetProperty };
|
|
640
|
+
}
|
|
632
641
|
|
|
633
642
|
export {
|
|
634
643
|
AriaRoles,
|
|
@@ -641,6 +650,7 @@ export {
|
|
|
641
650
|
MouseEventType,
|
|
642
651
|
RpcId,
|
|
643
652
|
UidSymbol,
|
|
653
|
+
ViewletCommand,
|
|
644
654
|
VirtualDomElements,
|
|
645
655
|
WhenExpression,
|
|
646
656
|
};
|
package/dist/parts/Main/Main.js
CHANGED
|
@@ -9,4 +9,5 @@ export * as MouseEventType from "../MouseEventType/MouseEventType.js";
|
|
|
9
9
|
export * as RpcId from "../RpcId/RpcId.js";
|
|
10
10
|
export * as UidSymbol from "../UidSymbol/UidSymbol.js";
|
|
11
11
|
export * as VirtualDomElements from "../VirtualDomElements/VirtualDomElements.js";
|
|
12
|
+
export * as ViewletCommand from "../ViewletCommand/ViewletCommand.js";
|
|
12
13
|
export * as WhenExpression from "../WhenExpression/WhenExpression.js";
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export const FocusElementByName = 'Viewlet.focusElementByName';
|
|
2
|
+
export const FocusSelector = 'Viewlet.focusSelector';
|
|
3
|
+
export const SetCss = 'Viewlet.setCss';
|
|
4
|
+
export const SetDom2 = 'Viewlet.setDom2';
|
|
5
|
+
export const SetFocusContext = 'Viewlet.setFocusContext';
|
|
6
|
+
export const SetProperty = 'Viewlet.setProperty';
|