@lvce-editor/virtual-dom 6.8.0 → 6.9.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.js +5 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -52,6 +52,7 @@ const Option$2 = 'option';
|
|
|
52
52
|
const Code$2 = 'code';
|
|
53
53
|
const Label$2 = 'label';
|
|
54
54
|
const Dt$2 = 'dt';
|
|
55
|
+
const Iframe$1 = 'iframe';
|
|
55
56
|
|
|
56
57
|
const Audio$1 = 0;
|
|
57
58
|
const Button$1 = 1;
|
|
@@ -110,6 +111,7 @@ const Option$1 = 64;
|
|
|
110
111
|
const Code$1 = 65;
|
|
111
112
|
const Label$1 = 66;
|
|
112
113
|
const Dt$1 = 67;
|
|
114
|
+
const Iframe = 68;
|
|
113
115
|
const Reference$1 = 100;
|
|
114
116
|
|
|
115
117
|
const VirtualDomElements$1 = {
|
|
@@ -143,6 +145,7 @@ const VirtualDomElements$1 = {
|
|
|
143
145
|
Header: Header$1,
|
|
144
146
|
Hr: Hr$1,
|
|
145
147
|
I: I$1,
|
|
148
|
+
Iframe,
|
|
146
149
|
Img: Img$1,
|
|
147
150
|
Input: Input$1,
|
|
148
151
|
Ins: Ins$1,
|
|
@@ -232,6 +235,8 @@ const getElementTag$1 = type => {
|
|
|
232
235
|
return Hr$2;
|
|
233
236
|
case I$1:
|
|
234
237
|
return I$2;
|
|
238
|
+
case Iframe:
|
|
239
|
+
return Iframe$1;
|
|
235
240
|
case Img$1:
|
|
236
241
|
return Img$2;
|
|
237
242
|
case Input$1:
|