starfish-editor-custom 1.0.20 → 1.0.22
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 +92 -60
- package/package.json +2 -2
- package/src/utils/_.ts +92 -44
- package/stats.html +1 -1
package/dist/main.js
CHANGED
|
@@ -380,79 +380,111 @@ class Flex {
|
|
|
380
380
|
return str.match(reg)[1];
|
|
381
381
|
}
|
|
382
382
|
jsonToForm(item) {
|
|
383
|
-
var _a
|
|
384
|
-
|
|
385
|
-
item
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
if (!item.data) {
|
|
389
|
-
item.data = item.formConfig.data();
|
|
390
|
-
}
|
|
391
|
-
if (!item.data.fieldName) {
|
|
392
|
-
item.data.fieldName = item.ControlType + "_" + this.generateMixed();
|
|
383
|
+
var _a;
|
|
384
|
+
try {
|
|
385
|
+
if (!item || !item.ControlType) {
|
|
386
|
+
console.error("jsonToForm: \u65E0\u6548\u7684 item \u53C2\u6570", item);
|
|
387
|
+
return item;
|
|
393
388
|
}
|
|
394
|
-
if (item.
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
389
|
+
if (!item.data || !item.controlItems) {
|
|
390
|
+
item = this.deepClone(item);
|
|
391
|
+
const currentComponent = window.VApp.$formcomponents[item.ControlType];
|
|
392
|
+
if (!currentComponent) {
|
|
393
|
+
console.warn(`jsonToForm: \u672A\u627E\u5230\u7EC4\u4EF6 ${item.ControlType}\uFF0C\u4F7F\u7528\u9ED8\u8BA4\u914D\u7F6E`);
|
|
394
|
+
item.formConfig = {
|
|
395
|
+
data: () => ({}),
|
|
396
|
+
morenConfig: () => []
|
|
397
|
+
};
|
|
398
|
+
} else {
|
|
399
|
+
item.formConfig = currentComponent.formConfig || {};
|
|
400
|
+
}
|
|
401
|
+
if (!item.data) {
|
|
402
|
+
if (item.formConfig.data && typeof item.formConfig.data === "function") {
|
|
403
|
+
item.data = item.formConfig.data();
|
|
404
|
+
} else {
|
|
405
|
+
console.warn(`jsonToForm: ${item.ControlType} \u7F3A\u5C11 data \u65B9\u6CD5\uFF0C\u4F7F\u7528\u7A7A\u5BF9\u8C61`);
|
|
406
|
+
item.data = {};
|
|
407
|
+
}
|
|
408
|
+
}
|
|
409
|
+
if (!item.data.fieldName) {
|
|
410
|
+
item.data.fieldName = item.ControlType + "_" + this.generateMixed();
|
|
411
|
+
}
|
|
412
|
+
if (item.layout) {
|
|
413
|
+
if (item.ControlType == "Grid" && item.data.columns && Array.isArray(item.data.columns)) {
|
|
414
|
+
item.data.columns = item.data.columns.map((colItem) => {
|
|
415
|
+
if (colItem.list && Array.isArray(colItem.list)) {
|
|
416
|
+
colItem.list = colItem.list.map((listItem) => this.jsonToForm(listItem));
|
|
407
417
|
}
|
|
408
|
-
return
|
|
418
|
+
return colItem;
|
|
409
419
|
});
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
420
|
+
} else if (item.ControlType == "TableLayout" && item.data.trs && Array.isArray(item.data.trs)) {
|
|
421
|
+
item.data.trs = item.data.trs.map((trItem) => {
|
|
422
|
+
if (trItem.tds && Array.isArray(trItem.tds)) {
|
|
423
|
+
trItem.tds = trItem.tds.map((tdItem) => {
|
|
424
|
+
if (tdItem.list && Array.isArray(tdItem.list)) {
|
|
425
|
+
tdItem.list = tdItem.list.map((listItem) => this.jsonToForm(listItem));
|
|
426
|
+
}
|
|
427
|
+
return tdItem;
|
|
428
|
+
});
|
|
429
|
+
}
|
|
430
|
+
return trItem;
|
|
431
|
+
});
|
|
432
|
+
} else if ((item.ControlType == "Collapse" || item.ControlType == "Tabs") && item.data.items && Array.isArray(item.data.items)) {
|
|
433
|
+
item.data.items = item.data.items.map((colItem) => {
|
|
434
|
+
if (colItem.list && Array.isArray(colItem.list)) {
|
|
435
|
+
colItem.list = colItem.list.map((listItem) => this.jsonToForm(listItem));
|
|
436
|
+
}
|
|
437
|
+
return colItem;
|
|
438
|
+
});
|
|
439
|
+
}
|
|
419
440
|
}
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
441
|
+
const dynamicList = ((_a = formStore == null ? void 0 : formStore.get("globalFormList")) == null ? void 0 : _a.filter((globalItem) => {
|
|
442
|
+
return globalItem && globalItem.dynamic;
|
|
443
|
+
})) || [];
|
|
444
|
+
item.id = item.id || this.generateMixed();
|
|
445
|
+
let controlItems = [];
|
|
446
|
+
if (item.formConfig.morenConfig && typeof item.formConfig.morenConfig === "function") {
|
|
447
|
+
controlItems = item.formConfig.morenConfig().concat(dynamicList);
|
|
448
|
+
} else {
|
|
449
|
+
console.warn(`jsonToForm: ${item.ControlType} \u7F3A\u5C11 morenConfig \u65B9\u6CD5\uFF0C\u4F7F\u7528\u7A7A\u6570\u7EC4`);
|
|
450
|
+
controlItems = dynamicList;
|
|
424
451
|
}
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
controlItems.find((item2) => {
|
|
431
|
-
if (item2.ControlType == "Action") {
|
|
432
|
-
item2.data.formConfig = {
|
|
452
|
+
if (currentComponent && currentComponent.actionType && Array.isArray(currentComponent.actionType) && currentComponent.actionType.length > 0) {
|
|
453
|
+
const actionControl = controlItems.find((controlItem) => controlItem && controlItem.ControlType == "Action");
|
|
454
|
+
if (actionControl) {
|
|
455
|
+
actionControl.data = actionControl.data || {};
|
|
456
|
+
actionControl.data.formConfig = {
|
|
433
457
|
value: {},
|
|
434
458
|
items: []
|
|
435
459
|
};
|
|
436
460
|
currentComponent.actionType.forEach((action2, index2) => {
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
461
|
+
if (actionControl.data.formConfig) {
|
|
462
|
+
actionControl.data.formConfig.items.push({
|
|
463
|
+
label: action2,
|
|
464
|
+
value: action2,
|
|
465
|
+
id: index2 + 1
|
|
466
|
+
});
|
|
467
|
+
}
|
|
442
468
|
});
|
|
443
469
|
}
|
|
444
|
-
}
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
470
|
+
} else {
|
|
471
|
+
controlItems = controlItems.filter((controlItem) => {
|
|
472
|
+
return controlItem && controlItem.ControlType !== "Action";
|
|
473
|
+
});
|
|
474
|
+
}
|
|
475
|
+
if (this.controlFormRule && typeof this.controlFormRule === "function") {
|
|
476
|
+
item.rules = this.controlFormRule(controlItems, item);
|
|
477
|
+
} else {
|
|
478
|
+
console.warn("jsonToForm: controlFormRule \u65B9\u6CD5\u4E0D\u5B58\u5728\uFF0C\u4F7F\u7528\u7A7A\u6570\u7EC4");
|
|
479
|
+
item.rules = [];
|
|
480
|
+
}
|
|
481
|
+
item.controlItems = controlItems;
|
|
451
482
|
}
|
|
452
|
-
item
|
|
453
|
-
|
|
483
|
+
return item;
|
|
484
|
+
} catch (error) {
|
|
485
|
+
console.error("jsonToForm: \u5904\u7406\u7EC4\u4EF6\u65F6\u53D1\u751F\u9519\u8BEF", error, item);
|
|
486
|
+
return item;
|
|
454
487
|
}
|
|
455
|
-
return item;
|
|
456
488
|
}
|
|
457
489
|
initFormToJson(formlist) {
|
|
458
490
|
const jsonData = [];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "starfish-editor-custom",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.22",
|
|
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.21",
|
|
37
37
|
"vue": "^3.2.37",
|
|
38
38
|
"vue-codemirror": "6.1.1",
|
|
39
39
|
"vuedraggable": "^4.1.0",
|
package/src/utils/_.ts
CHANGED
|
@@ -135,90 +135,138 @@ class Flex {
|
|
|
135
135
|
/**
|
|
136
136
|
* json转标准数据格式进行收口
|
|
137
137
|
*/
|
|
138
|
-
|
|
138
|
+
public jsonToForm(item: AllFormItem) {
|
|
139
|
+
try {
|
|
140
|
+
// 基础参数校验
|
|
141
|
+
if (!item || !item.ControlType) {
|
|
142
|
+
console.error('jsonToForm: 无效的 item 参数', item);
|
|
143
|
+
return item;
|
|
144
|
+
}
|
|
145
|
+
|
|
139
146
|
if (!item.data || !item.controlItems) {
|
|
140
147
|
item = this.deepClone(item);
|
|
141
148
|
const currentComponent = window.VApp.$formcomponents[item.ControlType as any];
|
|
142
|
-
|
|
149
|
+
|
|
150
|
+
// 容错处理:确保 formConfig 存在
|
|
151
|
+
if (!currentComponent) {
|
|
152
|
+
console.warn(`jsonToForm: 未找到组件 ${item.ControlType},使用默认配置`);
|
|
153
|
+
item.formConfig = {
|
|
154
|
+
data: () => ({}),
|
|
155
|
+
morenConfig: () => []
|
|
156
|
+
};
|
|
157
|
+
} else {
|
|
158
|
+
item.formConfig = currentComponent.formConfig || {};
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
// 容错处理:确保 data 方法存在
|
|
143
162
|
if (!item.data) {
|
|
144
|
-
item.data
|
|
163
|
+
if (item.formConfig.data && typeof item.formConfig.data === 'function') {
|
|
164
|
+
item.data = item.formConfig.data();
|
|
165
|
+
} else {
|
|
166
|
+
console.warn(`jsonToForm: ${item.ControlType} 缺少 data 方法,使用空对象`);
|
|
167
|
+
item.data = {};
|
|
168
|
+
}
|
|
145
169
|
}
|
|
146
170
|
|
|
171
|
+
// 容错处理:确保 fieldName 存在
|
|
147
172
|
if (!item.data.fieldName) {
|
|
148
173
|
item.data.fieldName = item.ControlType + "_" + this.generateMixed();
|
|
149
174
|
}
|
|
175
|
+
|
|
176
|
+
// 布局组件递归处理(保持原有逻辑,添加容错)
|
|
150
177
|
if (item.layout) {
|
|
151
|
-
if (item.ControlType == "Grid" && item.data.columns && item.data.columns
|
|
178
|
+
if (item.ControlType == "Grid" && item.data.columns && Array.isArray(item.data.columns)) {
|
|
152
179
|
item.data.columns = item.data.columns.map((colItem: any) => {
|
|
153
|
-
if (colItem.list && colItem.list
|
|
154
|
-
colItem.list = this.jsonToForm(
|
|
180
|
+
if (colItem.list && Array.isArray(colItem.list)) {
|
|
181
|
+
colItem.list = colItem.list.map((listItem: any) => this.jsonToForm(listItem));
|
|
155
182
|
}
|
|
156
183
|
return colItem;
|
|
157
184
|
});
|
|
158
|
-
} else if (item.ControlType == "TableLayout" && item.data.trs && item.data.trs
|
|
159
|
-
/**
|
|
160
|
-
* 需要自测一下
|
|
161
|
-
*/
|
|
185
|
+
} else if (item.ControlType == "TableLayout" && item.data.trs && Array.isArray(item.data.trs)) {
|
|
162
186
|
item.data.trs = item.data.trs.map((trItem: any) => {
|
|
163
|
-
trItem.tds.
|
|
164
|
-
|
|
165
|
-
tdItem.list
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
187
|
+
if (trItem.tds && Array.isArray(trItem.tds)) {
|
|
188
|
+
trItem.tds = trItem.tds.map((tdItem: any) => {
|
|
189
|
+
if (tdItem.list && Array.isArray(tdItem.list)) {
|
|
190
|
+
tdItem.list = tdItem.list.map((listItem: any) => this.jsonToForm(listItem));
|
|
191
|
+
}
|
|
192
|
+
return tdItem;
|
|
193
|
+
});
|
|
194
|
+
}
|
|
169
195
|
return trItem;
|
|
170
196
|
});
|
|
171
|
-
} else if ((item.ControlType == "Collapse" || item.ControlType == "Tabs") && item.data.items && item.data.items
|
|
197
|
+
} else if ((item.ControlType == "Collapse" || item.ControlType == "Tabs") && item.data.items && Array.isArray(item.data.items)) {
|
|
172
198
|
item.data.items = item.data.items.map((colItem: any) => {
|
|
173
|
-
if (colItem.list && colItem.list
|
|
174
|
-
colItem.list = this.jsonToForm(
|
|
199
|
+
if (colItem.list && Array.isArray(colItem.list)) {
|
|
200
|
+
colItem.list = colItem.list.map((listItem: any) => this.jsonToForm(listItem));
|
|
175
201
|
}
|
|
176
202
|
return colItem;
|
|
177
203
|
});
|
|
178
204
|
}
|
|
179
205
|
}
|
|
206
|
+
|
|
180
207
|
/**
|
|
181
208
|
* 全局动态配置
|
|
182
209
|
*/
|
|
183
|
-
const dynamicList = formStore?.get("globalFormList")?.filter((
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
210
|
+
const dynamicList = formStore?.get("globalFormList")?.filter((globalItem: any) => {
|
|
211
|
+
return globalItem && globalItem.dynamic;
|
|
212
|
+
}) || [];
|
|
213
|
+
|
|
214
|
+
item.id = item.id || this.generateMixed();
|
|
215
|
+
|
|
216
|
+
// 容错处理:确保 morenConfig 方法存在
|
|
217
|
+
let controlItems: any[] = [];
|
|
218
|
+
if (item.formConfig.morenConfig && typeof item.formConfig.morenConfig === 'function') {
|
|
219
|
+
controlItems = item.formConfig.morenConfig().concat(dynamicList);
|
|
220
|
+
} else {
|
|
221
|
+
console.warn(`jsonToForm: ${item.ControlType} 缺少 morenConfig 方法,使用空数组`);
|
|
222
|
+
controlItems = dynamicList;
|
|
223
|
+
}
|
|
224
|
+
|
|
190
225
|
/**
|
|
191
226
|
* 兼容动作面板,不同表单可能需要的事件不一样
|
|
192
227
|
*/
|
|
193
|
-
if (currentComponent.actionType && currentComponent.actionType.length > 0) {
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
228
|
+
if (currentComponent && currentComponent.actionType && Array.isArray(currentComponent.actionType) && currentComponent.actionType.length > 0) {
|
|
229
|
+
const actionControl = controlItems.find((controlItem: any) => controlItem && controlItem.ControlType == "Action");
|
|
230
|
+
if (actionControl) {
|
|
231
|
+
actionControl.data = actionControl.data || {};
|
|
232
|
+
actionControl.data.formConfig = {
|
|
233
|
+
value: {},
|
|
234
|
+
items: [],
|
|
235
|
+
};
|
|
236
|
+
currentComponent.actionType.forEach((action: string, index: number) => {
|
|
237
|
+
if (actionControl.data.formConfig) {
|
|
238
|
+
actionControl.data.formConfig.items.push({
|
|
203
239
|
label: action,
|
|
204
240
|
value: action,
|
|
205
241
|
id: index + 1,
|
|
206
242
|
});
|
|
207
|
-
}
|
|
208
|
-
}
|
|
209
|
-
}
|
|
243
|
+
}
|
|
244
|
+
});
|
|
245
|
+
}
|
|
210
246
|
} else {
|
|
211
|
-
controlItems = controlItems.filter((
|
|
212
|
-
|
|
213
|
-
return item;
|
|
214
|
-
}
|
|
247
|
+
controlItems = controlItems.filter((controlItem: any) => {
|
|
248
|
+
return controlItem && controlItem.ControlType !== "Action";
|
|
215
249
|
});
|
|
216
250
|
}
|
|
217
|
-
|
|
251
|
+
|
|
252
|
+
// 容错处理:确保 controlFormRule 方法存在
|
|
253
|
+
if (this.controlFormRule && typeof this.controlFormRule === 'function') {
|
|
254
|
+
item.rules = this.controlFormRule(controlItems, item);
|
|
255
|
+
} else {
|
|
256
|
+
console.warn('jsonToForm: controlFormRule 方法不存在,使用空数组');
|
|
257
|
+
item.rules = [];
|
|
258
|
+
}
|
|
259
|
+
|
|
218
260
|
item.controlItems = controlItems;
|
|
219
261
|
}
|
|
262
|
+
|
|
263
|
+
return item;
|
|
264
|
+
} catch (error) {
|
|
265
|
+
console.error('jsonToForm: 处理组件时发生错误', error, item);
|
|
266
|
+
// 返回原始 item,避免整个流程中断
|
|
220
267
|
return item;
|
|
221
268
|
}
|
|
269
|
+
}
|
|
222
270
|
|
|
223
271
|
/**
|
|
224
272
|
* 完整的表单列表数据进行删减,方便展示
|
package/stats.html
CHANGED
|
@@ -6157,7 +6157,7 @@ var drawChart = (function (exports) {
|
|
|
6157
6157
|
</script>
|
|
6158
6158
|
<script>
|
|
6159
6159
|
/*<!--*/
|
|
6160
|
-
const data = {"version":2,"tree":{"name":"root","children":[{"name":"starfish-editor.es.js","uid":"93a5-1"},{"name":"main.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src","children":[{"name":"styles/index.scss","uid":"93a5-3"},{"name":"utils","children":[{"uid":"93a5-5","name":"vm.ts"},{"uid":"93a5-11","name":"_.ts"},{"uid":"93a5-33","name":"formKeycon.ts"},{"uid":"93a5-51","name":"shortcutKey.ts"}]},{"name":"controller","children":[{"uid":"93a5-7","name":"history.ts"},{"uid":"93a5-9","name":"form.ts"},{"uid":"93a5-13","name":"ui.ts"},{"uid":"93a5-31","name":"shortcut.ts"},{"uid":"93a5-49","name":"action.ts"}]},{"name":"components","children":[{"uid":"93a5-17","name":"FormPreview.vue"},{"uid":"93a5-29","name":"PropsPanel.vue"},{"uid":"93a5-35","name":"Shape.vue"},{"uid":"93a5-37","name":"Workspace.vue"},{"uid":"93a5-39","name":"ComponentList.vue"},{"uid":"93a5-41","name":"NavList.vue"},{"uid":"93a5-43","name":"Nav.vue"}]},{"name":"layouts","children":[{"uid":"93a5-19","name":"ShortcutKey.vue"},{"uid":"93a5-21","name":"ControlEditSize.vue"},{"uid":"93a5-45","name":"Resizer.vue"},{"uid":"93a5-47","name":"Framework.vue"}]},{"name":"common","children":[{"uid":"93a5-23","name":"formJson.ts"},{"uid":"93a5-25","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"93a5-27","name":"Loading.vue"}]},{"uid":"93a5-53","name":"starfish-editor.vue?vue&type=style&index=0&lang.css"},{"uid":"93a5-55","name":"starfish-editor.vue"},{"uid":"93a5-56","name":"main.ts"}]},{"uid":"93a5-15","name":"plugin-vue:export-helper"}]},{"name":"CustomDialog.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common","children":[{"uid":"93a5-58","name":"CustomDialog.vue?vue&type=style&index=0&scoped=true&lang.css"},{"uid":"93a5-60","name":"CustomDialog.vue"}]}]},{"name":"ConditionSelect.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect.vue","uid":"93a5-62"}]},{"name":"ConditionModule.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect","children":[{"uid":"93a5-64","name":"ConditionTanc.vue"},{"uid":"93a5-66","name":"ConditionGroup.vue"},{"uid":"93a5-68","name":"ConditionModule.vue"}]}]},{"name":"formStyle.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common","children":[{"uid":"93a5-70","name":"formStyle.vue?vue&type=style&index=0&lang.scss"},{"uid":"93a5-72","name":"formStyle.vue"}]}]},{"name":"jsonCode.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common","children":[{"uid":"93a5-74","name":"jsonCode.vue?vue&type=style&index=0&lang.scss"},{"uid":"93a5-76","name":"jsonCode.vue"}]}]},{"name":"jsonEditor.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/jsonEditor.vue","uid":"93a5-78"}]},{"name":"globalFormList.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/globalFormList.vue","uid":"93a5-80"}]}],"isRoot":true},"nodeParts":{"93a5-1":{"id":"starfish-editor.es.js","gzipLength":0,"brotliLength":0,"renderedLength":1218,"metaUid":"93a5-0"},"93a5-3":{"renderedLength":67033,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-2"},"93a5-5":{"renderedLength":16,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-4"},"93a5-7":{"renderedLength":1613,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-6"},"93a5-9":{"renderedLength":5583,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-8"},"93a5-11":{"renderedLength":9431,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-10"},"93a5-13":{"renderedLength":2025,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-12"},"93a5-15":{"renderedLength":157,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-14"},"93a5-17":{"renderedLength":7683,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-16"},"93a5-19":{"renderedLength":1858,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-18"},"93a5-21":{"renderedLength":2836,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-20"},"93a5-23":{"renderedLength":1187,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-22"},"93a5-25":{"renderedLength":192,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-24"},"93a5-27":{"renderedLength":400,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-26"},"93a5-29":{"renderedLength":16553,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-28"},"93a5-31":{"renderedLength":1832,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-30"},"93a5-33":{"renderedLength":457,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-32"},"93a5-35":{"renderedLength":6369,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-34"},"93a5-37":{"renderedLength":9051,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-36"},"93a5-39":{"renderedLength":5871,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-38"},"93a5-41":{"renderedLength":19472,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-40"},"93a5-43":{"renderedLength":8406,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-42"},"93a5-45":{"renderedLength":1138,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-44"},"93a5-47":{"renderedLength":2712,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-46"},"93a5-49":{"renderedLength":466,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-48"},"93a5-51":{"renderedLength":937,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-50"},"93a5-53":{"renderedLength":260,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-52"},"93a5-55":{"renderedLength":3596,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-54"},"93a5-56":{"renderedLength":1112,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-0"},"93a5-58":{"renderedLength":272,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-57"},"93a5-60":{"renderedLength":2123,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-59"},"93a5-62":{"renderedLength":18742,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-61"},"93a5-64":{"renderedLength":17222,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-63"},"93a5-66":{"renderedLength":8014,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-65"},"93a5-68":{"renderedLength":5784,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-67"},"93a5-70":{"renderedLength":166,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-69"},"93a5-72":{"renderedLength":6954,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-71"},"93a5-74":{"renderedLength":187,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-73"},"93a5-76":{"renderedLength":1553,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-75"},"93a5-78":{"renderedLength":1338,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-77"},"93a5-80":{"renderedLength":1044,"gzipLength":0,"brotliLength":0,"metaUid":"93a5-79"}},"nodeMetas":{"93a5-0":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/main.ts","moduleParts":{"starfish-editor.es.js":"93a5-1","main.js":"93a5-56"},"imported":[{"uid":"93a5-81"},{"uid":"93a5-82"},{"uid":"93a5-2"},{"uid":"93a5-83"},{"uid":"93a5-84"},{"uid":"93a5-4"},{"uid":"93a5-10"},{"uid":"93a5-85"},{"uid":"93a5-54"},{"uid":"93a5-26"},{"uid":"93a5-59","dynamic":true},{"uid":"93a5-61","dynamic":true},{"uid":"93a5-67","dynamic":true},{"uid":"93a5-86","dynamic":true},{"uid":"93a5-34","dynamic":true},{"uid":"93a5-71","dynamic":true}],"importedBy":[],"isEntry":true},"93a5-2":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/styles/index.scss","moduleParts":{"main.js":"93a5-3"},"imported":[],"importedBy":[{"uid":"93a5-0"}]},"93a5-4":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/vm.ts","moduleParts":{"main.js":"93a5-5"},"imported":[{"uid":"93a5-87"}],"importedBy":[{"uid":"93a5-0"}]},"93a5-6":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/history.ts","moduleParts":{"main.js":"93a5-7"},"imported":[{"uid":"93a5-81"},{"uid":"93a5-8"}],"importedBy":[{"uid":"93a5-54"},{"uid":"93a5-8"},{"uid":"93a5-50"}]},"93a5-8":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/form.ts","moduleParts":{"main.js":"93a5-9"},"imported":[{"uid":"93a5-81"},{"uid":"93a5-6"}],"importedBy":[{"uid":"93a5-10"},{"uid":"93a5-54"},{"uid":"93a5-61"},{"uid":"93a5-67"},{"uid":"93a5-16"},{"uid":"93a5-38"},{"uid":"93a5-6"},{"uid":"93a5-30"}]},"93a5-10":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/_.ts","moduleParts":{"main.js":"93a5-11"},"imported":[{"uid":"93a5-88"},{"uid":"93a5-89"},{"uid":"93a5-8"}],"importedBy":[{"uid":"93a5-0"}]},"93a5-12":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/ui.ts","moduleParts":{"main.js":"93a5-13"},"imported":[{"uid":"93a5-81"}],"importedBy":[{"uid":"93a5-54"},{"uid":"93a5-16"}]},"93a5-14":{"id":"plugin-vue:export-helper","moduleParts":{"main.js":"93a5-15"},"imported":[],"importedBy":[{"uid":"93a5-54"},{"uid":"93a5-26"},{"uid":"93a5-59"},{"uid":"93a5-61"},{"uid":"93a5-67"},{"uid":"93a5-34"},{"uid":"93a5-71"},{"uid":"93a5-16"},{"uid":"93a5-28"},{"uid":"93a5-36"},{"uid":"93a5-38"},{"uid":"93a5-40"},{"uid":"93a5-42"},{"uid":"93a5-46"},{"uid":"93a5-65"},{"uid":"93a5-75"},{"uid":"93a5-20"},{"uid":"93a5-77"},{"uid":"93a5-79"},{"uid":"93a5-44"},{"uid":"93a5-63"},{"uid":"93a5-18"}]},"93a5-16":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/FormPreview.vue","moduleParts":{"main.js":"93a5-17"},"imported":[{"uid":"93a5-90"},{"uid":"93a5-91"},{"uid":"93a5-95"},{"uid":"93a5-98"},{"uid":"93a5-81"},{"uid":"93a5-8"},{"uid":"93a5-84"},{"uid":"93a5-12"},{"uid":"93a5-109"},{"uid":"93a5-14"},{"uid":"93a5-110"},{"uid":"93a5-75","dynamic":true}],"importedBy":[{"uid":"93a5-54"}]},"93a5-18":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/layouts/ShortcutKey.vue","moduleParts":{"main.js":"93a5-19"},"imported":[{"uid":"93a5-81"},{"uid":"93a5-14"}],"importedBy":[{"uid":"93a5-20"}]},"93a5-20":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/layouts/ControlEditSize.vue","moduleParts":{"main.js":"93a5-21"},"imported":[{"uid":"93a5-81"},{"uid":"93a5-18"},{"uid":"93a5-14"}],"importedBy":[{"uid":"93a5-28"}]},"93a5-22":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/formJson.ts","moduleParts":{"main.js":"93a5-23"},"imported":[],"importedBy":[{"uid":"93a5-28"}]},"93a5-24":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue?vue&type=style&index=0&scoped=true&lang.scss","moduleParts":{"main.js":"93a5-25"},"imported":[],"importedBy":[{"uid":"93a5-26"}]},"93a5-26":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue","moduleParts":{"main.js":"93a5-27"},"imported":[{"uid":"93a5-90"},{"uid":"93a5-91"},{"uid":"93a5-92"},{"uid":"93a5-81"},{"uid":"93a5-24"},{"uid":"93a5-14"}],"importedBy":[{"uid":"93a5-0"},{"uid":"93a5-28"}]},"93a5-28":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/PropsPanel.vue","moduleParts":{"main.js":"93a5-29"},"imported":[{"uid":"93a5-90"},{"uid":"93a5-91"},{"uid":"93a5-111"},{"uid":"93a5-112"},{"uid":"93a5-113"},{"uid":"93a5-100"},{"uid":"93a5-101"},{"uid":"93a5-81"},{"uid":"93a5-20"},{"uid":"93a5-22"},{"uid":"93a5-26"},{"uid":"93a5-14"},{"uid":"93a5-114"},{"uid":"93a5-77","dynamic":true},{"uid":"93a5-79","dynamic":true}],"importedBy":[{"uid":"93a5-54"}]},"93a5-30":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/shortcut.ts","moduleParts":{"main.js":"93a5-31"},"imported":[{"uid":"93a5-81"},{"uid":"93a5-8"}],"importedBy":[{"uid":"93a5-54"},{"uid":"93a5-32"}]},"93a5-32":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/formKeycon.ts","moduleParts":{"main.js":"93a5-33"},"imported":[{"uid":"93a5-30"}],"importedBy":[{"uid":"93a5-54"},{"uid":"93a5-34"},{"uid":"93a5-36"},{"uid":"93a5-40"}]},"93a5-34":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/Shape.vue","moduleParts":{"main.js":"93a5-35"},"imported":[{"uid":"93a5-81"},{"uid":"93a5-32"},{"uid":"93a5-14"}],"importedBy":[{"uid":"93a5-0"},{"uid":"93a5-36"}]},"93a5-36":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/Workspace.vue","moduleParts":{"main.js":"93a5-37"},"imported":[{"uid":"93a5-34"},{"uid":"93a5-81"},{"uid":"93a5-32"},{"uid":"93a5-14"}],"importedBy":[{"uid":"93a5-54"}]},"93a5-38":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/ComponentList.vue","moduleParts":{"main.js":"93a5-39"},"imported":[{"uid":"93a5-90"},{"uid":"93a5-91"},{"uid":"93a5-98"},{"uid":"93a5-102"},{"uid":"93a5-81"},{"uid":"93a5-8"},{"uid":"93a5-14"}],"importedBy":[{"uid":"93a5-54"}]},"93a5-40":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/NavList.vue","moduleParts":{"main.js":"93a5-41"},"imported":[{"uid":"93a5-90"},{"uid":"93a5-91"},{"uid":"93a5-95"},{"uid":"93a5-115"},{"uid":"93a5-98"},{"uid":"93a5-116"},{"uid":"93a5-117"},{"uid":"93a5-102"},{"uid":"93a5-106"},{"uid":"93a5-81"},{"uid":"93a5-32"},{"uid":"93a5-110"},{"uid":"93a5-14"},{"uid":"93a5-75","dynamic":true}],"importedBy":[{"uid":"93a5-54"}]},"93a5-42":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/Nav.vue","moduleParts":{"main.js":"93a5-43"},"imported":[{"uid":"93a5-81"},{"uid":"93a5-14"}],"importedBy":[{"uid":"93a5-54"}]},"93a5-44":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/layouts/Resizer.vue","moduleParts":{"main.js":"93a5-45"},"imported":[{"uid":"93a5-81"},{"uid":"93a5-121"},{"uid":"93a5-14"}],"importedBy":[{"uid":"93a5-46"}]},"93a5-46":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/layouts/Framework.vue","moduleParts":{"main.js":"93a5-47"},"imported":[{"uid":"93a5-81"},{"uid":"93a5-44"},{"uid":"93a5-14"}],"importedBy":[{"uid":"93a5-54"}]},"93a5-48":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/action.ts","moduleParts":{"main.js":"93a5-49"},"imported":[{"uid":"93a5-81"}],"importedBy":[{"uid":"93a5-54"}]},"93a5-50":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/shortcutKey.ts","moduleParts":{"main.js":"93a5-51"},"imported":[{"uid":"93a5-118"},{"uid":"93a5-6"}],"importedBy":[{"uid":"93a5-54"}]},"93a5-52":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/starfish-editor.vue?vue&type=style&index=0&lang.css","moduleParts":{"main.js":"93a5-53"},"imported":[],"importedBy":[{"uid":"93a5-54"}]},"93a5-54":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/starfish-editor.vue","moduleParts":{"main.js":"93a5-55"},"imported":[{"uid":"93a5-16"},{"uid":"93a5-28"},{"uid":"93a5-36"},{"uid":"93a5-38"},{"uid":"93a5-40"},{"uid":"93a5-42"},{"uid":"93a5-81"},{"uid":"93a5-46"},{"uid":"93a5-12"},{"uid":"93a5-6"},{"uid":"93a5-8"},{"uid":"93a5-48"},{"uid":"93a5-30"},{"uid":"93a5-50"},{"uid":"93a5-32"},{"uid":"93a5-52"},{"uid":"93a5-14"},{"uid":"93a5-16","dynamic":true}],"importedBy":[{"uid":"93a5-0"}]},"93a5-57":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/CustomDialog.vue?vue&type=style&index=0&scoped=true&lang.css","moduleParts":{"CustomDialog.js":"93a5-58"},"imported":[],"importedBy":[{"uid":"93a5-59"}]},"93a5-59":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/CustomDialog.vue","moduleParts":{"CustomDialog.js":"93a5-60"},"imported":[{"uid":"93a5-90"},{"uid":"93a5-91"},{"uid":"93a5-93"},{"uid":"93a5-81"},{"uid":"93a5-57"},{"uid":"93a5-14"}],"importedBy":[{"uid":"93a5-0"}]},"93a5-61":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect.vue","moduleParts":{"ConditionSelect.js":"93a5-62"},"imported":[{"uid":"93a5-90"},{"uid":"93a5-91"},{"uid":"93a5-94"},{"uid":"93a5-95"},{"uid":"93a5-96"},{"uid":"93a5-97"},{"uid":"93a5-98"},{"uid":"93a5-99"},{"uid":"93a5-100"},{"uid":"93a5-101"},{"uid":"93a5-102"},{"uid":"93a5-103"},{"uid":"93a5-104"},{"uid":"93a5-105"},{"uid":"93a5-81"},{"uid":"93a5-8"},{"uid":"93a5-14"}],"importedBy":[{"uid":"93a5-0"}]},"93a5-63":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect/ConditionTanc.vue","moduleParts":{"ConditionModule.js":"93a5-64"},"imported":[{"uid":"93a5-90"},{"uid":"93a5-91"},{"uid":"93a5-94"},{"uid":"93a5-95"},{"uid":"93a5-96"},{"uid":"93a5-97"},{"uid":"93a5-98"},{"uid":"93a5-99"},{"uid":"93a5-100"},{"uid":"93a5-101"},{"uid":"93a5-102"},{"uid":"93a5-103"},{"uid":"93a5-104"},{"uid":"93a5-105"},{"uid":"93a5-110"},{"uid":"93a5-81"},{"uid":"93a5-14"}],"importedBy":[{"uid":"93a5-65"}]},"93a5-65":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect/ConditionGroup.vue","moduleParts":{"ConditionModule.js":"93a5-66"},"imported":[{"uid":"93a5-90"},{"uid":"93a5-91"},{"uid":"93a5-98"},{"uid":"93a5-104"},{"uid":"93a5-105"},{"uid":"93a5-63"},{"uid":"93a5-81"},{"uid":"93a5-14"}],"importedBy":[{"uid":"93a5-67"}]},"93a5-67":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect/ConditionModule.vue","moduleParts":{"ConditionModule.js":"93a5-68"},"imported":[{"uid":"93a5-90"},{"uid":"93a5-91"},{"uid":"93a5-94"},{"uid":"93a5-95"},{"uid":"93a5-98"},{"uid":"93a5-96"},{"uid":"93a5-65"},{"uid":"93a5-8"},{"uid":"93a5-81"},{"uid":"93a5-14"}],"importedBy":[{"uid":"93a5-0"}]},"93a5-69":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/formStyle.vue?vue&type=style&index=0&lang.scss","moduleParts":{"formStyle.js":"93a5-70"},"imported":[],"importedBy":[{"uid":"93a5-71"}]},"93a5-71":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/formStyle.vue","moduleParts":{"formStyle.js":"93a5-72"},"imported":[{"uid":"93a5-90"},{"uid":"93a5-91"},{"uid":"93a5-95"},{"uid":"93a5-98"},{"uid":"93a5-106"},{"uid":"93a5-81"},{"uid":"93a5-107"},{"uid":"93a5-108"},{"uid":"93a5-69"},{"uid":"93a5-14"}],"importedBy":[{"uid":"93a5-0"}]},"93a5-73":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/jsonCode.vue?vue&type=style&index=0&lang.scss","moduleParts":{"jsonCode.js":"93a5-74"},"imported":[],"importedBy":[{"uid":"93a5-75"}]},"93a5-75":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/jsonCode.vue","moduleParts":{"jsonCode.js":"93a5-76"},"imported":[{"uid":"93a5-81"},{"uid":"93a5-119"},{"uid":"93a5-108"},{"uid":"93a5-73"},{"uid":"93a5-14"}],"importedBy":[{"uid":"93a5-16"},{"uid":"93a5-40"}]},"93a5-77":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/jsonEditor.vue","moduleParts":{"jsonEditor.js":"93a5-78"},"imported":[{"uid":"93a5-81"},{"uid":"93a5-120"},{"uid":"93a5-14"}],"importedBy":[{"uid":"93a5-28"}]},"93a5-79":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/globalFormList.vue","moduleParts":{"globalFormList.js":"93a5-80"},"imported":[{"uid":"93a5-81"},{"uid":"93a5-14"}],"importedBy":[{"uid":"93a5-28"}]},"93a5-81":{"id":"vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-0"},{"uid":"93a5-54"},{"uid":"93a5-26"},{"uid":"93a5-59"},{"uid":"93a5-61"},{"uid":"93a5-67"},{"uid":"93a5-34"},{"uid":"93a5-71"},{"uid":"93a5-8"},{"uid":"93a5-16"},{"uid":"93a5-28"},{"uid":"93a5-36"},{"uid":"93a5-38"},{"uid":"93a5-40"},{"uid":"93a5-42"},{"uid":"93a5-46"},{"uid":"93a5-12"},{"uid":"93a5-6"},{"uid":"93a5-48"},{"uid":"93a5-30"},{"uid":"93a5-65"},{"uid":"93a5-75"},{"uid":"93a5-20"},{"uid":"93a5-77"},{"uid":"93a5-79"},{"uid":"93a5-44"},{"uid":"93a5-63"},{"uid":"93a5-18"}],"isExternal":true},"93a5-82":{"id":"element-plus/dist/index.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-0"}],"isExternal":true},"93a5-83":{"id":"jsoneditor/dist/jsoneditor.min.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-0"}],"isExternal":true},"93a5-84":{"id":"starfish-form-custom","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-0"},{"uid":"93a5-16"}],"isExternal":true},"93a5-85":{"id":"starfish-form-custom/dist/style.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-0"}],"isExternal":true},"93a5-86":{"id":"vuedraggable","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-0"}],"isExternal":true},"93a5-87":{"id":"mitt","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-4"}],"isExternal":true},"93a5-88":{"id":"element-plus","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-10"}],"isExternal":true},"93a5-89":{"id":"nanoid","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-10"}],"isExternal":true},"93a5-90":{"id":"element-plus/es","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-26"},{"uid":"93a5-59"},{"uid":"93a5-61"},{"uid":"93a5-67"},{"uid":"93a5-71"},{"uid":"93a5-16"},{"uid":"93a5-28"},{"uid":"93a5-38"},{"uid":"93a5-40"},{"uid":"93a5-65"},{"uid":"93a5-63"}],"isExternal":true},"93a5-91":{"id":"element-plus/es/components/base/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-26"},{"uid":"93a5-59"},{"uid":"93a5-61"},{"uid":"93a5-67"},{"uid":"93a5-71"},{"uid":"93a5-16"},{"uid":"93a5-28"},{"uid":"93a5-38"},{"uid":"93a5-40"},{"uid":"93a5-65"},{"uid":"93a5-63"}],"isExternal":true},"93a5-92":{"id":"element-plus/es/components/loading/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-26"}],"isExternal":true},"93a5-93":{"id":"element-plus/es/components/dialog/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-59"}],"isExternal":true},"93a5-94":{"id":"element-plus/es/components/container/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-61"},{"uid":"93a5-67"},{"uid":"93a5-63"}],"isExternal":true},"93a5-95":{"id":"element-plus/es/components/footer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-61"},{"uid":"93a5-67"},{"uid":"93a5-71"},{"uid":"93a5-16"},{"uid":"93a5-40"},{"uid":"93a5-63"}],"isExternal":true},"93a5-96":{"id":"element-plus/es/components/main/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-61"},{"uid":"93a5-67"},{"uid":"93a5-63"}],"isExternal":true},"93a5-97":{"id":"element-plus/es/components/table/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-61"},{"uid":"93a5-63"}],"isExternal":true},"93a5-98":{"id":"element-plus/es/components/button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-61"},{"uid":"93a5-67"},{"uid":"93a5-71"},{"uid":"93a5-16"},{"uid":"93a5-38"},{"uid":"93a5-40"},{"uid":"93a5-65"},{"uid":"93a5-63"}],"isExternal":true},"93a5-99":{"id":"element-plus/es/components/switch/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-61"},{"uid":"93a5-63"}],"isExternal":true},"93a5-100":{"id":"element-plus/es/components/form/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-61"},{"uid":"93a5-28"},{"uid":"93a5-63"}],"isExternal":true},"93a5-101":{"id":"element-plus/es/components/form-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-61"},{"uid":"93a5-28"},{"uid":"93a5-63"}],"isExternal":true},"93a5-102":{"id":"element-plus/es/components/input/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-61"},{"uid":"93a5-38"},{"uid":"93a5-40"},{"uid":"93a5-63"}],"isExternal":true},"93a5-103":{"id":"element-plus/es/components/table-column/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-61"},{"uid":"93a5-63"}],"isExternal":true},"93a5-104":{"id":"element-plus/es/components/select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-61"},{"uid":"93a5-65"},{"uid":"93a5-63"}],"isExternal":true},"93a5-105":{"id":"element-plus/es/components/option/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-61"},{"uid":"93a5-65"},{"uid":"93a5-63"}],"isExternal":true},"93a5-106":{"id":"element-plus/es/components/tooltip/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-71"},{"uid":"93a5-40"}],"isExternal":true},"93a5-107":{"id":"@codemirror/lang-css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-71"}],"isExternal":true},"93a5-108":{"id":"vue-codemirror","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-71"},{"uid":"93a5-75"}],"isExternal":true},"93a5-109":{"id":"clipboard","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-16"}],"isExternal":true},"93a5-110":{"id":"element-plus/es/components/message/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-16"},{"uid":"93a5-40"},{"uid":"93a5-63"}],"isExternal":true},"93a5-111":{"id":"element-plus/es/components/tabs/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-28"}],"isExternal":true},"93a5-112":{"id":"element-plus/es/components/tab-pane/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-28"}],"isExternal":true},"93a5-113":{"id":"element-plus/es/components/empty/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-28"}],"isExternal":true},"93a5-114":{"id":"element-plus/es/components/notification/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-28"}],"isExternal":true},"93a5-115":{"id":"element-plus/es/components/upload/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-40"}],"isExternal":true},"93a5-116":{"id":"element-plus/es/components/drawer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-40"}],"isExternal":true},"93a5-117":{"id":"element-plus/es/components/tree/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-40"}],"isExternal":true},"93a5-118":{"id":"keycon","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-50"}],"isExternal":true},"93a5-119":{"id":"@codemirror/lang-json","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-75"}],"isExternal":true},"93a5-120":{"id":"jsoneditor","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-77"}],"isExternal":true},"93a5-121":{"id":"gesto","moduleParts":{},"imported":[],"importedBy":[{"uid":"93a5-44"}],"isExternal":true}},"env":{"rollup":"2.75.6"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
|
|
6160
|
+
const data = {"version":2,"tree":{"name":"root","children":[{"name":"starfish-editor.es.js","uid":"e4bd-1"},{"name":"main.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src","children":[{"name":"styles/index.scss","uid":"e4bd-3"},{"name":"utils","children":[{"uid":"e4bd-5","name":"vm.ts"},{"uid":"e4bd-11","name":"_.ts"},{"uid":"e4bd-33","name":"formKeycon.ts"},{"uid":"e4bd-51","name":"shortcutKey.ts"}]},{"name":"controller","children":[{"uid":"e4bd-7","name":"history.ts"},{"uid":"e4bd-9","name":"form.ts"},{"uid":"e4bd-13","name":"ui.ts"},{"uid":"e4bd-31","name":"shortcut.ts"},{"uid":"e4bd-49","name":"action.ts"}]},{"name":"components","children":[{"uid":"e4bd-17","name":"FormPreview.vue"},{"uid":"e4bd-29","name":"PropsPanel.vue"},{"uid":"e4bd-35","name":"Shape.vue"},{"uid":"e4bd-37","name":"Workspace.vue"},{"uid":"e4bd-39","name":"ComponentList.vue"},{"uid":"e4bd-41","name":"NavList.vue"},{"uid":"e4bd-43","name":"Nav.vue"}]},{"name":"layouts","children":[{"uid":"e4bd-19","name":"ShortcutKey.vue"},{"uid":"e4bd-21","name":"ControlEditSize.vue"},{"uid":"e4bd-45","name":"Resizer.vue"},{"uid":"e4bd-47","name":"Framework.vue"}]},{"name":"common","children":[{"uid":"e4bd-23","name":"formJson.ts"},{"uid":"e4bd-25","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"e4bd-27","name":"Loading.vue"}]},{"uid":"e4bd-53","name":"starfish-editor.vue?vue&type=style&index=0&lang.css"},{"uid":"e4bd-55","name":"starfish-editor.vue"},{"uid":"e4bd-56","name":"main.ts"}]},{"uid":"e4bd-15","name":"plugin-vue:export-helper"}]},{"name":"CustomDialog.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common","children":[{"uid":"e4bd-58","name":"CustomDialog.vue?vue&type=style&index=0&scoped=true&lang.css"},{"uid":"e4bd-60","name":"CustomDialog.vue"}]}]},{"name":"ConditionSelect.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect.vue","uid":"e4bd-62"}]},{"name":"ConditionModule.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect","children":[{"uid":"e4bd-64","name":"ConditionTanc.vue"},{"uid":"e4bd-66","name":"ConditionGroup.vue"},{"uid":"e4bd-68","name":"ConditionModule.vue"}]}]},{"name":"formStyle.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common","children":[{"uid":"e4bd-70","name":"formStyle.vue?vue&type=style&index=0&lang.scss"},{"uid":"e4bd-72","name":"formStyle.vue"}]}]},{"name":"jsonCode.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common","children":[{"uid":"e4bd-74","name":"jsonCode.vue?vue&type=style&index=0&lang.scss"},{"uid":"e4bd-76","name":"jsonCode.vue"}]}]},{"name":"jsonEditor.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/jsonEditor.vue","uid":"e4bd-78"}]},{"name":"globalFormList.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/globalFormList.vue","uid":"e4bd-80"}]}],"isRoot":true},"nodeParts":{"e4bd-1":{"id":"starfish-editor.es.js","gzipLength":0,"brotliLength":0,"renderedLength":1218,"metaUid":"e4bd-0"},"e4bd-3":{"renderedLength":67033,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-2"},"e4bd-5":{"renderedLength":16,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-4"},"e4bd-7":{"renderedLength":1613,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-6"},"e4bd-9":{"renderedLength":5583,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-8"},"e4bd-11":{"renderedLength":11419,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-10"},"e4bd-13":{"renderedLength":2025,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-12"},"e4bd-15":{"renderedLength":157,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-14"},"e4bd-17":{"renderedLength":7683,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-16"},"e4bd-19":{"renderedLength":1858,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-18"},"e4bd-21":{"renderedLength":2836,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-20"},"e4bd-23":{"renderedLength":1187,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-22"},"e4bd-25":{"renderedLength":192,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-24"},"e4bd-27":{"renderedLength":400,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-26"},"e4bd-29":{"renderedLength":16553,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-28"},"e4bd-31":{"renderedLength":1832,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-30"},"e4bd-33":{"renderedLength":457,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-32"},"e4bd-35":{"renderedLength":6369,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-34"},"e4bd-37":{"renderedLength":9051,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-36"},"e4bd-39":{"renderedLength":5871,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-38"},"e4bd-41":{"renderedLength":19472,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-40"},"e4bd-43":{"renderedLength":8406,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-42"},"e4bd-45":{"renderedLength":1138,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-44"},"e4bd-47":{"renderedLength":2712,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-46"},"e4bd-49":{"renderedLength":466,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-48"},"e4bd-51":{"renderedLength":937,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-50"},"e4bd-53":{"renderedLength":260,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-52"},"e4bd-55":{"renderedLength":3596,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-54"},"e4bd-56":{"renderedLength":1112,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-0"},"e4bd-58":{"renderedLength":272,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-57"},"e4bd-60":{"renderedLength":2123,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-59"},"e4bd-62":{"renderedLength":18742,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-61"},"e4bd-64":{"renderedLength":17222,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-63"},"e4bd-66":{"renderedLength":8014,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-65"},"e4bd-68":{"renderedLength":5784,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-67"},"e4bd-70":{"renderedLength":166,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-69"},"e4bd-72":{"renderedLength":6954,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-71"},"e4bd-74":{"renderedLength":187,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-73"},"e4bd-76":{"renderedLength":1553,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-75"},"e4bd-78":{"renderedLength":1338,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-77"},"e4bd-80":{"renderedLength":1044,"gzipLength":0,"brotliLength":0,"metaUid":"e4bd-79"}},"nodeMetas":{"e4bd-0":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/main.ts","moduleParts":{"starfish-editor.es.js":"e4bd-1","main.js":"e4bd-56"},"imported":[{"uid":"e4bd-81"},{"uid":"e4bd-82"},{"uid":"e4bd-2"},{"uid":"e4bd-83"},{"uid":"e4bd-84"},{"uid":"e4bd-4"},{"uid":"e4bd-10"},{"uid":"e4bd-85"},{"uid":"e4bd-54"},{"uid":"e4bd-26"},{"uid":"e4bd-59","dynamic":true},{"uid":"e4bd-61","dynamic":true},{"uid":"e4bd-67","dynamic":true},{"uid":"e4bd-86","dynamic":true},{"uid":"e4bd-34","dynamic":true},{"uid":"e4bd-71","dynamic":true}],"importedBy":[],"isEntry":true},"e4bd-2":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/styles/index.scss","moduleParts":{"main.js":"e4bd-3"},"imported":[],"importedBy":[{"uid":"e4bd-0"}]},"e4bd-4":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/vm.ts","moduleParts":{"main.js":"e4bd-5"},"imported":[{"uid":"e4bd-87"}],"importedBy":[{"uid":"e4bd-0"}]},"e4bd-6":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/history.ts","moduleParts":{"main.js":"e4bd-7"},"imported":[{"uid":"e4bd-81"},{"uid":"e4bd-8"}],"importedBy":[{"uid":"e4bd-54"},{"uid":"e4bd-8"},{"uid":"e4bd-50"}]},"e4bd-8":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/form.ts","moduleParts":{"main.js":"e4bd-9"},"imported":[{"uid":"e4bd-81"},{"uid":"e4bd-6"}],"importedBy":[{"uid":"e4bd-10"},{"uid":"e4bd-54"},{"uid":"e4bd-61"},{"uid":"e4bd-67"},{"uid":"e4bd-16"},{"uid":"e4bd-38"},{"uid":"e4bd-6"},{"uid":"e4bd-30"}]},"e4bd-10":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/_.ts","moduleParts":{"main.js":"e4bd-11"},"imported":[{"uid":"e4bd-88"},{"uid":"e4bd-89"},{"uid":"e4bd-8"}],"importedBy":[{"uid":"e4bd-0"}]},"e4bd-12":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/ui.ts","moduleParts":{"main.js":"e4bd-13"},"imported":[{"uid":"e4bd-81"}],"importedBy":[{"uid":"e4bd-54"},{"uid":"e4bd-16"}]},"e4bd-14":{"id":"plugin-vue:export-helper","moduleParts":{"main.js":"e4bd-15"},"imported":[],"importedBy":[{"uid":"e4bd-54"},{"uid":"e4bd-26"},{"uid":"e4bd-59"},{"uid":"e4bd-61"},{"uid":"e4bd-67"},{"uid":"e4bd-34"},{"uid":"e4bd-71"},{"uid":"e4bd-16"},{"uid":"e4bd-28"},{"uid":"e4bd-36"},{"uid":"e4bd-38"},{"uid":"e4bd-40"},{"uid":"e4bd-42"},{"uid":"e4bd-46"},{"uid":"e4bd-65"},{"uid":"e4bd-75"},{"uid":"e4bd-20"},{"uid":"e4bd-77"},{"uid":"e4bd-79"},{"uid":"e4bd-44"},{"uid":"e4bd-63"},{"uid":"e4bd-18"}]},"e4bd-16":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/FormPreview.vue","moduleParts":{"main.js":"e4bd-17"},"imported":[{"uid":"e4bd-90"},{"uid":"e4bd-91"},{"uid":"e4bd-95"},{"uid":"e4bd-98"},{"uid":"e4bd-81"},{"uid":"e4bd-8"},{"uid":"e4bd-84"},{"uid":"e4bd-12"},{"uid":"e4bd-109"},{"uid":"e4bd-14"},{"uid":"e4bd-110"},{"uid":"e4bd-75","dynamic":true}],"importedBy":[{"uid":"e4bd-54"}]},"e4bd-18":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/layouts/ShortcutKey.vue","moduleParts":{"main.js":"e4bd-19"},"imported":[{"uid":"e4bd-81"},{"uid":"e4bd-14"}],"importedBy":[{"uid":"e4bd-20"}]},"e4bd-20":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/layouts/ControlEditSize.vue","moduleParts":{"main.js":"e4bd-21"},"imported":[{"uid":"e4bd-81"},{"uid":"e4bd-18"},{"uid":"e4bd-14"}],"importedBy":[{"uid":"e4bd-28"}]},"e4bd-22":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/formJson.ts","moduleParts":{"main.js":"e4bd-23"},"imported":[],"importedBy":[{"uid":"e4bd-28"}]},"e4bd-24":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue?vue&type=style&index=0&scoped=true&lang.scss","moduleParts":{"main.js":"e4bd-25"},"imported":[],"importedBy":[{"uid":"e4bd-26"}]},"e4bd-26":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue","moduleParts":{"main.js":"e4bd-27"},"imported":[{"uid":"e4bd-90"},{"uid":"e4bd-91"},{"uid":"e4bd-92"},{"uid":"e4bd-81"},{"uid":"e4bd-24"},{"uid":"e4bd-14"}],"importedBy":[{"uid":"e4bd-0"},{"uid":"e4bd-28"}]},"e4bd-28":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/PropsPanel.vue","moduleParts":{"main.js":"e4bd-29"},"imported":[{"uid":"e4bd-90"},{"uid":"e4bd-91"},{"uid":"e4bd-111"},{"uid":"e4bd-112"},{"uid":"e4bd-113"},{"uid":"e4bd-100"},{"uid":"e4bd-101"},{"uid":"e4bd-81"},{"uid":"e4bd-20"},{"uid":"e4bd-22"},{"uid":"e4bd-26"},{"uid":"e4bd-14"},{"uid":"e4bd-114"},{"uid":"e4bd-77","dynamic":true},{"uid":"e4bd-79","dynamic":true}],"importedBy":[{"uid":"e4bd-54"}]},"e4bd-30":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/shortcut.ts","moduleParts":{"main.js":"e4bd-31"},"imported":[{"uid":"e4bd-81"},{"uid":"e4bd-8"}],"importedBy":[{"uid":"e4bd-54"},{"uid":"e4bd-32"}]},"e4bd-32":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/formKeycon.ts","moduleParts":{"main.js":"e4bd-33"},"imported":[{"uid":"e4bd-30"}],"importedBy":[{"uid":"e4bd-54"},{"uid":"e4bd-34"},{"uid":"e4bd-36"},{"uid":"e4bd-40"}]},"e4bd-34":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/Shape.vue","moduleParts":{"main.js":"e4bd-35"},"imported":[{"uid":"e4bd-81"},{"uid":"e4bd-32"},{"uid":"e4bd-14"}],"importedBy":[{"uid":"e4bd-0"},{"uid":"e4bd-36"}]},"e4bd-36":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/Workspace.vue","moduleParts":{"main.js":"e4bd-37"},"imported":[{"uid":"e4bd-34"},{"uid":"e4bd-81"},{"uid":"e4bd-32"},{"uid":"e4bd-14"}],"importedBy":[{"uid":"e4bd-54"}]},"e4bd-38":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/ComponentList.vue","moduleParts":{"main.js":"e4bd-39"},"imported":[{"uid":"e4bd-90"},{"uid":"e4bd-91"},{"uid":"e4bd-98"},{"uid":"e4bd-102"},{"uid":"e4bd-81"},{"uid":"e4bd-8"},{"uid":"e4bd-14"}],"importedBy":[{"uid":"e4bd-54"}]},"e4bd-40":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/NavList.vue","moduleParts":{"main.js":"e4bd-41"},"imported":[{"uid":"e4bd-90"},{"uid":"e4bd-91"},{"uid":"e4bd-95"},{"uid":"e4bd-115"},{"uid":"e4bd-98"},{"uid":"e4bd-116"},{"uid":"e4bd-117"},{"uid":"e4bd-102"},{"uid":"e4bd-106"},{"uid":"e4bd-81"},{"uid":"e4bd-32"},{"uid":"e4bd-110"},{"uid":"e4bd-14"},{"uid":"e4bd-75","dynamic":true}],"importedBy":[{"uid":"e4bd-54"}]},"e4bd-42":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/Nav.vue","moduleParts":{"main.js":"e4bd-43"},"imported":[{"uid":"e4bd-81"},{"uid":"e4bd-14"}],"importedBy":[{"uid":"e4bd-54"}]},"e4bd-44":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/layouts/Resizer.vue","moduleParts":{"main.js":"e4bd-45"},"imported":[{"uid":"e4bd-81"},{"uid":"e4bd-121"},{"uid":"e4bd-14"}],"importedBy":[{"uid":"e4bd-46"}]},"e4bd-46":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/layouts/Framework.vue","moduleParts":{"main.js":"e4bd-47"},"imported":[{"uid":"e4bd-81"},{"uid":"e4bd-44"},{"uid":"e4bd-14"}],"importedBy":[{"uid":"e4bd-54"}]},"e4bd-48":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/action.ts","moduleParts":{"main.js":"e4bd-49"},"imported":[{"uid":"e4bd-81"}],"importedBy":[{"uid":"e4bd-54"}]},"e4bd-50":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/shortcutKey.ts","moduleParts":{"main.js":"e4bd-51"},"imported":[{"uid":"e4bd-118"},{"uid":"e4bd-6"}],"importedBy":[{"uid":"e4bd-54"}]},"e4bd-52":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/starfish-editor.vue?vue&type=style&index=0&lang.css","moduleParts":{"main.js":"e4bd-53"},"imported":[],"importedBy":[{"uid":"e4bd-54"}]},"e4bd-54":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/starfish-editor.vue","moduleParts":{"main.js":"e4bd-55"},"imported":[{"uid":"e4bd-16"},{"uid":"e4bd-28"},{"uid":"e4bd-36"},{"uid":"e4bd-38"},{"uid":"e4bd-40"},{"uid":"e4bd-42"},{"uid":"e4bd-81"},{"uid":"e4bd-46"},{"uid":"e4bd-12"},{"uid":"e4bd-6"},{"uid":"e4bd-8"},{"uid":"e4bd-48"},{"uid":"e4bd-30"},{"uid":"e4bd-50"},{"uid":"e4bd-32"},{"uid":"e4bd-52"},{"uid":"e4bd-14"},{"uid":"e4bd-16","dynamic":true}],"importedBy":[{"uid":"e4bd-0"}]},"e4bd-57":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/CustomDialog.vue?vue&type=style&index=0&scoped=true&lang.css","moduleParts":{"CustomDialog.js":"e4bd-58"},"imported":[],"importedBy":[{"uid":"e4bd-59"}]},"e4bd-59":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/CustomDialog.vue","moduleParts":{"CustomDialog.js":"e4bd-60"},"imported":[{"uid":"e4bd-90"},{"uid":"e4bd-91"},{"uid":"e4bd-93"},{"uid":"e4bd-81"},{"uid":"e4bd-57"},{"uid":"e4bd-14"}],"importedBy":[{"uid":"e4bd-0"}]},"e4bd-61":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect.vue","moduleParts":{"ConditionSelect.js":"e4bd-62"},"imported":[{"uid":"e4bd-90"},{"uid":"e4bd-91"},{"uid":"e4bd-94"},{"uid":"e4bd-95"},{"uid":"e4bd-96"},{"uid":"e4bd-97"},{"uid":"e4bd-98"},{"uid":"e4bd-99"},{"uid":"e4bd-100"},{"uid":"e4bd-101"},{"uid":"e4bd-102"},{"uid":"e4bd-103"},{"uid":"e4bd-104"},{"uid":"e4bd-105"},{"uid":"e4bd-81"},{"uid":"e4bd-8"},{"uid":"e4bd-14"}],"importedBy":[{"uid":"e4bd-0"}]},"e4bd-63":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect/ConditionTanc.vue","moduleParts":{"ConditionModule.js":"e4bd-64"},"imported":[{"uid":"e4bd-90"},{"uid":"e4bd-91"},{"uid":"e4bd-94"},{"uid":"e4bd-95"},{"uid":"e4bd-96"},{"uid":"e4bd-97"},{"uid":"e4bd-98"},{"uid":"e4bd-99"},{"uid":"e4bd-100"},{"uid":"e4bd-101"},{"uid":"e4bd-102"},{"uid":"e4bd-103"},{"uid":"e4bd-104"},{"uid":"e4bd-105"},{"uid":"e4bd-110"},{"uid":"e4bd-81"},{"uid":"e4bd-14"}],"importedBy":[{"uid":"e4bd-65"}]},"e4bd-65":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect/ConditionGroup.vue","moduleParts":{"ConditionModule.js":"e4bd-66"},"imported":[{"uid":"e4bd-90"},{"uid":"e4bd-91"},{"uid":"e4bd-98"},{"uid":"e4bd-104"},{"uid":"e4bd-105"},{"uid":"e4bd-63"},{"uid":"e4bd-81"},{"uid":"e4bd-14"}],"importedBy":[{"uid":"e4bd-67"}]},"e4bd-67":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect/ConditionModule.vue","moduleParts":{"ConditionModule.js":"e4bd-68"},"imported":[{"uid":"e4bd-90"},{"uid":"e4bd-91"},{"uid":"e4bd-94"},{"uid":"e4bd-95"},{"uid":"e4bd-98"},{"uid":"e4bd-96"},{"uid":"e4bd-65"},{"uid":"e4bd-8"},{"uid":"e4bd-81"},{"uid":"e4bd-14"}],"importedBy":[{"uid":"e4bd-0"}]},"e4bd-69":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/formStyle.vue?vue&type=style&index=0&lang.scss","moduleParts":{"formStyle.js":"e4bd-70"},"imported":[],"importedBy":[{"uid":"e4bd-71"}]},"e4bd-71":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/formStyle.vue","moduleParts":{"formStyle.js":"e4bd-72"},"imported":[{"uid":"e4bd-90"},{"uid":"e4bd-91"},{"uid":"e4bd-95"},{"uid":"e4bd-98"},{"uid":"e4bd-106"},{"uid":"e4bd-81"},{"uid":"e4bd-107"},{"uid":"e4bd-108"},{"uid":"e4bd-69"},{"uid":"e4bd-14"}],"importedBy":[{"uid":"e4bd-0"}]},"e4bd-73":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/jsonCode.vue?vue&type=style&index=0&lang.scss","moduleParts":{"jsonCode.js":"e4bd-74"},"imported":[],"importedBy":[{"uid":"e4bd-75"}]},"e4bd-75":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/jsonCode.vue","moduleParts":{"jsonCode.js":"e4bd-76"},"imported":[{"uid":"e4bd-81"},{"uid":"e4bd-119"},{"uid":"e4bd-108"},{"uid":"e4bd-73"},{"uid":"e4bd-14"}],"importedBy":[{"uid":"e4bd-16"},{"uid":"e4bd-40"}]},"e4bd-77":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/jsonEditor.vue","moduleParts":{"jsonEditor.js":"e4bd-78"},"imported":[{"uid":"e4bd-81"},{"uid":"e4bd-120"},{"uid":"e4bd-14"}],"importedBy":[{"uid":"e4bd-28"}]},"e4bd-79":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/globalFormList.vue","moduleParts":{"globalFormList.js":"e4bd-80"},"imported":[{"uid":"e4bd-81"},{"uid":"e4bd-14"}],"importedBy":[{"uid":"e4bd-28"}]},"e4bd-81":{"id":"vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-0"},{"uid":"e4bd-54"},{"uid":"e4bd-26"},{"uid":"e4bd-59"},{"uid":"e4bd-61"},{"uid":"e4bd-67"},{"uid":"e4bd-34"},{"uid":"e4bd-71"},{"uid":"e4bd-8"},{"uid":"e4bd-16"},{"uid":"e4bd-28"},{"uid":"e4bd-36"},{"uid":"e4bd-38"},{"uid":"e4bd-40"},{"uid":"e4bd-42"},{"uid":"e4bd-46"},{"uid":"e4bd-12"},{"uid":"e4bd-6"},{"uid":"e4bd-48"},{"uid":"e4bd-30"},{"uid":"e4bd-65"},{"uid":"e4bd-75"},{"uid":"e4bd-20"},{"uid":"e4bd-77"},{"uid":"e4bd-79"},{"uid":"e4bd-44"},{"uid":"e4bd-63"},{"uid":"e4bd-18"}],"isExternal":true},"e4bd-82":{"id":"element-plus/dist/index.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-0"}],"isExternal":true},"e4bd-83":{"id":"jsoneditor/dist/jsoneditor.min.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-0"}],"isExternal":true},"e4bd-84":{"id":"starfish-form-custom","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-0"},{"uid":"e4bd-16"}],"isExternal":true},"e4bd-85":{"id":"starfish-form-custom/dist/style.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-0"}],"isExternal":true},"e4bd-86":{"id":"vuedraggable","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-0"}],"isExternal":true},"e4bd-87":{"id":"mitt","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-4"}],"isExternal":true},"e4bd-88":{"id":"element-plus","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-10"}],"isExternal":true},"e4bd-89":{"id":"nanoid","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-10"}],"isExternal":true},"e4bd-90":{"id":"element-plus/es","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-26"},{"uid":"e4bd-59"},{"uid":"e4bd-61"},{"uid":"e4bd-67"},{"uid":"e4bd-71"},{"uid":"e4bd-16"},{"uid":"e4bd-28"},{"uid":"e4bd-38"},{"uid":"e4bd-40"},{"uid":"e4bd-65"},{"uid":"e4bd-63"}],"isExternal":true},"e4bd-91":{"id":"element-plus/es/components/base/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-26"},{"uid":"e4bd-59"},{"uid":"e4bd-61"},{"uid":"e4bd-67"},{"uid":"e4bd-71"},{"uid":"e4bd-16"},{"uid":"e4bd-28"},{"uid":"e4bd-38"},{"uid":"e4bd-40"},{"uid":"e4bd-65"},{"uid":"e4bd-63"}],"isExternal":true},"e4bd-92":{"id":"element-plus/es/components/loading/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-26"}],"isExternal":true},"e4bd-93":{"id":"element-plus/es/components/dialog/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-59"}],"isExternal":true},"e4bd-94":{"id":"element-plus/es/components/container/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-61"},{"uid":"e4bd-67"},{"uid":"e4bd-63"}],"isExternal":true},"e4bd-95":{"id":"element-plus/es/components/footer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-61"},{"uid":"e4bd-67"},{"uid":"e4bd-71"},{"uid":"e4bd-16"},{"uid":"e4bd-40"},{"uid":"e4bd-63"}],"isExternal":true},"e4bd-96":{"id":"element-plus/es/components/main/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-61"},{"uid":"e4bd-67"},{"uid":"e4bd-63"}],"isExternal":true},"e4bd-97":{"id":"element-plus/es/components/table/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-61"},{"uid":"e4bd-63"}],"isExternal":true},"e4bd-98":{"id":"element-plus/es/components/button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-61"},{"uid":"e4bd-67"},{"uid":"e4bd-71"},{"uid":"e4bd-16"},{"uid":"e4bd-38"},{"uid":"e4bd-40"},{"uid":"e4bd-65"},{"uid":"e4bd-63"}],"isExternal":true},"e4bd-99":{"id":"element-plus/es/components/switch/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-61"},{"uid":"e4bd-63"}],"isExternal":true},"e4bd-100":{"id":"element-plus/es/components/form/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-61"},{"uid":"e4bd-28"},{"uid":"e4bd-63"}],"isExternal":true},"e4bd-101":{"id":"element-plus/es/components/form-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-61"},{"uid":"e4bd-28"},{"uid":"e4bd-63"}],"isExternal":true},"e4bd-102":{"id":"element-plus/es/components/input/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-61"},{"uid":"e4bd-38"},{"uid":"e4bd-40"},{"uid":"e4bd-63"}],"isExternal":true},"e4bd-103":{"id":"element-plus/es/components/table-column/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-61"},{"uid":"e4bd-63"}],"isExternal":true},"e4bd-104":{"id":"element-plus/es/components/select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-61"},{"uid":"e4bd-65"},{"uid":"e4bd-63"}],"isExternal":true},"e4bd-105":{"id":"element-plus/es/components/option/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-61"},{"uid":"e4bd-65"},{"uid":"e4bd-63"}],"isExternal":true},"e4bd-106":{"id":"element-plus/es/components/tooltip/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-71"},{"uid":"e4bd-40"}],"isExternal":true},"e4bd-107":{"id":"@codemirror/lang-css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-71"}],"isExternal":true},"e4bd-108":{"id":"vue-codemirror","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-71"},{"uid":"e4bd-75"}],"isExternal":true},"e4bd-109":{"id":"clipboard","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-16"}],"isExternal":true},"e4bd-110":{"id":"element-plus/es/components/message/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-16"},{"uid":"e4bd-40"},{"uid":"e4bd-63"}],"isExternal":true},"e4bd-111":{"id":"element-plus/es/components/tabs/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-28"}],"isExternal":true},"e4bd-112":{"id":"element-plus/es/components/tab-pane/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-28"}],"isExternal":true},"e4bd-113":{"id":"element-plus/es/components/empty/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-28"}],"isExternal":true},"e4bd-114":{"id":"element-plus/es/components/notification/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-28"}],"isExternal":true},"e4bd-115":{"id":"element-plus/es/components/upload/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-40"}],"isExternal":true},"e4bd-116":{"id":"element-plus/es/components/drawer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-40"}],"isExternal":true},"e4bd-117":{"id":"element-plus/es/components/tree/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-40"}],"isExternal":true},"e4bd-118":{"id":"keycon","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-50"}],"isExternal":true},"e4bd-119":{"id":"@codemirror/lang-json","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-75"}],"isExternal":true},"e4bd-120":{"id":"jsoneditor","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-77"}],"isExternal":true},"e4bd-121":{"id":"gesto","moduleParts":{},"imported":[],"importedBy":[{"uid":"e4bd-44"}],"isExternal":true}},"env":{"rollup":"2.75.6"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
|
|
6161
6161
|
|
|
6162
6162
|
const run = () => {
|
|
6163
6163
|
const width = window.innerWidth;
|