@lvce-editor/constants 5.1.0 → 5.3.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.
|
@@ -36,6 +36,8 @@ export const getElementTag = (type) => {
|
|
|
36
36
|
return ElementTag.Dl;
|
|
37
37
|
case VirtualDomElements.Dt:
|
|
38
38
|
return ElementTag.Dt;
|
|
39
|
+
case VirtualDomElements.Em:
|
|
40
|
+
return ElementTag.Em;
|
|
39
41
|
case VirtualDomElements.Figcaption:
|
|
40
42
|
return ElementTag.Figcaption;
|
|
41
43
|
case VirtualDomElements.Figure:
|
|
@@ -100,6 +102,8 @@ export const getElementTag = (type) => {
|
|
|
100
102
|
return ElementTag.Select;
|
|
101
103
|
case VirtualDomElements.Span:
|
|
102
104
|
return ElementTag.Span;
|
|
105
|
+
case VirtualDomElements.Strong:
|
|
106
|
+
return ElementTag.Strong;
|
|
103
107
|
case VirtualDomElements.Style:
|
|
104
108
|
return ElementTag.Style;
|
|
105
109
|
case VirtualDomElements.Table:
|