starfish-form-custom 1.0.24 → 1.0.26

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-75e3023c.mjs';
14
+ import { _ as _export_sfc } from './main-c35b558b.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';
@@ -3,7 +3,7 @@ import 'element-plus/es/components/base/style/css';
3
3
  import 'element-plus/es/components/tooltip/style/css';
4
4
  import { defineComponent, ref, onMounted, onUnmounted, openBlock, createElementBlock, normalizeClass, createElementVNode, normalizeStyle, toDisplayString, createCommentVNode, createBlock, withCtx } from 'vue';
5
5
  import E from 'wangeditor';
6
- import { _ as _export_sfc, g as getFormConfig, f as fieldProps, u as useWatch } from './main-75e3023c.mjs';
6
+ import { _ as _export_sfc, g as getFormConfig, f as fieldProps, u as useWatch } from './main-c35b558b.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';
@@ -6,7 +6,7 @@ import 'element-plus/es/components/button/style/css';
6
6
  import 'element-plus/es/components/main/style/css';
7
7
  import 'element-plus/es/components/tooltip/style/css';
8
8
  import { defineComponent, ref, onMounted, watch, nextTick, resolveComponent, openBlock, createElementBlock, normalizeClass, createElementVNode, normalizeStyle, toDisplayString, createCommentVNode, createBlock, withCtx, createVNode, createTextVNode } from 'vue';
9
- import { _ as _export_sfc, a as _, g as getFormConfig, f as fieldProps, u as useWatch } from './main-75e3023c.mjs';
9
+ import { _ as _export_sfc, a as _, g as getFormConfig, f as fieldProps, u as useWatch } from './main-c35b558b.mjs';
10
10
  import JSONEditor from 'jsoneditor';
11
11
  import 'element-plus/es/components/icon/style/css';
12
12
  import 'element-plus/es/components/input/style/css';
@@ -13,9 +13,9 @@ import 'element-plus/es/components/dropdown-item/style/css';
13
13
  import 'element-plus/es/components/button/style/css';
14
14
  import 'element-plus/es/components/tooltip/style/css';
15
15
  import { defineComponent, getCurrentInstance, inject, computed, ref, resolveComponent, openBlock, createElementBlock, normalizeClass, createElementVNode, normalizeStyle, toDisplayString, createCommentVNode, createBlock, withCtx, createVNode, Fragment, renderList, createTextVNode } from 'vue';
16
- import { _ as _export_sfc, a as _, f as fieldProps, r as ruleList, b as ruleJsonData } from './main-75e3023c.mjs';
16
+ import { _ as _export_sfc, a as _, f as fieldProps, r as ruleList, b as ruleJsonData } from './main-c35b558b.mjs';
17
17
  import { Delete } from '@element-plus/icons-vue';
18
- import Dynamicform from './starfish-form-932a7c00.mjs';
18
+ import Dynamicform from './starfish-form-dd44ab87.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';
@@ -4383,7 +4383,13 @@ const _sfc_main$2 = defineComponent({
4383
4383
  const gridList = computed(() => props.item.data.columns);
4384
4384
  const { proxy } = getCurrentInstance();
4385
4385
  const { formStore, store } = inject("control") || {};
4386
- const chooseClick = (e, index) => {
4386
+ const chooseClick = async (e, index) => {
4387
+ gridList.value.forEach((colItem) => {
4388
+ colItem.list = colItem.list.map((item) => {
4389
+ return proxy.$Flex.jsonToForm(item);
4390
+ });
4391
+ });
4392
+ await nextTick();
4387
4393
  formStore.setFormCurrentId(gridList.value[index].list[e.oldIndex]?.id);
4388
4394
  formStore.setFormCurrentIndex(e.oldIndex);
4389
4395
  store.set("curList", gridList.value[index].list);
@@ -4549,9 +4555,12 @@ const _sfc_main$1 = defineComponent({
4549
4555
  return {
4550
4556
  currentId,
4551
4557
  chooseClick(e, list) {
4552
- formStore.setFormCurrentId(list[e.oldIndex].id);
4553
- formStore.setFormCurrentIndex(e.oldIndex);
4554
- store.set("curList", list);
4558
+ list[e.oldIndex] = proxy.$Flex.jsonToForm(list[e.oldIndex]);
4559
+ nextTick(() => {
4560
+ formStore.setFormCurrentId(list[e.oldIndex].id);
4561
+ formStore.setFormCurrentIndex(e.oldIndex);
4562
+ store.set("curList", list);
4563
+ });
4555
4564
  },
4556
4565
  changePos(e, list) {
4557
4566
  formStore.setFormCurrentId(list[e.newIndex]?.id);
@@ -4559,10 +4568,14 @@ const _sfc_main$1 = defineComponent({
4559
4568
  store.set("curList", list);
4560
4569
  },
4561
4570
  addControl(e, list, trIndex, tdIndex) {
4562
- props.item.data.trs[trIndex].tds[tdIndex].list = list.map((item) => {
4563
- return proxy.$Flex.jsonToForm(item);
4564
- });
4565
- formStore.setFormCurrentId(props.item.data.trs[trIndex].tds[tdIndex].list[e.newIndex].id);
4571
+ props.item.data.trs[trIndex].tds[tdIndex].list = list.map(
4572
+ (item) => {
4573
+ return proxy.$Flex.jsonToForm(item);
4574
+ }
4575
+ );
4576
+ formStore.setFormCurrentId(
4577
+ props.item.data.trs[trIndex].tds[tdIndex].list[e.newIndex].id
4578
+ );
4566
4579
  formStore.setFormCurrentIndex(e.newIndex);
4567
4580
  store.set("curList", props.item.data.trs[trIndex].tds[tdIndex].list);
4568
4581
  }
@@ -4591,7 +4604,7 @@ function _sfc_render$1(_ctx, _cache, $props, $setup, $data, $options) {
4591
4604
  "onUpdate:modelValue": ($event) => tdItem.list = $event,
4592
4605
  onAdd: ($event) => _ctx.addControl($event, tdItem.list, index, tdIndex),
4593
4606
  group: "starfish-form",
4594
- onChoose: ($event) => _ctx.chooseClick($event, tdItem.list),
4607
+ onChoose: ($event) => _ctx.chooseClick($event, tdItem.list, index, tdIndex),
4595
4608
  "item-key": "id",
4596
4609
  onUpdate: ($event) => _ctx.changePos($event, tdItem.list)
4597
4610
  }, {
@@ -5304,7 +5317,7 @@ Object.keys(files).forEach((fileName) => {
5304
5317
  }
5305
5318
  });
5306
5319
  const RichText = defineAsyncComponent({
5307
- loader: () => import('./index-54c1eb62.mjs'),
5320
+ loader: () => import('./index-32206a30.mjs'),
5308
5321
  loadingComponent: Loading
5309
5322
  });
5310
5323
  RichText.ControlType = "RichText";
@@ -5313,7 +5326,7 @@ RichText.icon = "icon-textEdit";
5313
5326
  RichText.formConfig = getFormConfig("RichText");
5314
5327
  utilFuns[RichText.ControlType] = RichText;
5315
5328
  const jsonEditor = defineAsyncComponent({
5316
- loader: () => import('./index-0deb9b57.mjs'),
5329
+ loader: () => import('./index-99892fc1.mjs'),
5317
5330
  loadingComponent: Loading
5318
5331
  });
5319
5332
  jsonEditor.ControlType = "JsonEditor";
@@ -5323,14 +5336,14 @@ jsonEditor.formConfig = getFormConfig("JsonEditor", [{ fieldName: "default", com
5323
5336
  jsonEditor.rule = _.getJsonValidate();
5324
5337
  utilFuns[jsonEditor.ControlType] = jsonEditor;
5325
5338
  const formAction = defineAsyncComponent({
5326
- loader: () => import('./formAction-601a2d39.mjs'),
5339
+ loader: () => import('./formAction-cad81869.mjs'),
5327
5340
  loadingComponent: Loading
5328
5341
  });
5329
5342
  formAction.ControlType = "FormAction";
5330
5343
  formAction.isHide = true;
5331
5344
  utilFuns[formAction.ControlType] = formAction;
5332
5345
  const Rule = defineAsyncComponent({
5333
- loader: () => import('./index-53cacdf0.mjs'),
5346
+ loader: () => import('./index-c1995810.mjs'),
5334
5347
  loadingComponent: Loading
5335
5348
  });
5336
5349
  Rule.ControlType = "Rule";
@@ -5339,7 +5352,7 @@ utilFuns[Rule.ControlType] = Rule;
5339
5352
  const install = (app) => {
5340
5353
  app.config.globalProperties.$formcomponents = utilFuns;
5341
5354
  };
5342
- const Dynamicform = defineAsyncComponent(() => import('./starfish-form-932a7c00.mjs'));
5355
+ const Dynamicform = defineAsyncComponent(() => import('./starfish-form-dd44ab87.mjs'));
5343
5356
  const main = {
5344
5357
  install
5345
5358
  };
@@ -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-75e3023c.mjs';
6
+ import { _ as _export_sfc } from './main-c35b558b.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-75e3023c.mjs';
1
+ export { D as Dynamicform, m as default } from './main-c35b558b.mjs';
2
2
  import 'vue';
3
3
  import 'element-plus/es';
4
4
  import 'element-plus/es/components/base/style/css';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "starfish-form-custom",
3
- "version": "1.0.24",
3
+ "version": "1.0.26",
4
4
  "main": "dist/starfish-form.mjs",
5
5
  "style": "dist/style.css",
6
6
  "module": "dist/starfish-form.mjs",
@@ -53,7 +53,13 @@
53
53
  const gridList = computed(() => props.item.data.columns);
54
54
  const { proxy } = getCurrentInstance() as any;
55
55
  const { formStore, store } = inject("control") || {};
56
- const chooseClick = (e: any, index: number) => {
56
+ const chooseClick = async (e: any, index: number) => {
57
+ gridList.value.forEach((colItem: any) => {
58
+ colItem.list = colItem.list.map((item: any) => {
59
+ return proxy.$Flex.jsonToForm(item);
60
+ });
61
+ });
62
+ await nextTick();
57
63
  formStore.setFormCurrentId(gridList.value[index].list[e.oldIndex]?.id);
58
64
  formStore.setFormCurrentIndex(e.oldIndex);
59
65
  store.set("curList", gridList.value[index].list);
@@ -1,22 +1,71 @@
1
1
  <template>
2
2
  <div class="starfish-table_box">
3
- <table class="table_layout" :class="item.data.borderShow ? 'table_layout_border' : ''">
3
+ <table
4
+ class="table_layout"
5
+ :class="item.data.borderShow ? 'table_layout_border' : ''"
6
+ >
4
7
  <tr v-for="(trItem, index) in item.data.trs" :key="index">
5
8
  <td v-for="(tdItem, tdIndex) in trItem.tds" :key="tdIndex">
6
9
  <template v-if="drag">
7
- <draggable class="draggable-box" animation="300" ghostClass="itemGhost" v-model="tdItem.list" @add="addControl($event, tdItem.list, index, tdIndex)" group="starfish-form" @choose="chooseClick($event, tdItem.list)" item-key="id" @update="changePos($event, tdItem.list)">
10
+ <draggable
11
+ class="draggable-box"
12
+ animation="300"
13
+ ghostClass="itemGhost"
14
+ v-model="tdItem.list"
15
+ @add="addControl($event, tdItem.list, index, tdIndex)"
16
+ group="starfish-form"
17
+ @choose="chooseClick($event, tdItem.list, index, tdIndex)"
18
+ item-key="id"
19
+ @update="changePos($event, tdItem.list)"
20
+ >
8
21
  <template #item="{ element, index }">
9
- <Shape v-if="element.data" :active="currentId == element.id" :currentIndex="index" :currentId="element.id" :len="tdItem.list.length" :item="element"> <component :is="element.ControlType" size="default" :drag="true" :item="element" :data="{}"></component></Shape>
22
+ <Shape
23
+ v-if="element.data"
24
+ :active="currentId == element.id"
25
+ :currentIndex="index"
26
+ :currentId="element.id"
27
+ :len="tdItem.list.length"
28
+ :item="element"
29
+ >
30
+ <component
31
+ :is="element.ControlType"
32
+ size="default"
33
+ :drag="true"
34
+ :item="element"
35
+ :data="{}"
36
+ ></component
37
+ ></Shape>
10
38
  </template>
11
39
  </draggable>
12
40
  </template>
13
41
  <template v-else-if="!drag && tdItem.list.length > 0">
14
42
  <template v-for="listItem in tdItem.list">
15
- <el-form-item :prop="listItem.data.fieldName" :key="listItem.id" v-if="!listItem.layout">
16
- <component ref="controlObj" @change="$emit('change')" :is="listItem.ControlType" :item="listItem" :data="data || '{}'" size="default" :drag="false" ></component>
43
+ <el-form-item
44
+ :prop="listItem.data.fieldName"
45
+ :key="listItem.id"
46
+ v-if="!listItem.layout"
47
+ >
48
+ <component
49
+ ref="controlObj"
50
+ @change="$emit('change')"
51
+ :is="listItem.ControlType"
52
+ :item="listItem"
53
+ :data="data || '{}'"
54
+ size="default"
55
+ :drag="false"
56
+ ></component>
17
57
  </el-form-item>
18
58
  <template v-else>
19
- <component ref="controlObj" @change="$emit('change')" size="default" :key="listItem.id" :is="listItem.ControlType" :item="listItem" :data="data || '{}'" :drag="false" ></component>
59
+ <component
60
+ ref="controlObj"
61
+ @change="$emit('change')"
62
+ size="default"
63
+ :key="listItem.id"
64
+ :is="listItem.ControlType"
65
+ :item="listItem"
66
+ :data="data || '{}'"
67
+ :drag="false"
68
+ ></component>
20
69
  </template>
21
70
  </template>
22
71
  </template>
@@ -26,55 +75,67 @@
26
75
  </div>
27
76
  </template>
28
77
  <script lang="ts">
29
- import { defineComponent, getCurrentInstance, inject, computed } from "vue";
30
- import { getFormConfig } from "../utils/fieldConfig";
31
- import fieldProps from "../utils/fieldProps";
32
- import { useWatch } from "../utils/customHooks";
33
- export default defineComponent({
34
- ControlType: "TableLayout",
35
- nameCn: "表格布局",
36
- icon: "icon-biaoge1",
37
- layout: true,
38
- props: {
39
- ...fieldProps,
40
- },
41
- formConfig: getFormConfig(
42
- "TableLayout",
43
- [
44
- // { fieldName: "borderShow", component: "Switch", label: "是否显示边框" },
45
- // {fieldName: 'borderWidth', component: 'InputNumber', label: "边框宽度"}
46
- ],
47
- ["required", "rule", "tip", "label"]
48
- ),
49
- setup(props) {
50
- const { proxy } = getCurrentInstance() as any;
51
- const { formStore, store } = inject("control") || {};
52
- const currentId = computed(() => {
53
- return formStore.get("currentId");
54
- });
55
- useWatch(props);
56
- return {
57
- currentId,
58
- chooseClick(e: any, list: any[]) {
78
+ import {
79
+ defineComponent,
80
+ getCurrentInstance,
81
+ inject,
82
+ computed,
83
+ nextTick,
84
+ } from "vue";
85
+ import { getFormConfig } from "../utils/fieldConfig";
86
+ import fieldProps from "../utils/fieldProps";
87
+ import { useWatch } from "../utils/customHooks";
88
+ export default defineComponent({
89
+ ControlType: "TableLayout",
90
+ nameCn: "表格布局",
91
+ icon: "icon-biaoge1",
92
+ layout: true,
93
+ props: {
94
+ ...fieldProps,
95
+ },
96
+ formConfig: getFormConfig(
97
+ "TableLayout",
98
+ [
99
+ // { fieldName: "borderShow", component: "Switch", label: "是否显示边框" },
100
+ // {fieldName: 'borderWidth', component: 'InputNumber', label: "边框宽度"}
101
+ ],
102
+ ["required", "rule", "tip", "label"]
103
+ ),
104
+ setup(props) {
105
+ const { proxy } = getCurrentInstance() as any;
106
+ const { formStore, store } = inject("control") || {};
107
+ const currentId = computed(() => {
108
+ return formStore.get("currentId");
109
+ });
110
+ useWatch(props);
111
+ return {
112
+ currentId,
113
+ chooseClick(e: any, list: any[]) {
114
+ list[e.oldIndex] = proxy.$Flex.jsonToForm(list[e.oldIndex]);
115
+ nextTick(() => {
59
116
  formStore.setFormCurrentId(list[e.oldIndex].id);
60
117
  formStore.setFormCurrentIndex(e.oldIndex);
61
118
  store.set("curList", list);
62
- },
63
- changePos(e: any, list: any[]) {
64
- formStore.setFormCurrentId(list[e.newIndex]?.id);
65
- formStore.setFormCurrentIndex(e.newIndex);
66
- store.set("curList", list);
67
- },
68
- addControl(e: any, list: any[], trIndex: number, tdIndex: number) {
69
- props.item.data.trs[trIndex].tds[tdIndex].list = list.map((item: any) => {
119
+ });
120
+ },
121
+ changePos(e: any, list: any[]) {
122
+ formStore.setFormCurrentId(list[e.newIndex]?.id);
123
+ formStore.setFormCurrentIndex(e.newIndex);
124
+ store.set("curList", list);
125
+ },
126
+ addControl(e: any, list: any[], trIndex: number, tdIndex: number) {
127
+ props.item.data.trs[trIndex].tds[tdIndex].list = list.map(
128
+ (item: any) => {
70
129
  return proxy.$Flex.jsonToForm(item);
71
- });
72
- formStore.setFormCurrentId(props.item.data.trs[trIndex].tds[tdIndex].list[e.newIndex].id);
73
- formStore.setFormCurrentIndex(e.newIndex);
74
- store.set("curList", props.item.data.trs[trIndex].tds[tdIndex].list);
75
- },
76
- };
77
- },
78
- });
130
+ }
131
+ );
132
+ formStore.setFormCurrentId(
133
+ props.item.data.trs[trIndex].tds[tdIndex].list[e.newIndex].id
134
+ );
135
+ formStore.setFormCurrentIndex(e.newIndex);
136
+ store.set("curList", props.item.data.trs[trIndex].tds[tdIndex].list);
137
+ },
138
+ };
139
+ },
140
+ });
79
141
  </script>
80
-
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":"29a1b883-1"},{"name":"main-75e3023c.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":"29a1b883-3","name":"fieldConfig.ts"},{"uid":"29a1b883-5","name":"fieldProps.ts"},{"uid":"29a1b883-23","name":"customHooks.ts"}]},{"name":"common","children":[{"uid":"29a1b883-9","name":"KeyValueConfig.vue"},{"uid":"29a1b883-11","name":"KeyValueConfigMult.vue"},{"uid":"29a1b883-13","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"29a1b883-15","name":"Loading.vue"},{"uid":"29a1b883-17","name":"action.vue"},{"uid":"29a1b883-19","name":"listConfig.vue"},{"uid":"29a1b883-21","name":"panel.vue"},{"uid":"29a1b883-25","name":"radiogroup.vue"}]},{"name":"components","children":[{"name":"CheckBox/index.vue","uid":"29a1b883-27"},{"name":"ColorSelect","children":[{"uid":"29a1b883-29","name":"index.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"29a1b883-31","name":"index.vue"}]},{"name":"Date/index.vue","uid":"29a1b883-33"},{"name":"DateTime/index.vue","uid":"29a1b883-35"},{"name":"InputNumber/index.vue","uid":"29a1b883-37"},{"name":"Radio/index.vue","uid":"29a1b883-39"},{"name":"Rule","children":[{"uid":"29a1b883-41","name":"ruleform.json"},{"uid":"29a1b883-43","name":"rules.js"}]},{"name":"Selected/index.vue","uid":"29a1b883-45"},{"name":"Selecteds/index.vue","uid":"29a1b883-47"},{"name":"ShowRule/index.vue","uid":"29a1b883-49"},{"name":"Slider/index.vue","uid":"29a1b883-51"},{"name":"Switch/index.vue","uid":"29a1b883-53"},{"name":"Text/index.vue","uid":"29a1b883-55"},{"name":"TextArea/index.vue","uid":"29a1b883-57"},{"name":"Time/index.vue","uid":"29a1b883-59"}]},{"name":"layout","children":[{"uid":"29a1b883-61","name":"Divider.vue"},{"uid":"29a1b883-63","name":"Info.vue"},{"uid":"29a1b883-65","name":"Tabs.vue"},{"uid":"29a1b883-67","name":"collapse.vue"},{"uid":"29a1b883-69","name":"grid.vue"},{"uid":"29a1b883-71","name":"table.vue"}]},{"name":"styles/index.scss","uid":"29a1b883-73"},{"uid":"29a1b883-86","name":"main.ts"}]},{"name":"editor/src","children":[{"name":"controller","children":[{"uid":"29a1b883-77","name":"history.ts"},{"uid":"29a1b883-79","name":"form.ts"}]},{"name":"utils/_.ts","uid":"29a1b883-81"},{"name":"common","children":[{"uid":"29a1b883-83","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"29a1b883-85","name":"Loading.vue"}]}]}]},{"name":"node_modules/.pnpm/nanoid@4.0.0/node_modules/nanoid/index.browser.js","uid":"29a1b883-75"}]},{"uid":"29a1b883-7","name":"plugin-vue:export-helper"}]},{"name":"index-54c1eb62.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/index.vue","uid":"29a1b883-88"}]},{"name":"index-0deb9b57.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","uid":"29a1b883-90"}]},{"name":"formAction-601a2d39.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common","children":[{"uid":"29a1b883-92","name":"formAction.vue?vue&type=style&index=0&lang.scss"},{"uid":"29a1b883-94","name":"formAction.vue"}]}]},{"name":"index-53cacdf0.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule","children":[{"uid":"29a1b883-96","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"29a1b883-98","name":"index.vue"}]}]},{"name":"starfish-form-932a7c00.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","uid":"29a1b883-100"}]}],"isRoot":true},"nodeParts":{"29a1b883-1":{"id":"starfish-form.mjs","gzipLength":0,"brotliLength":0,"renderedLength":1902,"metaUid":"29a1b883-0"},"29a1b883-3":{"renderedLength":18542,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-2"},"29a1b883-5":{"renderedLength":567,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-4"},"29a1b883-7":{"renderedLength":159,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-6"},"29a1b883-9":{"renderedLength":8660,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-8"},"29a1b883-11":{"renderedLength":8485,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-10"},"29a1b883-13":{"renderedLength":103,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-12"},"29a1b883-15":{"renderedLength":404,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-14"},"29a1b883-17":{"renderedLength":8527,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-16"},"29a1b883-19":{"renderedLength":3264,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-18"},"29a1b883-21":{"renderedLength":5397,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-20"},"29a1b883-23":{"renderedLength":482,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-22"},"29a1b883-25":{"renderedLength":2228,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-24"},"29a1b883-27":{"renderedLength":4669,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-26"},"29a1b883-29":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-28"},"29a1b883-31":{"renderedLength":3864,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-30"},"29a1b883-33":{"renderedLength":5456,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-32"},"29a1b883-35":{"renderedLength":3294,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-34"},"29a1b883-37":{"renderedLength":4665,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-36"},"29a1b883-39":{"renderedLength":4680,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-38"},"29a1b883-41":{"renderedLength":5040,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-40"},"29a1b883-43":{"renderedLength":2564,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-42"},"29a1b883-45":{"renderedLength":4790,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-44"},"29a1b883-47":{"renderedLength":4862,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-46"},"29a1b883-49":{"renderedLength":4133,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-48"},"29a1b883-51":{"renderedLength":2944,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-50"},"29a1b883-53":{"renderedLength":2938,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-52"},"29a1b883-55":{"renderedLength":4569,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-54"},"29a1b883-57":{"renderedLength":4434,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-56"},"29a1b883-59":{"renderedLength":3240,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-58"},"29a1b883-61":{"renderedLength":1315,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-60"},"29a1b883-63":{"renderedLength":2999,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-62"},"29a1b883-65":{"renderedLength":5888,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-64"},"29a1b883-67":{"renderedLength":6238,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-66"},"29a1b883-69":{"renderedLength":6376,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-68"},"29a1b883-71":{"renderedLength":5859,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-70"},"29a1b883-73":{"renderedLength":17,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-72"},"29a1b883-75":{"renderedLength":350,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-74"},"29a1b883-77":{"renderedLength":1613,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-76"},"29a1b883-79":{"renderedLength":6014,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-78"},"29a1b883-81":{"renderedLength":11658,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-80"},"29a1b883-83":{"renderedLength":101,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-82"},"29a1b883-85":{"renderedLength":390,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-84"},"29a1b883-86":{"renderedLength":2981,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-0"},"29a1b883-88":{"renderedLength":2874,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-87"},"29a1b883-90":{"renderedLength":6675,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-89"},"29a1b883-92":{"renderedLength":92,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-91"},"29a1b883-94":{"renderedLength":17107,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-93"},"29a1b883-96":{"renderedLength":87,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-95"},"29a1b883-98":{"renderedLength":17885,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-97"},"29a1b883-100":{"renderedLength":9511,"gzipLength":0,"brotliLength":0,"metaUid":"29a1b883-99"}},"nodeMetas":{"29a1b883-0":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/main.ts","moduleParts":{"starfish-form.mjs":"29a1b883-1","main-75e3023c.mjs":"29a1b883-86"},"imported":[{"uid":"29a1b883-8"},{"uid":"29a1b883-10"},{"uid":"29a1b883-14"},{"uid":"29a1b883-16"},{"uid":"29a1b883-18"},{"uid":"29a1b883-20"},{"uid":"29a1b883-24"},{"uid":"29a1b883-26"},{"uid":"29a1b883-30"},{"uid":"29a1b883-32"},{"uid":"29a1b883-34"},{"uid":"29a1b883-36"},{"uid":"29a1b883-38"},{"uid":"29a1b883-40"},{"uid":"29a1b883-42"},{"uid":"29a1b883-44"},{"uid":"29a1b883-46"},{"uid":"29a1b883-48"},{"uid":"29a1b883-50"},{"uid":"29a1b883-52"},{"uid":"29a1b883-54"},{"uid":"29a1b883-56"},{"uid":"29a1b883-58"},{"uid":"29a1b883-60"},{"uid":"29a1b883-62"},{"uid":"29a1b883-64"},{"uid":"29a1b883-66"},{"uid":"29a1b883-68"},{"uid":"29a1b883-70"},{"uid":"29a1b883-101"},{"uid":"29a1b883-72"},{"uid":"29a1b883-2"},{"uid":"29a1b883-80"},{"uid":"29a1b883-84"},{"uid":"29a1b883-87","dynamic":true},{"uid":"29a1b883-89","dynamic":true},{"uid":"29a1b883-93","dynamic":true},{"uid":"29a1b883-97","dynamic":true},{"uid":"29a1b883-99","dynamic":true}],"importedBy":[],"isEntry":true},"29a1b883-2":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/fieldConfig.ts","moduleParts":{"main-75e3023c.mjs":"29a1b883-3"},"imported":[],"importedBy":[{"uid":"29a1b883-0"},{"uid":"29a1b883-8"},{"uid":"29a1b883-10"},{"uid":"29a1b883-26"},{"uid":"29a1b883-30"},{"uid":"29a1b883-32"},{"uid":"29a1b883-34"},{"uid":"29a1b883-36"},{"uid":"29a1b883-38"},{"uid":"29a1b883-44"},{"uid":"29a1b883-46"},{"uid":"29a1b883-50"},{"uid":"29a1b883-52"},{"uid":"29a1b883-54"},{"uid":"29a1b883-56"},{"uid":"29a1b883-58"},{"uid":"29a1b883-60"},{"uid":"29a1b883-62"},{"uid":"29a1b883-64"},{"uid":"29a1b883-66"},{"uid":"29a1b883-68"},{"uid":"29a1b883-70"},{"uid":"29a1b883-87"},{"uid":"29a1b883-89"}]},"29a1b883-4":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/fieldProps.ts","moduleParts":{"main-75e3023c.mjs":"29a1b883-5"},"imported":[],"importedBy":[{"uid":"29a1b883-8"},{"uid":"29a1b883-10"},{"uid":"29a1b883-16"},{"uid":"29a1b883-18"},{"uid":"29a1b883-20"},{"uid":"29a1b883-24"},{"uid":"29a1b883-26"},{"uid":"29a1b883-30"},{"uid":"29a1b883-32"},{"uid":"29a1b883-34"},{"uid":"29a1b883-36"},{"uid":"29a1b883-38"},{"uid":"29a1b883-44"},{"uid":"29a1b883-46"},{"uid":"29a1b883-48"},{"uid":"29a1b883-50"},{"uid":"29a1b883-52"},{"uid":"29a1b883-54"},{"uid":"29a1b883-56"},{"uid":"29a1b883-58"},{"uid":"29a1b883-60"},{"uid":"29a1b883-62"},{"uid":"29a1b883-64"},{"uid":"29a1b883-66"},{"uid":"29a1b883-68"},{"uid":"29a1b883-70"},{"uid":"29a1b883-87"},{"uid":"29a1b883-89"},{"uid":"29a1b883-97"}]},"29a1b883-6":{"id":"plugin-vue:export-helper","moduleParts":{"main-75e3023c.mjs":"29a1b883-7"},"imported":[],"importedBy":[{"uid":"29a1b883-8"},{"uid":"29a1b883-10"},{"uid":"29a1b883-14"},{"uid":"29a1b883-16"},{"uid":"29a1b883-18"},{"uid":"29a1b883-20"},{"uid":"29a1b883-24"},{"uid":"29a1b883-26"},{"uid":"29a1b883-30"},{"uid":"29a1b883-32"},{"uid":"29a1b883-34"},{"uid":"29a1b883-36"},{"uid":"29a1b883-38"},{"uid":"29a1b883-44"},{"uid":"29a1b883-46"},{"uid":"29a1b883-48"},{"uid":"29a1b883-50"},{"uid":"29a1b883-52"},{"uid":"29a1b883-54"},{"uid":"29a1b883-56"},{"uid":"29a1b883-58"},{"uid":"29a1b883-60"},{"uid":"29a1b883-62"},{"uid":"29a1b883-64"},{"uid":"29a1b883-66"},{"uid":"29a1b883-68"},{"uid":"29a1b883-70"},{"uid":"29a1b883-84"},{"uid":"29a1b883-87"},{"uid":"29a1b883-89"},{"uid":"29a1b883-93"},{"uid":"29a1b883-97"},{"uid":"29a1b883-99"}]},"29a1b883-8":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfig.vue","moduleParts":{"main-75e3023c.mjs":"29a1b883-9"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-104"},{"uid":"29a1b883-105"},{"uid":"29a1b883-106"},{"uid":"29a1b883-107"},{"uid":"29a1b883-101"},{"uid":"29a1b883-108"},{"uid":"29a1b883-2"},{"uid":"29a1b883-4"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-10":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfigMult.vue","moduleParts":{"main-75e3023c.mjs":"29a1b883-11"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-104"},{"uid":"29a1b883-105"},{"uid":"29a1b883-106"},{"uid":"29a1b883-107"},{"uid":"29a1b883-101"},{"uid":"29a1b883-108"},{"uid":"29a1b883-2"},{"uid":"29a1b883-4"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-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-75e3023c.mjs":"29a1b883-13"},"imported":[],"importedBy":[{"uid":"29a1b883-14"}]},"29a1b883-14":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/Loading.vue","moduleParts":{"main-75e3023c.mjs":"29a1b883-15"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-109"},{"uid":"29a1b883-101"},{"uid":"29a1b883-12"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-16":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/action.vue","moduleParts":{"main-75e3023c.mjs":"29a1b883-17"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-110"},{"uid":"29a1b883-111"},{"uid":"29a1b883-112"},{"uid":"29a1b883-113"},{"uid":"29a1b883-114"},{"uid":"29a1b883-115"},{"uid":"29a1b883-116"},{"uid":"29a1b883-104"},{"uid":"29a1b883-117"},{"uid":"29a1b883-118"},{"uid":"29a1b883-119"},{"uid":"29a1b883-107"},{"uid":"29a1b883-101"},{"uid":"29a1b883-108"},{"uid":"29a1b883-4"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-18":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/listConfig.vue","moduleParts":{"main-75e3023c.mjs":"29a1b883-19"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-115"},{"uid":"29a1b883-116"},{"uid":"29a1b883-104"},{"uid":"29a1b883-120"},{"uid":"29a1b883-101"},{"uid":"29a1b883-4"},{"uid":"29a1b883-108"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-20":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/panel.vue","moduleParts":{"main-75e3023c.mjs":"29a1b883-21"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-115"},{"uid":"29a1b883-116"},{"uid":"29a1b883-104"},{"uid":"29a1b883-105"},{"uid":"29a1b883-117"},{"uid":"29a1b883-107"},{"uid":"29a1b883-101"},{"uid":"29a1b883-4"},{"uid":"29a1b883-108"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-22":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/customHooks.ts","moduleParts":{"main-75e3023c.mjs":"29a1b883-23"},"imported":[{"uid":"29a1b883-101"}],"importedBy":[{"uid":"29a1b883-24"},{"uid":"29a1b883-26"},{"uid":"29a1b883-30"},{"uid":"29a1b883-32"},{"uid":"29a1b883-34"},{"uid":"29a1b883-36"},{"uid":"29a1b883-38"},{"uid":"29a1b883-44"},{"uid":"29a1b883-46"},{"uid":"29a1b883-48"},{"uid":"29a1b883-50"},{"uid":"29a1b883-52"},{"uid":"29a1b883-54"},{"uid":"29a1b883-56"},{"uid":"29a1b883-58"},{"uid":"29a1b883-60"},{"uid":"29a1b883-62"},{"uid":"29a1b883-64"},{"uid":"29a1b883-66"},{"uid":"29a1b883-68"},{"uid":"29a1b883-70"},{"uid":"29a1b883-87"},{"uid":"29a1b883-89"}]},"29a1b883-24":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/radiogroup.vue","moduleParts":{"main-75e3023c.mjs":"29a1b883-25"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-121"},{"uid":"29a1b883-122"},{"uid":"29a1b883-107"},{"uid":"29a1b883-101"},{"uid":"29a1b883-4"},{"uid":"29a1b883-22"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-26":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/CheckBox/index.vue","moduleParts":{"main-75e3023c.mjs":"29a1b883-27"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-123"},{"uid":"29a1b883-106"},{"uid":"29a1b883-107"},{"uid":"29a1b883-101"},{"uid":"29a1b883-2"},{"uid":"29a1b883-4"},{"uid":"29a1b883-22"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-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-75e3023c.mjs":"29a1b883-29"},"imported":[],"importedBy":[{"uid":"29a1b883-30"}]},"29a1b883-30":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/ColorSelect/index.vue","moduleParts":{"main-75e3023c.mjs":"29a1b883-31"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-124"},{"uid":"29a1b883-105"},{"uid":"29a1b883-107"},{"uid":"29a1b883-101"},{"uid":"29a1b883-2"},{"uid":"29a1b883-4"},{"uid":"29a1b883-22"},{"uid":"29a1b883-28"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-32":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Date/index.vue","moduleParts":{"main-75e3023c.mjs":"29a1b883-33"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-125"},{"uid":"29a1b883-107"},{"uid":"29a1b883-101"},{"uid":"29a1b883-2"},{"uid":"29a1b883-4"},{"uid":"29a1b883-22"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-34":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/DateTime/index.vue","moduleParts":{"main-75e3023c.mjs":"29a1b883-35"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-125"},{"uid":"29a1b883-107"},{"uid":"29a1b883-101"},{"uid":"29a1b883-2"},{"uid":"29a1b883-4"},{"uid":"29a1b883-22"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-36":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/InputNumber/index.vue","moduleParts":{"main-75e3023c.mjs":"29a1b883-37"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-120"},{"uid":"29a1b883-107"},{"uid":"29a1b883-101"},{"uid":"29a1b883-2"},{"uid":"29a1b883-4"},{"uid":"29a1b883-22"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-38":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Radio/index.vue","moduleParts":{"main-75e3023c.mjs":"29a1b883-39"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-121"},{"uid":"29a1b883-126"},{"uid":"29a1b883-107"},{"uid":"29a1b883-101"},{"uid":"29a1b883-2"},{"uid":"29a1b883-4"},{"uid":"29a1b883-22"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-40":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/ruleform.json","moduleParts":{"main-75e3023c.mjs":"29a1b883-41"},"imported":[],"importedBy":[{"uid":"29a1b883-0"},{"uid":"29a1b883-97"}]},"29a1b883-42":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/rules.js","moduleParts":{"main-75e3023c.mjs":"29a1b883-43"},"imported":[],"importedBy":[{"uid":"29a1b883-0"},{"uid":"29a1b883-97"}]},"29a1b883-44":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Selected/index.vue","moduleParts":{"main-75e3023c.mjs":"29a1b883-45"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-118"},{"uid":"29a1b883-119"},{"uid":"29a1b883-107"},{"uid":"29a1b883-101"},{"uid":"29a1b883-2"},{"uid":"29a1b883-4"},{"uid":"29a1b883-22"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-46":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Selecteds/index.vue","moduleParts":{"main-75e3023c.mjs":"29a1b883-47"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-118"},{"uid":"29a1b883-119"},{"uid":"29a1b883-107"},{"uid":"29a1b883-101"},{"uid":"29a1b883-2"},{"uid":"29a1b883-4"},{"uid":"29a1b883-22"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-48":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/ShowRule/index.vue","moduleParts":{"main-75e3023c.mjs":"29a1b883-49"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-116"},{"uid":"29a1b883-107"},{"uid":"29a1b883-101"},{"uid":"29a1b883-4"},{"uid":"29a1b883-22"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-50":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Slider/index.vue","moduleParts":{"main-75e3023c.mjs":"29a1b883-51"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-127"},{"uid":"29a1b883-107"},{"uid":"29a1b883-101"},{"uid":"29a1b883-2"},{"uid":"29a1b883-4"},{"uid":"29a1b883-22"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-52":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Switch/index.vue","moduleParts":{"main-75e3023c.mjs":"29a1b883-53"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-128"},{"uid":"29a1b883-107"},{"uid":"29a1b883-101"},{"uid":"29a1b883-2"},{"uid":"29a1b883-4"},{"uid":"29a1b883-22"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-54":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Text/index.vue","moduleParts":{"main-75e3023c.mjs":"29a1b883-55"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-105"},{"uid":"29a1b883-107"},{"uid":"29a1b883-101"},{"uid":"29a1b883-2"},{"uid":"29a1b883-4"},{"uid":"29a1b883-22"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-56":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/TextArea/index.vue","moduleParts":{"main-75e3023c.mjs":"29a1b883-57"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-105"},{"uid":"29a1b883-107"},{"uid":"29a1b883-101"},{"uid":"29a1b883-2"},{"uid":"29a1b883-4"},{"uid":"29a1b883-22"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-58":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Time/index.vue","moduleParts":{"main-75e3023c.mjs":"29a1b883-59"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-129"},{"uid":"29a1b883-107"},{"uid":"29a1b883-101"},{"uid":"29a1b883-4"},{"uid":"29a1b883-2"},{"uid":"29a1b883-22"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-60":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Divider.vue","moduleParts":{"main-75e3023c.mjs":"29a1b883-61"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-130"},{"uid":"29a1b883-101"},{"uid":"29a1b883-2"},{"uid":"29a1b883-4"},{"uid":"29a1b883-22"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-62":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Info.vue","moduleParts":{"main-75e3023c.mjs":"29a1b883-63"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-131"},{"uid":"29a1b883-107"},{"uid":"29a1b883-101"},{"uid":"29a1b883-2"},{"uid":"29a1b883-4"},{"uid":"29a1b883-22"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-64":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Tabs.vue","moduleParts":{"main-75e3023c.mjs":"29a1b883-65"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-132"},{"uid":"29a1b883-133"},{"uid":"29a1b883-134"},{"uid":"29a1b883-101"},{"uid":"29a1b883-2"},{"uid":"29a1b883-4"},{"uid":"29a1b883-22"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-66":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/collapse.vue","moduleParts":{"main-75e3023c.mjs":"29a1b883-67"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-113"},{"uid":"29a1b883-114"},{"uid":"29a1b883-134"},{"uid":"29a1b883-101"},{"uid":"29a1b883-2"},{"uid":"29a1b883-4"},{"uid":"29a1b883-22"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-68":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/grid.vue","moduleParts":{"main-75e3023c.mjs":"29a1b883-69"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-115"},{"uid":"29a1b883-134"},{"uid":"29a1b883-117"},{"uid":"29a1b883-101"},{"uid":"29a1b883-2"},{"uid":"29a1b883-4"},{"uid":"29a1b883-22"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-70":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/table.vue","moduleParts":{"main-75e3023c.mjs":"29a1b883-71"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-134"},{"uid":"29a1b883-101"},{"uid":"29a1b883-2"},{"uid":"29a1b883-4"},{"uid":"29a1b883-22"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-72":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/styles/index.scss","moduleParts":{"main-75e3023c.mjs":"29a1b883-73"},"imported":[],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-74":{"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-75e3023c.mjs":"29a1b883-75"},"imported":[{"uid":"29a1b883-145"}],"importedBy":[{"uid":"29a1b883-80"}]},"29a1b883-76":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/history.ts","moduleParts":{"main-75e3023c.mjs":"29a1b883-77"},"imported":[{"uid":"29a1b883-101"},{"uid":"29a1b883-78"}],"importedBy":[{"uid":"29a1b883-78"}]},"29a1b883-78":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/form.ts","moduleParts":{"main-75e3023c.mjs":"29a1b883-79"},"imported":[{"uid":"29a1b883-101"},{"uid":"29a1b883-76"}],"importedBy":[{"uid":"29a1b883-80"},{"uid":"29a1b883-76"}]},"29a1b883-80":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/_.ts","moduleParts":{"main-75e3023c.mjs":"29a1b883-81"},"imported":[{"uid":"29a1b883-135"},{"uid":"29a1b883-74"},{"uid":"29a1b883-78"}],"importedBy":[{"uid":"29a1b883-0"},{"uid":"29a1b883-89"},{"uid":"29a1b883-97"}]},"29a1b883-82":{"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-75e3023c.mjs":"29a1b883-83"},"imported":[],"importedBy":[{"uid":"29a1b883-84"}]},"29a1b883-84":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue","moduleParts":{"main-75e3023c.mjs":"29a1b883-85"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-109"},{"uid":"29a1b883-101"},{"uid":"29a1b883-82"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-87":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/index.vue","moduleParts":{"index-54c1eb62.mjs":"29a1b883-88"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-107"},{"uid":"29a1b883-101"},{"uid":"29a1b883-136"},{"uid":"29a1b883-2"},{"uid":"29a1b883-4"},{"uid":"29a1b883-22"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-89":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","moduleParts":{"index-0deb9b57.mjs":"29a1b883-90"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-137"},{"uid":"29a1b883-138"},{"uid":"29a1b883-116"},{"uid":"29a1b883-139"},{"uid":"29a1b883-107"},{"uid":"29a1b883-101"},{"uid":"29a1b883-2"},{"uid":"29a1b883-4"},{"uid":"29a1b883-22"},{"uid":"29a1b883-140"},{"uid":"29a1b883-80"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-91":{"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-601a2d39.mjs":"29a1b883-92"},"imported":[],"importedBy":[{"uid":"29a1b883-93"}]},"29a1b883-93":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/formAction.vue","moduleParts":{"formAction-601a2d39.mjs":"29a1b883-94"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-141"},{"uid":"29a1b883-134"},{"uid":"29a1b883-105"},{"uid":"29a1b883-142"},{"uid":"29a1b883-137"},{"uid":"29a1b883-139"},{"uid":"29a1b883-143"},{"uid":"29a1b883-116"},{"uid":"29a1b883-107"},{"uid":"29a1b883-101"},{"uid":"29a1b883-144"},{"uid":"29a1b883-91"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-95":{"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-53cacdf0.mjs":"29a1b883-96"},"imported":[],"importedBy":[{"uid":"29a1b883-97"}]},"29a1b883-97":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/index.vue","moduleParts":{"index-53cacdf0.mjs":"29a1b883-98"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-137"},{"uid":"29a1b883-139"},{"uid":"29a1b883-138"},{"uid":"29a1b883-131"},{"uid":"29a1b883-104"},{"uid":"29a1b883-118"},{"uid":"29a1b883-119"},{"uid":"29a1b883-110"},{"uid":"29a1b883-111"},{"uid":"29a1b883-112"},{"uid":"29a1b883-116"},{"uid":"29a1b883-107"},{"uid":"29a1b883-101"},{"uid":"29a1b883-4"},{"uid":"29a1b883-80"},{"uid":"29a1b883-42"},{"uid":"29a1b883-40"},{"uid":"29a1b883-108"},{"uid":"29a1b883-99"},{"uid":"29a1b883-144"},{"uid":"29a1b883-95"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"}]},"29a1b883-99":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","moduleParts":{"starfish-form-932a7c00.mjs":"29a1b883-100"},"imported":[{"uid":"29a1b883-102"},{"uid":"29a1b883-103"},{"uid":"29a1b883-141"},{"uid":"29a1b883-134"},{"uid":"29a1b883-101"},{"uid":"29a1b883-6"}],"importedBy":[{"uid":"29a1b883-0"},{"uid":"29a1b883-97"}]},"29a1b883-101":{"id":"vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-0"},{"uid":"29a1b883-8"},{"uid":"29a1b883-10"},{"uid":"29a1b883-14"},{"uid":"29a1b883-16"},{"uid":"29a1b883-18"},{"uid":"29a1b883-20"},{"uid":"29a1b883-24"},{"uid":"29a1b883-26"},{"uid":"29a1b883-30"},{"uid":"29a1b883-32"},{"uid":"29a1b883-34"},{"uid":"29a1b883-36"},{"uid":"29a1b883-38"},{"uid":"29a1b883-44"},{"uid":"29a1b883-46"},{"uid":"29a1b883-48"},{"uid":"29a1b883-50"},{"uid":"29a1b883-52"},{"uid":"29a1b883-54"},{"uid":"29a1b883-56"},{"uid":"29a1b883-58"},{"uid":"29a1b883-60"},{"uid":"29a1b883-62"},{"uid":"29a1b883-64"},{"uid":"29a1b883-66"},{"uid":"29a1b883-68"},{"uid":"29a1b883-70"},{"uid":"29a1b883-84"},{"uid":"29a1b883-87"},{"uid":"29a1b883-89"},{"uid":"29a1b883-93"},{"uid":"29a1b883-97"},{"uid":"29a1b883-99"},{"uid":"29a1b883-22"},{"uid":"29a1b883-78"},{"uid":"29a1b883-76"}],"isExternal":true},"29a1b883-102":{"id":"element-plus/es","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-8"},{"uid":"29a1b883-10"},{"uid":"29a1b883-14"},{"uid":"29a1b883-16"},{"uid":"29a1b883-18"},{"uid":"29a1b883-20"},{"uid":"29a1b883-24"},{"uid":"29a1b883-26"},{"uid":"29a1b883-30"},{"uid":"29a1b883-32"},{"uid":"29a1b883-34"},{"uid":"29a1b883-36"},{"uid":"29a1b883-38"},{"uid":"29a1b883-44"},{"uid":"29a1b883-46"},{"uid":"29a1b883-48"},{"uid":"29a1b883-50"},{"uid":"29a1b883-52"},{"uid":"29a1b883-54"},{"uid":"29a1b883-56"},{"uid":"29a1b883-58"},{"uid":"29a1b883-60"},{"uid":"29a1b883-62"},{"uid":"29a1b883-64"},{"uid":"29a1b883-66"},{"uid":"29a1b883-68"},{"uid":"29a1b883-70"},{"uid":"29a1b883-84"},{"uid":"29a1b883-87"},{"uid":"29a1b883-89"},{"uid":"29a1b883-93"},{"uid":"29a1b883-97"},{"uid":"29a1b883-99"}],"isExternal":true},"29a1b883-103":{"id":"element-plus/es/components/base/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-8"},{"uid":"29a1b883-10"},{"uid":"29a1b883-14"},{"uid":"29a1b883-16"},{"uid":"29a1b883-18"},{"uid":"29a1b883-20"},{"uid":"29a1b883-24"},{"uid":"29a1b883-26"},{"uid":"29a1b883-30"},{"uid":"29a1b883-32"},{"uid":"29a1b883-34"},{"uid":"29a1b883-36"},{"uid":"29a1b883-38"},{"uid":"29a1b883-44"},{"uid":"29a1b883-46"},{"uid":"29a1b883-48"},{"uid":"29a1b883-50"},{"uid":"29a1b883-52"},{"uid":"29a1b883-54"},{"uid":"29a1b883-56"},{"uid":"29a1b883-58"},{"uid":"29a1b883-60"},{"uid":"29a1b883-62"},{"uid":"29a1b883-64"},{"uid":"29a1b883-66"},{"uid":"29a1b883-68"},{"uid":"29a1b883-70"},{"uid":"29a1b883-84"},{"uid":"29a1b883-87"},{"uid":"29a1b883-89"},{"uid":"29a1b883-93"},{"uid":"29a1b883-97"},{"uid":"29a1b883-99"}],"isExternal":true},"29a1b883-104":{"id":"element-plus/es/components/icon/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-8"},{"uid":"29a1b883-10"},{"uid":"29a1b883-16"},{"uid":"29a1b883-18"},{"uid":"29a1b883-20"},{"uid":"29a1b883-97"}],"isExternal":true},"29a1b883-105":{"id":"element-plus/es/components/input/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-8"},{"uid":"29a1b883-10"},{"uid":"29a1b883-20"},{"uid":"29a1b883-30"},{"uid":"29a1b883-54"},{"uid":"29a1b883-56"},{"uid":"29a1b883-93"}],"isExternal":true},"29a1b883-106":{"id":"element-plus/es/components/checkbox/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-8"},{"uid":"29a1b883-10"},{"uid":"29a1b883-26"}],"isExternal":true},"29a1b883-107":{"id":"element-plus/es/components/tooltip/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-8"},{"uid":"29a1b883-10"},{"uid":"29a1b883-16"},{"uid":"29a1b883-20"},{"uid":"29a1b883-24"},{"uid":"29a1b883-26"},{"uid":"29a1b883-30"},{"uid":"29a1b883-32"},{"uid":"29a1b883-34"},{"uid":"29a1b883-36"},{"uid":"29a1b883-38"},{"uid":"29a1b883-44"},{"uid":"29a1b883-46"},{"uid":"29a1b883-48"},{"uid":"29a1b883-50"},{"uid":"29a1b883-52"},{"uid":"29a1b883-54"},{"uid":"29a1b883-56"},{"uid":"29a1b883-58"},{"uid":"29a1b883-62"},{"uid":"29a1b883-87"},{"uid":"29a1b883-89"},{"uid":"29a1b883-93"},{"uid":"29a1b883-97"}],"isExternal":true},"29a1b883-108":{"id":"@element-plus/icons-vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-8"},{"uid":"29a1b883-10"},{"uid":"29a1b883-16"},{"uid":"29a1b883-18"},{"uid":"29a1b883-20"},{"uid":"29a1b883-97"}],"isExternal":true},"29a1b883-109":{"id":"element-plus/es/components/loading/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-14"},{"uid":"29a1b883-84"}],"isExternal":true},"29a1b883-110":{"id":"element-plus/es/components/dropdown/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-16"},{"uid":"29a1b883-97"}],"isExternal":true},"29a1b883-111":{"id":"element-plus/es/components/dropdown-menu/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-16"},{"uid":"29a1b883-97"}],"isExternal":true},"29a1b883-112":{"id":"element-plus/es/components/dropdown-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-16"},{"uid":"29a1b883-97"}],"isExternal":true},"29a1b883-113":{"id":"element-plus/es/components/collapse/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-16"},{"uid":"29a1b883-66"}],"isExternal":true},"29a1b883-114":{"id":"element-plus/es/components/collapse-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-16"},{"uid":"29a1b883-66"}],"isExternal":true},"29a1b883-115":{"id":"element-plus/es/components/row/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-16"},{"uid":"29a1b883-18"},{"uid":"29a1b883-20"},{"uid":"29a1b883-68"}],"isExternal":true},"29a1b883-116":{"id":"element-plus/es/components/button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-16"},{"uid":"29a1b883-18"},{"uid":"29a1b883-20"},{"uid":"29a1b883-48"},{"uid":"29a1b883-89"},{"uid":"29a1b883-93"},{"uid":"29a1b883-97"}],"isExternal":true},"29a1b883-117":{"id":"element-plus/es/components/col/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-16"},{"uid":"29a1b883-20"},{"uid":"29a1b883-68"}],"isExternal":true},"29a1b883-118":{"id":"element-plus/es/components/select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-16"},{"uid":"29a1b883-44"},{"uid":"29a1b883-46"},{"uid":"29a1b883-97"}],"isExternal":true},"29a1b883-119":{"id":"element-plus/es/components/option/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-16"},{"uid":"29a1b883-44"},{"uid":"29a1b883-46"},{"uid":"29a1b883-97"}],"isExternal":true},"29a1b883-120":{"id":"element-plus/es/components/input-number/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-18"},{"uid":"29a1b883-36"}],"isExternal":true},"29a1b883-121":{"id":"element-plus/es/components/radio-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-24"},{"uid":"29a1b883-38"}],"isExternal":true},"29a1b883-122":{"id":"element-plus/es/components/radio-button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-24"}],"isExternal":true},"29a1b883-123":{"id":"element-plus/es/components/checkbox-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-26"}],"isExternal":true},"29a1b883-124":{"id":"element-plus/es/components/color-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-30"}],"isExternal":true},"29a1b883-125":{"id":"element-plus/es/components/date-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-32"},{"uid":"29a1b883-34"}],"isExternal":true},"29a1b883-126":{"id":"element-plus/es/components/radio/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-38"}],"isExternal":true},"29a1b883-127":{"id":"element-plus/es/components/slider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-50"}],"isExternal":true},"29a1b883-128":{"id":"element-plus/es/components/switch/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-52"}],"isExternal":true},"29a1b883-129":{"id":"element-plus/es/components/time-select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-58"}],"isExternal":true},"29a1b883-130":{"id":"element-plus/es/components/divider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-60"}],"isExternal":true},"29a1b883-131":{"id":"element-plus/es/components/alert/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-62"},{"uid":"29a1b883-97"}],"isExternal":true},"29a1b883-132":{"id":"element-plus/es/components/tabs/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-64"}],"isExternal":true},"29a1b883-133":{"id":"element-plus/es/components/tab-pane/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-64"}],"isExternal":true},"29a1b883-134":{"id":"element-plus/es/components/form-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-64"},{"uid":"29a1b883-66"},{"uid":"29a1b883-68"},{"uid":"29a1b883-70"},{"uid":"29a1b883-93"},{"uid":"29a1b883-99"}],"isExternal":true},"29a1b883-135":{"id":"element-plus","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-80"}],"isExternal":true},"29a1b883-136":{"id":"wangeditor","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-87"}],"isExternal":true},"29a1b883-137":{"id":"element-plus/es/components/container/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-89"},{"uid":"29a1b883-93"},{"uid":"29a1b883-97"}],"isExternal":true},"29a1b883-138":{"id":"element-plus/es/components/footer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-89"},{"uid":"29a1b883-97"}],"isExternal":true},"29a1b883-139":{"id":"element-plus/es/components/main/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-89"},{"uid":"29a1b883-93"},{"uid":"29a1b883-97"}],"isExternal":true},"29a1b883-140":{"id":"jsoneditor","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-89"}],"isExternal":true},"29a1b883-141":{"id":"element-plus/es/components/form/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-93"},{"uid":"29a1b883-99"}],"isExternal":true},"29a1b883-142":{"id":"element-plus/es/components/aside/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-93"}],"isExternal":true},"29a1b883-143":{"id":"element-plus/es/components/scrollbar/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-93"}],"isExternal":true},"29a1b883-144":{"id":"vue-codemirror","moduleParts":{},"imported":[],"importedBy":[{"uid":"29a1b883-93"},{"uid":"29a1b883-97"}],"isExternal":true},"29a1b883-145":{"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":"29a1b883-74"}]}},"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":"bb5feb49-1"},{"name":"main-c35b558b.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":"bb5feb49-3","name":"fieldConfig.ts"},{"uid":"bb5feb49-5","name":"fieldProps.ts"},{"uid":"bb5feb49-23","name":"customHooks.ts"}]},{"name":"common","children":[{"uid":"bb5feb49-9","name":"KeyValueConfig.vue"},{"uid":"bb5feb49-11","name":"KeyValueConfigMult.vue"},{"uid":"bb5feb49-13","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"bb5feb49-15","name":"Loading.vue"},{"uid":"bb5feb49-17","name":"action.vue"},{"uid":"bb5feb49-19","name":"listConfig.vue"},{"uid":"bb5feb49-21","name":"panel.vue"},{"uid":"bb5feb49-25","name":"radiogroup.vue"}]},{"name":"components","children":[{"name":"CheckBox/index.vue","uid":"bb5feb49-27"},{"name":"ColorSelect","children":[{"uid":"bb5feb49-29","name":"index.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"bb5feb49-31","name":"index.vue"}]},{"name":"Date/index.vue","uid":"bb5feb49-33"},{"name":"DateTime/index.vue","uid":"bb5feb49-35"},{"name":"InputNumber/index.vue","uid":"bb5feb49-37"},{"name":"Radio/index.vue","uid":"bb5feb49-39"},{"name":"Rule","children":[{"uid":"bb5feb49-41","name":"ruleform.json"},{"uid":"bb5feb49-43","name":"rules.js"}]},{"name":"Selected/index.vue","uid":"bb5feb49-45"},{"name":"Selecteds/index.vue","uid":"bb5feb49-47"},{"name":"ShowRule/index.vue","uid":"bb5feb49-49"},{"name":"Slider/index.vue","uid":"bb5feb49-51"},{"name":"Switch/index.vue","uid":"bb5feb49-53"},{"name":"Text/index.vue","uid":"bb5feb49-55"},{"name":"TextArea/index.vue","uid":"bb5feb49-57"},{"name":"Time/index.vue","uid":"bb5feb49-59"}]},{"name":"layout","children":[{"uid":"bb5feb49-61","name":"Divider.vue"},{"uid":"bb5feb49-63","name":"Info.vue"},{"uid":"bb5feb49-65","name":"Tabs.vue"},{"uid":"bb5feb49-67","name":"collapse.vue"},{"uid":"bb5feb49-69","name":"grid.vue"},{"uid":"bb5feb49-71","name":"table.vue"}]},{"name":"styles/index.scss","uid":"bb5feb49-73"},{"uid":"bb5feb49-86","name":"main.ts"}]},{"name":"editor/src","children":[{"name":"controller","children":[{"uid":"bb5feb49-77","name":"history.ts"},{"uid":"bb5feb49-79","name":"form.ts"}]},{"name":"utils/_.ts","uid":"bb5feb49-81"},{"name":"common","children":[{"uid":"bb5feb49-83","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"bb5feb49-85","name":"Loading.vue"}]}]}]},{"name":"node_modules/.pnpm/nanoid@4.0.0/node_modules/nanoid/index.browser.js","uid":"bb5feb49-75"}]},{"uid":"bb5feb49-7","name":"plugin-vue:export-helper"}]},{"name":"index-32206a30.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/index.vue","uid":"bb5feb49-88"}]},{"name":"index-99892fc1.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","uid":"bb5feb49-90"}]},{"name":"formAction-cad81869.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common","children":[{"uid":"bb5feb49-92","name":"formAction.vue?vue&type=style&index=0&lang.scss"},{"uid":"bb5feb49-94","name":"formAction.vue"}]}]},{"name":"index-c1995810.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule","children":[{"uid":"bb5feb49-96","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"bb5feb49-98","name":"index.vue"}]}]},{"name":"starfish-form-dd44ab87.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","uid":"bb5feb49-100"}]}],"isRoot":true},"nodeParts":{"bb5feb49-1":{"id":"starfish-form.mjs","gzipLength":0,"brotliLength":0,"renderedLength":1902,"metaUid":"bb5feb49-0"},"bb5feb49-3":{"renderedLength":18542,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-2"},"bb5feb49-5":{"renderedLength":567,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-4"},"bb5feb49-7":{"renderedLength":159,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-6"},"bb5feb49-9":{"renderedLength":8660,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-8"},"bb5feb49-11":{"renderedLength":8485,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-10"},"bb5feb49-13":{"renderedLength":103,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-12"},"bb5feb49-15":{"renderedLength":404,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-14"},"bb5feb49-17":{"renderedLength":8527,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-16"},"bb5feb49-19":{"renderedLength":3264,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-18"},"bb5feb49-21":{"renderedLength":5397,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-20"},"bb5feb49-23":{"renderedLength":482,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-22"},"bb5feb49-25":{"renderedLength":2228,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-24"},"bb5feb49-27":{"renderedLength":4669,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-26"},"bb5feb49-29":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-28"},"bb5feb49-31":{"renderedLength":3864,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-30"},"bb5feb49-33":{"renderedLength":5456,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-32"},"bb5feb49-35":{"renderedLength":3294,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-34"},"bb5feb49-37":{"renderedLength":4665,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-36"},"bb5feb49-39":{"renderedLength":4680,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-38"},"bb5feb49-41":{"renderedLength":5040,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-40"},"bb5feb49-43":{"renderedLength":2564,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-42"},"bb5feb49-45":{"renderedLength":4790,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-44"},"bb5feb49-47":{"renderedLength":4862,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-46"},"bb5feb49-49":{"renderedLength":4133,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-48"},"bb5feb49-51":{"renderedLength":2944,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-50"},"bb5feb49-53":{"renderedLength":2938,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-52"},"bb5feb49-55":{"renderedLength":4569,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-54"},"bb5feb49-57":{"renderedLength":4434,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-56"},"bb5feb49-59":{"renderedLength":3240,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-58"},"bb5feb49-61":{"renderedLength":1315,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-60"},"bb5feb49-63":{"renderedLength":2999,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-62"},"bb5feb49-65":{"renderedLength":5888,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-64"},"bb5feb49-67":{"renderedLength":6238,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-66"},"bb5feb49-69":{"renderedLength":6571,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-68"},"bb5feb49-71":{"renderedLength":6031,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-70"},"bb5feb49-73":{"renderedLength":17,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-72"},"bb5feb49-75":{"renderedLength":350,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-74"},"bb5feb49-77":{"renderedLength":1613,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-76"},"bb5feb49-79":{"renderedLength":6014,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-78"},"bb5feb49-81":{"renderedLength":11658,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-80"},"bb5feb49-83":{"renderedLength":101,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-82"},"bb5feb49-85":{"renderedLength":390,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-84"},"bb5feb49-86":{"renderedLength":2981,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-0"},"bb5feb49-88":{"renderedLength":2874,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-87"},"bb5feb49-90":{"renderedLength":6675,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-89"},"bb5feb49-92":{"renderedLength":92,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-91"},"bb5feb49-94":{"renderedLength":17107,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-93"},"bb5feb49-96":{"renderedLength":87,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-95"},"bb5feb49-98":{"renderedLength":17885,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-97"},"bb5feb49-100":{"renderedLength":9511,"gzipLength":0,"brotliLength":0,"metaUid":"bb5feb49-99"}},"nodeMetas":{"bb5feb49-0":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/main.ts","moduleParts":{"starfish-form.mjs":"bb5feb49-1","main-c35b558b.mjs":"bb5feb49-86"},"imported":[{"uid":"bb5feb49-8"},{"uid":"bb5feb49-10"},{"uid":"bb5feb49-14"},{"uid":"bb5feb49-16"},{"uid":"bb5feb49-18"},{"uid":"bb5feb49-20"},{"uid":"bb5feb49-24"},{"uid":"bb5feb49-26"},{"uid":"bb5feb49-30"},{"uid":"bb5feb49-32"},{"uid":"bb5feb49-34"},{"uid":"bb5feb49-36"},{"uid":"bb5feb49-38"},{"uid":"bb5feb49-40"},{"uid":"bb5feb49-42"},{"uid":"bb5feb49-44"},{"uid":"bb5feb49-46"},{"uid":"bb5feb49-48"},{"uid":"bb5feb49-50"},{"uid":"bb5feb49-52"},{"uid":"bb5feb49-54"},{"uid":"bb5feb49-56"},{"uid":"bb5feb49-58"},{"uid":"bb5feb49-60"},{"uid":"bb5feb49-62"},{"uid":"bb5feb49-64"},{"uid":"bb5feb49-66"},{"uid":"bb5feb49-68"},{"uid":"bb5feb49-70"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-72"},{"uid":"bb5feb49-2"},{"uid":"bb5feb49-80"},{"uid":"bb5feb49-84"},{"uid":"bb5feb49-87","dynamic":true},{"uid":"bb5feb49-89","dynamic":true},{"uid":"bb5feb49-93","dynamic":true},{"uid":"bb5feb49-97","dynamic":true},{"uid":"bb5feb49-99","dynamic":true}],"importedBy":[],"isEntry":true},"bb5feb49-2":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/fieldConfig.ts","moduleParts":{"main-c35b558b.mjs":"bb5feb49-3"},"imported":[],"importedBy":[{"uid":"bb5feb49-0"},{"uid":"bb5feb49-8"},{"uid":"bb5feb49-10"},{"uid":"bb5feb49-26"},{"uid":"bb5feb49-30"},{"uid":"bb5feb49-32"},{"uid":"bb5feb49-34"},{"uid":"bb5feb49-36"},{"uid":"bb5feb49-38"},{"uid":"bb5feb49-44"},{"uid":"bb5feb49-46"},{"uid":"bb5feb49-50"},{"uid":"bb5feb49-52"},{"uid":"bb5feb49-54"},{"uid":"bb5feb49-56"},{"uid":"bb5feb49-58"},{"uid":"bb5feb49-60"},{"uid":"bb5feb49-62"},{"uid":"bb5feb49-64"},{"uid":"bb5feb49-66"},{"uid":"bb5feb49-68"},{"uid":"bb5feb49-70"},{"uid":"bb5feb49-87"},{"uid":"bb5feb49-89"}]},"bb5feb49-4":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/fieldProps.ts","moduleParts":{"main-c35b558b.mjs":"bb5feb49-5"},"imported":[],"importedBy":[{"uid":"bb5feb49-8"},{"uid":"bb5feb49-10"},{"uid":"bb5feb49-16"},{"uid":"bb5feb49-18"},{"uid":"bb5feb49-20"},{"uid":"bb5feb49-24"},{"uid":"bb5feb49-26"},{"uid":"bb5feb49-30"},{"uid":"bb5feb49-32"},{"uid":"bb5feb49-34"},{"uid":"bb5feb49-36"},{"uid":"bb5feb49-38"},{"uid":"bb5feb49-44"},{"uid":"bb5feb49-46"},{"uid":"bb5feb49-48"},{"uid":"bb5feb49-50"},{"uid":"bb5feb49-52"},{"uid":"bb5feb49-54"},{"uid":"bb5feb49-56"},{"uid":"bb5feb49-58"},{"uid":"bb5feb49-60"},{"uid":"bb5feb49-62"},{"uid":"bb5feb49-64"},{"uid":"bb5feb49-66"},{"uid":"bb5feb49-68"},{"uid":"bb5feb49-70"},{"uid":"bb5feb49-87"},{"uid":"bb5feb49-89"},{"uid":"bb5feb49-97"}]},"bb5feb49-6":{"id":"plugin-vue:export-helper","moduleParts":{"main-c35b558b.mjs":"bb5feb49-7"},"imported":[],"importedBy":[{"uid":"bb5feb49-8"},{"uid":"bb5feb49-10"},{"uid":"bb5feb49-14"},{"uid":"bb5feb49-16"},{"uid":"bb5feb49-18"},{"uid":"bb5feb49-20"},{"uid":"bb5feb49-24"},{"uid":"bb5feb49-26"},{"uid":"bb5feb49-30"},{"uid":"bb5feb49-32"},{"uid":"bb5feb49-34"},{"uid":"bb5feb49-36"},{"uid":"bb5feb49-38"},{"uid":"bb5feb49-44"},{"uid":"bb5feb49-46"},{"uid":"bb5feb49-48"},{"uid":"bb5feb49-50"},{"uid":"bb5feb49-52"},{"uid":"bb5feb49-54"},{"uid":"bb5feb49-56"},{"uid":"bb5feb49-58"},{"uid":"bb5feb49-60"},{"uid":"bb5feb49-62"},{"uid":"bb5feb49-64"},{"uid":"bb5feb49-66"},{"uid":"bb5feb49-68"},{"uid":"bb5feb49-70"},{"uid":"bb5feb49-84"},{"uid":"bb5feb49-87"},{"uid":"bb5feb49-89"},{"uid":"bb5feb49-93"},{"uid":"bb5feb49-97"},{"uid":"bb5feb49-99"}]},"bb5feb49-8":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfig.vue","moduleParts":{"main-c35b558b.mjs":"bb5feb49-9"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-104"},{"uid":"bb5feb49-105"},{"uid":"bb5feb49-106"},{"uid":"bb5feb49-107"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-108"},{"uid":"bb5feb49-2"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-10":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfigMult.vue","moduleParts":{"main-c35b558b.mjs":"bb5feb49-11"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-104"},{"uid":"bb5feb49-105"},{"uid":"bb5feb49-106"},{"uid":"bb5feb49-107"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-108"},{"uid":"bb5feb49-2"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-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-c35b558b.mjs":"bb5feb49-13"},"imported":[],"importedBy":[{"uid":"bb5feb49-14"}]},"bb5feb49-14":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/Loading.vue","moduleParts":{"main-c35b558b.mjs":"bb5feb49-15"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-109"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-12"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-16":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/action.vue","moduleParts":{"main-c35b558b.mjs":"bb5feb49-17"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-110"},{"uid":"bb5feb49-111"},{"uid":"bb5feb49-112"},{"uid":"bb5feb49-113"},{"uid":"bb5feb49-114"},{"uid":"bb5feb49-115"},{"uid":"bb5feb49-116"},{"uid":"bb5feb49-104"},{"uid":"bb5feb49-117"},{"uid":"bb5feb49-118"},{"uid":"bb5feb49-119"},{"uid":"bb5feb49-107"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-108"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-18":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/listConfig.vue","moduleParts":{"main-c35b558b.mjs":"bb5feb49-19"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-115"},{"uid":"bb5feb49-116"},{"uid":"bb5feb49-104"},{"uid":"bb5feb49-120"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-108"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-20":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/panel.vue","moduleParts":{"main-c35b558b.mjs":"bb5feb49-21"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-115"},{"uid":"bb5feb49-116"},{"uid":"bb5feb49-104"},{"uid":"bb5feb49-105"},{"uid":"bb5feb49-117"},{"uid":"bb5feb49-107"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-108"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-22":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/customHooks.ts","moduleParts":{"main-c35b558b.mjs":"bb5feb49-23"},"imported":[{"uid":"bb5feb49-101"}],"importedBy":[{"uid":"bb5feb49-24"},{"uid":"bb5feb49-26"},{"uid":"bb5feb49-30"},{"uid":"bb5feb49-32"},{"uid":"bb5feb49-34"},{"uid":"bb5feb49-36"},{"uid":"bb5feb49-38"},{"uid":"bb5feb49-44"},{"uid":"bb5feb49-46"},{"uid":"bb5feb49-48"},{"uid":"bb5feb49-50"},{"uid":"bb5feb49-52"},{"uid":"bb5feb49-54"},{"uid":"bb5feb49-56"},{"uid":"bb5feb49-58"},{"uid":"bb5feb49-60"},{"uid":"bb5feb49-62"},{"uid":"bb5feb49-64"},{"uid":"bb5feb49-66"},{"uid":"bb5feb49-68"},{"uid":"bb5feb49-70"},{"uid":"bb5feb49-87"},{"uid":"bb5feb49-89"}]},"bb5feb49-24":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/radiogroup.vue","moduleParts":{"main-c35b558b.mjs":"bb5feb49-25"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-121"},{"uid":"bb5feb49-122"},{"uid":"bb5feb49-107"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-22"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-26":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/CheckBox/index.vue","moduleParts":{"main-c35b558b.mjs":"bb5feb49-27"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-123"},{"uid":"bb5feb49-106"},{"uid":"bb5feb49-107"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-2"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-22"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-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-c35b558b.mjs":"bb5feb49-29"},"imported":[],"importedBy":[{"uid":"bb5feb49-30"}]},"bb5feb49-30":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/ColorSelect/index.vue","moduleParts":{"main-c35b558b.mjs":"bb5feb49-31"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-124"},{"uid":"bb5feb49-105"},{"uid":"bb5feb49-107"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-2"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-22"},{"uid":"bb5feb49-28"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-32":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Date/index.vue","moduleParts":{"main-c35b558b.mjs":"bb5feb49-33"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-125"},{"uid":"bb5feb49-107"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-2"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-22"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-34":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/DateTime/index.vue","moduleParts":{"main-c35b558b.mjs":"bb5feb49-35"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-125"},{"uid":"bb5feb49-107"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-2"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-22"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-36":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/InputNumber/index.vue","moduleParts":{"main-c35b558b.mjs":"bb5feb49-37"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-120"},{"uid":"bb5feb49-107"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-2"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-22"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-38":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Radio/index.vue","moduleParts":{"main-c35b558b.mjs":"bb5feb49-39"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-121"},{"uid":"bb5feb49-126"},{"uid":"bb5feb49-107"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-2"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-22"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-40":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/ruleform.json","moduleParts":{"main-c35b558b.mjs":"bb5feb49-41"},"imported":[],"importedBy":[{"uid":"bb5feb49-0"},{"uid":"bb5feb49-97"}]},"bb5feb49-42":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/rules.js","moduleParts":{"main-c35b558b.mjs":"bb5feb49-43"},"imported":[],"importedBy":[{"uid":"bb5feb49-0"},{"uid":"bb5feb49-97"}]},"bb5feb49-44":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Selected/index.vue","moduleParts":{"main-c35b558b.mjs":"bb5feb49-45"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-118"},{"uid":"bb5feb49-119"},{"uid":"bb5feb49-107"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-2"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-22"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-46":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Selecteds/index.vue","moduleParts":{"main-c35b558b.mjs":"bb5feb49-47"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-118"},{"uid":"bb5feb49-119"},{"uid":"bb5feb49-107"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-2"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-22"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-48":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/ShowRule/index.vue","moduleParts":{"main-c35b558b.mjs":"bb5feb49-49"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-116"},{"uid":"bb5feb49-107"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-22"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-50":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Slider/index.vue","moduleParts":{"main-c35b558b.mjs":"bb5feb49-51"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-127"},{"uid":"bb5feb49-107"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-2"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-22"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-52":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Switch/index.vue","moduleParts":{"main-c35b558b.mjs":"bb5feb49-53"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-128"},{"uid":"bb5feb49-107"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-2"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-22"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-54":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Text/index.vue","moduleParts":{"main-c35b558b.mjs":"bb5feb49-55"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-105"},{"uid":"bb5feb49-107"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-2"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-22"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-56":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/TextArea/index.vue","moduleParts":{"main-c35b558b.mjs":"bb5feb49-57"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-105"},{"uid":"bb5feb49-107"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-2"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-22"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-58":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Time/index.vue","moduleParts":{"main-c35b558b.mjs":"bb5feb49-59"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-129"},{"uid":"bb5feb49-107"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-2"},{"uid":"bb5feb49-22"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-60":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Divider.vue","moduleParts":{"main-c35b558b.mjs":"bb5feb49-61"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-130"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-2"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-22"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-62":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Info.vue","moduleParts":{"main-c35b558b.mjs":"bb5feb49-63"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-131"},{"uid":"bb5feb49-107"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-2"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-22"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-64":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Tabs.vue","moduleParts":{"main-c35b558b.mjs":"bb5feb49-65"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-132"},{"uid":"bb5feb49-133"},{"uid":"bb5feb49-134"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-2"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-22"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-66":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/collapse.vue","moduleParts":{"main-c35b558b.mjs":"bb5feb49-67"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-113"},{"uid":"bb5feb49-114"},{"uid":"bb5feb49-134"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-2"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-22"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-68":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/grid.vue","moduleParts":{"main-c35b558b.mjs":"bb5feb49-69"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-115"},{"uid":"bb5feb49-134"},{"uid":"bb5feb49-117"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-2"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-22"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-70":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/table.vue","moduleParts":{"main-c35b558b.mjs":"bb5feb49-71"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-134"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-2"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-22"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-72":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/styles/index.scss","moduleParts":{"main-c35b558b.mjs":"bb5feb49-73"},"imported":[],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-74":{"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-c35b558b.mjs":"bb5feb49-75"},"imported":[{"uid":"bb5feb49-145"}],"importedBy":[{"uid":"bb5feb49-80"}]},"bb5feb49-76":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/history.ts","moduleParts":{"main-c35b558b.mjs":"bb5feb49-77"},"imported":[{"uid":"bb5feb49-101"},{"uid":"bb5feb49-78"}],"importedBy":[{"uid":"bb5feb49-78"}]},"bb5feb49-78":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/form.ts","moduleParts":{"main-c35b558b.mjs":"bb5feb49-79"},"imported":[{"uid":"bb5feb49-101"},{"uid":"bb5feb49-76"}],"importedBy":[{"uid":"bb5feb49-80"},{"uid":"bb5feb49-76"}]},"bb5feb49-80":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/_.ts","moduleParts":{"main-c35b558b.mjs":"bb5feb49-81"},"imported":[{"uid":"bb5feb49-135"},{"uid":"bb5feb49-74"},{"uid":"bb5feb49-78"}],"importedBy":[{"uid":"bb5feb49-0"},{"uid":"bb5feb49-89"},{"uid":"bb5feb49-97"}]},"bb5feb49-82":{"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-c35b558b.mjs":"bb5feb49-83"},"imported":[],"importedBy":[{"uid":"bb5feb49-84"}]},"bb5feb49-84":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue","moduleParts":{"main-c35b558b.mjs":"bb5feb49-85"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-109"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-82"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-87":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/index.vue","moduleParts":{"index-32206a30.mjs":"bb5feb49-88"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-107"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-136"},{"uid":"bb5feb49-2"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-22"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-89":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","moduleParts":{"index-99892fc1.mjs":"bb5feb49-90"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-137"},{"uid":"bb5feb49-138"},{"uid":"bb5feb49-116"},{"uid":"bb5feb49-139"},{"uid":"bb5feb49-107"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-2"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-22"},{"uid":"bb5feb49-140"},{"uid":"bb5feb49-80"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-91":{"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-cad81869.mjs":"bb5feb49-92"},"imported":[],"importedBy":[{"uid":"bb5feb49-93"}]},"bb5feb49-93":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/formAction.vue","moduleParts":{"formAction-cad81869.mjs":"bb5feb49-94"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-141"},{"uid":"bb5feb49-134"},{"uid":"bb5feb49-105"},{"uid":"bb5feb49-142"},{"uid":"bb5feb49-137"},{"uid":"bb5feb49-139"},{"uid":"bb5feb49-143"},{"uid":"bb5feb49-116"},{"uid":"bb5feb49-107"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-144"},{"uid":"bb5feb49-91"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-95":{"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-c1995810.mjs":"bb5feb49-96"},"imported":[],"importedBy":[{"uid":"bb5feb49-97"}]},"bb5feb49-97":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/index.vue","moduleParts":{"index-c1995810.mjs":"bb5feb49-98"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-137"},{"uid":"bb5feb49-139"},{"uid":"bb5feb49-138"},{"uid":"bb5feb49-131"},{"uid":"bb5feb49-104"},{"uid":"bb5feb49-118"},{"uid":"bb5feb49-119"},{"uid":"bb5feb49-110"},{"uid":"bb5feb49-111"},{"uid":"bb5feb49-112"},{"uid":"bb5feb49-116"},{"uid":"bb5feb49-107"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-4"},{"uid":"bb5feb49-80"},{"uid":"bb5feb49-42"},{"uid":"bb5feb49-40"},{"uid":"bb5feb49-108"},{"uid":"bb5feb49-99"},{"uid":"bb5feb49-144"},{"uid":"bb5feb49-95"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"}]},"bb5feb49-99":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","moduleParts":{"starfish-form-dd44ab87.mjs":"bb5feb49-100"},"imported":[{"uid":"bb5feb49-102"},{"uid":"bb5feb49-103"},{"uid":"bb5feb49-141"},{"uid":"bb5feb49-134"},{"uid":"bb5feb49-101"},{"uid":"bb5feb49-6"}],"importedBy":[{"uid":"bb5feb49-0"},{"uid":"bb5feb49-97"}]},"bb5feb49-101":{"id":"vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-0"},{"uid":"bb5feb49-8"},{"uid":"bb5feb49-10"},{"uid":"bb5feb49-14"},{"uid":"bb5feb49-16"},{"uid":"bb5feb49-18"},{"uid":"bb5feb49-20"},{"uid":"bb5feb49-24"},{"uid":"bb5feb49-26"},{"uid":"bb5feb49-30"},{"uid":"bb5feb49-32"},{"uid":"bb5feb49-34"},{"uid":"bb5feb49-36"},{"uid":"bb5feb49-38"},{"uid":"bb5feb49-44"},{"uid":"bb5feb49-46"},{"uid":"bb5feb49-48"},{"uid":"bb5feb49-50"},{"uid":"bb5feb49-52"},{"uid":"bb5feb49-54"},{"uid":"bb5feb49-56"},{"uid":"bb5feb49-58"},{"uid":"bb5feb49-60"},{"uid":"bb5feb49-62"},{"uid":"bb5feb49-64"},{"uid":"bb5feb49-66"},{"uid":"bb5feb49-68"},{"uid":"bb5feb49-70"},{"uid":"bb5feb49-84"},{"uid":"bb5feb49-87"},{"uid":"bb5feb49-89"},{"uid":"bb5feb49-93"},{"uid":"bb5feb49-97"},{"uid":"bb5feb49-99"},{"uid":"bb5feb49-22"},{"uid":"bb5feb49-78"},{"uid":"bb5feb49-76"}],"isExternal":true},"bb5feb49-102":{"id":"element-plus/es","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-8"},{"uid":"bb5feb49-10"},{"uid":"bb5feb49-14"},{"uid":"bb5feb49-16"},{"uid":"bb5feb49-18"},{"uid":"bb5feb49-20"},{"uid":"bb5feb49-24"},{"uid":"bb5feb49-26"},{"uid":"bb5feb49-30"},{"uid":"bb5feb49-32"},{"uid":"bb5feb49-34"},{"uid":"bb5feb49-36"},{"uid":"bb5feb49-38"},{"uid":"bb5feb49-44"},{"uid":"bb5feb49-46"},{"uid":"bb5feb49-48"},{"uid":"bb5feb49-50"},{"uid":"bb5feb49-52"},{"uid":"bb5feb49-54"},{"uid":"bb5feb49-56"},{"uid":"bb5feb49-58"},{"uid":"bb5feb49-60"},{"uid":"bb5feb49-62"},{"uid":"bb5feb49-64"},{"uid":"bb5feb49-66"},{"uid":"bb5feb49-68"},{"uid":"bb5feb49-70"},{"uid":"bb5feb49-84"},{"uid":"bb5feb49-87"},{"uid":"bb5feb49-89"},{"uid":"bb5feb49-93"},{"uid":"bb5feb49-97"},{"uid":"bb5feb49-99"}],"isExternal":true},"bb5feb49-103":{"id":"element-plus/es/components/base/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-8"},{"uid":"bb5feb49-10"},{"uid":"bb5feb49-14"},{"uid":"bb5feb49-16"},{"uid":"bb5feb49-18"},{"uid":"bb5feb49-20"},{"uid":"bb5feb49-24"},{"uid":"bb5feb49-26"},{"uid":"bb5feb49-30"},{"uid":"bb5feb49-32"},{"uid":"bb5feb49-34"},{"uid":"bb5feb49-36"},{"uid":"bb5feb49-38"},{"uid":"bb5feb49-44"},{"uid":"bb5feb49-46"},{"uid":"bb5feb49-48"},{"uid":"bb5feb49-50"},{"uid":"bb5feb49-52"},{"uid":"bb5feb49-54"},{"uid":"bb5feb49-56"},{"uid":"bb5feb49-58"},{"uid":"bb5feb49-60"},{"uid":"bb5feb49-62"},{"uid":"bb5feb49-64"},{"uid":"bb5feb49-66"},{"uid":"bb5feb49-68"},{"uid":"bb5feb49-70"},{"uid":"bb5feb49-84"},{"uid":"bb5feb49-87"},{"uid":"bb5feb49-89"},{"uid":"bb5feb49-93"},{"uid":"bb5feb49-97"},{"uid":"bb5feb49-99"}],"isExternal":true},"bb5feb49-104":{"id":"element-plus/es/components/icon/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-8"},{"uid":"bb5feb49-10"},{"uid":"bb5feb49-16"},{"uid":"bb5feb49-18"},{"uid":"bb5feb49-20"},{"uid":"bb5feb49-97"}],"isExternal":true},"bb5feb49-105":{"id":"element-plus/es/components/input/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-8"},{"uid":"bb5feb49-10"},{"uid":"bb5feb49-20"},{"uid":"bb5feb49-30"},{"uid":"bb5feb49-54"},{"uid":"bb5feb49-56"},{"uid":"bb5feb49-93"}],"isExternal":true},"bb5feb49-106":{"id":"element-plus/es/components/checkbox/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-8"},{"uid":"bb5feb49-10"},{"uid":"bb5feb49-26"}],"isExternal":true},"bb5feb49-107":{"id":"element-plus/es/components/tooltip/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-8"},{"uid":"bb5feb49-10"},{"uid":"bb5feb49-16"},{"uid":"bb5feb49-20"},{"uid":"bb5feb49-24"},{"uid":"bb5feb49-26"},{"uid":"bb5feb49-30"},{"uid":"bb5feb49-32"},{"uid":"bb5feb49-34"},{"uid":"bb5feb49-36"},{"uid":"bb5feb49-38"},{"uid":"bb5feb49-44"},{"uid":"bb5feb49-46"},{"uid":"bb5feb49-48"},{"uid":"bb5feb49-50"},{"uid":"bb5feb49-52"},{"uid":"bb5feb49-54"},{"uid":"bb5feb49-56"},{"uid":"bb5feb49-58"},{"uid":"bb5feb49-62"},{"uid":"bb5feb49-87"},{"uid":"bb5feb49-89"},{"uid":"bb5feb49-93"},{"uid":"bb5feb49-97"}],"isExternal":true},"bb5feb49-108":{"id":"@element-plus/icons-vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-8"},{"uid":"bb5feb49-10"},{"uid":"bb5feb49-16"},{"uid":"bb5feb49-18"},{"uid":"bb5feb49-20"},{"uid":"bb5feb49-97"}],"isExternal":true},"bb5feb49-109":{"id":"element-plus/es/components/loading/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-14"},{"uid":"bb5feb49-84"}],"isExternal":true},"bb5feb49-110":{"id":"element-plus/es/components/dropdown/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-16"},{"uid":"bb5feb49-97"}],"isExternal":true},"bb5feb49-111":{"id":"element-plus/es/components/dropdown-menu/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-16"},{"uid":"bb5feb49-97"}],"isExternal":true},"bb5feb49-112":{"id":"element-plus/es/components/dropdown-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-16"},{"uid":"bb5feb49-97"}],"isExternal":true},"bb5feb49-113":{"id":"element-plus/es/components/collapse/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-16"},{"uid":"bb5feb49-66"}],"isExternal":true},"bb5feb49-114":{"id":"element-plus/es/components/collapse-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-16"},{"uid":"bb5feb49-66"}],"isExternal":true},"bb5feb49-115":{"id":"element-plus/es/components/row/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-16"},{"uid":"bb5feb49-18"},{"uid":"bb5feb49-20"},{"uid":"bb5feb49-68"}],"isExternal":true},"bb5feb49-116":{"id":"element-plus/es/components/button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-16"},{"uid":"bb5feb49-18"},{"uid":"bb5feb49-20"},{"uid":"bb5feb49-48"},{"uid":"bb5feb49-89"},{"uid":"bb5feb49-93"},{"uid":"bb5feb49-97"}],"isExternal":true},"bb5feb49-117":{"id":"element-plus/es/components/col/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-16"},{"uid":"bb5feb49-20"},{"uid":"bb5feb49-68"}],"isExternal":true},"bb5feb49-118":{"id":"element-plus/es/components/select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-16"},{"uid":"bb5feb49-44"},{"uid":"bb5feb49-46"},{"uid":"bb5feb49-97"}],"isExternal":true},"bb5feb49-119":{"id":"element-plus/es/components/option/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-16"},{"uid":"bb5feb49-44"},{"uid":"bb5feb49-46"},{"uid":"bb5feb49-97"}],"isExternal":true},"bb5feb49-120":{"id":"element-plus/es/components/input-number/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-18"},{"uid":"bb5feb49-36"}],"isExternal":true},"bb5feb49-121":{"id":"element-plus/es/components/radio-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-24"},{"uid":"bb5feb49-38"}],"isExternal":true},"bb5feb49-122":{"id":"element-plus/es/components/radio-button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-24"}],"isExternal":true},"bb5feb49-123":{"id":"element-plus/es/components/checkbox-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-26"}],"isExternal":true},"bb5feb49-124":{"id":"element-plus/es/components/color-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-30"}],"isExternal":true},"bb5feb49-125":{"id":"element-plus/es/components/date-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-32"},{"uid":"bb5feb49-34"}],"isExternal":true},"bb5feb49-126":{"id":"element-plus/es/components/radio/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-38"}],"isExternal":true},"bb5feb49-127":{"id":"element-plus/es/components/slider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-50"}],"isExternal":true},"bb5feb49-128":{"id":"element-plus/es/components/switch/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-52"}],"isExternal":true},"bb5feb49-129":{"id":"element-plus/es/components/time-select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-58"}],"isExternal":true},"bb5feb49-130":{"id":"element-plus/es/components/divider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-60"}],"isExternal":true},"bb5feb49-131":{"id":"element-plus/es/components/alert/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-62"},{"uid":"bb5feb49-97"}],"isExternal":true},"bb5feb49-132":{"id":"element-plus/es/components/tabs/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-64"}],"isExternal":true},"bb5feb49-133":{"id":"element-plus/es/components/tab-pane/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-64"}],"isExternal":true},"bb5feb49-134":{"id":"element-plus/es/components/form-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-64"},{"uid":"bb5feb49-66"},{"uid":"bb5feb49-68"},{"uid":"bb5feb49-70"},{"uid":"bb5feb49-93"},{"uid":"bb5feb49-99"}],"isExternal":true},"bb5feb49-135":{"id":"element-plus","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-80"}],"isExternal":true},"bb5feb49-136":{"id":"wangeditor","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-87"}],"isExternal":true},"bb5feb49-137":{"id":"element-plus/es/components/container/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-89"},{"uid":"bb5feb49-93"},{"uid":"bb5feb49-97"}],"isExternal":true},"bb5feb49-138":{"id":"element-plus/es/components/footer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-89"},{"uid":"bb5feb49-97"}],"isExternal":true},"bb5feb49-139":{"id":"element-plus/es/components/main/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-89"},{"uid":"bb5feb49-93"},{"uid":"bb5feb49-97"}],"isExternal":true},"bb5feb49-140":{"id":"jsoneditor","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-89"}],"isExternal":true},"bb5feb49-141":{"id":"element-plus/es/components/form/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-93"},{"uid":"bb5feb49-99"}],"isExternal":true},"bb5feb49-142":{"id":"element-plus/es/components/aside/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-93"}],"isExternal":true},"bb5feb49-143":{"id":"element-plus/es/components/scrollbar/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-93"}],"isExternal":true},"bb5feb49-144":{"id":"vue-codemirror","moduleParts":{},"imported":[],"importedBy":[{"uid":"bb5feb49-93"},{"uid":"bb5feb49-97"}],"isExternal":true},"bb5feb49-145":{"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":"bb5feb49-74"}]}},"env":{"rollup":"3.29.4"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
4826
4826
 
4827
4827
  const run = () => {
4828
4828
  const width = window.innerWidth;