@lvce-editor/renderer-process 14.0.2 → 14.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.
|
@@ -230,6 +230,7 @@ const Select$1 = 'select';
|
|
|
230
230
|
const Option$1 = 'option';
|
|
231
231
|
const Code$1 = 'code';
|
|
232
232
|
const Label$1 = 'label';
|
|
233
|
+
const Dt$1 = 'dt';
|
|
233
234
|
const Audio$2 = 0;
|
|
234
235
|
const Button = 1;
|
|
235
236
|
const Col = 2;
|
|
@@ -284,6 +285,7 @@ const Select = 63;
|
|
|
284
285
|
const Option = 64;
|
|
285
286
|
const Code$2 = 65;
|
|
286
287
|
const Label = 66;
|
|
288
|
+
const Dt = 67;
|
|
287
289
|
const getElementTag = type => {
|
|
288
290
|
switch (type) {
|
|
289
291
|
case Audio$2:
|
|
@@ -392,6 +394,8 @@ const getElementTag = type => {
|
|
|
392
394
|
return Code$1;
|
|
393
395
|
case Label:
|
|
394
396
|
return Label$1;
|
|
397
|
+
case Dt:
|
|
398
|
+
return Dt$1;
|
|
395
399
|
default:
|
|
396
400
|
throw new Error(`element tag not found ${type}`);
|
|
397
401
|
}
|