starfish-form-custom 1.0.36 → 1.0.37

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-211bec39.mjs';
15
15
  import 'element-plus/es/components/icon/style/css';
16
16
  import 'element-plus/es/components/checkbox/style/css';
17
17
  import '@element-plus/icons-vue';
@@ -13,9 +13,9 @@ import 'element-plus/es/components/dropdown-item/style/css';
13
13
  import 'element-plus/es/components/button/style/css';
14
14
  import 'element-plus/es/components/tooltip/style/css';
15
15
  import { defineComponent, getCurrentInstance, inject, computed, ref, resolveComponent, openBlock, createElementBlock, normalizeClass, createElementVNode, normalizeStyle, toDisplayString, createCommentVNode, createBlock, withCtx, createVNode, 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-211bec39.mjs';
17
17
  import { Delete } from '@element-plus/icons-vue';
18
- import Dynamicform from './starfish-form-a5d43f95.mjs';
18
+ import Dynamicform from './starfish-form-df5fdbce.mjs';
19
19
  import { Codemirror } from 'vue-codemirror';
20
20
  import 'element-plus/es/components/input/style/css';
21
21
  import 'element-plus/es/components/checkbox/style/css';
@@ -6,7 +6,7 @@ import 'element-plus/es/components/button/style/css';
6
6
  import 'element-plus/es/components/main/style/css';
7
7
  import 'element-plus/es/components/tooltip/style/css';
8
8
  import { defineComponent, ref, onMounted, watch, nextTick, resolveComponent, openBlock, createElementBlock, normalizeClass, createElementVNode, normalizeStyle, toDisplayString, createCommentVNode, createBlock, withCtx, createVNode, createTextVNode } from 'vue';
9
- import { _ as _export_sfc, 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-211bec39.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';
@@ -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-211bec39.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-1d746d60"), 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-1d746d60"]]);
190
172
 
191
173
  export { index as default };
@@ -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-cfe993bd.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-cc561de5.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-3f4672e7.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-971b370e.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-df5fdbce.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-211bec39.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-211bec39.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-1d746d60] {
472
472
  min-height: 200px;
473
473
  }
474
- [data-v-7adb62dc] .editor-content {
474
+ [data-v-1d746d60] .editor-content {
475
475
  min-height: 200px;
476
476
  }
477
- [data-v-7adb62dc] .ProseMirror {
477
+ [data-v-1d746d60] .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-1d746d60] .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-1d746d60] .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-1d746d60] .ProseMirror code {
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-1d746d60] .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-1d746d60] .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-1d746d60] .ProseMirror ul,[data-v-1d746d60] .ProseMirror ol {
536
536
  padding-left: 24px;
537
537
  margin: 12px 0;
538
538
  }
539
- [data-v-7adb62dc] .ProseMirror li {
539
+ [data-v-1d746d60] .ProseMirror li {
540
540
  margin: 4px 0;
541
541
  }
542
542
 
543
543
  /* 标题样式 */
544
- [data-v-7adb62dc] .ProseMirror h1 {
544
+ [data-v-1d746d60] .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-1d746d60] .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.37",
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();
@@ -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":"83f9b68d-1"},{"name":"main-211bec39.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":"83f9b68d-3","name":"fieldConfig.ts"},{"uid":"83f9b68d-5","name":"fieldProps.ts"},{"uid":"83f9b68d-23","name":"customHooks.ts"}]},{"name":"common","children":[{"uid":"83f9b68d-9","name":"KeyValueConfig.vue"},{"uid":"83f9b68d-11","name":"KeyValueConfigMult.vue"},{"uid":"83f9b68d-13","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"83f9b68d-15","name":"Loading.vue"},{"uid":"83f9b68d-17","name":"action.vue"},{"uid":"83f9b68d-19","name":"listConfig.vue"},{"uid":"83f9b68d-21","name":"panel.vue"},{"uid":"83f9b68d-25","name":"radiogroup.vue"}]},{"name":"components","children":[{"name":"CheckBox/index.vue","uid":"83f9b68d-27"},{"name":"ColorSelect","children":[{"uid":"83f9b68d-29","name":"index.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"83f9b68d-31","name":"index.vue"}]},{"name":"Date/index.vue","uid":"83f9b68d-33"},{"name":"DateTime/index.vue","uid":"83f9b68d-35"},{"name":"InputNumber/index.vue","uid":"83f9b68d-37"},{"name":"Radio/index.vue","uid":"83f9b68d-39"},{"name":"RichText","children":[{"uid":"83f9b68d-41","name":"MenuItem.vue?vue&type=style&index=0&scoped=true&lang.css"},{"uid":"83f9b68d-43","name":"MenuItem.vue"},{"uid":"83f9b68d-45","name":"MenuBar.vue?vue&type=style&index=0&scoped=true&lang.css"},{"uid":"83f9b68d-47","name":"MenuBar.vue"}]},{"name":"Rule","children":[{"uid":"83f9b68d-49","name":"ruleform.json"},{"uid":"83f9b68d-51","name":"rules.js"}]},{"name":"Selected/index.vue","uid":"83f9b68d-53"},{"name":"Selecteds/index.vue","uid":"83f9b68d-55"},{"name":"ShowRule/index.vue","uid":"83f9b68d-57"},{"name":"Slider/index.vue","uid":"83f9b68d-59"},{"name":"Switch/index.vue","uid":"83f9b68d-61"},{"name":"Text/index.vue","uid":"83f9b68d-63"},{"name":"TextArea/index.vue","uid":"83f9b68d-65"},{"name":"Time/index.vue","uid":"83f9b68d-67"}]},{"name":"layout","children":[{"uid":"83f9b68d-69","name":"Divider.vue"},{"uid":"83f9b68d-71","name":"Info.vue"},{"uid":"83f9b68d-73","name":"Tabs.vue"},{"uid":"83f9b68d-75","name":"collapse.vue"},{"uid":"83f9b68d-77","name":"grid.vue"},{"uid":"83f9b68d-79","name":"table.vue"}]},{"name":"styles/index.scss","uid":"83f9b68d-81"},{"uid":"83f9b68d-94","name":"main.ts"}]},{"name":"editor/src","children":[{"name":"controller","children":[{"uid":"83f9b68d-85","name":"history.ts"},{"uid":"83f9b68d-87","name":"form.ts"}]},{"name":"utils/_.ts","uid":"83f9b68d-89"},{"name":"common","children":[{"uid":"83f9b68d-91","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"83f9b68d-93","name":"Loading.vue"}]}]}]},{"name":"node_modules/.pnpm/nanoid@4.0.0/node_modules/nanoid/index.browser.js","uid":"83f9b68d-83"}]},{"uid":"83f9b68d-7","name":"plugin-vue:export-helper"}]},{"name":"index-cfe993bd.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText","children":[{"uid":"83f9b68d-96","name":"index.vue?vue&type=style&index=0&scoped=true&lang.css"},{"uid":"83f9b68d-98","name":"index.vue"}]}]},{"name":"index-cc561de5.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","uid":"83f9b68d-100"}]},{"name":"formAction-3f4672e7.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common","children":[{"uid":"83f9b68d-102","name":"formAction.vue?vue&type=style&index=0&lang.scss"},{"uid":"83f9b68d-104","name":"formAction.vue"}]}]},{"name":"index-971b370e.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule","children":[{"uid":"83f9b68d-106","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"83f9b68d-108","name":"index.vue"}]}]},{"name":"starfish-form-df5fdbce.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","uid":"83f9b68d-110"}]}],"isRoot":true},"nodeParts":{"83f9b68d-1":{"id":"starfish-form.mjs","gzipLength":0,"brotliLength":0,"renderedLength":1902,"metaUid":"83f9b68d-0"},"83f9b68d-3":{"renderedLength":18542,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-2"},"83f9b68d-5":{"renderedLength":626,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-4"},"83f9b68d-7":{"renderedLength":159,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-6"},"83f9b68d-9":{"renderedLength":8660,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-8"},"83f9b68d-11":{"renderedLength":8485,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-10"},"83f9b68d-13":{"renderedLength":103,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-12"},"83f9b68d-15":{"renderedLength":404,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-14"},"83f9b68d-17":{"renderedLength":8527,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-16"},"83f9b68d-19":{"renderedLength":3264,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-18"},"83f9b68d-21":{"renderedLength":5397,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-20"},"83f9b68d-23":{"renderedLength":482,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-22"},"83f9b68d-25":{"renderedLength":2228,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-24"},"83f9b68d-27":{"renderedLength":4844,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-26"},"83f9b68d-29":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-28"},"83f9b68d-31":{"renderedLength":3864,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-30"},"83f9b68d-33":{"renderedLength":5532,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-32"},"83f9b68d-35":{"renderedLength":4778,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-34"},"83f9b68d-37":{"renderedLength":4741,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-36"},"83f9b68d-39":{"renderedLength":4756,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-38"},"83f9b68d-41":{"renderedLength":102,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-40"},"83f9b68d-43":{"renderedLength":1900,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-42"},"83f9b68d-45":{"renderedLength":101,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-44"},"83f9b68d-47":{"renderedLength":4109,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-46"},"83f9b68d-49":{"renderedLength":5040,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-48"},"83f9b68d-51":{"renderedLength":2564,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-50"},"83f9b68d-53":{"renderedLength":4866,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-52"},"83f9b68d-55":{"renderedLength":5448,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-54"},"83f9b68d-57":{"renderedLength":4133,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-56"},"83f9b68d-59":{"renderedLength":2944,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-58"},"83f9b68d-61":{"renderedLength":2995,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-60"},"83f9b68d-63":{"renderedLength":4704,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-62"},"83f9b68d-65":{"renderedLength":4510,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-64"},"83f9b68d-67":{"renderedLength":3240,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-66"},"83f9b68d-69":{"renderedLength":1315,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-68"},"83f9b68d-71":{"renderedLength":2999,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-70"},"83f9b68d-73":{"renderedLength":5888,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-72"},"83f9b68d-75":{"renderedLength":6238,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-74"},"83f9b68d-77":{"renderedLength":6689,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-76"},"83f9b68d-79":{"renderedLength":6149,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-78"},"83f9b68d-81":{"renderedLength":17,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-80"},"83f9b68d-83":{"renderedLength":350,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-82"},"83f9b68d-85":{"renderedLength":1613,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-84"},"83f9b68d-87":{"renderedLength":6014,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-86"},"83f9b68d-89":{"renderedLength":11658,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-88"},"83f9b68d-91":{"renderedLength":101,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-90"},"83f9b68d-93":{"renderedLength":390,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-92"},"83f9b68d-94":{"renderedLength":3090,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-0"},"83f9b68d-96":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-95"},"83f9b68d-98":{"renderedLength":4350,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-97"},"83f9b68d-100":{"renderedLength":6675,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-99"},"83f9b68d-102":{"renderedLength":92,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-101"},"83f9b68d-104":{"renderedLength":17107,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-103"},"83f9b68d-106":{"renderedLength":87,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-105"},"83f9b68d-108":{"renderedLength":17885,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-107"},"83f9b68d-110":{"renderedLength":9803,"gzipLength":0,"brotliLength":0,"metaUid":"83f9b68d-109"}},"nodeMetas":{"83f9b68d-0":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/main.ts","moduleParts":{"starfish-form.mjs":"83f9b68d-1","main-211bec39.mjs":"83f9b68d-94"},"imported":[{"uid":"83f9b68d-8"},{"uid":"83f9b68d-10"},{"uid":"83f9b68d-14"},{"uid":"83f9b68d-16"},{"uid":"83f9b68d-18"},{"uid":"83f9b68d-20"},{"uid":"83f9b68d-24"},{"uid":"83f9b68d-26"},{"uid":"83f9b68d-30"},{"uid":"83f9b68d-32"},{"uid":"83f9b68d-34"},{"uid":"83f9b68d-36"},{"uid":"83f9b68d-38"},{"uid":"83f9b68d-46"},{"uid":"83f9b68d-42"},{"uid":"83f9b68d-48"},{"uid":"83f9b68d-50"},{"uid":"83f9b68d-52"},{"uid":"83f9b68d-54"},{"uid":"83f9b68d-56"},{"uid":"83f9b68d-58"},{"uid":"83f9b68d-60"},{"uid":"83f9b68d-62"},{"uid":"83f9b68d-64"},{"uid":"83f9b68d-66"},{"uid":"83f9b68d-68"},{"uid":"83f9b68d-70"},{"uid":"83f9b68d-72"},{"uid":"83f9b68d-74"},{"uid":"83f9b68d-76"},{"uid":"83f9b68d-78"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-80"},{"uid":"83f9b68d-2"},{"uid":"83f9b68d-88"},{"uid":"83f9b68d-92"},{"uid":"83f9b68d-97","dynamic":true},{"uid":"83f9b68d-99","dynamic":true},{"uid":"83f9b68d-103","dynamic":true},{"uid":"83f9b68d-107","dynamic":true},{"uid":"83f9b68d-109","dynamic":true}],"importedBy":[],"isEntry":true},"83f9b68d-2":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/fieldConfig.ts","moduleParts":{"main-211bec39.mjs":"83f9b68d-3"},"imported":[],"importedBy":[{"uid":"83f9b68d-0"},{"uid":"83f9b68d-8"},{"uid":"83f9b68d-10"},{"uid":"83f9b68d-26"},{"uid":"83f9b68d-30"},{"uid":"83f9b68d-32"},{"uid":"83f9b68d-34"},{"uid":"83f9b68d-36"},{"uid":"83f9b68d-38"},{"uid":"83f9b68d-52"},{"uid":"83f9b68d-54"},{"uid":"83f9b68d-58"},{"uid":"83f9b68d-60"},{"uid":"83f9b68d-62"},{"uid":"83f9b68d-64"},{"uid":"83f9b68d-66"},{"uid":"83f9b68d-68"},{"uid":"83f9b68d-70"},{"uid":"83f9b68d-72"},{"uid":"83f9b68d-74"},{"uid":"83f9b68d-76"},{"uid":"83f9b68d-78"},{"uid":"83f9b68d-97"},{"uid":"83f9b68d-99"}]},"83f9b68d-4":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/fieldProps.ts","moduleParts":{"main-211bec39.mjs":"83f9b68d-5"},"imported":[],"importedBy":[{"uid":"83f9b68d-8"},{"uid":"83f9b68d-10"},{"uid":"83f9b68d-16"},{"uid":"83f9b68d-18"},{"uid":"83f9b68d-20"},{"uid":"83f9b68d-24"},{"uid":"83f9b68d-26"},{"uid":"83f9b68d-30"},{"uid":"83f9b68d-32"},{"uid":"83f9b68d-34"},{"uid":"83f9b68d-36"},{"uid":"83f9b68d-38"},{"uid":"83f9b68d-52"},{"uid":"83f9b68d-54"},{"uid":"83f9b68d-56"},{"uid":"83f9b68d-58"},{"uid":"83f9b68d-60"},{"uid":"83f9b68d-62"},{"uid":"83f9b68d-64"},{"uid":"83f9b68d-66"},{"uid":"83f9b68d-68"},{"uid":"83f9b68d-70"},{"uid":"83f9b68d-72"},{"uid":"83f9b68d-74"},{"uid":"83f9b68d-76"},{"uid":"83f9b68d-78"},{"uid":"83f9b68d-97"},{"uid":"83f9b68d-99"},{"uid":"83f9b68d-107"}]},"83f9b68d-6":{"id":"plugin-vue:export-helper","moduleParts":{"main-211bec39.mjs":"83f9b68d-7"},"imported":[],"importedBy":[{"uid":"83f9b68d-8"},{"uid":"83f9b68d-10"},{"uid":"83f9b68d-14"},{"uid":"83f9b68d-16"},{"uid":"83f9b68d-18"},{"uid":"83f9b68d-20"},{"uid":"83f9b68d-24"},{"uid":"83f9b68d-26"},{"uid":"83f9b68d-30"},{"uid":"83f9b68d-32"},{"uid":"83f9b68d-34"},{"uid":"83f9b68d-36"},{"uid":"83f9b68d-38"},{"uid":"83f9b68d-46"},{"uid":"83f9b68d-42"},{"uid":"83f9b68d-52"},{"uid":"83f9b68d-54"},{"uid":"83f9b68d-56"},{"uid":"83f9b68d-58"},{"uid":"83f9b68d-60"},{"uid":"83f9b68d-62"},{"uid":"83f9b68d-64"},{"uid":"83f9b68d-66"},{"uid":"83f9b68d-68"},{"uid":"83f9b68d-70"},{"uid":"83f9b68d-72"},{"uid":"83f9b68d-74"},{"uid":"83f9b68d-76"},{"uid":"83f9b68d-78"},{"uid":"83f9b68d-92"},{"uid":"83f9b68d-97"},{"uid":"83f9b68d-99"},{"uid":"83f9b68d-103"},{"uid":"83f9b68d-107"},{"uid":"83f9b68d-109"}]},"83f9b68d-8":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfig.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-9"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-114"},{"uid":"83f9b68d-115"},{"uid":"83f9b68d-116"},{"uid":"83f9b68d-117"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-118"},{"uid":"83f9b68d-2"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-10":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfigMult.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-11"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-114"},{"uid":"83f9b68d-115"},{"uid":"83f9b68d-116"},{"uid":"83f9b68d-117"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-118"},{"uid":"83f9b68d-2"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-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-211bec39.mjs":"83f9b68d-13"},"imported":[],"importedBy":[{"uid":"83f9b68d-14"}]},"83f9b68d-14":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/Loading.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-15"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-119"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-12"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-16":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/action.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-17"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-120"},{"uid":"83f9b68d-121"},{"uid":"83f9b68d-122"},{"uid":"83f9b68d-123"},{"uid":"83f9b68d-124"},{"uid":"83f9b68d-125"},{"uid":"83f9b68d-126"},{"uid":"83f9b68d-114"},{"uid":"83f9b68d-127"},{"uid":"83f9b68d-128"},{"uid":"83f9b68d-129"},{"uid":"83f9b68d-117"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-118"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-18":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/listConfig.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-19"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-125"},{"uid":"83f9b68d-126"},{"uid":"83f9b68d-114"},{"uid":"83f9b68d-130"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-118"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-20":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/panel.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-21"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-125"},{"uid":"83f9b68d-126"},{"uid":"83f9b68d-114"},{"uid":"83f9b68d-115"},{"uid":"83f9b68d-127"},{"uid":"83f9b68d-117"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-118"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-22":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/customHooks.ts","moduleParts":{"main-211bec39.mjs":"83f9b68d-23"},"imported":[{"uid":"83f9b68d-111"}],"importedBy":[{"uid":"83f9b68d-24"},{"uid":"83f9b68d-26"},{"uid":"83f9b68d-30"},{"uid":"83f9b68d-32"},{"uid":"83f9b68d-34"},{"uid":"83f9b68d-36"},{"uid":"83f9b68d-38"},{"uid":"83f9b68d-52"},{"uid":"83f9b68d-54"},{"uid":"83f9b68d-56"},{"uid":"83f9b68d-58"},{"uid":"83f9b68d-60"},{"uid":"83f9b68d-62"},{"uid":"83f9b68d-64"},{"uid":"83f9b68d-66"},{"uid":"83f9b68d-68"},{"uid":"83f9b68d-70"},{"uid":"83f9b68d-72"},{"uid":"83f9b68d-74"},{"uid":"83f9b68d-76"},{"uid":"83f9b68d-78"},{"uid":"83f9b68d-97"},{"uid":"83f9b68d-99"}]},"83f9b68d-24":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/radiogroup.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-25"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-131"},{"uid":"83f9b68d-132"},{"uid":"83f9b68d-117"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-22"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-26":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/CheckBox/index.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-27"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-133"},{"uid":"83f9b68d-116"},{"uid":"83f9b68d-117"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-2"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-22"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-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-211bec39.mjs":"83f9b68d-29"},"imported":[],"importedBy":[{"uid":"83f9b68d-30"}]},"83f9b68d-30":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/ColorSelect/index.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-31"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-134"},{"uid":"83f9b68d-115"},{"uid":"83f9b68d-117"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-2"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-22"},{"uid":"83f9b68d-28"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-32":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Date/index.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-33"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-135"},{"uid":"83f9b68d-117"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-2"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-22"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-34":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/DateTime/index.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-35"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-135"},{"uid":"83f9b68d-117"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-2"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-22"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-36":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/InputNumber/index.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-37"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-130"},{"uid":"83f9b68d-117"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-2"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-22"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-38":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Radio/index.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-39"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-131"},{"uid":"83f9b68d-136"},{"uid":"83f9b68d-117"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-2"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-22"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-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-211bec39.mjs":"83f9b68d-41"},"imported":[],"importedBy":[{"uid":"83f9b68d-42"}]},"83f9b68d-42":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/MenuItem.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-43"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-117"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-40"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"},{"uid":"83f9b68d-46"}]},"83f9b68d-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-211bec39.mjs":"83f9b68d-45"},"imported":[],"importedBy":[{"uid":"83f9b68d-46"}]},"83f9b68d-46":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/MenuBar.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-47"},"imported":[{"uid":"83f9b68d-42"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-44"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"},{"uid":"83f9b68d-97"}]},"83f9b68d-48":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/ruleform.json","moduleParts":{"main-211bec39.mjs":"83f9b68d-49"},"imported":[],"importedBy":[{"uid":"83f9b68d-0"},{"uid":"83f9b68d-107"}]},"83f9b68d-50":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/rules.js","moduleParts":{"main-211bec39.mjs":"83f9b68d-51"},"imported":[],"importedBy":[{"uid":"83f9b68d-0"},{"uid":"83f9b68d-107"}]},"83f9b68d-52":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Selected/index.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-53"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-128"},{"uid":"83f9b68d-129"},{"uid":"83f9b68d-117"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-2"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-22"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-54":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Selecteds/index.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-55"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-128"},{"uid":"83f9b68d-129"},{"uid":"83f9b68d-117"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-2"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-22"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-56":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/ShowRule/index.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-57"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-126"},{"uid":"83f9b68d-117"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-22"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-58":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Slider/index.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-59"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-137"},{"uid":"83f9b68d-117"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-2"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-22"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-60":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Switch/index.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-61"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-138"},{"uid":"83f9b68d-117"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-2"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-22"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-62":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Text/index.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-63"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-115"},{"uid":"83f9b68d-117"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-2"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-22"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-64":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/TextArea/index.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-65"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-115"},{"uid":"83f9b68d-117"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-2"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-22"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-66":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Time/index.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-67"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-139"},{"uid":"83f9b68d-117"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-2"},{"uid":"83f9b68d-22"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-68":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Divider.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-69"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-140"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-2"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-22"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-70":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Info.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-71"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-141"},{"uid":"83f9b68d-117"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-2"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-22"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-72":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Tabs.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-73"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-142"},{"uid":"83f9b68d-143"},{"uid":"83f9b68d-144"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-2"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-22"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-74":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/collapse.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-75"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-123"},{"uid":"83f9b68d-124"},{"uid":"83f9b68d-144"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-2"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-22"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-76":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/grid.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-77"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-125"},{"uid":"83f9b68d-144"},{"uid":"83f9b68d-127"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-2"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-22"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-78":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/table.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-79"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-144"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-2"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-22"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-80":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/styles/index.scss","moduleParts":{"main-211bec39.mjs":"83f9b68d-81"},"imported":[],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-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-211bec39.mjs":"83f9b68d-83"},"imported":[{"uid":"83f9b68d-160"}],"importedBy":[{"uid":"83f9b68d-88"}]},"83f9b68d-84":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/history.ts","moduleParts":{"main-211bec39.mjs":"83f9b68d-85"},"imported":[{"uid":"83f9b68d-111"},{"uid":"83f9b68d-86"}],"importedBy":[{"uid":"83f9b68d-86"}]},"83f9b68d-86":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/form.ts","moduleParts":{"main-211bec39.mjs":"83f9b68d-87"},"imported":[{"uid":"83f9b68d-111"},{"uid":"83f9b68d-84"}],"importedBy":[{"uid":"83f9b68d-88"},{"uid":"83f9b68d-84"}]},"83f9b68d-88":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/_.ts","moduleParts":{"main-211bec39.mjs":"83f9b68d-89"},"imported":[{"uid":"83f9b68d-145"},{"uid":"83f9b68d-82"},{"uid":"83f9b68d-86"}],"importedBy":[{"uid":"83f9b68d-0"},{"uid":"83f9b68d-99"},{"uid":"83f9b68d-107"}]},"83f9b68d-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-211bec39.mjs":"83f9b68d-91"},"imported":[],"importedBy":[{"uid":"83f9b68d-92"}]},"83f9b68d-92":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue","moduleParts":{"main-211bec39.mjs":"83f9b68d-93"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-119"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-90"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-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-cfe993bd.mjs":"83f9b68d-96"},"imported":[],"importedBy":[{"uid":"83f9b68d-97"}]},"83f9b68d-97":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/index.vue","moduleParts":{"index-cfe993bd.mjs":"83f9b68d-98"},"imported":[{"uid":"83f9b68d-46"},{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-117"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-146"},{"uid":"83f9b68d-147"},{"uid":"83f9b68d-148"},{"uid":"83f9b68d-149"},{"uid":"83f9b68d-150"},{"uid":"83f9b68d-151"},{"uid":"83f9b68d-2"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-22"},{"uid":"83f9b68d-95"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-99":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","moduleParts":{"index-cc561de5.mjs":"83f9b68d-100"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-152"},{"uid":"83f9b68d-153"},{"uid":"83f9b68d-126"},{"uid":"83f9b68d-154"},{"uid":"83f9b68d-117"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-2"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-22"},{"uid":"83f9b68d-155"},{"uid":"83f9b68d-88"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-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-3f4672e7.mjs":"83f9b68d-102"},"imported":[],"importedBy":[{"uid":"83f9b68d-103"}]},"83f9b68d-103":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/formAction.vue","moduleParts":{"formAction-3f4672e7.mjs":"83f9b68d-104"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-156"},{"uid":"83f9b68d-144"},{"uid":"83f9b68d-115"},{"uid":"83f9b68d-157"},{"uid":"83f9b68d-152"},{"uid":"83f9b68d-154"},{"uid":"83f9b68d-158"},{"uid":"83f9b68d-126"},{"uid":"83f9b68d-117"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-159"},{"uid":"83f9b68d-101"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-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-971b370e.mjs":"83f9b68d-106"},"imported":[],"importedBy":[{"uid":"83f9b68d-107"}]},"83f9b68d-107":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/index.vue","moduleParts":{"index-971b370e.mjs":"83f9b68d-108"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-152"},{"uid":"83f9b68d-154"},{"uid":"83f9b68d-153"},{"uid":"83f9b68d-141"},{"uid":"83f9b68d-114"},{"uid":"83f9b68d-128"},{"uid":"83f9b68d-129"},{"uid":"83f9b68d-120"},{"uid":"83f9b68d-121"},{"uid":"83f9b68d-122"},{"uid":"83f9b68d-126"},{"uid":"83f9b68d-117"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-4"},{"uid":"83f9b68d-88"},{"uid":"83f9b68d-50"},{"uid":"83f9b68d-48"},{"uid":"83f9b68d-118"},{"uid":"83f9b68d-109"},{"uid":"83f9b68d-159"},{"uid":"83f9b68d-105"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"}]},"83f9b68d-109":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","moduleParts":{"starfish-form-df5fdbce.mjs":"83f9b68d-110"},"imported":[{"uid":"83f9b68d-112"},{"uid":"83f9b68d-113"},{"uid":"83f9b68d-156"},{"uid":"83f9b68d-144"},{"uid":"83f9b68d-111"},{"uid":"83f9b68d-6"}],"importedBy":[{"uid":"83f9b68d-0"},{"uid":"83f9b68d-107"}]},"83f9b68d-111":{"id":"vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-0"},{"uid":"83f9b68d-8"},{"uid":"83f9b68d-10"},{"uid":"83f9b68d-14"},{"uid":"83f9b68d-16"},{"uid":"83f9b68d-18"},{"uid":"83f9b68d-20"},{"uid":"83f9b68d-24"},{"uid":"83f9b68d-26"},{"uid":"83f9b68d-30"},{"uid":"83f9b68d-32"},{"uid":"83f9b68d-34"},{"uid":"83f9b68d-36"},{"uid":"83f9b68d-38"},{"uid":"83f9b68d-46"},{"uid":"83f9b68d-42"},{"uid":"83f9b68d-52"},{"uid":"83f9b68d-54"},{"uid":"83f9b68d-56"},{"uid":"83f9b68d-58"},{"uid":"83f9b68d-60"},{"uid":"83f9b68d-62"},{"uid":"83f9b68d-64"},{"uid":"83f9b68d-66"},{"uid":"83f9b68d-68"},{"uid":"83f9b68d-70"},{"uid":"83f9b68d-72"},{"uid":"83f9b68d-74"},{"uid":"83f9b68d-76"},{"uid":"83f9b68d-78"},{"uid":"83f9b68d-92"},{"uid":"83f9b68d-97"},{"uid":"83f9b68d-99"},{"uid":"83f9b68d-103"},{"uid":"83f9b68d-107"},{"uid":"83f9b68d-109"},{"uid":"83f9b68d-22"},{"uid":"83f9b68d-86"},{"uid":"83f9b68d-84"}],"isExternal":true},"83f9b68d-112":{"id":"element-plus/es","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-8"},{"uid":"83f9b68d-10"},{"uid":"83f9b68d-14"},{"uid":"83f9b68d-16"},{"uid":"83f9b68d-18"},{"uid":"83f9b68d-20"},{"uid":"83f9b68d-24"},{"uid":"83f9b68d-26"},{"uid":"83f9b68d-30"},{"uid":"83f9b68d-32"},{"uid":"83f9b68d-34"},{"uid":"83f9b68d-36"},{"uid":"83f9b68d-38"},{"uid":"83f9b68d-42"},{"uid":"83f9b68d-52"},{"uid":"83f9b68d-54"},{"uid":"83f9b68d-56"},{"uid":"83f9b68d-58"},{"uid":"83f9b68d-60"},{"uid":"83f9b68d-62"},{"uid":"83f9b68d-64"},{"uid":"83f9b68d-66"},{"uid":"83f9b68d-68"},{"uid":"83f9b68d-70"},{"uid":"83f9b68d-72"},{"uid":"83f9b68d-74"},{"uid":"83f9b68d-76"},{"uid":"83f9b68d-78"},{"uid":"83f9b68d-92"},{"uid":"83f9b68d-97"},{"uid":"83f9b68d-99"},{"uid":"83f9b68d-103"},{"uid":"83f9b68d-107"},{"uid":"83f9b68d-109"}],"isExternal":true},"83f9b68d-113":{"id":"element-plus/es/components/base/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-8"},{"uid":"83f9b68d-10"},{"uid":"83f9b68d-14"},{"uid":"83f9b68d-16"},{"uid":"83f9b68d-18"},{"uid":"83f9b68d-20"},{"uid":"83f9b68d-24"},{"uid":"83f9b68d-26"},{"uid":"83f9b68d-30"},{"uid":"83f9b68d-32"},{"uid":"83f9b68d-34"},{"uid":"83f9b68d-36"},{"uid":"83f9b68d-38"},{"uid":"83f9b68d-42"},{"uid":"83f9b68d-52"},{"uid":"83f9b68d-54"},{"uid":"83f9b68d-56"},{"uid":"83f9b68d-58"},{"uid":"83f9b68d-60"},{"uid":"83f9b68d-62"},{"uid":"83f9b68d-64"},{"uid":"83f9b68d-66"},{"uid":"83f9b68d-68"},{"uid":"83f9b68d-70"},{"uid":"83f9b68d-72"},{"uid":"83f9b68d-74"},{"uid":"83f9b68d-76"},{"uid":"83f9b68d-78"},{"uid":"83f9b68d-92"},{"uid":"83f9b68d-97"},{"uid":"83f9b68d-99"},{"uid":"83f9b68d-103"},{"uid":"83f9b68d-107"},{"uid":"83f9b68d-109"}],"isExternal":true},"83f9b68d-114":{"id":"element-plus/es/components/icon/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-8"},{"uid":"83f9b68d-10"},{"uid":"83f9b68d-16"},{"uid":"83f9b68d-18"},{"uid":"83f9b68d-20"},{"uid":"83f9b68d-107"}],"isExternal":true},"83f9b68d-115":{"id":"element-plus/es/components/input/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-8"},{"uid":"83f9b68d-10"},{"uid":"83f9b68d-20"},{"uid":"83f9b68d-30"},{"uid":"83f9b68d-62"},{"uid":"83f9b68d-64"},{"uid":"83f9b68d-103"}],"isExternal":true},"83f9b68d-116":{"id":"element-plus/es/components/checkbox/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-8"},{"uid":"83f9b68d-10"},{"uid":"83f9b68d-26"}],"isExternal":true},"83f9b68d-117":{"id":"element-plus/es/components/tooltip/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-8"},{"uid":"83f9b68d-10"},{"uid":"83f9b68d-16"},{"uid":"83f9b68d-20"},{"uid":"83f9b68d-24"},{"uid":"83f9b68d-26"},{"uid":"83f9b68d-30"},{"uid":"83f9b68d-32"},{"uid":"83f9b68d-34"},{"uid":"83f9b68d-36"},{"uid":"83f9b68d-38"},{"uid":"83f9b68d-42"},{"uid":"83f9b68d-52"},{"uid":"83f9b68d-54"},{"uid":"83f9b68d-56"},{"uid":"83f9b68d-58"},{"uid":"83f9b68d-60"},{"uid":"83f9b68d-62"},{"uid":"83f9b68d-64"},{"uid":"83f9b68d-66"},{"uid":"83f9b68d-70"},{"uid":"83f9b68d-97"},{"uid":"83f9b68d-99"},{"uid":"83f9b68d-103"},{"uid":"83f9b68d-107"}],"isExternal":true},"83f9b68d-118":{"id":"@element-plus/icons-vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-8"},{"uid":"83f9b68d-10"},{"uid":"83f9b68d-16"},{"uid":"83f9b68d-18"},{"uid":"83f9b68d-20"},{"uid":"83f9b68d-107"}],"isExternal":true},"83f9b68d-119":{"id":"element-plus/es/components/loading/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-14"},{"uid":"83f9b68d-92"}],"isExternal":true},"83f9b68d-120":{"id":"element-plus/es/components/dropdown/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-16"},{"uid":"83f9b68d-107"}],"isExternal":true},"83f9b68d-121":{"id":"element-plus/es/components/dropdown-menu/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-16"},{"uid":"83f9b68d-107"}],"isExternal":true},"83f9b68d-122":{"id":"element-plus/es/components/dropdown-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-16"},{"uid":"83f9b68d-107"}],"isExternal":true},"83f9b68d-123":{"id":"element-plus/es/components/collapse/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-16"},{"uid":"83f9b68d-74"}],"isExternal":true},"83f9b68d-124":{"id":"element-plus/es/components/collapse-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-16"},{"uid":"83f9b68d-74"}],"isExternal":true},"83f9b68d-125":{"id":"element-plus/es/components/row/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-16"},{"uid":"83f9b68d-18"},{"uid":"83f9b68d-20"},{"uid":"83f9b68d-76"}],"isExternal":true},"83f9b68d-126":{"id":"element-plus/es/components/button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-16"},{"uid":"83f9b68d-18"},{"uid":"83f9b68d-20"},{"uid":"83f9b68d-56"},{"uid":"83f9b68d-99"},{"uid":"83f9b68d-103"},{"uid":"83f9b68d-107"}],"isExternal":true},"83f9b68d-127":{"id":"element-plus/es/components/col/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-16"},{"uid":"83f9b68d-20"},{"uid":"83f9b68d-76"}],"isExternal":true},"83f9b68d-128":{"id":"element-plus/es/components/select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-16"},{"uid":"83f9b68d-52"},{"uid":"83f9b68d-54"},{"uid":"83f9b68d-107"}],"isExternal":true},"83f9b68d-129":{"id":"element-plus/es/components/option/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-16"},{"uid":"83f9b68d-52"},{"uid":"83f9b68d-54"},{"uid":"83f9b68d-107"}],"isExternal":true},"83f9b68d-130":{"id":"element-plus/es/components/input-number/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-18"},{"uid":"83f9b68d-36"}],"isExternal":true},"83f9b68d-131":{"id":"element-plus/es/components/radio-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-24"},{"uid":"83f9b68d-38"}],"isExternal":true},"83f9b68d-132":{"id":"element-plus/es/components/radio-button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-24"}],"isExternal":true},"83f9b68d-133":{"id":"element-plus/es/components/checkbox-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-26"}],"isExternal":true},"83f9b68d-134":{"id":"element-plus/es/components/color-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-30"}],"isExternal":true},"83f9b68d-135":{"id":"element-plus/es/components/date-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-32"},{"uid":"83f9b68d-34"}],"isExternal":true},"83f9b68d-136":{"id":"element-plus/es/components/radio/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-38"}],"isExternal":true},"83f9b68d-137":{"id":"element-plus/es/components/slider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-58"}],"isExternal":true},"83f9b68d-138":{"id":"element-plus/es/components/switch/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-60"}],"isExternal":true},"83f9b68d-139":{"id":"element-plus/es/components/time-select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-66"}],"isExternal":true},"83f9b68d-140":{"id":"element-plus/es/components/divider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-68"}],"isExternal":true},"83f9b68d-141":{"id":"element-plus/es/components/alert/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-70"},{"uid":"83f9b68d-107"}],"isExternal":true},"83f9b68d-142":{"id":"element-plus/es/components/tabs/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-72"}],"isExternal":true},"83f9b68d-143":{"id":"element-plus/es/components/tab-pane/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-72"}],"isExternal":true},"83f9b68d-144":{"id":"element-plus/es/components/form-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-72"},{"uid":"83f9b68d-74"},{"uid":"83f9b68d-76"},{"uid":"83f9b68d-78"},{"uid":"83f9b68d-103"},{"uid":"83f9b68d-109"}],"isExternal":true},"83f9b68d-145":{"id":"element-plus","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-88"}],"isExternal":true},"83f9b68d-146":{"id":"@tiptap/vue-3","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-97"}],"isExternal":true},"83f9b68d-147":{"id":"@tiptap/starter-kit","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-97"}],"isExternal":true},"83f9b68d-148":{"id":"@tiptap/extension-code","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-97"}],"isExternal":true},"83f9b68d-149":{"id":"@tiptap/extension-blockquote","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-97"}],"isExternal":true},"83f9b68d-150":{"id":"@tiptap/extension-horizontal-rule","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-97"}],"isExternal":true},"83f9b68d-151":{"id":"@tiptap/extension-code-block","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-97"}],"isExternal":true},"83f9b68d-152":{"id":"element-plus/es/components/container/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-99"},{"uid":"83f9b68d-103"},{"uid":"83f9b68d-107"}],"isExternal":true},"83f9b68d-153":{"id":"element-plus/es/components/footer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-99"},{"uid":"83f9b68d-107"}],"isExternal":true},"83f9b68d-154":{"id":"element-plus/es/components/main/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-99"},{"uid":"83f9b68d-103"},{"uid":"83f9b68d-107"}],"isExternal":true},"83f9b68d-155":{"id":"jsoneditor","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-99"}],"isExternal":true},"83f9b68d-156":{"id":"element-plus/es/components/form/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-103"},{"uid":"83f9b68d-109"}],"isExternal":true},"83f9b68d-157":{"id":"element-plus/es/components/aside/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-103"}],"isExternal":true},"83f9b68d-158":{"id":"element-plus/es/components/scrollbar/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-103"}],"isExternal":true},"83f9b68d-159":{"id":"vue-codemirror","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f9b68d-103"},{"uid":"83f9b68d-107"}],"isExternal":true},"83f9b68d-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":"83f9b68d-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;