starfish-editor-custom 1.0.20 → 1.0.21

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 CHANGED
@@ -380,79 +380,111 @@ class Flex {
380
380
  return str.match(reg)[1];
381
381
  }
382
382
  jsonToForm(item) {
383
- var _a, _b;
384
- if (!item.data || !item.controlItems) {
385
- item = this.deepClone(item);
386
- const currentComponent = window.VApp.$formcomponents[item.ControlType];
387
- item.formConfig = ((_a = window.VApp.$formcomponents[item.ControlType]) == null ? void 0 : _a.formConfig) || {};
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.layout) {
395
- if (item.ControlType == "Grid" && item.data.columns && item.data.columns.length > 0) {
396
- item.data.columns = item.data.columns.map((colItem) => {
397
- if (colItem.list && colItem.list.length > 0) {
398
- colItem.list = this.jsonToForm(colItem.list);
399
- }
400
- return colItem;
401
- });
402
- } else if (item.ControlType == "TableLayout" && item.data.trs && item.data.trs.length > 0) {
403
- item.data.trs = item.data.trs.map((trItem) => {
404
- trItem.tds.forEach((tdItem) => {
405
- if (tdItem.list && tdItem.list.length > 0) {
406
- tdItem.list = this.jsonToForm(tdItem.list);
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 tdItem;
418
+ return colItem;
409
419
  });
410
- return trItem;
411
- });
412
- } else if ((item.ControlType == "Collapse" || item.ControlType == "Tabs") && item.data.items && item.data.items.length > 0) {
413
- item.data.items = item.data.items.map((colItem) => {
414
- if (colItem.list && colItem.list.length > 0) {
415
- colItem.list = this.jsonToForm(colItem.list);
416
- }
417
- return colItem;
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
- const dynamicList = (_b = formStore == null ? void 0 : formStore.get("globalFormList")) == null ? void 0 : _b.filter((item2) => {
422
- if (item2.dynamic) {
423
- return item2;
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
- item.id = this.generateMixed();
427
- let controlItems = item.formConfig.morenConfig().concat(dynamicList);
428
- if (currentComponent.actionType && currentComponent.actionType.length > 0) {
429
- console.log(controlItems);
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
- item2.data.formConfig.items.push({
438
- label: action2,
439
- value: action2,
440
- id: index2 + 1
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
- } else {
446
- controlItems = controlItems.filter((item2) => {
447
- if (item2.ControlType !== "Action") {
448
- return item2;
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.rules = this.controlFormRule(controlItems);
453
- item.controlItems = controlItems;
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.20",
3
+ "version": "1.0.21",
4
4
  "main": "dist/starfish-editor.umd.js",
5
5
  "style": "dist/style.css",
6
6
  "module": "dist/starfish-editor.es.js",
package/src/utils/_.ts CHANGED
@@ -135,90 +135,138 @@ class Flex {
135
135
  /**
136
136
  * json转标准数据格式进行收口
137
137
  */
138
- public jsonToForm(item: AllFormItem) {
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
- item.formConfig = window.VApp.$formcomponents[item.ControlType as any]?.formConfig || {};
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 = item.formConfig.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.length > 0) {
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.length > 0) {
154
- colItem.list = this.jsonToForm(colItem.list);
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.length > 0) {
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.forEach((tdItem: any) => {
164
- if (tdItem.list && tdItem.list.length > 0) {
165
- tdItem.list = this.jsonToForm(tdItem.list);
166
- }
167
- return tdItem;
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.length > 0) {
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.length > 0) {
174
- colItem.list = this.jsonToForm(colItem.list);
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((item: any) => {
184
- if (item.dynamic) {
185
- return item;
186
- }
187
- });
188
- item.id = this.generateMixed();
189
- let controlItems = item.formConfig.morenConfig().concat(dynamicList);
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
- console.log(controlItems);
195
- controlItems.find((item: any) => {
196
- if (item.ControlType == "Action") {
197
- item.data.formConfig = {
198
- value: {},
199
- items: [],
200
- };
201
- currentComponent.actionType.forEach((action: string, index: number) => {
202
- item.data.formConfig.items.push({
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((item: any) => {
212
- if (item.ControlType !== "Action") {
213
- return item;
214
- }
247
+ controlItems = controlItems.filter((controlItem: any) => {
248
+ return controlItem && controlItem.ControlType !== "Action";
215
249
  });
216
250
  }
217
- item.rules = this.controlFormRule(controlItems);
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":"7f4f-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":"7f4f-3"},{"name":"utils","children":[{"uid":"7f4f-5","name":"vm.ts"},{"uid":"7f4f-11","name":"_.ts"},{"uid":"7f4f-33","name":"formKeycon.ts"},{"uid":"7f4f-51","name":"shortcutKey.ts"}]},{"name":"controller","children":[{"uid":"7f4f-7","name":"history.ts"},{"uid":"7f4f-9","name":"form.ts"},{"uid":"7f4f-13","name":"ui.ts"},{"uid":"7f4f-31","name":"shortcut.ts"},{"uid":"7f4f-49","name":"action.ts"}]},{"name":"components","children":[{"uid":"7f4f-17","name":"FormPreview.vue"},{"uid":"7f4f-29","name":"PropsPanel.vue"},{"uid":"7f4f-35","name":"Shape.vue"},{"uid":"7f4f-37","name":"Workspace.vue"},{"uid":"7f4f-39","name":"ComponentList.vue"},{"uid":"7f4f-41","name":"NavList.vue"},{"uid":"7f4f-43","name":"Nav.vue"}]},{"name":"layouts","children":[{"uid":"7f4f-19","name":"ShortcutKey.vue"},{"uid":"7f4f-21","name":"ControlEditSize.vue"},{"uid":"7f4f-45","name":"Resizer.vue"},{"uid":"7f4f-47","name":"Framework.vue"}]},{"name":"common","children":[{"uid":"7f4f-23","name":"formJson.ts"},{"uid":"7f4f-25","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"7f4f-27","name":"Loading.vue"}]},{"uid":"7f4f-53","name":"starfish-editor.vue?vue&type=style&index=0&lang.css"},{"uid":"7f4f-55","name":"starfish-editor.vue"},{"uid":"7f4f-56","name":"main.ts"}]},{"uid":"7f4f-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":"7f4f-58","name":"CustomDialog.vue?vue&type=style&index=0&scoped=true&lang.css"},{"uid":"7f4f-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":"7f4f-62"}]},{"name":"ConditionModule.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect","children":[{"uid":"7f4f-64","name":"ConditionTanc.vue"},{"uid":"7f4f-66","name":"ConditionGroup.vue"},{"uid":"7f4f-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":"7f4f-70","name":"formStyle.vue?vue&type=style&index=0&lang.scss"},{"uid":"7f4f-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":"7f4f-74","name":"jsonCode.vue?vue&type=style&index=0&lang.scss"},{"uid":"7f4f-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":"7f4f-78"}]},{"name":"globalFormList.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/globalFormList.vue","uid":"7f4f-80"}]}],"isRoot":true},"nodeParts":{"7f4f-1":{"id":"starfish-editor.es.js","gzipLength":0,"brotliLength":0,"renderedLength":1218,"metaUid":"7f4f-0"},"7f4f-3":{"renderedLength":67033,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-2"},"7f4f-5":{"renderedLength":16,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-4"},"7f4f-7":{"renderedLength":1613,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-6"},"7f4f-9":{"renderedLength":5583,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-8"},"7f4f-11":{"renderedLength":11419,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-10"},"7f4f-13":{"renderedLength":2025,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-12"},"7f4f-15":{"renderedLength":157,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-14"},"7f4f-17":{"renderedLength":7683,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-16"},"7f4f-19":{"renderedLength":1858,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-18"},"7f4f-21":{"renderedLength":2836,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-20"},"7f4f-23":{"renderedLength":1187,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-22"},"7f4f-25":{"renderedLength":192,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-24"},"7f4f-27":{"renderedLength":400,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-26"},"7f4f-29":{"renderedLength":16553,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-28"},"7f4f-31":{"renderedLength":1832,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-30"},"7f4f-33":{"renderedLength":457,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-32"},"7f4f-35":{"renderedLength":6369,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-34"},"7f4f-37":{"renderedLength":9051,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-36"},"7f4f-39":{"renderedLength":5871,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-38"},"7f4f-41":{"renderedLength":19472,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-40"},"7f4f-43":{"renderedLength":8406,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-42"},"7f4f-45":{"renderedLength":1138,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-44"},"7f4f-47":{"renderedLength":2712,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-46"},"7f4f-49":{"renderedLength":466,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-48"},"7f4f-51":{"renderedLength":937,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-50"},"7f4f-53":{"renderedLength":260,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-52"},"7f4f-55":{"renderedLength":3596,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-54"},"7f4f-56":{"renderedLength":1112,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-0"},"7f4f-58":{"renderedLength":272,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-57"},"7f4f-60":{"renderedLength":2123,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-59"},"7f4f-62":{"renderedLength":18742,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-61"},"7f4f-64":{"renderedLength":17222,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-63"},"7f4f-66":{"renderedLength":8014,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-65"},"7f4f-68":{"renderedLength":5784,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-67"},"7f4f-70":{"renderedLength":166,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-69"},"7f4f-72":{"renderedLength":6954,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-71"},"7f4f-74":{"renderedLength":187,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-73"},"7f4f-76":{"renderedLength":1553,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-75"},"7f4f-78":{"renderedLength":1338,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-77"},"7f4f-80":{"renderedLength":1044,"gzipLength":0,"brotliLength":0,"metaUid":"7f4f-79"}},"nodeMetas":{"7f4f-0":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/main.ts","moduleParts":{"starfish-editor.es.js":"7f4f-1","main.js":"7f4f-56"},"imported":[{"uid":"7f4f-81"},{"uid":"7f4f-82"},{"uid":"7f4f-2"},{"uid":"7f4f-83"},{"uid":"7f4f-84"},{"uid":"7f4f-4"},{"uid":"7f4f-10"},{"uid":"7f4f-85"},{"uid":"7f4f-54"},{"uid":"7f4f-26"},{"uid":"7f4f-59","dynamic":true},{"uid":"7f4f-61","dynamic":true},{"uid":"7f4f-67","dynamic":true},{"uid":"7f4f-86","dynamic":true},{"uid":"7f4f-34","dynamic":true},{"uid":"7f4f-71","dynamic":true}],"importedBy":[],"isEntry":true},"7f4f-2":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/styles/index.scss","moduleParts":{"main.js":"7f4f-3"},"imported":[],"importedBy":[{"uid":"7f4f-0"}]},"7f4f-4":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/vm.ts","moduleParts":{"main.js":"7f4f-5"},"imported":[{"uid":"7f4f-87"}],"importedBy":[{"uid":"7f4f-0"}]},"7f4f-6":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/history.ts","moduleParts":{"main.js":"7f4f-7"},"imported":[{"uid":"7f4f-81"},{"uid":"7f4f-8"}],"importedBy":[{"uid":"7f4f-54"},{"uid":"7f4f-8"},{"uid":"7f4f-50"}]},"7f4f-8":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/form.ts","moduleParts":{"main.js":"7f4f-9"},"imported":[{"uid":"7f4f-81"},{"uid":"7f4f-6"}],"importedBy":[{"uid":"7f4f-10"},{"uid":"7f4f-54"},{"uid":"7f4f-61"},{"uid":"7f4f-67"},{"uid":"7f4f-16"},{"uid":"7f4f-38"},{"uid":"7f4f-6"},{"uid":"7f4f-30"}]},"7f4f-10":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/_.ts","moduleParts":{"main.js":"7f4f-11"},"imported":[{"uid":"7f4f-88"},{"uid":"7f4f-89"},{"uid":"7f4f-8"}],"importedBy":[{"uid":"7f4f-0"}]},"7f4f-12":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/ui.ts","moduleParts":{"main.js":"7f4f-13"},"imported":[{"uid":"7f4f-81"}],"importedBy":[{"uid":"7f4f-54"},{"uid":"7f4f-16"}]},"7f4f-14":{"id":"plugin-vue:export-helper","moduleParts":{"main.js":"7f4f-15"},"imported":[],"importedBy":[{"uid":"7f4f-54"},{"uid":"7f4f-26"},{"uid":"7f4f-59"},{"uid":"7f4f-61"},{"uid":"7f4f-67"},{"uid":"7f4f-34"},{"uid":"7f4f-71"},{"uid":"7f4f-16"},{"uid":"7f4f-28"},{"uid":"7f4f-36"},{"uid":"7f4f-38"},{"uid":"7f4f-40"},{"uid":"7f4f-42"},{"uid":"7f4f-46"},{"uid":"7f4f-65"},{"uid":"7f4f-75"},{"uid":"7f4f-20"},{"uid":"7f4f-77"},{"uid":"7f4f-79"},{"uid":"7f4f-44"},{"uid":"7f4f-63"},{"uid":"7f4f-18"}]},"7f4f-16":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/FormPreview.vue","moduleParts":{"main.js":"7f4f-17"},"imported":[{"uid":"7f4f-90"},{"uid":"7f4f-91"},{"uid":"7f4f-95"},{"uid":"7f4f-98"},{"uid":"7f4f-81"},{"uid":"7f4f-8"},{"uid":"7f4f-84"},{"uid":"7f4f-12"},{"uid":"7f4f-109"},{"uid":"7f4f-14"},{"uid":"7f4f-110"},{"uid":"7f4f-75","dynamic":true}],"importedBy":[{"uid":"7f4f-54"}]},"7f4f-18":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/layouts/ShortcutKey.vue","moduleParts":{"main.js":"7f4f-19"},"imported":[{"uid":"7f4f-81"},{"uid":"7f4f-14"}],"importedBy":[{"uid":"7f4f-20"}]},"7f4f-20":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/layouts/ControlEditSize.vue","moduleParts":{"main.js":"7f4f-21"},"imported":[{"uid":"7f4f-81"},{"uid":"7f4f-18"},{"uid":"7f4f-14"}],"importedBy":[{"uid":"7f4f-28"}]},"7f4f-22":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/formJson.ts","moduleParts":{"main.js":"7f4f-23"},"imported":[],"importedBy":[{"uid":"7f4f-28"}]},"7f4f-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":"7f4f-25"},"imported":[],"importedBy":[{"uid":"7f4f-26"}]},"7f4f-26":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue","moduleParts":{"main.js":"7f4f-27"},"imported":[{"uid":"7f4f-90"},{"uid":"7f4f-91"},{"uid":"7f4f-92"},{"uid":"7f4f-81"},{"uid":"7f4f-24"},{"uid":"7f4f-14"}],"importedBy":[{"uid":"7f4f-0"},{"uid":"7f4f-28"}]},"7f4f-28":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/PropsPanel.vue","moduleParts":{"main.js":"7f4f-29"},"imported":[{"uid":"7f4f-90"},{"uid":"7f4f-91"},{"uid":"7f4f-111"},{"uid":"7f4f-112"},{"uid":"7f4f-113"},{"uid":"7f4f-100"},{"uid":"7f4f-101"},{"uid":"7f4f-81"},{"uid":"7f4f-20"},{"uid":"7f4f-22"},{"uid":"7f4f-26"},{"uid":"7f4f-14"},{"uid":"7f4f-114"},{"uid":"7f4f-77","dynamic":true},{"uid":"7f4f-79","dynamic":true}],"importedBy":[{"uid":"7f4f-54"}]},"7f4f-30":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/shortcut.ts","moduleParts":{"main.js":"7f4f-31"},"imported":[{"uid":"7f4f-81"},{"uid":"7f4f-8"}],"importedBy":[{"uid":"7f4f-54"},{"uid":"7f4f-32"}]},"7f4f-32":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/formKeycon.ts","moduleParts":{"main.js":"7f4f-33"},"imported":[{"uid":"7f4f-30"}],"importedBy":[{"uid":"7f4f-54"},{"uid":"7f4f-34"},{"uid":"7f4f-36"},{"uid":"7f4f-40"}]},"7f4f-34":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/Shape.vue","moduleParts":{"main.js":"7f4f-35"},"imported":[{"uid":"7f4f-81"},{"uid":"7f4f-32"},{"uid":"7f4f-14"}],"importedBy":[{"uid":"7f4f-0"},{"uid":"7f4f-36"}]},"7f4f-36":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/Workspace.vue","moduleParts":{"main.js":"7f4f-37"},"imported":[{"uid":"7f4f-34"},{"uid":"7f4f-81"},{"uid":"7f4f-32"},{"uid":"7f4f-14"}],"importedBy":[{"uid":"7f4f-54"}]},"7f4f-38":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/ComponentList.vue","moduleParts":{"main.js":"7f4f-39"},"imported":[{"uid":"7f4f-90"},{"uid":"7f4f-91"},{"uid":"7f4f-98"},{"uid":"7f4f-102"},{"uid":"7f4f-81"},{"uid":"7f4f-8"},{"uid":"7f4f-14"}],"importedBy":[{"uid":"7f4f-54"}]},"7f4f-40":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/NavList.vue","moduleParts":{"main.js":"7f4f-41"},"imported":[{"uid":"7f4f-90"},{"uid":"7f4f-91"},{"uid":"7f4f-95"},{"uid":"7f4f-115"},{"uid":"7f4f-98"},{"uid":"7f4f-116"},{"uid":"7f4f-117"},{"uid":"7f4f-102"},{"uid":"7f4f-106"},{"uid":"7f4f-81"},{"uid":"7f4f-32"},{"uid":"7f4f-110"},{"uid":"7f4f-14"},{"uid":"7f4f-75","dynamic":true}],"importedBy":[{"uid":"7f4f-54"}]},"7f4f-42":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/Nav.vue","moduleParts":{"main.js":"7f4f-43"},"imported":[{"uid":"7f4f-81"},{"uid":"7f4f-14"}],"importedBy":[{"uid":"7f4f-54"}]},"7f4f-44":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/layouts/Resizer.vue","moduleParts":{"main.js":"7f4f-45"},"imported":[{"uid":"7f4f-81"},{"uid":"7f4f-121"},{"uid":"7f4f-14"}],"importedBy":[{"uid":"7f4f-46"}]},"7f4f-46":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/layouts/Framework.vue","moduleParts":{"main.js":"7f4f-47"},"imported":[{"uid":"7f4f-81"},{"uid":"7f4f-44"},{"uid":"7f4f-14"}],"importedBy":[{"uid":"7f4f-54"}]},"7f4f-48":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/action.ts","moduleParts":{"main.js":"7f4f-49"},"imported":[{"uid":"7f4f-81"}],"importedBy":[{"uid":"7f4f-54"}]},"7f4f-50":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/shortcutKey.ts","moduleParts":{"main.js":"7f4f-51"},"imported":[{"uid":"7f4f-118"},{"uid":"7f4f-6"}],"importedBy":[{"uid":"7f4f-54"}]},"7f4f-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":"7f4f-53"},"imported":[],"importedBy":[{"uid":"7f4f-54"}]},"7f4f-54":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/starfish-editor.vue","moduleParts":{"main.js":"7f4f-55"},"imported":[{"uid":"7f4f-16"},{"uid":"7f4f-28"},{"uid":"7f4f-36"},{"uid":"7f4f-38"},{"uid":"7f4f-40"},{"uid":"7f4f-42"},{"uid":"7f4f-81"},{"uid":"7f4f-46"},{"uid":"7f4f-12"},{"uid":"7f4f-6"},{"uid":"7f4f-8"},{"uid":"7f4f-48"},{"uid":"7f4f-30"},{"uid":"7f4f-50"},{"uid":"7f4f-32"},{"uid":"7f4f-52"},{"uid":"7f4f-14"},{"uid":"7f4f-16","dynamic":true}],"importedBy":[{"uid":"7f4f-0"}]},"7f4f-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":"7f4f-58"},"imported":[],"importedBy":[{"uid":"7f4f-59"}]},"7f4f-59":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/CustomDialog.vue","moduleParts":{"CustomDialog.js":"7f4f-60"},"imported":[{"uid":"7f4f-90"},{"uid":"7f4f-91"},{"uid":"7f4f-93"},{"uid":"7f4f-81"},{"uid":"7f4f-57"},{"uid":"7f4f-14"}],"importedBy":[{"uid":"7f4f-0"}]},"7f4f-61":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect.vue","moduleParts":{"ConditionSelect.js":"7f4f-62"},"imported":[{"uid":"7f4f-90"},{"uid":"7f4f-91"},{"uid":"7f4f-94"},{"uid":"7f4f-95"},{"uid":"7f4f-96"},{"uid":"7f4f-97"},{"uid":"7f4f-98"},{"uid":"7f4f-99"},{"uid":"7f4f-100"},{"uid":"7f4f-101"},{"uid":"7f4f-102"},{"uid":"7f4f-103"},{"uid":"7f4f-104"},{"uid":"7f4f-105"},{"uid":"7f4f-81"},{"uid":"7f4f-8"},{"uid":"7f4f-14"}],"importedBy":[{"uid":"7f4f-0"}]},"7f4f-63":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect/ConditionTanc.vue","moduleParts":{"ConditionModule.js":"7f4f-64"},"imported":[{"uid":"7f4f-90"},{"uid":"7f4f-91"},{"uid":"7f4f-94"},{"uid":"7f4f-95"},{"uid":"7f4f-96"},{"uid":"7f4f-97"},{"uid":"7f4f-98"},{"uid":"7f4f-99"},{"uid":"7f4f-100"},{"uid":"7f4f-101"},{"uid":"7f4f-102"},{"uid":"7f4f-103"},{"uid":"7f4f-104"},{"uid":"7f4f-105"},{"uid":"7f4f-110"},{"uid":"7f4f-81"},{"uid":"7f4f-14"}],"importedBy":[{"uid":"7f4f-65"}]},"7f4f-65":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect/ConditionGroup.vue","moduleParts":{"ConditionModule.js":"7f4f-66"},"imported":[{"uid":"7f4f-90"},{"uid":"7f4f-91"},{"uid":"7f4f-98"},{"uid":"7f4f-104"},{"uid":"7f4f-105"},{"uid":"7f4f-63"},{"uid":"7f4f-81"},{"uid":"7f4f-14"}],"importedBy":[{"uid":"7f4f-67"}]},"7f4f-67":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect/ConditionModule.vue","moduleParts":{"ConditionModule.js":"7f4f-68"},"imported":[{"uid":"7f4f-90"},{"uid":"7f4f-91"},{"uid":"7f4f-94"},{"uid":"7f4f-95"},{"uid":"7f4f-98"},{"uid":"7f4f-96"},{"uid":"7f4f-65"},{"uid":"7f4f-8"},{"uid":"7f4f-81"},{"uid":"7f4f-14"}],"importedBy":[{"uid":"7f4f-0"}]},"7f4f-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":"7f4f-70"},"imported":[],"importedBy":[{"uid":"7f4f-71"}]},"7f4f-71":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/formStyle.vue","moduleParts":{"formStyle.js":"7f4f-72"},"imported":[{"uid":"7f4f-90"},{"uid":"7f4f-91"},{"uid":"7f4f-95"},{"uid":"7f4f-98"},{"uid":"7f4f-106"},{"uid":"7f4f-81"},{"uid":"7f4f-107"},{"uid":"7f4f-108"},{"uid":"7f4f-69"},{"uid":"7f4f-14"}],"importedBy":[{"uid":"7f4f-0"}]},"7f4f-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":"7f4f-74"},"imported":[],"importedBy":[{"uid":"7f4f-75"}]},"7f4f-75":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/jsonCode.vue","moduleParts":{"jsonCode.js":"7f4f-76"},"imported":[{"uid":"7f4f-81"},{"uid":"7f4f-119"},{"uid":"7f4f-108"},{"uid":"7f4f-73"},{"uid":"7f4f-14"}],"importedBy":[{"uid":"7f4f-16"},{"uid":"7f4f-40"}]},"7f4f-77":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/jsonEditor.vue","moduleParts":{"jsonEditor.js":"7f4f-78"},"imported":[{"uid":"7f4f-81"},{"uid":"7f4f-120"},{"uid":"7f4f-14"}],"importedBy":[{"uid":"7f4f-28"}]},"7f4f-79":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/globalFormList.vue","moduleParts":{"globalFormList.js":"7f4f-80"},"imported":[{"uid":"7f4f-81"},{"uid":"7f4f-14"}],"importedBy":[{"uid":"7f4f-28"}]},"7f4f-81":{"id":"vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-0"},{"uid":"7f4f-54"},{"uid":"7f4f-26"},{"uid":"7f4f-59"},{"uid":"7f4f-61"},{"uid":"7f4f-67"},{"uid":"7f4f-34"},{"uid":"7f4f-71"},{"uid":"7f4f-8"},{"uid":"7f4f-16"},{"uid":"7f4f-28"},{"uid":"7f4f-36"},{"uid":"7f4f-38"},{"uid":"7f4f-40"},{"uid":"7f4f-42"},{"uid":"7f4f-46"},{"uid":"7f4f-12"},{"uid":"7f4f-6"},{"uid":"7f4f-48"},{"uid":"7f4f-30"},{"uid":"7f4f-65"},{"uid":"7f4f-75"},{"uid":"7f4f-20"},{"uid":"7f4f-77"},{"uid":"7f4f-79"},{"uid":"7f4f-44"},{"uid":"7f4f-63"},{"uid":"7f4f-18"}],"isExternal":true},"7f4f-82":{"id":"element-plus/dist/index.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-0"}],"isExternal":true},"7f4f-83":{"id":"jsoneditor/dist/jsoneditor.min.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-0"}],"isExternal":true},"7f4f-84":{"id":"starfish-form-custom","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-0"},{"uid":"7f4f-16"}],"isExternal":true},"7f4f-85":{"id":"starfish-form-custom/dist/style.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-0"}],"isExternal":true},"7f4f-86":{"id":"vuedraggable","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-0"}],"isExternal":true},"7f4f-87":{"id":"mitt","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-4"}],"isExternal":true},"7f4f-88":{"id":"element-plus","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-10"}],"isExternal":true},"7f4f-89":{"id":"nanoid","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-10"}],"isExternal":true},"7f4f-90":{"id":"element-plus/es","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-26"},{"uid":"7f4f-59"},{"uid":"7f4f-61"},{"uid":"7f4f-67"},{"uid":"7f4f-71"},{"uid":"7f4f-16"},{"uid":"7f4f-28"},{"uid":"7f4f-38"},{"uid":"7f4f-40"},{"uid":"7f4f-65"},{"uid":"7f4f-63"}],"isExternal":true},"7f4f-91":{"id":"element-plus/es/components/base/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-26"},{"uid":"7f4f-59"},{"uid":"7f4f-61"},{"uid":"7f4f-67"},{"uid":"7f4f-71"},{"uid":"7f4f-16"},{"uid":"7f4f-28"},{"uid":"7f4f-38"},{"uid":"7f4f-40"},{"uid":"7f4f-65"},{"uid":"7f4f-63"}],"isExternal":true},"7f4f-92":{"id":"element-plus/es/components/loading/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-26"}],"isExternal":true},"7f4f-93":{"id":"element-plus/es/components/dialog/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-59"}],"isExternal":true},"7f4f-94":{"id":"element-plus/es/components/container/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-61"},{"uid":"7f4f-67"},{"uid":"7f4f-63"}],"isExternal":true},"7f4f-95":{"id":"element-plus/es/components/footer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-61"},{"uid":"7f4f-67"},{"uid":"7f4f-71"},{"uid":"7f4f-16"},{"uid":"7f4f-40"},{"uid":"7f4f-63"}],"isExternal":true},"7f4f-96":{"id":"element-plus/es/components/main/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-61"},{"uid":"7f4f-67"},{"uid":"7f4f-63"}],"isExternal":true},"7f4f-97":{"id":"element-plus/es/components/table/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-61"},{"uid":"7f4f-63"}],"isExternal":true},"7f4f-98":{"id":"element-plus/es/components/button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-61"},{"uid":"7f4f-67"},{"uid":"7f4f-71"},{"uid":"7f4f-16"},{"uid":"7f4f-38"},{"uid":"7f4f-40"},{"uid":"7f4f-65"},{"uid":"7f4f-63"}],"isExternal":true},"7f4f-99":{"id":"element-plus/es/components/switch/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-61"},{"uid":"7f4f-63"}],"isExternal":true},"7f4f-100":{"id":"element-plus/es/components/form/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-61"},{"uid":"7f4f-28"},{"uid":"7f4f-63"}],"isExternal":true},"7f4f-101":{"id":"element-plus/es/components/form-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-61"},{"uid":"7f4f-28"},{"uid":"7f4f-63"}],"isExternal":true},"7f4f-102":{"id":"element-plus/es/components/input/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-61"},{"uid":"7f4f-38"},{"uid":"7f4f-40"},{"uid":"7f4f-63"}],"isExternal":true},"7f4f-103":{"id":"element-plus/es/components/table-column/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-61"},{"uid":"7f4f-63"}],"isExternal":true},"7f4f-104":{"id":"element-plus/es/components/select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-61"},{"uid":"7f4f-65"},{"uid":"7f4f-63"}],"isExternal":true},"7f4f-105":{"id":"element-plus/es/components/option/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-61"},{"uid":"7f4f-65"},{"uid":"7f4f-63"}],"isExternal":true},"7f4f-106":{"id":"element-plus/es/components/tooltip/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-71"},{"uid":"7f4f-40"}],"isExternal":true},"7f4f-107":{"id":"@codemirror/lang-css","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-71"}],"isExternal":true},"7f4f-108":{"id":"vue-codemirror","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-71"},{"uid":"7f4f-75"}],"isExternal":true},"7f4f-109":{"id":"clipboard","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-16"}],"isExternal":true},"7f4f-110":{"id":"element-plus/es/components/message/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-16"},{"uid":"7f4f-40"},{"uid":"7f4f-63"}],"isExternal":true},"7f4f-111":{"id":"element-plus/es/components/tabs/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-28"}],"isExternal":true},"7f4f-112":{"id":"element-plus/es/components/tab-pane/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-28"}],"isExternal":true},"7f4f-113":{"id":"element-plus/es/components/empty/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-28"}],"isExternal":true},"7f4f-114":{"id":"element-plus/es/components/notification/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-28"}],"isExternal":true},"7f4f-115":{"id":"element-plus/es/components/upload/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-40"}],"isExternal":true},"7f4f-116":{"id":"element-plus/es/components/drawer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-40"}],"isExternal":true},"7f4f-117":{"id":"element-plus/es/components/tree/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-40"}],"isExternal":true},"7f4f-118":{"id":"keycon","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-50"}],"isExternal":true},"7f4f-119":{"id":"@codemirror/lang-json","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-75"}],"isExternal":true},"7f4f-120":{"id":"jsoneditor","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-77"}],"isExternal":true},"7f4f-121":{"id":"gesto","moduleParts":{},"imported":[],"importedBy":[{"uid":"7f4f-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;