starfish-form-custom 1.0.48 → 1.0.50

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.
@@ -11,7 +11,7 @@ import 'element-plus/es/components/button/style/css';
11
11
  import 'element-plus/es/components/tooltip/style/css';
12
12
  import { defineComponent, inject, ref, getCurrentInstance, reactive, onMounted, resolveComponent, openBlock, createElementBlock, normalizeClass, normalizeStyle, createElementVNode, toDisplayString, createCommentVNode, createBlock, withCtx, createTextVNode, createVNode, Fragment, renderList, withModifiers } from 'vue';
13
13
  import { Codemirror } from 'vue-codemirror';
14
- import { _ as _export_sfc } from './main-aab412b3.mjs';
14
+ import { _ as _export_sfc } from './main-cf41e44c.mjs';
15
15
  import 'element-plus/es/components/icon/style/css';
16
16
  import 'element-plus/es/components/checkbox/style/css';
17
17
  import '@element-plus/icons-vue';
@@ -13,9 +13,9 @@ import 'element-plus/es/components/dropdown-item/style/css';
13
13
  import 'element-plus/es/components/button/style/css';
14
14
  import 'element-plus/es/components/tooltip/style/css';
15
15
  import { defineComponent, getCurrentInstance, inject, computed, ref, resolveComponent, openBlock, createElementBlock, normalizeClass, createElementVNode, normalizeStyle, toDisplayString, createCommentVNode, createBlock, withCtx, createVNode, createTextVNode, Fragment, renderList } from 'vue';
16
- import { _ as _export_sfc, a as _, f as fieldProps, r as ruleList, b as ruleJsonData } from './main-aab412b3.mjs';
16
+ import { _ as _export_sfc, a as _, f as fieldProps, r as ruleList, b as ruleJsonData } from './main-cf41e44c.mjs';
17
17
  import { Delete } from '@element-plus/icons-vue';
18
- import Dynamicform from './starfish-form-a750924c.mjs';
18
+ import Dynamicform from './starfish-form-9be69e4b.mjs';
19
19
  import { Codemirror } from 'vue-codemirror';
20
20
  import 'element-plus/es/components/input/style/css';
21
21
  import 'element-plus/es/components/checkbox/style/css';
@@ -6,7 +6,7 @@ import 'element-plus/es/components/button/style/css';
6
6
  import 'element-plus/es/components/main/style/css';
7
7
  import 'element-plus/es/components/tooltip/style/css';
8
8
  import { defineComponent, ref, onMounted, watch, nextTick, resolveComponent, openBlock, createElementBlock, normalizeClass, createElementVNode, normalizeStyle, toDisplayString, createCommentVNode, createBlock, withCtx, createVNode, createTextVNode } from 'vue';
9
- import { _ as _export_sfc, a as _, g as getFormConfig, f as fieldProps, u as useWatch } from './main-aab412b3.mjs';
9
+ import { _ as _export_sfc, a as _, g as getFormConfig, f as fieldProps, u as useWatch } from './main-cf41e44c.mjs';
10
10
  import JSONEditor from 'jsoneditor';
11
11
  import 'element-plus/es/components/icon/style/css';
12
12
  import 'element-plus/es/components/input/style/css';
@@ -4,7 +4,7 @@ import 'element-plus/es/components/tooltip/style/css';
4
4
  import { defineComponent, ref, computed, watch, nextTick, resolveComponent, openBlock, createElementBlock, normalizeClass, createElementVNode, normalizeStyle, createCommentVNode, toDisplayString, createBlock, withCtx, withModifiers, createVNode } from 'vue';
5
5
  import { QuillEditor } from '@vueup/vue-quill';
6
6
  import '@vueup/vue-quill/dist/vue-quill.snow.css';
7
- import { _ as _export_sfc, g as getFormConfig, f as fieldProps, u as useWatch } from './main-aab412b3.mjs';
7
+ import { _ as _export_sfc, g as getFormConfig, f as fieldProps, u as useWatch } from './main-cf41e44c.mjs';
8
8
  import 'element-plus/es/components/icon/style/css';
9
9
  import 'element-plus/es/components/input/style/css';
10
10
  import 'element-plus/es/components/checkbox/style/css';
@@ -55,8 +55,9 @@ const _sfc_main = defineComponent({
55
55
  setup(props) {
56
56
  useWatch(props);
57
57
  const quillEditorRef = ref();
58
- const internalContent = ref(null);
58
+ const content = ref(null);
59
59
  const isEditorReady = ref(false);
60
+ const currentHtml = ref("");
60
61
  const toolbarOptions = [
61
62
  ["bold", "italic", "underline", "strike"],
62
63
  ["blockquote", "code-block"],
@@ -81,77 +82,68 @@ const _sfc_main = defineComponent({
81
82
  initContentFromProps();
82
83
  };
83
84
  const initContentFromProps = () => {
84
- if (!isEditorReady.value)
85
+ if (!isEditorReady.value || !quillEditorRef.value)
86
+ return;
87
+ const quill = quillEditorRef.value.getQuill();
88
+ if (!quill)
85
89
  return;
86
90
  const fieldName = props.item.data.fieldName;
87
91
  const rawValue = props.data[fieldName];
88
92
  const defaultValue = props.item.data.default || "";
93
+ currentHtml.value = quill.root.innerHTML || "";
89
94
  if (rawValue === void 0 || rawValue === null || rawValue === "") {
90
- internalContent.value = defaultValue;
91
- return;
92
- }
93
- if (rawValue && typeof rawValue === "object" && Array.isArray(rawValue.ops)) {
94
- internalContent.value = rawValue;
95
+ if (defaultValue) {
96
+ quill.clipboard.dangerouslyPasteHTML(0, defaultValue);
97
+ content.value = quill.getContents();
98
+ }
95
99
  return;
96
100
  }
97
- if (typeof rawValue === "string") {
98
- if (rawValue.trim().startsWith("{") || rawValue.trim().startsWith("[")) {
99
- try {
100
- const parsed = JSON.parse(rawValue);
101
- if (parsed && Array.isArray(parsed.ops)) {
102
- internalContent.value = parsed;
103
- } else {
104
- internalContent.value = rawValue;
105
- }
106
- } catch {
107
- internalContent.value = rawValue;
108
- }
109
- } else {
110
- internalContent.value = rawValue;
101
+ if (typeof rawValue === "string" && rawValue.trim()) {
102
+ const cleanHtml = rawValue.replace(/\\"/g, '"').replace(/\\'/g, "'");
103
+ if (currentHtml.value !== cleanHtml) {
104
+ quill.setContents([]);
105
+ quill.clipboard.dangerouslyPasteHTML(0, cleanHtml);
106
+ content.value = quill.getContents();
107
+ currentHtml.value = cleanHtml;
111
108
  }
112
109
  return;
113
110
  }
114
- internalContent.value = defaultValue;
115
111
  };
116
112
  const handleContentChange = (value) => {
117
- internalContent.value = value;
118
113
  if (!quillEditorRef.value)
119
114
  return;
120
115
  const quill = quillEditorRef.value.getQuill();
121
116
  if (!quill)
122
117
  return;
123
- const fieldName = props.item.data.fieldName;
124
- const htmlContent = quill.root.innerHTML;
125
- props.data[fieldName] = htmlContent;
118
+ const newHtml = quill.root.innerHTML;
119
+ if (newHtml !== currentHtml.value) {
120
+ const fieldName = props.item.data.fieldName;
121
+ props.data[fieldName] = newHtml;
122
+ currentHtml.value = newHtml;
123
+ }
126
124
  };
127
125
  watch(
128
126
  () => props.data[props.item.data.fieldName],
129
127
  (newValue) => {
130
- if (!isEditorReady.value)
128
+ if (!isEditorReady.value || !quillEditorRef.value)
131
129
  return;
132
- let newInternalValue = null;
130
+ const quill = quillEditorRef.value.getQuill();
131
+ if (!quill)
132
+ return;
133
+ const currentEditorHtml = quill.root.innerHTML || "";
134
+ let newHtml = "";
133
135
  if (newValue === void 0 || newValue === null || newValue === "") {
134
- newInternalValue = props.item.data.default || "";
135
- } else if (newValue && typeof newValue === "object" && Array.isArray(newValue.ops)) {
136
- newInternalValue = newValue;
136
+ newHtml = props.item.data.default || "";
137
137
  } else if (typeof newValue === "string") {
138
- if (newValue.trim().startsWith("{") || newValue.trim().startsWith("[")) {
139
- try {
140
- const parsed = JSON.parse(newValue);
141
- if (parsed && Array.isArray(parsed.ops)) {
142
- newInternalValue = parsed;
143
- } else {
144
- newInternalValue = newValue;
145
- }
146
- } catch {
147
- newInternalValue = newValue;
148
- }
149
- } else {
150
- newInternalValue = newValue;
151
- }
138
+ newHtml = newValue;
152
139
  }
153
- if (JSON.stringify(newInternalValue) !== JSON.stringify(internalContent.value)) {
154
- internalContent.value = newInternalValue;
140
+ if (newHtml !== currentEditorHtml && newHtml !== currentHtml.value) {
141
+ quill.setContents([]);
142
+ if (newHtml) {
143
+ quill.clipboard.dangerouslyPasteHTML(0, newHtml);
144
+ }
145
+ content.value = quill.getContents();
146
+ currentHtml.value = newHtml;
155
147
  }
156
148
  },
157
149
  { immediate: true }
@@ -164,7 +156,7 @@ const _sfc_main = defineComponent({
164
156
  }
165
157
  });
166
158
  return {
167
- content: internalContent,
159
+ content,
168
160
  quillEditorRef,
169
161
  handleContentChange,
170
162
  onEditorReady,
@@ -221,9 +213,9 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
221
213
  createVNode(_component_QuillEditor, {
222
214
  ref: "quillEditorRef",
223
215
  theme: "snow",
224
- content: _ctx.internalContent,
216
+ content: _ctx.content,
225
217
  "onUpdate:content": [
226
- _cache[0] || (_cache[0] = ($event) => _ctx.internalContent = $event),
218
+ _cache[0] || (_cache[0] = ($event) => _ctx.content = $event),
227
219
  _ctx.handleContentChange
228
220
  ],
229
221
  onReady: _ctx.onEditorReady,
@@ -235,6 +227,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
235
227
  ], 4)
236
228
  ], 10, _hoisted_1);
237
229
  }
238
- const index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-77a8db1a"]]);
230
+ const index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-2300937a"]]);
239
231
 
240
232
  export { index as default };
@@ -2121,13 +2121,14 @@ function _sfc_render$k(_ctx, _cache, $props, $setup, $data, $options) {
2121
2121
  (openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.item.data.itemConfig.items, (sitem, sindex) => {
2122
2122
  return openBlock(), createBlock(_component_el_checkbox, {
2123
2123
  key: sindex,
2124
- label: sitem.value
2124
+ label: sitem.value,
2125
+ value: sitem.value
2125
2126
  }, {
2126
2127
  default: withCtx(() => [
2127
2128
  createTextVNode(toDisplayString(sitem.label), 1)
2128
2129
  ]),
2129
2130
  _: 2
2130
- }, 1032, ["label"]);
2131
+ }, 1032, ["label", "value"]);
2131
2132
  }), 128))
2132
2133
  ]),
2133
2134
  _: 1
@@ -2144,13 +2145,14 @@ function _sfc_render$k(_ctx, _cache, $props, $setup, $data, $options) {
2144
2145
  (openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.item.data.itemConfig.items, (sitem, sindex) => {
2145
2146
  return openBlock(), createBlock(_component_el_checkbox, {
2146
2147
  key: sindex,
2147
- label: sitem.value
2148
+ label: sitem.value,
2149
+ value: sitem.value
2148
2150
  }, {
2149
2151
  default: withCtx(() => [
2150
2152
  createTextVNode(toDisplayString(sitem.label), 1)
2151
2153
  ]),
2152
2154
  _: 2
2153
- }, 1032, ["label"]);
2155
+ }, 1032, ["label", "value"]);
2154
2156
  }), 128))
2155
2157
  ]),
2156
2158
  _: 1
@@ -2693,13 +2695,14 @@ function _sfc_render$f(_ctx, _cache, $props, $setup, $data, $options) {
2693
2695
  return openBlock(), createBlock(_component_el_radio, {
2694
2696
  key: sindex,
2695
2697
  label: sitem.value,
2698
+ value: sitem.value,
2696
2699
  disabled: _ctx.item.data.state === "disabled" || _ctx.item.data.state === "readonly"
2697
2700
  }, {
2698
2701
  default: withCtx(() => [
2699
2702
  createTextVNode(toDisplayString(sitem.label), 1)
2700
2703
  ]),
2701
2704
  _: 2
2702
- }, 1032, ["label", "disabled"]);
2705
+ }, 1032, ["label", "value", "disabled"]);
2703
2706
  }), 128))
2704
2707
  ]),
2705
2708
  _: 1
@@ -2716,13 +2719,14 @@ function _sfc_render$f(_ctx, _cache, $props, $setup, $data, $options) {
2716
2719
  return openBlock(), createBlock(_component_el_radio, {
2717
2720
  key: sindex,
2718
2721
  label: sitem.value,
2722
+ value: sitem.value,
2719
2723
  disabled: _ctx.item.data.state === "disabled" || _ctx.item.data.state === "readonly"
2720
2724
  }, {
2721
2725
  default: withCtx(() => [
2722
2726
  createTextVNode(toDisplayString(sitem.label), 1)
2723
2727
  ]),
2724
2728
  _: 2
2725
- }, 1032, ["label", "disabled"]);
2729
+ }, 1032, ["label", "value", "disabled"]);
2726
2730
  }), 128))
2727
2731
  ]),
2728
2732
  _: 1
@@ -5395,7 +5399,7 @@ Object.keys(files).forEach((fileName) => {
5395
5399
  }
5396
5400
  });
5397
5401
  const RichText = defineAsyncComponent({
5398
- loader: () => import('./index-5ee7ae61.mjs'),
5402
+ loader: () => import('./index-333f9fc6.mjs'),
5399
5403
  loadingComponent: Loading
5400
5404
  });
5401
5405
  RichText.ControlType = "RichText";
@@ -5404,7 +5408,7 @@ RichText.icon = "icon-textEdit";
5404
5408
  RichText.formConfig = getFormConfig("RichText");
5405
5409
  utilFuns[RichText.ControlType] = RichText;
5406
5410
  const jsonEditor = defineAsyncComponent({
5407
- loader: () => import('./index-ec5813e3.mjs'),
5411
+ loader: () => import('./index-29f0cb1d.mjs'),
5408
5412
  loadingComponent: Loading
5409
5413
  });
5410
5414
  jsonEditor.ControlType = "JsonEditor";
@@ -5414,14 +5418,14 @@ jsonEditor.formConfig = getFormConfig("JsonEditor", [{ fieldName: "default", com
5414
5418
  jsonEditor.rule = _.getJsonValidate();
5415
5419
  utilFuns[jsonEditor.ControlType] = jsonEditor;
5416
5420
  const formAction = defineAsyncComponent({
5417
- loader: () => import('./formAction-8f689053.mjs'),
5421
+ loader: () => import('./formAction-721a6451.mjs'),
5418
5422
  loadingComponent: Loading
5419
5423
  });
5420
5424
  formAction.ControlType = "FormAction";
5421
5425
  formAction.isHide = true;
5422
5426
  utilFuns[formAction.ControlType] = formAction;
5423
5427
  const Rule = defineAsyncComponent({
5424
- loader: () => import('./index-3c21357b.mjs'),
5428
+ loader: () => import('./index-01c5aec1.mjs'),
5425
5429
  loadingComponent: Loading
5426
5430
  });
5427
5431
  Rule.ControlType = "Rule";
@@ -5430,7 +5434,7 @@ utilFuns[Rule.ControlType] = Rule;
5430
5434
  const install = (app) => {
5431
5435
  app.config.globalProperties.$formcomponents = utilFuns;
5432
5436
  };
5433
- const Dynamicform = defineAsyncComponent(() => import('./starfish-form-a750924c.mjs'));
5437
+ const Dynamicform = defineAsyncComponent(() => import('./starfish-form-9be69e4b.mjs'));
5434
5438
  const main = {
5435
5439
  install
5436
5440
  };
@@ -3,7 +3,7 @@ import 'element-plus/es/components/base/style/css';
3
3
  import 'element-plus/es/components/form/style/css';
4
4
  import 'element-plus/es/components/form-item/style/css';
5
5
  import { defineComponent, getCurrentInstance, ref, onMounted, openBlock, createElementBlock, createVNode, mergeProps, withCtx, Fragment, renderList, createBlock, resolveDynamicComponent, createCommentVNode, toRaw } from 'vue';
6
- import { _ as _export_sfc } from './main-aab412b3.mjs';
6
+ import { _ as _export_sfc } from './main-cf41e44c.mjs';
7
7
  import 'element-plus/es/components/icon/style/css';
8
8
  import 'element-plus/es/components/input/style/css';
9
9
  import 'element-plus/es/components/checkbox/style/css';
@@ -1,4 +1,4 @@
1
- export { D as Dynamicform, m as default } from './main-aab412b3.mjs';
1
+ export { D as Dynamicform, m as default } from './main-cf41e44c.mjs';
2
2
  import 'vue';
3
3
  import 'element-plus/es';
4
4
  import 'element-plus/es/components/base/style/css';
package/dist/style.css CHANGED
@@ -424,15 +424,15 @@
424
424
  width: 100%;
425
425
  min-height: 60px;
426
426
  height: 100%;
427
- }.rich-text-editor[data-v-77a8db1a] {
427
+ }.rich-text-editor[data-v-2300937a] {
428
428
  min-height: 200px;
429
429
  position: relative;
430
430
  z-index: 1;
431
431
  }
432
- [data-v-77a8db1a] .editor-content {
432
+ [data-v-2300937a] .editor-content {
433
433
  min-height: 200px;
434
434
  }
435
- [data-v-77a8db1a] .editor-content .ql-toolbar {
435
+ [data-v-2300937a] .editor-content .ql-toolbar {
436
436
  z-index: 100;
437
437
  background: white;
438
438
  border: 1px solid #ccc;
@@ -440,7 +440,7 @@
440
440
  border-top-right-radius: 4px;
441
441
  position: relative;
442
442
  }
443
- [data-v-77a8db1a] .editor-content .ql-container {
443
+ [data-v-2300937a] .editor-content .ql-container {
444
444
  border: 1px solid #ccc;
445
445
  border-top: none;
446
446
  border-bottom-left-radius: 4px;
@@ -448,7 +448,7 @@
448
448
  min-height: 200px;
449
449
  z-index: 99;
450
450
  }
451
- [data-v-77a8db1a] .shape .rich-text-editor {
451
+ [data-v-2300937a] .shape .rich-text-editor {
452
452
  pointer-events: auto !important;
453
453
  }.cm-gutters.cm-gutters-before {
454
454
  background: #133F63;
@@ -49,8 +49,8 @@ export declare const Dynamicform: DefineComponent<ExtractPropTypes<{
49
49
  default: boolean;
50
50
  };
51
51
  }>> & Readonly<{}>, {
52
- search: boolean;
53
52
  readonly: boolean;
53
+ search: boolean;
54
54
  allFormList: any;
55
55
  formResult: Record<string, any>;
56
56
  globalConfig: Record<string, any>;
@@ -49,8 +49,8 @@ declare const _sfc_main: DefineComponent<ExtractPropTypes<{
49
49
  default: boolean;
50
50
  };
51
51
  }>> & Readonly<{}>, {
52
- search: boolean;
53
52
  readonly: boolean;
53
+ search: boolean;
54
54
  allFormList: any;
55
55
  formResult: Record<string, any>;
56
56
  globalConfig: Record<string, any>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "starfish-form-custom",
3
- "version": "1.0.48",
3
+ "version": "1.0.50",
4
4
  "main": "dist/starfish-form.mjs",
5
5
  "style": "dist/style.css",
6
6
  "module": "dist/starfish-form.mjs",
@@ -13,10 +13,10 @@
13
13
  {{ getDisplayText() }}
14
14
  </span>
15
15
  <el-checkbox-group v-model="data[item.data.fieldName]" :class="{'vertical-group': item.data.arrangeMent === 'vertical'}" v-else-if="!drag && data[item.data.fieldName]" :size="size" :disabled="item.data.state === 'disabled' || item.data.state === 'readonly'">
16
- <el-checkbox v-for="(sitem, sindex) in item.data.itemConfig.items" :key="sindex" :label="sitem.value">{{ sitem.label }}</el-checkbox>
16
+ <el-checkbox v-for="(sitem, sindex) in item.data.itemConfig.items" :key="sindex" :label="sitem.value" :value="sitem.value">{{ sitem.label }}</el-checkbox>
17
17
  </el-checkbox-group>
18
18
  <el-checkbox-group v-model="item.data.itemConfig.value" :class="{'vertical-group': item.data.arrangeMent === 'vertical'}" v-if="drag" :size="size" :disabled="item.data.state === 'disabled' || item.data.state === 'readonly'">
19
- <el-checkbox v-for="(sitem, sindex) in item.data.itemConfig.items" :key="sindex" :label="sitem.value">{{ sitem.label }}</el-checkbox>
19
+ <el-checkbox v-for="(sitem, sindex) in item.data.itemConfig.items" :key="sindex" :label="sitem.value" :value="sitem.value">{{ sitem.label }}</el-checkbox>
20
20
  </el-checkbox-group>
21
21
  </div>
22
22
  </div>
@@ -43,6 +43,7 @@
43
43
  v-for="(sitem, sindex) in item.data.itemConfig.items"
44
44
  :key="sindex"
45
45
  :label="sitem.value"
46
+ :value="sitem.value"
46
47
  :disabled="item.data.state === 'disabled' || item.data.state === 'readonly'"
47
48
  >{{ sitem.label }}</el-radio
48
49
  >
@@ -57,6 +58,7 @@
57
58
  v-for="(sitem, sindex) in item.data.itemConfig.items"
58
59
  :key="sindex"
59
60
  :label="sitem.value"
61
+ :value="sitem.value"
60
62
  :disabled="item.data.state === 'disabled' || item.data.state === 'readonly'"
61
63
  >{{ sitem.label }}</el-radio
62
64
  >
@@ -38,7 +38,7 @@
38
38
  <QuillEditor
39
39
  ref="quillEditorRef"
40
40
  theme="snow"
41
- v-model:content="internalContent"
41
+ v-model:content="content"
42
42
  @update:content="handleContentChange"
43
43
  @ready="onEditorReady"
44
44
  :toolbar="toolbarOptions"
@@ -75,8 +75,9 @@ export default defineComponent({
75
75
  setup(props) {
76
76
  useWatch(props);
77
77
  const quillEditorRef = ref<InstanceType<typeof QuillEditor>>();
78
- const internalContent = ref<string | Delta | null>(null);
78
+ const content = ref<Delta | string | null>(null);
79
79
  const isEditorReady = ref(false);
80
+ const currentHtml = ref<string>(""); // 保存当前显示的 HTML
80
81
 
81
82
  const toolbarOptions = [
82
83
  ["bold", "italic", "underline", "strike"],
@@ -105,69 +106,60 @@ export default defineComponent({
105
106
  initContentFromProps();
106
107
  };
107
108
 
108
- // 从 props 初始化内容(支持字符串和 Delta 对象)
109
+ // 初始化内容
109
110
  const initContentFromProps = () => {
110
- if (!isEditorReady.value) return;
111
+ if (!isEditorReady.value || !quillEditorRef.value) return;
112
+
113
+ const quill = quillEditorRef.value.getQuill();
114
+ if (!quill) return;
111
115
 
112
116
  const fieldName = props.item.data.fieldName;
113
117
  const rawValue = props.data[fieldName];
114
118
  const defaultValue = props.item.data.default || "";
115
119
 
120
+ // 获取当前 HTML(初始化时应该是空)
121
+ currentHtml.value = quill.root.innerHTML || "";
122
+
116
123
  // 处理空值
117
124
  if (rawValue === undefined || rawValue === null || rawValue === "") {
118
- internalContent.value = defaultValue;
125
+ if (defaultValue) {
126
+ quill.clipboard.dangerouslyPasteHTML(0, defaultValue);
127
+ content.value = quill.getContents();
128
+ }
119
129
  return;
120
130
  }
121
131
 
122
- // 情况1:如果是 Delta 对象({ ops: [...] })
123
- if (
124
- rawValue &&
125
- typeof rawValue === "object" &&
126
- Array.isArray(rawValue.ops)
127
- ) {
128
- internalContent.value = rawValue;
129
- return;
130
- }
132
+ // 处理字符串类型的 HTML
133
+ if (typeof rawValue === "string" && rawValue.trim()) {
134
+ // 处理转义字符
135
+ const cleanHtml = rawValue.replace(/\\"/g, '"').replace(/\\'/g, "'");
131
136
 
132
- // 情况2:如果是字符串
133
- if (typeof rawValue === "string") {
134
- // 尝试解析是否为 JSON 字符串的 Delta
135
- if (rawValue.trim().startsWith("{") || rawValue.trim().startsWith("[")) {
136
- try {
137
- const parsed = JSON.parse(rawValue);
138
- if (parsed && Array.isArray(parsed.ops)) {
139
- internalContent.value = parsed;
140
- } else {
141
- // 不是 Delta JSON,当作普通 HTML 字符串
142
- internalContent.value = rawValue;
143
- }
144
- } catch {
145
- // 解析失败,当作普通 HTML 字符串
146
- internalContent.value = rawValue;
147
- }
148
- } else {
149
- // 普通字符串
150
- internalContent.value = rawValue;
137
+ if (currentHtml.value !== cleanHtml) {
138
+ quill.setContents([]);
139
+ quill.clipboard.dangerouslyPasteHTML(0, cleanHtml);
140
+ content.value = quill.getContents();
141
+ currentHtml.value = cleanHtml;
151
142
  }
152
143
  return;
153
144
  }
154
-
155
- // 情况3:其他类型,使用默认值
156
- internalContent.value = defaultValue;
157
145
  };
158
146
 
159
147
  // 处理内容变化
160
- const handleContentChange = (value: string | Delta) => {
161
- internalContent.value = value;
162
-
148
+ const handleContentChange = (value: Delta | string) => {
163
149
  if (!quillEditorRef.value) return;
164
150
 
165
151
  const quill = quillEditorRef.value.getQuill();
166
152
  if (!quill) return;
167
153
 
168
- const fieldName = props.item.data.fieldName;
169
- const htmlContent = quill.root.innerHTML;
170
- props.data[fieldName] = htmlContent;
154
+ // 获取最新的 HTML
155
+ const newHtml = quill.root.innerHTML;
156
+
157
+ // 只有当 HTML 真正发生变化时才更新父组件
158
+ if (newHtml !== currentHtml.value) {
159
+ const fieldName = props.item.data.fieldName;
160
+ props.data[fieldName] = newHtml;
161
+ currentHtml.value = newHtml;
162
+ }
171
163
  };
172
164
 
173
165
  // 监听外部数据变化(父组件更新时)
@@ -175,40 +167,31 @@ export default defineComponent({
175
167
  () => props.data[props.item.data.fieldName],
176
168
  (newValue) => {
177
169
  // 避免循环更新
178
- if (!isEditorReady.value) return;
170
+ if (!isEditorReady.value || !quillEditorRef.value) return;
179
171
 
180
- // 转换为内部表示
181
- let newInternalValue: string | Delta | null = null;
172
+ const quill = quillEditorRef.value.getQuill();
173
+ if (!quill) return;
182
174
 
175
+ // 获取当前编辑器的 HTML
176
+ const currentEditorHtml = quill.root.innerHTML || "";
177
+
178
+ // 处理新值
179
+ let newHtml = "";
183
180
  if (newValue === undefined || newValue === null || newValue === "") {
184
- newInternalValue = props.item.data.default || "";
185
- } else if (
186
- newValue &&
187
- typeof newValue === "object" &&
188
- Array.isArray(newValue.ops)
189
- ) {
190
- // Delta 对象
191
- newInternalValue = newValue;
181
+ newHtml = props.item.data.default || "";
192
182
  } else if (typeof newValue === "string") {
193
- // 字符串(可能是 HTML 或 JSON 字符串)
194
- if (newValue.trim().startsWith("{") || newValue.trim().startsWith("[")) {
195
- try {
196
- const parsed = JSON.parse(newValue);
197
- if (parsed && Array.isArray(parsed.ops)) {
198
- newInternalValue = parsed;
199
- } else {
200
- newInternalValue = newValue;
201
- }
202
- } catch {
203
- newInternalValue = newValue;
204
- }
205
- } else {
206
- newInternalValue = newValue;
207
- }
183
+ newHtml = newValue;
208
184
  }
209
- // 只有值真正变化时才更新
210
- if (JSON.stringify(newInternalValue) !== JSON.stringify(internalContent.value)) {
211
- internalContent.value = newInternalValue;
185
+
186
+ // 只有值真正变化时才更新编辑器
187
+ if (newHtml !== currentEditorHtml && newHtml !== currentHtml.value) {
188
+ // 清空编辑器后插入新内容
189
+ quill.setContents([]);
190
+ if (newHtml) {
191
+ quill.clipboard.dangerouslyPasteHTML(0, newHtml);
192
+ }
193
+ content.value = quill.getContents();
194
+ currentHtml.value = newHtml;
212
195
  }
213
196
  },
214
197
  { immediate: true }
@@ -224,7 +207,7 @@ export default defineComponent({
224
207
  });
225
208
 
226
209
  return {
227
- content: internalContent,
210
+ content,
228
211
  quillEditorRef,
229
212
  handleContentChange,
230
213
  onEditorReady,
@@ -269,4 +252,4 @@ export default defineComponent({
269
252
  pointer-events: auto !important;
270
253
  }
271
254
  }
272
- </style>
255
+ </style>
package/stats.html CHANGED
@@ -4929,7 +4929,7 @@ var drawChart = (function (exports) {
4929
4929
  </script>
4930
4930
  <script>
4931
4931
  /*<!--*/
4932
- const data = {"version":2,"tree":{"name":"root","children":[{"name":"starfish-form.mjs","uid":"769f3df4-1"},{"name":"main-aab412b3.mjs","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design","children":[{"name":"packages","children":[{"name":"form/src","children":[{"name":"utils","children":[{"uid":"769f3df4-3","name":"fieldConfig.ts"},{"uid":"769f3df4-5","name":"fieldProps.ts"},{"uid":"769f3df4-23","name":"customHooks.ts"}]},{"name":"common","children":[{"uid":"769f3df4-9","name":"KeyValueConfig.vue"},{"uid":"769f3df4-11","name":"KeyValueConfigMult.vue"},{"uid":"769f3df4-13","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"769f3df4-15","name":"Loading.vue"},{"uid":"769f3df4-17","name":"action.vue"},{"uid":"769f3df4-19","name":"listConfig.vue"},{"uid":"769f3df4-21","name":"panel.vue"},{"uid":"769f3df4-25","name":"radiogroup.vue"}]},{"name":"components","children":[{"name":"CheckBox/index.vue","uid":"769f3df4-27"},{"name":"ColorSelect","children":[{"uid":"769f3df4-29","name":"index.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"769f3df4-31","name":"index.vue"}]},{"name":"Date/index.vue","uid":"769f3df4-33"},{"name":"DateTime/index.vue","uid":"769f3df4-35"},{"name":"InputNumber/index.vue","uid":"769f3df4-37"},{"name":"Radio/index.vue","uid":"769f3df4-39"},{"name":"Rule","children":[{"uid":"769f3df4-41","name":"ruleform.json"},{"uid":"769f3df4-43","name":"rules.js"}]},{"name":"Selected/index.vue","uid":"769f3df4-45"},{"name":"Selecteds/index.vue","uid":"769f3df4-47"},{"name":"ShowRule/index.vue","uid":"769f3df4-49"},{"name":"Slider/index.vue","uid":"769f3df4-51"},{"name":"Switch/index.vue","uid":"769f3df4-53"},{"name":"Text/index.vue","uid":"769f3df4-55"},{"name":"TextArea/index.vue","uid":"769f3df4-57"},{"name":"Time/index.vue","uid":"769f3df4-59"}]},{"name":"layout","children":[{"uid":"769f3df4-61","name":"Divider.vue"},{"uid":"769f3df4-63","name":"Info.vue"},{"uid":"769f3df4-65","name":"Tabs.vue"},{"uid":"769f3df4-67","name":"collapse.vue"},{"uid":"769f3df4-69","name":"grid.vue"},{"uid":"769f3df4-71","name":"table.vue"}]},{"name":"styles/index.scss","uid":"769f3df4-73"},{"uid":"769f3df4-86","name":"main.ts"}]},{"name":"editor/src","children":[{"name":"controller","children":[{"uid":"769f3df4-77","name":"history.ts"},{"uid":"769f3df4-79","name":"form.ts"}]},{"name":"utils/_.ts","uid":"769f3df4-81"},{"name":"common","children":[{"uid":"769f3df4-83","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"769f3df4-85","name":"Loading.vue"}]}]}]},{"name":"node_modules/.pnpm/nanoid@4.0.2/node_modules/nanoid/index.browser.js","uid":"769f3df4-75"}]},{"uid":"769f3df4-7","name":"plugin-vue:export-helper"}]},{"name":"index-5ee7ae61.mjs","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/RichText","children":[{"uid":"769f3df4-88","name":"index.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"769f3df4-90","name":"index.vue"}]}]},{"name":"index-ec5813e3.mjs","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","uid":"769f3df4-92"}]},{"name":"formAction-8f689053.mjs","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common","children":[{"uid":"769f3df4-94","name":"formAction.vue?vue&type=style&index=0&lang.scss"},{"uid":"769f3df4-96","name":"formAction.vue"}]}]},{"name":"index-3c21357b.mjs","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Rule","children":[{"uid":"769f3df4-98","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"769f3df4-100","name":"index.vue"}]}]},{"name":"starfish-form-a750924c.mjs","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","uid":"769f3df4-102"}]}],"isRoot":true},"nodeParts":{"769f3df4-1":{"id":"starfish-form.mjs","gzipLength":0,"brotliLength":0,"renderedLength":1902,"metaUid":"769f3df4-0"},"769f3df4-3":{"renderedLength":18542,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-2"},"769f3df4-5":{"renderedLength":681,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-4"},"769f3df4-7":{"renderedLength":159,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-6"},"769f3df4-9":{"renderedLength":8553,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-8"},"769f3df4-11":{"renderedLength":8386,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-10"},"769f3df4-13":{"renderedLength":103,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-12"},"769f3df4-15":{"renderedLength":405,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-14"},"769f3df4-17":{"renderedLength":8484,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-16"},"769f3df4-19":{"renderedLength":3246,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-18"},"769f3df4-21":{"renderedLength":5328,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-20"},"769f3df4-23":{"renderedLength":482,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-22"},"769f3df4-25":{"renderedLength":2209,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-24"},"769f3df4-27":{"renderedLength":5439,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-26"},"769f3df4-29":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-28"},"769f3df4-31":{"renderedLength":3717,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-30"},"769f3df4-33":{"renderedLength":5563,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-32"},"769f3df4-35":{"renderedLength":4809,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-34"},"769f3df4-37":{"renderedLength":4772,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-36"},"769f3df4-39":{"renderedLength":5147,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-38"},"769f3df4-41":{"renderedLength":5040,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-40"},"769f3df4-43":{"renderedLength":2633,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-42"},"769f3df4-45":{"renderedLength":5365,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-44"},"769f3df4-47":{"renderedLength":5377,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-46"},"769f3df4-49":{"renderedLength":4066,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-48"},"769f3df4-51":{"renderedLength":2925,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-50"},"769f3df4-53":{"renderedLength":3362,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-52"},"769f3df4-55":{"renderedLength":4735,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-54"},"769f3df4-57":{"renderedLength":4541,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-56"},"769f3df4-59":{"renderedLength":3221,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-58"},"769f3df4-61":{"renderedLength":1315,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-60"},"769f3df4-63":{"renderedLength":2984,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-62"},"769f3df4-65":{"renderedLength":5888,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-64"},"769f3df4-67":{"renderedLength":6238,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-66"},"769f3df4-69":{"renderedLength":6689,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-68"},"769f3df4-71":{"renderedLength":6149,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-70"},"769f3df4-73":{"renderedLength":17,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-72"},"769f3df4-75":{"renderedLength":350,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-74"},"769f3df4-77":{"renderedLength":1613,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-76"},"769f3df4-79":{"renderedLength":6014,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-78"},"769f3df4-81":{"renderedLength":11658,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-80"},"769f3df4-83":{"renderedLength":101,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-82"},"769f3df4-85":{"renderedLength":391,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-84"},"769f3df4-86":{"renderedLength":2981,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-0"},"769f3df4-88":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-87"},"769f3df4-90":{"renderedLength":6861,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-89"},"769f3df4-92":{"renderedLength":6608,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-91"},"769f3df4-94":{"renderedLength":92,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-93"},"769f3df4-96":{"renderedLength":16981,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-95"},"769f3df4-98":{"renderedLength":87,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-97"},"769f3df4-100":{"renderedLength":17071,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-99"},"769f3df4-102":{"renderedLength":9949,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-101"}},"nodeMetas":{"769f3df4-0":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/main.ts","moduleParts":{"starfish-form.mjs":"769f3df4-1","main-aab412b3.mjs":"769f3df4-86"},"imported":[{"uid":"769f3df4-8"},{"uid":"769f3df4-10"},{"uid":"769f3df4-14"},{"uid":"769f3df4-16"},{"uid":"769f3df4-18"},{"uid":"769f3df4-20"},{"uid":"769f3df4-24"},{"uid":"769f3df4-26"},{"uid":"769f3df4-30"},{"uid":"769f3df4-32"},{"uid":"769f3df4-34"},{"uid":"769f3df4-36"},{"uid":"769f3df4-38"},{"uid":"769f3df4-40"},{"uid":"769f3df4-42"},{"uid":"769f3df4-44"},{"uid":"769f3df4-46"},{"uid":"769f3df4-48"},{"uid":"769f3df4-50"},{"uid":"769f3df4-52"},{"uid":"769f3df4-54"},{"uid":"769f3df4-56"},{"uid":"769f3df4-58"},{"uid":"769f3df4-60"},{"uid":"769f3df4-62"},{"uid":"769f3df4-64"},{"uid":"769f3df4-66"},{"uid":"769f3df4-68"},{"uid":"769f3df4-70"},{"uid":"769f3df4-103"},{"uid":"769f3df4-72"},{"uid":"769f3df4-2"},{"uid":"769f3df4-80"},{"uid":"769f3df4-84"},{"uid":"769f3df4-89","dynamic":true},{"uid":"769f3df4-91","dynamic":true},{"uid":"769f3df4-95","dynamic":true},{"uid":"769f3df4-99","dynamic":true},{"uid":"769f3df4-101","dynamic":true}],"importedBy":[],"isEntry":true},"769f3df4-2":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/utils/fieldConfig.ts","moduleParts":{"main-aab412b3.mjs":"769f3df4-3"},"imported":[],"importedBy":[{"uid":"769f3df4-0"},{"uid":"769f3df4-8"},{"uid":"769f3df4-10"},{"uid":"769f3df4-26"},{"uid":"769f3df4-30"},{"uid":"769f3df4-32"},{"uid":"769f3df4-34"},{"uid":"769f3df4-36"},{"uid":"769f3df4-38"},{"uid":"769f3df4-44"},{"uid":"769f3df4-46"},{"uid":"769f3df4-50"},{"uid":"769f3df4-52"},{"uid":"769f3df4-54"},{"uid":"769f3df4-56"},{"uid":"769f3df4-58"},{"uid":"769f3df4-60"},{"uid":"769f3df4-62"},{"uid":"769f3df4-64"},{"uid":"769f3df4-66"},{"uid":"769f3df4-68"},{"uid":"769f3df4-70"},{"uid":"769f3df4-89"},{"uid":"769f3df4-91"}]},"769f3df4-4":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/utils/fieldProps.ts","moduleParts":{"main-aab412b3.mjs":"769f3df4-5"},"imported":[],"importedBy":[{"uid":"769f3df4-8"},{"uid":"769f3df4-10"},{"uid":"769f3df4-16"},{"uid":"769f3df4-18"},{"uid":"769f3df4-20"},{"uid":"769f3df4-24"},{"uid":"769f3df4-26"},{"uid":"769f3df4-30"},{"uid":"769f3df4-32"},{"uid":"769f3df4-34"},{"uid":"769f3df4-36"},{"uid":"769f3df4-38"},{"uid":"769f3df4-44"},{"uid":"769f3df4-46"},{"uid":"769f3df4-48"},{"uid":"769f3df4-50"},{"uid":"769f3df4-52"},{"uid":"769f3df4-54"},{"uid":"769f3df4-56"},{"uid":"769f3df4-58"},{"uid":"769f3df4-60"},{"uid":"769f3df4-62"},{"uid":"769f3df4-64"},{"uid":"769f3df4-66"},{"uid":"769f3df4-68"},{"uid":"769f3df4-70"},{"uid":"769f3df4-89"},{"uid":"769f3df4-91"},{"uid":"769f3df4-99"}]},"769f3df4-6":{"id":"plugin-vue:export-helper","moduleParts":{"main-aab412b3.mjs":"769f3df4-7"},"imported":[],"importedBy":[{"uid":"769f3df4-8"},{"uid":"769f3df4-10"},{"uid":"769f3df4-14"},{"uid":"769f3df4-16"},{"uid":"769f3df4-18"},{"uid":"769f3df4-20"},{"uid":"769f3df4-24"},{"uid":"769f3df4-26"},{"uid":"769f3df4-30"},{"uid":"769f3df4-32"},{"uid":"769f3df4-34"},{"uid":"769f3df4-36"},{"uid":"769f3df4-38"},{"uid":"769f3df4-44"},{"uid":"769f3df4-46"},{"uid":"769f3df4-48"},{"uid":"769f3df4-50"},{"uid":"769f3df4-52"},{"uid":"769f3df4-54"},{"uid":"769f3df4-56"},{"uid":"769f3df4-58"},{"uid":"769f3df4-60"},{"uid":"769f3df4-62"},{"uid":"769f3df4-64"},{"uid":"769f3df4-66"},{"uid":"769f3df4-68"},{"uid":"769f3df4-70"},{"uid":"769f3df4-84"},{"uid":"769f3df4-89"},{"uid":"769f3df4-91"},{"uid":"769f3df4-95"},{"uid":"769f3df4-99"},{"uid":"769f3df4-101"}]},"769f3df4-8":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfig.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-9"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-106"},{"uid":"769f3df4-107"},{"uid":"769f3df4-108"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-110"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-10":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfigMult.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-11"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-106"},{"uid":"769f3df4-107"},{"uid":"769f3df4-108"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-110"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-12":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/Loading.vue?vue&type=style&index=0&scoped=true&lang.scss","moduleParts":{"main-aab412b3.mjs":"769f3df4-13"},"imported":[],"importedBy":[{"uid":"769f3df4-14"}]},"769f3df4-14":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/Loading.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-15"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-111"},{"uid":"769f3df4-103"},{"uid":"769f3df4-12"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-16":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/action.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-17"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-112"},{"uid":"769f3df4-113"},{"uid":"769f3df4-114"},{"uid":"769f3df4-115"},{"uid":"769f3df4-116"},{"uid":"769f3df4-117"},{"uid":"769f3df4-118"},{"uid":"769f3df4-106"},{"uid":"769f3df4-119"},{"uid":"769f3df4-120"},{"uid":"769f3df4-121"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-110"},{"uid":"769f3df4-4"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-18":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/listConfig.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-19"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-117"},{"uid":"769f3df4-118"},{"uid":"769f3df4-106"},{"uid":"769f3df4-122"},{"uid":"769f3df4-103"},{"uid":"769f3df4-4"},{"uid":"769f3df4-110"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-20":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/panel.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-21"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-117"},{"uid":"769f3df4-118"},{"uid":"769f3df4-106"},{"uid":"769f3df4-107"},{"uid":"769f3df4-119"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-4"},{"uid":"769f3df4-110"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-22":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/utils/customHooks.ts","moduleParts":{"main-aab412b3.mjs":"769f3df4-23"},"imported":[{"uid":"769f3df4-103"}],"importedBy":[{"uid":"769f3df4-24"},{"uid":"769f3df4-26"},{"uid":"769f3df4-30"},{"uid":"769f3df4-32"},{"uid":"769f3df4-34"},{"uid":"769f3df4-36"},{"uid":"769f3df4-38"},{"uid":"769f3df4-44"},{"uid":"769f3df4-46"},{"uid":"769f3df4-48"},{"uid":"769f3df4-50"},{"uid":"769f3df4-52"},{"uid":"769f3df4-54"},{"uid":"769f3df4-56"},{"uid":"769f3df4-58"},{"uid":"769f3df4-60"},{"uid":"769f3df4-62"},{"uid":"769f3df4-64"},{"uid":"769f3df4-66"},{"uid":"769f3df4-68"},{"uid":"769f3df4-70"},{"uid":"769f3df4-89"},{"uid":"769f3df4-91"}]},"769f3df4-24":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/radiogroup.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-25"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-123"},{"uid":"769f3df4-124"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-26":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/CheckBox/index.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-27"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-125"},{"uid":"769f3df4-108"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-28":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/ColorSelect/index.vue?vue&type=style&index=0&scoped=true&lang.scss","moduleParts":{"main-aab412b3.mjs":"769f3df4-29"},"imported":[],"importedBy":[{"uid":"769f3df4-30"}]},"769f3df4-30":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/ColorSelect/index.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-31"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-126"},{"uid":"769f3df4-107"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-28"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-32":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Date/index.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-33"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-127"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-34":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/DateTime/index.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-35"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-127"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-36":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/InputNumber/index.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-37"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-122"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-38":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Radio/index.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-39"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-123"},{"uid":"769f3df4-128"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-40":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Rule/ruleform.json","moduleParts":{"main-aab412b3.mjs":"769f3df4-41"},"imported":[],"importedBy":[{"uid":"769f3df4-0"},{"uid":"769f3df4-99"}]},"769f3df4-42":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Rule/rules.js","moduleParts":{"main-aab412b3.mjs":"769f3df4-43"},"imported":[],"importedBy":[{"uid":"769f3df4-0"},{"uid":"769f3df4-99"}]},"769f3df4-44":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Selected/index.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-45"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-120"},{"uid":"769f3df4-121"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-46":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Selecteds/index.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-47"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-120"},{"uid":"769f3df4-121"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-48":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/ShowRule/index.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-49"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-118"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-50":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Slider/index.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-51"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-129"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-52":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Switch/index.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-53"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-130"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-54":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Text/index.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-55"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-107"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-56":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/TextArea/index.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-57"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-107"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-58":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Time/index.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-59"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-131"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-4"},{"uid":"769f3df4-2"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-60":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/Divider.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-61"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-132"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-62":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/Info.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-63"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-133"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-64":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/Tabs.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-65"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-134"},{"uid":"769f3df4-135"},{"uid":"769f3df4-136"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-66":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/collapse.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-67"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-115"},{"uid":"769f3df4-116"},{"uid":"769f3df4-136"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-68":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/grid.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-69"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-117"},{"uid":"769f3df4-136"},{"uid":"769f3df4-119"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-70":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/table.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-71"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-136"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-72":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/styles/index.scss","moduleParts":{"main-aab412b3.mjs":"769f3df4-73"},"imported":[],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-74":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/node_modules/.pnpm/nanoid@4.0.2/node_modules/nanoid/index.browser.js","moduleParts":{"main-aab412b3.mjs":"769f3df4-75"},"imported":[{"uid":"769f3df4-148"}],"importedBy":[{"uid":"769f3df4-80"}]},"769f3df4-76":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/controller/history.ts","moduleParts":{"main-aab412b3.mjs":"769f3df4-77"},"imported":[{"uid":"769f3df4-103"},{"uid":"769f3df4-78"}],"importedBy":[{"uid":"769f3df4-78"}]},"769f3df4-78":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/controller/form.ts","moduleParts":{"main-aab412b3.mjs":"769f3df4-79"},"imported":[{"uid":"769f3df4-103"},{"uid":"769f3df4-76"}],"importedBy":[{"uid":"769f3df4-80"},{"uid":"769f3df4-76"}]},"769f3df4-80":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/utils/_.ts","moduleParts":{"main-aab412b3.mjs":"769f3df4-81"},"imported":[{"uid":"769f3df4-137"},{"uid":"769f3df4-74"},{"uid":"769f3df4-78"}],"importedBy":[{"uid":"769f3df4-0"},{"uid":"769f3df4-91"},{"uid":"769f3df4-99"}]},"769f3df4-82":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue?vue&type=style&index=0&scoped=true&lang.scss","moduleParts":{"main-aab412b3.mjs":"769f3df4-83"},"imported":[],"importedBy":[{"uid":"769f3df4-84"}]},"769f3df4-84":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-85"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-111"},{"uid":"769f3df4-103"},{"uid":"769f3df4-82"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-87":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/RichText/index.vue?vue&type=style&index=0&scoped=true&lang.scss","moduleParts":{"index-5ee7ae61.mjs":"769f3df4-88"},"imported":[],"importedBy":[{"uid":"769f3df4-89"}]},"769f3df4-89":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/RichText/index.vue","moduleParts":{"index-5ee7ae61.mjs":"769f3df4-90"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-138"},{"uid":"769f3df4-139"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-87"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-91":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","moduleParts":{"index-ec5813e3.mjs":"769f3df4-92"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-140"},{"uid":"769f3df4-141"},{"uid":"769f3df4-118"},{"uid":"769f3df4-142"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-143"},{"uid":"769f3df4-80"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-93":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/formAction.vue?vue&type=style&index=0&lang.scss","moduleParts":{"formAction-8f689053.mjs":"769f3df4-94"},"imported":[],"importedBy":[{"uid":"769f3df4-95"}]},"769f3df4-95":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/formAction.vue","moduleParts":{"formAction-8f689053.mjs":"769f3df4-96"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-144"},{"uid":"769f3df4-136"},{"uid":"769f3df4-107"},{"uid":"769f3df4-145"},{"uid":"769f3df4-140"},{"uid":"769f3df4-142"},{"uid":"769f3df4-146"},{"uid":"769f3df4-118"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-147"},{"uid":"769f3df4-93"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-97":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Rule/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"index-3c21357b.mjs":"769f3df4-98"},"imported":[],"importedBy":[{"uid":"769f3df4-99"}]},"769f3df4-99":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Rule/index.vue","moduleParts":{"index-3c21357b.mjs":"769f3df4-100"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-140"},{"uid":"769f3df4-142"},{"uid":"769f3df4-141"},{"uid":"769f3df4-133"},{"uid":"769f3df4-106"},{"uid":"769f3df4-120"},{"uid":"769f3df4-121"},{"uid":"769f3df4-112"},{"uid":"769f3df4-113"},{"uid":"769f3df4-114"},{"uid":"769f3df4-118"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-4"},{"uid":"769f3df4-80"},{"uid":"769f3df4-42"},{"uid":"769f3df4-40"},{"uid":"769f3df4-110"},{"uid":"769f3df4-101"},{"uid":"769f3df4-147"},{"uid":"769f3df4-97"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-101":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","moduleParts":{"starfish-form-a750924c.mjs":"769f3df4-102"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-144"},{"uid":"769f3df4-136"},{"uid":"769f3df4-103"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"},{"uid":"769f3df4-99"}]},"769f3df4-103":{"id":"vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-0"},{"uid":"769f3df4-8"},{"uid":"769f3df4-10"},{"uid":"769f3df4-14"},{"uid":"769f3df4-16"},{"uid":"769f3df4-18"},{"uid":"769f3df4-20"},{"uid":"769f3df4-24"},{"uid":"769f3df4-26"},{"uid":"769f3df4-30"},{"uid":"769f3df4-32"},{"uid":"769f3df4-34"},{"uid":"769f3df4-36"},{"uid":"769f3df4-38"},{"uid":"769f3df4-44"},{"uid":"769f3df4-46"},{"uid":"769f3df4-48"},{"uid":"769f3df4-50"},{"uid":"769f3df4-52"},{"uid":"769f3df4-54"},{"uid":"769f3df4-56"},{"uid":"769f3df4-58"},{"uid":"769f3df4-60"},{"uid":"769f3df4-62"},{"uid":"769f3df4-64"},{"uid":"769f3df4-66"},{"uid":"769f3df4-68"},{"uid":"769f3df4-70"},{"uid":"769f3df4-84"},{"uid":"769f3df4-89"},{"uid":"769f3df4-91"},{"uid":"769f3df4-95"},{"uid":"769f3df4-99"},{"uid":"769f3df4-101"},{"uid":"769f3df4-22"},{"uid":"769f3df4-78"},{"uid":"769f3df4-76"}],"isExternal":true},"769f3df4-104":{"id":"element-plus/es","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-8"},{"uid":"769f3df4-10"},{"uid":"769f3df4-14"},{"uid":"769f3df4-16"},{"uid":"769f3df4-18"},{"uid":"769f3df4-20"},{"uid":"769f3df4-24"},{"uid":"769f3df4-26"},{"uid":"769f3df4-30"},{"uid":"769f3df4-32"},{"uid":"769f3df4-34"},{"uid":"769f3df4-36"},{"uid":"769f3df4-38"},{"uid":"769f3df4-44"},{"uid":"769f3df4-46"},{"uid":"769f3df4-48"},{"uid":"769f3df4-50"},{"uid":"769f3df4-52"},{"uid":"769f3df4-54"},{"uid":"769f3df4-56"},{"uid":"769f3df4-58"},{"uid":"769f3df4-60"},{"uid":"769f3df4-62"},{"uid":"769f3df4-64"},{"uid":"769f3df4-66"},{"uid":"769f3df4-68"},{"uid":"769f3df4-70"},{"uid":"769f3df4-84"},{"uid":"769f3df4-89"},{"uid":"769f3df4-91"},{"uid":"769f3df4-95"},{"uid":"769f3df4-99"},{"uid":"769f3df4-101"}],"isExternal":true},"769f3df4-105":{"id":"element-plus/es/components/base/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-8"},{"uid":"769f3df4-10"},{"uid":"769f3df4-14"},{"uid":"769f3df4-16"},{"uid":"769f3df4-18"},{"uid":"769f3df4-20"},{"uid":"769f3df4-24"},{"uid":"769f3df4-26"},{"uid":"769f3df4-30"},{"uid":"769f3df4-32"},{"uid":"769f3df4-34"},{"uid":"769f3df4-36"},{"uid":"769f3df4-38"},{"uid":"769f3df4-44"},{"uid":"769f3df4-46"},{"uid":"769f3df4-48"},{"uid":"769f3df4-50"},{"uid":"769f3df4-52"},{"uid":"769f3df4-54"},{"uid":"769f3df4-56"},{"uid":"769f3df4-58"},{"uid":"769f3df4-60"},{"uid":"769f3df4-62"},{"uid":"769f3df4-64"},{"uid":"769f3df4-66"},{"uid":"769f3df4-68"},{"uid":"769f3df4-70"},{"uid":"769f3df4-84"},{"uid":"769f3df4-89"},{"uid":"769f3df4-91"},{"uid":"769f3df4-95"},{"uid":"769f3df4-99"},{"uid":"769f3df4-101"}],"isExternal":true},"769f3df4-106":{"id":"element-plus/es/components/icon/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-8"},{"uid":"769f3df4-10"},{"uid":"769f3df4-16"},{"uid":"769f3df4-18"},{"uid":"769f3df4-20"},{"uid":"769f3df4-99"}],"isExternal":true},"769f3df4-107":{"id":"element-plus/es/components/input/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-8"},{"uid":"769f3df4-10"},{"uid":"769f3df4-20"},{"uid":"769f3df4-30"},{"uid":"769f3df4-54"},{"uid":"769f3df4-56"},{"uid":"769f3df4-95"}],"isExternal":true},"769f3df4-108":{"id":"element-plus/es/components/checkbox/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-8"},{"uid":"769f3df4-10"},{"uid":"769f3df4-26"}],"isExternal":true},"769f3df4-109":{"id":"element-plus/es/components/tooltip/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-8"},{"uid":"769f3df4-10"},{"uid":"769f3df4-16"},{"uid":"769f3df4-20"},{"uid":"769f3df4-24"},{"uid":"769f3df4-26"},{"uid":"769f3df4-30"},{"uid":"769f3df4-32"},{"uid":"769f3df4-34"},{"uid":"769f3df4-36"},{"uid":"769f3df4-38"},{"uid":"769f3df4-44"},{"uid":"769f3df4-46"},{"uid":"769f3df4-48"},{"uid":"769f3df4-50"},{"uid":"769f3df4-52"},{"uid":"769f3df4-54"},{"uid":"769f3df4-56"},{"uid":"769f3df4-58"},{"uid":"769f3df4-62"},{"uid":"769f3df4-89"},{"uid":"769f3df4-91"},{"uid":"769f3df4-95"},{"uid":"769f3df4-99"}],"isExternal":true},"769f3df4-110":{"id":"@element-plus/icons-vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-8"},{"uid":"769f3df4-10"},{"uid":"769f3df4-16"},{"uid":"769f3df4-18"},{"uid":"769f3df4-20"},{"uid":"769f3df4-99"}],"isExternal":true},"769f3df4-111":{"id":"element-plus/es/components/loading/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-14"},{"uid":"769f3df4-84"}],"isExternal":true},"769f3df4-112":{"id":"element-plus/es/components/dropdown/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-16"},{"uid":"769f3df4-99"}],"isExternal":true},"769f3df4-113":{"id":"element-plus/es/components/dropdown-menu/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-16"},{"uid":"769f3df4-99"}],"isExternal":true},"769f3df4-114":{"id":"element-plus/es/components/dropdown-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-16"},{"uid":"769f3df4-99"}],"isExternal":true},"769f3df4-115":{"id":"element-plus/es/components/collapse/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-16"},{"uid":"769f3df4-66"}],"isExternal":true},"769f3df4-116":{"id":"element-plus/es/components/collapse-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-16"},{"uid":"769f3df4-66"}],"isExternal":true},"769f3df4-117":{"id":"element-plus/es/components/row/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-16"},{"uid":"769f3df4-18"},{"uid":"769f3df4-20"},{"uid":"769f3df4-68"}],"isExternal":true},"769f3df4-118":{"id":"element-plus/es/components/button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-16"},{"uid":"769f3df4-18"},{"uid":"769f3df4-20"},{"uid":"769f3df4-48"},{"uid":"769f3df4-91"},{"uid":"769f3df4-95"},{"uid":"769f3df4-99"}],"isExternal":true},"769f3df4-119":{"id":"element-plus/es/components/col/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-16"},{"uid":"769f3df4-20"},{"uid":"769f3df4-68"}],"isExternal":true},"769f3df4-120":{"id":"element-plus/es/components/select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-16"},{"uid":"769f3df4-44"},{"uid":"769f3df4-46"},{"uid":"769f3df4-99"}],"isExternal":true},"769f3df4-121":{"id":"element-plus/es/components/option/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-16"},{"uid":"769f3df4-44"},{"uid":"769f3df4-46"},{"uid":"769f3df4-99"}],"isExternal":true},"769f3df4-122":{"id":"element-plus/es/components/input-number/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-18"},{"uid":"769f3df4-36"}],"isExternal":true},"769f3df4-123":{"id":"element-plus/es/components/radio-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-24"},{"uid":"769f3df4-38"}],"isExternal":true},"769f3df4-124":{"id":"element-plus/es/components/radio-button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-24"}],"isExternal":true},"769f3df4-125":{"id":"element-plus/es/components/checkbox-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-26"}],"isExternal":true},"769f3df4-126":{"id":"element-plus/es/components/color-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-30"}],"isExternal":true},"769f3df4-127":{"id":"element-plus/es/components/date-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-32"},{"uid":"769f3df4-34"}],"isExternal":true},"769f3df4-128":{"id":"element-plus/es/components/radio/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-38"}],"isExternal":true},"769f3df4-129":{"id":"element-plus/es/components/slider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-50"}],"isExternal":true},"769f3df4-130":{"id":"element-plus/es/components/switch/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-52"}],"isExternal":true},"769f3df4-131":{"id":"element-plus/es/components/time-select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-58"}],"isExternal":true},"769f3df4-132":{"id":"element-plus/es/components/divider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-60"}],"isExternal":true},"769f3df4-133":{"id":"element-plus/es/components/alert/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-62"},{"uid":"769f3df4-99"}],"isExternal":true},"769f3df4-134":{"id":"element-plus/es/components/tabs/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-64"}],"isExternal":true},"769f3df4-135":{"id":"element-plus/es/components/tab-pane/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-64"}],"isExternal":true},"769f3df4-136":{"id":"element-plus/es/components/form-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-64"},{"uid":"769f3df4-66"},{"uid":"769f3df4-68"},{"uid":"769f3df4-70"},{"uid":"769f3df4-95"},{"uid":"769f3df4-101"}],"isExternal":true},"769f3df4-137":{"id":"element-plus","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-80"}],"isExternal":true},"769f3df4-138":{"id":"@vueup/vue-quill","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-89"}],"isExternal":true},"769f3df4-139":{"id":"@vueup/vue-quill/dist/vue-quill.snow.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-89"}],"isExternal":true},"769f3df4-140":{"id":"element-plus/es/components/container/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-91"},{"uid":"769f3df4-95"},{"uid":"769f3df4-99"}],"isExternal":true},"769f3df4-141":{"id":"element-plus/es/components/footer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-91"},{"uid":"769f3df4-99"}],"isExternal":true},"769f3df4-142":{"id":"element-plus/es/components/main/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-91"},{"uid":"769f3df4-95"},{"uid":"769f3df4-99"}],"isExternal":true},"769f3df4-143":{"id":"jsoneditor","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-91"}],"isExternal":true},"769f3df4-144":{"id":"element-plus/es/components/form/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-95"},{"uid":"769f3df4-101"}],"isExternal":true},"769f3df4-145":{"id":"element-plus/es/components/aside/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-95"}],"isExternal":true},"769f3df4-146":{"id":"element-plus/es/components/scrollbar/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-95"}],"isExternal":true},"769f3df4-147":{"id":"vue-codemirror","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-95"},{"uid":"769f3df4-99"}],"isExternal":true},"769f3df4-148":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/node_modules/.pnpm/nanoid@4.0.2/node_modules/nanoid/url-alphabet/index.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-74"}]}},"env":{"rollup":"3.29.4"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
4932
+ const data = {"version":2,"tree":{"name":"root","children":[{"name":"starfish-form.mjs","uid":"68ae788f-1"},{"name":"main-cf41e44c.mjs","children":[{"name":"D:/work/project/vue-form-design/vue-form-design","children":[{"name":"packages","children":[{"name":"form/src","children":[{"name":"utils","children":[{"uid":"68ae788f-3","name":"fieldConfig.ts"},{"uid":"68ae788f-5","name":"fieldProps.ts"},{"uid":"68ae788f-23","name":"customHooks.ts"}]},{"name":"common","children":[{"uid":"68ae788f-9","name":"KeyValueConfig.vue"},{"uid":"68ae788f-11","name":"KeyValueConfigMult.vue"},{"uid":"68ae788f-13","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"68ae788f-15","name":"Loading.vue"},{"uid":"68ae788f-17","name":"action.vue"},{"uid":"68ae788f-19","name":"listConfig.vue"},{"uid":"68ae788f-21","name":"panel.vue"},{"uid":"68ae788f-25","name":"radiogroup.vue"}]},{"name":"components","children":[{"name":"CheckBox/index.vue","uid":"68ae788f-27"},{"name":"ColorSelect","children":[{"uid":"68ae788f-29","name":"index.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"68ae788f-31","name":"index.vue"}]},{"name":"Date/index.vue","uid":"68ae788f-33"},{"name":"DateTime/index.vue","uid":"68ae788f-35"},{"name":"InputNumber/index.vue","uid":"68ae788f-37"},{"name":"Radio/index.vue","uid":"68ae788f-39"},{"name":"Rule","children":[{"uid":"68ae788f-41","name":"ruleform.json"},{"uid":"68ae788f-43","name":"rules.js"}]},{"name":"Selected/index.vue","uid":"68ae788f-45"},{"name":"Selecteds/index.vue","uid":"68ae788f-47"},{"name":"ShowRule/index.vue","uid":"68ae788f-49"},{"name":"Slider/index.vue","uid":"68ae788f-51"},{"name":"Switch/index.vue","uid":"68ae788f-53"},{"name":"Text/index.vue","uid":"68ae788f-55"},{"name":"TextArea/index.vue","uid":"68ae788f-57"},{"name":"Time/index.vue","uid":"68ae788f-59"}]},{"name":"layout","children":[{"uid":"68ae788f-61","name":"Divider.vue"},{"uid":"68ae788f-63","name":"Info.vue"},{"uid":"68ae788f-65","name":"Tabs.vue"},{"uid":"68ae788f-67","name":"collapse.vue"},{"uid":"68ae788f-69","name":"grid.vue"},{"uid":"68ae788f-71","name":"table.vue"}]},{"name":"styles/index.scss","uid":"68ae788f-73"},{"uid":"68ae788f-86","name":"main.ts"}]},{"name":"editor/src","children":[{"name":"controller","children":[{"uid":"68ae788f-77","name":"history.ts"},{"uid":"68ae788f-79","name":"form.ts"}]},{"name":"utils/_.ts","uid":"68ae788f-81"},{"name":"common","children":[{"uid":"68ae788f-83","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"68ae788f-85","name":"Loading.vue"}]}]}]},{"name":"node_modules/.pnpm/nanoid@4.0.2/node_modules/nanoid/index.browser.js","uid":"68ae788f-75"}]},{"uid":"68ae788f-7","name":"plugin-vue:export-helper"}]},{"name":"index-333f9fc6.mjs","children":[{"name":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/components/RichText","children":[{"uid":"68ae788f-88","name":"index.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"68ae788f-90","name":"index.vue"}]}]},{"name":"index-29f0cb1d.mjs","children":[{"name":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","uid":"68ae788f-92"}]},{"name":"formAction-721a6451.mjs","children":[{"name":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/common","children":[{"uid":"68ae788f-94","name":"formAction.vue?vue&type=style&index=0&lang.scss"},{"uid":"68ae788f-96","name":"formAction.vue"}]}]},{"name":"index-01c5aec1.mjs","children":[{"name":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/components/Rule","children":[{"uid":"68ae788f-98","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"68ae788f-100","name":"index.vue"}]}]},{"name":"starfish-form-9be69e4b.mjs","children":[{"name":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","uid":"68ae788f-102"}]}],"isRoot":true},"nodeParts":{"68ae788f-1":{"id":"starfish-form.mjs","gzipLength":0,"brotliLength":0,"renderedLength":1902,"metaUid":"68ae788f-0"},"68ae788f-3":{"renderedLength":18542,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-2"},"68ae788f-5":{"renderedLength":681,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-4"},"68ae788f-7":{"renderedLength":159,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-6"},"68ae788f-9":{"renderedLength":8553,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-8"},"68ae788f-11":{"renderedLength":8386,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-10"},"68ae788f-13":{"renderedLength":103,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-12"},"68ae788f-15":{"renderedLength":405,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-14"},"68ae788f-17":{"renderedLength":8484,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-16"},"68ae788f-19":{"renderedLength":3246,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-18"},"68ae788f-21":{"renderedLength":5328,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-20"},"68ae788f-23":{"renderedLength":482,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-22"},"68ae788f-25":{"renderedLength":2209,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-24"},"68ae788f-27":{"renderedLength":5525,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-26"},"68ae788f-29":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-28"},"68ae788f-31":{"renderedLength":3717,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-30"},"68ae788f-33":{"renderedLength":5563,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-32"},"68ae788f-35":{"renderedLength":4809,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-34"},"68ae788f-37":{"renderedLength":4772,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-36"},"68ae788f-39":{"renderedLength":5233,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-38"},"68ae788f-41":{"renderedLength":5040,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-40"},"68ae788f-43":{"renderedLength":2633,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-42"},"68ae788f-45":{"renderedLength":5365,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-44"},"68ae788f-47":{"renderedLength":5377,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-46"},"68ae788f-49":{"renderedLength":4066,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-48"},"68ae788f-51":{"renderedLength":2925,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-50"},"68ae788f-53":{"renderedLength":3362,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-52"},"68ae788f-55":{"renderedLength":4735,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-54"},"68ae788f-57":{"renderedLength":4541,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-56"},"68ae788f-59":{"renderedLength":3221,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-58"},"68ae788f-61":{"renderedLength":1315,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-60"},"68ae788f-63":{"renderedLength":2984,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-62"},"68ae788f-65":{"renderedLength":5888,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-64"},"68ae788f-67":{"renderedLength":6238,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-66"},"68ae788f-69":{"renderedLength":6689,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-68"},"68ae788f-71":{"renderedLength":6149,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-70"},"68ae788f-73":{"renderedLength":17,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-72"},"68ae788f-75":{"renderedLength":350,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-74"},"68ae788f-77":{"renderedLength":1613,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-76"},"68ae788f-79":{"renderedLength":6014,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-78"},"68ae788f-81":{"renderedLength":11658,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-80"},"68ae788f-83":{"renderedLength":101,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-82"},"68ae788f-85":{"renderedLength":391,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-84"},"68ae788f-86":{"renderedLength":2981,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-0"},"68ae788f-88":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-87"},"68ae788f-90":{"renderedLength":6555,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-89"},"68ae788f-92":{"renderedLength":6608,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-91"},"68ae788f-94":{"renderedLength":92,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-93"},"68ae788f-96":{"renderedLength":16981,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-95"},"68ae788f-98":{"renderedLength":87,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-97"},"68ae788f-100":{"renderedLength":17071,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-99"},"68ae788f-102":{"renderedLength":9949,"gzipLength":0,"brotliLength":0,"metaUid":"68ae788f-101"}},"nodeMetas":{"68ae788f-0":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/main.ts","moduleParts":{"starfish-form.mjs":"68ae788f-1","main-cf41e44c.mjs":"68ae788f-86"},"imported":[{"uid":"68ae788f-8"},{"uid":"68ae788f-10"},{"uid":"68ae788f-14"},{"uid":"68ae788f-16"},{"uid":"68ae788f-18"},{"uid":"68ae788f-20"},{"uid":"68ae788f-24"},{"uid":"68ae788f-26"},{"uid":"68ae788f-30"},{"uid":"68ae788f-32"},{"uid":"68ae788f-34"},{"uid":"68ae788f-36"},{"uid":"68ae788f-38"},{"uid":"68ae788f-40"},{"uid":"68ae788f-42"},{"uid":"68ae788f-44"},{"uid":"68ae788f-46"},{"uid":"68ae788f-48"},{"uid":"68ae788f-50"},{"uid":"68ae788f-52"},{"uid":"68ae788f-54"},{"uid":"68ae788f-56"},{"uid":"68ae788f-58"},{"uid":"68ae788f-60"},{"uid":"68ae788f-62"},{"uid":"68ae788f-64"},{"uid":"68ae788f-66"},{"uid":"68ae788f-68"},{"uid":"68ae788f-70"},{"uid":"68ae788f-103"},{"uid":"68ae788f-72"},{"uid":"68ae788f-2"},{"uid":"68ae788f-80"},{"uid":"68ae788f-84"},{"uid":"68ae788f-89","dynamic":true},{"uid":"68ae788f-91","dynamic":true},{"uid":"68ae788f-95","dynamic":true},{"uid":"68ae788f-99","dynamic":true},{"uid":"68ae788f-101","dynamic":true}],"importedBy":[],"isEntry":true},"68ae788f-2":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/utils/fieldConfig.ts","moduleParts":{"main-cf41e44c.mjs":"68ae788f-3"},"imported":[],"importedBy":[{"uid":"68ae788f-0"},{"uid":"68ae788f-8"},{"uid":"68ae788f-10"},{"uid":"68ae788f-26"},{"uid":"68ae788f-30"},{"uid":"68ae788f-32"},{"uid":"68ae788f-34"},{"uid":"68ae788f-36"},{"uid":"68ae788f-38"},{"uid":"68ae788f-44"},{"uid":"68ae788f-46"},{"uid":"68ae788f-50"},{"uid":"68ae788f-52"},{"uid":"68ae788f-54"},{"uid":"68ae788f-56"},{"uid":"68ae788f-58"},{"uid":"68ae788f-60"},{"uid":"68ae788f-62"},{"uid":"68ae788f-64"},{"uid":"68ae788f-66"},{"uid":"68ae788f-68"},{"uid":"68ae788f-70"},{"uid":"68ae788f-89"},{"uid":"68ae788f-91"}]},"68ae788f-4":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/utils/fieldProps.ts","moduleParts":{"main-cf41e44c.mjs":"68ae788f-5"},"imported":[],"importedBy":[{"uid":"68ae788f-8"},{"uid":"68ae788f-10"},{"uid":"68ae788f-16"},{"uid":"68ae788f-18"},{"uid":"68ae788f-20"},{"uid":"68ae788f-24"},{"uid":"68ae788f-26"},{"uid":"68ae788f-30"},{"uid":"68ae788f-32"},{"uid":"68ae788f-34"},{"uid":"68ae788f-36"},{"uid":"68ae788f-38"},{"uid":"68ae788f-44"},{"uid":"68ae788f-46"},{"uid":"68ae788f-48"},{"uid":"68ae788f-50"},{"uid":"68ae788f-52"},{"uid":"68ae788f-54"},{"uid":"68ae788f-56"},{"uid":"68ae788f-58"},{"uid":"68ae788f-60"},{"uid":"68ae788f-62"},{"uid":"68ae788f-64"},{"uid":"68ae788f-66"},{"uid":"68ae788f-68"},{"uid":"68ae788f-70"},{"uid":"68ae788f-89"},{"uid":"68ae788f-91"},{"uid":"68ae788f-99"}]},"68ae788f-6":{"id":"plugin-vue:export-helper","moduleParts":{"main-cf41e44c.mjs":"68ae788f-7"},"imported":[],"importedBy":[{"uid":"68ae788f-8"},{"uid":"68ae788f-10"},{"uid":"68ae788f-14"},{"uid":"68ae788f-16"},{"uid":"68ae788f-18"},{"uid":"68ae788f-20"},{"uid":"68ae788f-24"},{"uid":"68ae788f-26"},{"uid":"68ae788f-30"},{"uid":"68ae788f-32"},{"uid":"68ae788f-34"},{"uid":"68ae788f-36"},{"uid":"68ae788f-38"},{"uid":"68ae788f-44"},{"uid":"68ae788f-46"},{"uid":"68ae788f-48"},{"uid":"68ae788f-50"},{"uid":"68ae788f-52"},{"uid":"68ae788f-54"},{"uid":"68ae788f-56"},{"uid":"68ae788f-58"},{"uid":"68ae788f-60"},{"uid":"68ae788f-62"},{"uid":"68ae788f-64"},{"uid":"68ae788f-66"},{"uid":"68ae788f-68"},{"uid":"68ae788f-70"},{"uid":"68ae788f-84"},{"uid":"68ae788f-89"},{"uid":"68ae788f-91"},{"uid":"68ae788f-95"},{"uid":"68ae788f-99"},{"uid":"68ae788f-101"}]},"68ae788f-8":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfig.vue","moduleParts":{"main-cf41e44c.mjs":"68ae788f-9"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-106"},{"uid":"68ae788f-107"},{"uid":"68ae788f-108"},{"uid":"68ae788f-109"},{"uid":"68ae788f-103"},{"uid":"68ae788f-110"},{"uid":"68ae788f-2"},{"uid":"68ae788f-4"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-10":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfigMult.vue","moduleParts":{"main-cf41e44c.mjs":"68ae788f-11"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-106"},{"uid":"68ae788f-107"},{"uid":"68ae788f-108"},{"uid":"68ae788f-109"},{"uid":"68ae788f-103"},{"uid":"68ae788f-110"},{"uid":"68ae788f-2"},{"uid":"68ae788f-4"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-12":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/common/Loading.vue?vue&type=style&index=0&scoped=true&lang.scss","moduleParts":{"main-cf41e44c.mjs":"68ae788f-13"},"imported":[],"importedBy":[{"uid":"68ae788f-14"}]},"68ae788f-14":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/common/Loading.vue","moduleParts":{"main-cf41e44c.mjs":"68ae788f-15"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-111"},{"uid":"68ae788f-103"},{"uid":"68ae788f-12"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-16":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/common/action.vue","moduleParts":{"main-cf41e44c.mjs":"68ae788f-17"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-112"},{"uid":"68ae788f-113"},{"uid":"68ae788f-114"},{"uid":"68ae788f-115"},{"uid":"68ae788f-116"},{"uid":"68ae788f-117"},{"uid":"68ae788f-118"},{"uid":"68ae788f-106"},{"uid":"68ae788f-119"},{"uid":"68ae788f-120"},{"uid":"68ae788f-121"},{"uid":"68ae788f-109"},{"uid":"68ae788f-103"},{"uid":"68ae788f-110"},{"uid":"68ae788f-4"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-18":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/common/listConfig.vue","moduleParts":{"main-cf41e44c.mjs":"68ae788f-19"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-117"},{"uid":"68ae788f-118"},{"uid":"68ae788f-106"},{"uid":"68ae788f-122"},{"uid":"68ae788f-103"},{"uid":"68ae788f-4"},{"uid":"68ae788f-110"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-20":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/common/panel.vue","moduleParts":{"main-cf41e44c.mjs":"68ae788f-21"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-117"},{"uid":"68ae788f-118"},{"uid":"68ae788f-106"},{"uid":"68ae788f-107"},{"uid":"68ae788f-119"},{"uid":"68ae788f-109"},{"uid":"68ae788f-103"},{"uid":"68ae788f-4"},{"uid":"68ae788f-110"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-22":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/utils/customHooks.ts","moduleParts":{"main-cf41e44c.mjs":"68ae788f-23"},"imported":[{"uid":"68ae788f-103"}],"importedBy":[{"uid":"68ae788f-24"},{"uid":"68ae788f-26"},{"uid":"68ae788f-30"},{"uid":"68ae788f-32"},{"uid":"68ae788f-34"},{"uid":"68ae788f-36"},{"uid":"68ae788f-38"},{"uid":"68ae788f-44"},{"uid":"68ae788f-46"},{"uid":"68ae788f-48"},{"uid":"68ae788f-50"},{"uid":"68ae788f-52"},{"uid":"68ae788f-54"},{"uid":"68ae788f-56"},{"uid":"68ae788f-58"},{"uid":"68ae788f-60"},{"uid":"68ae788f-62"},{"uid":"68ae788f-64"},{"uid":"68ae788f-66"},{"uid":"68ae788f-68"},{"uid":"68ae788f-70"},{"uid":"68ae788f-89"},{"uid":"68ae788f-91"}]},"68ae788f-24":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/common/radiogroup.vue","moduleParts":{"main-cf41e44c.mjs":"68ae788f-25"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-123"},{"uid":"68ae788f-124"},{"uid":"68ae788f-109"},{"uid":"68ae788f-103"},{"uid":"68ae788f-4"},{"uid":"68ae788f-22"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-26":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/components/CheckBox/index.vue","moduleParts":{"main-cf41e44c.mjs":"68ae788f-27"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-125"},{"uid":"68ae788f-108"},{"uid":"68ae788f-109"},{"uid":"68ae788f-103"},{"uid":"68ae788f-2"},{"uid":"68ae788f-4"},{"uid":"68ae788f-22"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-28":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/components/ColorSelect/index.vue?vue&type=style&index=0&scoped=true&lang.scss","moduleParts":{"main-cf41e44c.mjs":"68ae788f-29"},"imported":[],"importedBy":[{"uid":"68ae788f-30"}]},"68ae788f-30":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/components/ColorSelect/index.vue","moduleParts":{"main-cf41e44c.mjs":"68ae788f-31"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-126"},{"uid":"68ae788f-107"},{"uid":"68ae788f-109"},{"uid":"68ae788f-103"},{"uid":"68ae788f-2"},{"uid":"68ae788f-4"},{"uid":"68ae788f-22"},{"uid":"68ae788f-28"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-32":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/components/Date/index.vue","moduleParts":{"main-cf41e44c.mjs":"68ae788f-33"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-127"},{"uid":"68ae788f-109"},{"uid":"68ae788f-103"},{"uid":"68ae788f-2"},{"uid":"68ae788f-4"},{"uid":"68ae788f-22"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-34":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/components/DateTime/index.vue","moduleParts":{"main-cf41e44c.mjs":"68ae788f-35"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-127"},{"uid":"68ae788f-109"},{"uid":"68ae788f-103"},{"uid":"68ae788f-2"},{"uid":"68ae788f-4"},{"uid":"68ae788f-22"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-36":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/components/InputNumber/index.vue","moduleParts":{"main-cf41e44c.mjs":"68ae788f-37"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-122"},{"uid":"68ae788f-109"},{"uid":"68ae788f-103"},{"uid":"68ae788f-2"},{"uid":"68ae788f-4"},{"uid":"68ae788f-22"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-38":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/components/Radio/index.vue","moduleParts":{"main-cf41e44c.mjs":"68ae788f-39"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-123"},{"uid":"68ae788f-128"},{"uid":"68ae788f-109"},{"uid":"68ae788f-103"},{"uid":"68ae788f-2"},{"uid":"68ae788f-4"},{"uid":"68ae788f-22"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-40":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/ruleform.json","moduleParts":{"main-cf41e44c.mjs":"68ae788f-41"},"imported":[],"importedBy":[{"uid":"68ae788f-0"},{"uid":"68ae788f-99"}]},"68ae788f-42":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/rules.js","moduleParts":{"main-cf41e44c.mjs":"68ae788f-43"},"imported":[],"importedBy":[{"uid":"68ae788f-0"},{"uid":"68ae788f-99"}]},"68ae788f-44":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/components/Selected/index.vue","moduleParts":{"main-cf41e44c.mjs":"68ae788f-45"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-120"},{"uid":"68ae788f-121"},{"uid":"68ae788f-109"},{"uid":"68ae788f-103"},{"uid":"68ae788f-2"},{"uid":"68ae788f-4"},{"uid":"68ae788f-22"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-46":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/components/Selecteds/index.vue","moduleParts":{"main-cf41e44c.mjs":"68ae788f-47"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-120"},{"uid":"68ae788f-121"},{"uid":"68ae788f-109"},{"uid":"68ae788f-103"},{"uid":"68ae788f-2"},{"uid":"68ae788f-4"},{"uid":"68ae788f-22"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-48":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/components/ShowRule/index.vue","moduleParts":{"main-cf41e44c.mjs":"68ae788f-49"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-118"},{"uid":"68ae788f-109"},{"uid":"68ae788f-103"},{"uid":"68ae788f-4"},{"uid":"68ae788f-22"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-50":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/components/Slider/index.vue","moduleParts":{"main-cf41e44c.mjs":"68ae788f-51"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-129"},{"uid":"68ae788f-109"},{"uid":"68ae788f-103"},{"uid":"68ae788f-2"},{"uid":"68ae788f-4"},{"uid":"68ae788f-22"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-52":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/components/Switch/index.vue","moduleParts":{"main-cf41e44c.mjs":"68ae788f-53"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-130"},{"uid":"68ae788f-109"},{"uid":"68ae788f-103"},{"uid":"68ae788f-2"},{"uid":"68ae788f-4"},{"uid":"68ae788f-22"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-54":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/components/Text/index.vue","moduleParts":{"main-cf41e44c.mjs":"68ae788f-55"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-107"},{"uid":"68ae788f-109"},{"uid":"68ae788f-103"},{"uid":"68ae788f-2"},{"uid":"68ae788f-4"},{"uid":"68ae788f-22"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-56":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/components/TextArea/index.vue","moduleParts":{"main-cf41e44c.mjs":"68ae788f-57"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-107"},{"uid":"68ae788f-109"},{"uid":"68ae788f-103"},{"uid":"68ae788f-2"},{"uid":"68ae788f-4"},{"uid":"68ae788f-22"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-58":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/components/Time/index.vue","moduleParts":{"main-cf41e44c.mjs":"68ae788f-59"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-131"},{"uid":"68ae788f-109"},{"uid":"68ae788f-103"},{"uid":"68ae788f-4"},{"uid":"68ae788f-2"},{"uid":"68ae788f-22"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-60":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/layout/Divider.vue","moduleParts":{"main-cf41e44c.mjs":"68ae788f-61"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-132"},{"uid":"68ae788f-103"},{"uid":"68ae788f-2"},{"uid":"68ae788f-4"},{"uid":"68ae788f-22"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-62":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/layout/Info.vue","moduleParts":{"main-cf41e44c.mjs":"68ae788f-63"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-133"},{"uid":"68ae788f-109"},{"uid":"68ae788f-103"},{"uid":"68ae788f-2"},{"uid":"68ae788f-4"},{"uid":"68ae788f-22"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-64":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/layout/Tabs.vue","moduleParts":{"main-cf41e44c.mjs":"68ae788f-65"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-134"},{"uid":"68ae788f-135"},{"uid":"68ae788f-136"},{"uid":"68ae788f-103"},{"uid":"68ae788f-2"},{"uid":"68ae788f-4"},{"uid":"68ae788f-22"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-66":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/layout/collapse.vue","moduleParts":{"main-cf41e44c.mjs":"68ae788f-67"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-115"},{"uid":"68ae788f-116"},{"uid":"68ae788f-136"},{"uid":"68ae788f-103"},{"uid":"68ae788f-2"},{"uid":"68ae788f-4"},{"uid":"68ae788f-22"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-68":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/layout/grid.vue","moduleParts":{"main-cf41e44c.mjs":"68ae788f-69"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-117"},{"uid":"68ae788f-136"},{"uid":"68ae788f-119"},{"uid":"68ae788f-103"},{"uid":"68ae788f-2"},{"uid":"68ae788f-4"},{"uid":"68ae788f-22"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-70":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/layout/table.vue","moduleParts":{"main-cf41e44c.mjs":"68ae788f-71"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-136"},{"uid":"68ae788f-103"},{"uid":"68ae788f-2"},{"uid":"68ae788f-4"},{"uid":"68ae788f-22"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-72":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/styles/index.scss","moduleParts":{"main-cf41e44c.mjs":"68ae788f-73"},"imported":[],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-74":{"id":"D:/work/project/vue-form-design/vue-form-design/node_modules/.pnpm/nanoid@4.0.2/node_modules/nanoid/index.browser.js","moduleParts":{"main-cf41e44c.mjs":"68ae788f-75"},"imported":[{"uid":"68ae788f-148"}],"importedBy":[{"uid":"68ae788f-80"}]},"68ae788f-76":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/editor/src/controller/history.ts","moduleParts":{"main-cf41e44c.mjs":"68ae788f-77"},"imported":[{"uid":"68ae788f-103"},{"uid":"68ae788f-78"}],"importedBy":[{"uid":"68ae788f-78"}]},"68ae788f-78":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/editor/src/controller/form.ts","moduleParts":{"main-cf41e44c.mjs":"68ae788f-79"},"imported":[{"uid":"68ae788f-103"},{"uid":"68ae788f-76"}],"importedBy":[{"uid":"68ae788f-80"},{"uid":"68ae788f-76"}]},"68ae788f-80":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/editor/src/utils/_.ts","moduleParts":{"main-cf41e44c.mjs":"68ae788f-81"},"imported":[{"uid":"68ae788f-137"},{"uid":"68ae788f-74"},{"uid":"68ae788f-78"}],"importedBy":[{"uid":"68ae788f-0"},{"uid":"68ae788f-91"},{"uid":"68ae788f-99"}]},"68ae788f-82":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue?vue&type=style&index=0&scoped=true&lang.scss","moduleParts":{"main-cf41e44c.mjs":"68ae788f-83"},"imported":[],"importedBy":[{"uid":"68ae788f-84"}]},"68ae788f-84":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue","moduleParts":{"main-cf41e44c.mjs":"68ae788f-85"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-111"},{"uid":"68ae788f-103"},{"uid":"68ae788f-82"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-87":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/index.vue?vue&type=style&index=0&scoped=true&lang.scss","moduleParts":{"index-333f9fc6.mjs":"68ae788f-88"},"imported":[],"importedBy":[{"uid":"68ae788f-89"}]},"68ae788f-89":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/index.vue","moduleParts":{"index-333f9fc6.mjs":"68ae788f-90"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-109"},{"uid":"68ae788f-103"},{"uid":"68ae788f-138"},{"uid":"68ae788f-139"},{"uid":"68ae788f-2"},{"uid":"68ae788f-4"},{"uid":"68ae788f-22"},{"uid":"68ae788f-87"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-91":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","moduleParts":{"index-29f0cb1d.mjs":"68ae788f-92"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-140"},{"uid":"68ae788f-141"},{"uid":"68ae788f-118"},{"uid":"68ae788f-142"},{"uid":"68ae788f-109"},{"uid":"68ae788f-103"},{"uid":"68ae788f-2"},{"uid":"68ae788f-4"},{"uid":"68ae788f-22"},{"uid":"68ae788f-143"},{"uid":"68ae788f-80"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-93":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/common/formAction.vue?vue&type=style&index=0&lang.scss","moduleParts":{"formAction-721a6451.mjs":"68ae788f-94"},"imported":[],"importedBy":[{"uid":"68ae788f-95"}]},"68ae788f-95":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/common/formAction.vue","moduleParts":{"formAction-721a6451.mjs":"68ae788f-96"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-144"},{"uid":"68ae788f-136"},{"uid":"68ae788f-107"},{"uid":"68ae788f-145"},{"uid":"68ae788f-140"},{"uid":"68ae788f-142"},{"uid":"68ae788f-146"},{"uid":"68ae788f-118"},{"uid":"68ae788f-109"},{"uid":"68ae788f-103"},{"uid":"68ae788f-147"},{"uid":"68ae788f-93"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-97":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"index-01c5aec1.mjs":"68ae788f-98"},"imported":[],"importedBy":[{"uid":"68ae788f-99"}]},"68ae788f-99":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/index.vue","moduleParts":{"index-01c5aec1.mjs":"68ae788f-100"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-140"},{"uid":"68ae788f-142"},{"uid":"68ae788f-141"},{"uid":"68ae788f-133"},{"uid":"68ae788f-106"},{"uid":"68ae788f-120"},{"uid":"68ae788f-121"},{"uid":"68ae788f-112"},{"uid":"68ae788f-113"},{"uid":"68ae788f-114"},{"uid":"68ae788f-118"},{"uid":"68ae788f-109"},{"uid":"68ae788f-103"},{"uid":"68ae788f-4"},{"uid":"68ae788f-80"},{"uid":"68ae788f-42"},{"uid":"68ae788f-40"},{"uid":"68ae788f-110"},{"uid":"68ae788f-101"},{"uid":"68ae788f-147"},{"uid":"68ae788f-97"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"}]},"68ae788f-101":{"id":"D:/work/project/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","moduleParts":{"starfish-form-9be69e4b.mjs":"68ae788f-102"},"imported":[{"uid":"68ae788f-104"},{"uid":"68ae788f-105"},{"uid":"68ae788f-144"},{"uid":"68ae788f-136"},{"uid":"68ae788f-103"},{"uid":"68ae788f-6"}],"importedBy":[{"uid":"68ae788f-0"},{"uid":"68ae788f-99"}]},"68ae788f-103":{"id":"vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-0"},{"uid":"68ae788f-8"},{"uid":"68ae788f-10"},{"uid":"68ae788f-14"},{"uid":"68ae788f-16"},{"uid":"68ae788f-18"},{"uid":"68ae788f-20"},{"uid":"68ae788f-24"},{"uid":"68ae788f-26"},{"uid":"68ae788f-30"},{"uid":"68ae788f-32"},{"uid":"68ae788f-34"},{"uid":"68ae788f-36"},{"uid":"68ae788f-38"},{"uid":"68ae788f-44"},{"uid":"68ae788f-46"},{"uid":"68ae788f-48"},{"uid":"68ae788f-50"},{"uid":"68ae788f-52"},{"uid":"68ae788f-54"},{"uid":"68ae788f-56"},{"uid":"68ae788f-58"},{"uid":"68ae788f-60"},{"uid":"68ae788f-62"},{"uid":"68ae788f-64"},{"uid":"68ae788f-66"},{"uid":"68ae788f-68"},{"uid":"68ae788f-70"},{"uid":"68ae788f-84"},{"uid":"68ae788f-89"},{"uid":"68ae788f-91"},{"uid":"68ae788f-95"},{"uid":"68ae788f-99"},{"uid":"68ae788f-101"},{"uid":"68ae788f-22"},{"uid":"68ae788f-78"},{"uid":"68ae788f-76"}],"isExternal":true},"68ae788f-104":{"id":"element-plus/es","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-8"},{"uid":"68ae788f-10"},{"uid":"68ae788f-14"},{"uid":"68ae788f-16"},{"uid":"68ae788f-18"},{"uid":"68ae788f-20"},{"uid":"68ae788f-24"},{"uid":"68ae788f-26"},{"uid":"68ae788f-30"},{"uid":"68ae788f-32"},{"uid":"68ae788f-34"},{"uid":"68ae788f-36"},{"uid":"68ae788f-38"},{"uid":"68ae788f-44"},{"uid":"68ae788f-46"},{"uid":"68ae788f-48"},{"uid":"68ae788f-50"},{"uid":"68ae788f-52"},{"uid":"68ae788f-54"},{"uid":"68ae788f-56"},{"uid":"68ae788f-58"},{"uid":"68ae788f-60"},{"uid":"68ae788f-62"},{"uid":"68ae788f-64"},{"uid":"68ae788f-66"},{"uid":"68ae788f-68"},{"uid":"68ae788f-70"},{"uid":"68ae788f-84"},{"uid":"68ae788f-89"},{"uid":"68ae788f-91"},{"uid":"68ae788f-95"},{"uid":"68ae788f-99"},{"uid":"68ae788f-101"}],"isExternal":true},"68ae788f-105":{"id":"element-plus/es/components/base/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-8"},{"uid":"68ae788f-10"},{"uid":"68ae788f-14"},{"uid":"68ae788f-16"},{"uid":"68ae788f-18"},{"uid":"68ae788f-20"},{"uid":"68ae788f-24"},{"uid":"68ae788f-26"},{"uid":"68ae788f-30"},{"uid":"68ae788f-32"},{"uid":"68ae788f-34"},{"uid":"68ae788f-36"},{"uid":"68ae788f-38"},{"uid":"68ae788f-44"},{"uid":"68ae788f-46"},{"uid":"68ae788f-48"},{"uid":"68ae788f-50"},{"uid":"68ae788f-52"},{"uid":"68ae788f-54"},{"uid":"68ae788f-56"},{"uid":"68ae788f-58"},{"uid":"68ae788f-60"},{"uid":"68ae788f-62"},{"uid":"68ae788f-64"},{"uid":"68ae788f-66"},{"uid":"68ae788f-68"},{"uid":"68ae788f-70"},{"uid":"68ae788f-84"},{"uid":"68ae788f-89"},{"uid":"68ae788f-91"},{"uid":"68ae788f-95"},{"uid":"68ae788f-99"},{"uid":"68ae788f-101"}],"isExternal":true},"68ae788f-106":{"id":"element-plus/es/components/icon/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-8"},{"uid":"68ae788f-10"},{"uid":"68ae788f-16"},{"uid":"68ae788f-18"},{"uid":"68ae788f-20"},{"uid":"68ae788f-99"}],"isExternal":true},"68ae788f-107":{"id":"element-plus/es/components/input/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-8"},{"uid":"68ae788f-10"},{"uid":"68ae788f-20"},{"uid":"68ae788f-30"},{"uid":"68ae788f-54"},{"uid":"68ae788f-56"},{"uid":"68ae788f-95"}],"isExternal":true},"68ae788f-108":{"id":"element-plus/es/components/checkbox/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-8"},{"uid":"68ae788f-10"},{"uid":"68ae788f-26"}],"isExternal":true},"68ae788f-109":{"id":"element-plus/es/components/tooltip/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-8"},{"uid":"68ae788f-10"},{"uid":"68ae788f-16"},{"uid":"68ae788f-20"},{"uid":"68ae788f-24"},{"uid":"68ae788f-26"},{"uid":"68ae788f-30"},{"uid":"68ae788f-32"},{"uid":"68ae788f-34"},{"uid":"68ae788f-36"},{"uid":"68ae788f-38"},{"uid":"68ae788f-44"},{"uid":"68ae788f-46"},{"uid":"68ae788f-48"},{"uid":"68ae788f-50"},{"uid":"68ae788f-52"},{"uid":"68ae788f-54"},{"uid":"68ae788f-56"},{"uid":"68ae788f-58"},{"uid":"68ae788f-62"},{"uid":"68ae788f-89"},{"uid":"68ae788f-91"},{"uid":"68ae788f-95"},{"uid":"68ae788f-99"}],"isExternal":true},"68ae788f-110":{"id":"@element-plus/icons-vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-8"},{"uid":"68ae788f-10"},{"uid":"68ae788f-16"},{"uid":"68ae788f-18"},{"uid":"68ae788f-20"},{"uid":"68ae788f-99"}],"isExternal":true},"68ae788f-111":{"id":"element-plus/es/components/loading/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-14"},{"uid":"68ae788f-84"}],"isExternal":true},"68ae788f-112":{"id":"element-plus/es/components/dropdown/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-16"},{"uid":"68ae788f-99"}],"isExternal":true},"68ae788f-113":{"id":"element-plus/es/components/dropdown-menu/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-16"},{"uid":"68ae788f-99"}],"isExternal":true},"68ae788f-114":{"id":"element-plus/es/components/dropdown-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-16"},{"uid":"68ae788f-99"}],"isExternal":true},"68ae788f-115":{"id":"element-plus/es/components/collapse/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-16"},{"uid":"68ae788f-66"}],"isExternal":true},"68ae788f-116":{"id":"element-plus/es/components/collapse-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-16"},{"uid":"68ae788f-66"}],"isExternal":true},"68ae788f-117":{"id":"element-plus/es/components/row/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-16"},{"uid":"68ae788f-18"},{"uid":"68ae788f-20"},{"uid":"68ae788f-68"}],"isExternal":true},"68ae788f-118":{"id":"element-plus/es/components/button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-16"},{"uid":"68ae788f-18"},{"uid":"68ae788f-20"},{"uid":"68ae788f-48"},{"uid":"68ae788f-91"},{"uid":"68ae788f-95"},{"uid":"68ae788f-99"}],"isExternal":true},"68ae788f-119":{"id":"element-plus/es/components/col/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-16"},{"uid":"68ae788f-20"},{"uid":"68ae788f-68"}],"isExternal":true},"68ae788f-120":{"id":"element-plus/es/components/select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-16"},{"uid":"68ae788f-44"},{"uid":"68ae788f-46"},{"uid":"68ae788f-99"}],"isExternal":true},"68ae788f-121":{"id":"element-plus/es/components/option/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-16"},{"uid":"68ae788f-44"},{"uid":"68ae788f-46"},{"uid":"68ae788f-99"}],"isExternal":true},"68ae788f-122":{"id":"element-plus/es/components/input-number/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-18"},{"uid":"68ae788f-36"}],"isExternal":true},"68ae788f-123":{"id":"element-plus/es/components/radio-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-24"},{"uid":"68ae788f-38"}],"isExternal":true},"68ae788f-124":{"id":"element-plus/es/components/radio-button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-24"}],"isExternal":true},"68ae788f-125":{"id":"element-plus/es/components/checkbox-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-26"}],"isExternal":true},"68ae788f-126":{"id":"element-plus/es/components/color-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-30"}],"isExternal":true},"68ae788f-127":{"id":"element-plus/es/components/date-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-32"},{"uid":"68ae788f-34"}],"isExternal":true},"68ae788f-128":{"id":"element-plus/es/components/radio/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-38"}],"isExternal":true},"68ae788f-129":{"id":"element-plus/es/components/slider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-50"}],"isExternal":true},"68ae788f-130":{"id":"element-plus/es/components/switch/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-52"}],"isExternal":true},"68ae788f-131":{"id":"element-plus/es/components/time-select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-58"}],"isExternal":true},"68ae788f-132":{"id":"element-plus/es/components/divider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-60"}],"isExternal":true},"68ae788f-133":{"id":"element-plus/es/components/alert/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-62"},{"uid":"68ae788f-99"}],"isExternal":true},"68ae788f-134":{"id":"element-plus/es/components/tabs/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-64"}],"isExternal":true},"68ae788f-135":{"id":"element-plus/es/components/tab-pane/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-64"}],"isExternal":true},"68ae788f-136":{"id":"element-plus/es/components/form-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-64"},{"uid":"68ae788f-66"},{"uid":"68ae788f-68"},{"uid":"68ae788f-70"},{"uid":"68ae788f-95"},{"uid":"68ae788f-101"}],"isExternal":true},"68ae788f-137":{"id":"element-plus","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-80"}],"isExternal":true},"68ae788f-138":{"id":"@vueup/vue-quill","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-89"}],"isExternal":true},"68ae788f-139":{"id":"@vueup/vue-quill/dist/vue-quill.snow.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-89"}],"isExternal":true},"68ae788f-140":{"id":"element-plus/es/components/container/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-91"},{"uid":"68ae788f-95"},{"uid":"68ae788f-99"}],"isExternal":true},"68ae788f-141":{"id":"element-plus/es/components/footer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-91"},{"uid":"68ae788f-99"}],"isExternal":true},"68ae788f-142":{"id":"element-plus/es/components/main/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-91"},{"uid":"68ae788f-95"},{"uid":"68ae788f-99"}],"isExternal":true},"68ae788f-143":{"id":"jsoneditor","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-91"}],"isExternal":true},"68ae788f-144":{"id":"element-plus/es/components/form/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-95"},{"uid":"68ae788f-101"}],"isExternal":true},"68ae788f-145":{"id":"element-plus/es/components/aside/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-95"}],"isExternal":true},"68ae788f-146":{"id":"element-plus/es/components/scrollbar/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-95"}],"isExternal":true},"68ae788f-147":{"id":"vue-codemirror","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-95"},{"uid":"68ae788f-99"}],"isExternal":true},"68ae788f-148":{"id":"D:/work/project/vue-form-design/vue-form-design/node_modules/.pnpm/nanoid@4.0.2/node_modules/nanoid/url-alphabet/index.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"68ae788f-74"}]}},"env":{"rollup":"3.29.4"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
4933
4933
 
4934
4934
  const run = () => {
4935
4935
  const width = window.innerWidth;