starfish-form-custom 1.0.36 → 1.0.38

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, createVNode, Fragment, renderList, withModifiers, createTextVNode } from 'vue';
13
13
  import { Codemirror } from 'vue-codemirror';
14
- import { _ as _export_sfc } from './main-b7ba7952.mjs';
14
+ import { _ as _export_sfc } from './main-496f8253.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';
@@ -1,8 +1,8 @@
1
- import { _ as _export_sfc, g as getFormConfig, f as fieldProps, a as __unplugin_components_1, u as useWatch } from './main-b7ba7952.mjs';
1
+ import { _ as _export_sfc, g as getFormConfig, f as fieldProps, a as __unplugin_components_1, u as useWatch } from './main-496f8253.mjs';
2
2
  import { ElTooltip } from 'element-plus/es';
3
3
  import 'element-plus/es/components/base/style/css';
4
4
  import 'element-plus/es/components/tooltip/style/css';
5
- import { defineComponent, ref, watch, onMounted, onUnmounted, resolveComponent, openBlock, createElementBlock, normalizeClass, createElementVNode, normalizeStyle, createCommentVNode, toDisplayString, createBlock, withCtx, createVNode, pushScopeId, popScopeId } from 'vue';
5
+ import { defineComponent, watch, onUnmounted, resolveComponent, openBlock, createElementBlock, normalizeClass, createElementVNode, normalizeStyle, createCommentVNode, toDisplayString, createBlock, withCtx, createVNode, pushScopeId, popScopeId } from 'vue';
6
6
  import { EditorContent, useEditor } from '@tiptap/vue-3';
7
7
  import StarterKit from '@tiptap/starter-kit';
8
8
  import Code from '@tiptap/extension-code';
@@ -56,9 +56,6 @@ const _sfc_main = defineComponent({
56
56
  MenuBar: __unplugin_components_1
57
57
  },
58
58
  setup(props) {
59
- useWatch(props);
60
- const isInternalUpdate = ref(false);
61
- const lastContent = ref("");
62
59
  const editor = useEditor({
63
60
  content: props.data[props.item.data.fieldName] || props.item.data.defaultValue || "",
64
61
  extensions: [
@@ -95,37 +92,19 @@ const _sfc_main = defineComponent({
95
92
  },
96
93
  onUpdate: ({ editor: editor2 }) => {
97
94
  const html = editor2.getHTML();
98
- if (html !== lastContent.value) {
99
- isInternalUpdate.value = true;
100
- lastContent.value = html;
101
- props.data[props.item.data.fieldName] = html;
102
- setTimeout(() => {
103
- isInternalUpdate.value = false;
104
- }, 0);
105
- }
95
+ props.data[props.item.data.fieldName] = html;
106
96
  },
107
97
  onBlur: ({ editor: editor2 }) => {
108
98
  const html = editor2.getHTML();
109
- if (html !== lastContent.value) {
110
- isInternalUpdate.value = true;
111
- lastContent.value = html;
112
- props.data[props.item.data.fieldName] = html;
113
- setTimeout(() => {
114
- isInternalUpdate.value = false;
115
- }, 0);
116
- }
99
+ props.data[props.item.data.fieldName] = html;
117
100
  }
118
101
  });
102
+ useWatch(props);
119
103
  watch(() => props.readonly, (newVal) => {
120
104
  if (editor.value) {
121
105
  editor.value.setEditable(!newVal);
122
106
  }
123
107
  });
124
- onMounted(() => {
125
- if (editor.value) {
126
- lastContent.value = editor.value.getHTML();
127
- }
128
- });
129
108
  onUnmounted(() => {
130
109
  if (editor.value) {
131
110
  editor.value.destroy();
@@ -136,25 +115,28 @@ const _sfc_main = defineComponent({
136
115
  };
137
116
  }
138
117
  });
139
- const _withScopeId = (n) => (pushScopeId("data-v-7adb62dc"), n = n(), popScopeId(), n);
140
- const _hoisted_1 = {
118
+ const _withScopeId = (n) => (pushScopeId("data-v-341cab58"), n = n(), popScopeId(), n);
119
+ const _hoisted_1 = ["data-control-type", "data-id"];
120
+ const _hoisted_2 = {
141
121
  key: 0,
142
122
  class: "item_require"
143
123
  };
144
- const _hoisted_2 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("span", { class: "tip iconfontui icon-tishi" }, null, -1));
145
- const _hoisted_3 = { class: "rich-text-editor" };
124
+ const _hoisted_3 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("span", { class: "tip iconfontui icon-tishi" }, null, -1));
125
+ const _hoisted_4 = { class: "rich-text-editor" };
146
126
  function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
147
127
  const _component_el_tooltip = ElTooltip;
148
128
  const _component_MenuBar = __unplugin_components_1;
149
129
  const _component_editor_content = resolveComponent("editor-content");
150
130
  return openBlock(), createElementBlock("div", {
151
- class: normalizeClass(["starfish-formitem", { formCover: _ctx.drag, "starfish-vertical": _ctx.labelalign != "top", [_ctx.item.data.csslist?.join(" ")]: !!_ctx.item.data.csslist }])
131
+ class: normalizeClass(["starfish-formitem", { formCover: _ctx.drag, "starfish-vertical": _ctx.labelalign != "top", [_ctx.item.data.csslist?.join(" ")]: !!_ctx.item.data.csslist }]),
132
+ "data-control-type": _ctx.item.ControlType,
133
+ "data-id": _ctx.item.id
152
134
  }, [
153
135
  createElementVNode("div", {
154
136
  class: normalizeClass(["label", "label_" + _ctx.labelalign]),
155
137
  style: normalizeStyle({ width: _ctx.labelWidth + "px" })
156
138
  }, [
157
- _ctx.item.data.required && !_ctx.readonly && _ctx.item.data.state !== "readonly" ? (openBlock(), createElementBlock("span", _hoisted_1, "*")) : createCommentVNode("", true),
139
+ _ctx.item.data.required && !_ctx.readonly && _ctx.item.data.state !== "readonly" ? (openBlock(), createElementBlock("span", _hoisted_2, "*")) : createCommentVNode("", true),
158
140
  createElementVNode("label", null, toDisplayString(_ctx.item.data.label) + toDisplayString(_ctx.suffix), 1),
159
141
  _ctx.item.data.tip ? (openBlock(), createBlock(_component_el_tooltip, {
160
142
  key: 1,
@@ -164,7 +146,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
164
146
  placement: "top"
165
147
  }, {
166
148
  default: withCtx(() => [
167
- _hoisted_2
149
+ _hoisted_3
168
150
  ]),
169
151
  _: 1
170
152
  }, 8, ["content"])) : createCommentVNode("", true)
@@ -173,8 +155,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
173
155
  class: "control",
174
156
  style: normalizeStyle({ marginLeft: _ctx.labelalign != "top" ? _ctx.labelWidth + "px" : "" })
175
157
  }, [
176
- createElementVNode("div", _hoisted_3, [
177
- !_ctx.readonly ? (openBlock(), createBlock(_component_MenuBar, {
158
+ createElementVNode("div", _hoisted_4, [
159
+ _ctx.editor && !_ctx.readonly ? (openBlock(), createBlock(_component_MenuBar, {
178
160
  key: 0,
179
161
  editor: _ctx.editor
180
162
  }, null, 8, ["editor"])) : createCommentVNode("", true),
@@ -184,8 +166,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
184
166
  }, null, 8, ["editor"])
185
167
  ])
186
168
  ], 4)
187
- ], 2);
169
+ ], 10, _hoisted_1);
188
170
  }
189
- const index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-7adb62dc"]]);
171
+ const index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-341cab58"]]);
190
172
 
191
173
  export { index as default };
@@ -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, b as _, g as getFormConfig, f as fieldProps, u as useWatch } from './main-b7ba7952.mjs';
9
+ import { _ as _export_sfc, b as _, g as getFormConfig, f as fieldProps, u as useWatch } from './main-496f8253.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';
@@ -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, Fragment, renderList, createTextVNode } from 'vue';
16
- import { _ as _export_sfc, b as _, f as fieldProps, r as ruleList, c as ruleJsonData } from './main-b7ba7952.mjs';
16
+ import { _ as _export_sfc, b as _, f as fieldProps, r as ruleList, c as ruleJsonData } from './main-496f8253.mjs';
17
17
  import { Delete } from '@element-plus/icons-vue';
18
- import Dynamicform from './starfish-form-a5d43f95.mjs';
18
+ import Dynamicform from './starfish-form-3a589bc9.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';
@@ -3485,7 +3485,7 @@ const __vite_glob_0_17 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.definePr
3485
3485
  const _sfc_main$d = defineComponent({
3486
3486
  ControlType: "Selecteds",
3487
3487
  // 必须与文件名匹配
3488
- nameCn: "\u9009\u62E9\u5668\u591A\u9009",
3488
+ nameCn: "\u591A\u9009\u62E9\u5668",
3489
3489
  icon: "icon-xuanzeqi",
3490
3490
  formConfig: getFormConfig("Selecteds", [
3491
3491
  { fieldName: "placeholder", component: "Text" },
@@ -5583,7 +5583,7 @@ Object.keys(files).forEach((fileName) => {
5583
5583
  }
5584
5584
  });
5585
5585
  const RichText = defineAsyncComponent({
5586
- loader: () => import('./index-e7ab76ff.mjs'),
5586
+ loader: () => import('./index-52a3b28c.mjs'),
5587
5587
  loadingComponent: Loading
5588
5588
  });
5589
5589
  RichText.ControlType = "RichText";
@@ -5592,7 +5592,7 @@ RichText.icon = "icon-textEdit";
5592
5592
  RichText.formConfig = getFormConfig("RichText");
5593
5593
  utilFuns[RichText.ControlType] = RichText;
5594
5594
  const jsonEditor = defineAsyncComponent({
5595
- loader: () => import('./index-da008a01.mjs'),
5595
+ loader: () => import('./index-60b2442f.mjs'),
5596
5596
  loadingComponent: Loading
5597
5597
  });
5598
5598
  jsonEditor.ControlType = "JsonEditor";
@@ -5602,14 +5602,14 @@ jsonEditor.formConfig = getFormConfig("JsonEditor", [{ fieldName: "default", com
5602
5602
  jsonEditor.rule = _.getJsonValidate();
5603
5603
  utilFuns[jsonEditor.ControlType] = jsonEditor;
5604
5604
  const formAction = defineAsyncComponent({
5605
- loader: () => import('./formAction-fda21a39.mjs'),
5605
+ loader: () => import('./formAction-2190ddc9.mjs'),
5606
5606
  loadingComponent: Loading
5607
5607
  });
5608
5608
  formAction.ControlType = "FormAction";
5609
5609
  formAction.isHide = true;
5610
5610
  utilFuns[formAction.ControlType] = formAction;
5611
5611
  const Rule = defineAsyncComponent({
5612
- loader: () => import('./index-d372b287.mjs'),
5612
+ loader: () => import('./index-cd91e2b4.mjs'),
5613
5613
  loadingComponent: Loading
5614
5614
  });
5615
5615
  Rule.ControlType = "Rule";
@@ -5618,7 +5618,7 @@ utilFuns[Rule.ControlType] = Rule;
5618
5618
  const install = (app) => {
5619
5619
  app.config.globalProperties.$formcomponents = utilFuns;
5620
5620
  };
5621
- const Dynamicform = defineAsyncComponent(() => import('./starfish-form-a5d43f95.mjs'));
5621
+ const Dynamicform = defineAsyncComponent(() => import('./starfish-form-3a589bc9.mjs'));
5622
5622
  const main = {
5623
5623
  install
5624
5624
  };
@@ -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-b7ba7952.mjs';
6
+ import { _ as _export_sfc } from './main-496f8253.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';
@@ -167,6 +167,7 @@ const _sfc_main = defineComponent({
167
167
  }
168
168
  const handleControlChange = () => {
169
169
  const allFormLists = props.allFormList;
170
+ console.log("---handleControlChange--", allFormLists);
170
171
  allFormLists.forEach((item2) => {
171
172
  if (item2.data.showRule === "{}") {
172
173
  item2.show = true;
@@ -1,4 +1,4 @@
1
- export { D as Dynamicform, m as default } from './main-b7ba7952.mjs';
1
+ export { D as Dynamicform, m as default } from './main-496f8253.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
@@ -468,18 +468,18 @@
468
468
  min-height: 60px;
469
469
  height: 100%;
470
470
  }
471
- .rich-text-editor[data-v-7adb62dc] {
471
+ .rich-text-editor[data-v-341cab58] {
472
472
  min-height: 200px;
473
473
  }
474
- [data-v-7adb62dc] .editor-content {
474
+ [data-v-341cab58] .editor-content {
475
475
  min-height: 200px;
476
476
  }
477
- [data-v-7adb62dc] .ProseMirror {
477
+ [data-v-341cab58] .ProseMirror {
478
478
  min-height: 180px;
479
479
  outline: none;
480
480
  padding: 12px;
481
481
  }
482
- [data-v-7adb62dc] .ProseMirror p.is-editor-empty:first-child::before {
482
+ [data-v-341cab58] .ProseMirror p.is-editor-empty:first-child::before {
483
483
  color: #adb5bd;
484
484
  content: attr(data-placeholder);
485
485
  float: left;
@@ -488,7 +488,7 @@
488
488
  }
489
489
 
490
490
  /* 行内代码样式 */
491
- [data-v-7adb62dc] .ProseMirror .inline-code {
491
+ [data-v-341cab58] .ProseMirror .inline-code {
492
492
  background-color: #f3f4f6;
493
493
  color: #e53e3e;
494
494
  padding: 2px 6px;
@@ -499,7 +499,7 @@
499
499
  }
500
500
 
501
501
  /* 代码块样式 */
502
- [data-v-7adb62dc] .ProseMirror code {
502
+ [data-v-341cab58] .ProseMirror .code-block {
503
503
  background-color: #1f2937;
504
504
  color: #f9fafb;
505
505
  padding: 16px;
@@ -514,7 +514,7 @@
514
514
 
515
515
 
516
516
  /* 引用块样式 */
517
- [data-v-7adb62dc] .ProseMirror blockquote {
517
+ [data-v-341cab58] .ProseMirror blockquote {
518
518
  border-left: 4px solid #3b82f6;
519
519
  background-color: #f8fafc;
520
520
  padding: 12px 16px;
@@ -525,29 +525,29 @@
525
525
  }
526
526
 
527
527
  /* 水平分割线样式 */
528
- [data-v-7adb62dc] .ProseMirror hr {
528
+ [data-v-341cab58] .ProseMirror hr {
529
529
  border: none;
530
530
  border-top: 2px solid #e5e7eb;
531
531
  margin: 24px 0;
532
532
  }
533
533
 
534
534
  /* 列表样式 */
535
- [data-v-7adb62dc] .ProseMirror ul,[data-v-7adb62dc] .ProseMirror ol {
535
+ [data-v-341cab58] .ProseMirror ul,[data-v-341cab58] .ProseMirror ol {
536
536
  padding-left: 24px;
537
537
  margin: 12px 0;
538
538
  }
539
- [data-v-7adb62dc] .ProseMirror li {
539
+ [data-v-341cab58] .ProseMirror li {
540
540
  margin: 4px 0;
541
541
  }
542
542
 
543
543
  /* 标题样式 */
544
- [data-v-7adb62dc] .ProseMirror h1 {
544
+ [data-v-341cab58] .ProseMirror h1 {
545
545
  font-size: 1.875em;
546
546
  font-weight: bold;
547
547
  margin: 24px 0 16px 0;
548
548
  color: #111827;
549
549
  }
550
- [data-v-7adb62dc] .ProseMirror h2 {
550
+ [data-v-341cab58] .ProseMirror h2 {
551
551
  font-size: 1.5em;
552
552
  font-weight: bold;
553
553
  margin: 20px 0 12px 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "starfish-form-custom",
3
- "version": "1.0.36",
3
+ "version": "1.0.38",
4
4
  "main": "dist/starfish-form.mjs",
5
5
  "style": "dist/style.css",
6
6
  "module": "dist/starfish-form.mjs",
@@ -1,5 +1,9 @@
1
1
  <template>
2
- <div class="starfish-formitem" :class="{ formCover: drag, 'starfish-vertical': labelalign != 'top', [item.data.csslist?.join(' ')]: !!item.data.csslist}">
2
+ <div class="starfish-formitem"
3
+ :class="{ formCover: drag, 'starfish-vertical': labelalign != 'top', [item.data.csslist?.join(' ')]: !!item.data.csslist}"
4
+ :data-control-type="item.ControlType"
5
+ :data-id="item.id"
6
+ >
3
7
  <div class="label" :class="'label_' + labelalign" :style="{width: labelWidth + 'px'}">
4
8
  <span v-if="item.data.required && !readonly && item.data.state !== 'readonly'" class="item_require">*</span>
5
9
  <label>{{ item.data.label }}{{suffix}}</label>
@@ -10,7 +14,7 @@
10
14
  <div class="control" :style="{marginLeft: labelalign != 'top'?labelWidth + 'px': ''}">
11
15
  <div class="rich-text-editor">
12
16
  <!-- 使用 MenuBar 组件 -->
13
- <MenuBar v-if="!readonly" :editor="editor" />
17
+ <MenuBar v-if="editor && !readonly" :editor="editor" />
14
18
  <editor-content :editor="editor" class="editor-content" />
15
19
  </div>
16
20
  </div>
@@ -43,9 +47,6 @@ export default defineComponent({
43
47
  MenuBar
44
48
  },
45
49
  setup(props) {
46
- useWatch(props);
47
- const isInternalUpdate = ref(false);
48
- const lastContent = ref('');
49
50
  const editor = useEditor({
50
51
  content: props.data[props.item.data.fieldName] || props.item.data.defaultValue || '',
51
52
  extensions: [
@@ -82,31 +83,14 @@ export default defineComponent({
82
83
  },
83
84
  onUpdate: ({ editor }) => {
84
85
  const html = editor.getHTML();
85
-
86
- // 只有当内容真正变化时才更新数据
87
- if (html !== lastContent.value) {
88
- isInternalUpdate.value = true;
89
- lastContent.value = html;
90
- props.data[props.item.data.fieldName] = html;
91
-
92
- // 使用 setTimeout 确保在下一个事件循环中重置标记
93
- setTimeout(() => {
94
- isInternalUpdate.value = false;
95
- }, 0);
96
- }
86
+ props.data[props.item.data.fieldName] = html;
97
87
  },
98
88
  onBlur: ({ editor }) => {
99
89
  const html = editor.getHTML();
100
- if (html !== lastContent.value) {
101
- isInternalUpdate.value = true;
102
- lastContent.value = html;
103
- props.data[props.item.data.fieldName] = html;
104
- setTimeout(() => {
105
- isInternalUpdate.value = false;
106
- }, 0);
107
- }
90
+ props.data[props.item.data.fieldName] = html;
108
91
  }
109
- });
92
+ })
93
+ useWatch(props);
110
94
 
111
95
  // 监听只读状态变化
112
96
  watch(() => props.readonly, (newVal) => {
@@ -115,13 +99,6 @@ export default defineComponent({
115
99
  }
116
100
  });
117
101
 
118
- // 初始化 lastContent
119
- onMounted(() => {
120
- if (editor.value) {
121
- lastContent.value = editor.value.getHTML();
122
- }
123
- });
124
-
125
102
  onUnmounted(() => {
126
103
  if (editor.value) {
127
104
  editor.value.destroy();
@@ -170,7 +147,7 @@ export default defineComponent({
170
147
  }
171
148
 
172
149
  /* 代码块样式 */
173
- :deep(.ProseMirror code) {
150
+ :deep(.ProseMirror .code-block) {
174
151
  background-color: #1f2937;
175
152
  color: #f9fafb;
176
153
  padding: 16px;
@@ -80,7 +80,7 @@ import fieldProps from "../../utils/fieldProps";
80
80
  import { useWatch } from "../../utils/customHooks";
81
81
  export default defineComponent({
82
82
  ControlType: "Selecteds", // 必须与文件名匹配
83
- nameCn: "选择器多选",
83
+ nameCn: "多选择器",
84
84
  icon: "icon-xuanzeqi",
85
85
  formConfig: getFormConfig("Selecteds", [
86
86
  { fieldName: "placeholder", component: "Text" },
@@ -202,6 +202,7 @@ export default defineComponent({
202
202
 
203
203
  const handleControlChange = () => {
204
204
  const allFormLists: any = props.allFormList;
205
+ console.log('---handleControlChange--', allFormLists);
205
206
  allFormLists.forEach((item: any) => {
206
207
  if (item.data.showRule === "{}") {
207
208
  item.show = true;
package/stats.html CHANGED
@@ -4822,7 +4822,7 @@ var drawChart = (function (exports) {
4822
4822
  </script>
4823
4823
  <script>
4824
4824
  /*<!--*/
4825
- const data = {"version":2,"tree":{"name":"root","children":[{"name":"starfish-form.mjs","uid":"e667fc69-1"},{"name":"main-b7ba7952.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design","children":[{"name":"packages","children":[{"name":"form/src","children":[{"name":"utils","children":[{"uid":"e667fc69-3","name":"fieldConfig.ts"},{"uid":"e667fc69-5","name":"fieldProps.ts"},{"uid":"e667fc69-23","name":"customHooks.ts"}]},{"name":"common","children":[{"uid":"e667fc69-9","name":"KeyValueConfig.vue"},{"uid":"e667fc69-11","name":"KeyValueConfigMult.vue"},{"uid":"e667fc69-13","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"e667fc69-15","name":"Loading.vue"},{"uid":"e667fc69-17","name":"action.vue"},{"uid":"e667fc69-19","name":"listConfig.vue"},{"uid":"e667fc69-21","name":"panel.vue"},{"uid":"e667fc69-25","name":"radiogroup.vue"}]},{"name":"components","children":[{"name":"CheckBox/index.vue","uid":"e667fc69-27"},{"name":"ColorSelect","children":[{"uid":"e667fc69-29","name":"index.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"e667fc69-31","name":"index.vue"}]},{"name":"Date/index.vue","uid":"e667fc69-33"},{"name":"DateTime/index.vue","uid":"e667fc69-35"},{"name":"InputNumber/index.vue","uid":"e667fc69-37"},{"name":"Radio/index.vue","uid":"e667fc69-39"},{"name":"RichText","children":[{"uid":"e667fc69-41","name":"MenuItem.vue?vue&type=style&index=0&scoped=true&lang.css"},{"uid":"e667fc69-43","name":"MenuItem.vue"},{"uid":"e667fc69-45","name":"MenuBar.vue?vue&type=style&index=0&scoped=true&lang.css"},{"uid":"e667fc69-47","name":"MenuBar.vue"}]},{"name":"Rule","children":[{"uid":"e667fc69-49","name":"ruleform.json"},{"uid":"e667fc69-51","name":"rules.js"}]},{"name":"Selected/index.vue","uid":"e667fc69-53"},{"name":"Selecteds/index.vue","uid":"e667fc69-55"},{"name":"ShowRule/index.vue","uid":"e667fc69-57"},{"name":"Slider/index.vue","uid":"e667fc69-59"},{"name":"Switch/index.vue","uid":"e667fc69-61"},{"name":"Text/index.vue","uid":"e667fc69-63"},{"name":"TextArea/index.vue","uid":"e667fc69-65"},{"name":"Time/index.vue","uid":"e667fc69-67"}]},{"name":"layout","children":[{"uid":"e667fc69-69","name":"Divider.vue"},{"uid":"e667fc69-71","name":"Info.vue"},{"uid":"e667fc69-73","name":"Tabs.vue"},{"uid":"e667fc69-75","name":"collapse.vue"},{"uid":"e667fc69-77","name":"grid.vue"},{"uid":"e667fc69-79","name":"table.vue"}]},{"name":"styles/index.scss","uid":"e667fc69-81"},{"uid":"e667fc69-94","name":"main.ts"}]},{"name":"editor/src","children":[{"name":"controller","children":[{"uid":"e667fc69-85","name":"history.ts"},{"uid":"e667fc69-87","name":"form.ts"}]},{"name":"utils/_.ts","uid":"e667fc69-89"},{"name":"common","children":[{"uid":"e667fc69-91","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"e667fc69-93","name":"Loading.vue"}]}]}]},{"name":"node_modules/.pnpm/nanoid@4.0.0/node_modules/nanoid/index.browser.js","uid":"e667fc69-83"}]},{"uid":"e667fc69-7","name":"plugin-vue:export-helper"}]},{"name":"index-e7ab76ff.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText","children":[{"uid":"e667fc69-96","name":"index.vue?vue&type=style&index=0&scoped=true&lang.css"},{"uid":"e667fc69-98","name":"index.vue"}]}]},{"name":"index-da008a01.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","uid":"e667fc69-100"}]},{"name":"formAction-fda21a39.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common","children":[{"uid":"e667fc69-102","name":"formAction.vue?vue&type=style&index=0&lang.scss"},{"uid":"e667fc69-104","name":"formAction.vue"}]}]},{"name":"index-d372b287.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule","children":[{"uid":"e667fc69-106","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"e667fc69-108","name":"index.vue"}]}]},{"name":"starfish-form-a5d43f95.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","uid":"e667fc69-110"}]}],"isRoot":true},"nodeParts":{"e667fc69-1":{"id":"starfish-form.mjs","gzipLength":0,"brotliLength":0,"renderedLength":1902,"metaUid":"e667fc69-0"},"e667fc69-3":{"renderedLength":18542,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-2"},"e667fc69-5":{"renderedLength":626,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-4"},"e667fc69-7":{"renderedLength":159,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-6"},"e667fc69-9":{"renderedLength":8660,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-8"},"e667fc69-11":{"renderedLength":8485,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-10"},"e667fc69-13":{"renderedLength":103,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-12"},"e667fc69-15":{"renderedLength":404,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-14"},"e667fc69-17":{"renderedLength":8527,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-16"},"e667fc69-19":{"renderedLength":3264,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-18"},"e667fc69-21":{"renderedLength":5397,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-20"},"e667fc69-23":{"renderedLength":482,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-22"},"e667fc69-25":{"renderedLength":2228,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-24"},"e667fc69-27":{"renderedLength":4844,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-26"},"e667fc69-29":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-28"},"e667fc69-31":{"renderedLength":3864,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-30"},"e667fc69-33":{"renderedLength":5532,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-32"},"e667fc69-35":{"renderedLength":4778,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-34"},"e667fc69-37":{"renderedLength":4741,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-36"},"e667fc69-39":{"renderedLength":4756,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-38"},"e667fc69-41":{"renderedLength":102,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-40"},"e667fc69-43":{"renderedLength":1900,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-42"},"e667fc69-45":{"renderedLength":101,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-44"},"e667fc69-47":{"renderedLength":4109,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-46"},"e667fc69-49":{"renderedLength":5040,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-48"},"e667fc69-51":{"renderedLength":2564,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-50"},"e667fc69-53":{"renderedLength":4866,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-52"},"e667fc69-55":{"renderedLength":5448,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-54"},"e667fc69-57":{"renderedLength":4133,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-56"},"e667fc69-59":{"renderedLength":2944,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-58"},"e667fc69-61":{"renderedLength":2995,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-60"},"e667fc69-63":{"renderedLength":4704,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-62"},"e667fc69-65":{"renderedLength":4510,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-64"},"e667fc69-67":{"renderedLength":3240,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-66"},"e667fc69-69":{"renderedLength":1315,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-68"},"e667fc69-71":{"renderedLength":2999,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-70"},"e667fc69-73":{"renderedLength":5888,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-72"},"e667fc69-75":{"renderedLength":6238,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-74"},"e667fc69-77":{"renderedLength":6689,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-76"},"e667fc69-79":{"renderedLength":6149,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-78"},"e667fc69-81":{"renderedLength":17,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-80"},"e667fc69-83":{"renderedLength":350,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-82"},"e667fc69-85":{"renderedLength":1613,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-84"},"e667fc69-87":{"renderedLength":6014,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-86"},"e667fc69-89":{"renderedLength":11658,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-88"},"e667fc69-91":{"renderedLength":101,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-90"},"e667fc69-93":{"renderedLength":390,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-92"},"e667fc69-94":{"renderedLength":3090,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-0"},"e667fc69-96":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-95"},"e667fc69-98":{"renderedLength":4824,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-97"},"e667fc69-100":{"renderedLength":6675,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-99"},"e667fc69-102":{"renderedLength":92,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-101"},"e667fc69-104":{"renderedLength":17107,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-103"},"e667fc69-106":{"renderedLength":87,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-105"},"e667fc69-108":{"renderedLength":17885,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-107"},"e667fc69-110":{"renderedLength":9742,"gzipLength":0,"brotliLength":0,"metaUid":"e667fc69-109"}},"nodeMetas":{"e667fc69-0":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/main.ts","moduleParts":{"starfish-form.mjs":"e667fc69-1","main-b7ba7952.mjs":"e667fc69-94"},"imported":[{"uid":"e667fc69-8"},{"uid":"e667fc69-10"},{"uid":"e667fc69-14"},{"uid":"e667fc69-16"},{"uid":"e667fc69-18"},{"uid":"e667fc69-20"},{"uid":"e667fc69-24"},{"uid":"e667fc69-26"},{"uid":"e667fc69-30"},{"uid":"e667fc69-32"},{"uid":"e667fc69-34"},{"uid":"e667fc69-36"},{"uid":"e667fc69-38"},{"uid":"e667fc69-46"},{"uid":"e667fc69-42"},{"uid":"e667fc69-48"},{"uid":"e667fc69-50"},{"uid":"e667fc69-52"},{"uid":"e667fc69-54"},{"uid":"e667fc69-56"},{"uid":"e667fc69-58"},{"uid":"e667fc69-60"},{"uid":"e667fc69-62"},{"uid":"e667fc69-64"},{"uid":"e667fc69-66"},{"uid":"e667fc69-68"},{"uid":"e667fc69-70"},{"uid":"e667fc69-72"},{"uid":"e667fc69-74"},{"uid":"e667fc69-76"},{"uid":"e667fc69-78"},{"uid":"e667fc69-111"},{"uid":"e667fc69-80"},{"uid":"e667fc69-2"},{"uid":"e667fc69-88"},{"uid":"e667fc69-92"},{"uid":"e667fc69-97","dynamic":true},{"uid":"e667fc69-99","dynamic":true},{"uid":"e667fc69-103","dynamic":true},{"uid":"e667fc69-107","dynamic":true},{"uid":"e667fc69-109","dynamic":true}],"importedBy":[],"isEntry":true},"e667fc69-2":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/fieldConfig.ts","moduleParts":{"main-b7ba7952.mjs":"e667fc69-3"},"imported":[],"importedBy":[{"uid":"e667fc69-0"},{"uid":"e667fc69-8"},{"uid":"e667fc69-10"},{"uid":"e667fc69-26"},{"uid":"e667fc69-30"},{"uid":"e667fc69-32"},{"uid":"e667fc69-34"},{"uid":"e667fc69-36"},{"uid":"e667fc69-38"},{"uid":"e667fc69-52"},{"uid":"e667fc69-54"},{"uid":"e667fc69-58"},{"uid":"e667fc69-60"},{"uid":"e667fc69-62"},{"uid":"e667fc69-64"},{"uid":"e667fc69-66"},{"uid":"e667fc69-68"},{"uid":"e667fc69-70"},{"uid":"e667fc69-72"},{"uid":"e667fc69-74"},{"uid":"e667fc69-76"},{"uid":"e667fc69-78"},{"uid":"e667fc69-97"},{"uid":"e667fc69-99"}]},"e667fc69-4":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/fieldProps.ts","moduleParts":{"main-b7ba7952.mjs":"e667fc69-5"},"imported":[],"importedBy":[{"uid":"e667fc69-8"},{"uid":"e667fc69-10"},{"uid":"e667fc69-16"},{"uid":"e667fc69-18"},{"uid":"e667fc69-20"},{"uid":"e667fc69-24"},{"uid":"e667fc69-26"},{"uid":"e667fc69-30"},{"uid":"e667fc69-32"},{"uid":"e667fc69-34"},{"uid":"e667fc69-36"},{"uid":"e667fc69-38"},{"uid":"e667fc69-52"},{"uid":"e667fc69-54"},{"uid":"e667fc69-56"},{"uid":"e667fc69-58"},{"uid":"e667fc69-60"},{"uid":"e667fc69-62"},{"uid":"e667fc69-64"},{"uid":"e667fc69-66"},{"uid":"e667fc69-68"},{"uid":"e667fc69-70"},{"uid":"e667fc69-72"},{"uid":"e667fc69-74"},{"uid":"e667fc69-76"},{"uid":"e667fc69-78"},{"uid":"e667fc69-97"},{"uid":"e667fc69-99"},{"uid":"e667fc69-107"}]},"e667fc69-6":{"id":"plugin-vue:export-helper","moduleParts":{"main-b7ba7952.mjs":"e667fc69-7"},"imported":[],"importedBy":[{"uid":"e667fc69-8"},{"uid":"e667fc69-10"},{"uid":"e667fc69-14"},{"uid":"e667fc69-16"},{"uid":"e667fc69-18"},{"uid":"e667fc69-20"},{"uid":"e667fc69-24"},{"uid":"e667fc69-26"},{"uid":"e667fc69-30"},{"uid":"e667fc69-32"},{"uid":"e667fc69-34"},{"uid":"e667fc69-36"},{"uid":"e667fc69-38"},{"uid":"e667fc69-46"},{"uid":"e667fc69-42"},{"uid":"e667fc69-52"},{"uid":"e667fc69-54"},{"uid":"e667fc69-56"},{"uid":"e667fc69-58"},{"uid":"e667fc69-60"},{"uid":"e667fc69-62"},{"uid":"e667fc69-64"},{"uid":"e667fc69-66"},{"uid":"e667fc69-68"},{"uid":"e667fc69-70"},{"uid":"e667fc69-72"},{"uid":"e667fc69-74"},{"uid":"e667fc69-76"},{"uid":"e667fc69-78"},{"uid":"e667fc69-92"},{"uid":"e667fc69-97"},{"uid":"e667fc69-99"},{"uid":"e667fc69-103"},{"uid":"e667fc69-107"},{"uid":"e667fc69-109"}]},"e667fc69-8":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfig.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-9"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-114"},{"uid":"e667fc69-115"},{"uid":"e667fc69-116"},{"uid":"e667fc69-117"},{"uid":"e667fc69-111"},{"uid":"e667fc69-118"},{"uid":"e667fc69-2"},{"uid":"e667fc69-4"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-10":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfigMult.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-11"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-114"},{"uid":"e667fc69-115"},{"uid":"e667fc69-116"},{"uid":"e667fc69-117"},{"uid":"e667fc69-111"},{"uid":"e667fc69-118"},{"uid":"e667fc69-2"},{"uid":"e667fc69-4"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-12":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/Loading.vue?vue&type=style&index=0&scoped=true&lang.scss","moduleParts":{"main-b7ba7952.mjs":"e667fc69-13"},"imported":[],"importedBy":[{"uid":"e667fc69-14"}]},"e667fc69-14":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/Loading.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-15"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-119"},{"uid":"e667fc69-111"},{"uid":"e667fc69-12"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-16":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/action.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-17"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-120"},{"uid":"e667fc69-121"},{"uid":"e667fc69-122"},{"uid":"e667fc69-123"},{"uid":"e667fc69-124"},{"uid":"e667fc69-125"},{"uid":"e667fc69-126"},{"uid":"e667fc69-114"},{"uid":"e667fc69-127"},{"uid":"e667fc69-128"},{"uid":"e667fc69-129"},{"uid":"e667fc69-117"},{"uid":"e667fc69-111"},{"uid":"e667fc69-118"},{"uid":"e667fc69-4"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-18":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/listConfig.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-19"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-125"},{"uid":"e667fc69-126"},{"uid":"e667fc69-114"},{"uid":"e667fc69-130"},{"uid":"e667fc69-111"},{"uid":"e667fc69-4"},{"uid":"e667fc69-118"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-20":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/panel.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-21"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-125"},{"uid":"e667fc69-126"},{"uid":"e667fc69-114"},{"uid":"e667fc69-115"},{"uid":"e667fc69-127"},{"uid":"e667fc69-117"},{"uid":"e667fc69-111"},{"uid":"e667fc69-4"},{"uid":"e667fc69-118"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-22":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/customHooks.ts","moduleParts":{"main-b7ba7952.mjs":"e667fc69-23"},"imported":[{"uid":"e667fc69-111"}],"importedBy":[{"uid":"e667fc69-24"},{"uid":"e667fc69-26"},{"uid":"e667fc69-30"},{"uid":"e667fc69-32"},{"uid":"e667fc69-34"},{"uid":"e667fc69-36"},{"uid":"e667fc69-38"},{"uid":"e667fc69-52"},{"uid":"e667fc69-54"},{"uid":"e667fc69-56"},{"uid":"e667fc69-58"},{"uid":"e667fc69-60"},{"uid":"e667fc69-62"},{"uid":"e667fc69-64"},{"uid":"e667fc69-66"},{"uid":"e667fc69-68"},{"uid":"e667fc69-70"},{"uid":"e667fc69-72"},{"uid":"e667fc69-74"},{"uid":"e667fc69-76"},{"uid":"e667fc69-78"},{"uid":"e667fc69-97"},{"uid":"e667fc69-99"}]},"e667fc69-24":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/radiogroup.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-25"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-131"},{"uid":"e667fc69-132"},{"uid":"e667fc69-117"},{"uid":"e667fc69-111"},{"uid":"e667fc69-4"},{"uid":"e667fc69-22"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-26":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/CheckBox/index.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-27"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-133"},{"uid":"e667fc69-116"},{"uid":"e667fc69-117"},{"uid":"e667fc69-111"},{"uid":"e667fc69-2"},{"uid":"e667fc69-4"},{"uid":"e667fc69-22"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-28":{"id":"C:/Users/jiton/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-b7ba7952.mjs":"e667fc69-29"},"imported":[],"importedBy":[{"uid":"e667fc69-30"}]},"e667fc69-30":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/ColorSelect/index.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-31"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-134"},{"uid":"e667fc69-115"},{"uid":"e667fc69-117"},{"uid":"e667fc69-111"},{"uid":"e667fc69-2"},{"uid":"e667fc69-4"},{"uid":"e667fc69-22"},{"uid":"e667fc69-28"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-32":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Date/index.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-33"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-135"},{"uid":"e667fc69-117"},{"uid":"e667fc69-111"},{"uid":"e667fc69-2"},{"uid":"e667fc69-4"},{"uid":"e667fc69-22"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-34":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/DateTime/index.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-35"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-135"},{"uid":"e667fc69-117"},{"uid":"e667fc69-111"},{"uid":"e667fc69-2"},{"uid":"e667fc69-4"},{"uid":"e667fc69-22"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-36":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/InputNumber/index.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-37"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-130"},{"uid":"e667fc69-117"},{"uid":"e667fc69-111"},{"uid":"e667fc69-2"},{"uid":"e667fc69-4"},{"uid":"e667fc69-22"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-38":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Radio/index.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-39"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-131"},{"uid":"e667fc69-136"},{"uid":"e667fc69-117"},{"uid":"e667fc69-111"},{"uid":"e667fc69-2"},{"uid":"e667fc69-4"},{"uid":"e667fc69-22"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-40":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/MenuItem.vue?vue&type=style&index=0&scoped=true&lang.css","moduleParts":{"main-b7ba7952.mjs":"e667fc69-41"},"imported":[],"importedBy":[{"uid":"e667fc69-42"}]},"e667fc69-42":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/MenuItem.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-43"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-117"},{"uid":"e667fc69-111"},{"uid":"e667fc69-40"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"},{"uid":"e667fc69-46"}]},"e667fc69-44":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/MenuBar.vue?vue&type=style&index=0&scoped=true&lang.css","moduleParts":{"main-b7ba7952.mjs":"e667fc69-45"},"imported":[],"importedBy":[{"uid":"e667fc69-46"}]},"e667fc69-46":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/MenuBar.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-47"},"imported":[{"uid":"e667fc69-42"},{"uid":"e667fc69-111"},{"uid":"e667fc69-44"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"},{"uid":"e667fc69-97"}]},"e667fc69-48":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/ruleform.json","moduleParts":{"main-b7ba7952.mjs":"e667fc69-49"},"imported":[],"importedBy":[{"uid":"e667fc69-0"},{"uid":"e667fc69-107"}]},"e667fc69-50":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/rules.js","moduleParts":{"main-b7ba7952.mjs":"e667fc69-51"},"imported":[],"importedBy":[{"uid":"e667fc69-0"},{"uid":"e667fc69-107"}]},"e667fc69-52":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Selected/index.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-53"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-128"},{"uid":"e667fc69-129"},{"uid":"e667fc69-117"},{"uid":"e667fc69-111"},{"uid":"e667fc69-2"},{"uid":"e667fc69-4"},{"uid":"e667fc69-22"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-54":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Selecteds/index.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-55"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-128"},{"uid":"e667fc69-129"},{"uid":"e667fc69-117"},{"uid":"e667fc69-111"},{"uid":"e667fc69-2"},{"uid":"e667fc69-4"},{"uid":"e667fc69-22"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-56":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/ShowRule/index.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-57"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-126"},{"uid":"e667fc69-117"},{"uid":"e667fc69-111"},{"uid":"e667fc69-4"},{"uid":"e667fc69-22"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-58":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Slider/index.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-59"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-137"},{"uid":"e667fc69-117"},{"uid":"e667fc69-111"},{"uid":"e667fc69-2"},{"uid":"e667fc69-4"},{"uid":"e667fc69-22"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-60":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Switch/index.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-61"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-138"},{"uid":"e667fc69-117"},{"uid":"e667fc69-111"},{"uid":"e667fc69-2"},{"uid":"e667fc69-4"},{"uid":"e667fc69-22"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-62":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Text/index.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-63"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-115"},{"uid":"e667fc69-117"},{"uid":"e667fc69-111"},{"uid":"e667fc69-2"},{"uid":"e667fc69-4"},{"uid":"e667fc69-22"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-64":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/TextArea/index.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-65"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-115"},{"uid":"e667fc69-117"},{"uid":"e667fc69-111"},{"uid":"e667fc69-2"},{"uid":"e667fc69-4"},{"uid":"e667fc69-22"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-66":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Time/index.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-67"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-139"},{"uid":"e667fc69-117"},{"uid":"e667fc69-111"},{"uid":"e667fc69-4"},{"uid":"e667fc69-2"},{"uid":"e667fc69-22"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-68":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Divider.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-69"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-140"},{"uid":"e667fc69-111"},{"uid":"e667fc69-2"},{"uid":"e667fc69-4"},{"uid":"e667fc69-22"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-70":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Info.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-71"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-141"},{"uid":"e667fc69-117"},{"uid":"e667fc69-111"},{"uid":"e667fc69-2"},{"uid":"e667fc69-4"},{"uid":"e667fc69-22"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-72":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Tabs.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-73"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-142"},{"uid":"e667fc69-143"},{"uid":"e667fc69-144"},{"uid":"e667fc69-111"},{"uid":"e667fc69-2"},{"uid":"e667fc69-4"},{"uid":"e667fc69-22"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-74":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/collapse.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-75"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-123"},{"uid":"e667fc69-124"},{"uid":"e667fc69-144"},{"uid":"e667fc69-111"},{"uid":"e667fc69-2"},{"uid":"e667fc69-4"},{"uid":"e667fc69-22"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-76":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/grid.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-77"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-125"},{"uid":"e667fc69-144"},{"uid":"e667fc69-127"},{"uid":"e667fc69-111"},{"uid":"e667fc69-2"},{"uid":"e667fc69-4"},{"uid":"e667fc69-22"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-78":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/table.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-79"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-144"},{"uid":"e667fc69-111"},{"uid":"e667fc69-2"},{"uid":"e667fc69-4"},{"uid":"e667fc69-22"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-80":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/styles/index.scss","moduleParts":{"main-b7ba7952.mjs":"e667fc69-81"},"imported":[],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-82":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/node_modules/.pnpm/nanoid@4.0.0/node_modules/nanoid/index.browser.js","moduleParts":{"main-b7ba7952.mjs":"e667fc69-83"},"imported":[{"uid":"e667fc69-160"}],"importedBy":[{"uid":"e667fc69-88"}]},"e667fc69-84":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/history.ts","moduleParts":{"main-b7ba7952.mjs":"e667fc69-85"},"imported":[{"uid":"e667fc69-111"},{"uid":"e667fc69-86"}],"importedBy":[{"uid":"e667fc69-86"}]},"e667fc69-86":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/form.ts","moduleParts":{"main-b7ba7952.mjs":"e667fc69-87"},"imported":[{"uid":"e667fc69-111"},{"uid":"e667fc69-84"}],"importedBy":[{"uid":"e667fc69-88"},{"uid":"e667fc69-84"}]},"e667fc69-88":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/_.ts","moduleParts":{"main-b7ba7952.mjs":"e667fc69-89"},"imported":[{"uid":"e667fc69-145"},{"uid":"e667fc69-82"},{"uid":"e667fc69-86"}],"importedBy":[{"uid":"e667fc69-0"},{"uid":"e667fc69-99"},{"uid":"e667fc69-107"}]},"e667fc69-90":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue?vue&type=style&index=0&scoped=true&lang.scss","moduleParts":{"main-b7ba7952.mjs":"e667fc69-91"},"imported":[],"importedBy":[{"uid":"e667fc69-92"}]},"e667fc69-92":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue","moduleParts":{"main-b7ba7952.mjs":"e667fc69-93"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-119"},{"uid":"e667fc69-111"},{"uid":"e667fc69-90"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-95":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/index.vue?vue&type=style&index=0&scoped=true&lang.css","moduleParts":{"index-e7ab76ff.mjs":"e667fc69-96"},"imported":[],"importedBy":[{"uid":"e667fc69-97"}]},"e667fc69-97":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/index.vue","moduleParts":{"index-e7ab76ff.mjs":"e667fc69-98"},"imported":[{"uid":"e667fc69-46"},{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-117"},{"uid":"e667fc69-111"},{"uid":"e667fc69-146"},{"uid":"e667fc69-147"},{"uid":"e667fc69-148"},{"uid":"e667fc69-149"},{"uid":"e667fc69-150"},{"uid":"e667fc69-151"},{"uid":"e667fc69-2"},{"uid":"e667fc69-4"},{"uid":"e667fc69-22"},{"uid":"e667fc69-95"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-99":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","moduleParts":{"index-da008a01.mjs":"e667fc69-100"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-152"},{"uid":"e667fc69-153"},{"uid":"e667fc69-126"},{"uid":"e667fc69-154"},{"uid":"e667fc69-117"},{"uid":"e667fc69-111"},{"uid":"e667fc69-2"},{"uid":"e667fc69-4"},{"uid":"e667fc69-22"},{"uid":"e667fc69-155"},{"uid":"e667fc69-88"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-101":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/formAction.vue?vue&type=style&index=0&lang.scss","moduleParts":{"formAction-fda21a39.mjs":"e667fc69-102"},"imported":[],"importedBy":[{"uid":"e667fc69-103"}]},"e667fc69-103":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/formAction.vue","moduleParts":{"formAction-fda21a39.mjs":"e667fc69-104"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-156"},{"uid":"e667fc69-144"},{"uid":"e667fc69-115"},{"uid":"e667fc69-157"},{"uid":"e667fc69-152"},{"uid":"e667fc69-154"},{"uid":"e667fc69-158"},{"uid":"e667fc69-126"},{"uid":"e667fc69-117"},{"uid":"e667fc69-111"},{"uid":"e667fc69-159"},{"uid":"e667fc69-101"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-105":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"index-d372b287.mjs":"e667fc69-106"},"imported":[],"importedBy":[{"uid":"e667fc69-107"}]},"e667fc69-107":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/index.vue","moduleParts":{"index-d372b287.mjs":"e667fc69-108"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-152"},{"uid":"e667fc69-154"},{"uid":"e667fc69-153"},{"uid":"e667fc69-141"},{"uid":"e667fc69-114"},{"uid":"e667fc69-128"},{"uid":"e667fc69-129"},{"uid":"e667fc69-120"},{"uid":"e667fc69-121"},{"uid":"e667fc69-122"},{"uid":"e667fc69-126"},{"uid":"e667fc69-117"},{"uid":"e667fc69-111"},{"uid":"e667fc69-4"},{"uid":"e667fc69-88"},{"uid":"e667fc69-50"},{"uid":"e667fc69-48"},{"uid":"e667fc69-118"},{"uid":"e667fc69-109"},{"uid":"e667fc69-159"},{"uid":"e667fc69-105"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"}]},"e667fc69-109":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","moduleParts":{"starfish-form-a5d43f95.mjs":"e667fc69-110"},"imported":[{"uid":"e667fc69-112"},{"uid":"e667fc69-113"},{"uid":"e667fc69-156"},{"uid":"e667fc69-144"},{"uid":"e667fc69-111"},{"uid":"e667fc69-6"}],"importedBy":[{"uid":"e667fc69-0"},{"uid":"e667fc69-107"}]},"e667fc69-111":{"id":"vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-0"},{"uid":"e667fc69-8"},{"uid":"e667fc69-10"},{"uid":"e667fc69-14"},{"uid":"e667fc69-16"},{"uid":"e667fc69-18"},{"uid":"e667fc69-20"},{"uid":"e667fc69-24"},{"uid":"e667fc69-26"},{"uid":"e667fc69-30"},{"uid":"e667fc69-32"},{"uid":"e667fc69-34"},{"uid":"e667fc69-36"},{"uid":"e667fc69-38"},{"uid":"e667fc69-46"},{"uid":"e667fc69-42"},{"uid":"e667fc69-52"},{"uid":"e667fc69-54"},{"uid":"e667fc69-56"},{"uid":"e667fc69-58"},{"uid":"e667fc69-60"},{"uid":"e667fc69-62"},{"uid":"e667fc69-64"},{"uid":"e667fc69-66"},{"uid":"e667fc69-68"},{"uid":"e667fc69-70"},{"uid":"e667fc69-72"},{"uid":"e667fc69-74"},{"uid":"e667fc69-76"},{"uid":"e667fc69-78"},{"uid":"e667fc69-92"},{"uid":"e667fc69-97"},{"uid":"e667fc69-99"},{"uid":"e667fc69-103"},{"uid":"e667fc69-107"},{"uid":"e667fc69-109"},{"uid":"e667fc69-22"},{"uid":"e667fc69-86"},{"uid":"e667fc69-84"}],"isExternal":true},"e667fc69-112":{"id":"element-plus/es","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-8"},{"uid":"e667fc69-10"},{"uid":"e667fc69-14"},{"uid":"e667fc69-16"},{"uid":"e667fc69-18"},{"uid":"e667fc69-20"},{"uid":"e667fc69-24"},{"uid":"e667fc69-26"},{"uid":"e667fc69-30"},{"uid":"e667fc69-32"},{"uid":"e667fc69-34"},{"uid":"e667fc69-36"},{"uid":"e667fc69-38"},{"uid":"e667fc69-42"},{"uid":"e667fc69-52"},{"uid":"e667fc69-54"},{"uid":"e667fc69-56"},{"uid":"e667fc69-58"},{"uid":"e667fc69-60"},{"uid":"e667fc69-62"},{"uid":"e667fc69-64"},{"uid":"e667fc69-66"},{"uid":"e667fc69-68"},{"uid":"e667fc69-70"},{"uid":"e667fc69-72"},{"uid":"e667fc69-74"},{"uid":"e667fc69-76"},{"uid":"e667fc69-78"},{"uid":"e667fc69-92"},{"uid":"e667fc69-97"},{"uid":"e667fc69-99"},{"uid":"e667fc69-103"},{"uid":"e667fc69-107"},{"uid":"e667fc69-109"}],"isExternal":true},"e667fc69-113":{"id":"element-plus/es/components/base/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-8"},{"uid":"e667fc69-10"},{"uid":"e667fc69-14"},{"uid":"e667fc69-16"},{"uid":"e667fc69-18"},{"uid":"e667fc69-20"},{"uid":"e667fc69-24"},{"uid":"e667fc69-26"},{"uid":"e667fc69-30"},{"uid":"e667fc69-32"},{"uid":"e667fc69-34"},{"uid":"e667fc69-36"},{"uid":"e667fc69-38"},{"uid":"e667fc69-42"},{"uid":"e667fc69-52"},{"uid":"e667fc69-54"},{"uid":"e667fc69-56"},{"uid":"e667fc69-58"},{"uid":"e667fc69-60"},{"uid":"e667fc69-62"},{"uid":"e667fc69-64"},{"uid":"e667fc69-66"},{"uid":"e667fc69-68"},{"uid":"e667fc69-70"},{"uid":"e667fc69-72"},{"uid":"e667fc69-74"},{"uid":"e667fc69-76"},{"uid":"e667fc69-78"},{"uid":"e667fc69-92"},{"uid":"e667fc69-97"},{"uid":"e667fc69-99"},{"uid":"e667fc69-103"},{"uid":"e667fc69-107"},{"uid":"e667fc69-109"}],"isExternal":true},"e667fc69-114":{"id":"element-plus/es/components/icon/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-8"},{"uid":"e667fc69-10"},{"uid":"e667fc69-16"},{"uid":"e667fc69-18"},{"uid":"e667fc69-20"},{"uid":"e667fc69-107"}],"isExternal":true},"e667fc69-115":{"id":"element-plus/es/components/input/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-8"},{"uid":"e667fc69-10"},{"uid":"e667fc69-20"},{"uid":"e667fc69-30"},{"uid":"e667fc69-62"},{"uid":"e667fc69-64"},{"uid":"e667fc69-103"}],"isExternal":true},"e667fc69-116":{"id":"element-plus/es/components/checkbox/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-8"},{"uid":"e667fc69-10"},{"uid":"e667fc69-26"}],"isExternal":true},"e667fc69-117":{"id":"element-plus/es/components/tooltip/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-8"},{"uid":"e667fc69-10"},{"uid":"e667fc69-16"},{"uid":"e667fc69-20"},{"uid":"e667fc69-24"},{"uid":"e667fc69-26"},{"uid":"e667fc69-30"},{"uid":"e667fc69-32"},{"uid":"e667fc69-34"},{"uid":"e667fc69-36"},{"uid":"e667fc69-38"},{"uid":"e667fc69-42"},{"uid":"e667fc69-52"},{"uid":"e667fc69-54"},{"uid":"e667fc69-56"},{"uid":"e667fc69-58"},{"uid":"e667fc69-60"},{"uid":"e667fc69-62"},{"uid":"e667fc69-64"},{"uid":"e667fc69-66"},{"uid":"e667fc69-70"},{"uid":"e667fc69-97"},{"uid":"e667fc69-99"},{"uid":"e667fc69-103"},{"uid":"e667fc69-107"}],"isExternal":true},"e667fc69-118":{"id":"@element-plus/icons-vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-8"},{"uid":"e667fc69-10"},{"uid":"e667fc69-16"},{"uid":"e667fc69-18"},{"uid":"e667fc69-20"},{"uid":"e667fc69-107"}],"isExternal":true},"e667fc69-119":{"id":"element-plus/es/components/loading/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-14"},{"uid":"e667fc69-92"}],"isExternal":true},"e667fc69-120":{"id":"element-plus/es/components/dropdown/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-16"},{"uid":"e667fc69-107"}],"isExternal":true},"e667fc69-121":{"id":"element-plus/es/components/dropdown-menu/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-16"},{"uid":"e667fc69-107"}],"isExternal":true},"e667fc69-122":{"id":"element-plus/es/components/dropdown-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-16"},{"uid":"e667fc69-107"}],"isExternal":true},"e667fc69-123":{"id":"element-plus/es/components/collapse/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-16"},{"uid":"e667fc69-74"}],"isExternal":true},"e667fc69-124":{"id":"element-plus/es/components/collapse-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-16"},{"uid":"e667fc69-74"}],"isExternal":true},"e667fc69-125":{"id":"element-plus/es/components/row/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-16"},{"uid":"e667fc69-18"},{"uid":"e667fc69-20"},{"uid":"e667fc69-76"}],"isExternal":true},"e667fc69-126":{"id":"element-plus/es/components/button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-16"},{"uid":"e667fc69-18"},{"uid":"e667fc69-20"},{"uid":"e667fc69-56"},{"uid":"e667fc69-99"},{"uid":"e667fc69-103"},{"uid":"e667fc69-107"}],"isExternal":true},"e667fc69-127":{"id":"element-plus/es/components/col/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-16"},{"uid":"e667fc69-20"},{"uid":"e667fc69-76"}],"isExternal":true},"e667fc69-128":{"id":"element-plus/es/components/select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-16"},{"uid":"e667fc69-52"},{"uid":"e667fc69-54"},{"uid":"e667fc69-107"}],"isExternal":true},"e667fc69-129":{"id":"element-plus/es/components/option/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-16"},{"uid":"e667fc69-52"},{"uid":"e667fc69-54"},{"uid":"e667fc69-107"}],"isExternal":true},"e667fc69-130":{"id":"element-plus/es/components/input-number/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-18"},{"uid":"e667fc69-36"}],"isExternal":true},"e667fc69-131":{"id":"element-plus/es/components/radio-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-24"},{"uid":"e667fc69-38"}],"isExternal":true},"e667fc69-132":{"id":"element-plus/es/components/radio-button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-24"}],"isExternal":true},"e667fc69-133":{"id":"element-plus/es/components/checkbox-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-26"}],"isExternal":true},"e667fc69-134":{"id":"element-plus/es/components/color-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-30"}],"isExternal":true},"e667fc69-135":{"id":"element-plus/es/components/date-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-32"},{"uid":"e667fc69-34"}],"isExternal":true},"e667fc69-136":{"id":"element-plus/es/components/radio/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-38"}],"isExternal":true},"e667fc69-137":{"id":"element-plus/es/components/slider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-58"}],"isExternal":true},"e667fc69-138":{"id":"element-plus/es/components/switch/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-60"}],"isExternal":true},"e667fc69-139":{"id":"element-plus/es/components/time-select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-66"}],"isExternal":true},"e667fc69-140":{"id":"element-plus/es/components/divider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-68"}],"isExternal":true},"e667fc69-141":{"id":"element-plus/es/components/alert/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-70"},{"uid":"e667fc69-107"}],"isExternal":true},"e667fc69-142":{"id":"element-plus/es/components/tabs/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-72"}],"isExternal":true},"e667fc69-143":{"id":"element-plus/es/components/tab-pane/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-72"}],"isExternal":true},"e667fc69-144":{"id":"element-plus/es/components/form-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-72"},{"uid":"e667fc69-74"},{"uid":"e667fc69-76"},{"uid":"e667fc69-78"},{"uid":"e667fc69-103"},{"uid":"e667fc69-109"}],"isExternal":true},"e667fc69-145":{"id":"element-plus","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-88"}],"isExternal":true},"e667fc69-146":{"id":"@tiptap/vue-3","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-97"}],"isExternal":true},"e667fc69-147":{"id":"@tiptap/starter-kit","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-97"}],"isExternal":true},"e667fc69-148":{"id":"@tiptap/extension-code","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-97"}],"isExternal":true},"e667fc69-149":{"id":"@tiptap/extension-blockquote","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-97"}],"isExternal":true},"e667fc69-150":{"id":"@tiptap/extension-horizontal-rule","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-97"}],"isExternal":true},"e667fc69-151":{"id":"@tiptap/extension-code-block","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-97"}],"isExternal":true},"e667fc69-152":{"id":"element-plus/es/components/container/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-99"},{"uid":"e667fc69-103"},{"uid":"e667fc69-107"}],"isExternal":true},"e667fc69-153":{"id":"element-plus/es/components/footer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-99"},{"uid":"e667fc69-107"}],"isExternal":true},"e667fc69-154":{"id":"element-plus/es/components/main/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-99"},{"uid":"e667fc69-103"},{"uid":"e667fc69-107"}],"isExternal":true},"e667fc69-155":{"id":"jsoneditor","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-99"}],"isExternal":true},"e667fc69-156":{"id":"element-plus/es/components/form/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-103"},{"uid":"e667fc69-109"}],"isExternal":true},"e667fc69-157":{"id":"element-plus/es/components/aside/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-103"}],"isExternal":true},"e667fc69-158":{"id":"element-plus/es/components/scrollbar/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-103"}],"isExternal":true},"e667fc69-159":{"id":"vue-codemirror","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-103"},{"uid":"e667fc69-107"}],"isExternal":true},"e667fc69-160":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/node_modules/.pnpm/nanoid@4.0.0/node_modules/nanoid/url-alphabet/index.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"e667fc69-82"}]}},"env":{"rollup":"3.29.4"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
4825
+ const data = {"version":2,"tree":{"name":"root","children":[{"name":"starfish-form.mjs","uid":"0a421a29-1"},{"name":"main-496f8253.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design","children":[{"name":"packages","children":[{"name":"form/src","children":[{"name":"utils","children":[{"uid":"0a421a29-3","name":"fieldConfig.ts"},{"uid":"0a421a29-5","name":"fieldProps.ts"},{"uid":"0a421a29-23","name":"customHooks.ts"}]},{"name":"common","children":[{"uid":"0a421a29-9","name":"KeyValueConfig.vue"},{"uid":"0a421a29-11","name":"KeyValueConfigMult.vue"},{"uid":"0a421a29-13","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"0a421a29-15","name":"Loading.vue"},{"uid":"0a421a29-17","name":"action.vue"},{"uid":"0a421a29-19","name":"listConfig.vue"},{"uid":"0a421a29-21","name":"panel.vue"},{"uid":"0a421a29-25","name":"radiogroup.vue"}]},{"name":"components","children":[{"name":"CheckBox/index.vue","uid":"0a421a29-27"},{"name":"ColorSelect","children":[{"uid":"0a421a29-29","name":"index.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"0a421a29-31","name":"index.vue"}]},{"name":"Date/index.vue","uid":"0a421a29-33"},{"name":"DateTime/index.vue","uid":"0a421a29-35"},{"name":"InputNumber/index.vue","uid":"0a421a29-37"},{"name":"Radio/index.vue","uid":"0a421a29-39"},{"name":"RichText","children":[{"uid":"0a421a29-41","name":"MenuItem.vue?vue&type=style&index=0&scoped=true&lang.css"},{"uid":"0a421a29-43","name":"MenuItem.vue"},{"uid":"0a421a29-45","name":"MenuBar.vue?vue&type=style&index=0&scoped=true&lang.css"},{"uid":"0a421a29-47","name":"MenuBar.vue"}]},{"name":"Rule","children":[{"uid":"0a421a29-49","name":"ruleform.json"},{"uid":"0a421a29-51","name":"rules.js"}]},{"name":"Selected/index.vue","uid":"0a421a29-53"},{"name":"Selecteds/index.vue","uid":"0a421a29-55"},{"name":"ShowRule/index.vue","uid":"0a421a29-57"},{"name":"Slider/index.vue","uid":"0a421a29-59"},{"name":"Switch/index.vue","uid":"0a421a29-61"},{"name":"Text/index.vue","uid":"0a421a29-63"},{"name":"TextArea/index.vue","uid":"0a421a29-65"},{"name":"Time/index.vue","uid":"0a421a29-67"}]},{"name":"layout","children":[{"uid":"0a421a29-69","name":"Divider.vue"},{"uid":"0a421a29-71","name":"Info.vue"},{"uid":"0a421a29-73","name":"Tabs.vue"},{"uid":"0a421a29-75","name":"collapse.vue"},{"uid":"0a421a29-77","name":"grid.vue"},{"uid":"0a421a29-79","name":"table.vue"}]},{"name":"styles/index.scss","uid":"0a421a29-81"},{"uid":"0a421a29-94","name":"main.ts"}]},{"name":"editor/src","children":[{"name":"controller","children":[{"uid":"0a421a29-85","name":"history.ts"},{"uid":"0a421a29-87","name":"form.ts"}]},{"name":"utils/_.ts","uid":"0a421a29-89"},{"name":"common","children":[{"uid":"0a421a29-91","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"0a421a29-93","name":"Loading.vue"}]}]}]},{"name":"node_modules/.pnpm/nanoid@4.0.0/node_modules/nanoid/index.browser.js","uid":"0a421a29-83"}]},{"uid":"0a421a29-7","name":"plugin-vue:export-helper"}]},{"name":"index-52a3b28c.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText","children":[{"uid":"0a421a29-96","name":"index.vue?vue&type=style&index=0&scoped=true&lang.css"},{"uid":"0a421a29-98","name":"index.vue"}]}]},{"name":"index-60b2442f.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","uid":"0a421a29-100"}]},{"name":"formAction-2190ddc9.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common","children":[{"uid":"0a421a29-102","name":"formAction.vue?vue&type=style&index=0&lang.scss"},{"uid":"0a421a29-104","name":"formAction.vue"}]}]},{"name":"index-cd91e2b4.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule","children":[{"uid":"0a421a29-106","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"0a421a29-108","name":"index.vue"}]}]},{"name":"starfish-form-3a589bc9.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","uid":"0a421a29-110"}]}],"isRoot":true},"nodeParts":{"0a421a29-1":{"id":"starfish-form.mjs","gzipLength":0,"brotliLength":0,"renderedLength":1902,"metaUid":"0a421a29-0"},"0a421a29-3":{"renderedLength":18542,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-2"},"0a421a29-5":{"renderedLength":626,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-4"},"0a421a29-7":{"renderedLength":159,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-6"},"0a421a29-9":{"renderedLength":8660,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-8"},"0a421a29-11":{"renderedLength":8485,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-10"},"0a421a29-13":{"renderedLength":103,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-12"},"0a421a29-15":{"renderedLength":404,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-14"},"0a421a29-17":{"renderedLength":8527,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-16"},"0a421a29-19":{"renderedLength":3264,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-18"},"0a421a29-21":{"renderedLength":5397,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-20"},"0a421a29-23":{"renderedLength":482,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-22"},"0a421a29-25":{"renderedLength":2228,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-24"},"0a421a29-27":{"renderedLength":4844,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-26"},"0a421a29-29":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-28"},"0a421a29-31":{"renderedLength":3864,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-30"},"0a421a29-33":{"renderedLength":5532,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-32"},"0a421a29-35":{"renderedLength":4778,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-34"},"0a421a29-37":{"renderedLength":4741,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-36"},"0a421a29-39":{"renderedLength":4756,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-38"},"0a421a29-41":{"renderedLength":102,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-40"},"0a421a29-43":{"renderedLength":1900,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-42"},"0a421a29-45":{"renderedLength":101,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-44"},"0a421a29-47":{"renderedLength":4109,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-46"},"0a421a29-49":{"renderedLength":5040,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-48"},"0a421a29-51":{"renderedLength":2564,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-50"},"0a421a29-53":{"renderedLength":4866,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-52"},"0a421a29-55":{"renderedLength":5442,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-54"},"0a421a29-57":{"renderedLength":4133,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-56"},"0a421a29-59":{"renderedLength":2944,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-58"},"0a421a29-61":{"renderedLength":2995,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-60"},"0a421a29-63":{"renderedLength":4704,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-62"},"0a421a29-65":{"renderedLength":4510,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-64"},"0a421a29-67":{"renderedLength":3240,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-66"},"0a421a29-69":{"renderedLength":1315,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-68"},"0a421a29-71":{"renderedLength":2999,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-70"},"0a421a29-73":{"renderedLength":5888,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-72"},"0a421a29-75":{"renderedLength":6238,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-74"},"0a421a29-77":{"renderedLength":6689,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-76"},"0a421a29-79":{"renderedLength":6149,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-78"},"0a421a29-81":{"renderedLength":17,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-80"},"0a421a29-83":{"renderedLength":350,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-82"},"0a421a29-85":{"renderedLength":1613,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-84"},"0a421a29-87":{"renderedLength":6014,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-86"},"0a421a29-89":{"renderedLength":11658,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-88"},"0a421a29-91":{"renderedLength":101,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-90"},"0a421a29-93":{"renderedLength":390,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-92"},"0a421a29-94":{"renderedLength":3090,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-0"},"0a421a29-96":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-95"},"0a421a29-98":{"renderedLength":4350,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-97"},"0a421a29-100":{"renderedLength":6675,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-99"},"0a421a29-102":{"renderedLength":92,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-101"},"0a421a29-104":{"renderedLength":17107,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-103"},"0a421a29-106":{"renderedLength":87,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-105"},"0a421a29-108":{"renderedLength":17885,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-107"},"0a421a29-110":{"renderedLength":9803,"gzipLength":0,"brotliLength":0,"metaUid":"0a421a29-109"}},"nodeMetas":{"0a421a29-0":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/main.ts","moduleParts":{"starfish-form.mjs":"0a421a29-1","main-496f8253.mjs":"0a421a29-94"},"imported":[{"uid":"0a421a29-8"},{"uid":"0a421a29-10"},{"uid":"0a421a29-14"},{"uid":"0a421a29-16"},{"uid":"0a421a29-18"},{"uid":"0a421a29-20"},{"uid":"0a421a29-24"},{"uid":"0a421a29-26"},{"uid":"0a421a29-30"},{"uid":"0a421a29-32"},{"uid":"0a421a29-34"},{"uid":"0a421a29-36"},{"uid":"0a421a29-38"},{"uid":"0a421a29-46"},{"uid":"0a421a29-42"},{"uid":"0a421a29-48"},{"uid":"0a421a29-50"},{"uid":"0a421a29-52"},{"uid":"0a421a29-54"},{"uid":"0a421a29-56"},{"uid":"0a421a29-58"},{"uid":"0a421a29-60"},{"uid":"0a421a29-62"},{"uid":"0a421a29-64"},{"uid":"0a421a29-66"},{"uid":"0a421a29-68"},{"uid":"0a421a29-70"},{"uid":"0a421a29-72"},{"uid":"0a421a29-74"},{"uid":"0a421a29-76"},{"uid":"0a421a29-78"},{"uid":"0a421a29-111"},{"uid":"0a421a29-80"},{"uid":"0a421a29-2"},{"uid":"0a421a29-88"},{"uid":"0a421a29-92"},{"uid":"0a421a29-97","dynamic":true},{"uid":"0a421a29-99","dynamic":true},{"uid":"0a421a29-103","dynamic":true},{"uid":"0a421a29-107","dynamic":true},{"uid":"0a421a29-109","dynamic":true}],"importedBy":[],"isEntry":true},"0a421a29-2":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/fieldConfig.ts","moduleParts":{"main-496f8253.mjs":"0a421a29-3"},"imported":[],"importedBy":[{"uid":"0a421a29-0"},{"uid":"0a421a29-8"},{"uid":"0a421a29-10"},{"uid":"0a421a29-26"},{"uid":"0a421a29-30"},{"uid":"0a421a29-32"},{"uid":"0a421a29-34"},{"uid":"0a421a29-36"},{"uid":"0a421a29-38"},{"uid":"0a421a29-52"},{"uid":"0a421a29-54"},{"uid":"0a421a29-58"},{"uid":"0a421a29-60"},{"uid":"0a421a29-62"},{"uid":"0a421a29-64"},{"uid":"0a421a29-66"},{"uid":"0a421a29-68"},{"uid":"0a421a29-70"},{"uid":"0a421a29-72"},{"uid":"0a421a29-74"},{"uid":"0a421a29-76"},{"uid":"0a421a29-78"},{"uid":"0a421a29-97"},{"uid":"0a421a29-99"}]},"0a421a29-4":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/fieldProps.ts","moduleParts":{"main-496f8253.mjs":"0a421a29-5"},"imported":[],"importedBy":[{"uid":"0a421a29-8"},{"uid":"0a421a29-10"},{"uid":"0a421a29-16"},{"uid":"0a421a29-18"},{"uid":"0a421a29-20"},{"uid":"0a421a29-24"},{"uid":"0a421a29-26"},{"uid":"0a421a29-30"},{"uid":"0a421a29-32"},{"uid":"0a421a29-34"},{"uid":"0a421a29-36"},{"uid":"0a421a29-38"},{"uid":"0a421a29-52"},{"uid":"0a421a29-54"},{"uid":"0a421a29-56"},{"uid":"0a421a29-58"},{"uid":"0a421a29-60"},{"uid":"0a421a29-62"},{"uid":"0a421a29-64"},{"uid":"0a421a29-66"},{"uid":"0a421a29-68"},{"uid":"0a421a29-70"},{"uid":"0a421a29-72"},{"uid":"0a421a29-74"},{"uid":"0a421a29-76"},{"uid":"0a421a29-78"},{"uid":"0a421a29-97"},{"uid":"0a421a29-99"},{"uid":"0a421a29-107"}]},"0a421a29-6":{"id":"plugin-vue:export-helper","moduleParts":{"main-496f8253.mjs":"0a421a29-7"},"imported":[],"importedBy":[{"uid":"0a421a29-8"},{"uid":"0a421a29-10"},{"uid":"0a421a29-14"},{"uid":"0a421a29-16"},{"uid":"0a421a29-18"},{"uid":"0a421a29-20"},{"uid":"0a421a29-24"},{"uid":"0a421a29-26"},{"uid":"0a421a29-30"},{"uid":"0a421a29-32"},{"uid":"0a421a29-34"},{"uid":"0a421a29-36"},{"uid":"0a421a29-38"},{"uid":"0a421a29-46"},{"uid":"0a421a29-42"},{"uid":"0a421a29-52"},{"uid":"0a421a29-54"},{"uid":"0a421a29-56"},{"uid":"0a421a29-58"},{"uid":"0a421a29-60"},{"uid":"0a421a29-62"},{"uid":"0a421a29-64"},{"uid":"0a421a29-66"},{"uid":"0a421a29-68"},{"uid":"0a421a29-70"},{"uid":"0a421a29-72"},{"uid":"0a421a29-74"},{"uid":"0a421a29-76"},{"uid":"0a421a29-78"},{"uid":"0a421a29-92"},{"uid":"0a421a29-97"},{"uid":"0a421a29-99"},{"uid":"0a421a29-103"},{"uid":"0a421a29-107"},{"uid":"0a421a29-109"}]},"0a421a29-8":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfig.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-9"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-114"},{"uid":"0a421a29-115"},{"uid":"0a421a29-116"},{"uid":"0a421a29-117"},{"uid":"0a421a29-111"},{"uid":"0a421a29-118"},{"uid":"0a421a29-2"},{"uid":"0a421a29-4"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-10":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfigMult.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-11"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-114"},{"uid":"0a421a29-115"},{"uid":"0a421a29-116"},{"uid":"0a421a29-117"},{"uid":"0a421a29-111"},{"uid":"0a421a29-118"},{"uid":"0a421a29-2"},{"uid":"0a421a29-4"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-12":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/Loading.vue?vue&type=style&index=0&scoped=true&lang.scss","moduleParts":{"main-496f8253.mjs":"0a421a29-13"},"imported":[],"importedBy":[{"uid":"0a421a29-14"}]},"0a421a29-14":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/Loading.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-15"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-119"},{"uid":"0a421a29-111"},{"uid":"0a421a29-12"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-16":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/action.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-17"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-120"},{"uid":"0a421a29-121"},{"uid":"0a421a29-122"},{"uid":"0a421a29-123"},{"uid":"0a421a29-124"},{"uid":"0a421a29-125"},{"uid":"0a421a29-126"},{"uid":"0a421a29-114"},{"uid":"0a421a29-127"},{"uid":"0a421a29-128"},{"uid":"0a421a29-129"},{"uid":"0a421a29-117"},{"uid":"0a421a29-111"},{"uid":"0a421a29-118"},{"uid":"0a421a29-4"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-18":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/listConfig.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-19"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-125"},{"uid":"0a421a29-126"},{"uid":"0a421a29-114"},{"uid":"0a421a29-130"},{"uid":"0a421a29-111"},{"uid":"0a421a29-4"},{"uid":"0a421a29-118"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-20":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/panel.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-21"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-125"},{"uid":"0a421a29-126"},{"uid":"0a421a29-114"},{"uid":"0a421a29-115"},{"uid":"0a421a29-127"},{"uid":"0a421a29-117"},{"uid":"0a421a29-111"},{"uid":"0a421a29-4"},{"uid":"0a421a29-118"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-22":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/customHooks.ts","moduleParts":{"main-496f8253.mjs":"0a421a29-23"},"imported":[{"uid":"0a421a29-111"}],"importedBy":[{"uid":"0a421a29-24"},{"uid":"0a421a29-26"},{"uid":"0a421a29-30"},{"uid":"0a421a29-32"},{"uid":"0a421a29-34"},{"uid":"0a421a29-36"},{"uid":"0a421a29-38"},{"uid":"0a421a29-52"},{"uid":"0a421a29-54"},{"uid":"0a421a29-56"},{"uid":"0a421a29-58"},{"uid":"0a421a29-60"},{"uid":"0a421a29-62"},{"uid":"0a421a29-64"},{"uid":"0a421a29-66"},{"uid":"0a421a29-68"},{"uid":"0a421a29-70"},{"uid":"0a421a29-72"},{"uid":"0a421a29-74"},{"uid":"0a421a29-76"},{"uid":"0a421a29-78"},{"uid":"0a421a29-97"},{"uid":"0a421a29-99"}]},"0a421a29-24":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/radiogroup.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-25"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-131"},{"uid":"0a421a29-132"},{"uid":"0a421a29-117"},{"uid":"0a421a29-111"},{"uid":"0a421a29-4"},{"uid":"0a421a29-22"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-26":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/CheckBox/index.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-27"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-133"},{"uid":"0a421a29-116"},{"uid":"0a421a29-117"},{"uid":"0a421a29-111"},{"uid":"0a421a29-2"},{"uid":"0a421a29-4"},{"uid":"0a421a29-22"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-28":{"id":"C:/Users/jiton/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-496f8253.mjs":"0a421a29-29"},"imported":[],"importedBy":[{"uid":"0a421a29-30"}]},"0a421a29-30":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/ColorSelect/index.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-31"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-134"},{"uid":"0a421a29-115"},{"uid":"0a421a29-117"},{"uid":"0a421a29-111"},{"uid":"0a421a29-2"},{"uid":"0a421a29-4"},{"uid":"0a421a29-22"},{"uid":"0a421a29-28"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-32":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Date/index.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-33"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-135"},{"uid":"0a421a29-117"},{"uid":"0a421a29-111"},{"uid":"0a421a29-2"},{"uid":"0a421a29-4"},{"uid":"0a421a29-22"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-34":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/DateTime/index.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-35"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-135"},{"uid":"0a421a29-117"},{"uid":"0a421a29-111"},{"uid":"0a421a29-2"},{"uid":"0a421a29-4"},{"uid":"0a421a29-22"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-36":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/InputNumber/index.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-37"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-130"},{"uid":"0a421a29-117"},{"uid":"0a421a29-111"},{"uid":"0a421a29-2"},{"uid":"0a421a29-4"},{"uid":"0a421a29-22"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-38":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Radio/index.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-39"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-131"},{"uid":"0a421a29-136"},{"uid":"0a421a29-117"},{"uid":"0a421a29-111"},{"uid":"0a421a29-2"},{"uid":"0a421a29-4"},{"uid":"0a421a29-22"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-40":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/MenuItem.vue?vue&type=style&index=0&scoped=true&lang.css","moduleParts":{"main-496f8253.mjs":"0a421a29-41"},"imported":[],"importedBy":[{"uid":"0a421a29-42"}]},"0a421a29-42":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/MenuItem.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-43"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-117"},{"uid":"0a421a29-111"},{"uid":"0a421a29-40"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"},{"uid":"0a421a29-46"}]},"0a421a29-44":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/MenuBar.vue?vue&type=style&index=0&scoped=true&lang.css","moduleParts":{"main-496f8253.mjs":"0a421a29-45"},"imported":[],"importedBy":[{"uid":"0a421a29-46"}]},"0a421a29-46":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/MenuBar.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-47"},"imported":[{"uid":"0a421a29-42"},{"uid":"0a421a29-111"},{"uid":"0a421a29-44"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"},{"uid":"0a421a29-97"}]},"0a421a29-48":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/ruleform.json","moduleParts":{"main-496f8253.mjs":"0a421a29-49"},"imported":[],"importedBy":[{"uid":"0a421a29-0"},{"uid":"0a421a29-107"}]},"0a421a29-50":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/rules.js","moduleParts":{"main-496f8253.mjs":"0a421a29-51"},"imported":[],"importedBy":[{"uid":"0a421a29-0"},{"uid":"0a421a29-107"}]},"0a421a29-52":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Selected/index.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-53"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-128"},{"uid":"0a421a29-129"},{"uid":"0a421a29-117"},{"uid":"0a421a29-111"},{"uid":"0a421a29-2"},{"uid":"0a421a29-4"},{"uid":"0a421a29-22"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-54":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Selecteds/index.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-55"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-128"},{"uid":"0a421a29-129"},{"uid":"0a421a29-117"},{"uid":"0a421a29-111"},{"uid":"0a421a29-2"},{"uid":"0a421a29-4"},{"uid":"0a421a29-22"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-56":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/ShowRule/index.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-57"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-126"},{"uid":"0a421a29-117"},{"uid":"0a421a29-111"},{"uid":"0a421a29-4"},{"uid":"0a421a29-22"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-58":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Slider/index.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-59"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-137"},{"uid":"0a421a29-117"},{"uid":"0a421a29-111"},{"uid":"0a421a29-2"},{"uid":"0a421a29-4"},{"uid":"0a421a29-22"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-60":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Switch/index.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-61"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-138"},{"uid":"0a421a29-117"},{"uid":"0a421a29-111"},{"uid":"0a421a29-2"},{"uid":"0a421a29-4"},{"uid":"0a421a29-22"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-62":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Text/index.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-63"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-115"},{"uid":"0a421a29-117"},{"uid":"0a421a29-111"},{"uid":"0a421a29-2"},{"uid":"0a421a29-4"},{"uid":"0a421a29-22"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-64":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/TextArea/index.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-65"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-115"},{"uid":"0a421a29-117"},{"uid":"0a421a29-111"},{"uid":"0a421a29-2"},{"uid":"0a421a29-4"},{"uid":"0a421a29-22"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-66":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Time/index.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-67"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-139"},{"uid":"0a421a29-117"},{"uid":"0a421a29-111"},{"uid":"0a421a29-4"},{"uid":"0a421a29-2"},{"uid":"0a421a29-22"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-68":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Divider.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-69"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-140"},{"uid":"0a421a29-111"},{"uid":"0a421a29-2"},{"uid":"0a421a29-4"},{"uid":"0a421a29-22"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-70":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Info.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-71"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-141"},{"uid":"0a421a29-117"},{"uid":"0a421a29-111"},{"uid":"0a421a29-2"},{"uid":"0a421a29-4"},{"uid":"0a421a29-22"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-72":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Tabs.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-73"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-142"},{"uid":"0a421a29-143"},{"uid":"0a421a29-144"},{"uid":"0a421a29-111"},{"uid":"0a421a29-2"},{"uid":"0a421a29-4"},{"uid":"0a421a29-22"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-74":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/collapse.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-75"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-123"},{"uid":"0a421a29-124"},{"uid":"0a421a29-144"},{"uid":"0a421a29-111"},{"uid":"0a421a29-2"},{"uid":"0a421a29-4"},{"uid":"0a421a29-22"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-76":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/grid.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-77"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-125"},{"uid":"0a421a29-144"},{"uid":"0a421a29-127"},{"uid":"0a421a29-111"},{"uid":"0a421a29-2"},{"uid":"0a421a29-4"},{"uid":"0a421a29-22"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-78":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/table.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-79"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-144"},{"uid":"0a421a29-111"},{"uid":"0a421a29-2"},{"uid":"0a421a29-4"},{"uid":"0a421a29-22"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-80":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/styles/index.scss","moduleParts":{"main-496f8253.mjs":"0a421a29-81"},"imported":[],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-82":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/node_modules/.pnpm/nanoid@4.0.0/node_modules/nanoid/index.browser.js","moduleParts":{"main-496f8253.mjs":"0a421a29-83"},"imported":[{"uid":"0a421a29-160"}],"importedBy":[{"uid":"0a421a29-88"}]},"0a421a29-84":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/history.ts","moduleParts":{"main-496f8253.mjs":"0a421a29-85"},"imported":[{"uid":"0a421a29-111"},{"uid":"0a421a29-86"}],"importedBy":[{"uid":"0a421a29-86"}]},"0a421a29-86":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/form.ts","moduleParts":{"main-496f8253.mjs":"0a421a29-87"},"imported":[{"uid":"0a421a29-111"},{"uid":"0a421a29-84"}],"importedBy":[{"uid":"0a421a29-88"},{"uid":"0a421a29-84"}]},"0a421a29-88":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/_.ts","moduleParts":{"main-496f8253.mjs":"0a421a29-89"},"imported":[{"uid":"0a421a29-145"},{"uid":"0a421a29-82"},{"uid":"0a421a29-86"}],"importedBy":[{"uid":"0a421a29-0"},{"uid":"0a421a29-99"},{"uid":"0a421a29-107"}]},"0a421a29-90":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue?vue&type=style&index=0&scoped=true&lang.scss","moduleParts":{"main-496f8253.mjs":"0a421a29-91"},"imported":[],"importedBy":[{"uid":"0a421a29-92"}]},"0a421a29-92":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue","moduleParts":{"main-496f8253.mjs":"0a421a29-93"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-119"},{"uid":"0a421a29-111"},{"uid":"0a421a29-90"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-95":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/index.vue?vue&type=style&index=0&scoped=true&lang.css","moduleParts":{"index-52a3b28c.mjs":"0a421a29-96"},"imported":[],"importedBy":[{"uid":"0a421a29-97"}]},"0a421a29-97":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/index.vue","moduleParts":{"index-52a3b28c.mjs":"0a421a29-98"},"imported":[{"uid":"0a421a29-46"},{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-117"},{"uid":"0a421a29-111"},{"uid":"0a421a29-146"},{"uid":"0a421a29-147"},{"uid":"0a421a29-148"},{"uid":"0a421a29-149"},{"uid":"0a421a29-150"},{"uid":"0a421a29-151"},{"uid":"0a421a29-2"},{"uid":"0a421a29-4"},{"uid":"0a421a29-22"},{"uid":"0a421a29-95"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-99":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","moduleParts":{"index-60b2442f.mjs":"0a421a29-100"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-152"},{"uid":"0a421a29-153"},{"uid":"0a421a29-126"},{"uid":"0a421a29-154"},{"uid":"0a421a29-117"},{"uid":"0a421a29-111"},{"uid":"0a421a29-2"},{"uid":"0a421a29-4"},{"uid":"0a421a29-22"},{"uid":"0a421a29-155"},{"uid":"0a421a29-88"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-101":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/formAction.vue?vue&type=style&index=0&lang.scss","moduleParts":{"formAction-2190ddc9.mjs":"0a421a29-102"},"imported":[],"importedBy":[{"uid":"0a421a29-103"}]},"0a421a29-103":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/formAction.vue","moduleParts":{"formAction-2190ddc9.mjs":"0a421a29-104"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-156"},{"uid":"0a421a29-144"},{"uid":"0a421a29-115"},{"uid":"0a421a29-157"},{"uid":"0a421a29-152"},{"uid":"0a421a29-154"},{"uid":"0a421a29-158"},{"uid":"0a421a29-126"},{"uid":"0a421a29-117"},{"uid":"0a421a29-111"},{"uid":"0a421a29-159"},{"uid":"0a421a29-101"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-105":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"index-cd91e2b4.mjs":"0a421a29-106"},"imported":[],"importedBy":[{"uid":"0a421a29-107"}]},"0a421a29-107":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/index.vue","moduleParts":{"index-cd91e2b4.mjs":"0a421a29-108"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-152"},{"uid":"0a421a29-154"},{"uid":"0a421a29-153"},{"uid":"0a421a29-141"},{"uid":"0a421a29-114"},{"uid":"0a421a29-128"},{"uid":"0a421a29-129"},{"uid":"0a421a29-120"},{"uid":"0a421a29-121"},{"uid":"0a421a29-122"},{"uid":"0a421a29-126"},{"uid":"0a421a29-117"},{"uid":"0a421a29-111"},{"uid":"0a421a29-4"},{"uid":"0a421a29-88"},{"uid":"0a421a29-50"},{"uid":"0a421a29-48"},{"uid":"0a421a29-118"},{"uid":"0a421a29-109"},{"uid":"0a421a29-159"},{"uid":"0a421a29-105"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"}]},"0a421a29-109":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","moduleParts":{"starfish-form-3a589bc9.mjs":"0a421a29-110"},"imported":[{"uid":"0a421a29-112"},{"uid":"0a421a29-113"},{"uid":"0a421a29-156"},{"uid":"0a421a29-144"},{"uid":"0a421a29-111"},{"uid":"0a421a29-6"}],"importedBy":[{"uid":"0a421a29-0"},{"uid":"0a421a29-107"}]},"0a421a29-111":{"id":"vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-0"},{"uid":"0a421a29-8"},{"uid":"0a421a29-10"},{"uid":"0a421a29-14"},{"uid":"0a421a29-16"},{"uid":"0a421a29-18"},{"uid":"0a421a29-20"},{"uid":"0a421a29-24"},{"uid":"0a421a29-26"},{"uid":"0a421a29-30"},{"uid":"0a421a29-32"},{"uid":"0a421a29-34"},{"uid":"0a421a29-36"},{"uid":"0a421a29-38"},{"uid":"0a421a29-46"},{"uid":"0a421a29-42"},{"uid":"0a421a29-52"},{"uid":"0a421a29-54"},{"uid":"0a421a29-56"},{"uid":"0a421a29-58"},{"uid":"0a421a29-60"},{"uid":"0a421a29-62"},{"uid":"0a421a29-64"},{"uid":"0a421a29-66"},{"uid":"0a421a29-68"},{"uid":"0a421a29-70"},{"uid":"0a421a29-72"},{"uid":"0a421a29-74"},{"uid":"0a421a29-76"},{"uid":"0a421a29-78"},{"uid":"0a421a29-92"},{"uid":"0a421a29-97"},{"uid":"0a421a29-99"},{"uid":"0a421a29-103"},{"uid":"0a421a29-107"},{"uid":"0a421a29-109"},{"uid":"0a421a29-22"},{"uid":"0a421a29-86"},{"uid":"0a421a29-84"}],"isExternal":true},"0a421a29-112":{"id":"element-plus/es","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-8"},{"uid":"0a421a29-10"},{"uid":"0a421a29-14"},{"uid":"0a421a29-16"},{"uid":"0a421a29-18"},{"uid":"0a421a29-20"},{"uid":"0a421a29-24"},{"uid":"0a421a29-26"},{"uid":"0a421a29-30"},{"uid":"0a421a29-32"},{"uid":"0a421a29-34"},{"uid":"0a421a29-36"},{"uid":"0a421a29-38"},{"uid":"0a421a29-42"},{"uid":"0a421a29-52"},{"uid":"0a421a29-54"},{"uid":"0a421a29-56"},{"uid":"0a421a29-58"},{"uid":"0a421a29-60"},{"uid":"0a421a29-62"},{"uid":"0a421a29-64"},{"uid":"0a421a29-66"},{"uid":"0a421a29-68"},{"uid":"0a421a29-70"},{"uid":"0a421a29-72"},{"uid":"0a421a29-74"},{"uid":"0a421a29-76"},{"uid":"0a421a29-78"},{"uid":"0a421a29-92"},{"uid":"0a421a29-97"},{"uid":"0a421a29-99"},{"uid":"0a421a29-103"},{"uid":"0a421a29-107"},{"uid":"0a421a29-109"}],"isExternal":true},"0a421a29-113":{"id":"element-plus/es/components/base/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-8"},{"uid":"0a421a29-10"},{"uid":"0a421a29-14"},{"uid":"0a421a29-16"},{"uid":"0a421a29-18"},{"uid":"0a421a29-20"},{"uid":"0a421a29-24"},{"uid":"0a421a29-26"},{"uid":"0a421a29-30"},{"uid":"0a421a29-32"},{"uid":"0a421a29-34"},{"uid":"0a421a29-36"},{"uid":"0a421a29-38"},{"uid":"0a421a29-42"},{"uid":"0a421a29-52"},{"uid":"0a421a29-54"},{"uid":"0a421a29-56"},{"uid":"0a421a29-58"},{"uid":"0a421a29-60"},{"uid":"0a421a29-62"},{"uid":"0a421a29-64"},{"uid":"0a421a29-66"},{"uid":"0a421a29-68"},{"uid":"0a421a29-70"},{"uid":"0a421a29-72"},{"uid":"0a421a29-74"},{"uid":"0a421a29-76"},{"uid":"0a421a29-78"},{"uid":"0a421a29-92"},{"uid":"0a421a29-97"},{"uid":"0a421a29-99"},{"uid":"0a421a29-103"},{"uid":"0a421a29-107"},{"uid":"0a421a29-109"}],"isExternal":true},"0a421a29-114":{"id":"element-plus/es/components/icon/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-8"},{"uid":"0a421a29-10"},{"uid":"0a421a29-16"},{"uid":"0a421a29-18"},{"uid":"0a421a29-20"},{"uid":"0a421a29-107"}],"isExternal":true},"0a421a29-115":{"id":"element-plus/es/components/input/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-8"},{"uid":"0a421a29-10"},{"uid":"0a421a29-20"},{"uid":"0a421a29-30"},{"uid":"0a421a29-62"},{"uid":"0a421a29-64"},{"uid":"0a421a29-103"}],"isExternal":true},"0a421a29-116":{"id":"element-plus/es/components/checkbox/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-8"},{"uid":"0a421a29-10"},{"uid":"0a421a29-26"}],"isExternal":true},"0a421a29-117":{"id":"element-plus/es/components/tooltip/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-8"},{"uid":"0a421a29-10"},{"uid":"0a421a29-16"},{"uid":"0a421a29-20"},{"uid":"0a421a29-24"},{"uid":"0a421a29-26"},{"uid":"0a421a29-30"},{"uid":"0a421a29-32"},{"uid":"0a421a29-34"},{"uid":"0a421a29-36"},{"uid":"0a421a29-38"},{"uid":"0a421a29-42"},{"uid":"0a421a29-52"},{"uid":"0a421a29-54"},{"uid":"0a421a29-56"},{"uid":"0a421a29-58"},{"uid":"0a421a29-60"},{"uid":"0a421a29-62"},{"uid":"0a421a29-64"},{"uid":"0a421a29-66"},{"uid":"0a421a29-70"},{"uid":"0a421a29-97"},{"uid":"0a421a29-99"},{"uid":"0a421a29-103"},{"uid":"0a421a29-107"}],"isExternal":true},"0a421a29-118":{"id":"@element-plus/icons-vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-8"},{"uid":"0a421a29-10"},{"uid":"0a421a29-16"},{"uid":"0a421a29-18"},{"uid":"0a421a29-20"},{"uid":"0a421a29-107"}],"isExternal":true},"0a421a29-119":{"id":"element-plus/es/components/loading/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-14"},{"uid":"0a421a29-92"}],"isExternal":true},"0a421a29-120":{"id":"element-plus/es/components/dropdown/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-16"},{"uid":"0a421a29-107"}],"isExternal":true},"0a421a29-121":{"id":"element-plus/es/components/dropdown-menu/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-16"},{"uid":"0a421a29-107"}],"isExternal":true},"0a421a29-122":{"id":"element-plus/es/components/dropdown-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-16"},{"uid":"0a421a29-107"}],"isExternal":true},"0a421a29-123":{"id":"element-plus/es/components/collapse/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-16"},{"uid":"0a421a29-74"}],"isExternal":true},"0a421a29-124":{"id":"element-plus/es/components/collapse-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-16"},{"uid":"0a421a29-74"}],"isExternal":true},"0a421a29-125":{"id":"element-plus/es/components/row/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-16"},{"uid":"0a421a29-18"},{"uid":"0a421a29-20"},{"uid":"0a421a29-76"}],"isExternal":true},"0a421a29-126":{"id":"element-plus/es/components/button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-16"},{"uid":"0a421a29-18"},{"uid":"0a421a29-20"},{"uid":"0a421a29-56"},{"uid":"0a421a29-99"},{"uid":"0a421a29-103"},{"uid":"0a421a29-107"}],"isExternal":true},"0a421a29-127":{"id":"element-plus/es/components/col/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-16"},{"uid":"0a421a29-20"},{"uid":"0a421a29-76"}],"isExternal":true},"0a421a29-128":{"id":"element-plus/es/components/select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-16"},{"uid":"0a421a29-52"},{"uid":"0a421a29-54"},{"uid":"0a421a29-107"}],"isExternal":true},"0a421a29-129":{"id":"element-plus/es/components/option/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-16"},{"uid":"0a421a29-52"},{"uid":"0a421a29-54"},{"uid":"0a421a29-107"}],"isExternal":true},"0a421a29-130":{"id":"element-plus/es/components/input-number/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-18"},{"uid":"0a421a29-36"}],"isExternal":true},"0a421a29-131":{"id":"element-plus/es/components/radio-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-24"},{"uid":"0a421a29-38"}],"isExternal":true},"0a421a29-132":{"id":"element-plus/es/components/radio-button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-24"}],"isExternal":true},"0a421a29-133":{"id":"element-plus/es/components/checkbox-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-26"}],"isExternal":true},"0a421a29-134":{"id":"element-plus/es/components/color-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-30"}],"isExternal":true},"0a421a29-135":{"id":"element-plus/es/components/date-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-32"},{"uid":"0a421a29-34"}],"isExternal":true},"0a421a29-136":{"id":"element-plus/es/components/radio/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-38"}],"isExternal":true},"0a421a29-137":{"id":"element-plus/es/components/slider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-58"}],"isExternal":true},"0a421a29-138":{"id":"element-plus/es/components/switch/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-60"}],"isExternal":true},"0a421a29-139":{"id":"element-plus/es/components/time-select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-66"}],"isExternal":true},"0a421a29-140":{"id":"element-plus/es/components/divider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-68"}],"isExternal":true},"0a421a29-141":{"id":"element-plus/es/components/alert/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-70"},{"uid":"0a421a29-107"}],"isExternal":true},"0a421a29-142":{"id":"element-plus/es/components/tabs/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-72"}],"isExternal":true},"0a421a29-143":{"id":"element-plus/es/components/tab-pane/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-72"}],"isExternal":true},"0a421a29-144":{"id":"element-plus/es/components/form-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-72"},{"uid":"0a421a29-74"},{"uid":"0a421a29-76"},{"uid":"0a421a29-78"},{"uid":"0a421a29-103"},{"uid":"0a421a29-109"}],"isExternal":true},"0a421a29-145":{"id":"element-plus","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-88"}],"isExternal":true},"0a421a29-146":{"id":"@tiptap/vue-3","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-97"}],"isExternal":true},"0a421a29-147":{"id":"@tiptap/starter-kit","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-97"}],"isExternal":true},"0a421a29-148":{"id":"@tiptap/extension-code","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-97"}],"isExternal":true},"0a421a29-149":{"id":"@tiptap/extension-blockquote","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-97"}],"isExternal":true},"0a421a29-150":{"id":"@tiptap/extension-horizontal-rule","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-97"}],"isExternal":true},"0a421a29-151":{"id":"@tiptap/extension-code-block","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-97"}],"isExternal":true},"0a421a29-152":{"id":"element-plus/es/components/container/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-99"},{"uid":"0a421a29-103"},{"uid":"0a421a29-107"}],"isExternal":true},"0a421a29-153":{"id":"element-plus/es/components/footer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-99"},{"uid":"0a421a29-107"}],"isExternal":true},"0a421a29-154":{"id":"element-plus/es/components/main/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-99"},{"uid":"0a421a29-103"},{"uid":"0a421a29-107"}],"isExternal":true},"0a421a29-155":{"id":"jsoneditor","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-99"}],"isExternal":true},"0a421a29-156":{"id":"element-plus/es/components/form/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-103"},{"uid":"0a421a29-109"}],"isExternal":true},"0a421a29-157":{"id":"element-plus/es/components/aside/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-103"}],"isExternal":true},"0a421a29-158":{"id":"element-plus/es/components/scrollbar/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-103"}],"isExternal":true},"0a421a29-159":{"id":"vue-codemirror","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-103"},{"uid":"0a421a29-107"}],"isExternal":true},"0a421a29-160":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/node_modules/.pnpm/nanoid@4.0.0/node_modules/nanoid/url-alphabet/index.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"0a421a29-82"}]}},"env":{"rollup":"3.29.4"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
4826
4826
 
4827
4827
  const run = () => {
4828
4828
  const width = window.innerWidth;