@lvce-editor/constants 5.0.0 → 5.1.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/ElementTagMap/ElementTagMap.js +2 -0
- package/dist/parts/ElementTags/ElementTags.d.ts +1 -0
- package/dist/parts/ElementTags/ElementTags.js +1 -0
- package/dist/parts/RpcId/RpcId.d.ts +2 -0
- package/dist/parts/RpcId/RpcId.js +2 -0
- package/dist/parts/VirtualDomElements/VirtualDomElements.d.ts +1 -0
- package/dist/parts/VirtualDomElements/VirtualDomElements.js +1 -0
- package/package.json +1 -1
|
@@ -42,6 +42,8 @@ export const getElementTag = (type) => {
|
|
|
42
42
|
return ElementTag.Figure;
|
|
43
43
|
case VirtualDomElements.Footer:
|
|
44
44
|
return ElementTag.Footer;
|
|
45
|
+
case VirtualDomElements.Form:
|
|
46
|
+
return ElementTag.Form;
|
|
45
47
|
case VirtualDomElements.H1:
|
|
46
48
|
return ElementTag.H1;
|
|
47
49
|
case VirtualDomElements.H2:
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
export declare const ChatNetworkWorker = 6002;
|
|
2
2
|
export declare const ChatStorageWorker = 6003;
|
|
3
|
+
export declare const ChatToolWorker = 6005;
|
|
4
|
+
export declare const ChatDebugWorker = 6006;
|
|
3
5
|
export declare const Cli = 6004;
|
|
4
6
|
export declare const ClipBoardProcess = 3401;
|
|
5
7
|
export declare const ClipBoardWorker = 3400;
|