starfish-form-custom 1.0.43 → 1.0.44

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-08a90f8a.mjs';
14
+ import { _ as _export_sfc } from './main-c6aa3683.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-08a90f8a.mjs';
16
+ import { _ as _export_sfc, b as _, f as fieldProps, r as ruleList, c as ruleJsonData } from './main-c6aa3683.mjs';
17
17
  import { Delete } from '@element-plus/icons-vue';
18
- import Dynamicform from './starfish-form-8c225a3b.mjs';
18
+ import Dynamicform from './starfish-form-ac5dbff7.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';
@@ -1,9 +1,9 @@
1
- import { _ as _export_sfc, g as getFormConfig, f as fieldProps, a as __unplugin_components_1 } from './main-08a90f8a.mjs';
1
+ import { _ as _export_sfc, g as getFormConfig, f as fieldProps, a as __unplugin_components_1 } from './main-c6aa3683.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, nextTick, onUnmounted, openBlock, createElementBlock, normalizeClass, createElementVNode, normalizeStyle, createCommentVNode, toDisplayString, createBlock, withCtx, pushScopeId, popScopeId } from 'vue';
6
- import { Editor } from '@tiptap/vue-3';
5
+ import { defineComponent, ref, watch, onUnmounted, resolveComponent, openBlock, createElementBlock, normalizeClass, createElementVNode, normalizeStyle, createCommentVNode, toDisplayString, createBlock, withCtx, createVNode, pushScopeId, popScopeId } from 'vue';
6
+ import { EditorContent, useEditor } from '@tiptap/vue-3';
7
7
  import StarterKit from '@tiptap/starter-kit';
8
8
  import Code from '@tiptap/extension-code';
9
9
  import Blockquote from '@tiptap/extension-blockquote';
@@ -52,111 +52,83 @@ const _sfc_main = defineComponent({
52
52
  ...fieldProps
53
53
  },
54
54
  components: {
55
+ EditorContent,
55
56
  MenuBar: __unplugin_components_1
56
57
  },
57
58
  setup(props) {
58
- const editorRef = ref(null);
59
- const editorContainer = ref(null);
60
- let isUpdatingFromExternal = false;
61
- const initEditor = () => {
62
- if (editorRef.value) {
63
- editorRef.value.destroy();
64
- }
65
- const initialContent = props.data[props.item.data.fieldName] || props.item.data.defaultValue || "";
66
- editorRef.value = new Editor({
67
- element: editorContainer.value,
68
- content: initialContent,
69
- extensions: [
70
- StarterKit.configure({
71
- codeBlock: {
72
- HTMLAttributes: {
73
- class: "code-block"
74
- }
75
- }
76
- }),
77
- Code.configure({
78
- HTMLAttributes: {
79
- class: "inline-code"
80
- }
81
- }),
82
- CodeBlock.configure({
59
+ const internalContent = ref(props.data[props.item.data.fieldName] || props.item.data.defaultValue || "");
60
+ const editor = useEditor({
61
+ content: internalContent.value,
62
+ extensions: [
63
+ StarterKit.configure({
64
+ codeBlock: {
83
65
  HTMLAttributes: {
84
66
  class: "code-block"
85
67
  }
86
- }),
87
- Blockquote.configure({
88
- HTMLAttributes: {
89
- class: "blockquote"
90
- }
91
- }),
92
- HorizontalRule
93
- ],
94
- editable: !props.readonly,
95
- editorProps: {
96
- attributes: {
97
- class: "prose focus:outline-none max-w-none",
98
- style: "min-height: 200px; border: 1px solid #DCDFE6; padding: 8px 12px; background-color: #fff;"
99
68
  }
100
- },
101
- onUpdate: ({ editor }) => {
102
- if (isUpdatingFromExternal)
103
- return;
104
- const html = editor.getHTML();
105
- console.log("\u5BCC\u6587\u672C\u5185\u5BB9\u66F4\u65B0:", html.substring(0, 50) + "...");
106
- props.data[props.item.data.fieldName] = html;
107
- },
108
- onBlur: ({ editor }) => {
109
- const html = editor.getHTML();
110
- props.data[props.item.data.fieldName] = html;
69
+ }),
70
+ Code.configure({
71
+ HTMLAttributes: {
72
+ class: "inline-code"
73
+ }
74
+ }),
75
+ CodeBlock.configure({
76
+ HTMLAttributes: {
77
+ class: "code-block"
78
+ }
79
+ }),
80
+ Blockquote.configure({
81
+ HTMLAttributes: {
82
+ class: "blockquote"
83
+ }
84
+ }),
85
+ HorizontalRule
86
+ ],
87
+ editable: !props.readonly,
88
+ editorProps: {
89
+ attributes: {
90
+ class: "prose focus:outline-none max-w-none",
91
+ style: "min-height: 200px; border: 1px solid #DCDFE6; padding: 8px 12px; background-color: #fff;"
111
92
  }
112
- });
113
- };
93
+ },
94
+ // 3. 只在失焦时更新到表单数据
95
+ onBlur: ({ editor: editorInstance }) => {
96
+ const html = editorInstance.getHTML();
97
+ console.log("\u5BCC\u6587\u672C\u5931\u7126\uFF0C\u66F4\u65B0\u8868\u5355\u6570\u636E");
98
+ internalContent.value = html;
99
+ props.data[props.item.data.fieldName] = html;
100
+ }
101
+ // 4. 移除 onUpdate 回调,避免实时更新
102
+ });
114
103
  watch(
115
104
  () => props.data[props.item.data.fieldName],
116
105
  (newValue) => {
117
- if (!editorRef.value || editorRef.value.isDestroyed)
106
+ if (!editor.value || editor.value.isDestroyed)
118
107
  return;
119
- const currentHtml = editorRef.value.getHTML();
120
- if (currentHtml !== newValue) {
108
+ if (newValue !== internalContent.value) {
121
109
  console.log("\u5916\u90E8\u6570\u636E\u53D8\u5316\uFF0C\u66F4\u65B0\u7F16\u8F91\u5668");
122
- isUpdatingFromExternal = true;
123
- try {
124
- editorRef.value.commands.setContent(newValue || "", false);
125
- } catch (error) {
126
- console.error("\u66F4\u65B0\u7F16\u8F91\u5668\u5185\u5BB9\u5931\u8D25:", error);
127
- } finally {
128
- setTimeout(() => {
129
- isUpdatingFromExternal = false;
130
- }, 10);
131
- }
110
+ internalContent.value = newValue || "";
111
+ editor.value.commands.setContent(newValue || "", false);
132
112
  }
133
113
  },
134
114
  { immediate: true }
135
115
  );
136
116
  watch(() => props.readonly, (newVal) => {
137
- if (editorRef.value && !editorRef.value.isDestroyed) {
138
- editorRef.value.setEditable(!newVal);
117
+ if (editor.value) {
118
+ editor.value.setEditable(!newVal);
139
119
  }
140
120
  });
141
- onMounted(() => {
142
- nextTick(() => {
143
- initEditor();
144
- });
145
- });
146
121
  onUnmounted(() => {
147
- console.log("\u5BCC\u6587\u672C\u9500\u6BC1");
148
- if (editorRef.value) {
149
- editorRef.value.destroy();
150
- editorRef.value = null;
122
+ if (editor.value) {
123
+ editor.value.destroy();
151
124
  }
152
125
  });
153
126
  return {
154
- editor: editorRef,
155
- editorContainer
127
+ editor
156
128
  };
157
129
  }
158
130
  });
159
- const _withScopeId = (n) => (pushScopeId("data-v-09f76164"), n = n(), popScopeId(), n);
131
+ const _withScopeId = (n) => (pushScopeId("data-v-715a995e"), n = n(), popScopeId(), n);
160
132
  const _hoisted_1 = ["data-control-type", "data-id"];
161
133
  const _hoisted_2 = {
162
134
  key: 0,
@@ -164,13 +136,10 @@ const _hoisted_2 = {
164
136
  };
165
137
  const _hoisted_3 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("span", { class: "tip iconfontui icon-tishi" }, null, -1));
166
138
  const _hoisted_4 = { class: "rich-text-editor" };
167
- const _hoisted_5 = {
168
- ref: "editorContainer",
169
- class: "editor-content"
170
- };
171
139
  function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
172
140
  const _component_el_tooltip = ElTooltip;
173
141
  const _component_MenuBar = __unplugin_components_1;
142
+ const _component_EditorContent = resolveComponent("EditorContent");
174
143
  return openBlock(), createElementBlock("div", {
175
144
  class: normalizeClass(["starfish-formitem", { formCover: _ctx.drag, "starfish-vertical": _ctx.labelalign != "top", [_ctx.item.data.csslist?.join(" ")]: !!_ctx.item.data.csslist }]),
176
145
  "data-control-type": _ctx.item.ControlType,
@@ -204,11 +173,14 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
204
173
  key: 0,
205
174
  editor: _ctx.editor
206
175
  }, null, 8, ["editor"])) : createCommentVNode("", true),
207
- createElementVNode("div", _hoisted_5, null, 512)
176
+ createVNode(_component_EditorContent, {
177
+ editor: _ctx.editor,
178
+ class: "editor-content"
179
+ }, null, 8, ["editor"])
208
180
  ])
209
181
  ], 4)
210
182
  ], 10, _hoisted_1);
211
183
  }
212
- const index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-09f76164"]]);
184
+ const index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-715a995e"]]);
213
185
 
214
186
  export { index as default };
@@ -6,7 +6,7 @@ import 'element-plus/es/components/button/style/css';
6
6
  import 'element-plus/es/components/main/style/css';
7
7
  import 'element-plus/es/components/tooltip/style/css';
8
8
  import { defineComponent, ref, onMounted, watch, nextTick, resolveComponent, openBlock, createElementBlock, normalizeClass, createElementVNode, normalizeStyle, toDisplayString, createCommentVNode, createBlock, withCtx, createVNode, createTextVNode } from 'vue';
9
- import { _ as _export_sfc, b as _, g as getFormConfig, f as fieldProps, u as useWatch } from './main-08a90f8a.mjs';
9
+ import { _ as _export_sfc, b as _, g as getFormConfig, f as fieldProps, u as useWatch } from './main-c6aa3683.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';
@@ -5584,7 +5584,7 @@ Object.keys(files).forEach((fileName) => {
5584
5584
  }
5585
5585
  });
5586
5586
  const RichText = defineAsyncComponent({
5587
- loader: () => import('./index-54d339ab.mjs'),
5587
+ loader: () => import('./index-e7b2d7c0.mjs'),
5588
5588
  loadingComponent: Loading
5589
5589
  });
5590
5590
  RichText.ControlType = "RichText";
@@ -5593,7 +5593,7 @@ RichText.icon = "icon-textEdit";
5593
5593
  RichText.formConfig = getFormConfig("RichText");
5594
5594
  utilFuns[RichText.ControlType] = RichText;
5595
5595
  const jsonEditor = defineAsyncComponent({
5596
- loader: () => import('./index-133a88e8.mjs'),
5596
+ loader: () => import('./index-e8b18d70.mjs'),
5597
5597
  loadingComponent: Loading
5598
5598
  });
5599
5599
  jsonEditor.ControlType = "JsonEditor";
@@ -5603,14 +5603,14 @@ jsonEditor.formConfig = getFormConfig("JsonEditor", [{ fieldName: "default", com
5603
5603
  jsonEditor.rule = _.getJsonValidate();
5604
5604
  utilFuns[jsonEditor.ControlType] = jsonEditor;
5605
5605
  const formAction = defineAsyncComponent({
5606
- loader: () => import('./formAction-5fa977d1.mjs'),
5606
+ loader: () => import('./formAction-48f1f081.mjs'),
5607
5607
  loadingComponent: Loading
5608
5608
  });
5609
5609
  formAction.ControlType = "FormAction";
5610
5610
  formAction.isHide = true;
5611
5611
  utilFuns[formAction.ControlType] = formAction;
5612
5612
  const Rule = defineAsyncComponent({
5613
- loader: () => import('./index-9d339476.mjs'),
5613
+ loader: () => import('./index-c2fdc90f.mjs'),
5614
5614
  loadingComponent: Loading
5615
5615
  });
5616
5616
  Rule.ControlType = "Rule";
@@ -5619,7 +5619,7 @@ utilFuns[Rule.ControlType] = Rule;
5619
5619
  const install = (app) => {
5620
5620
  app.config.globalProperties.$formcomponents = utilFuns;
5621
5621
  };
5622
- const Dynamicform = defineAsyncComponent(() => import('./starfish-form-8c225a3b.mjs'));
5622
+ const Dynamicform = defineAsyncComponent(() => import('./starfish-form-ac5dbff7.mjs'));
5623
5623
  const main = {
5624
5624
  install
5625
5625
  };
@@ -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-08a90f8a.mjs';
6
+ import { _ as _export_sfc } from './main-c6aa3683.mjs';
7
7
  import 'element-plus/es/components/icon/style/css';
8
8
  import 'element-plus/es/components/input/style/css';
9
9
  import 'element-plus/es/components/checkbox/style/css';
@@ -1,4 +1,4 @@
1
- export { D as Dynamicform, m as default } from './main-08a90f8a.mjs';
1
+ export { D as Dynamicform, m as default } from './main-c6aa3683.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
@@ -1,4 +1,4 @@
1
- .loading[data-v-2b901926] {
1
+ @charset "UTF-8";.loading[data-v-2b901926] {
2
2
  width: 100%;
3
3
  height: 100%;
4
4
  min-height: 40px;
@@ -468,98 +468,96 @@
468
468
  min-height: 60px;
469
469
  height: 100%;
470
470
  }
471
- .rich-text-editor[data-v-09f76164] {
471
+ .rich-text-editor[data-v-715a995e] {
472
472
  min-height: 200px;
473
473
  }
474
- [data-v-09f76164] .editor-content {
474
+ [data-v-715a995e] .editor-content {
475
475
  min-height: 200px;
476
476
  }
477
- [data-v-09f76164] .ProseMirror {
478
- min-height: 180px;
479
- outline: none;
477
+ [data-v-715a995e] .ProseMirror {
478
+ min-height: 180px;
479
+ outline: none;
480
480
  padding: 12px;
481
481
  }
482
- [data-v-09f76164] .ProseMirror p.is-editor-empty:first-child::before {
483
- color: #adb5bd;
484
- content: attr(data-placeholder);
485
- float: left;
486
- height: 0;
482
+ [data-v-715a995e] .ProseMirror p.is-editor-empty:first-child::before {
483
+ color: #adb5bd;
484
+ content: attr(data-placeholder);
485
+ float: left;
486
+ height: 0;
487
487
  pointer-events: none;
488
- }
489
-
488
+ }
489
+
490
490
  /* 行内代码样式 */
491
- [data-v-09f76164] .ProseMirror .inline-code {
492
- background-color: #f3f4f6;
493
- color: #e53e3e;
494
- padding: 2px 6px;
495
- border-radius: 4px;
496
- font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
497
- font-size: 0.875em;
491
+ [data-v-715a995e] .ProseMirror .inline-code {
492
+ background-color: #f3f4f6;
493
+ color: #e53e3e;
494
+ padding: 2px 6px;
495
+ border-radius: 4px;
496
+ font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
497
+ font-size: 0.875em;
498
498
  border: 1px solid #e5e7eb;
499
- }
500
-
499
+ }
500
+
501
501
  /* 代码块样式 */
502
- [data-v-09f76164] .ProseMirror .code-block {
503
- background-color: #1f2937;
504
- color: #f9fafb;
505
- padding: 16px;
506
- border-radius: 8px;
507
- margin: 12px 0;
508
- font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
509
- font-size: 0.875em;
510
- line-height: 1.5;
511
- position: relative;
502
+ [data-v-715a995e] .ProseMirror .code-block {
503
+ background-color: #1f2937;
504
+ color: #f9fafb;
505
+ padding: 16px;
506
+ border-radius: 8px;
507
+ margin: 12px 0;
508
+ font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
509
+ font-size: 0.875em;
510
+ line-height: 1.5;
511
+ position: relative;
512
512
  border: 1px solid #374151;
513
- }
514
-
515
-
513
+ }
514
+
516
515
  /* 引用块样式 */
517
- [data-v-09f76164] .ProseMirror blockquote {
518
- border-left: 4px solid #3b82f6;
519
- background-color: #f8fafc;
520
- padding: 12px 16px;
521
- margin: 12px 0;
522
- border-radius: 0 8px 8px 0;
523
- font-style: italic;
516
+ [data-v-715a995e] .ProseMirror blockquote {
517
+ border-left: 4px solid #3b82f6;
518
+ background-color: #f8fafc;
519
+ padding: 12px 16px;
520
+ margin: 12px 0;
521
+ border-radius: 0 8px 8px 0;
522
+ font-style: italic;
524
523
  color: #4b5563;
525
- }
526
-
524
+ }
525
+
527
526
  /* 水平分割线样式 */
528
- [data-v-09f76164] .ProseMirror hr {
529
- border: none;
530
- border-top: 2px solid #e5e7eb;
527
+ [data-v-715a995e] .ProseMirror hr {
528
+ border: none;
529
+ border-top: 2px solid #e5e7eb;
531
530
  margin: 24px 0;
532
- }
533
-
531
+ }
532
+
534
533
  /* 列表样式 */
535
- [data-v-09f76164] .ProseMirror ul,[data-v-09f76164] .ProseMirror ol {
536
- padding-left: 24px;
534
+ [data-v-715a995e] .ProseMirror ul,[data-v-715a995e] .ProseMirror ol {
535
+ padding-left: 24px;
537
536
  margin: 12px 0;
538
537
  }
539
- [data-v-09f76164] .ProseMirror ul{
538
+ [data-v-715a995e] .ProseMirror ul {
540
539
  list-style: disc;
541
540
  }
542
- [data-v-09f76164] .ProseMirror ol{
541
+ [data-v-715a995e] .ProseMirror ol {
543
542
  list-style: decimal;
544
543
  }
545
- [data-v-09f76164] .ProseMirror li {
544
+ [data-v-715a995e] .ProseMirror li {
546
545
  margin: 4px 0;
547
- }
548
-
546
+ }
547
+
549
548
  /* 标题样式 */
550
- [data-v-09f76164] .ProseMirror h1 {
551
- font-size: 1.875em;
552
- font-weight: bold;
553
- margin: 24px 0 16px 0;
549
+ [data-v-715a995e] .ProseMirror h1 {
550
+ font-size: 1.875em;
551
+ font-weight: bold;
552
+ margin: 24px 0 16px 0;
554
553
  color: #111827;
555
554
  }
556
- [data-v-09f76164] .ProseMirror h2 {
557
- font-size: 1.5em;
558
- font-weight: bold;
559
- margin: 20px 0 12px 0;
555
+ [data-v-715a995e] .ProseMirror h2 {
556
+ font-size: 1.5em;
557
+ font-weight: bold;
558
+ margin: 20px 0 12px 0;
560
559
  color: #111827;
561
- }
562
- .cm-gutters.cm-gutters-before {
560
+ }.cm-gutters.cm-gutters-before {
563
561
  background: #133F63;
564
562
  }.el-collapse-item {
565
563
  border: 1px solid #ebeef5;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "starfish-form-custom",
3
- "version": "1.0.43",
3
+ "version": "1.0.44",
4
4
  "main": "dist/starfish-form.mjs",
5
5
  "style": "dist/style.css",
6
6
  "module": "dist/starfish-form.mjs",
@@ -15,15 +15,15 @@
15
15
  <div class="rich-text-editor">
16
16
  <!-- 使用 MenuBar 组件 -->
17
17
  <MenuBar v-if="editor && !readonly" :editor="editor" />
18
- <div ref="editorContainer" class="editor-content"></div>
18
+ <EditorContent :editor="editor" class="editor-content" />
19
19
  </div>
20
20
  </div>
21
21
  </div>
22
22
  </template>
23
23
 
24
24
  <script lang="ts">
25
- import { defineComponent, onMounted, ref, onUnmounted, watch, nextTick } from "vue";
26
- import { Editor } from '@tiptap/vue-3';
25
+ import { defineComponent, onMounted, ref, onUnmounted, watch } from "vue";
26
+ import { useEditor, EditorContent } from '@tiptap/vue-3'
27
27
  import StarterKit from '@tiptap/starter-kit'
28
28
  import Code from '@tiptap/extension-code'
29
29
  import Blockquote from '@tiptap/extension-blockquote'
@@ -31,8 +31,7 @@ import HorizontalRule from '@tiptap/extension-horizontal-rule'
31
31
  import CodeBlock from '@tiptap/extension-code-block'
32
32
  import { getFormConfig } from "../../utils/fieldConfig";
33
33
  import fieldProps from "../../utils/fieldProps";
34
- import { useWatch } from "../../utils/customHooks";
35
- import MenuBar from "./MenuBar.vue"; // 导入 MenuBar 组件
34
+ import MenuBar from "./MenuBar.vue";
36
35
 
37
36
  export default defineComponent({
38
37
  ControlType: "RichText",
@@ -43,37 +42,27 @@ export default defineComponent({
43
42
  ...fieldProps,
44
43
  },
45
44
  components: {
45
+ EditorContent,
46
46
  MenuBar
47
47
  },
48
48
  setup(props) {
49
- const editorRef = ref<Editor | null>(null);
50
- const editorContainer = ref<HTMLElement | null>(null);
49
+ // 1. 使用内部变量存储编辑器内容,避免频繁更新表单
50
+ const internalContent = ref<string>(props.data[props.item.data.fieldName] || props.item.data.defaultValue || '');
51
51
 
52
- // 1. 不使用 useWatch(避免深度监听循环)
52
+ // 2. 完全跳过 useWatch,避免触发 change 事件
53
53
  // useWatch(props);
54
54
 
55
- // 2. 使用标记避免重复触发
56
- let isUpdatingFromExternal = false;
57
-
58
- const initEditor = () => {
59
- if (editorRef.value) {
60
- editorRef.value.destroy();
61
- }
62
-
63
- const initialContent = props.data[props.item.data.fieldName] || props.item.data.defaultValue || '';
64
-
65
- editorRef.value = new Editor({
66
- element: editorContainer.value!,
67
- content: initialContent,
68
- extensions: [
69
- StarterKit.configure({
70
- codeBlock: {
71
- HTMLAttributes: {
72
- class: 'code-block',
73
- },
55
+ const editor = useEditor({
56
+ content: internalContent.value,
57
+ extensions: [
58
+ StarterKit.configure({
59
+ codeBlock: {
60
+ HTMLAttributes: {
61
+ class: 'code-block',
74
62
  },
75
- }),
76
- Code.configure({
63
+ },
64
+ }),
65
+ Code.configure({
77
66
  HTMLAttributes: {
78
67
  class: 'inline-code',
79
68
  },
@@ -89,85 +78,65 @@ export default defineComponent({
89
78
  },
90
79
  }),
91
80
  HorizontalRule,
92
- ],
93
- editable: !props.readonly,
94
- editorProps: {
95
- attributes: {
96
- class: 'prose focus:outline-none max-w-none',
97
- style: 'min-height: 200px; border: 1px solid #DCDFE6; padding: 8px 12px; background-color: #fff;'
98
- }
99
- },
100
- onUpdate: ({ editor }) => {
101
- if (isUpdatingFromExternal) return;
102
-
103
- const html = editor.getHTML();
104
- console.log('富文本内容更新:', html.substring(0, 50) + '...');
105
-
106
- // 直接赋值到表单数据
107
- props.data[props.item.data.fieldName] = html;
108
- },
109
- onBlur: ({ editor }) => {
110
- const html = editor.getHTML();
111
- props.data[props.item.data.fieldName] = html;
81
+ ],
82
+ editable: !props.readonly,
83
+ editorProps: {
84
+ attributes: {
85
+ class: 'prose focus:outline-none max-w-none',
86
+ style: 'min-height: 200px; border: 1px solid #DCDFE6; padding: 8px 12px; background-color: #fff;'
112
87
  }
113
- });
114
- };
88
+ },
89
+ // 3. 只在失焦时更新到表单数据
90
+ onBlur: ({ editor: editorInstance }) => {
91
+ const html = editorInstance.getHTML();
92
+ console.log('富文本失焦,更新表单数据');
93
+
94
+ // 更新内部变量
95
+ internalContent.value = html;
96
+
97
+ // 一次性更新到表单数据
98
+ props.data[props.item.data.fieldName] = html;
99
+ }
100
+ // 4. 移除 onUpdate 回调,避免实时更新
101
+ });
115
102
 
116
- // 3. 监听外部数据变化(从表单设置值)
103
+ // 5. 监听外部数据变化(表单数据 -> 编辑器)
117
104
  watch(
118
105
  () => props.data[props.item.data.fieldName],
119
106
  (newValue) => {
120
- if (!editorRef.value || editorRef.value.isDestroyed) return;
107
+ if (!editor.value || editor.value.isDestroyed) return;
121
108
 
122
- const currentHtml = editorRef.value.getHTML();
123
- if (currentHtml !== newValue) {
109
+ // 只在外部数据变化时更新编辑器
110
+ if (newValue !== internalContent.value) {
124
111
  console.log('外部数据变化,更新编辑器');
125
- isUpdatingFromExternal = true;
126
- try {
127
- editorRef.value.commands.setContent(newValue || '', false);
128
- } catch (error) {
129
- console.error('更新编辑器内容失败:', error);
130
- } finally {
131
- // 短暂延迟后重置标记
132
- setTimeout(() => {
133
- isUpdatingFromExternal = false;
134
- }, 10);
135
- }
112
+ internalContent.value = newValue || '';
113
+ editor.value.commands.setContent(newValue || '', false);
136
114
  }
137
115
  },
138
116
  { immediate: true }
139
117
  );
140
118
 
141
- // 4. 监听只读状态
119
+ // 6. 监听只读状态变化
142
120
  watch(() => props.readonly, (newVal) => {
143
- if (editorRef.value && !editorRef.value.isDestroyed) {
144
- editorRef.value.setEditable(!newVal);
121
+ if (editor.value) {
122
+ editor.value.setEditable(!newVal);
145
123
  }
146
124
  });
147
-
148
- onMounted(() => {
149
- nextTick(() => {
150
- initEditor();
151
- });
152
- });
153
-
125
+
154
126
  onUnmounted(() => {
155
- console.log("富文本销毁");
156
- if (editorRef.value) {
157
- editorRef.value.destroy();
158
- editorRef.value = null;
127
+ if (editor.value) {
128
+ editor.value.destroy();
159
129
  }
160
130
  });
161
-
131
+
162
132
  return {
163
- editor: editorRef,
164
- editorContainer
133
+ editor
165
134
  };
166
135
  },
167
136
  });
168
137
  </script>
169
138
 
170
- <style scoped>
139
+ <style lang="scss" scoped>
171
140
  .rich-text-editor {
172
141
  min-height: 200px;
173
142
  }
@@ -215,7 +184,6 @@ export default defineComponent({
215
184
  border: 1px solid #374151;
216
185
  }
217
186
 
218
-
219
187
  /* 引用块样式 */
220
188
  :deep(.ProseMirror blockquote) {
221
189
  border-left: 4px solid #3b82f6;
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":"eb230846-1"},{"name":"main-08a90f8a.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":"eb230846-3","name":"fieldConfig.ts"},{"uid":"eb230846-5","name":"fieldProps.ts"},{"uid":"eb230846-23","name":"customHooks.ts"}]},{"name":"common","children":[{"uid":"eb230846-9","name":"KeyValueConfig.vue"},{"uid":"eb230846-11","name":"KeyValueConfigMult.vue"},{"uid":"eb230846-13","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"eb230846-15","name":"Loading.vue"},{"uid":"eb230846-17","name":"action.vue"},{"uid":"eb230846-19","name":"listConfig.vue"},{"uid":"eb230846-21","name":"panel.vue"},{"uid":"eb230846-25","name":"radiogroup.vue"}]},{"name":"components","children":[{"name":"CheckBox/index.vue","uid":"eb230846-27"},{"name":"ColorSelect","children":[{"uid":"eb230846-29","name":"index.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"eb230846-31","name":"index.vue"}]},{"name":"Date/index.vue","uid":"eb230846-33"},{"name":"DateTime/index.vue","uid":"eb230846-35"},{"name":"InputNumber/index.vue","uid":"eb230846-37"},{"name":"Radio/index.vue","uid":"eb230846-39"},{"name":"RichText","children":[{"uid":"eb230846-41","name":"MenuItem.vue?vue&type=style&index=0&scoped=true&lang.css"},{"uid":"eb230846-43","name":"MenuItem.vue"},{"uid":"eb230846-45","name":"MenuBar.vue?vue&type=style&index=0&scoped=true&lang.css"},{"uid":"eb230846-47","name":"MenuBar.vue"}]},{"name":"Rule","children":[{"uid":"eb230846-49","name":"ruleform.json"},{"uid":"eb230846-51","name":"rules.js"}]},{"name":"Selected/index.vue","uid":"eb230846-53"},{"name":"Selecteds/index.vue","uid":"eb230846-55"},{"name":"ShowRule/index.vue","uid":"eb230846-57"},{"name":"Slider/index.vue","uid":"eb230846-59"},{"name":"Switch/index.vue","uid":"eb230846-61"},{"name":"Text/index.vue","uid":"eb230846-63"},{"name":"TextArea/index.vue","uid":"eb230846-65"},{"name":"Time/index.vue","uid":"eb230846-67"}]},{"name":"layout","children":[{"uid":"eb230846-69","name":"Divider.vue"},{"uid":"eb230846-71","name":"Info.vue"},{"uid":"eb230846-73","name":"Tabs.vue"},{"uid":"eb230846-75","name":"collapse.vue"},{"uid":"eb230846-77","name":"grid.vue"},{"uid":"eb230846-79","name":"table.vue"}]},{"name":"styles/index.scss","uid":"eb230846-81"},{"uid":"eb230846-94","name":"main.ts"}]},{"name":"editor/src","children":[{"name":"controller","children":[{"uid":"eb230846-85","name":"history.ts"},{"uid":"eb230846-87","name":"form.ts"}]},{"name":"utils/_.ts","uid":"eb230846-89"},{"name":"common","children":[{"uid":"eb230846-91","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"eb230846-93","name":"Loading.vue"}]}]}]},{"name":"node_modules/.pnpm/nanoid@4.0.0/node_modules/nanoid/index.browser.js","uid":"eb230846-83"}]},{"uid":"eb230846-7","name":"plugin-vue:export-helper"}]},{"name":"index-54d339ab.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText","children":[{"uid":"eb230846-96","name":"index.vue?vue&type=style&index=0&scoped=true&lang.css"},{"uid":"eb230846-98","name":"index.vue"}]}]},{"name":"index-133a88e8.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","uid":"eb230846-100"}]},{"name":"formAction-5fa977d1.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common","children":[{"uid":"eb230846-102","name":"formAction.vue?vue&type=style&index=0&lang.scss"},{"uid":"eb230846-104","name":"formAction.vue"}]}]},{"name":"index-9d339476.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule","children":[{"uid":"eb230846-106","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"eb230846-108","name":"index.vue"}]}]},{"name":"starfish-form-8c225a3b.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","uid":"eb230846-110"}]}],"isRoot":true},"nodeParts":{"eb230846-1":{"id":"starfish-form.mjs","gzipLength":0,"brotliLength":0,"renderedLength":1902,"metaUid":"eb230846-0"},"eb230846-3":{"renderedLength":18542,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-2"},"eb230846-5":{"renderedLength":626,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-4"},"eb230846-7":{"renderedLength":159,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-6"},"eb230846-9":{"renderedLength":8660,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-8"},"eb230846-11":{"renderedLength":8485,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-10"},"eb230846-13":{"renderedLength":103,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-12"},"eb230846-15":{"renderedLength":404,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-14"},"eb230846-17":{"renderedLength":8527,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-16"},"eb230846-19":{"renderedLength":3264,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-18"},"eb230846-21":{"renderedLength":5397,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-20"},"eb230846-23":{"renderedLength":561,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-22"},"eb230846-25":{"renderedLength":2228,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-24"},"eb230846-27":{"renderedLength":4844,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-26"},"eb230846-29":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-28"},"eb230846-31":{"renderedLength":3864,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-30"},"eb230846-33":{"renderedLength":5532,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-32"},"eb230846-35":{"renderedLength":4778,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-34"},"eb230846-37":{"renderedLength":4741,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-36"},"eb230846-39":{"renderedLength":4756,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-38"},"eb230846-41":{"renderedLength":102,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-40"},"eb230846-43":{"renderedLength":1925,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-42"},"eb230846-45":{"renderedLength":101,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-44"},"eb230846-47":{"renderedLength":4109,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-46"},"eb230846-49":{"renderedLength":5040,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-48"},"eb230846-51":{"renderedLength":2564,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-50"},"eb230846-53":{"renderedLength":4866,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-52"},"eb230846-55":{"renderedLength":5442,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-54"},"eb230846-57":{"renderedLength":4133,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-56"},"eb230846-59":{"renderedLength":2944,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-58"},"eb230846-61":{"renderedLength":2995,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-60"},"eb230846-63":{"renderedLength":4704,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-62"},"eb230846-65":{"renderedLength":4510,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-64"},"eb230846-67":{"renderedLength":3240,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-66"},"eb230846-69":{"renderedLength":1315,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-68"},"eb230846-71":{"renderedLength":2999,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-70"},"eb230846-73":{"renderedLength":5888,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-72"},"eb230846-75":{"renderedLength":6238,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-74"},"eb230846-77":{"renderedLength":6689,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-76"},"eb230846-79":{"renderedLength":6149,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-78"},"eb230846-81":{"renderedLength":17,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-80"},"eb230846-83":{"renderedLength":350,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-82"},"eb230846-85":{"renderedLength":1613,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-84"},"eb230846-87":{"renderedLength":6014,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-86"},"eb230846-89":{"renderedLength":11658,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-88"},"eb230846-91":{"renderedLength":101,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-90"},"eb230846-93":{"renderedLength":390,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-92"},"eb230846-94":{"renderedLength":3090,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-0"},"eb230846-96":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-95"},"eb230846-98":{"renderedLength":5799,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-97"},"eb230846-100":{"renderedLength":6675,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-99"},"eb230846-102":{"renderedLength":92,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-101"},"eb230846-104":{"renderedLength":17107,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-103"},"eb230846-106":{"renderedLength":87,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-105"},"eb230846-108":{"renderedLength":17885,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-107"},"eb230846-110":{"renderedLength":9843,"gzipLength":0,"brotliLength":0,"metaUid":"eb230846-109"}},"nodeMetas":{"eb230846-0":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/main.ts","moduleParts":{"starfish-form.mjs":"eb230846-1","main-08a90f8a.mjs":"eb230846-94"},"imported":[{"uid":"eb230846-8"},{"uid":"eb230846-10"},{"uid":"eb230846-14"},{"uid":"eb230846-16"},{"uid":"eb230846-18"},{"uid":"eb230846-20"},{"uid":"eb230846-24"},{"uid":"eb230846-26"},{"uid":"eb230846-30"},{"uid":"eb230846-32"},{"uid":"eb230846-34"},{"uid":"eb230846-36"},{"uid":"eb230846-38"},{"uid":"eb230846-46"},{"uid":"eb230846-42"},{"uid":"eb230846-48"},{"uid":"eb230846-50"},{"uid":"eb230846-52"},{"uid":"eb230846-54"},{"uid":"eb230846-56"},{"uid":"eb230846-58"},{"uid":"eb230846-60"},{"uid":"eb230846-62"},{"uid":"eb230846-64"},{"uid":"eb230846-66"},{"uid":"eb230846-68"},{"uid":"eb230846-70"},{"uid":"eb230846-72"},{"uid":"eb230846-74"},{"uid":"eb230846-76"},{"uid":"eb230846-78"},{"uid":"eb230846-111"},{"uid":"eb230846-80"},{"uid":"eb230846-2"},{"uid":"eb230846-88"},{"uid":"eb230846-92"},{"uid":"eb230846-97","dynamic":true},{"uid":"eb230846-99","dynamic":true},{"uid":"eb230846-103","dynamic":true},{"uid":"eb230846-107","dynamic":true},{"uid":"eb230846-109","dynamic":true}],"importedBy":[],"isEntry":true},"eb230846-2":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/fieldConfig.ts","moduleParts":{"main-08a90f8a.mjs":"eb230846-3"},"imported":[],"importedBy":[{"uid":"eb230846-0"},{"uid":"eb230846-8"},{"uid":"eb230846-10"},{"uid":"eb230846-26"},{"uid":"eb230846-30"},{"uid":"eb230846-32"},{"uid":"eb230846-34"},{"uid":"eb230846-36"},{"uid":"eb230846-38"},{"uid":"eb230846-52"},{"uid":"eb230846-54"},{"uid":"eb230846-58"},{"uid":"eb230846-60"},{"uid":"eb230846-62"},{"uid":"eb230846-64"},{"uid":"eb230846-66"},{"uid":"eb230846-68"},{"uid":"eb230846-70"},{"uid":"eb230846-72"},{"uid":"eb230846-74"},{"uid":"eb230846-76"},{"uid":"eb230846-78"},{"uid":"eb230846-97"},{"uid":"eb230846-99"}]},"eb230846-4":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/fieldProps.ts","moduleParts":{"main-08a90f8a.mjs":"eb230846-5"},"imported":[],"importedBy":[{"uid":"eb230846-8"},{"uid":"eb230846-10"},{"uid":"eb230846-16"},{"uid":"eb230846-18"},{"uid":"eb230846-20"},{"uid":"eb230846-24"},{"uid":"eb230846-26"},{"uid":"eb230846-30"},{"uid":"eb230846-32"},{"uid":"eb230846-34"},{"uid":"eb230846-36"},{"uid":"eb230846-38"},{"uid":"eb230846-52"},{"uid":"eb230846-54"},{"uid":"eb230846-56"},{"uid":"eb230846-58"},{"uid":"eb230846-60"},{"uid":"eb230846-62"},{"uid":"eb230846-64"},{"uid":"eb230846-66"},{"uid":"eb230846-68"},{"uid":"eb230846-70"},{"uid":"eb230846-72"},{"uid":"eb230846-74"},{"uid":"eb230846-76"},{"uid":"eb230846-78"},{"uid":"eb230846-97"},{"uid":"eb230846-99"},{"uid":"eb230846-107"}]},"eb230846-6":{"id":"plugin-vue:export-helper","moduleParts":{"main-08a90f8a.mjs":"eb230846-7"},"imported":[],"importedBy":[{"uid":"eb230846-8"},{"uid":"eb230846-10"},{"uid":"eb230846-14"},{"uid":"eb230846-16"},{"uid":"eb230846-18"},{"uid":"eb230846-20"},{"uid":"eb230846-24"},{"uid":"eb230846-26"},{"uid":"eb230846-30"},{"uid":"eb230846-32"},{"uid":"eb230846-34"},{"uid":"eb230846-36"},{"uid":"eb230846-38"},{"uid":"eb230846-46"},{"uid":"eb230846-42"},{"uid":"eb230846-52"},{"uid":"eb230846-54"},{"uid":"eb230846-56"},{"uid":"eb230846-58"},{"uid":"eb230846-60"},{"uid":"eb230846-62"},{"uid":"eb230846-64"},{"uid":"eb230846-66"},{"uid":"eb230846-68"},{"uid":"eb230846-70"},{"uid":"eb230846-72"},{"uid":"eb230846-74"},{"uid":"eb230846-76"},{"uid":"eb230846-78"},{"uid":"eb230846-92"},{"uid":"eb230846-97"},{"uid":"eb230846-99"},{"uid":"eb230846-103"},{"uid":"eb230846-107"},{"uid":"eb230846-109"}]},"eb230846-8":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfig.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-9"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-114"},{"uid":"eb230846-115"},{"uid":"eb230846-116"},{"uid":"eb230846-117"},{"uid":"eb230846-111"},{"uid":"eb230846-118"},{"uid":"eb230846-2"},{"uid":"eb230846-4"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-10":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfigMult.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-11"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-114"},{"uid":"eb230846-115"},{"uid":"eb230846-116"},{"uid":"eb230846-117"},{"uid":"eb230846-111"},{"uid":"eb230846-118"},{"uid":"eb230846-2"},{"uid":"eb230846-4"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-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-08a90f8a.mjs":"eb230846-13"},"imported":[],"importedBy":[{"uid":"eb230846-14"}]},"eb230846-14":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/Loading.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-15"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-119"},{"uid":"eb230846-111"},{"uid":"eb230846-12"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-16":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/action.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-17"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-120"},{"uid":"eb230846-121"},{"uid":"eb230846-122"},{"uid":"eb230846-123"},{"uid":"eb230846-124"},{"uid":"eb230846-125"},{"uid":"eb230846-126"},{"uid":"eb230846-114"},{"uid":"eb230846-127"},{"uid":"eb230846-128"},{"uid":"eb230846-129"},{"uid":"eb230846-117"},{"uid":"eb230846-111"},{"uid":"eb230846-118"},{"uid":"eb230846-4"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-18":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/listConfig.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-19"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-125"},{"uid":"eb230846-126"},{"uid":"eb230846-114"},{"uid":"eb230846-130"},{"uid":"eb230846-111"},{"uid":"eb230846-4"},{"uid":"eb230846-118"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-20":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/panel.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-21"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-125"},{"uid":"eb230846-126"},{"uid":"eb230846-114"},{"uid":"eb230846-115"},{"uid":"eb230846-127"},{"uid":"eb230846-117"},{"uid":"eb230846-111"},{"uid":"eb230846-4"},{"uid":"eb230846-118"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-22":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/customHooks.ts","moduleParts":{"main-08a90f8a.mjs":"eb230846-23"},"imported":[{"uid":"eb230846-111"}],"importedBy":[{"uid":"eb230846-24"},{"uid":"eb230846-26"},{"uid":"eb230846-30"},{"uid":"eb230846-32"},{"uid":"eb230846-34"},{"uid":"eb230846-36"},{"uid":"eb230846-38"},{"uid":"eb230846-52"},{"uid":"eb230846-54"},{"uid":"eb230846-56"},{"uid":"eb230846-58"},{"uid":"eb230846-60"},{"uid":"eb230846-62"},{"uid":"eb230846-64"},{"uid":"eb230846-66"},{"uid":"eb230846-68"},{"uid":"eb230846-70"},{"uid":"eb230846-72"},{"uid":"eb230846-74"},{"uid":"eb230846-76"},{"uid":"eb230846-78"},{"uid":"eb230846-99"}]},"eb230846-24":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/radiogroup.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-25"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-131"},{"uid":"eb230846-132"},{"uid":"eb230846-117"},{"uid":"eb230846-111"},{"uid":"eb230846-4"},{"uid":"eb230846-22"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-26":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/CheckBox/index.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-27"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-133"},{"uid":"eb230846-116"},{"uid":"eb230846-117"},{"uid":"eb230846-111"},{"uid":"eb230846-2"},{"uid":"eb230846-4"},{"uid":"eb230846-22"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-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-08a90f8a.mjs":"eb230846-29"},"imported":[],"importedBy":[{"uid":"eb230846-30"}]},"eb230846-30":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/ColorSelect/index.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-31"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-134"},{"uid":"eb230846-115"},{"uid":"eb230846-117"},{"uid":"eb230846-111"},{"uid":"eb230846-2"},{"uid":"eb230846-4"},{"uid":"eb230846-22"},{"uid":"eb230846-28"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-32":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Date/index.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-33"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-135"},{"uid":"eb230846-117"},{"uid":"eb230846-111"},{"uid":"eb230846-2"},{"uid":"eb230846-4"},{"uid":"eb230846-22"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-34":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/DateTime/index.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-35"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-135"},{"uid":"eb230846-117"},{"uid":"eb230846-111"},{"uid":"eb230846-2"},{"uid":"eb230846-4"},{"uid":"eb230846-22"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-36":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/InputNumber/index.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-37"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-130"},{"uid":"eb230846-117"},{"uid":"eb230846-111"},{"uid":"eb230846-2"},{"uid":"eb230846-4"},{"uid":"eb230846-22"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-38":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Radio/index.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-39"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-131"},{"uid":"eb230846-136"},{"uid":"eb230846-117"},{"uid":"eb230846-111"},{"uid":"eb230846-2"},{"uid":"eb230846-4"},{"uid":"eb230846-22"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-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-08a90f8a.mjs":"eb230846-41"},"imported":[],"importedBy":[{"uid":"eb230846-42"}]},"eb230846-42":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/MenuItem.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-43"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-117"},{"uid":"eb230846-111"},{"uid":"eb230846-40"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"},{"uid":"eb230846-46"}]},"eb230846-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-08a90f8a.mjs":"eb230846-45"},"imported":[],"importedBy":[{"uid":"eb230846-46"}]},"eb230846-46":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/MenuBar.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-47"},"imported":[{"uid":"eb230846-42"},{"uid":"eb230846-111"},{"uid":"eb230846-44"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"},{"uid":"eb230846-97"}]},"eb230846-48":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/ruleform.json","moduleParts":{"main-08a90f8a.mjs":"eb230846-49"},"imported":[],"importedBy":[{"uid":"eb230846-0"},{"uid":"eb230846-107"}]},"eb230846-50":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/rules.js","moduleParts":{"main-08a90f8a.mjs":"eb230846-51"},"imported":[],"importedBy":[{"uid":"eb230846-0"},{"uid":"eb230846-107"}]},"eb230846-52":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Selected/index.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-53"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-128"},{"uid":"eb230846-129"},{"uid":"eb230846-117"},{"uid":"eb230846-111"},{"uid":"eb230846-2"},{"uid":"eb230846-4"},{"uid":"eb230846-22"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-54":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Selecteds/index.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-55"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-128"},{"uid":"eb230846-129"},{"uid":"eb230846-117"},{"uid":"eb230846-111"},{"uid":"eb230846-2"},{"uid":"eb230846-4"},{"uid":"eb230846-22"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-56":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/ShowRule/index.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-57"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-126"},{"uid":"eb230846-117"},{"uid":"eb230846-111"},{"uid":"eb230846-4"},{"uid":"eb230846-22"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-58":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Slider/index.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-59"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-137"},{"uid":"eb230846-117"},{"uid":"eb230846-111"},{"uid":"eb230846-2"},{"uid":"eb230846-4"},{"uid":"eb230846-22"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-60":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Switch/index.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-61"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-138"},{"uid":"eb230846-117"},{"uid":"eb230846-111"},{"uid":"eb230846-2"},{"uid":"eb230846-4"},{"uid":"eb230846-22"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-62":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Text/index.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-63"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-115"},{"uid":"eb230846-117"},{"uid":"eb230846-111"},{"uid":"eb230846-2"},{"uid":"eb230846-4"},{"uid":"eb230846-22"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-64":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/TextArea/index.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-65"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-115"},{"uid":"eb230846-117"},{"uid":"eb230846-111"},{"uid":"eb230846-2"},{"uid":"eb230846-4"},{"uid":"eb230846-22"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-66":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Time/index.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-67"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-139"},{"uid":"eb230846-117"},{"uid":"eb230846-111"},{"uid":"eb230846-4"},{"uid":"eb230846-2"},{"uid":"eb230846-22"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-68":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Divider.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-69"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-140"},{"uid":"eb230846-111"},{"uid":"eb230846-2"},{"uid":"eb230846-4"},{"uid":"eb230846-22"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-70":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Info.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-71"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-141"},{"uid":"eb230846-117"},{"uid":"eb230846-111"},{"uid":"eb230846-2"},{"uid":"eb230846-4"},{"uid":"eb230846-22"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-72":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Tabs.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-73"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-142"},{"uid":"eb230846-143"},{"uid":"eb230846-144"},{"uid":"eb230846-111"},{"uid":"eb230846-2"},{"uid":"eb230846-4"},{"uid":"eb230846-22"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-74":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/collapse.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-75"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-123"},{"uid":"eb230846-124"},{"uid":"eb230846-144"},{"uid":"eb230846-111"},{"uid":"eb230846-2"},{"uid":"eb230846-4"},{"uid":"eb230846-22"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-76":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/grid.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-77"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-125"},{"uid":"eb230846-144"},{"uid":"eb230846-127"},{"uid":"eb230846-111"},{"uid":"eb230846-2"},{"uid":"eb230846-4"},{"uid":"eb230846-22"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-78":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/table.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-79"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-144"},{"uid":"eb230846-111"},{"uid":"eb230846-2"},{"uid":"eb230846-4"},{"uid":"eb230846-22"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-80":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/styles/index.scss","moduleParts":{"main-08a90f8a.mjs":"eb230846-81"},"imported":[],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-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-08a90f8a.mjs":"eb230846-83"},"imported":[{"uid":"eb230846-160"}],"importedBy":[{"uid":"eb230846-88"}]},"eb230846-84":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/history.ts","moduleParts":{"main-08a90f8a.mjs":"eb230846-85"},"imported":[{"uid":"eb230846-111"},{"uid":"eb230846-86"}],"importedBy":[{"uid":"eb230846-86"}]},"eb230846-86":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/form.ts","moduleParts":{"main-08a90f8a.mjs":"eb230846-87"},"imported":[{"uid":"eb230846-111"},{"uid":"eb230846-84"}],"importedBy":[{"uid":"eb230846-88"},{"uid":"eb230846-84"}]},"eb230846-88":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/_.ts","moduleParts":{"main-08a90f8a.mjs":"eb230846-89"},"imported":[{"uid":"eb230846-145"},{"uid":"eb230846-82"},{"uid":"eb230846-86"}],"importedBy":[{"uid":"eb230846-0"},{"uid":"eb230846-99"},{"uid":"eb230846-107"}]},"eb230846-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-08a90f8a.mjs":"eb230846-91"},"imported":[],"importedBy":[{"uid":"eb230846-92"}]},"eb230846-92":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue","moduleParts":{"main-08a90f8a.mjs":"eb230846-93"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-119"},{"uid":"eb230846-111"},{"uid":"eb230846-90"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-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-54d339ab.mjs":"eb230846-96"},"imported":[],"importedBy":[{"uid":"eb230846-97"}]},"eb230846-97":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/index.vue","moduleParts":{"index-54d339ab.mjs":"eb230846-98"},"imported":[{"uid":"eb230846-46"},{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-117"},{"uid":"eb230846-111"},{"uid":"eb230846-146"},{"uid":"eb230846-147"},{"uid":"eb230846-148"},{"uid":"eb230846-149"},{"uid":"eb230846-150"},{"uid":"eb230846-151"},{"uid":"eb230846-2"},{"uid":"eb230846-4"},{"uid":"eb230846-95"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-99":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","moduleParts":{"index-133a88e8.mjs":"eb230846-100"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-152"},{"uid":"eb230846-153"},{"uid":"eb230846-126"},{"uid":"eb230846-154"},{"uid":"eb230846-117"},{"uid":"eb230846-111"},{"uid":"eb230846-2"},{"uid":"eb230846-4"},{"uid":"eb230846-22"},{"uid":"eb230846-155"},{"uid":"eb230846-88"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-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-5fa977d1.mjs":"eb230846-102"},"imported":[],"importedBy":[{"uid":"eb230846-103"}]},"eb230846-103":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/formAction.vue","moduleParts":{"formAction-5fa977d1.mjs":"eb230846-104"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-156"},{"uid":"eb230846-144"},{"uid":"eb230846-115"},{"uid":"eb230846-157"},{"uid":"eb230846-152"},{"uid":"eb230846-154"},{"uid":"eb230846-158"},{"uid":"eb230846-126"},{"uid":"eb230846-117"},{"uid":"eb230846-111"},{"uid":"eb230846-159"},{"uid":"eb230846-101"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-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-9d339476.mjs":"eb230846-106"},"imported":[],"importedBy":[{"uid":"eb230846-107"}]},"eb230846-107":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/index.vue","moduleParts":{"index-9d339476.mjs":"eb230846-108"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-152"},{"uid":"eb230846-154"},{"uid":"eb230846-153"},{"uid":"eb230846-141"},{"uid":"eb230846-114"},{"uid":"eb230846-128"},{"uid":"eb230846-129"},{"uid":"eb230846-120"},{"uid":"eb230846-121"},{"uid":"eb230846-122"},{"uid":"eb230846-126"},{"uid":"eb230846-117"},{"uid":"eb230846-111"},{"uid":"eb230846-4"},{"uid":"eb230846-88"},{"uid":"eb230846-50"},{"uid":"eb230846-48"},{"uid":"eb230846-118"},{"uid":"eb230846-109"},{"uid":"eb230846-159"},{"uid":"eb230846-105"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"}]},"eb230846-109":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","moduleParts":{"starfish-form-8c225a3b.mjs":"eb230846-110"},"imported":[{"uid":"eb230846-112"},{"uid":"eb230846-113"},{"uid":"eb230846-156"},{"uid":"eb230846-144"},{"uid":"eb230846-111"},{"uid":"eb230846-6"}],"importedBy":[{"uid":"eb230846-0"},{"uid":"eb230846-107"}]},"eb230846-111":{"id":"vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-0"},{"uid":"eb230846-8"},{"uid":"eb230846-10"},{"uid":"eb230846-14"},{"uid":"eb230846-16"},{"uid":"eb230846-18"},{"uid":"eb230846-20"},{"uid":"eb230846-24"},{"uid":"eb230846-26"},{"uid":"eb230846-30"},{"uid":"eb230846-32"},{"uid":"eb230846-34"},{"uid":"eb230846-36"},{"uid":"eb230846-38"},{"uid":"eb230846-46"},{"uid":"eb230846-42"},{"uid":"eb230846-52"},{"uid":"eb230846-54"},{"uid":"eb230846-56"},{"uid":"eb230846-58"},{"uid":"eb230846-60"},{"uid":"eb230846-62"},{"uid":"eb230846-64"},{"uid":"eb230846-66"},{"uid":"eb230846-68"},{"uid":"eb230846-70"},{"uid":"eb230846-72"},{"uid":"eb230846-74"},{"uid":"eb230846-76"},{"uid":"eb230846-78"},{"uid":"eb230846-92"},{"uid":"eb230846-97"},{"uid":"eb230846-99"},{"uid":"eb230846-103"},{"uid":"eb230846-107"},{"uid":"eb230846-109"},{"uid":"eb230846-22"},{"uid":"eb230846-86"},{"uid":"eb230846-84"}],"isExternal":true},"eb230846-112":{"id":"element-plus/es","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-8"},{"uid":"eb230846-10"},{"uid":"eb230846-14"},{"uid":"eb230846-16"},{"uid":"eb230846-18"},{"uid":"eb230846-20"},{"uid":"eb230846-24"},{"uid":"eb230846-26"},{"uid":"eb230846-30"},{"uid":"eb230846-32"},{"uid":"eb230846-34"},{"uid":"eb230846-36"},{"uid":"eb230846-38"},{"uid":"eb230846-42"},{"uid":"eb230846-52"},{"uid":"eb230846-54"},{"uid":"eb230846-56"},{"uid":"eb230846-58"},{"uid":"eb230846-60"},{"uid":"eb230846-62"},{"uid":"eb230846-64"},{"uid":"eb230846-66"},{"uid":"eb230846-68"},{"uid":"eb230846-70"},{"uid":"eb230846-72"},{"uid":"eb230846-74"},{"uid":"eb230846-76"},{"uid":"eb230846-78"},{"uid":"eb230846-92"},{"uid":"eb230846-97"},{"uid":"eb230846-99"},{"uid":"eb230846-103"},{"uid":"eb230846-107"},{"uid":"eb230846-109"}],"isExternal":true},"eb230846-113":{"id":"element-plus/es/components/base/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-8"},{"uid":"eb230846-10"},{"uid":"eb230846-14"},{"uid":"eb230846-16"},{"uid":"eb230846-18"},{"uid":"eb230846-20"},{"uid":"eb230846-24"},{"uid":"eb230846-26"},{"uid":"eb230846-30"},{"uid":"eb230846-32"},{"uid":"eb230846-34"},{"uid":"eb230846-36"},{"uid":"eb230846-38"},{"uid":"eb230846-42"},{"uid":"eb230846-52"},{"uid":"eb230846-54"},{"uid":"eb230846-56"},{"uid":"eb230846-58"},{"uid":"eb230846-60"},{"uid":"eb230846-62"},{"uid":"eb230846-64"},{"uid":"eb230846-66"},{"uid":"eb230846-68"},{"uid":"eb230846-70"},{"uid":"eb230846-72"},{"uid":"eb230846-74"},{"uid":"eb230846-76"},{"uid":"eb230846-78"},{"uid":"eb230846-92"},{"uid":"eb230846-97"},{"uid":"eb230846-99"},{"uid":"eb230846-103"},{"uid":"eb230846-107"},{"uid":"eb230846-109"}],"isExternal":true},"eb230846-114":{"id":"element-plus/es/components/icon/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-8"},{"uid":"eb230846-10"},{"uid":"eb230846-16"},{"uid":"eb230846-18"},{"uid":"eb230846-20"},{"uid":"eb230846-107"}],"isExternal":true},"eb230846-115":{"id":"element-plus/es/components/input/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-8"},{"uid":"eb230846-10"},{"uid":"eb230846-20"},{"uid":"eb230846-30"},{"uid":"eb230846-62"},{"uid":"eb230846-64"},{"uid":"eb230846-103"}],"isExternal":true},"eb230846-116":{"id":"element-plus/es/components/checkbox/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-8"},{"uid":"eb230846-10"},{"uid":"eb230846-26"}],"isExternal":true},"eb230846-117":{"id":"element-plus/es/components/tooltip/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-8"},{"uid":"eb230846-10"},{"uid":"eb230846-16"},{"uid":"eb230846-20"},{"uid":"eb230846-24"},{"uid":"eb230846-26"},{"uid":"eb230846-30"},{"uid":"eb230846-32"},{"uid":"eb230846-34"},{"uid":"eb230846-36"},{"uid":"eb230846-38"},{"uid":"eb230846-42"},{"uid":"eb230846-52"},{"uid":"eb230846-54"},{"uid":"eb230846-56"},{"uid":"eb230846-58"},{"uid":"eb230846-60"},{"uid":"eb230846-62"},{"uid":"eb230846-64"},{"uid":"eb230846-66"},{"uid":"eb230846-70"},{"uid":"eb230846-97"},{"uid":"eb230846-99"},{"uid":"eb230846-103"},{"uid":"eb230846-107"}],"isExternal":true},"eb230846-118":{"id":"@element-plus/icons-vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-8"},{"uid":"eb230846-10"},{"uid":"eb230846-16"},{"uid":"eb230846-18"},{"uid":"eb230846-20"},{"uid":"eb230846-107"}],"isExternal":true},"eb230846-119":{"id":"element-plus/es/components/loading/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-14"},{"uid":"eb230846-92"}],"isExternal":true},"eb230846-120":{"id":"element-plus/es/components/dropdown/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-16"},{"uid":"eb230846-107"}],"isExternal":true},"eb230846-121":{"id":"element-plus/es/components/dropdown-menu/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-16"},{"uid":"eb230846-107"}],"isExternal":true},"eb230846-122":{"id":"element-plus/es/components/dropdown-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-16"},{"uid":"eb230846-107"}],"isExternal":true},"eb230846-123":{"id":"element-plus/es/components/collapse/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-16"},{"uid":"eb230846-74"}],"isExternal":true},"eb230846-124":{"id":"element-plus/es/components/collapse-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-16"},{"uid":"eb230846-74"}],"isExternal":true},"eb230846-125":{"id":"element-plus/es/components/row/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-16"},{"uid":"eb230846-18"},{"uid":"eb230846-20"},{"uid":"eb230846-76"}],"isExternal":true},"eb230846-126":{"id":"element-plus/es/components/button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-16"},{"uid":"eb230846-18"},{"uid":"eb230846-20"},{"uid":"eb230846-56"},{"uid":"eb230846-99"},{"uid":"eb230846-103"},{"uid":"eb230846-107"}],"isExternal":true},"eb230846-127":{"id":"element-plus/es/components/col/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-16"},{"uid":"eb230846-20"},{"uid":"eb230846-76"}],"isExternal":true},"eb230846-128":{"id":"element-plus/es/components/select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-16"},{"uid":"eb230846-52"},{"uid":"eb230846-54"},{"uid":"eb230846-107"}],"isExternal":true},"eb230846-129":{"id":"element-plus/es/components/option/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-16"},{"uid":"eb230846-52"},{"uid":"eb230846-54"},{"uid":"eb230846-107"}],"isExternal":true},"eb230846-130":{"id":"element-plus/es/components/input-number/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-18"},{"uid":"eb230846-36"}],"isExternal":true},"eb230846-131":{"id":"element-plus/es/components/radio-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-24"},{"uid":"eb230846-38"}],"isExternal":true},"eb230846-132":{"id":"element-plus/es/components/radio-button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-24"}],"isExternal":true},"eb230846-133":{"id":"element-plus/es/components/checkbox-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-26"}],"isExternal":true},"eb230846-134":{"id":"element-plus/es/components/color-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-30"}],"isExternal":true},"eb230846-135":{"id":"element-plus/es/components/date-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-32"},{"uid":"eb230846-34"}],"isExternal":true},"eb230846-136":{"id":"element-plus/es/components/radio/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-38"}],"isExternal":true},"eb230846-137":{"id":"element-plus/es/components/slider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-58"}],"isExternal":true},"eb230846-138":{"id":"element-plus/es/components/switch/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-60"}],"isExternal":true},"eb230846-139":{"id":"element-plus/es/components/time-select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-66"}],"isExternal":true},"eb230846-140":{"id":"element-plus/es/components/divider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-68"}],"isExternal":true},"eb230846-141":{"id":"element-plus/es/components/alert/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-70"},{"uid":"eb230846-107"}],"isExternal":true},"eb230846-142":{"id":"element-plus/es/components/tabs/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-72"}],"isExternal":true},"eb230846-143":{"id":"element-plus/es/components/tab-pane/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-72"}],"isExternal":true},"eb230846-144":{"id":"element-plus/es/components/form-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-72"},{"uid":"eb230846-74"},{"uid":"eb230846-76"},{"uid":"eb230846-78"},{"uid":"eb230846-103"},{"uid":"eb230846-109"}],"isExternal":true},"eb230846-145":{"id":"element-plus","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-88"}],"isExternal":true},"eb230846-146":{"id":"@tiptap/vue-3","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-97"}],"isExternal":true},"eb230846-147":{"id":"@tiptap/starter-kit","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-97"}],"isExternal":true},"eb230846-148":{"id":"@tiptap/extension-code","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-97"}],"isExternal":true},"eb230846-149":{"id":"@tiptap/extension-blockquote","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-97"}],"isExternal":true},"eb230846-150":{"id":"@tiptap/extension-horizontal-rule","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-97"}],"isExternal":true},"eb230846-151":{"id":"@tiptap/extension-code-block","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-97"}],"isExternal":true},"eb230846-152":{"id":"element-plus/es/components/container/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-99"},{"uid":"eb230846-103"},{"uid":"eb230846-107"}],"isExternal":true},"eb230846-153":{"id":"element-plus/es/components/footer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-99"},{"uid":"eb230846-107"}],"isExternal":true},"eb230846-154":{"id":"element-plus/es/components/main/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-99"},{"uid":"eb230846-103"},{"uid":"eb230846-107"}],"isExternal":true},"eb230846-155":{"id":"jsoneditor","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-99"}],"isExternal":true},"eb230846-156":{"id":"element-plus/es/components/form/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-103"},{"uid":"eb230846-109"}],"isExternal":true},"eb230846-157":{"id":"element-plus/es/components/aside/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-103"}],"isExternal":true},"eb230846-158":{"id":"element-plus/es/components/scrollbar/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-103"}],"isExternal":true},"eb230846-159":{"id":"vue-codemirror","moduleParts":{},"imported":[],"importedBy":[{"uid":"eb230846-103"},{"uid":"eb230846-107"}],"isExternal":true},"eb230846-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":"eb230846-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":"79bbbb8a-1"},{"name":"main-c6aa3683.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":"79bbbb8a-3","name":"fieldConfig.ts"},{"uid":"79bbbb8a-5","name":"fieldProps.ts"},{"uid":"79bbbb8a-23","name":"customHooks.ts"}]},{"name":"common","children":[{"uid":"79bbbb8a-9","name":"KeyValueConfig.vue"},{"uid":"79bbbb8a-11","name":"KeyValueConfigMult.vue"},{"uid":"79bbbb8a-13","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"79bbbb8a-15","name":"Loading.vue"},{"uid":"79bbbb8a-17","name":"action.vue"},{"uid":"79bbbb8a-19","name":"listConfig.vue"},{"uid":"79bbbb8a-21","name":"panel.vue"},{"uid":"79bbbb8a-25","name":"radiogroup.vue"}]},{"name":"components","children":[{"name":"CheckBox/index.vue","uid":"79bbbb8a-27"},{"name":"ColorSelect","children":[{"uid":"79bbbb8a-29","name":"index.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"79bbbb8a-31","name":"index.vue"}]},{"name":"Date/index.vue","uid":"79bbbb8a-33"},{"name":"DateTime/index.vue","uid":"79bbbb8a-35"},{"name":"InputNumber/index.vue","uid":"79bbbb8a-37"},{"name":"Radio/index.vue","uid":"79bbbb8a-39"},{"name":"RichText","children":[{"uid":"79bbbb8a-41","name":"MenuItem.vue?vue&type=style&index=0&scoped=true&lang.css"},{"uid":"79bbbb8a-43","name":"MenuItem.vue"},{"uid":"79bbbb8a-45","name":"MenuBar.vue?vue&type=style&index=0&scoped=true&lang.css"},{"uid":"79bbbb8a-47","name":"MenuBar.vue"}]},{"name":"Rule","children":[{"uid":"79bbbb8a-49","name":"ruleform.json"},{"uid":"79bbbb8a-51","name":"rules.js"}]},{"name":"Selected/index.vue","uid":"79bbbb8a-53"},{"name":"Selecteds/index.vue","uid":"79bbbb8a-55"},{"name":"ShowRule/index.vue","uid":"79bbbb8a-57"},{"name":"Slider/index.vue","uid":"79bbbb8a-59"},{"name":"Switch/index.vue","uid":"79bbbb8a-61"},{"name":"Text/index.vue","uid":"79bbbb8a-63"},{"name":"TextArea/index.vue","uid":"79bbbb8a-65"},{"name":"Time/index.vue","uid":"79bbbb8a-67"}]},{"name":"layout","children":[{"uid":"79bbbb8a-69","name":"Divider.vue"},{"uid":"79bbbb8a-71","name":"Info.vue"},{"uid":"79bbbb8a-73","name":"Tabs.vue"},{"uid":"79bbbb8a-75","name":"collapse.vue"},{"uid":"79bbbb8a-77","name":"grid.vue"},{"uid":"79bbbb8a-79","name":"table.vue"}]},{"name":"styles/index.scss","uid":"79bbbb8a-81"},{"uid":"79bbbb8a-94","name":"main.ts"}]},{"name":"editor/src","children":[{"name":"controller","children":[{"uid":"79bbbb8a-85","name":"history.ts"},{"uid":"79bbbb8a-87","name":"form.ts"}]},{"name":"utils/_.ts","uid":"79bbbb8a-89"},{"name":"common","children":[{"uid":"79bbbb8a-91","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"79bbbb8a-93","name":"Loading.vue"}]}]}]},{"name":"node_modules/.pnpm/nanoid@4.0.0/node_modules/nanoid/index.browser.js","uid":"79bbbb8a-83"}]},{"uid":"79bbbb8a-7","name":"plugin-vue:export-helper"}]},{"name":"index-e7b2d7c0.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText","children":[{"uid":"79bbbb8a-96","name":"index.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"79bbbb8a-98","name":"index.vue"}]}]},{"name":"index-e8b18d70.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","uid":"79bbbb8a-100"}]},{"name":"formAction-48f1f081.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common","children":[{"uid":"79bbbb8a-102","name":"formAction.vue?vue&type=style&index=0&lang.scss"},{"uid":"79bbbb8a-104","name":"formAction.vue"}]}]},{"name":"index-c2fdc90f.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule","children":[{"uid":"79bbbb8a-106","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"79bbbb8a-108","name":"index.vue"}]}]},{"name":"starfish-form-ac5dbff7.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","uid":"79bbbb8a-110"}]}],"isRoot":true},"nodeParts":{"79bbbb8a-1":{"id":"starfish-form.mjs","gzipLength":0,"brotliLength":0,"renderedLength":1902,"metaUid":"79bbbb8a-0"},"79bbbb8a-3":{"renderedLength":18542,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-2"},"79bbbb8a-5":{"renderedLength":626,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-4"},"79bbbb8a-7":{"renderedLength":159,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-6"},"79bbbb8a-9":{"renderedLength":8660,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-8"},"79bbbb8a-11":{"renderedLength":8485,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-10"},"79bbbb8a-13":{"renderedLength":103,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-12"},"79bbbb8a-15":{"renderedLength":404,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-14"},"79bbbb8a-17":{"renderedLength":8527,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-16"},"79bbbb8a-19":{"renderedLength":3264,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-18"},"79bbbb8a-21":{"renderedLength":5397,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-20"},"79bbbb8a-23":{"renderedLength":561,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-22"},"79bbbb8a-25":{"renderedLength":2228,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-24"},"79bbbb8a-27":{"renderedLength":4844,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-26"},"79bbbb8a-29":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-28"},"79bbbb8a-31":{"renderedLength":3864,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-30"},"79bbbb8a-33":{"renderedLength":5532,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-32"},"79bbbb8a-35":{"renderedLength":4778,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-34"},"79bbbb8a-37":{"renderedLength":4741,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-36"},"79bbbb8a-39":{"renderedLength":4756,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-38"},"79bbbb8a-41":{"renderedLength":102,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-40"},"79bbbb8a-43":{"renderedLength":1925,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-42"},"79bbbb8a-45":{"renderedLength":101,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-44"},"79bbbb8a-47":{"renderedLength":4109,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-46"},"79bbbb8a-49":{"renderedLength":5040,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-48"},"79bbbb8a-51":{"renderedLength":2564,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-50"},"79bbbb8a-53":{"renderedLength":4866,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-52"},"79bbbb8a-55":{"renderedLength":5442,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-54"},"79bbbb8a-57":{"renderedLength":4133,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-56"},"79bbbb8a-59":{"renderedLength":2944,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-58"},"79bbbb8a-61":{"renderedLength":2995,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-60"},"79bbbb8a-63":{"renderedLength":4704,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-62"},"79bbbb8a-65":{"renderedLength":4510,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-64"},"79bbbb8a-67":{"renderedLength":3240,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-66"},"79bbbb8a-69":{"renderedLength":1315,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-68"},"79bbbb8a-71":{"renderedLength":2999,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-70"},"79bbbb8a-73":{"renderedLength":5888,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-72"},"79bbbb8a-75":{"renderedLength":6238,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-74"},"79bbbb8a-77":{"renderedLength":6689,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-76"},"79bbbb8a-79":{"renderedLength":6149,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-78"},"79bbbb8a-81":{"renderedLength":17,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-80"},"79bbbb8a-83":{"renderedLength":350,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-82"},"79bbbb8a-85":{"renderedLength":1613,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-84"},"79bbbb8a-87":{"renderedLength":6014,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-86"},"79bbbb8a-89":{"renderedLength":11658,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-88"},"79bbbb8a-91":{"renderedLength":101,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-90"},"79bbbb8a-93":{"renderedLength":390,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-92"},"79bbbb8a-94":{"renderedLength":3090,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-0"},"79bbbb8a-96":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-95"},"79bbbb8a-98":{"renderedLength":4965,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-97"},"79bbbb8a-100":{"renderedLength":6675,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-99"},"79bbbb8a-102":{"renderedLength":92,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-101"},"79bbbb8a-104":{"renderedLength":17107,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-103"},"79bbbb8a-106":{"renderedLength":87,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-105"},"79bbbb8a-108":{"renderedLength":17885,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-107"},"79bbbb8a-110":{"renderedLength":9843,"gzipLength":0,"brotliLength":0,"metaUid":"79bbbb8a-109"}},"nodeMetas":{"79bbbb8a-0":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/main.ts","moduleParts":{"starfish-form.mjs":"79bbbb8a-1","main-c6aa3683.mjs":"79bbbb8a-94"},"imported":[{"uid":"79bbbb8a-8"},{"uid":"79bbbb8a-10"},{"uid":"79bbbb8a-14"},{"uid":"79bbbb8a-16"},{"uid":"79bbbb8a-18"},{"uid":"79bbbb8a-20"},{"uid":"79bbbb8a-24"},{"uid":"79bbbb8a-26"},{"uid":"79bbbb8a-30"},{"uid":"79bbbb8a-32"},{"uid":"79bbbb8a-34"},{"uid":"79bbbb8a-36"},{"uid":"79bbbb8a-38"},{"uid":"79bbbb8a-46"},{"uid":"79bbbb8a-42"},{"uid":"79bbbb8a-48"},{"uid":"79bbbb8a-50"},{"uid":"79bbbb8a-52"},{"uid":"79bbbb8a-54"},{"uid":"79bbbb8a-56"},{"uid":"79bbbb8a-58"},{"uid":"79bbbb8a-60"},{"uid":"79bbbb8a-62"},{"uid":"79bbbb8a-64"},{"uid":"79bbbb8a-66"},{"uid":"79bbbb8a-68"},{"uid":"79bbbb8a-70"},{"uid":"79bbbb8a-72"},{"uid":"79bbbb8a-74"},{"uid":"79bbbb8a-76"},{"uid":"79bbbb8a-78"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-80"},{"uid":"79bbbb8a-2"},{"uid":"79bbbb8a-88"},{"uid":"79bbbb8a-92"},{"uid":"79bbbb8a-97","dynamic":true},{"uid":"79bbbb8a-99","dynamic":true},{"uid":"79bbbb8a-103","dynamic":true},{"uid":"79bbbb8a-107","dynamic":true},{"uid":"79bbbb8a-109","dynamic":true}],"importedBy":[],"isEntry":true},"79bbbb8a-2":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/fieldConfig.ts","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-3"},"imported":[],"importedBy":[{"uid":"79bbbb8a-0"},{"uid":"79bbbb8a-8"},{"uid":"79bbbb8a-10"},{"uid":"79bbbb8a-26"},{"uid":"79bbbb8a-30"},{"uid":"79bbbb8a-32"},{"uid":"79bbbb8a-34"},{"uid":"79bbbb8a-36"},{"uid":"79bbbb8a-38"},{"uid":"79bbbb8a-52"},{"uid":"79bbbb8a-54"},{"uid":"79bbbb8a-58"},{"uid":"79bbbb8a-60"},{"uid":"79bbbb8a-62"},{"uid":"79bbbb8a-64"},{"uid":"79bbbb8a-66"},{"uid":"79bbbb8a-68"},{"uid":"79bbbb8a-70"},{"uid":"79bbbb8a-72"},{"uid":"79bbbb8a-74"},{"uid":"79bbbb8a-76"},{"uid":"79bbbb8a-78"},{"uid":"79bbbb8a-97"},{"uid":"79bbbb8a-99"}]},"79bbbb8a-4":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/fieldProps.ts","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-5"},"imported":[],"importedBy":[{"uid":"79bbbb8a-8"},{"uid":"79bbbb8a-10"},{"uid":"79bbbb8a-16"},{"uid":"79bbbb8a-18"},{"uid":"79bbbb8a-20"},{"uid":"79bbbb8a-24"},{"uid":"79bbbb8a-26"},{"uid":"79bbbb8a-30"},{"uid":"79bbbb8a-32"},{"uid":"79bbbb8a-34"},{"uid":"79bbbb8a-36"},{"uid":"79bbbb8a-38"},{"uid":"79bbbb8a-52"},{"uid":"79bbbb8a-54"},{"uid":"79bbbb8a-56"},{"uid":"79bbbb8a-58"},{"uid":"79bbbb8a-60"},{"uid":"79bbbb8a-62"},{"uid":"79bbbb8a-64"},{"uid":"79bbbb8a-66"},{"uid":"79bbbb8a-68"},{"uid":"79bbbb8a-70"},{"uid":"79bbbb8a-72"},{"uid":"79bbbb8a-74"},{"uid":"79bbbb8a-76"},{"uid":"79bbbb8a-78"},{"uid":"79bbbb8a-97"},{"uid":"79bbbb8a-99"},{"uid":"79bbbb8a-107"}]},"79bbbb8a-6":{"id":"plugin-vue:export-helper","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-7"},"imported":[],"importedBy":[{"uid":"79bbbb8a-8"},{"uid":"79bbbb8a-10"},{"uid":"79bbbb8a-14"},{"uid":"79bbbb8a-16"},{"uid":"79bbbb8a-18"},{"uid":"79bbbb8a-20"},{"uid":"79bbbb8a-24"},{"uid":"79bbbb8a-26"},{"uid":"79bbbb8a-30"},{"uid":"79bbbb8a-32"},{"uid":"79bbbb8a-34"},{"uid":"79bbbb8a-36"},{"uid":"79bbbb8a-38"},{"uid":"79bbbb8a-46"},{"uid":"79bbbb8a-42"},{"uid":"79bbbb8a-52"},{"uid":"79bbbb8a-54"},{"uid":"79bbbb8a-56"},{"uid":"79bbbb8a-58"},{"uid":"79bbbb8a-60"},{"uid":"79bbbb8a-62"},{"uid":"79bbbb8a-64"},{"uid":"79bbbb8a-66"},{"uid":"79bbbb8a-68"},{"uid":"79bbbb8a-70"},{"uid":"79bbbb8a-72"},{"uid":"79bbbb8a-74"},{"uid":"79bbbb8a-76"},{"uid":"79bbbb8a-78"},{"uid":"79bbbb8a-92"},{"uid":"79bbbb8a-97"},{"uid":"79bbbb8a-99"},{"uid":"79bbbb8a-103"},{"uid":"79bbbb8a-107"},{"uid":"79bbbb8a-109"}]},"79bbbb8a-8":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfig.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-9"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-114"},{"uid":"79bbbb8a-115"},{"uid":"79bbbb8a-116"},{"uid":"79bbbb8a-117"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-118"},{"uid":"79bbbb8a-2"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-10":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfigMult.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-11"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-114"},{"uid":"79bbbb8a-115"},{"uid":"79bbbb8a-116"},{"uid":"79bbbb8a-117"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-118"},{"uid":"79bbbb8a-2"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-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-c6aa3683.mjs":"79bbbb8a-13"},"imported":[],"importedBy":[{"uid":"79bbbb8a-14"}]},"79bbbb8a-14":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/Loading.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-15"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-119"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-12"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-16":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/action.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-17"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-120"},{"uid":"79bbbb8a-121"},{"uid":"79bbbb8a-122"},{"uid":"79bbbb8a-123"},{"uid":"79bbbb8a-124"},{"uid":"79bbbb8a-125"},{"uid":"79bbbb8a-126"},{"uid":"79bbbb8a-114"},{"uid":"79bbbb8a-127"},{"uid":"79bbbb8a-128"},{"uid":"79bbbb8a-129"},{"uid":"79bbbb8a-117"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-118"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-18":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/listConfig.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-19"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-125"},{"uid":"79bbbb8a-126"},{"uid":"79bbbb8a-114"},{"uid":"79bbbb8a-130"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-118"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-20":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/panel.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-21"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-125"},{"uid":"79bbbb8a-126"},{"uid":"79bbbb8a-114"},{"uid":"79bbbb8a-115"},{"uid":"79bbbb8a-127"},{"uid":"79bbbb8a-117"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-118"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-22":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/customHooks.ts","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-23"},"imported":[{"uid":"79bbbb8a-111"}],"importedBy":[{"uid":"79bbbb8a-24"},{"uid":"79bbbb8a-26"},{"uid":"79bbbb8a-30"},{"uid":"79bbbb8a-32"},{"uid":"79bbbb8a-34"},{"uid":"79bbbb8a-36"},{"uid":"79bbbb8a-38"},{"uid":"79bbbb8a-52"},{"uid":"79bbbb8a-54"},{"uid":"79bbbb8a-56"},{"uid":"79bbbb8a-58"},{"uid":"79bbbb8a-60"},{"uid":"79bbbb8a-62"},{"uid":"79bbbb8a-64"},{"uid":"79bbbb8a-66"},{"uid":"79bbbb8a-68"},{"uid":"79bbbb8a-70"},{"uid":"79bbbb8a-72"},{"uid":"79bbbb8a-74"},{"uid":"79bbbb8a-76"},{"uid":"79bbbb8a-78"},{"uid":"79bbbb8a-99"}]},"79bbbb8a-24":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/radiogroup.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-25"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-131"},{"uid":"79bbbb8a-132"},{"uid":"79bbbb8a-117"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-22"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-26":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/CheckBox/index.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-27"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-133"},{"uid":"79bbbb8a-116"},{"uid":"79bbbb8a-117"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-2"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-22"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-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-c6aa3683.mjs":"79bbbb8a-29"},"imported":[],"importedBy":[{"uid":"79bbbb8a-30"}]},"79bbbb8a-30":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/ColorSelect/index.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-31"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-134"},{"uid":"79bbbb8a-115"},{"uid":"79bbbb8a-117"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-2"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-22"},{"uid":"79bbbb8a-28"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-32":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Date/index.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-33"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-135"},{"uid":"79bbbb8a-117"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-2"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-22"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-34":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/DateTime/index.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-35"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-135"},{"uid":"79bbbb8a-117"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-2"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-22"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-36":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/InputNumber/index.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-37"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-130"},{"uid":"79bbbb8a-117"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-2"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-22"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-38":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Radio/index.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-39"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-131"},{"uid":"79bbbb8a-136"},{"uid":"79bbbb8a-117"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-2"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-22"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-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-c6aa3683.mjs":"79bbbb8a-41"},"imported":[],"importedBy":[{"uid":"79bbbb8a-42"}]},"79bbbb8a-42":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/MenuItem.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-43"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-117"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-40"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"},{"uid":"79bbbb8a-46"}]},"79bbbb8a-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-c6aa3683.mjs":"79bbbb8a-45"},"imported":[],"importedBy":[{"uid":"79bbbb8a-46"}]},"79bbbb8a-46":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/MenuBar.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-47"},"imported":[{"uid":"79bbbb8a-42"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-44"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"},{"uid":"79bbbb8a-97"}]},"79bbbb8a-48":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/ruleform.json","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-49"},"imported":[],"importedBy":[{"uid":"79bbbb8a-0"},{"uid":"79bbbb8a-107"}]},"79bbbb8a-50":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/rules.js","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-51"},"imported":[],"importedBy":[{"uid":"79bbbb8a-0"},{"uid":"79bbbb8a-107"}]},"79bbbb8a-52":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Selected/index.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-53"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-128"},{"uid":"79bbbb8a-129"},{"uid":"79bbbb8a-117"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-2"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-22"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-54":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Selecteds/index.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-55"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-128"},{"uid":"79bbbb8a-129"},{"uid":"79bbbb8a-117"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-2"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-22"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-56":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/ShowRule/index.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-57"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-126"},{"uid":"79bbbb8a-117"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-22"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-58":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Slider/index.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-59"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-137"},{"uid":"79bbbb8a-117"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-2"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-22"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-60":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Switch/index.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-61"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-138"},{"uid":"79bbbb8a-117"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-2"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-22"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-62":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Text/index.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-63"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-115"},{"uid":"79bbbb8a-117"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-2"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-22"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-64":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/TextArea/index.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-65"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-115"},{"uid":"79bbbb8a-117"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-2"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-22"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-66":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Time/index.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-67"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-139"},{"uid":"79bbbb8a-117"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-2"},{"uid":"79bbbb8a-22"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-68":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Divider.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-69"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-140"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-2"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-22"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-70":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Info.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-71"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-141"},{"uid":"79bbbb8a-117"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-2"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-22"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-72":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Tabs.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-73"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-142"},{"uid":"79bbbb8a-143"},{"uid":"79bbbb8a-144"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-2"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-22"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-74":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/collapse.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-75"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-123"},{"uid":"79bbbb8a-124"},{"uid":"79bbbb8a-144"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-2"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-22"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-76":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/grid.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-77"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-125"},{"uid":"79bbbb8a-144"},{"uid":"79bbbb8a-127"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-2"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-22"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-78":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/table.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-79"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-144"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-2"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-22"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-80":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/styles/index.scss","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-81"},"imported":[],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-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-c6aa3683.mjs":"79bbbb8a-83"},"imported":[{"uid":"79bbbb8a-160"}],"importedBy":[{"uid":"79bbbb8a-88"}]},"79bbbb8a-84":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/history.ts","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-85"},"imported":[{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-86"}],"importedBy":[{"uid":"79bbbb8a-86"}]},"79bbbb8a-86":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/form.ts","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-87"},"imported":[{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-84"}],"importedBy":[{"uid":"79bbbb8a-88"},{"uid":"79bbbb8a-84"}]},"79bbbb8a-88":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/_.ts","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-89"},"imported":[{"uid":"79bbbb8a-145"},{"uid":"79bbbb8a-82"},{"uid":"79bbbb8a-86"}],"importedBy":[{"uid":"79bbbb8a-0"},{"uid":"79bbbb8a-99"},{"uid":"79bbbb8a-107"}]},"79bbbb8a-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-c6aa3683.mjs":"79bbbb8a-91"},"imported":[],"importedBy":[{"uid":"79bbbb8a-92"}]},"79bbbb8a-92":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue","moduleParts":{"main-c6aa3683.mjs":"79bbbb8a-93"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-119"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-90"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-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.scss","moduleParts":{"index-e7b2d7c0.mjs":"79bbbb8a-96"},"imported":[],"importedBy":[{"uid":"79bbbb8a-97"}]},"79bbbb8a-97":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/index.vue","moduleParts":{"index-e7b2d7c0.mjs":"79bbbb8a-98"},"imported":[{"uid":"79bbbb8a-46"},{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-117"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-146"},{"uid":"79bbbb8a-147"},{"uid":"79bbbb8a-148"},{"uid":"79bbbb8a-149"},{"uid":"79bbbb8a-150"},{"uid":"79bbbb8a-151"},{"uid":"79bbbb8a-2"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-95"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-99":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","moduleParts":{"index-e8b18d70.mjs":"79bbbb8a-100"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-152"},{"uid":"79bbbb8a-153"},{"uid":"79bbbb8a-126"},{"uid":"79bbbb8a-154"},{"uid":"79bbbb8a-117"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-2"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-22"},{"uid":"79bbbb8a-155"},{"uid":"79bbbb8a-88"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-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-48f1f081.mjs":"79bbbb8a-102"},"imported":[],"importedBy":[{"uid":"79bbbb8a-103"}]},"79bbbb8a-103":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/formAction.vue","moduleParts":{"formAction-48f1f081.mjs":"79bbbb8a-104"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-156"},{"uid":"79bbbb8a-144"},{"uid":"79bbbb8a-115"},{"uid":"79bbbb8a-157"},{"uid":"79bbbb8a-152"},{"uid":"79bbbb8a-154"},{"uid":"79bbbb8a-158"},{"uid":"79bbbb8a-126"},{"uid":"79bbbb8a-117"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-159"},{"uid":"79bbbb8a-101"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-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-c2fdc90f.mjs":"79bbbb8a-106"},"imported":[],"importedBy":[{"uid":"79bbbb8a-107"}]},"79bbbb8a-107":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/index.vue","moduleParts":{"index-c2fdc90f.mjs":"79bbbb8a-108"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-152"},{"uid":"79bbbb8a-154"},{"uid":"79bbbb8a-153"},{"uid":"79bbbb8a-141"},{"uid":"79bbbb8a-114"},{"uid":"79bbbb8a-128"},{"uid":"79bbbb8a-129"},{"uid":"79bbbb8a-120"},{"uid":"79bbbb8a-121"},{"uid":"79bbbb8a-122"},{"uid":"79bbbb8a-126"},{"uid":"79bbbb8a-117"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-4"},{"uid":"79bbbb8a-88"},{"uid":"79bbbb8a-50"},{"uid":"79bbbb8a-48"},{"uid":"79bbbb8a-118"},{"uid":"79bbbb8a-109"},{"uid":"79bbbb8a-159"},{"uid":"79bbbb8a-105"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"}]},"79bbbb8a-109":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","moduleParts":{"starfish-form-ac5dbff7.mjs":"79bbbb8a-110"},"imported":[{"uid":"79bbbb8a-112"},{"uid":"79bbbb8a-113"},{"uid":"79bbbb8a-156"},{"uid":"79bbbb8a-144"},{"uid":"79bbbb8a-111"},{"uid":"79bbbb8a-6"}],"importedBy":[{"uid":"79bbbb8a-0"},{"uid":"79bbbb8a-107"}]},"79bbbb8a-111":{"id":"vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-0"},{"uid":"79bbbb8a-8"},{"uid":"79bbbb8a-10"},{"uid":"79bbbb8a-14"},{"uid":"79bbbb8a-16"},{"uid":"79bbbb8a-18"},{"uid":"79bbbb8a-20"},{"uid":"79bbbb8a-24"},{"uid":"79bbbb8a-26"},{"uid":"79bbbb8a-30"},{"uid":"79bbbb8a-32"},{"uid":"79bbbb8a-34"},{"uid":"79bbbb8a-36"},{"uid":"79bbbb8a-38"},{"uid":"79bbbb8a-46"},{"uid":"79bbbb8a-42"},{"uid":"79bbbb8a-52"},{"uid":"79bbbb8a-54"},{"uid":"79bbbb8a-56"},{"uid":"79bbbb8a-58"},{"uid":"79bbbb8a-60"},{"uid":"79bbbb8a-62"},{"uid":"79bbbb8a-64"},{"uid":"79bbbb8a-66"},{"uid":"79bbbb8a-68"},{"uid":"79bbbb8a-70"},{"uid":"79bbbb8a-72"},{"uid":"79bbbb8a-74"},{"uid":"79bbbb8a-76"},{"uid":"79bbbb8a-78"},{"uid":"79bbbb8a-92"},{"uid":"79bbbb8a-97"},{"uid":"79bbbb8a-99"},{"uid":"79bbbb8a-103"},{"uid":"79bbbb8a-107"},{"uid":"79bbbb8a-109"},{"uid":"79bbbb8a-22"},{"uid":"79bbbb8a-86"},{"uid":"79bbbb8a-84"}],"isExternal":true},"79bbbb8a-112":{"id":"element-plus/es","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-8"},{"uid":"79bbbb8a-10"},{"uid":"79bbbb8a-14"},{"uid":"79bbbb8a-16"},{"uid":"79bbbb8a-18"},{"uid":"79bbbb8a-20"},{"uid":"79bbbb8a-24"},{"uid":"79bbbb8a-26"},{"uid":"79bbbb8a-30"},{"uid":"79bbbb8a-32"},{"uid":"79bbbb8a-34"},{"uid":"79bbbb8a-36"},{"uid":"79bbbb8a-38"},{"uid":"79bbbb8a-42"},{"uid":"79bbbb8a-52"},{"uid":"79bbbb8a-54"},{"uid":"79bbbb8a-56"},{"uid":"79bbbb8a-58"},{"uid":"79bbbb8a-60"},{"uid":"79bbbb8a-62"},{"uid":"79bbbb8a-64"},{"uid":"79bbbb8a-66"},{"uid":"79bbbb8a-68"},{"uid":"79bbbb8a-70"},{"uid":"79bbbb8a-72"},{"uid":"79bbbb8a-74"},{"uid":"79bbbb8a-76"},{"uid":"79bbbb8a-78"},{"uid":"79bbbb8a-92"},{"uid":"79bbbb8a-97"},{"uid":"79bbbb8a-99"},{"uid":"79bbbb8a-103"},{"uid":"79bbbb8a-107"},{"uid":"79bbbb8a-109"}],"isExternal":true},"79bbbb8a-113":{"id":"element-plus/es/components/base/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-8"},{"uid":"79bbbb8a-10"},{"uid":"79bbbb8a-14"},{"uid":"79bbbb8a-16"},{"uid":"79bbbb8a-18"},{"uid":"79bbbb8a-20"},{"uid":"79bbbb8a-24"},{"uid":"79bbbb8a-26"},{"uid":"79bbbb8a-30"},{"uid":"79bbbb8a-32"},{"uid":"79bbbb8a-34"},{"uid":"79bbbb8a-36"},{"uid":"79bbbb8a-38"},{"uid":"79bbbb8a-42"},{"uid":"79bbbb8a-52"},{"uid":"79bbbb8a-54"},{"uid":"79bbbb8a-56"},{"uid":"79bbbb8a-58"},{"uid":"79bbbb8a-60"},{"uid":"79bbbb8a-62"},{"uid":"79bbbb8a-64"},{"uid":"79bbbb8a-66"},{"uid":"79bbbb8a-68"},{"uid":"79bbbb8a-70"},{"uid":"79bbbb8a-72"},{"uid":"79bbbb8a-74"},{"uid":"79bbbb8a-76"},{"uid":"79bbbb8a-78"},{"uid":"79bbbb8a-92"},{"uid":"79bbbb8a-97"},{"uid":"79bbbb8a-99"},{"uid":"79bbbb8a-103"},{"uid":"79bbbb8a-107"},{"uid":"79bbbb8a-109"}],"isExternal":true},"79bbbb8a-114":{"id":"element-plus/es/components/icon/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-8"},{"uid":"79bbbb8a-10"},{"uid":"79bbbb8a-16"},{"uid":"79bbbb8a-18"},{"uid":"79bbbb8a-20"},{"uid":"79bbbb8a-107"}],"isExternal":true},"79bbbb8a-115":{"id":"element-plus/es/components/input/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-8"},{"uid":"79bbbb8a-10"},{"uid":"79bbbb8a-20"},{"uid":"79bbbb8a-30"},{"uid":"79bbbb8a-62"},{"uid":"79bbbb8a-64"},{"uid":"79bbbb8a-103"}],"isExternal":true},"79bbbb8a-116":{"id":"element-plus/es/components/checkbox/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-8"},{"uid":"79bbbb8a-10"},{"uid":"79bbbb8a-26"}],"isExternal":true},"79bbbb8a-117":{"id":"element-plus/es/components/tooltip/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-8"},{"uid":"79bbbb8a-10"},{"uid":"79bbbb8a-16"},{"uid":"79bbbb8a-20"},{"uid":"79bbbb8a-24"},{"uid":"79bbbb8a-26"},{"uid":"79bbbb8a-30"},{"uid":"79bbbb8a-32"},{"uid":"79bbbb8a-34"},{"uid":"79bbbb8a-36"},{"uid":"79bbbb8a-38"},{"uid":"79bbbb8a-42"},{"uid":"79bbbb8a-52"},{"uid":"79bbbb8a-54"},{"uid":"79bbbb8a-56"},{"uid":"79bbbb8a-58"},{"uid":"79bbbb8a-60"},{"uid":"79bbbb8a-62"},{"uid":"79bbbb8a-64"},{"uid":"79bbbb8a-66"},{"uid":"79bbbb8a-70"},{"uid":"79bbbb8a-97"},{"uid":"79bbbb8a-99"},{"uid":"79bbbb8a-103"},{"uid":"79bbbb8a-107"}],"isExternal":true},"79bbbb8a-118":{"id":"@element-plus/icons-vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-8"},{"uid":"79bbbb8a-10"},{"uid":"79bbbb8a-16"},{"uid":"79bbbb8a-18"},{"uid":"79bbbb8a-20"},{"uid":"79bbbb8a-107"}],"isExternal":true},"79bbbb8a-119":{"id":"element-plus/es/components/loading/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-14"},{"uid":"79bbbb8a-92"}],"isExternal":true},"79bbbb8a-120":{"id":"element-plus/es/components/dropdown/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-16"},{"uid":"79bbbb8a-107"}],"isExternal":true},"79bbbb8a-121":{"id":"element-plus/es/components/dropdown-menu/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-16"},{"uid":"79bbbb8a-107"}],"isExternal":true},"79bbbb8a-122":{"id":"element-plus/es/components/dropdown-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-16"},{"uid":"79bbbb8a-107"}],"isExternal":true},"79bbbb8a-123":{"id":"element-plus/es/components/collapse/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-16"},{"uid":"79bbbb8a-74"}],"isExternal":true},"79bbbb8a-124":{"id":"element-plus/es/components/collapse-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-16"},{"uid":"79bbbb8a-74"}],"isExternal":true},"79bbbb8a-125":{"id":"element-plus/es/components/row/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-16"},{"uid":"79bbbb8a-18"},{"uid":"79bbbb8a-20"},{"uid":"79bbbb8a-76"}],"isExternal":true},"79bbbb8a-126":{"id":"element-plus/es/components/button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-16"},{"uid":"79bbbb8a-18"},{"uid":"79bbbb8a-20"},{"uid":"79bbbb8a-56"},{"uid":"79bbbb8a-99"},{"uid":"79bbbb8a-103"},{"uid":"79bbbb8a-107"}],"isExternal":true},"79bbbb8a-127":{"id":"element-plus/es/components/col/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-16"},{"uid":"79bbbb8a-20"},{"uid":"79bbbb8a-76"}],"isExternal":true},"79bbbb8a-128":{"id":"element-plus/es/components/select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-16"},{"uid":"79bbbb8a-52"},{"uid":"79bbbb8a-54"},{"uid":"79bbbb8a-107"}],"isExternal":true},"79bbbb8a-129":{"id":"element-plus/es/components/option/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-16"},{"uid":"79bbbb8a-52"},{"uid":"79bbbb8a-54"},{"uid":"79bbbb8a-107"}],"isExternal":true},"79bbbb8a-130":{"id":"element-plus/es/components/input-number/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-18"},{"uid":"79bbbb8a-36"}],"isExternal":true},"79bbbb8a-131":{"id":"element-plus/es/components/radio-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-24"},{"uid":"79bbbb8a-38"}],"isExternal":true},"79bbbb8a-132":{"id":"element-plus/es/components/radio-button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-24"}],"isExternal":true},"79bbbb8a-133":{"id":"element-plus/es/components/checkbox-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-26"}],"isExternal":true},"79bbbb8a-134":{"id":"element-plus/es/components/color-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-30"}],"isExternal":true},"79bbbb8a-135":{"id":"element-plus/es/components/date-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-32"},{"uid":"79bbbb8a-34"}],"isExternal":true},"79bbbb8a-136":{"id":"element-plus/es/components/radio/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-38"}],"isExternal":true},"79bbbb8a-137":{"id":"element-plus/es/components/slider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-58"}],"isExternal":true},"79bbbb8a-138":{"id":"element-plus/es/components/switch/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-60"}],"isExternal":true},"79bbbb8a-139":{"id":"element-plus/es/components/time-select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-66"}],"isExternal":true},"79bbbb8a-140":{"id":"element-plus/es/components/divider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-68"}],"isExternal":true},"79bbbb8a-141":{"id":"element-plus/es/components/alert/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-70"},{"uid":"79bbbb8a-107"}],"isExternal":true},"79bbbb8a-142":{"id":"element-plus/es/components/tabs/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-72"}],"isExternal":true},"79bbbb8a-143":{"id":"element-plus/es/components/tab-pane/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-72"}],"isExternal":true},"79bbbb8a-144":{"id":"element-plus/es/components/form-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-72"},{"uid":"79bbbb8a-74"},{"uid":"79bbbb8a-76"},{"uid":"79bbbb8a-78"},{"uid":"79bbbb8a-103"},{"uid":"79bbbb8a-109"}],"isExternal":true},"79bbbb8a-145":{"id":"element-plus","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-88"}],"isExternal":true},"79bbbb8a-146":{"id":"@tiptap/vue-3","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-97"}],"isExternal":true},"79bbbb8a-147":{"id":"@tiptap/starter-kit","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-97"}],"isExternal":true},"79bbbb8a-148":{"id":"@tiptap/extension-code","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-97"}],"isExternal":true},"79bbbb8a-149":{"id":"@tiptap/extension-blockquote","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-97"}],"isExternal":true},"79bbbb8a-150":{"id":"@tiptap/extension-horizontal-rule","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-97"}],"isExternal":true},"79bbbb8a-151":{"id":"@tiptap/extension-code-block","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-97"}],"isExternal":true},"79bbbb8a-152":{"id":"element-plus/es/components/container/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-99"},{"uid":"79bbbb8a-103"},{"uid":"79bbbb8a-107"}],"isExternal":true},"79bbbb8a-153":{"id":"element-plus/es/components/footer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-99"},{"uid":"79bbbb8a-107"}],"isExternal":true},"79bbbb8a-154":{"id":"element-plus/es/components/main/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-99"},{"uid":"79bbbb8a-103"},{"uid":"79bbbb8a-107"}],"isExternal":true},"79bbbb8a-155":{"id":"jsoneditor","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-99"}],"isExternal":true},"79bbbb8a-156":{"id":"element-plus/es/components/form/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-103"},{"uid":"79bbbb8a-109"}],"isExternal":true},"79bbbb8a-157":{"id":"element-plus/es/components/aside/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-103"}],"isExternal":true},"79bbbb8a-158":{"id":"element-plus/es/components/scrollbar/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-103"}],"isExternal":true},"79bbbb8a-159":{"id":"vue-codemirror","moduleParts":{},"imported":[],"importedBy":[{"uid":"79bbbb8a-103"},{"uid":"79bbbb8a-107"}],"isExternal":true},"79bbbb8a-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":"79bbbb8a-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;