starfish-editor-custom 1.0.44 → 1.0.46
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/main.js +81 -10
- package/dist/types/editor/src/controller/shortcut.d.ts +2 -0
- package/package.json +2 -2
- package/src/components/Shape.vue +0 -5
- package/src/controller/shortcut.ts +116 -3
- package/stats.html +1 -1
package/dist/main.js
CHANGED
|
@@ -1542,7 +1542,48 @@ class ShortCut {
|
|
|
1542
1542
|
paste(list) {
|
|
1543
1543
|
if (state$1.copyContent) {
|
|
1544
1544
|
const pasteControl = window.VueContext.$Flex.deepClone(state$1.copyContent);
|
|
1545
|
+
if (pasteControl.ControlType === "Date") {
|
|
1546
|
+
this.handleDateComponentCopy(pasteControl, state$1.copyContent);
|
|
1547
|
+
}
|
|
1545
1548
|
if (pasteControl.data) {
|
|
1549
|
+
if (pasteControl.layout) {
|
|
1550
|
+
if (pasteControl.ControlType === "Grid") {
|
|
1551
|
+
pasteControl.data.columns.forEach((column, colIndex) => {
|
|
1552
|
+
if (column.list.length > 0) {
|
|
1553
|
+
column.list.forEach((item, listIndex) => {
|
|
1554
|
+
if (item.ControlType === "Date") {
|
|
1555
|
+
this.handleDateComponentCopy(
|
|
1556
|
+
item,
|
|
1557
|
+
state$1.copyContent.data.columns[colIndex].list[listIndex]
|
|
1558
|
+
);
|
|
1559
|
+
}
|
|
1560
|
+
if (item.data) {
|
|
1561
|
+
item.data.fieldName = item.ControlType + "_" + window.VueContext.$Flex.generateMixed();
|
|
1562
|
+
item.id = window.VueContext.$Flex.generateMixed();
|
|
1563
|
+
}
|
|
1564
|
+
});
|
|
1565
|
+
}
|
|
1566
|
+
});
|
|
1567
|
+
} else if (pasteControl.ControlType === "TableLayout") {
|
|
1568
|
+
pasteControl.data.trs.forEach((tr, trIndex) => {
|
|
1569
|
+
tr.tds.forEach((td, tdIndex) => {
|
|
1570
|
+
td.list.forEach((item, itemIndex) => {
|
|
1571
|
+
var _a, _b;
|
|
1572
|
+
if (item.ControlType === "Date") {
|
|
1573
|
+
this.handleDateComponentCopy(
|
|
1574
|
+
item,
|
|
1575
|
+
(_b = (_a = state$1.copyContent.data.trs[trIndex]) == null ? void 0 : _a.tds[tdIndex]) == null ? void 0 : _b.list[itemIndex]
|
|
1576
|
+
);
|
|
1577
|
+
}
|
|
1578
|
+
if (item.data) {
|
|
1579
|
+
item.data.fieldName = item.ControlType + "_" + window.VueContext.$Flex.generateMixed();
|
|
1580
|
+
item.id = window.VueContext.$Flex.generateMixed();
|
|
1581
|
+
}
|
|
1582
|
+
});
|
|
1583
|
+
});
|
|
1584
|
+
});
|
|
1585
|
+
}
|
|
1586
|
+
}
|
|
1546
1587
|
pasteControl.data.fieldName = pasteControl.ControlType + "_" + window.VueContext.$Flex.generateMixed();
|
|
1547
1588
|
pasteControl.id = window.VueContext.$Flex.generateMixed();
|
|
1548
1589
|
list.splice(state$1.form.currentIndex, 0, pasteControl);
|
|
@@ -1550,6 +1591,41 @@ class ShortCut {
|
|
|
1550
1591
|
}
|
|
1551
1592
|
}
|
|
1552
1593
|
}
|
|
1594
|
+
handleDateComponentCopy(target, source) {
|
|
1595
|
+
var _a, _b;
|
|
1596
|
+
if (((_a = source.data) == null ? void 0 : _a.default) !== void 0) {
|
|
1597
|
+
if (typeof source.data.default === "string") {
|
|
1598
|
+
target.data.default = source.data.default;
|
|
1599
|
+
} else if (source.data.default instanceof Date) {
|
|
1600
|
+
target.data.default = this.formatDateToString(
|
|
1601
|
+
source.data.default,
|
|
1602
|
+
source.data.format || "YYYY-MM-DD"
|
|
1603
|
+
);
|
|
1604
|
+
} else if (source.data.default) {
|
|
1605
|
+
target.data.default = String(source.data.default);
|
|
1606
|
+
}
|
|
1607
|
+
}
|
|
1608
|
+
if (!target.data.format && ((_b = source.data) == null ? void 0 : _b.format)) {
|
|
1609
|
+
target.data.format = source.data.format;
|
|
1610
|
+
}
|
|
1611
|
+
}
|
|
1612
|
+
formatDateToString(date, format) {
|
|
1613
|
+
const year = date.getFullYear();
|
|
1614
|
+
const month = String(date.getMonth() + 1).padStart(2, "0");
|
|
1615
|
+
const day = String(date.getDate()).padStart(2, "0");
|
|
1616
|
+
const hours = String(date.getHours()).padStart(2, "0");
|
|
1617
|
+
const minutes = String(date.getMinutes()).padStart(2, "0");
|
|
1618
|
+
const seconds = String(date.getSeconds()).padStart(2, "0");
|
|
1619
|
+
const formatMap = {
|
|
1620
|
+
YYYY: `${year}`,
|
|
1621
|
+
"YYYY-MM": `${year}-${month}`,
|
|
1622
|
+
"YYYY-MM-DD": `${year}-${month}-${day}`,
|
|
1623
|
+
"YYYY-MM-DD HH": `${year}-${month}-${day} ${hours}`,
|
|
1624
|
+
"YYYY-MM-DD HH:mm": `${year}-${month}-${day} ${hours}:${minutes}`,
|
|
1625
|
+
"YYYY-MM-DD HH:mm:ss": `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`
|
|
1626
|
+
};
|
|
1627
|
+
return formatMap[format] || `${year}-${month}-${day}`;
|
|
1628
|
+
}
|
|
1553
1629
|
delete(list) {
|
|
1554
1630
|
console.log("delete list", list);
|
|
1555
1631
|
list.splice(state$1.form.currentIndex, 1);
|
|
@@ -1749,8 +1825,8 @@ function _sfc_render$7(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1749
1825
|
"shape",
|
|
1750
1826
|
_ctx.active ? _ctx.layout ? "shape_border shape_border_layout" : "shape_border" : _ctx.layout ? "noactive_layout" : ""
|
|
1751
1827
|
]),
|
|
1752
|
-
onContextmenu: _cache[
|
|
1753
|
-
onClick: _cache[
|
|
1828
|
+
onContextmenu: _cache[11] || (_cache[11] = (...args) => _ctx.handleShortCut && _ctx.handleShortCut(...args)),
|
|
1829
|
+
onClick: _cache[12] || (_cache[12] = (...args) => _ctx.handleMenu && _ctx.handleMenu(...args)),
|
|
1754
1830
|
style: normalizeStyle({ display: _ctx.inline ? "inline-block" : "block" })
|
|
1755
1831
|
}, [
|
|
1756
1832
|
createVNode(Transition, {
|
|
@@ -1801,21 +1877,16 @@ function _sfc_render$7(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1801
1877
|
})) : createCommentVNode("", true),
|
|
1802
1878
|
_ctx.item && _ctx.item.ControlType == "TableLayout" ? (openBlock(), createElementBlock("span", {
|
|
1803
1879
|
key: 2,
|
|
1804
|
-
class: "iconfontui icon--charulie",
|
|
1805
|
-
onClick: _cache[8] || (_cache[8] = (...args) => _ctx.handleRow && _ctx.handleRow(...args))
|
|
1806
|
-
})) : createCommentVNode("", true),
|
|
1807
|
-
_ctx.item && _ctx.item.ControlType == "TableLayout" ? (openBlock(), createElementBlock("span", {
|
|
1808
|
-
key: 3,
|
|
1809
1880
|
class: "iconfontui icon--charuhang",
|
|
1810
|
-
onClick: _cache[
|
|
1881
|
+
onClick: _cache[8] || (_cache[8] = (...args) => _ctx.handleColumn && _ctx.handleColumn(...args))
|
|
1811
1882
|
})) : createCommentVNode("", true),
|
|
1812
1883
|
createElementVNode("span", {
|
|
1813
1884
|
class: "iconfontui icon-fuzhi",
|
|
1814
|
-
onClick: _cache[
|
|
1885
|
+
onClick: _cache[9] || (_cache[9] = withModifiers((...args) => _ctx.handleCopyAndPaste && _ctx.handleCopyAndPaste(...args), ["stop"]))
|
|
1815
1886
|
}),
|
|
1816
1887
|
createElementVNode("span", {
|
|
1817
1888
|
class: "iconfontui icon-shanchu1",
|
|
1818
|
-
onClick: _cache[
|
|
1889
|
+
onClick: _cache[10] || (_cache[10] = withModifiers(($event) => _ctx.handleActive("delete"), ["stop"]))
|
|
1819
1890
|
})
|
|
1820
1891
|
])) : createCommentVNode("", true)
|
|
1821
1892
|
], 38);
|
|
@@ -5,6 +5,8 @@ import { AllFormItem, ShortCutState } from '../type';
|
|
|
5
5
|
declare class ShortCut {
|
|
6
6
|
copy(list: AllFormItem[]): void;
|
|
7
7
|
paste(list: AllFormItem[]): void;
|
|
8
|
+
handleDateComponentCopy(target: AllFormItem, source: AllFormItem): void;
|
|
9
|
+
formatDateToString(date: Date, format: string): string;
|
|
8
10
|
delete(list: AllFormItem[]): void;
|
|
9
11
|
onTop(list: AllFormItem[]): void;
|
|
10
12
|
onBottom(list: AllFormItem[]): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "starfish-editor-custom",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.46",
|
|
4
4
|
"main": "dist/starfish-editor.umd.js",
|
|
5
5
|
"style": "dist/style.css",
|
|
6
6
|
"module": "dist/starfish-editor.es.js",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"keycon": "^1.1.2",
|
|
34
34
|
"mitt": "^3.0.0",
|
|
35
35
|
"nanoid": "^4.0.0",
|
|
36
|
-
"starfish-form-custom": "1.0.
|
|
36
|
+
"starfish-form-custom": "1.0.48",
|
|
37
37
|
"vue": "^3.2.37",
|
|
38
38
|
"vue-codemirror": "6.1.1",
|
|
39
39
|
"vuedraggable": "^4.1.0"
|
package/src/components/Shape.vue
CHANGED
|
@@ -38,11 +38,6 @@
|
|
|
38
38
|
v-if="currentIndex != len - 1"
|
|
39
39
|
@click.stop="handleActive('bottom')"
|
|
40
40
|
></span>
|
|
41
|
-
<span
|
|
42
|
-
class="iconfontui icon--charulie"
|
|
43
|
-
v-if="item && item.ControlType == 'TableLayout'"
|
|
44
|
-
@click="handleRow"
|
|
45
|
-
></span>
|
|
46
41
|
<span
|
|
47
42
|
class="iconfontui icon--charuhang"
|
|
48
43
|
v-if="item && item.ControlType == 'TableLayout'"
|
|
@@ -21,16 +21,129 @@ class ShortCut {
|
|
|
21
21
|
paste(list: AllFormItem[]) {
|
|
22
22
|
if (state.copyContent) {
|
|
23
23
|
const pasteControl = window.VueContext.$Flex.deepClone(state.copyContent);
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
|
|
25
|
+
// 确保 date 组件的 default 值被正确复制
|
|
26
|
+
if (pasteControl.ControlType === "Date") {
|
|
27
|
+
// 特殊处理 Date 组件
|
|
28
|
+
this.handleDateComponentCopy(pasteControl, state.copyContent);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
if (pasteControl.data) {
|
|
32
|
+
// 如果是布局控件,给其中的基础控件也设置新的fieldName 和 id
|
|
33
|
+
if (pasteControl.layout) {
|
|
34
|
+
// 栅格布局
|
|
35
|
+
if (pasteControl.ControlType === "Grid") {
|
|
36
|
+
pasteControl.data.columns.forEach((column: any, colIndex: number) => {
|
|
37
|
+
if (column.list.length > 0) {
|
|
38
|
+
column.list.forEach((item: any, listIndex: number) => {
|
|
39
|
+
if (item.ControlType === "Date") {
|
|
40
|
+
this.handleDateComponentCopy(
|
|
41
|
+
item,
|
|
42
|
+
state.copyContent.data.columns[colIndex].list[listIndex]
|
|
43
|
+
);
|
|
44
|
+
}
|
|
45
|
+
// 生成新的 fieldName 和 id
|
|
46
|
+
if (item.data) {
|
|
47
|
+
item.data.fieldName =
|
|
48
|
+
item.ControlType +
|
|
49
|
+
"_" +
|
|
50
|
+
window.VueContext.$Flex.generateMixed();
|
|
51
|
+
item.id = window.VueContext.$Flex.generateMixed();
|
|
52
|
+
}
|
|
53
|
+
});
|
|
54
|
+
}
|
|
55
|
+
});
|
|
56
|
+
}// 表格布局
|
|
57
|
+
else if (pasteControl.ControlType === "TableLayout") {
|
|
58
|
+
// 遍历表格的所有行
|
|
59
|
+
pasteControl.data.trs.forEach((tr: any, trIndex: number) => {
|
|
60
|
+
// 遍历行的所有单元格
|
|
61
|
+
tr.tds.forEach((td: any, tdIndex: number) => {
|
|
62
|
+
// 遍历单元格中的所有控件
|
|
63
|
+
td.list.forEach((item: any, itemIndex: number) => {
|
|
64
|
+
if (item.ControlType === "Date") {
|
|
65
|
+
// 处理 Date 组件的复制
|
|
66
|
+
this.handleDateComponentCopy(
|
|
67
|
+
item,
|
|
68
|
+
state.copyContent.data.trs[trIndex]?.tds[tdIndex]?.list[itemIndex]
|
|
69
|
+
);
|
|
70
|
+
}
|
|
71
|
+
// 生成新的 fieldName 和 id
|
|
72
|
+
if (item.data) {
|
|
73
|
+
item.data.fieldName =
|
|
74
|
+
item.ControlType +
|
|
75
|
+
"_" +
|
|
76
|
+
window.VueContext.$Flex.generateMixed();
|
|
77
|
+
item.id = window.VueContext.$Flex.generateMixed();
|
|
78
|
+
}
|
|
79
|
+
});
|
|
80
|
+
});
|
|
81
|
+
});
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
// 生成新的 fieldName 和 id
|
|
85
|
+
pasteControl.data.fieldName =
|
|
86
|
+
pasteControl.ControlType +
|
|
87
|
+
"_" +
|
|
88
|
+
window.VueContext.$Flex.generateMixed();
|
|
26
89
|
pasteControl.id = window.VueContext.$Flex.generateMixed();
|
|
90
|
+
|
|
91
|
+
// 插入到列表
|
|
27
92
|
list.splice(state.form.currentIndex, 0, pasteControl);
|
|
28
93
|
state.form.formUpdate = true;
|
|
29
94
|
}
|
|
30
95
|
}
|
|
31
96
|
}
|
|
97
|
+
|
|
98
|
+
// 特殊处理 Date 组件的复制
|
|
99
|
+
handleDateComponentCopy(target: AllFormItem, source: AllFormItem) {
|
|
100
|
+
// 确保 default 值被复制
|
|
101
|
+
if (source.data?.default !== undefined) {
|
|
102
|
+
// 如果是字符串,直接复制
|
|
103
|
+
if (typeof source.data.default === "string") {
|
|
104
|
+
target.data.default = source.data.default;
|
|
105
|
+
}
|
|
106
|
+
// 如果是 Date 对象,转换为字符串
|
|
107
|
+
else if (source.data.default instanceof Date) {
|
|
108
|
+
target.data.default = this.formatDateToString(
|
|
109
|
+
source.data.default,
|
|
110
|
+
source.data.format || "YYYY-MM-DD"
|
|
111
|
+
);
|
|
112
|
+
}
|
|
113
|
+
// 其他情况,尝试转换为字符串
|
|
114
|
+
else if (source.data.default) {
|
|
115
|
+
target.data.default = String(source.data.default);
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
// 确保 format 存在
|
|
120
|
+
if (!target.data.format && source.data?.format) {
|
|
121
|
+
target.data.format = source.data.format;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
// 日期对象转字符串
|
|
126
|
+
formatDateToString(date: Date, format: string): string {
|
|
127
|
+
const year = date.getFullYear();
|
|
128
|
+
const month = String(date.getMonth() + 1).padStart(2, "0");
|
|
129
|
+
const day = String(date.getDate()).padStart(2, "0");
|
|
130
|
+
const hours = String(date.getHours()).padStart(2, "0");
|
|
131
|
+
const minutes = String(date.getMinutes()).padStart(2, "0");
|
|
132
|
+
const seconds = String(date.getSeconds()).padStart(2, "0");
|
|
133
|
+
|
|
134
|
+
const formatMap: Record<string, string> = {
|
|
135
|
+
YYYY: `${year}`,
|
|
136
|
+
"YYYY-MM": `${year}-${month}`,
|
|
137
|
+
"YYYY-MM-DD": `${year}-${month}-${day}`,
|
|
138
|
+
"YYYY-MM-DD HH": `${year}-${month}-${day} ${hours}`,
|
|
139
|
+
"YYYY-MM-DD HH:mm": `${year}-${month}-${day} ${hours}:${minutes}`,
|
|
140
|
+
"YYYY-MM-DD HH:mm:ss": `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`,
|
|
141
|
+
};
|
|
142
|
+
|
|
143
|
+
return formatMap[format] || `${year}-${month}-${day}`;
|
|
144
|
+
}
|
|
32
145
|
delete(list: AllFormItem[]) {
|
|
33
|
-
console.log(
|
|
146
|
+
console.log("delete list", list);
|
|
34
147
|
list.splice(state.form.currentIndex, 1);
|
|
35
148
|
state.form.curControl = {};
|
|
36
149
|
state.form.formUpdate = true;
|
package/stats.html
CHANGED
|
@@ -4929,7 +4929,7 @@ var drawChart = (function (exports) {
|
|
|
4929
4929
|
</script>
|
|
4930
4930
|
<script>
|
|
4931
4931
|
/*<!--*/
|
|
4932
|
-
const data = {"version":2,"tree":{"name":"root","children":[{"name":"starfish-editor.es.js","uid":"b06bd3a2-1"},{"name":"main.js","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src","children":[{"name":"styles/index.scss","uid":"b06bd3a2-3"},{"name":"utils","children":[{"uid":"b06bd3a2-5","name":"vm.ts"},{"uid":"b06bd3a2-11","name":"_.ts"},{"uid":"b06bd3a2-33","name":"formKeycon.ts"},{"uid":"b06bd3a2-51","name":"shortcutKey.ts"}]},{"name":"controller","children":[{"uid":"b06bd3a2-7","name":"history.ts"},{"uid":"b06bd3a2-9","name":"form.ts"},{"uid":"b06bd3a2-13","name":"ui.ts"},{"uid":"b06bd3a2-31","name":"shortcut.ts"},{"uid":"b06bd3a2-49","name":"action.ts"}]},{"name":"components","children":[{"uid":"b06bd3a2-17","name":"FormPreview.vue"},{"uid":"b06bd3a2-29","name":"PropsPanel.vue"},{"uid":"b06bd3a2-35","name":"Shape.vue"},{"uid":"b06bd3a2-37","name":"Workspace.vue"},{"uid":"b06bd3a2-39","name":"ComponentList.vue"},{"uid":"b06bd3a2-41","name":"NavList.vue"},{"uid":"b06bd3a2-43","name":"Nav.vue"}]},{"name":"layouts","children":[{"uid":"b06bd3a2-19","name":"ShortcutKey.vue"},{"uid":"b06bd3a2-21","name":"ControlEditSize.vue"},{"uid":"b06bd3a2-45","name":"Resizer.vue"},{"uid":"b06bd3a2-47","name":"Framework.vue"}]},{"name":"common","children":[{"uid":"b06bd3a2-23","name":"formJson.ts"},{"uid":"b06bd3a2-25","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"b06bd3a2-27","name":"Loading.vue"}]},{"uid":"b06bd3a2-53","name":"starfish-editor.vue?vue&type=style&index=0&lang.css"},{"uid":"b06bd3a2-55","name":"starfish-editor.vue"},{"uid":"b06bd3a2-56","name":"main.ts"}]},{"uid":"b06bd3a2-15","name":"plugin-vue:export-helper"}]},{"name":"CustomDialog.js","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common","children":[{"uid":"b06bd3a2-58","name":"CustomDialog.vue?vue&type=style&index=0&scoped=true&lang.css"},{"uid":"b06bd3a2-60","name":"CustomDialog.vue"}]}]},{"name":"ConditionSelect.js","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect.vue","uid":"b06bd3a2-62"}]},{"name":"ConditionModule.js","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect","children":[{"uid":"b06bd3a2-64","name":"ConditionTanc.vue"},{"uid":"b06bd3a2-66","name":"ConditionGroup.vue"},{"uid":"b06bd3a2-68","name":"ConditionModule.vue"}]}]},{"name":"formStyle.js","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common","children":[{"uid":"b06bd3a2-70","name":"formStyle.vue?vue&type=style&index=0&lang.scss"},{"uid":"b06bd3a2-72","name":"formStyle.vue"}]}]},{"name":"jsonCode.js","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common","children":[{"uid":"b06bd3a2-74","name":"jsonCode.vue?vue&type=style&index=0&lang.scss"},{"uid":"b06bd3a2-76","name":"jsonCode.vue"}]}]},{"name":"jsonEditor.js","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/components/jsonEditor.vue","uid":"b06bd3a2-78"}]},{"name":"globalFormList.js","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/components/globalFormList.vue","uid":"b06bd3a2-80"}]}],"isRoot":true},"nodeParts":{"b06bd3a2-1":{"id":"starfish-editor.es.js","gzipLength":0,"brotliLength":0,"renderedLength":1218,"metaUid":"b06bd3a2-0"},"b06bd3a2-3":{"renderedLength":15,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-2"},"b06bd3a2-5":{"renderedLength":16,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-4"},"b06bd3a2-7":{"renderedLength":1613,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-6"},"b06bd3a2-9":{"renderedLength":5611,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-8"},"b06bd3a2-11":{"renderedLength":11419,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-10"},"b06bd3a2-13":{"renderedLength":2025,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-12"},"b06bd3a2-15":{"renderedLength":157,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-14"},"b06bd3a2-17":{"renderedLength":7593,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-16"},"b06bd3a2-19":{"renderedLength":1810,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-18"},"b06bd3a2-21":{"renderedLength":2674,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-20"},"b06bd3a2-23":{"renderedLength":1187,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-22"},"b06bd3a2-25":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-24"},"b06bd3a2-27":{"renderedLength":401,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-26"},"b06bd3a2-29":{"renderedLength":20958,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-28"},"b06bd3a2-31":{"renderedLength":1902,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-30"},"b06bd3a2-33":{"renderedLength":457,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-32"},"b06bd3a2-35":{"renderedLength":6395,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-34"},"b06bd3a2-37":{"renderedLength":10101,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-36"},"b06bd3a2-39":{"renderedLength":5825,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-38"},"b06bd3a2-41":{"renderedLength":19389,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-40"},"b06bd3a2-43":{"renderedLength":8560,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-42"},"b06bd3a2-45":{"renderedLength":1138,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-44"},"b06bd3a2-47":{"renderedLength":2724,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-46"},"b06bd3a2-49":{"renderedLength":466,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-48"},"b06bd3a2-51":{"renderedLength":937,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-50"},"b06bd3a2-53":{"renderedLength":94,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-52"},"b06bd3a2-55":{"renderedLength":3717,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-54"},"b06bd3a2-56":{"renderedLength":1226,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-0"},"b06bd3a2-58":{"renderedLength":104,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-57"},"b06bd3a2-60":{"renderedLength":2123,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-59"},"b06bd3a2-62":{"renderedLength":18658,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-61"},"b06bd3a2-64":{"renderedLength":17166,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-63"},"b06bd3a2-66":{"renderedLength":7984,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-65"},"b06bd3a2-68":{"renderedLength":5755,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-67"},"b06bd3a2-70":{"renderedLength":89,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-69"},"b06bd3a2-72":{"renderedLength":7103,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-71"},"b06bd3a2-74":{"renderedLength":88,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-73"},"b06bd3a2-76":{"renderedLength":1553,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-75"},"b06bd3a2-78":{"renderedLength":1338,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-77"},"b06bd3a2-80":{"renderedLength":1044,"gzipLength":0,"brotliLength":0,"metaUid":"b06bd3a2-79"}},"nodeMetas":{"b06bd3a2-0":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/main.ts","moduleParts":{"starfish-editor.es.js":"b06bd3a2-1","main.js":"b06bd3a2-56"},"imported":[{"uid":"b06bd3a2-81"},{"uid":"b06bd3a2-82"},{"uid":"b06bd3a2-2"},{"uid":"b06bd3a2-83"},{"uid":"b06bd3a2-84"},{"uid":"b06bd3a2-4"},{"uid":"b06bd3a2-10"},{"uid":"b06bd3a2-85"},{"uid":"b06bd3a2-54"},{"uid":"b06bd3a2-26"},{"uid":"b06bd3a2-59","dynamic":true},{"uid":"b06bd3a2-61","dynamic":true},{"uid":"b06bd3a2-67","dynamic":true},{"uid":"b06bd3a2-86","dynamic":true},{"uid":"b06bd3a2-34","dynamic":true},{"uid":"b06bd3a2-71","dynamic":true}],"importedBy":[],"isEntry":true},"b06bd3a2-2":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/styles/index.scss","moduleParts":{"main.js":"b06bd3a2-3"},"imported":[],"importedBy":[{"uid":"b06bd3a2-0"}]},"b06bd3a2-4":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/utils/vm.ts","moduleParts":{"main.js":"b06bd3a2-5"},"imported":[{"uid":"b06bd3a2-87"}],"importedBy":[{"uid":"b06bd3a2-0"}]},"b06bd3a2-6":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/controller/history.ts","moduleParts":{"main.js":"b06bd3a2-7"},"imported":[{"uid":"b06bd3a2-81"},{"uid":"b06bd3a2-8"}],"importedBy":[{"uid":"b06bd3a2-54"},{"uid":"b06bd3a2-8"},{"uid":"b06bd3a2-50"}]},"b06bd3a2-8":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/controller/form.ts","moduleParts":{"main.js":"b06bd3a2-9"},"imported":[{"uid":"b06bd3a2-81"},{"uid":"b06bd3a2-6"}],"importedBy":[{"uid":"b06bd3a2-10"},{"uid":"b06bd3a2-54"},{"uid":"b06bd3a2-61"},{"uid":"b06bd3a2-67"},{"uid":"b06bd3a2-16"},{"uid":"b06bd3a2-38"},{"uid":"b06bd3a2-6"},{"uid":"b06bd3a2-30"}]},"b06bd3a2-10":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/utils/_.ts","moduleParts":{"main.js":"b06bd3a2-11"},"imported":[{"uid":"b06bd3a2-88"},{"uid":"b06bd3a2-89"},{"uid":"b06bd3a2-8"}],"importedBy":[{"uid":"b06bd3a2-0"}]},"b06bd3a2-12":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/controller/ui.ts","moduleParts":{"main.js":"b06bd3a2-13"},"imported":[{"uid":"b06bd3a2-81"}],"importedBy":[{"uid":"b06bd3a2-54"},{"uid":"b06bd3a2-16"}]},"b06bd3a2-14":{"id":"plugin-vue:export-helper","moduleParts":{"main.js":"b06bd3a2-15"},"imported":[],"importedBy":[{"uid":"b06bd3a2-54"},{"uid":"b06bd3a2-26"},{"uid":"b06bd3a2-59"},{"uid":"b06bd3a2-61"},{"uid":"b06bd3a2-67"},{"uid":"b06bd3a2-34"},{"uid":"b06bd3a2-71"},{"uid":"b06bd3a2-16"},{"uid":"b06bd3a2-28"},{"uid":"b06bd3a2-36"},{"uid":"b06bd3a2-38"},{"uid":"b06bd3a2-40"},{"uid":"b06bd3a2-42"},{"uid":"b06bd3a2-46"},{"uid":"b06bd3a2-65"},{"uid":"b06bd3a2-75"},{"uid":"b06bd3a2-20"},{"uid":"b06bd3a2-77"},{"uid":"b06bd3a2-79"},{"uid":"b06bd3a2-44"},{"uid":"b06bd3a2-63"},{"uid":"b06bd3a2-18"}]},"b06bd3a2-16":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/components/FormPreview.vue","moduleParts":{"main.js":"b06bd3a2-17"},"imported":[{"uid":"b06bd3a2-90"},{"uid":"b06bd3a2-91"},{"uid":"b06bd3a2-95"},{"uid":"b06bd3a2-98"},{"uid":"b06bd3a2-81"},{"uid":"b06bd3a2-8"},{"uid":"b06bd3a2-84"},{"uid":"b06bd3a2-12"},{"uid":"b06bd3a2-109"},{"uid":"b06bd3a2-14"},{"uid":"b06bd3a2-110"},{"uid":"b06bd3a2-75","dynamic":true}],"importedBy":[{"uid":"b06bd3a2-54"}]},"b06bd3a2-18":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/layouts/ShortcutKey.vue","moduleParts":{"main.js":"b06bd3a2-19"},"imported":[{"uid":"b06bd3a2-81"},{"uid":"b06bd3a2-14"}],"importedBy":[{"uid":"b06bd3a2-20"}]},"b06bd3a2-20":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/layouts/ControlEditSize.vue","moduleParts":{"main.js":"b06bd3a2-21"},"imported":[{"uid":"b06bd3a2-81"},{"uid":"b06bd3a2-18"},{"uid":"b06bd3a2-14"}],"importedBy":[{"uid":"b06bd3a2-28"}]},"b06bd3a2-22":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/formJson.ts","moduleParts":{"main.js":"b06bd3a2-23"},"imported":[],"importedBy":[{"uid":"b06bd3a2-28"}]},"b06bd3a2-24":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue?vue&type=style&index=0&scoped=true&lang.scss","moduleParts":{"main.js":"b06bd3a2-25"},"imported":[],"importedBy":[{"uid":"b06bd3a2-26"}]},"b06bd3a2-26":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue","moduleParts":{"main.js":"b06bd3a2-27"},"imported":[{"uid":"b06bd3a2-90"},{"uid":"b06bd3a2-91"},{"uid":"b06bd3a2-92"},{"uid":"b06bd3a2-81"},{"uid":"b06bd3a2-24"},{"uid":"b06bd3a2-14"}],"importedBy":[{"uid":"b06bd3a2-0"},{"uid":"b06bd3a2-28"}]},"b06bd3a2-28":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/components/PropsPanel.vue","moduleParts":{"main.js":"b06bd3a2-29"},"imported":[{"uid":"b06bd3a2-90"},{"uid":"b06bd3a2-91"},{"uid":"b06bd3a2-111"},{"uid":"b06bd3a2-112"},{"uid":"b06bd3a2-113"},{"uid":"b06bd3a2-100"},{"uid":"b06bd3a2-101"},{"uid":"b06bd3a2-81"},{"uid":"b06bd3a2-20"},{"uid":"b06bd3a2-22"},{"uid":"b06bd3a2-26"},{"uid":"b06bd3a2-14"},{"uid":"b06bd3a2-114"},{"uid":"b06bd3a2-77","dynamic":true},{"uid":"b06bd3a2-79","dynamic":true}],"importedBy":[{"uid":"b06bd3a2-54"}]},"b06bd3a2-30":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/controller/shortcut.ts","moduleParts":{"main.js":"b06bd3a2-31"},"imported":[{"uid":"b06bd3a2-81"},{"uid":"b06bd3a2-8"}],"importedBy":[{"uid":"b06bd3a2-54"},{"uid":"b06bd3a2-32"}]},"b06bd3a2-32":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/utils/formKeycon.ts","moduleParts":{"main.js":"b06bd3a2-33"},"imported":[{"uid":"b06bd3a2-30"}],"importedBy":[{"uid":"b06bd3a2-54"},{"uid":"b06bd3a2-34"},{"uid":"b06bd3a2-36"},{"uid":"b06bd3a2-40"}]},"b06bd3a2-34":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/components/Shape.vue","moduleParts":{"main.js":"b06bd3a2-35"},"imported":[{"uid":"b06bd3a2-81"},{"uid":"b06bd3a2-32"},{"uid":"b06bd3a2-14"}],"importedBy":[{"uid":"b06bd3a2-0"},{"uid":"b06bd3a2-36"}]},"b06bd3a2-36":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/components/Workspace.vue","moduleParts":{"main.js":"b06bd3a2-37"},"imported":[{"uid":"b06bd3a2-34"},{"uid":"b06bd3a2-81"},{"uid":"b06bd3a2-32"},{"uid":"b06bd3a2-14"}],"importedBy":[{"uid":"b06bd3a2-54"}]},"b06bd3a2-38":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/components/ComponentList.vue","moduleParts":{"main.js":"b06bd3a2-39"},"imported":[{"uid":"b06bd3a2-90"},{"uid":"b06bd3a2-91"},{"uid":"b06bd3a2-98"},{"uid":"b06bd3a2-102"},{"uid":"b06bd3a2-81"},{"uid":"b06bd3a2-8"},{"uid":"b06bd3a2-14"}],"importedBy":[{"uid":"b06bd3a2-54"}]},"b06bd3a2-40":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/components/NavList.vue","moduleParts":{"main.js":"b06bd3a2-41"},"imported":[{"uid":"b06bd3a2-90"},{"uid":"b06bd3a2-91"},{"uid":"b06bd3a2-95"},{"uid":"b06bd3a2-115"},{"uid":"b06bd3a2-98"},{"uid":"b06bd3a2-116"},{"uid":"b06bd3a2-117"},{"uid":"b06bd3a2-102"},{"uid":"b06bd3a2-106"},{"uid":"b06bd3a2-81"},{"uid":"b06bd3a2-32"},{"uid":"b06bd3a2-14"},{"uid":"b06bd3a2-110"},{"uid":"b06bd3a2-75","dynamic":true}],"importedBy":[{"uid":"b06bd3a2-54"}]},"b06bd3a2-42":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/components/Nav.vue","moduleParts":{"main.js":"b06bd3a2-43"},"imported":[{"uid":"b06bd3a2-81"},{"uid":"b06bd3a2-14"}],"importedBy":[{"uid":"b06bd3a2-54"}]},"b06bd3a2-44":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/layouts/Resizer.vue","moduleParts":{"main.js":"b06bd3a2-45"},"imported":[{"uid":"b06bd3a2-81"},{"uid":"b06bd3a2-121"},{"uid":"b06bd3a2-14"}],"importedBy":[{"uid":"b06bd3a2-46"}]},"b06bd3a2-46":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/layouts/Framework.vue","moduleParts":{"main.js":"b06bd3a2-47"},"imported":[{"uid":"b06bd3a2-81"},{"uid":"b06bd3a2-44"},{"uid":"b06bd3a2-14"}],"importedBy":[{"uid":"b06bd3a2-54"}]},"b06bd3a2-48":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/controller/action.ts","moduleParts":{"main.js":"b06bd3a2-49"},"imported":[{"uid":"b06bd3a2-81"}],"importedBy":[{"uid":"b06bd3a2-54"}]},"b06bd3a2-50":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/utils/shortcutKey.ts","moduleParts":{"main.js":"b06bd3a2-51"},"imported":[{"uid":"b06bd3a2-118"},{"uid":"b06bd3a2-6"}],"importedBy":[{"uid":"b06bd3a2-54"}]},"b06bd3a2-52":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/starfish-editor.vue?vue&type=style&index=0&lang.css","moduleParts":{"main.js":"b06bd3a2-53"},"imported":[],"importedBy":[{"uid":"b06bd3a2-54"}]},"b06bd3a2-54":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/starfish-editor.vue","moduleParts":{"main.js":"b06bd3a2-55"},"imported":[{"uid":"b06bd3a2-16"},{"uid":"b06bd3a2-28"},{"uid":"b06bd3a2-36"},{"uid":"b06bd3a2-38"},{"uid":"b06bd3a2-40"},{"uid":"b06bd3a2-42"},{"uid":"b06bd3a2-81"},{"uid":"b06bd3a2-46"},{"uid":"b06bd3a2-12"},{"uid":"b06bd3a2-6"},{"uid":"b06bd3a2-8"},{"uid":"b06bd3a2-48"},{"uid":"b06bd3a2-30"},{"uid":"b06bd3a2-50"},{"uid":"b06bd3a2-32"},{"uid":"b06bd3a2-52"},{"uid":"b06bd3a2-14"},{"uid":"b06bd3a2-16","dynamic":true}],"importedBy":[{"uid":"b06bd3a2-0"}]},"b06bd3a2-57":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/CustomDialog.vue?vue&type=style&index=0&scoped=true&lang.css","moduleParts":{"CustomDialog.js":"b06bd3a2-58"},"imported":[],"importedBy":[{"uid":"b06bd3a2-59"}]},"b06bd3a2-59":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/CustomDialog.vue","moduleParts":{"CustomDialog.js":"b06bd3a2-60"},"imported":[{"uid":"b06bd3a2-90"},{"uid":"b06bd3a2-91"},{"uid":"b06bd3a2-93"},{"uid":"b06bd3a2-81"},{"uid":"b06bd3a2-57"},{"uid":"b06bd3a2-14"}],"importedBy":[{"uid":"b06bd3a2-0"}]},"b06bd3a2-61":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect.vue","moduleParts":{"ConditionSelect.js":"b06bd3a2-62"},"imported":[{"uid":"b06bd3a2-90"},{"uid":"b06bd3a2-91"},{"uid":"b06bd3a2-94"},{"uid":"b06bd3a2-95"},{"uid":"b06bd3a2-96"},{"uid":"b06bd3a2-97"},{"uid":"b06bd3a2-98"},{"uid":"b06bd3a2-99"},{"uid":"b06bd3a2-100"},{"uid":"b06bd3a2-101"},{"uid":"b06bd3a2-102"},{"uid":"b06bd3a2-103"},{"uid":"b06bd3a2-104"},{"uid":"b06bd3a2-105"},{"uid":"b06bd3a2-81"},{"uid":"b06bd3a2-8"},{"uid":"b06bd3a2-14"}],"importedBy":[{"uid":"b06bd3a2-0"}]},"b06bd3a2-63":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect/ConditionTanc.vue","moduleParts":{"ConditionModule.js":"b06bd3a2-64"},"imported":[{"uid":"b06bd3a2-90"},{"uid":"b06bd3a2-91"},{"uid":"b06bd3a2-94"},{"uid":"b06bd3a2-95"},{"uid":"b06bd3a2-96"},{"uid":"b06bd3a2-97"},{"uid":"b06bd3a2-98"},{"uid":"b06bd3a2-99"},{"uid":"b06bd3a2-100"},{"uid":"b06bd3a2-101"},{"uid":"b06bd3a2-102"},{"uid":"b06bd3a2-103"},{"uid":"b06bd3a2-104"},{"uid":"b06bd3a2-105"},{"uid":"b06bd3a2-110"},{"uid":"b06bd3a2-81"},{"uid":"b06bd3a2-14"}],"importedBy":[{"uid":"b06bd3a2-65"}]},"b06bd3a2-65":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect/ConditionGroup.vue","moduleParts":{"ConditionModule.js":"b06bd3a2-66"},"imported":[{"uid":"b06bd3a2-90"},{"uid":"b06bd3a2-91"},{"uid":"b06bd3a2-98"},{"uid":"b06bd3a2-104"},{"uid":"b06bd3a2-105"},{"uid":"b06bd3a2-63"},{"uid":"b06bd3a2-81"},{"uid":"b06bd3a2-14"}],"importedBy":[{"uid":"b06bd3a2-67"}]},"b06bd3a2-67":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect/ConditionModule.vue","moduleParts":{"ConditionModule.js":"b06bd3a2-68"},"imported":[{"uid":"b06bd3a2-90"},{"uid":"b06bd3a2-91"},{"uid":"b06bd3a2-94"},{"uid":"b06bd3a2-95"},{"uid":"b06bd3a2-98"},{"uid":"b06bd3a2-96"},{"uid":"b06bd3a2-65"},{"uid":"b06bd3a2-8"},{"uid":"b06bd3a2-81"},{"uid":"b06bd3a2-14"}],"importedBy":[{"uid":"b06bd3a2-0"}]},"b06bd3a2-69":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/formStyle.vue?vue&type=style&index=0&lang.scss","moduleParts":{"formStyle.js":"b06bd3a2-70"},"imported":[],"importedBy":[{"uid":"b06bd3a2-71"}]},"b06bd3a2-71":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/formStyle.vue","moduleParts":{"formStyle.js":"b06bd3a2-72"},"imported":[{"uid":"b06bd3a2-90"},{"uid":"b06bd3a2-91"},{"uid":"b06bd3a2-95"},{"uid":"b06bd3a2-98"},{"uid":"b06bd3a2-106"},{"uid":"b06bd3a2-81"},{"uid":"b06bd3a2-107"},{"uid":"b06bd3a2-108"},{"uid":"b06bd3a2-69"},{"uid":"b06bd3a2-14"}],"importedBy":[{"uid":"b06bd3a2-0"}]},"b06bd3a2-73":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/jsonCode.vue?vue&type=style&index=0&lang.scss","moduleParts":{"jsonCode.js":"b06bd3a2-74"},"imported":[],"importedBy":[{"uid":"b06bd3a2-75"}]},"b06bd3a2-75":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/jsonCode.vue","moduleParts":{"jsonCode.js":"b06bd3a2-76"},"imported":[{"uid":"b06bd3a2-81"},{"uid":"b06bd3a2-119"},{"uid":"b06bd3a2-108"},{"uid":"b06bd3a2-73"},{"uid":"b06bd3a2-14"}],"importedBy":[{"uid":"b06bd3a2-16"},{"uid":"b06bd3a2-40"}]},"b06bd3a2-77":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/components/jsonEditor.vue","moduleParts":{"jsonEditor.js":"b06bd3a2-78"},"imported":[{"uid":"b06bd3a2-81"},{"uid":"b06bd3a2-120"},{"uid":"b06bd3a2-14"}],"importedBy":[{"uid":"b06bd3a2-28"}]},"b06bd3a2-79":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/components/globalFormList.vue","moduleParts":{"globalFormList.js":"b06bd3a2-80"},"imported":[{"uid":"b06bd3a2-81"},{"uid":"b06bd3a2-14"}],"importedBy":[{"uid":"b06bd3a2-28"}]},"b06bd3a2-81":{"id":"vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-0"},{"uid":"b06bd3a2-54"},{"uid":"b06bd3a2-26"},{"uid":"b06bd3a2-59"},{"uid":"b06bd3a2-61"},{"uid":"b06bd3a2-67"},{"uid":"b06bd3a2-34"},{"uid":"b06bd3a2-71"},{"uid":"b06bd3a2-8"},{"uid":"b06bd3a2-16"},{"uid":"b06bd3a2-28"},{"uid":"b06bd3a2-36"},{"uid":"b06bd3a2-38"},{"uid":"b06bd3a2-40"},{"uid":"b06bd3a2-42"},{"uid":"b06bd3a2-46"},{"uid":"b06bd3a2-12"},{"uid":"b06bd3a2-6"},{"uid":"b06bd3a2-48"},{"uid":"b06bd3a2-30"},{"uid":"b06bd3a2-65"},{"uid":"b06bd3a2-75"},{"uid":"b06bd3a2-20"},{"uid":"b06bd3a2-77"},{"uid":"b06bd3a2-79"},{"uid":"b06bd3a2-44"},{"uid":"b06bd3a2-63"},{"uid":"b06bd3a2-18"}],"isExternal":true},"b06bd3a2-82":{"id":"element-plus/dist/index.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-0"}],"isExternal":true},"b06bd3a2-83":{"id":"jsoneditor/dist/jsoneditor.min.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-0"}],"isExternal":true},"b06bd3a2-84":{"id":"starfish-form-custom","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-0"},{"uid":"b06bd3a2-16"}],"isExternal":true},"b06bd3a2-85":{"id":"starfish-form-custom/dist/style.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-0"}],"isExternal":true},"b06bd3a2-86":{"id":"vuedraggable","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-0"}],"isExternal":true},"b06bd3a2-87":{"id":"mitt","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-4"}],"isExternal":true},"b06bd3a2-88":{"id":"element-plus","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-10"}],"isExternal":true},"b06bd3a2-89":{"id":"nanoid","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-10"}],"isExternal":true},"b06bd3a2-90":{"id":"element-plus/es","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-26"},{"uid":"b06bd3a2-59"},{"uid":"b06bd3a2-61"},{"uid":"b06bd3a2-67"},{"uid":"b06bd3a2-71"},{"uid":"b06bd3a2-16"},{"uid":"b06bd3a2-28"},{"uid":"b06bd3a2-38"},{"uid":"b06bd3a2-40"},{"uid":"b06bd3a2-65"},{"uid":"b06bd3a2-63"}],"isExternal":true},"b06bd3a2-91":{"id":"element-plus/es/components/base/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-26"},{"uid":"b06bd3a2-59"},{"uid":"b06bd3a2-61"},{"uid":"b06bd3a2-67"},{"uid":"b06bd3a2-71"},{"uid":"b06bd3a2-16"},{"uid":"b06bd3a2-28"},{"uid":"b06bd3a2-38"},{"uid":"b06bd3a2-40"},{"uid":"b06bd3a2-65"},{"uid":"b06bd3a2-63"}],"isExternal":true},"b06bd3a2-92":{"id":"element-plus/es/components/loading/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-26"}],"isExternal":true},"b06bd3a2-93":{"id":"element-plus/es/components/dialog/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-59"}],"isExternal":true},"b06bd3a2-94":{"id":"element-plus/es/components/container/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-61"},{"uid":"b06bd3a2-67"},{"uid":"b06bd3a2-63"}],"isExternal":true},"b06bd3a2-95":{"id":"element-plus/es/components/footer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-61"},{"uid":"b06bd3a2-67"},{"uid":"b06bd3a2-71"},{"uid":"b06bd3a2-16"},{"uid":"b06bd3a2-40"},{"uid":"b06bd3a2-63"}],"isExternal":true},"b06bd3a2-96":{"id":"element-plus/es/components/main/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-61"},{"uid":"b06bd3a2-67"},{"uid":"b06bd3a2-63"}],"isExternal":true},"b06bd3a2-97":{"id":"element-plus/es/components/table/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-61"},{"uid":"b06bd3a2-63"}],"isExternal":true},"b06bd3a2-98":{"id":"element-plus/es/components/button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-61"},{"uid":"b06bd3a2-67"},{"uid":"b06bd3a2-71"},{"uid":"b06bd3a2-16"},{"uid":"b06bd3a2-38"},{"uid":"b06bd3a2-40"},{"uid":"b06bd3a2-65"},{"uid":"b06bd3a2-63"}],"isExternal":true},"b06bd3a2-99":{"id":"element-plus/es/components/switch/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-61"},{"uid":"b06bd3a2-63"}],"isExternal":true},"b06bd3a2-100":{"id":"element-plus/es/components/form/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-61"},{"uid":"b06bd3a2-28"},{"uid":"b06bd3a2-63"}],"isExternal":true},"b06bd3a2-101":{"id":"element-plus/es/components/form-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-61"},{"uid":"b06bd3a2-28"},{"uid":"b06bd3a2-63"}],"isExternal":true},"b06bd3a2-102":{"id":"element-plus/es/components/input/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-61"},{"uid":"b06bd3a2-38"},{"uid":"b06bd3a2-40"},{"uid":"b06bd3a2-63"}],"isExternal":true},"b06bd3a2-103":{"id":"element-plus/es/components/table-column/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-61"},{"uid":"b06bd3a2-63"}],"isExternal":true},"b06bd3a2-104":{"id":"element-plus/es/components/select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-61"},{"uid":"b06bd3a2-65"},{"uid":"b06bd3a2-63"}],"isExternal":true},"b06bd3a2-105":{"id":"element-plus/es/components/option/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-61"},{"uid":"b06bd3a2-65"},{"uid":"b06bd3a2-63"}],"isExternal":true},"b06bd3a2-106":{"id":"element-plus/es/components/tooltip/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-71"},{"uid":"b06bd3a2-40"}],"isExternal":true},"b06bd3a2-107":{"id":"@codemirror/lang-css","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-71"}],"isExternal":true},"b06bd3a2-108":{"id":"vue-codemirror","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-71"},{"uid":"b06bd3a2-75"}],"isExternal":true},"b06bd3a2-109":{"id":"clipboard","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-16"}],"isExternal":true},"b06bd3a2-110":{"id":"element-plus/es/components/message/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-16"},{"uid":"b06bd3a2-40"},{"uid":"b06bd3a2-63"}],"isExternal":true},"b06bd3a2-111":{"id":"element-plus/es/components/tabs/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-28"}],"isExternal":true},"b06bd3a2-112":{"id":"element-plus/es/components/tab-pane/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-28"}],"isExternal":true},"b06bd3a2-113":{"id":"element-plus/es/components/empty/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-28"}],"isExternal":true},"b06bd3a2-114":{"id":"element-plus/es/components/notification/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-28"}],"isExternal":true},"b06bd3a2-115":{"id":"element-plus/es/components/upload/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-40"}],"isExternal":true},"b06bd3a2-116":{"id":"element-plus/es/components/drawer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-40"}],"isExternal":true},"b06bd3a2-117":{"id":"element-plus/es/components/tree/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-40"}],"isExternal":true},"b06bd3a2-118":{"id":"keycon","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-50"}],"isExternal":true},"b06bd3a2-119":{"id":"@codemirror/lang-json","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-75"}],"isExternal":true},"b06bd3a2-120":{"id":"jsoneditor","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-77"}],"isExternal":true},"b06bd3a2-121":{"id":"gesto","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bd3a2-44"}],"isExternal":true}},"env":{"rollup":"2.77.3"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
|
|
4932
|
+
const data = {"version":2,"tree":{"name":"root","children":[{"name":"starfish-editor.es.js","uid":"5b3500cc-1"},{"name":"main.js","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src","children":[{"name":"styles/index.scss","uid":"5b3500cc-3"},{"name":"utils","children":[{"uid":"5b3500cc-5","name":"vm.ts"},{"uid":"5b3500cc-11","name":"_.ts"},{"uid":"5b3500cc-33","name":"formKeycon.ts"},{"uid":"5b3500cc-51","name":"shortcutKey.ts"}]},{"name":"controller","children":[{"uid":"5b3500cc-7","name":"history.ts"},{"uid":"5b3500cc-9","name":"form.ts"},{"uid":"5b3500cc-13","name":"ui.ts"},{"uid":"5b3500cc-31","name":"shortcut.ts"},{"uid":"5b3500cc-49","name":"action.ts"}]},{"name":"components","children":[{"uid":"5b3500cc-17","name":"FormPreview.vue"},{"uid":"5b3500cc-29","name":"PropsPanel.vue"},{"uid":"5b3500cc-35","name":"Shape.vue"},{"uid":"5b3500cc-37","name":"Workspace.vue"},{"uid":"5b3500cc-39","name":"ComponentList.vue"},{"uid":"5b3500cc-41","name":"NavList.vue"},{"uid":"5b3500cc-43","name":"Nav.vue"}]},{"name":"layouts","children":[{"uid":"5b3500cc-19","name":"ShortcutKey.vue"},{"uid":"5b3500cc-21","name":"ControlEditSize.vue"},{"uid":"5b3500cc-45","name":"Resizer.vue"},{"uid":"5b3500cc-47","name":"Framework.vue"}]},{"name":"common","children":[{"uid":"5b3500cc-23","name":"formJson.ts"},{"uid":"5b3500cc-25","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"5b3500cc-27","name":"Loading.vue"}]},{"uid":"5b3500cc-53","name":"starfish-editor.vue?vue&type=style&index=0&lang.css"},{"uid":"5b3500cc-55","name":"starfish-editor.vue"},{"uid":"5b3500cc-56","name":"main.ts"}]},{"uid":"5b3500cc-15","name":"plugin-vue:export-helper"}]},{"name":"CustomDialog.js","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common","children":[{"uid":"5b3500cc-58","name":"CustomDialog.vue?vue&type=style&index=0&scoped=true&lang.css"},{"uid":"5b3500cc-60","name":"CustomDialog.vue"}]}]},{"name":"ConditionSelect.js","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect.vue","uid":"5b3500cc-62"}]},{"name":"ConditionModule.js","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect","children":[{"uid":"5b3500cc-64","name":"ConditionTanc.vue"},{"uid":"5b3500cc-66","name":"ConditionGroup.vue"},{"uid":"5b3500cc-68","name":"ConditionModule.vue"}]}]},{"name":"formStyle.js","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common","children":[{"uid":"5b3500cc-70","name":"formStyle.vue?vue&type=style&index=0&lang.scss"},{"uid":"5b3500cc-72","name":"formStyle.vue"}]}]},{"name":"jsonCode.js","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common","children":[{"uid":"5b3500cc-74","name":"jsonCode.vue?vue&type=style&index=0&lang.scss"},{"uid":"5b3500cc-76","name":"jsonCode.vue"}]}]},{"name":"jsonEditor.js","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/components/jsonEditor.vue","uid":"5b3500cc-78"}]},{"name":"globalFormList.js","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/components/globalFormList.vue","uid":"5b3500cc-80"}]}],"isRoot":true},"nodeParts":{"5b3500cc-1":{"id":"starfish-editor.es.js","gzipLength":0,"brotliLength":0,"renderedLength":1218,"metaUid":"5b3500cc-0"},"5b3500cc-3":{"renderedLength":15,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-2"},"5b3500cc-5":{"renderedLength":16,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-4"},"5b3500cc-7":{"renderedLength":1613,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-6"},"5b3500cc-9":{"renderedLength":5611,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-8"},"5b3500cc-11":{"renderedLength":11419,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-10"},"5b3500cc-13":{"renderedLength":2025,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-12"},"5b3500cc-15":{"renderedLength":157,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-14"},"5b3500cc-17":{"renderedLength":7593,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-16"},"5b3500cc-19":{"renderedLength":1810,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-18"},"5b3500cc-21":{"renderedLength":2674,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-20"},"5b3500cc-23":{"renderedLength":1187,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-22"},"5b3500cc-25":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-24"},"5b3500cc-27":{"renderedLength":401,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-26"},"5b3500cc-29":{"renderedLength":20958,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-28"},"5b3500cc-31":{"renderedLength":5055,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-30"},"5b3500cc-33":{"renderedLength":457,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-32"},"5b3500cc-35":{"renderedLength":6089,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-34"},"5b3500cc-37":{"renderedLength":10101,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-36"},"5b3500cc-39":{"renderedLength":5825,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-38"},"5b3500cc-41":{"renderedLength":19389,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-40"},"5b3500cc-43":{"renderedLength":8560,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-42"},"5b3500cc-45":{"renderedLength":1138,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-44"},"5b3500cc-47":{"renderedLength":2724,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-46"},"5b3500cc-49":{"renderedLength":466,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-48"},"5b3500cc-51":{"renderedLength":937,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-50"},"5b3500cc-53":{"renderedLength":94,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-52"},"5b3500cc-55":{"renderedLength":3717,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-54"},"5b3500cc-56":{"renderedLength":1226,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-0"},"5b3500cc-58":{"renderedLength":104,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-57"},"5b3500cc-60":{"renderedLength":2123,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-59"},"5b3500cc-62":{"renderedLength":18658,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-61"},"5b3500cc-64":{"renderedLength":17166,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-63"},"5b3500cc-66":{"renderedLength":7984,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-65"},"5b3500cc-68":{"renderedLength":5755,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-67"},"5b3500cc-70":{"renderedLength":89,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-69"},"5b3500cc-72":{"renderedLength":7103,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-71"},"5b3500cc-74":{"renderedLength":88,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-73"},"5b3500cc-76":{"renderedLength":1553,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-75"},"5b3500cc-78":{"renderedLength":1338,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-77"},"5b3500cc-80":{"renderedLength":1044,"gzipLength":0,"brotliLength":0,"metaUid":"5b3500cc-79"}},"nodeMetas":{"5b3500cc-0":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/main.ts","moduleParts":{"starfish-editor.es.js":"5b3500cc-1","main.js":"5b3500cc-56"},"imported":[{"uid":"5b3500cc-81"},{"uid":"5b3500cc-82"},{"uid":"5b3500cc-2"},{"uid":"5b3500cc-83"},{"uid":"5b3500cc-84"},{"uid":"5b3500cc-4"},{"uid":"5b3500cc-10"},{"uid":"5b3500cc-85"},{"uid":"5b3500cc-54"},{"uid":"5b3500cc-26"},{"uid":"5b3500cc-59","dynamic":true},{"uid":"5b3500cc-61","dynamic":true},{"uid":"5b3500cc-67","dynamic":true},{"uid":"5b3500cc-86","dynamic":true},{"uid":"5b3500cc-34","dynamic":true},{"uid":"5b3500cc-71","dynamic":true}],"importedBy":[],"isEntry":true},"5b3500cc-2":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/styles/index.scss","moduleParts":{"main.js":"5b3500cc-3"},"imported":[],"importedBy":[{"uid":"5b3500cc-0"}]},"5b3500cc-4":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/utils/vm.ts","moduleParts":{"main.js":"5b3500cc-5"},"imported":[{"uid":"5b3500cc-87"}],"importedBy":[{"uid":"5b3500cc-0"}]},"5b3500cc-6":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/controller/history.ts","moduleParts":{"main.js":"5b3500cc-7"},"imported":[{"uid":"5b3500cc-81"},{"uid":"5b3500cc-8"}],"importedBy":[{"uid":"5b3500cc-54"},{"uid":"5b3500cc-8"},{"uid":"5b3500cc-50"}]},"5b3500cc-8":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/controller/form.ts","moduleParts":{"main.js":"5b3500cc-9"},"imported":[{"uid":"5b3500cc-81"},{"uid":"5b3500cc-6"}],"importedBy":[{"uid":"5b3500cc-10"},{"uid":"5b3500cc-54"},{"uid":"5b3500cc-61"},{"uid":"5b3500cc-67"},{"uid":"5b3500cc-16"},{"uid":"5b3500cc-38"},{"uid":"5b3500cc-6"},{"uid":"5b3500cc-30"}]},"5b3500cc-10":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/utils/_.ts","moduleParts":{"main.js":"5b3500cc-11"},"imported":[{"uid":"5b3500cc-88"},{"uid":"5b3500cc-89"},{"uid":"5b3500cc-8"}],"importedBy":[{"uid":"5b3500cc-0"}]},"5b3500cc-12":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/controller/ui.ts","moduleParts":{"main.js":"5b3500cc-13"},"imported":[{"uid":"5b3500cc-81"}],"importedBy":[{"uid":"5b3500cc-54"},{"uid":"5b3500cc-16"}]},"5b3500cc-14":{"id":"plugin-vue:export-helper","moduleParts":{"main.js":"5b3500cc-15"},"imported":[],"importedBy":[{"uid":"5b3500cc-54"},{"uid":"5b3500cc-26"},{"uid":"5b3500cc-59"},{"uid":"5b3500cc-61"},{"uid":"5b3500cc-67"},{"uid":"5b3500cc-34"},{"uid":"5b3500cc-71"},{"uid":"5b3500cc-16"},{"uid":"5b3500cc-28"},{"uid":"5b3500cc-36"},{"uid":"5b3500cc-38"},{"uid":"5b3500cc-40"},{"uid":"5b3500cc-42"},{"uid":"5b3500cc-46"},{"uid":"5b3500cc-65"},{"uid":"5b3500cc-75"},{"uid":"5b3500cc-20"},{"uid":"5b3500cc-77"},{"uid":"5b3500cc-79"},{"uid":"5b3500cc-44"},{"uid":"5b3500cc-63"},{"uid":"5b3500cc-18"}]},"5b3500cc-16":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/components/FormPreview.vue","moduleParts":{"main.js":"5b3500cc-17"},"imported":[{"uid":"5b3500cc-90"},{"uid":"5b3500cc-91"},{"uid":"5b3500cc-95"},{"uid":"5b3500cc-98"},{"uid":"5b3500cc-81"},{"uid":"5b3500cc-8"},{"uid":"5b3500cc-84"},{"uid":"5b3500cc-12"},{"uid":"5b3500cc-109"},{"uid":"5b3500cc-14"},{"uid":"5b3500cc-110"},{"uid":"5b3500cc-75","dynamic":true}],"importedBy":[{"uid":"5b3500cc-54"}]},"5b3500cc-18":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/layouts/ShortcutKey.vue","moduleParts":{"main.js":"5b3500cc-19"},"imported":[{"uid":"5b3500cc-81"},{"uid":"5b3500cc-14"}],"importedBy":[{"uid":"5b3500cc-20"}]},"5b3500cc-20":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/layouts/ControlEditSize.vue","moduleParts":{"main.js":"5b3500cc-21"},"imported":[{"uid":"5b3500cc-81"},{"uid":"5b3500cc-18"},{"uid":"5b3500cc-14"}],"importedBy":[{"uid":"5b3500cc-28"}]},"5b3500cc-22":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/formJson.ts","moduleParts":{"main.js":"5b3500cc-23"},"imported":[],"importedBy":[{"uid":"5b3500cc-28"}]},"5b3500cc-24":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue?vue&type=style&index=0&scoped=true&lang.scss","moduleParts":{"main.js":"5b3500cc-25"},"imported":[],"importedBy":[{"uid":"5b3500cc-26"}]},"5b3500cc-26":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue","moduleParts":{"main.js":"5b3500cc-27"},"imported":[{"uid":"5b3500cc-90"},{"uid":"5b3500cc-91"},{"uid":"5b3500cc-92"},{"uid":"5b3500cc-81"},{"uid":"5b3500cc-24"},{"uid":"5b3500cc-14"}],"importedBy":[{"uid":"5b3500cc-0"},{"uid":"5b3500cc-28"}]},"5b3500cc-28":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/components/PropsPanel.vue","moduleParts":{"main.js":"5b3500cc-29"},"imported":[{"uid":"5b3500cc-90"},{"uid":"5b3500cc-91"},{"uid":"5b3500cc-111"},{"uid":"5b3500cc-112"},{"uid":"5b3500cc-113"},{"uid":"5b3500cc-100"},{"uid":"5b3500cc-101"},{"uid":"5b3500cc-81"},{"uid":"5b3500cc-20"},{"uid":"5b3500cc-22"},{"uid":"5b3500cc-26"},{"uid":"5b3500cc-14"},{"uid":"5b3500cc-114"},{"uid":"5b3500cc-77","dynamic":true},{"uid":"5b3500cc-79","dynamic":true}],"importedBy":[{"uid":"5b3500cc-54"}]},"5b3500cc-30":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/controller/shortcut.ts","moduleParts":{"main.js":"5b3500cc-31"},"imported":[{"uid":"5b3500cc-81"},{"uid":"5b3500cc-8"}],"importedBy":[{"uid":"5b3500cc-54"},{"uid":"5b3500cc-32"}]},"5b3500cc-32":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/utils/formKeycon.ts","moduleParts":{"main.js":"5b3500cc-33"},"imported":[{"uid":"5b3500cc-30"}],"importedBy":[{"uid":"5b3500cc-54"},{"uid":"5b3500cc-34"},{"uid":"5b3500cc-36"},{"uid":"5b3500cc-40"}]},"5b3500cc-34":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/components/Shape.vue","moduleParts":{"main.js":"5b3500cc-35"},"imported":[{"uid":"5b3500cc-81"},{"uid":"5b3500cc-32"},{"uid":"5b3500cc-14"}],"importedBy":[{"uid":"5b3500cc-0"},{"uid":"5b3500cc-36"}]},"5b3500cc-36":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/components/Workspace.vue","moduleParts":{"main.js":"5b3500cc-37"},"imported":[{"uid":"5b3500cc-34"},{"uid":"5b3500cc-81"},{"uid":"5b3500cc-32"},{"uid":"5b3500cc-14"}],"importedBy":[{"uid":"5b3500cc-54"}]},"5b3500cc-38":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/components/ComponentList.vue","moduleParts":{"main.js":"5b3500cc-39"},"imported":[{"uid":"5b3500cc-90"},{"uid":"5b3500cc-91"},{"uid":"5b3500cc-98"},{"uid":"5b3500cc-102"},{"uid":"5b3500cc-81"},{"uid":"5b3500cc-8"},{"uid":"5b3500cc-14"}],"importedBy":[{"uid":"5b3500cc-54"}]},"5b3500cc-40":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/components/NavList.vue","moduleParts":{"main.js":"5b3500cc-41"},"imported":[{"uid":"5b3500cc-90"},{"uid":"5b3500cc-91"},{"uid":"5b3500cc-95"},{"uid":"5b3500cc-115"},{"uid":"5b3500cc-98"},{"uid":"5b3500cc-116"},{"uid":"5b3500cc-117"},{"uid":"5b3500cc-102"},{"uid":"5b3500cc-106"},{"uid":"5b3500cc-81"},{"uid":"5b3500cc-32"},{"uid":"5b3500cc-110"},{"uid":"5b3500cc-14"},{"uid":"5b3500cc-75","dynamic":true}],"importedBy":[{"uid":"5b3500cc-54"}]},"5b3500cc-42":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/components/Nav.vue","moduleParts":{"main.js":"5b3500cc-43"},"imported":[{"uid":"5b3500cc-81"},{"uid":"5b3500cc-14"}],"importedBy":[{"uid":"5b3500cc-54"}]},"5b3500cc-44":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/layouts/Resizer.vue","moduleParts":{"main.js":"5b3500cc-45"},"imported":[{"uid":"5b3500cc-81"},{"uid":"5b3500cc-121"},{"uid":"5b3500cc-14"}],"importedBy":[{"uid":"5b3500cc-46"}]},"5b3500cc-46":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/layouts/Framework.vue","moduleParts":{"main.js":"5b3500cc-47"},"imported":[{"uid":"5b3500cc-81"},{"uid":"5b3500cc-44"},{"uid":"5b3500cc-14"}],"importedBy":[{"uid":"5b3500cc-54"}]},"5b3500cc-48":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/controller/action.ts","moduleParts":{"main.js":"5b3500cc-49"},"imported":[{"uid":"5b3500cc-81"}],"importedBy":[{"uid":"5b3500cc-54"}]},"5b3500cc-50":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/utils/shortcutKey.ts","moduleParts":{"main.js":"5b3500cc-51"},"imported":[{"uid":"5b3500cc-118"},{"uid":"5b3500cc-6"}],"importedBy":[{"uid":"5b3500cc-54"}]},"5b3500cc-52":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/starfish-editor.vue?vue&type=style&index=0&lang.css","moduleParts":{"main.js":"5b3500cc-53"},"imported":[],"importedBy":[{"uid":"5b3500cc-54"}]},"5b3500cc-54":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/starfish-editor.vue","moduleParts":{"main.js":"5b3500cc-55"},"imported":[{"uid":"5b3500cc-16"},{"uid":"5b3500cc-28"},{"uid":"5b3500cc-36"},{"uid":"5b3500cc-38"},{"uid":"5b3500cc-40"},{"uid":"5b3500cc-42"},{"uid":"5b3500cc-81"},{"uid":"5b3500cc-46"},{"uid":"5b3500cc-12"},{"uid":"5b3500cc-6"},{"uid":"5b3500cc-8"},{"uid":"5b3500cc-48"},{"uid":"5b3500cc-30"},{"uid":"5b3500cc-50"},{"uid":"5b3500cc-32"},{"uid":"5b3500cc-52"},{"uid":"5b3500cc-14"},{"uid":"5b3500cc-16","dynamic":true}],"importedBy":[{"uid":"5b3500cc-0"}]},"5b3500cc-57":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/CustomDialog.vue?vue&type=style&index=0&scoped=true&lang.css","moduleParts":{"CustomDialog.js":"5b3500cc-58"},"imported":[],"importedBy":[{"uid":"5b3500cc-59"}]},"5b3500cc-59":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/CustomDialog.vue","moduleParts":{"CustomDialog.js":"5b3500cc-60"},"imported":[{"uid":"5b3500cc-90"},{"uid":"5b3500cc-91"},{"uid":"5b3500cc-93"},{"uid":"5b3500cc-81"},{"uid":"5b3500cc-57"},{"uid":"5b3500cc-14"}],"importedBy":[{"uid":"5b3500cc-0"}]},"5b3500cc-61":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect.vue","moduleParts":{"ConditionSelect.js":"5b3500cc-62"},"imported":[{"uid":"5b3500cc-90"},{"uid":"5b3500cc-91"},{"uid":"5b3500cc-94"},{"uid":"5b3500cc-95"},{"uid":"5b3500cc-96"},{"uid":"5b3500cc-97"},{"uid":"5b3500cc-98"},{"uid":"5b3500cc-99"},{"uid":"5b3500cc-100"},{"uid":"5b3500cc-101"},{"uid":"5b3500cc-102"},{"uid":"5b3500cc-103"},{"uid":"5b3500cc-104"},{"uid":"5b3500cc-105"},{"uid":"5b3500cc-81"},{"uid":"5b3500cc-8"},{"uid":"5b3500cc-14"}],"importedBy":[{"uid":"5b3500cc-0"}]},"5b3500cc-63":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect/ConditionTanc.vue","moduleParts":{"ConditionModule.js":"5b3500cc-64"},"imported":[{"uid":"5b3500cc-90"},{"uid":"5b3500cc-91"},{"uid":"5b3500cc-94"},{"uid":"5b3500cc-95"},{"uid":"5b3500cc-96"},{"uid":"5b3500cc-97"},{"uid":"5b3500cc-98"},{"uid":"5b3500cc-99"},{"uid":"5b3500cc-100"},{"uid":"5b3500cc-101"},{"uid":"5b3500cc-102"},{"uid":"5b3500cc-103"},{"uid":"5b3500cc-104"},{"uid":"5b3500cc-105"},{"uid":"5b3500cc-110"},{"uid":"5b3500cc-81"},{"uid":"5b3500cc-14"}],"importedBy":[{"uid":"5b3500cc-65"}]},"5b3500cc-65":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect/ConditionGroup.vue","moduleParts":{"ConditionModule.js":"5b3500cc-66"},"imported":[{"uid":"5b3500cc-90"},{"uid":"5b3500cc-91"},{"uid":"5b3500cc-98"},{"uid":"5b3500cc-104"},{"uid":"5b3500cc-105"},{"uid":"5b3500cc-63"},{"uid":"5b3500cc-81"},{"uid":"5b3500cc-14"}],"importedBy":[{"uid":"5b3500cc-67"}]},"5b3500cc-67":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect/ConditionModule.vue","moduleParts":{"ConditionModule.js":"5b3500cc-68"},"imported":[{"uid":"5b3500cc-90"},{"uid":"5b3500cc-91"},{"uid":"5b3500cc-94"},{"uid":"5b3500cc-95"},{"uid":"5b3500cc-98"},{"uid":"5b3500cc-96"},{"uid":"5b3500cc-65"},{"uid":"5b3500cc-8"},{"uid":"5b3500cc-81"},{"uid":"5b3500cc-14"}],"importedBy":[{"uid":"5b3500cc-0"}]},"5b3500cc-69":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/formStyle.vue?vue&type=style&index=0&lang.scss","moduleParts":{"formStyle.js":"5b3500cc-70"},"imported":[],"importedBy":[{"uid":"5b3500cc-71"}]},"5b3500cc-71":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/formStyle.vue","moduleParts":{"formStyle.js":"5b3500cc-72"},"imported":[{"uid":"5b3500cc-90"},{"uid":"5b3500cc-91"},{"uid":"5b3500cc-95"},{"uid":"5b3500cc-98"},{"uid":"5b3500cc-106"},{"uid":"5b3500cc-81"},{"uid":"5b3500cc-107"},{"uid":"5b3500cc-108"},{"uid":"5b3500cc-69"},{"uid":"5b3500cc-14"}],"importedBy":[{"uid":"5b3500cc-0"}]},"5b3500cc-73":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/jsonCode.vue?vue&type=style&index=0&lang.scss","moduleParts":{"jsonCode.js":"5b3500cc-74"},"imported":[],"importedBy":[{"uid":"5b3500cc-75"}]},"5b3500cc-75":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/jsonCode.vue","moduleParts":{"jsonCode.js":"5b3500cc-76"},"imported":[{"uid":"5b3500cc-81"},{"uid":"5b3500cc-119"},{"uid":"5b3500cc-108"},{"uid":"5b3500cc-73"},{"uid":"5b3500cc-14"}],"importedBy":[{"uid":"5b3500cc-16"},{"uid":"5b3500cc-40"}]},"5b3500cc-77":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/components/jsonEditor.vue","moduleParts":{"jsonEditor.js":"5b3500cc-78"},"imported":[{"uid":"5b3500cc-81"},{"uid":"5b3500cc-120"},{"uid":"5b3500cc-14"}],"importedBy":[{"uid":"5b3500cc-28"}]},"5b3500cc-79":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/components/globalFormList.vue","moduleParts":{"globalFormList.js":"5b3500cc-80"},"imported":[{"uid":"5b3500cc-81"},{"uid":"5b3500cc-14"}],"importedBy":[{"uid":"5b3500cc-28"}]},"5b3500cc-81":{"id":"vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-0"},{"uid":"5b3500cc-54"},{"uid":"5b3500cc-26"},{"uid":"5b3500cc-59"},{"uid":"5b3500cc-61"},{"uid":"5b3500cc-67"},{"uid":"5b3500cc-34"},{"uid":"5b3500cc-71"},{"uid":"5b3500cc-8"},{"uid":"5b3500cc-16"},{"uid":"5b3500cc-28"},{"uid":"5b3500cc-36"},{"uid":"5b3500cc-38"},{"uid":"5b3500cc-40"},{"uid":"5b3500cc-42"},{"uid":"5b3500cc-46"},{"uid":"5b3500cc-12"},{"uid":"5b3500cc-6"},{"uid":"5b3500cc-48"},{"uid":"5b3500cc-30"},{"uid":"5b3500cc-65"},{"uid":"5b3500cc-75"},{"uid":"5b3500cc-20"},{"uid":"5b3500cc-77"},{"uid":"5b3500cc-79"},{"uid":"5b3500cc-44"},{"uid":"5b3500cc-63"},{"uid":"5b3500cc-18"}],"isExternal":true},"5b3500cc-82":{"id":"element-plus/dist/index.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-0"}],"isExternal":true},"5b3500cc-83":{"id":"jsoneditor/dist/jsoneditor.min.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-0"}],"isExternal":true},"5b3500cc-84":{"id":"starfish-form-custom","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-0"},{"uid":"5b3500cc-16"}],"isExternal":true},"5b3500cc-85":{"id":"starfish-form-custom/dist/style.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-0"}],"isExternal":true},"5b3500cc-86":{"id":"vuedraggable","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-0"}],"isExternal":true},"5b3500cc-87":{"id":"mitt","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-4"}],"isExternal":true},"5b3500cc-88":{"id":"element-plus","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-10"}],"isExternal":true},"5b3500cc-89":{"id":"nanoid","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-10"}],"isExternal":true},"5b3500cc-90":{"id":"element-plus/es","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-26"},{"uid":"5b3500cc-59"},{"uid":"5b3500cc-61"},{"uid":"5b3500cc-67"},{"uid":"5b3500cc-71"},{"uid":"5b3500cc-16"},{"uid":"5b3500cc-28"},{"uid":"5b3500cc-38"},{"uid":"5b3500cc-40"},{"uid":"5b3500cc-65"},{"uid":"5b3500cc-63"}],"isExternal":true},"5b3500cc-91":{"id":"element-plus/es/components/base/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-26"},{"uid":"5b3500cc-59"},{"uid":"5b3500cc-61"},{"uid":"5b3500cc-67"},{"uid":"5b3500cc-71"},{"uid":"5b3500cc-16"},{"uid":"5b3500cc-28"},{"uid":"5b3500cc-38"},{"uid":"5b3500cc-40"},{"uid":"5b3500cc-65"},{"uid":"5b3500cc-63"}],"isExternal":true},"5b3500cc-92":{"id":"element-plus/es/components/loading/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-26"}],"isExternal":true},"5b3500cc-93":{"id":"element-plus/es/components/dialog/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-59"}],"isExternal":true},"5b3500cc-94":{"id":"element-plus/es/components/container/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-61"},{"uid":"5b3500cc-67"},{"uid":"5b3500cc-63"}],"isExternal":true},"5b3500cc-95":{"id":"element-plus/es/components/footer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-61"},{"uid":"5b3500cc-67"},{"uid":"5b3500cc-71"},{"uid":"5b3500cc-16"},{"uid":"5b3500cc-40"},{"uid":"5b3500cc-63"}],"isExternal":true},"5b3500cc-96":{"id":"element-plus/es/components/main/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-61"},{"uid":"5b3500cc-67"},{"uid":"5b3500cc-63"}],"isExternal":true},"5b3500cc-97":{"id":"element-plus/es/components/table/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-61"},{"uid":"5b3500cc-63"}],"isExternal":true},"5b3500cc-98":{"id":"element-plus/es/components/button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-61"},{"uid":"5b3500cc-67"},{"uid":"5b3500cc-71"},{"uid":"5b3500cc-16"},{"uid":"5b3500cc-38"},{"uid":"5b3500cc-40"},{"uid":"5b3500cc-65"},{"uid":"5b3500cc-63"}],"isExternal":true},"5b3500cc-99":{"id":"element-plus/es/components/switch/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-61"},{"uid":"5b3500cc-63"}],"isExternal":true},"5b3500cc-100":{"id":"element-plus/es/components/form/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-61"},{"uid":"5b3500cc-28"},{"uid":"5b3500cc-63"}],"isExternal":true},"5b3500cc-101":{"id":"element-plus/es/components/form-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-61"},{"uid":"5b3500cc-28"},{"uid":"5b3500cc-63"}],"isExternal":true},"5b3500cc-102":{"id":"element-plus/es/components/input/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-61"},{"uid":"5b3500cc-38"},{"uid":"5b3500cc-40"},{"uid":"5b3500cc-63"}],"isExternal":true},"5b3500cc-103":{"id":"element-plus/es/components/table-column/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-61"},{"uid":"5b3500cc-63"}],"isExternal":true},"5b3500cc-104":{"id":"element-plus/es/components/select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-61"},{"uid":"5b3500cc-65"},{"uid":"5b3500cc-63"}],"isExternal":true},"5b3500cc-105":{"id":"element-plus/es/components/option/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-61"},{"uid":"5b3500cc-65"},{"uid":"5b3500cc-63"}],"isExternal":true},"5b3500cc-106":{"id":"element-plus/es/components/tooltip/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-71"},{"uid":"5b3500cc-40"}],"isExternal":true},"5b3500cc-107":{"id":"@codemirror/lang-css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-71"}],"isExternal":true},"5b3500cc-108":{"id":"vue-codemirror","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-71"},{"uid":"5b3500cc-75"}],"isExternal":true},"5b3500cc-109":{"id":"clipboard","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-16"}],"isExternal":true},"5b3500cc-110":{"id":"element-plus/es/components/message/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-16"},{"uid":"5b3500cc-40"},{"uid":"5b3500cc-63"}],"isExternal":true},"5b3500cc-111":{"id":"element-plus/es/components/tabs/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-28"}],"isExternal":true},"5b3500cc-112":{"id":"element-plus/es/components/tab-pane/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-28"}],"isExternal":true},"5b3500cc-113":{"id":"element-plus/es/components/empty/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-28"}],"isExternal":true},"5b3500cc-114":{"id":"element-plus/es/components/notification/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-28"}],"isExternal":true},"5b3500cc-115":{"id":"element-plus/es/components/upload/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-40"}],"isExternal":true},"5b3500cc-116":{"id":"element-plus/es/components/drawer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-40"}],"isExternal":true},"5b3500cc-117":{"id":"element-plus/es/components/tree/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-40"}],"isExternal":true},"5b3500cc-118":{"id":"keycon","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-50"}],"isExternal":true},"5b3500cc-119":{"id":"@codemirror/lang-json","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-75"}],"isExternal":true},"5b3500cc-120":{"id":"jsoneditor","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-77"}],"isExternal":true},"5b3500cc-121":{"id":"gesto","moduleParts":{},"imported":[],"importedBy":[{"uid":"5b3500cc-44"}],"isExternal":true}},"env":{"rollup":"2.77.3"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
|
|
4933
4933
|
|
|
4934
4934
|
const run = () => {
|
|
4935
4935
|
const width = window.innerWidth;
|