starfish-form-custom 1.0.41 → 1.0.43

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-f19c403f.mjs';
14
+ import { _ as _export_sfc } from './main-08a90f8a.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';
@@ -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-f19c403f.mjs';
9
+ import { _ as _export_sfc, b as _, g as getFormConfig, f as fieldProps, u as useWatch } from './main-08a90f8a.mjs';
10
10
  import JSONEditor from 'jsoneditor';
11
11
  import 'element-plus/es/components/icon/style/css';
12
12
  import 'element-plus/es/components/input/style/css';
@@ -1,9 +1,9 @@
1
- import { _ as _export_sfc, g as getFormConfig, f as fieldProps, a as __unplugin_components_1 } from './main-f19c403f.mjs';
1
+ import { _ as _export_sfc, g as getFormConfig, f as fieldProps, a as __unplugin_components_1 } from './main-08a90f8a.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, 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';
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';
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,72 +52,111 @@ const _sfc_main = defineComponent({
52
52
  ...fieldProps
53
53
  },
54
54
  components: {
55
- EditorContent,
56
55
  MenuBar: __unplugin_components_1
57
56
  },
58
57
  setup(props) {
59
- const data = props.data;
60
- const item = props.item;
61
- const editor = useEditor({
62
- content: props.data[props.item.data.fieldName] || props.item.data.defaultValue || "",
63
- extensions: [
64
- StarterKit.configure({
65
- codeBlock: {
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({
66
83
  HTMLAttributes: {
67
84
  class: "code-block"
68
85
  }
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;"
69
99
  }
70
- }),
71
- Code.configure({
72
- HTMLAttributes: {
73
- class: "inline-code"
74
- }
75
- }),
76
- CodeBlock.configure({
77
- HTMLAttributes: {
78
- class: "code-block"
79
- }
80
- }),
81
- Blockquote.configure({
82
- HTMLAttributes: {
83
- class: "blockquote"
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;
111
+ }
112
+ });
113
+ };
114
+ watch(
115
+ () => props.data[props.item.data.fieldName],
116
+ (newValue) => {
117
+ if (!editorRef.value || editorRef.value.isDestroyed)
118
+ return;
119
+ const currentHtml = editorRef.value.getHTML();
120
+ if (currentHtml !== newValue) {
121
+ 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);
84
131
  }
85
- }),
86
- HorizontalRule
87
- ],
88
- editable: !props.readonly,
89
- editorProps: {
90
- attributes: {
91
- class: "prose focus:outline-none max-w-none",
92
- style: "min-height: 200px; border: 1px solid #DCDFE6; padding: 8px 12px; background-color: #fff;"
93
132
  }
94
133
  },
95
- onUpdate: ({ editor: editor2 }) => {
96
- const html = editor2.getHTML();
97
- data[item.data.fieldName] = html;
98
- },
99
- onBlur: ({ editor: editor2 }) => {
100
- const html = editor2.getHTML();
101
- data[item.data.fieldName] = html;
102
- }
103
- });
134
+ { immediate: true }
135
+ );
104
136
  watch(() => props.readonly, (newVal) => {
105
- if (editor.value) {
106
- editor.value.setEditable(!newVal);
137
+ if (editorRef.value && !editorRef.value.isDestroyed) {
138
+ editorRef.value.setEditable(!newVal);
107
139
  }
108
140
  });
141
+ onMounted(() => {
142
+ nextTick(() => {
143
+ initEditor();
144
+ });
145
+ });
109
146
  onUnmounted(() => {
110
147
  console.log("\u5BCC\u6587\u672C\u9500\u6BC1");
111
- if (editor.value) {
112
- editor.value.destroy();
148
+ if (editorRef.value) {
149
+ editorRef.value.destroy();
150
+ editorRef.value = null;
113
151
  }
114
152
  });
115
153
  return {
116
- editor
154
+ editor: editorRef,
155
+ editorContainer
117
156
  };
118
157
  }
119
158
  });
120
- const _withScopeId = (n) => (pushScopeId("data-v-1708fa1f"), n = n(), popScopeId(), n);
159
+ const _withScopeId = (n) => (pushScopeId("data-v-09f76164"), n = n(), popScopeId(), n);
121
160
  const _hoisted_1 = ["data-control-type", "data-id"];
122
161
  const _hoisted_2 = {
123
162
  key: 0,
@@ -125,10 +164,13 @@ const _hoisted_2 = {
125
164
  };
126
165
  const _hoisted_3 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("span", { class: "tip iconfontui icon-tishi" }, null, -1));
127
166
  const _hoisted_4 = { class: "rich-text-editor" };
167
+ const _hoisted_5 = {
168
+ ref: "editorContainer",
169
+ class: "editor-content"
170
+ };
128
171
  function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
129
172
  const _component_el_tooltip = ElTooltip;
130
173
  const _component_MenuBar = __unplugin_components_1;
131
- const _component_editor_content = resolveComponent("editor-content");
132
174
  return openBlock(), createElementBlock("div", {
133
175
  class: normalizeClass(["starfish-formitem", { formCover: _ctx.drag, "starfish-vertical": _ctx.labelalign != "top", [_ctx.item.data.csslist?.join(" ")]: !!_ctx.item.data.csslist }]),
134
176
  "data-control-type": _ctx.item.ControlType,
@@ -162,14 +204,11 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
162
204
  key: 0,
163
205
  editor: _ctx.editor
164
206
  }, null, 8, ["editor"])) : createCommentVNode("", true),
165
- createVNode(_component_editor_content, {
166
- editor: _ctx.editor,
167
- class: "editor-content"
168
- }, null, 8, ["editor"])
207
+ createElementVNode("div", _hoisted_5, null, 512)
169
208
  ])
170
209
  ], 4)
171
210
  ], 10, _hoisted_1);
172
211
  }
173
- const index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-1708fa1f"]]);
212
+ const index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-09f76164"]]);
174
213
 
175
214
  export { index as default };
@@ -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-f19c403f.mjs';
16
+ import { _ as _export_sfc, b as _, f as fieldProps, r as ruleList, c as ruleJsonData } from './main-08a90f8a.mjs';
17
17
  import { Delete } from '@element-plus/icons-vue';
18
- import Dynamicform from './starfish-form-3bfed451.mjs';
18
+ import Dynamicform from './starfish-form-8c225a3b.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';
@@ -5584,7 +5584,7 @@ Object.keys(files).forEach((fileName) => {
5584
5584
  }
5585
5585
  });
5586
5586
  const RichText = defineAsyncComponent({
5587
- loader: () => import('./index-0ccbb80d.mjs'),
5587
+ loader: () => import('./index-54d339ab.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-b6b27755.mjs'),
5596
+ loader: () => import('./index-133a88e8.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-8c50be35.mjs'),
5606
+ loader: () => import('./formAction-5fa977d1.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-6c7974fe.mjs'),
5613
+ loader: () => import('./index-9d339476.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-3bfed451.mjs'));
5622
+ const Dynamicform = defineAsyncComponent(() => import('./starfish-form-8c225a3b.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-f19c403f.mjs';
6
+ import { _ as _export_sfc } from './main-08a90f8a.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-f19c403f.mjs';
1
+ export { D as Dynamicform, m as default } from './main-08a90f8a.mjs';
2
2
  import 'vue';
3
3
  import 'element-plus/es';
4
4
  import 'element-plus/es/components/base/style/css';
package/dist/style.css CHANGED
@@ -468,18 +468,18 @@
468
468
  min-height: 60px;
469
469
  height: 100%;
470
470
  }
471
- .rich-text-editor[data-v-1708fa1f] {
471
+ .rich-text-editor[data-v-09f76164] {
472
472
  min-height: 200px;
473
473
  }
474
- [data-v-1708fa1f] .editor-content {
474
+ [data-v-09f76164] .editor-content {
475
475
  min-height: 200px;
476
476
  }
477
- [data-v-1708fa1f] .ProseMirror {
477
+ [data-v-09f76164] .ProseMirror {
478
478
  min-height: 180px;
479
479
  outline: none;
480
480
  padding: 12px;
481
481
  }
482
- [data-v-1708fa1f] .ProseMirror p.is-editor-empty:first-child::before {
482
+ [data-v-09f76164] .ProseMirror p.is-editor-empty:first-child::before {
483
483
  color: #adb5bd;
484
484
  content: attr(data-placeholder);
485
485
  float: left;
@@ -488,7 +488,7 @@
488
488
  }
489
489
 
490
490
  /* 行内代码样式 */
491
- [data-v-1708fa1f] .ProseMirror .inline-code {
491
+ [data-v-09f76164] .ProseMirror .inline-code {
492
492
  background-color: #f3f4f6;
493
493
  color: #e53e3e;
494
494
  padding: 2px 6px;
@@ -499,7 +499,7 @@
499
499
  }
500
500
 
501
501
  /* 代码块样式 */
502
- [data-v-1708fa1f] .ProseMirror .code-block {
502
+ [data-v-09f76164] .ProseMirror .code-block {
503
503
  background-color: #1f2937;
504
504
  color: #f9fafb;
505
505
  padding: 16px;
@@ -514,7 +514,7 @@
514
514
 
515
515
 
516
516
  /* 引用块样式 */
517
- [data-v-1708fa1f] .ProseMirror blockquote {
517
+ [data-v-09f76164] .ProseMirror blockquote {
518
518
  border-left: 4px solid #3b82f6;
519
519
  background-color: #f8fafc;
520
520
  padding: 12px 16px;
@@ -525,35 +525,35 @@
525
525
  }
526
526
 
527
527
  /* 水平分割线样式 */
528
- [data-v-1708fa1f] .ProseMirror hr {
528
+ [data-v-09f76164] .ProseMirror hr {
529
529
  border: none;
530
530
  border-top: 2px solid #e5e7eb;
531
531
  margin: 24px 0;
532
532
  }
533
533
 
534
534
  /* 列表样式 */
535
- [data-v-1708fa1f] .ProseMirror ul,[data-v-1708fa1f] .ProseMirror ol {
535
+ [data-v-09f76164] .ProseMirror ul,[data-v-09f76164] .ProseMirror ol {
536
536
  padding-left: 24px;
537
537
  margin: 12px 0;
538
538
  }
539
- [data-v-1708fa1f] .ProseMirror ul{
539
+ [data-v-09f76164] .ProseMirror ul{
540
540
  list-style: disc;
541
541
  }
542
- [data-v-1708fa1f] .ProseMirror ol{
542
+ [data-v-09f76164] .ProseMirror ol{
543
543
  list-style: decimal;
544
544
  }
545
- [data-v-1708fa1f] .ProseMirror li {
545
+ [data-v-09f76164] .ProseMirror li {
546
546
  margin: 4px 0;
547
547
  }
548
548
 
549
549
  /* 标题样式 */
550
- [data-v-1708fa1f] .ProseMirror h1 {
550
+ [data-v-09f76164] .ProseMirror h1 {
551
551
  font-size: 1.875em;
552
552
  font-weight: bold;
553
553
  margin: 24px 0 16px 0;
554
554
  color: #111827;
555
555
  }
556
- [data-v-1708fa1f] .ProseMirror h2 {
556
+ [data-v-09f76164] .ProseMirror h2 {
557
557
  font-size: 1.5em;
558
558
  font-weight: bold;
559
559
  margin: 20px 0 12px 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "starfish-form-custom",
3
- "version": "1.0.41",
3
+ "version": "1.0.43",
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
- <editor-content :editor="editor" class="editor-content" />
18
+ <div ref="editorContainer" class="editor-content"></div>
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 } from "vue";
26
- import { useEditor, EditorContent } from '@tiptap/vue-3'
25
+ import { defineComponent, onMounted, ref, onUnmounted, watch, nextTick } from "vue";
26
+ import { Editor } 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'
@@ -43,23 +43,37 @@ export default defineComponent({
43
43
  ...fieldProps,
44
44
  },
45
45
  components: {
46
- EditorContent,
47
46
  MenuBar
48
47
  },
49
48
  setup(props) {
50
- const data: any = props.data;
51
- const item: any = props.item;
52
- const editor = useEditor({
53
- content: props.data[props.item.data.fieldName] || props.item.data.defaultValue || '',
54
- extensions: [
55
- StarterKit.configure({
56
- codeBlock: {
57
- HTMLAttributes: {
58
- class: 'code-block',
49
+ const editorRef = ref<Editor | null>(null);
50
+ const editorContainer = ref<HTMLElement | null>(null);
51
+
52
+ // 1. 不使用 useWatch(避免深度监听循环)
53
+ // useWatch(props);
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
+ },
59
74
  },
60
- },
61
- }),
62
- Code.configure({
75
+ }),
76
+ Code.configure({
63
77
  HTMLAttributes: {
64
78
  class: 'inline-code',
65
79
  },
@@ -75,41 +89,79 @@ export default defineComponent({
75
89
  },
76
90
  }),
77
91
  HorizontalRule,
78
- ],
79
- editable: !props.readonly,
80
- editorProps: {
81
- attributes: {
82
- class: 'prose focus:outline-none max-w-none',
83
- style: 'min-height: 200px; border: 1px solid #DCDFE6; padding: 8px 12px; background-color: #fff;'
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;
112
+ }
113
+ });
114
+ };
115
+
116
+ // 3. 监听外部数据变化(从表单设置值)
117
+ watch(
118
+ () => props.data[props.item.data.fieldName],
119
+ (newValue) => {
120
+ if (!editorRef.value || editorRef.value.isDestroyed) return;
121
+
122
+ const currentHtml = editorRef.value.getHTML();
123
+ if (currentHtml !== newValue) {
124
+ 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
+ }
84
136
  }
85
137
  },
86
- onUpdate: ({ editor }) => {
87
- const html = editor.getHTML();
88
- data[item.data.fieldName] = html;
89
- },
90
- onBlur: ({ editor }) => {
91
- const html = editor.getHTML();
92
- data[item.data.fieldName] = html;
93
- }
94
- })
95
- // useWatch(props);
96
-
97
- // 监听只读状态变化
138
+ { immediate: true }
139
+ );
140
+
141
+ // 4. 监听只读状态
98
142
  watch(() => props.readonly, (newVal) => {
99
- if (editor.value) {
100
- editor.value.setEditable(!newVal);
143
+ if (editorRef.value && !editorRef.value.isDestroyed) {
144
+ editorRef.value.setEditable(!newVal);
101
145
  }
102
146
  });
103
-
147
+
148
+ onMounted(() => {
149
+ nextTick(() => {
150
+ initEditor();
151
+ });
152
+ });
153
+
104
154
  onUnmounted(() => {
105
155
  console.log("富文本销毁");
106
- if (editor.value) {
107
- editor.value.destroy();
156
+ if (editorRef.value) {
157
+ editorRef.value.destroy();
158
+ editorRef.value = null;
108
159
  }
109
160
  });
110
-
161
+
111
162
  return {
112
- editor
163
+ editor: editorRef,
164
+ editorContainer
113
165
  };
114
166
  },
115
167
  });
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":"93013c7f-1"},{"name":"main-f19c403f.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":"93013c7f-3","name":"fieldConfig.ts"},{"uid":"93013c7f-5","name":"fieldProps.ts"},{"uid":"93013c7f-23","name":"customHooks.ts"}]},{"name":"common","children":[{"uid":"93013c7f-9","name":"KeyValueConfig.vue"},{"uid":"93013c7f-11","name":"KeyValueConfigMult.vue"},{"uid":"93013c7f-13","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"93013c7f-15","name":"Loading.vue"},{"uid":"93013c7f-17","name":"action.vue"},{"uid":"93013c7f-19","name":"listConfig.vue"},{"uid":"93013c7f-21","name":"panel.vue"},{"uid":"93013c7f-25","name":"radiogroup.vue"}]},{"name":"components","children":[{"name":"CheckBox/index.vue","uid":"93013c7f-27"},{"name":"ColorSelect","children":[{"uid":"93013c7f-29","name":"index.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"93013c7f-31","name":"index.vue"}]},{"name":"Date/index.vue","uid":"93013c7f-33"},{"name":"DateTime/index.vue","uid":"93013c7f-35"},{"name":"InputNumber/index.vue","uid":"93013c7f-37"},{"name":"Radio/index.vue","uid":"93013c7f-39"},{"name":"RichText","children":[{"uid":"93013c7f-41","name":"MenuItem.vue?vue&type=style&index=0&scoped=true&lang.css"},{"uid":"93013c7f-43","name":"MenuItem.vue"},{"uid":"93013c7f-45","name":"MenuBar.vue?vue&type=style&index=0&scoped=true&lang.css"},{"uid":"93013c7f-47","name":"MenuBar.vue"}]},{"name":"Rule","children":[{"uid":"93013c7f-49","name":"ruleform.json"},{"uid":"93013c7f-51","name":"rules.js"}]},{"name":"Selected/index.vue","uid":"93013c7f-53"},{"name":"Selecteds/index.vue","uid":"93013c7f-55"},{"name":"ShowRule/index.vue","uid":"93013c7f-57"},{"name":"Slider/index.vue","uid":"93013c7f-59"},{"name":"Switch/index.vue","uid":"93013c7f-61"},{"name":"Text/index.vue","uid":"93013c7f-63"},{"name":"TextArea/index.vue","uid":"93013c7f-65"},{"name":"Time/index.vue","uid":"93013c7f-67"}]},{"name":"layout","children":[{"uid":"93013c7f-69","name":"Divider.vue"},{"uid":"93013c7f-71","name":"Info.vue"},{"uid":"93013c7f-73","name":"Tabs.vue"},{"uid":"93013c7f-75","name":"collapse.vue"},{"uid":"93013c7f-77","name":"grid.vue"},{"uid":"93013c7f-79","name":"table.vue"}]},{"name":"styles/index.scss","uid":"93013c7f-81"},{"uid":"93013c7f-94","name":"main.ts"}]},{"name":"editor/src","children":[{"name":"controller","children":[{"uid":"93013c7f-85","name":"history.ts"},{"uid":"93013c7f-87","name":"form.ts"}]},{"name":"utils/_.ts","uid":"93013c7f-89"},{"name":"common","children":[{"uid":"93013c7f-91","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"93013c7f-93","name":"Loading.vue"}]}]}]},{"name":"node_modules/.pnpm/nanoid@4.0.0/node_modules/nanoid/index.browser.js","uid":"93013c7f-83"}]},{"uid":"93013c7f-7","name":"plugin-vue:export-helper"}]},{"name":"index-0ccbb80d.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText","children":[{"uid":"93013c7f-96","name":"index.vue?vue&type=style&index=0&scoped=true&lang.css"},{"uid":"93013c7f-98","name":"index.vue"}]}]},{"name":"index-b6b27755.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","uid":"93013c7f-100"}]},{"name":"formAction-8c50be35.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common","children":[{"uid":"93013c7f-102","name":"formAction.vue?vue&type=style&index=0&lang.scss"},{"uid":"93013c7f-104","name":"formAction.vue"}]}]},{"name":"index-6c7974fe.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule","children":[{"uid":"93013c7f-106","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"93013c7f-108","name":"index.vue"}]}]},{"name":"starfish-form-3bfed451.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","uid":"93013c7f-110"}]}],"isRoot":true},"nodeParts":{"93013c7f-1":{"id":"starfish-form.mjs","gzipLength":0,"brotliLength":0,"renderedLength":1902,"metaUid":"93013c7f-0"},"93013c7f-3":{"renderedLength":18542,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-2"},"93013c7f-5":{"renderedLength":626,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-4"},"93013c7f-7":{"renderedLength":159,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-6"},"93013c7f-9":{"renderedLength":8660,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-8"},"93013c7f-11":{"renderedLength":8485,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-10"},"93013c7f-13":{"renderedLength":103,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-12"},"93013c7f-15":{"renderedLength":404,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-14"},"93013c7f-17":{"renderedLength":8527,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-16"},"93013c7f-19":{"renderedLength":3264,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-18"},"93013c7f-21":{"renderedLength":5397,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-20"},"93013c7f-23":{"renderedLength":561,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-22"},"93013c7f-25":{"renderedLength":2228,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-24"},"93013c7f-27":{"renderedLength":4844,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-26"},"93013c7f-29":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-28"},"93013c7f-31":{"renderedLength":3864,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-30"},"93013c7f-33":{"renderedLength":5532,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-32"},"93013c7f-35":{"renderedLength":4778,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-34"},"93013c7f-37":{"renderedLength":4741,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-36"},"93013c7f-39":{"renderedLength":4756,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-38"},"93013c7f-41":{"renderedLength":102,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-40"},"93013c7f-43":{"renderedLength":1925,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-42"},"93013c7f-45":{"renderedLength":101,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-44"},"93013c7f-47":{"renderedLength":4109,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-46"},"93013c7f-49":{"renderedLength":5040,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-48"},"93013c7f-51":{"renderedLength":2564,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-50"},"93013c7f-53":{"renderedLength":4866,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-52"},"93013c7f-55":{"renderedLength":5442,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-54"},"93013c7f-57":{"renderedLength":4133,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-56"},"93013c7f-59":{"renderedLength":2944,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-58"},"93013c7f-61":{"renderedLength":2995,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-60"},"93013c7f-63":{"renderedLength":4704,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-62"},"93013c7f-65":{"renderedLength":4510,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-64"},"93013c7f-67":{"renderedLength":3240,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-66"},"93013c7f-69":{"renderedLength":1315,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-68"},"93013c7f-71":{"renderedLength":2999,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-70"},"93013c7f-73":{"renderedLength":5888,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-72"},"93013c7f-75":{"renderedLength":6238,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-74"},"93013c7f-77":{"renderedLength":6689,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-76"},"93013c7f-79":{"renderedLength":6149,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-78"},"93013c7f-81":{"renderedLength":17,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-80"},"93013c7f-83":{"renderedLength":350,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-82"},"93013c7f-85":{"renderedLength":1613,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-84"},"93013c7f-87":{"renderedLength":6014,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-86"},"93013c7f-89":{"renderedLength":11658,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-88"},"93013c7f-91":{"renderedLength":101,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-90"},"93013c7f-93":{"renderedLength":390,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-92"},"93013c7f-94":{"renderedLength":3090,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-0"},"93013c7f-96":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-95"},"93013c7f-98":{"renderedLength":4416,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-97"},"93013c7f-100":{"renderedLength":6675,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-99"},"93013c7f-102":{"renderedLength":92,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-101"},"93013c7f-104":{"renderedLength":17107,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-103"},"93013c7f-106":{"renderedLength":87,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-105"},"93013c7f-108":{"renderedLength":17885,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-107"},"93013c7f-110":{"renderedLength":9843,"gzipLength":0,"brotliLength":0,"metaUid":"93013c7f-109"}},"nodeMetas":{"93013c7f-0":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/main.ts","moduleParts":{"starfish-form.mjs":"93013c7f-1","main-f19c403f.mjs":"93013c7f-94"},"imported":[{"uid":"93013c7f-8"},{"uid":"93013c7f-10"},{"uid":"93013c7f-14"},{"uid":"93013c7f-16"},{"uid":"93013c7f-18"},{"uid":"93013c7f-20"},{"uid":"93013c7f-24"},{"uid":"93013c7f-26"},{"uid":"93013c7f-30"},{"uid":"93013c7f-32"},{"uid":"93013c7f-34"},{"uid":"93013c7f-36"},{"uid":"93013c7f-38"},{"uid":"93013c7f-46"},{"uid":"93013c7f-42"},{"uid":"93013c7f-48"},{"uid":"93013c7f-50"},{"uid":"93013c7f-52"},{"uid":"93013c7f-54"},{"uid":"93013c7f-56"},{"uid":"93013c7f-58"},{"uid":"93013c7f-60"},{"uid":"93013c7f-62"},{"uid":"93013c7f-64"},{"uid":"93013c7f-66"},{"uid":"93013c7f-68"},{"uid":"93013c7f-70"},{"uid":"93013c7f-72"},{"uid":"93013c7f-74"},{"uid":"93013c7f-76"},{"uid":"93013c7f-78"},{"uid":"93013c7f-111"},{"uid":"93013c7f-80"},{"uid":"93013c7f-2"},{"uid":"93013c7f-88"},{"uid":"93013c7f-92"},{"uid":"93013c7f-97","dynamic":true},{"uid":"93013c7f-99","dynamic":true},{"uid":"93013c7f-103","dynamic":true},{"uid":"93013c7f-107","dynamic":true},{"uid":"93013c7f-109","dynamic":true}],"importedBy":[],"isEntry":true},"93013c7f-2":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/fieldConfig.ts","moduleParts":{"main-f19c403f.mjs":"93013c7f-3"},"imported":[],"importedBy":[{"uid":"93013c7f-0"},{"uid":"93013c7f-8"},{"uid":"93013c7f-10"},{"uid":"93013c7f-26"},{"uid":"93013c7f-30"},{"uid":"93013c7f-32"},{"uid":"93013c7f-34"},{"uid":"93013c7f-36"},{"uid":"93013c7f-38"},{"uid":"93013c7f-52"},{"uid":"93013c7f-54"},{"uid":"93013c7f-58"},{"uid":"93013c7f-60"},{"uid":"93013c7f-62"},{"uid":"93013c7f-64"},{"uid":"93013c7f-66"},{"uid":"93013c7f-68"},{"uid":"93013c7f-70"},{"uid":"93013c7f-72"},{"uid":"93013c7f-74"},{"uid":"93013c7f-76"},{"uid":"93013c7f-78"},{"uid":"93013c7f-97"},{"uid":"93013c7f-99"}]},"93013c7f-4":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/fieldProps.ts","moduleParts":{"main-f19c403f.mjs":"93013c7f-5"},"imported":[],"importedBy":[{"uid":"93013c7f-8"},{"uid":"93013c7f-10"},{"uid":"93013c7f-16"},{"uid":"93013c7f-18"},{"uid":"93013c7f-20"},{"uid":"93013c7f-24"},{"uid":"93013c7f-26"},{"uid":"93013c7f-30"},{"uid":"93013c7f-32"},{"uid":"93013c7f-34"},{"uid":"93013c7f-36"},{"uid":"93013c7f-38"},{"uid":"93013c7f-52"},{"uid":"93013c7f-54"},{"uid":"93013c7f-56"},{"uid":"93013c7f-58"},{"uid":"93013c7f-60"},{"uid":"93013c7f-62"},{"uid":"93013c7f-64"},{"uid":"93013c7f-66"},{"uid":"93013c7f-68"},{"uid":"93013c7f-70"},{"uid":"93013c7f-72"},{"uid":"93013c7f-74"},{"uid":"93013c7f-76"},{"uid":"93013c7f-78"},{"uid":"93013c7f-97"},{"uid":"93013c7f-99"},{"uid":"93013c7f-107"}]},"93013c7f-6":{"id":"plugin-vue:export-helper","moduleParts":{"main-f19c403f.mjs":"93013c7f-7"},"imported":[],"importedBy":[{"uid":"93013c7f-8"},{"uid":"93013c7f-10"},{"uid":"93013c7f-14"},{"uid":"93013c7f-16"},{"uid":"93013c7f-18"},{"uid":"93013c7f-20"},{"uid":"93013c7f-24"},{"uid":"93013c7f-26"},{"uid":"93013c7f-30"},{"uid":"93013c7f-32"},{"uid":"93013c7f-34"},{"uid":"93013c7f-36"},{"uid":"93013c7f-38"},{"uid":"93013c7f-46"},{"uid":"93013c7f-42"},{"uid":"93013c7f-52"},{"uid":"93013c7f-54"},{"uid":"93013c7f-56"},{"uid":"93013c7f-58"},{"uid":"93013c7f-60"},{"uid":"93013c7f-62"},{"uid":"93013c7f-64"},{"uid":"93013c7f-66"},{"uid":"93013c7f-68"},{"uid":"93013c7f-70"},{"uid":"93013c7f-72"},{"uid":"93013c7f-74"},{"uid":"93013c7f-76"},{"uid":"93013c7f-78"},{"uid":"93013c7f-92"},{"uid":"93013c7f-97"},{"uid":"93013c7f-99"},{"uid":"93013c7f-103"},{"uid":"93013c7f-107"},{"uid":"93013c7f-109"}]},"93013c7f-8":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfig.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-9"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-114"},{"uid":"93013c7f-115"},{"uid":"93013c7f-116"},{"uid":"93013c7f-117"},{"uid":"93013c7f-111"},{"uid":"93013c7f-118"},{"uid":"93013c7f-2"},{"uid":"93013c7f-4"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-10":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfigMult.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-11"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-114"},{"uid":"93013c7f-115"},{"uid":"93013c7f-116"},{"uid":"93013c7f-117"},{"uid":"93013c7f-111"},{"uid":"93013c7f-118"},{"uid":"93013c7f-2"},{"uid":"93013c7f-4"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-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-f19c403f.mjs":"93013c7f-13"},"imported":[],"importedBy":[{"uid":"93013c7f-14"}]},"93013c7f-14":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/Loading.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-15"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-119"},{"uid":"93013c7f-111"},{"uid":"93013c7f-12"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-16":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/action.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-17"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-120"},{"uid":"93013c7f-121"},{"uid":"93013c7f-122"},{"uid":"93013c7f-123"},{"uid":"93013c7f-124"},{"uid":"93013c7f-125"},{"uid":"93013c7f-126"},{"uid":"93013c7f-114"},{"uid":"93013c7f-127"},{"uid":"93013c7f-128"},{"uid":"93013c7f-129"},{"uid":"93013c7f-117"},{"uid":"93013c7f-111"},{"uid":"93013c7f-118"},{"uid":"93013c7f-4"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-18":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/listConfig.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-19"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-125"},{"uid":"93013c7f-126"},{"uid":"93013c7f-114"},{"uid":"93013c7f-130"},{"uid":"93013c7f-111"},{"uid":"93013c7f-4"},{"uid":"93013c7f-118"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-20":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/panel.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-21"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-125"},{"uid":"93013c7f-126"},{"uid":"93013c7f-114"},{"uid":"93013c7f-115"},{"uid":"93013c7f-127"},{"uid":"93013c7f-117"},{"uid":"93013c7f-111"},{"uid":"93013c7f-4"},{"uid":"93013c7f-118"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-22":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/customHooks.ts","moduleParts":{"main-f19c403f.mjs":"93013c7f-23"},"imported":[{"uid":"93013c7f-111"}],"importedBy":[{"uid":"93013c7f-24"},{"uid":"93013c7f-26"},{"uid":"93013c7f-30"},{"uid":"93013c7f-32"},{"uid":"93013c7f-34"},{"uid":"93013c7f-36"},{"uid":"93013c7f-38"},{"uid":"93013c7f-52"},{"uid":"93013c7f-54"},{"uid":"93013c7f-56"},{"uid":"93013c7f-58"},{"uid":"93013c7f-60"},{"uid":"93013c7f-62"},{"uid":"93013c7f-64"},{"uid":"93013c7f-66"},{"uid":"93013c7f-68"},{"uid":"93013c7f-70"},{"uid":"93013c7f-72"},{"uid":"93013c7f-74"},{"uid":"93013c7f-76"},{"uid":"93013c7f-78"},{"uid":"93013c7f-99"}]},"93013c7f-24":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/radiogroup.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-25"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-131"},{"uid":"93013c7f-132"},{"uid":"93013c7f-117"},{"uid":"93013c7f-111"},{"uid":"93013c7f-4"},{"uid":"93013c7f-22"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-26":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/CheckBox/index.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-27"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-133"},{"uid":"93013c7f-116"},{"uid":"93013c7f-117"},{"uid":"93013c7f-111"},{"uid":"93013c7f-2"},{"uid":"93013c7f-4"},{"uid":"93013c7f-22"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-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-f19c403f.mjs":"93013c7f-29"},"imported":[],"importedBy":[{"uid":"93013c7f-30"}]},"93013c7f-30":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/ColorSelect/index.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-31"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-134"},{"uid":"93013c7f-115"},{"uid":"93013c7f-117"},{"uid":"93013c7f-111"},{"uid":"93013c7f-2"},{"uid":"93013c7f-4"},{"uid":"93013c7f-22"},{"uid":"93013c7f-28"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-32":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Date/index.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-33"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-135"},{"uid":"93013c7f-117"},{"uid":"93013c7f-111"},{"uid":"93013c7f-2"},{"uid":"93013c7f-4"},{"uid":"93013c7f-22"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-34":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/DateTime/index.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-35"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-135"},{"uid":"93013c7f-117"},{"uid":"93013c7f-111"},{"uid":"93013c7f-2"},{"uid":"93013c7f-4"},{"uid":"93013c7f-22"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-36":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/InputNumber/index.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-37"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-130"},{"uid":"93013c7f-117"},{"uid":"93013c7f-111"},{"uid":"93013c7f-2"},{"uid":"93013c7f-4"},{"uid":"93013c7f-22"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-38":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Radio/index.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-39"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-131"},{"uid":"93013c7f-136"},{"uid":"93013c7f-117"},{"uid":"93013c7f-111"},{"uid":"93013c7f-2"},{"uid":"93013c7f-4"},{"uid":"93013c7f-22"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-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-f19c403f.mjs":"93013c7f-41"},"imported":[],"importedBy":[{"uid":"93013c7f-42"}]},"93013c7f-42":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/MenuItem.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-43"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-117"},{"uid":"93013c7f-111"},{"uid":"93013c7f-40"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"},{"uid":"93013c7f-46"}]},"93013c7f-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-f19c403f.mjs":"93013c7f-45"},"imported":[],"importedBy":[{"uid":"93013c7f-46"}]},"93013c7f-46":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/MenuBar.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-47"},"imported":[{"uid":"93013c7f-42"},{"uid":"93013c7f-111"},{"uid":"93013c7f-44"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"},{"uid":"93013c7f-97"}]},"93013c7f-48":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/ruleform.json","moduleParts":{"main-f19c403f.mjs":"93013c7f-49"},"imported":[],"importedBy":[{"uid":"93013c7f-0"},{"uid":"93013c7f-107"}]},"93013c7f-50":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/rules.js","moduleParts":{"main-f19c403f.mjs":"93013c7f-51"},"imported":[],"importedBy":[{"uid":"93013c7f-0"},{"uid":"93013c7f-107"}]},"93013c7f-52":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Selected/index.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-53"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-128"},{"uid":"93013c7f-129"},{"uid":"93013c7f-117"},{"uid":"93013c7f-111"},{"uid":"93013c7f-2"},{"uid":"93013c7f-4"},{"uid":"93013c7f-22"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-54":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Selecteds/index.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-55"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-128"},{"uid":"93013c7f-129"},{"uid":"93013c7f-117"},{"uid":"93013c7f-111"},{"uid":"93013c7f-2"},{"uid":"93013c7f-4"},{"uid":"93013c7f-22"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-56":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/ShowRule/index.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-57"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-126"},{"uid":"93013c7f-117"},{"uid":"93013c7f-111"},{"uid":"93013c7f-4"},{"uid":"93013c7f-22"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-58":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Slider/index.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-59"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-137"},{"uid":"93013c7f-117"},{"uid":"93013c7f-111"},{"uid":"93013c7f-2"},{"uid":"93013c7f-4"},{"uid":"93013c7f-22"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-60":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Switch/index.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-61"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-138"},{"uid":"93013c7f-117"},{"uid":"93013c7f-111"},{"uid":"93013c7f-2"},{"uid":"93013c7f-4"},{"uid":"93013c7f-22"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-62":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Text/index.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-63"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-115"},{"uid":"93013c7f-117"},{"uid":"93013c7f-111"},{"uid":"93013c7f-2"},{"uid":"93013c7f-4"},{"uid":"93013c7f-22"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-64":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/TextArea/index.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-65"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-115"},{"uid":"93013c7f-117"},{"uid":"93013c7f-111"},{"uid":"93013c7f-2"},{"uid":"93013c7f-4"},{"uid":"93013c7f-22"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-66":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Time/index.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-67"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-139"},{"uid":"93013c7f-117"},{"uid":"93013c7f-111"},{"uid":"93013c7f-4"},{"uid":"93013c7f-2"},{"uid":"93013c7f-22"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-68":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Divider.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-69"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-140"},{"uid":"93013c7f-111"},{"uid":"93013c7f-2"},{"uid":"93013c7f-4"},{"uid":"93013c7f-22"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-70":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Info.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-71"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-141"},{"uid":"93013c7f-117"},{"uid":"93013c7f-111"},{"uid":"93013c7f-2"},{"uid":"93013c7f-4"},{"uid":"93013c7f-22"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-72":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Tabs.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-73"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-142"},{"uid":"93013c7f-143"},{"uid":"93013c7f-144"},{"uid":"93013c7f-111"},{"uid":"93013c7f-2"},{"uid":"93013c7f-4"},{"uid":"93013c7f-22"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-74":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/collapse.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-75"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-123"},{"uid":"93013c7f-124"},{"uid":"93013c7f-144"},{"uid":"93013c7f-111"},{"uid":"93013c7f-2"},{"uid":"93013c7f-4"},{"uid":"93013c7f-22"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-76":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/grid.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-77"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-125"},{"uid":"93013c7f-144"},{"uid":"93013c7f-127"},{"uid":"93013c7f-111"},{"uid":"93013c7f-2"},{"uid":"93013c7f-4"},{"uid":"93013c7f-22"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-78":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/table.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-79"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-144"},{"uid":"93013c7f-111"},{"uid":"93013c7f-2"},{"uid":"93013c7f-4"},{"uid":"93013c7f-22"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-80":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/styles/index.scss","moduleParts":{"main-f19c403f.mjs":"93013c7f-81"},"imported":[],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-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-f19c403f.mjs":"93013c7f-83"},"imported":[{"uid":"93013c7f-160"}],"importedBy":[{"uid":"93013c7f-88"}]},"93013c7f-84":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/history.ts","moduleParts":{"main-f19c403f.mjs":"93013c7f-85"},"imported":[{"uid":"93013c7f-111"},{"uid":"93013c7f-86"}],"importedBy":[{"uid":"93013c7f-86"}]},"93013c7f-86":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/form.ts","moduleParts":{"main-f19c403f.mjs":"93013c7f-87"},"imported":[{"uid":"93013c7f-111"},{"uid":"93013c7f-84"}],"importedBy":[{"uid":"93013c7f-88"},{"uid":"93013c7f-84"}]},"93013c7f-88":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/_.ts","moduleParts":{"main-f19c403f.mjs":"93013c7f-89"},"imported":[{"uid":"93013c7f-145"},{"uid":"93013c7f-82"},{"uid":"93013c7f-86"}],"importedBy":[{"uid":"93013c7f-0"},{"uid":"93013c7f-99"},{"uid":"93013c7f-107"}]},"93013c7f-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-f19c403f.mjs":"93013c7f-91"},"imported":[],"importedBy":[{"uid":"93013c7f-92"}]},"93013c7f-92":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue","moduleParts":{"main-f19c403f.mjs":"93013c7f-93"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-119"},{"uid":"93013c7f-111"},{"uid":"93013c7f-90"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-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-0ccbb80d.mjs":"93013c7f-96"},"imported":[],"importedBy":[{"uid":"93013c7f-97"}]},"93013c7f-97":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/index.vue","moduleParts":{"index-0ccbb80d.mjs":"93013c7f-98"},"imported":[{"uid":"93013c7f-46"},{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-117"},{"uid":"93013c7f-111"},{"uid":"93013c7f-146"},{"uid":"93013c7f-147"},{"uid":"93013c7f-148"},{"uid":"93013c7f-149"},{"uid":"93013c7f-150"},{"uid":"93013c7f-151"},{"uid":"93013c7f-2"},{"uid":"93013c7f-4"},{"uid":"93013c7f-95"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-99":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","moduleParts":{"index-b6b27755.mjs":"93013c7f-100"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-152"},{"uid":"93013c7f-153"},{"uid":"93013c7f-126"},{"uid":"93013c7f-154"},{"uid":"93013c7f-117"},{"uid":"93013c7f-111"},{"uid":"93013c7f-2"},{"uid":"93013c7f-4"},{"uid":"93013c7f-22"},{"uid":"93013c7f-155"},{"uid":"93013c7f-88"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-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-8c50be35.mjs":"93013c7f-102"},"imported":[],"importedBy":[{"uid":"93013c7f-103"}]},"93013c7f-103":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/formAction.vue","moduleParts":{"formAction-8c50be35.mjs":"93013c7f-104"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-156"},{"uid":"93013c7f-144"},{"uid":"93013c7f-115"},{"uid":"93013c7f-157"},{"uid":"93013c7f-152"},{"uid":"93013c7f-154"},{"uid":"93013c7f-158"},{"uid":"93013c7f-126"},{"uid":"93013c7f-117"},{"uid":"93013c7f-111"},{"uid":"93013c7f-159"},{"uid":"93013c7f-101"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-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-6c7974fe.mjs":"93013c7f-106"},"imported":[],"importedBy":[{"uid":"93013c7f-107"}]},"93013c7f-107":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/index.vue","moduleParts":{"index-6c7974fe.mjs":"93013c7f-108"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-152"},{"uid":"93013c7f-154"},{"uid":"93013c7f-153"},{"uid":"93013c7f-141"},{"uid":"93013c7f-114"},{"uid":"93013c7f-128"},{"uid":"93013c7f-129"},{"uid":"93013c7f-120"},{"uid":"93013c7f-121"},{"uid":"93013c7f-122"},{"uid":"93013c7f-126"},{"uid":"93013c7f-117"},{"uid":"93013c7f-111"},{"uid":"93013c7f-4"},{"uid":"93013c7f-88"},{"uid":"93013c7f-50"},{"uid":"93013c7f-48"},{"uid":"93013c7f-118"},{"uid":"93013c7f-109"},{"uid":"93013c7f-159"},{"uid":"93013c7f-105"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"}]},"93013c7f-109":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","moduleParts":{"starfish-form-3bfed451.mjs":"93013c7f-110"},"imported":[{"uid":"93013c7f-112"},{"uid":"93013c7f-113"},{"uid":"93013c7f-156"},{"uid":"93013c7f-144"},{"uid":"93013c7f-111"},{"uid":"93013c7f-6"}],"importedBy":[{"uid":"93013c7f-0"},{"uid":"93013c7f-107"}]},"93013c7f-111":{"id":"vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-0"},{"uid":"93013c7f-8"},{"uid":"93013c7f-10"},{"uid":"93013c7f-14"},{"uid":"93013c7f-16"},{"uid":"93013c7f-18"},{"uid":"93013c7f-20"},{"uid":"93013c7f-24"},{"uid":"93013c7f-26"},{"uid":"93013c7f-30"},{"uid":"93013c7f-32"},{"uid":"93013c7f-34"},{"uid":"93013c7f-36"},{"uid":"93013c7f-38"},{"uid":"93013c7f-46"},{"uid":"93013c7f-42"},{"uid":"93013c7f-52"},{"uid":"93013c7f-54"},{"uid":"93013c7f-56"},{"uid":"93013c7f-58"},{"uid":"93013c7f-60"},{"uid":"93013c7f-62"},{"uid":"93013c7f-64"},{"uid":"93013c7f-66"},{"uid":"93013c7f-68"},{"uid":"93013c7f-70"},{"uid":"93013c7f-72"},{"uid":"93013c7f-74"},{"uid":"93013c7f-76"},{"uid":"93013c7f-78"},{"uid":"93013c7f-92"},{"uid":"93013c7f-97"},{"uid":"93013c7f-99"},{"uid":"93013c7f-103"},{"uid":"93013c7f-107"},{"uid":"93013c7f-109"},{"uid":"93013c7f-22"},{"uid":"93013c7f-86"},{"uid":"93013c7f-84"}],"isExternal":true},"93013c7f-112":{"id":"element-plus/es","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-8"},{"uid":"93013c7f-10"},{"uid":"93013c7f-14"},{"uid":"93013c7f-16"},{"uid":"93013c7f-18"},{"uid":"93013c7f-20"},{"uid":"93013c7f-24"},{"uid":"93013c7f-26"},{"uid":"93013c7f-30"},{"uid":"93013c7f-32"},{"uid":"93013c7f-34"},{"uid":"93013c7f-36"},{"uid":"93013c7f-38"},{"uid":"93013c7f-42"},{"uid":"93013c7f-52"},{"uid":"93013c7f-54"},{"uid":"93013c7f-56"},{"uid":"93013c7f-58"},{"uid":"93013c7f-60"},{"uid":"93013c7f-62"},{"uid":"93013c7f-64"},{"uid":"93013c7f-66"},{"uid":"93013c7f-68"},{"uid":"93013c7f-70"},{"uid":"93013c7f-72"},{"uid":"93013c7f-74"},{"uid":"93013c7f-76"},{"uid":"93013c7f-78"},{"uid":"93013c7f-92"},{"uid":"93013c7f-97"},{"uid":"93013c7f-99"},{"uid":"93013c7f-103"},{"uid":"93013c7f-107"},{"uid":"93013c7f-109"}],"isExternal":true},"93013c7f-113":{"id":"element-plus/es/components/base/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-8"},{"uid":"93013c7f-10"},{"uid":"93013c7f-14"},{"uid":"93013c7f-16"},{"uid":"93013c7f-18"},{"uid":"93013c7f-20"},{"uid":"93013c7f-24"},{"uid":"93013c7f-26"},{"uid":"93013c7f-30"},{"uid":"93013c7f-32"},{"uid":"93013c7f-34"},{"uid":"93013c7f-36"},{"uid":"93013c7f-38"},{"uid":"93013c7f-42"},{"uid":"93013c7f-52"},{"uid":"93013c7f-54"},{"uid":"93013c7f-56"},{"uid":"93013c7f-58"},{"uid":"93013c7f-60"},{"uid":"93013c7f-62"},{"uid":"93013c7f-64"},{"uid":"93013c7f-66"},{"uid":"93013c7f-68"},{"uid":"93013c7f-70"},{"uid":"93013c7f-72"},{"uid":"93013c7f-74"},{"uid":"93013c7f-76"},{"uid":"93013c7f-78"},{"uid":"93013c7f-92"},{"uid":"93013c7f-97"},{"uid":"93013c7f-99"},{"uid":"93013c7f-103"},{"uid":"93013c7f-107"},{"uid":"93013c7f-109"}],"isExternal":true},"93013c7f-114":{"id":"element-plus/es/components/icon/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-8"},{"uid":"93013c7f-10"},{"uid":"93013c7f-16"},{"uid":"93013c7f-18"},{"uid":"93013c7f-20"},{"uid":"93013c7f-107"}],"isExternal":true},"93013c7f-115":{"id":"element-plus/es/components/input/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-8"},{"uid":"93013c7f-10"},{"uid":"93013c7f-20"},{"uid":"93013c7f-30"},{"uid":"93013c7f-62"},{"uid":"93013c7f-64"},{"uid":"93013c7f-103"}],"isExternal":true},"93013c7f-116":{"id":"element-plus/es/components/checkbox/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-8"},{"uid":"93013c7f-10"},{"uid":"93013c7f-26"}],"isExternal":true},"93013c7f-117":{"id":"element-plus/es/components/tooltip/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-8"},{"uid":"93013c7f-10"},{"uid":"93013c7f-16"},{"uid":"93013c7f-20"},{"uid":"93013c7f-24"},{"uid":"93013c7f-26"},{"uid":"93013c7f-30"},{"uid":"93013c7f-32"},{"uid":"93013c7f-34"},{"uid":"93013c7f-36"},{"uid":"93013c7f-38"},{"uid":"93013c7f-42"},{"uid":"93013c7f-52"},{"uid":"93013c7f-54"},{"uid":"93013c7f-56"},{"uid":"93013c7f-58"},{"uid":"93013c7f-60"},{"uid":"93013c7f-62"},{"uid":"93013c7f-64"},{"uid":"93013c7f-66"},{"uid":"93013c7f-70"},{"uid":"93013c7f-97"},{"uid":"93013c7f-99"},{"uid":"93013c7f-103"},{"uid":"93013c7f-107"}],"isExternal":true},"93013c7f-118":{"id":"@element-plus/icons-vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-8"},{"uid":"93013c7f-10"},{"uid":"93013c7f-16"},{"uid":"93013c7f-18"},{"uid":"93013c7f-20"},{"uid":"93013c7f-107"}],"isExternal":true},"93013c7f-119":{"id":"element-plus/es/components/loading/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-14"},{"uid":"93013c7f-92"}],"isExternal":true},"93013c7f-120":{"id":"element-plus/es/components/dropdown/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-16"},{"uid":"93013c7f-107"}],"isExternal":true},"93013c7f-121":{"id":"element-plus/es/components/dropdown-menu/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-16"},{"uid":"93013c7f-107"}],"isExternal":true},"93013c7f-122":{"id":"element-plus/es/components/dropdown-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-16"},{"uid":"93013c7f-107"}],"isExternal":true},"93013c7f-123":{"id":"element-plus/es/components/collapse/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-16"},{"uid":"93013c7f-74"}],"isExternal":true},"93013c7f-124":{"id":"element-plus/es/components/collapse-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-16"},{"uid":"93013c7f-74"}],"isExternal":true},"93013c7f-125":{"id":"element-plus/es/components/row/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-16"},{"uid":"93013c7f-18"},{"uid":"93013c7f-20"},{"uid":"93013c7f-76"}],"isExternal":true},"93013c7f-126":{"id":"element-plus/es/components/button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-16"},{"uid":"93013c7f-18"},{"uid":"93013c7f-20"},{"uid":"93013c7f-56"},{"uid":"93013c7f-99"},{"uid":"93013c7f-103"},{"uid":"93013c7f-107"}],"isExternal":true},"93013c7f-127":{"id":"element-plus/es/components/col/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-16"},{"uid":"93013c7f-20"},{"uid":"93013c7f-76"}],"isExternal":true},"93013c7f-128":{"id":"element-plus/es/components/select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-16"},{"uid":"93013c7f-52"},{"uid":"93013c7f-54"},{"uid":"93013c7f-107"}],"isExternal":true},"93013c7f-129":{"id":"element-plus/es/components/option/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-16"},{"uid":"93013c7f-52"},{"uid":"93013c7f-54"},{"uid":"93013c7f-107"}],"isExternal":true},"93013c7f-130":{"id":"element-plus/es/components/input-number/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-18"},{"uid":"93013c7f-36"}],"isExternal":true},"93013c7f-131":{"id":"element-plus/es/components/radio-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-24"},{"uid":"93013c7f-38"}],"isExternal":true},"93013c7f-132":{"id":"element-plus/es/components/radio-button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-24"}],"isExternal":true},"93013c7f-133":{"id":"element-plus/es/components/checkbox-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-26"}],"isExternal":true},"93013c7f-134":{"id":"element-plus/es/components/color-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-30"}],"isExternal":true},"93013c7f-135":{"id":"element-plus/es/components/date-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-32"},{"uid":"93013c7f-34"}],"isExternal":true},"93013c7f-136":{"id":"element-plus/es/components/radio/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-38"}],"isExternal":true},"93013c7f-137":{"id":"element-plus/es/components/slider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-58"}],"isExternal":true},"93013c7f-138":{"id":"element-plus/es/components/switch/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-60"}],"isExternal":true},"93013c7f-139":{"id":"element-plus/es/components/time-select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-66"}],"isExternal":true},"93013c7f-140":{"id":"element-plus/es/components/divider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-68"}],"isExternal":true},"93013c7f-141":{"id":"element-plus/es/components/alert/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-70"},{"uid":"93013c7f-107"}],"isExternal":true},"93013c7f-142":{"id":"element-plus/es/components/tabs/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-72"}],"isExternal":true},"93013c7f-143":{"id":"element-plus/es/components/tab-pane/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-72"}],"isExternal":true},"93013c7f-144":{"id":"element-plus/es/components/form-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-72"},{"uid":"93013c7f-74"},{"uid":"93013c7f-76"},{"uid":"93013c7f-78"},{"uid":"93013c7f-103"},{"uid":"93013c7f-109"}],"isExternal":true},"93013c7f-145":{"id":"element-plus","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-88"}],"isExternal":true},"93013c7f-146":{"id":"@tiptap/vue-3","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-97"}],"isExternal":true},"93013c7f-147":{"id":"@tiptap/starter-kit","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-97"}],"isExternal":true},"93013c7f-148":{"id":"@tiptap/extension-code","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-97"}],"isExternal":true},"93013c7f-149":{"id":"@tiptap/extension-blockquote","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-97"}],"isExternal":true},"93013c7f-150":{"id":"@tiptap/extension-horizontal-rule","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-97"}],"isExternal":true},"93013c7f-151":{"id":"@tiptap/extension-code-block","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-97"}],"isExternal":true},"93013c7f-152":{"id":"element-plus/es/components/container/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-99"},{"uid":"93013c7f-103"},{"uid":"93013c7f-107"}],"isExternal":true},"93013c7f-153":{"id":"element-plus/es/components/footer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-99"},{"uid":"93013c7f-107"}],"isExternal":true},"93013c7f-154":{"id":"element-plus/es/components/main/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-99"},{"uid":"93013c7f-103"},{"uid":"93013c7f-107"}],"isExternal":true},"93013c7f-155":{"id":"jsoneditor","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-99"}],"isExternal":true},"93013c7f-156":{"id":"element-plus/es/components/form/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-103"},{"uid":"93013c7f-109"}],"isExternal":true},"93013c7f-157":{"id":"element-plus/es/components/aside/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-103"}],"isExternal":true},"93013c7f-158":{"id":"element-plus/es/components/scrollbar/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-103"}],"isExternal":true},"93013c7f-159":{"id":"vue-codemirror","moduleParts":{},"imported":[],"importedBy":[{"uid":"93013c7f-103"},{"uid":"93013c7f-107"}],"isExternal":true},"93013c7f-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":"93013c7f-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":"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}};
4826
4826
 
4827
4827
  const run = () => {
4828
4828
  const width = window.innerWidth;