@lvce-editor/constants 1.1.0 → 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
|
@@ -540,9 +540,11 @@ declare const Code$1 = 65;
|
|
|
540
540
|
declare const Label$2 = 66;
|
|
541
541
|
declare const Dt$1 = 67;
|
|
542
542
|
declare const FocusElementByName = "Viewlet.focusElementByName";
|
|
543
|
-
declare const SetFocusContext = "Viewlet.setFocusContext";
|
|
544
543
|
declare const FocusSelector = "Viewlet.focusSelector";
|
|
544
|
+
declare const SetCss = "Viewlet.setCss";
|
|
545
545
|
declare const SetDom2 = "Viewlet.setDom2";
|
|
546
|
+
declare const SetFocusContext = "Viewlet.setFocusContext";
|
|
547
|
+
declare const SetProperty = "Viewlet.setProperty";
|
|
546
548
|
declare const Empty$1 = 0;
|
|
547
549
|
declare const BrowserChromium = 1;
|
|
548
550
|
declare const BrowserElectron = 2;
|
|
@@ -634,7 +636,7 @@ declare namespace VirtualDomElements {
|
|
|
634
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 };
|
|
635
637
|
}
|
|
636
638
|
declare namespace ViewletCommand {
|
|
637
|
-
export { FocusElementByName, FocusSelector, SetDom2, SetFocusContext };
|
|
639
|
+
export { FocusElementByName, FocusSelector, SetCss, SetDom2, SetFocusContext, SetProperty };
|
|
638
640
|
}
|
|
639
641
|
|
|
640
642
|
export {
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export const FocusElementByName = 'Viewlet.focusElementByName';
|
|
2
|
-
export const SetFocusContext = 'Viewlet.setFocusContext';
|
|
3
2
|
export const FocusSelector = 'Viewlet.focusSelector';
|
|
3
|
+
export const SetCss = 'Viewlet.setCss';
|
|
4
4
|
export const SetDom2 = 'Viewlet.setDom2';
|
|
5
|
+
export const SetFocusContext = 'Viewlet.setFocusContext';
|
|
6
|
+
export const SetProperty = 'Viewlet.setProperty';
|