@lvce-editor/virtual-dom-worker 1.43.0 → 1.45.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 CHANGED
@@ -56,6 +56,8 @@ const Video = 61;
56
56
  const TextArea = 62;
57
57
  const Select = 63;
58
58
  const Option = 64;
59
+ const Code = 65;
60
+ const Label = 66;
59
61
 
60
62
  const VirtualDomElements = {
61
63
  __proto__: null,
@@ -67,6 +69,7 @@ const VirtualDomElements = {
67
69
  Br,
68
70
  Button,
69
71
  Cite,
72
+ Code,
70
73
  Col,
71
74
  ColGroup,
72
75
  Data,
@@ -90,6 +93,7 @@ const VirtualDomElements = {
90
93
  Input,
91
94
  Ins,
92
95
  Kbd,
96
+ Label,
93
97
  Li,
94
98
  Nav,
95
99
  Ol,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/virtual-dom-worker",
3
- "version": "1.43.0",
3
+ "version": "1.45.0",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "keywords": [],
@@ -52,3 +52,5 @@ export const Video = 61
52
52
  export const TextArea = 62
53
53
  export const Select = 63
54
54
  export const Option = 64
55
+ export const Code = 65
56
+ export const Label = 66