@lvce-editor/constants 3.2.0 → 3.4.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/parts/ElementTags/ElementTags.d.ts +3 -0
- package/dist/parts/ElementTags/ElementTags.js +3 -0
- package/dist/parts/EventExpression/EventExpression.d.ts +1 -0
- package/dist/parts/EventExpression/EventExpression.js +1 -0
- package/dist/parts/VirtualDomElements/VirtualDomElements.d.ts +3 -0
- package/dist/parts/VirtualDomElements/VirtualDomElements.js +3 -0
- package/package.json +1 -1
|
@@ -54,3 +54,6 @@ export declare const Code = "code";
|
|
|
54
54
|
export declare const Label = "label";
|
|
55
55
|
export declare const Dt = "dt";
|
|
56
56
|
export declare const Iframe = "iframe";
|
|
57
|
+
export declare const Main = "main";
|
|
58
|
+
export declare const Em = "em";
|
|
59
|
+
export declare const Strong = "strong";
|
|
@@ -12,6 +12,7 @@ export declare const EventTargetClassName = "event.target.className";
|
|
|
12
12
|
export declare const IsTrusted = "event.isTrusted";
|
|
13
13
|
export declare const Key = "event.key";
|
|
14
14
|
export declare const ShiftKey = "event.shiftKey";
|
|
15
|
+
export declare const TargetChecked = "event.target.checked";
|
|
15
16
|
export declare const TargetHref = "event.target.href";
|
|
16
17
|
export declare const TargetName = "event.target.name";
|
|
17
18
|
export declare const TargetNodeName = "event.target.nodeName";
|
|
@@ -12,6 +12,7 @@ export const EventTargetClassName = 'event.target.className';
|
|
|
12
12
|
export const IsTrusted = 'event.isTrusted';
|
|
13
13
|
export const Key = 'event.key';
|
|
14
14
|
export const ShiftKey = 'event.shiftKey';
|
|
15
|
+
export const TargetChecked = 'event.target.checked';
|
|
15
16
|
export const TargetHref = 'event.target.href';
|
|
16
17
|
export const TargetName = 'event.target.name';
|
|
17
18
|
export const TargetNodeName = 'event.target.nodeName';
|
|
@@ -56,4 +56,7 @@ export declare const Code = 65;
|
|
|
56
56
|
export declare const Label = 66;
|
|
57
57
|
export declare const Dt = 67;
|
|
58
58
|
export declare const Iframe = 68;
|
|
59
|
+
export declare const Main = 69;
|
|
60
|
+
export declare const Strong = 70;
|
|
61
|
+
export declare const Em = 71;
|
|
59
62
|
export declare const Reference = 100;
|