starfish-form-custom 1.0.10 → 1.0.11
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.
- package/dist/{formAction-98d7b1d5.mjs → formAction-8cefef30.mjs} +1 -1
- package/dist/{index-3a0f2ea7.mjs → index-188c4cca.mjs} +1 -1
- package/dist/{index-a096155f.mjs → index-e8e56d6c.mjs} +1 -1
- package/dist/{index-5d524f9b.mjs → index-ebf27278.mjs} +2 -2
- package/dist/{main-8985b8a9.mjs → main-7ff41eda.mjs} +61 -14
- package/dist/{starfish-form-169cfab7.mjs → starfish-form-6775ebbc.mjs} +1 -1
- package/dist/starfish-form.mjs +1 -1
- package/package.json +1 -1
- package/src/components/InputNumber/index.vue +3 -3
- package/src/utils/fieldConfig.ts +78 -6
- package/stats.html +1 -1
|
@@ -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-
|
|
14
|
+
import { _ as _export_sfc } from './main-7ff41eda.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-
|
|
6
|
+
import { _ as _export_sfc, g as getFormConfig, f as fieldProps, u as useWatch } from './main-7ff41eda.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-
|
|
9
|
+
import { _ as _export_sfc, a as _, g as getFormConfig, f as fieldProps, u as useWatch } from './main-7ff41eda.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';
|
|
@@ -15,9 +15,9 @@ import 'element-plus/es/components/select/style/css';
|
|
|
15
15
|
import 'element-plus/es/components/option/style/css';
|
|
16
16
|
import 'element-plus/es/components/tooltip/style/css';
|
|
17
17
|
import { defineComponent, getCurrentInstance, inject, computed, ref, resolveComponent, openBlock, createElementBlock, normalizeClass, createElementVNode, normalizeStyle, toDisplayString, createCommentVNode, createBlock, withCtx, Fragment, renderList, createVNode, createTextVNode } from 'vue';
|
|
18
|
-
import { _ as _export_sfc, a as _, f as fieldProps, r as ruleList, b as ruleJsonData } from './main-
|
|
18
|
+
import { _ as _export_sfc, a as _, f as fieldProps, r as ruleList, b as ruleJsonData } from './main-7ff41eda.mjs';
|
|
19
19
|
import { Delete } from '@element-plus/icons-vue';
|
|
20
|
-
import Dynamicform from './starfish-form-
|
|
20
|
+
import Dynamicform from './starfish-form-6775ebbc.mjs';
|
|
21
21
|
import { Codemirror } from 'vue-codemirror';
|
|
22
22
|
import 'element-plus/es/components/input/style/css';
|
|
23
23
|
import 'element-plus/es/components/checkbox/style/css';
|
|
@@ -774,6 +774,48 @@ function getMoren(fieldName, component, label) {
|
|
|
774
774
|
}
|
|
775
775
|
}
|
|
776
776
|
},
|
|
777
|
+
size: {
|
|
778
|
+
ControlType: "Radio",
|
|
779
|
+
data: {
|
|
780
|
+
fieldName: "size",
|
|
781
|
+
tip: "",
|
|
782
|
+
label: "计数器尺寸类型",
|
|
783
|
+
placeholder: "",
|
|
784
|
+
showRule: "{}",
|
|
785
|
+
required: false,
|
|
786
|
+
rule: "[]",
|
|
787
|
+
itemConfig: {
|
|
788
|
+
value: "large",
|
|
789
|
+
id: 1,
|
|
790
|
+
items: [
|
|
791
|
+
{
|
|
792
|
+
label: "large",
|
|
793
|
+
value: "large",
|
|
794
|
+
select: true,
|
|
795
|
+
id: 1
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
label: "medium",
|
|
799
|
+
value: "medium",
|
|
800
|
+
select: false,
|
|
801
|
+
id: 2
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
label: "small",
|
|
805
|
+
value: "small",
|
|
806
|
+
select: false,
|
|
807
|
+
id: 3
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
label: "mini",
|
|
811
|
+
value: "mini",
|
|
812
|
+
select: false,
|
|
813
|
+
id: 4
|
|
814
|
+
}
|
|
815
|
+
]
|
|
816
|
+
}
|
|
817
|
+
}
|
|
818
|
+
},
|
|
777
819
|
InputNumber: {
|
|
778
820
|
ControlType: "InputNumber",
|
|
779
821
|
data: {
|
|
@@ -2439,13 +2481,13 @@ function _sfc_render$g(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2439
2481
|
modelValue: _ctx.data[_ctx.item.data.fieldName],
|
|
2440
2482
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => _ctx.data[_ctx.item.data.fieldName] = $event),
|
|
2441
2483
|
"controls-position": _ctx.item.data.type == 2 ? "right" : "",
|
|
2442
|
-
size: _ctx.size,
|
|
2443
|
-
precision: _ctx.item.data.precision,
|
|
2444
2484
|
disabled: _ctx.item.data.state === "disabled",
|
|
2445
2485
|
readonly: _ctx.item.data.state === "readonly",
|
|
2486
|
+
precision: _ctx.item.data.precision,
|
|
2487
|
+
size: _ctx.size,
|
|
2446
2488
|
onFocus: _cache[2] || (_cache[2] = ($event) => _ctx.execFunc("onFocus")),
|
|
2447
2489
|
onBlur: _cache[3] || (_cache[3] = ($event) => _ctx.execFunc("onBlur"))
|
|
2448
|
-
}, null, 8, ["modelValue", "controls-position", "
|
|
2490
|
+
}, null, 8, ["modelValue", "controls-position", "disabled", "readonly", "precision", "size"])) : createCommentVNode("", true)
|
|
2449
2491
|
], 4)
|
|
2450
2492
|
], 2);
|
|
2451
2493
|
}
|
|
@@ -4614,10 +4656,13 @@ const state = reactive({
|
|
|
4614
4656
|
});
|
|
4615
4657
|
class Form {
|
|
4616
4658
|
updateAllFormList(allFormList) {
|
|
4617
|
-
|
|
4618
|
-
|
|
4619
|
-
|
|
4620
|
-
|
|
4659
|
+
const validList = allFormList.filter(
|
|
4660
|
+
(item) => item && item.ControlType && item.id
|
|
4661
|
+
);
|
|
4662
|
+
console.log("更新表单列表:", validList);
|
|
4663
|
+
state.allFormList = validList;
|
|
4664
|
+
if (state.currentIndex != -1 && validList[state.currentIndex]) {
|
|
4665
|
+
state.curControl = validList[state.currentIndex];
|
|
4621
4666
|
}
|
|
4622
4667
|
}
|
|
4623
4668
|
setHistory() {
|
|
@@ -4625,7 +4670,9 @@ class Form {
|
|
|
4625
4670
|
allFormList: window.VueContext.$Flex.deepClone(state.allFormList),
|
|
4626
4671
|
currentIndex: state.currentIndex,
|
|
4627
4672
|
currentId: state.currentId,
|
|
4628
|
-
curControl: window.VueContext.$Flex.deepClone(
|
|
4673
|
+
curControl: window.VueContext.$Flex.deepClone(
|
|
4674
|
+
state.allFormList[state.currentIndex]
|
|
4675
|
+
)
|
|
4629
4676
|
});
|
|
4630
4677
|
}
|
|
4631
4678
|
setFormCurrentIndex(index) {
|
|
@@ -4755,7 +4802,7 @@ class Form {
|
|
|
4755
4802
|
if (typeof item.data.itemConfig.value == "string") {
|
|
4756
4803
|
data[item.data.fieldName] = item.data.itemConfig.value;
|
|
4757
4804
|
} else {
|
|
4758
|
-
data[item.data.fieldName] = [...item.data.itemConfig.value];
|
|
4805
|
+
data[item.data.fieldName] = [...item.data.itemConfig.value || []];
|
|
4759
4806
|
}
|
|
4760
4807
|
} else {
|
|
4761
4808
|
data[item.data.fieldName] = item.data.default;
|
|
@@ -5127,7 +5174,7 @@ Object.keys(files).forEach((fileName) => {
|
|
|
5127
5174
|
}
|
|
5128
5175
|
});
|
|
5129
5176
|
const RichText = defineAsyncComponent({
|
|
5130
|
-
loader: () => import('./index-
|
|
5177
|
+
loader: () => import('./index-188c4cca.mjs'),
|
|
5131
5178
|
loadingComponent: Loading
|
|
5132
5179
|
});
|
|
5133
5180
|
RichText.ControlType = "RichText";
|
|
@@ -5136,7 +5183,7 @@ RichText.icon = "icon-textEdit";
|
|
|
5136
5183
|
RichText.formConfig = getFormConfig("RichText");
|
|
5137
5184
|
utilFuns[RichText.ControlType] = RichText;
|
|
5138
5185
|
const jsonEditor = defineAsyncComponent({
|
|
5139
|
-
loader: () => import('./index-
|
|
5186
|
+
loader: () => import('./index-e8e56d6c.mjs'),
|
|
5140
5187
|
loadingComponent: Loading
|
|
5141
5188
|
});
|
|
5142
5189
|
jsonEditor.ControlType = "JsonEditor";
|
|
@@ -5146,14 +5193,14 @@ jsonEditor.formConfig = getFormConfig("JsonEditor", [{ fieldName: "default", com
|
|
|
5146
5193
|
jsonEditor.rule = _.getJsonValidate();
|
|
5147
5194
|
utilFuns[jsonEditor.ControlType] = jsonEditor;
|
|
5148
5195
|
const formAction = defineAsyncComponent({
|
|
5149
|
-
loader: () => import('./formAction-
|
|
5196
|
+
loader: () => import('./formAction-8cefef30.mjs'),
|
|
5150
5197
|
loadingComponent: Loading
|
|
5151
5198
|
});
|
|
5152
5199
|
formAction.ControlType = "FormAction";
|
|
5153
5200
|
formAction.isHide = true;
|
|
5154
5201
|
utilFuns[formAction.ControlType] = formAction;
|
|
5155
5202
|
const Rule = defineAsyncComponent({
|
|
5156
|
-
loader: () => import('./index-
|
|
5203
|
+
loader: () => import('./index-ebf27278.mjs'),
|
|
5157
5204
|
loadingComponent: Loading
|
|
5158
5205
|
});
|
|
5159
5206
|
Rule.ControlType = "Rule";
|
|
@@ -5162,7 +5209,7 @@ utilFuns[Rule.ControlType] = Rule;
|
|
|
5162
5209
|
const install = (app) => {
|
|
5163
5210
|
app.config.globalProperties.$formcomponents = utilFuns;
|
|
5164
5211
|
};
|
|
5165
|
-
const Dynamicform = defineAsyncComponent(() => import('./starfish-form-
|
|
5212
|
+
const Dynamicform = defineAsyncComponent(() => import('./starfish-form-6775ebbc.mjs'));
|
|
5166
5213
|
const main = {
|
|
5167
5214
|
install
|
|
5168
5215
|
};
|
|
@@ -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-
|
|
6
|
+
import { _ as _export_sfc } from './main-7ff41eda.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';
|
package/dist/starfish-form.mjs
CHANGED
package/package.json
CHANGED
|
@@ -33,18 +33,18 @@
|
|
|
33
33
|
:controls-position="item.data.type == 2 ? 'right' : ''"
|
|
34
34
|
:size="size"
|
|
35
35
|
:precision="item.data.precision"
|
|
36
|
-
v-if="drag"
|
|
37
36
|
:disabled="item.data.state === 'disabled'"
|
|
38
37
|
:readonly="item.data.state === 'readonly'"
|
|
38
|
+
v-if="drag"
|
|
39
39
|
/>
|
|
40
40
|
<el-input-number
|
|
41
41
|
v-model="data[item.data.fieldName]"
|
|
42
42
|
v-if="!drag"
|
|
43
43
|
:controls-position="item.data.type == 2 ? 'right' : ''"
|
|
44
|
-
:size="size"
|
|
45
|
-
:precision="item.data.precision"
|
|
46
44
|
:disabled="item.data.state === 'disabled'"
|
|
47
45
|
:readonly="item.data.state === 'readonly'"
|
|
46
|
+
:precision="item.data.precision"
|
|
47
|
+
:size="size"
|
|
48
48
|
@focus="execFunc('onFocus')"
|
|
49
49
|
@blur="execFunc('onBlur')"
|
|
50
50
|
/>
|
package/src/utils/fieldConfig.ts
CHANGED
|
@@ -35,7 +35,7 @@ export interface fields {
|
|
|
35
35
|
type?: number;
|
|
36
36
|
size?: string | number;
|
|
37
37
|
itemConfig?: any;
|
|
38
|
-
formConfig?:any;
|
|
38
|
+
formConfig?: any;
|
|
39
39
|
trs?: fieldsTrs[];
|
|
40
40
|
columns?: Columns[];
|
|
41
41
|
items?: Columns[];
|
|
@@ -371,7 +371,7 @@ const fieldsMap: any = {
|
|
|
371
371
|
required: false,
|
|
372
372
|
rule: "[]",
|
|
373
373
|
default: false,
|
|
374
|
-
arrangeMent:
|
|
374
|
+
arrangeMent: "horizontal",
|
|
375
375
|
state: "normal", // 状态:normal, disabled, readonly
|
|
376
376
|
itemConfig: {
|
|
377
377
|
value: "选项1",
|
|
@@ -487,7 +487,7 @@ const fieldsMap: any = {
|
|
|
487
487
|
rule: "[]",
|
|
488
488
|
default: false,
|
|
489
489
|
state: "normal",
|
|
490
|
-
arrangeMent:
|
|
490
|
+
arrangeMent: "horizontal", // 布局方式:horizontal, vertical
|
|
491
491
|
itemConfig: {
|
|
492
492
|
value: ["选项1"],
|
|
493
493
|
items: [
|
|
@@ -507,11 +507,37 @@ const fieldsMap: any = {
|
|
|
507
507
|
},
|
|
508
508
|
},
|
|
509
509
|
};
|
|
510
|
-
type fieldMap =
|
|
510
|
+
type fieldMap =
|
|
511
|
+
| "default"
|
|
512
|
+
| "placeholder"
|
|
513
|
+
| "min"
|
|
514
|
+
| "max"
|
|
515
|
+
| "itemConfig"
|
|
516
|
+
| "type"
|
|
517
|
+
| "columns"
|
|
518
|
+
| "infotype"
|
|
519
|
+
| "effect"
|
|
520
|
+
| "size"
|
|
521
|
+
| "color"
|
|
522
|
+
| "dividerColor"
|
|
523
|
+
| "InputNumber"
|
|
524
|
+
| "multiple"
|
|
525
|
+
| "gutter"
|
|
526
|
+
| "minLength"
|
|
527
|
+
| "maxLength"
|
|
528
|
+
| "state"
|
|
529
|
+
| "autoHeight"
|
|
530
|
+
| "format"
|
|
531
|
+
| "precision"
|
|
532
|
+
| "arrangeMent";
|
|
511
533
|
|
|
512
534
|
type morenFields = Partial<Record<fieldMap, FormConfig>>;
|
|
513
535
|
|
|
514
|
-
function getMoren(
|
|
536
|
+
function getMoren(
|
|
537
|
+
fieldName: string,
|
|
538
|
+
component: string,
|
|
539
|
+
label?: string
|
|
540
|
+
): FormConfig {
|
|
515
541
|
const map: morenFields = {
|
|
516
542
|
default: {
|
|
517
543
|
ControlType: "Text",
|
|
@@ -798,6 +824,48 @@ function getMoren(fieldName: string, component: string, label?: string): FormCon
|
|
|
798
824
|
},
|
|
799
825
|
},
|
|
800
826
|
},
|
|
827
|
+
size: {
|
|
828
|
+
ControlType: "Radio",
|
|
829
|
+
data: {
|
|
830
|
+
fieldName: "size",
|
|
831
|
+
tip: "",
|
|
832
|
+
label: "计数器尺寸类型",
|
|
833
|
+
placeholder: "",
|
|
834
|
+
showRule: "{}",
|
|
835
|
+
required: false,
|
|
836
|
+
rule: "[]",
|
|
837
|
+
itemConfig: {
|
|
838
|
+
value: "large",
|
|
839
|
+
id: 1,
|
|
840
|
+
items: [
|
|
841
|
+
{
|
|
842
|
+
label: "large",
|
|
843
|
+
value: "large",
|
|
844
|
+
select: true,
|
|
845
|
+
id: 1,
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
label: "medium",
|
|
849
|
+
value: "medium",
|
|
850
|
+
select: false,
|
|
851
|
+
id: 2,
|
|
852
|
+
},
|
|
853
|
+
{
|
|
854
|
+
label: "small",
|
|
855
|
+
value: "small",
|
|
856
|
+
select: false,
|
|
857
|
+
id: 3,
|
|
858
|
+
},
|
|
859
|
+
{
|
|
860
|
+
label: "mini",
|
|
861
|
+
value: "mini",
|
|
862
|
+
select: false,
|
|
863
|
+
id: 4,
|
|
864
|
+
},
|
|
865
|
+
],
|
|
866
|
+
},
|
|
867
|
+
},
|
|
868
|
+
},
|
|
801
869
|
InputNumber: {
|
|
802
870
|
ControlType: "InputNumber",
|
|
803
871
|
data: {
|
|
@@ -878,7 +946,11 @@ interface FormConfigReturn {
|
|
|
878
946
|
* @param filterField 过滤表单不要的配置
|
|
879
947
|
* @returns
|
|
880
948
|
*/
|
|
881
|
-
function getFormConfig(
|
|
949
|
+
function getFormConfig(
|
|
950
|
+
componentName: string,
|
|
951
|
+
config: Config[] = [],
|
|
952
|
+
filterField: string[] = []
|
|
953
|
+
): FormConfigReturn {
|
|
882
954
|
if (!fieldsMap[componentName]) {
|
|
883
955
|
return {
|
|
884
956
|
data(): any {
|
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":"4f68c1b0-1"},{"name":"main-8985b8a9.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":"4f68c1b0-3","name":"fieldConfig.ts"},{"uid":"4f68c1b0-5","name":"fieldProps.ts"},{"uid":"4f68c1b0-23","name":"customHooks.ts"}]},{"name":"common","children":[{"uid":"4f68c1b0-9","name":"KeyValueConfig.vue"},{"uid":"4f68c1b0-11","name":"KeyValueConfigMult.vue"},{"uid":"4f68c1b0-13","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"4f68c1b0-15","name":"Loading.vue"},{"uid":"4f68c1b0-17","name":"action.vue"},{"uid":"4f68c1b0-19","name":"listConfig.vue"},{"uid":"4f68c1b0-21","name":"panel.vue"},{"uid":"4f68c1b0-25","name":"radiogroup.vue"}]},{"name":"components","children":[{"name":"CheckBox/index.vue","uid":"4f68c1b0-27"},{"name":"ColorSelect","children":[{"uid":"4f68c1b0-29","name":"index.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"4f68c1b0-31","name":"index.vue"}]},{"name":"Date/index.vue","uid":"4f68c1b0-33"},{"name":"DateTime/index.vue","uid":"4f68c1b0-35"},{"name":"InputNumber/index.vue","uid":"4f68c1b0-37"},{"name":"Radio/index.vue","uid":"4f68c1b0-39"},{"name":"Rule","children":[{"uid":"4f68c1b0-41","name":"ruleform.json"},{"uid":"4f68c1b0-43","name":"rules.js"}]},{"name":"Selected/index.vue","uid":"4f68c1b0-45"},{"name":"Selecteds/index.vue","uid":"4f68c1b0-47"},{"name":"ShowRule/index.vue","uid":"4f68c1b0-49"},{"name":"Slider/index.vue","uid":"4f68c1b0-51"},{"name":"Switch/index.vue","uid":"4f68c1b0-53"},{"name":"Text/index.vue","uid":"4f68c1b0-55"},{"name":"TextArea/index.vue","uid":"4f68c1b0-57"},{"name":"Time/index.vue","uid":"4f68c1b0-59"}]},{"name":"layout","children":[{"uid":"4f68c1b0-61","name":"Divider.vue"},{"uid":"4f68c1b0-63","name":"Info.vue"},{"uid":"4f68c1b0-65","name":"Tabs.vue"},{"uid":"4f68c1b0-67","name":"collapse.vue"},{"uid":"4f68c1b0-69","name":"grid.vue"},{"uid":"4f68c1b0-71","name":"table.vue"}]},{"name":"styles/index.scss","uid":"4f68c1b0-73"},{"uid":"4f68c1b0-86","name":"main.ts"}]},{"name":"editor/src","children":[{"name":"controller","children":[{"uid":"4f68c1b0-77","name":"history.ts"},{"uid":"4f68c1b0-79","name":"form.ts"}]},{"name":"utils/_.ts","uid":"4f68c1b0-81"},{"name":"common","children":[{"uid":"4f68c1b0-83","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"4f68c1b0-85","name":"Loading.vue"}]}]}]},{"name":"node_modules/.pnpm/nanoid@4.0.0/node_modules/nanoid/index.browser.js","uid":"4f68c1b0-75"}]},{"uid":"4f68c1b0-7","name":"plugin-vue:export-helper"}]},{"name":"index-3a0f2ea7.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/index.vue","uid":"4f68c1b0-88"}]},{"name":"index-a096155f.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","uid":"4f68c1b0-90"}]},{"name":"formAction-98d7b1d5.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common","children":[{"uid":"4f68c1b0-92","name":"formAction.vue?vue&type=style&index=0&lang.scss"},{"uid":"4f68c1b0-94","name":"formAction.vue"}]}]},{"name":"index-5d524f9b.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule","children":[{"uid":"4f68c1b0-96","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"4f68c1b0-98","name":"index.vue"}]}]},{"name":"starfish-form-169cfab7.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","uid":"4f68c1b0-100"}]}],"isRoot":true},"nodeParts":{"4f68c1b0-1":{"id":"starfish-form.mjs","gzipLength":0,"brotliLength":0,"renderedLength":1902,"metaUid":"4f68c1b0-0"},"4f68c1b0-3":{"renderedLength":16921,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-2"},"4f68c1b0-5":{"renderedLength":567,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-4"},"4f68c1b0-7":{"renderedLength":159,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-6"},"4f68c1b0-9":{"renderedLength":8660,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-8"},"4f68c1b0-11":{"renderedLength":8485,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-10"},"4f68c1b0-13":{"renderedLength":103,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-12"},"4f68c1b0-15":{"renderedLength":404,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-14"},"4f68c1b0-17":{"renderedLength":8527,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-16"},"4f68c1b0-19":{"renderedLength":3223,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-18"},"4f68c1b0-21":{"renderedLength":5397,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-20"},"4f68c1b0-23":{"renderedLength":482,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-22"},"4f68c1b0-25":{"renderedLength":2228,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-24"},"4f68c1b0-27":{"renderedLength":4412,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-26"},"4f68c1b0-29":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-28"},"4f68c1b0-31":{"renderedLength":3864,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-30"},"4f68c1b0-33":{"renderedLength":3989,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-32"},"4f68c1b0-35":{"renderedLength":3294,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-34"},"4f68c1b0-37":{"renderedLength":3966,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-36"},"4f68c1b0-39":{"renderedLength":4364,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-38"},"4f68c1b0-41":{"renderedLength":5040,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-40"},"4f68c1b0-43":{"renderedLength":2564,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-42"},"4f68c1b0-45":{"renderedLength":4564,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-44"},"4f68c1b0-47":{"renderedLength":4626,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-46"},"4f68c1b0-49":{"renderedLength":4133,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-48"},"4f68c1b0-51":{"renderedLength":2944,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-50"},"4f68c1b0-53":{"renderedLength":2938,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-52"},"4f68c1b0-55":{"renderedLength":4047,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-54"},"4f68c1b0-57":{"renderedLength":4226,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-56"},"4f68c1b0-59":{"renderedLength":3240,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-58"},"4f68c1b0-61":{"renderedLength":1315,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-60"},"4f68c1b0-63":{"renderedLength":2999,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-62"},"4f68c1b0-65":{"renderedLength":5888,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-64"},"4f68c1b0-67":{"renderedLength":6238,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-66"},"4f68c1b0-69":{"renderedLength":6248,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-68"},"4f68c1b0-71":{"renderedLength":5731,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-70"},"4f68c1b0-73":{"renderedLength":17,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-72"},"4f68c1b0-75":{"renderedLength":350,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-74"},"4f68c1b0-77":{"renderedLength":1613,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-76"},"4f68c1b0-79":{"renderedLength":5852,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-78"},"4f68c1b0-81":{"renderedLength":9841,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-80"},"4f68c1b0-83":{"renderedLength":101,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-82"},"4f68c1b0-85":{"renderedLength":390,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-84"},"4f68c1b0-86":{"renderedLength":2981,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-0"},"4f68c1b0-88":{"renderedLength":2874,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-87"},"4f68c1b0-90":{"renderedLength":6675,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-89"},"4f68c1b0-92":{"renderedLength":92,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-91"},"4f68c1b0-94":{"renderedLength":17107,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-93"},"4f68c1b0-96":{"renderedLength":87,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-95"},"4f68c1b0-98":{"renderedLength":18209,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-97"},"4f68c1b0-100":{"renderedLength":8931,"gzipLength":0,"brotliLength":0,"metaUid":"4f68c1b0-99"}},"nodeMetas":{"4f68c1b0-0":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/main.ts","moduleParts":{"starfish-form.mjs":"4f68c1b0-1","main-8985b8a9.mjs":"4f68c1b0-86"},"imported":[{"uid":"4f68c1b0-8"},{"uid":"4f68c1b0-10"},{"uid":"4f68c1b0-14"},{"uid":"4f68c1b0-16"},{"uid":"4f68c1b0-18"},{"uid":"4f68c1b0-20"},{"uid":"4f68c1b0-24"},{"uid":"4f68c1b0-26"},{"uid":"4f68c1b0-30"},{"uid":"4f68c1b0-32"},{"uid":"4f68c1b0-34"},{"uid":"4f68c1b0-36"},{"uid":"4f68c1b0-38"},{"uid":"4f68c1b0-40"},{"uid":"4f68c1b0-42"},{"uid":"4f68c1b0-44"},{"uid":"4f68c1b0-46"},{"uid":"4f68c1b0-48"},{"uid":"4f68c1b0-50"},{"uid":"4f68c1b0-52"},{"uid":"4f68c1b0-54"},{"uid":"4f68c1b0-56"},{"uid":"4f68c1b0-58"},{"uid":"4f68c1b0-60"},{"uid":"4f68c1b0-62"},{"uid":"4f68c1b0-64"},{"uid":"4f68c1b0-66"},{"uid":"4f68c1b0-68"},{"uid":"4f68c1b0-70"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-72"},{"uid":"4f68c1b0-2"},{"uid":"4f68c1b0-80"},{"uid":"4f68c1b0-84"},{"uid":"4f68c1b0-87","dynamic":true},{"uid":"4f68c1b0-89","dynamic":true},{"uid":"4f68c1b0-93","dynamic":true},{"uid":"4f68c1b0-97","dynamic":true},{"uid":"4f68c1b0-99","dynamic":true}],"importedBy":[],"isEntry":true},"4f68c1b0-2":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/fieldConfig.ts","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-3"},"imported":[],"importedBy":[{"uid":"4f68c1b0-0"},{"uid":"4f68c1b0-8"},{"uid":"4f68c1b0-10"},{"uid":"4f68c1b0-26"},{"uid":"4f68c1b0-30"},{"uid":"4f68c1b0-32"},{"uid":"4f68c1b0-34"},{"uid":"4f68c1b0-36"},{"uid":"4f68c1b0-38"},{"uid":"4f68c1b0-44"},{"uid":"4f68c1b0-46"},{"uid":"4f68c1b0-50"},{"uid":"4f68c1b0-52"},{"uid":"4f68c1b0-54"},{"uid":"4f68c1b0-56"},{"uid":"4f68c1b0-58"},{"uid":"4f68c1b0-60"},{"uid":"4f68c1b0-62"},{"uid":"4f68c1b0-64"},{"uid":"4f68c1b0-66"},{"uid":"4f68c1b0-68"},{"uid":"4f68c1b0-70"},{"uid":"4f68c1b0-87"},{"uid":"4f68c1b0-89"}]},"4f68c1b0-4":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/fieldProps.ts","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-5"},"imported":[],"importedBy":[{"uid":"4f68c1b0-8"},{"uid":"4f68c1b0-10"},{"uid":"4f68c1b0-16"},{"uid":"4f68c1b0-18"},{"uid":"4f68c1b0-20"},{"uid":"4f68c1b0-24"},{"uid":"4f68c1b0-26"},{"uid":"4f68c1b0-30"},{"uid":"4f68c1b0-32"},{"uid":"4f68c1b0-34"},{"uid":"4f68c1b0-36"},{"uid":"4f68c1b0-38"},{"uid":"4f68c1b0-44"},{"uid":"4f68c1b0-46"},{"uid":"4f68c1b0-48"},{"uid":"4f68c1b0-50"},{"uid":"4f68c1b0-52"},{"uid":"4f68c1b0-54"},{"uid":"4f68c1b0-56"},{"uid":"4f68c1b0-58"},{"uid":"4f68c1b0-60"},{"uid":"4f68c1b0-62"},{"uid":"4f68c1b0-64"},{"uid":"4f68c1b0-66"},{"uid":"4f68c1b0-68"},{"uid":"4f68c1b0-70"},{"uid":"4f68c1b0-87"},{"uid":"4f68c1b0-89"},{"uid":"4f68c1b0-97"}]},"4f68c1b0-6":{"id":"plugin-vue:export-helper","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-7"},"imported":[],"importedBy":[{"uid":"4f68c1b0-8"},{"uid":"4f68c1b0-10"},{"uid":"4f68c1b0-14"},{"uid":"4f68c1b0-16"},{"uid":"4f68c1b0-18"},{"uid":"4f68c1b0-20"},{"uid":"4f68c1b0-24"},{"uid":"4f68c1b0-26"},{"uid":"4f68c1b0-30"},{"uid":"4f68c1b0-32"},{"uid":"4f68c1b0-34"},{"uid":"4f68c1b0-36"},{"uid":"4f68c1b0-38"},{"uid":"4f68c1b0-44"},{"uid":"4f68c1b0-46"},{"uid":"4f68c1b0-48"},{"uid":"4f68c1b0-50"},{"uid":"4f68c1b0-52"},{"uid":"4f68c1b0-54"},{"uid":"4f68c1b0-56"},{"uid":"4f68c1b0-58"},{"uid":"4f68c1b0-60"},{"uid":"4f68c1b0-62"},{"uid":"4f68c1b0-64"},{"uid":"4f68c1b0-66"},{"uid":"4f68c1b0-68"},{"uid":"4f68c1b0-70"},{"uid":"4f68c1b0-84"},{"uid":"4f68c1b0-87"},{"uid":"4f68c1b0-89"},{"uid":"4f68c1b0-93"},{"uid":"4f68c1b0-97"},{"uid":"4f68c1b0-99"}]},"4f68c1b0-8":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfig.vue","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-9"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-104"},{"uid":"4f68c1b0-105"},{"uid":"4f68c1b0-106"},{"uid":"4f68c1b0-107"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-108"},{"uid":"4f68c1b0-2"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-10":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfigMult.vue","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-11"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-104"},{"uid":"4f68c1b0-105"},{"uid":"4f68c1b0-106"},{"uid":"4f68c1b0-107"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-108"},{"uid":"4f68c1b0-2"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-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-8985b8a9.mjs":"4f68c1b0-13"},"imported":[],"importedBy":[{"uid":"4f68c1b0-14"}]},"4f68c1b0-14":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/Loading.vue","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-15"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-109"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-12"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-16":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/action.vue","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-17"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-110"},{"uid":"4f68c1b0-111"},{"uid":"4f68c1b0-112"},{"uid":"4f68c1b0-113"},{"uid":"4f68c1b0-114"},{"uid":"4f68c1b0-115"},{"uid":"4f68c1b0-116"},{"uid":"4f68c1b0-104"},{"uid":"4f68c1b0-117"},{"uid":"4f68c1b0-118"},{"uid":"4f68c1b0-119"},{"uid":"4f68c1b0-107"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-108"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-18":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/listConfig.vue","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-19"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-115"},{"uid":"4f68c1b0-116"},{"uid":"4f68c1b0-104"},{"uid":"4f68c1b0-120"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-108"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-20":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/panel.vue","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-21"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-115"},{"uid":"4f68c1b0-116"},{"uid":"4f68c1b0-104"},{"uid":"4f68c1b0-105"},{"uid":"4f68c1b0-117"},{"uid":"4f68c1b0-107"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-108"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-22":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/customHooks.ts","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-23"},"imported":[{"uid":"4f68c1b0-101"}],"importedBy":[{"uid":"4f68c1b0-24"},{"uid":"4f68c1b0-26"},{"uid":"4f68c1b0-30"},{"uid":"4f68c1b0-32"},{"uid":"4f68c1b0-34"},{"uid":"4f68c1b0-36"},{"uid":"4f68c1b0-38"},{"uid":"4f68c1b0-44"},{"uid":"4f68c1b0-46"},{"uid":"4f68c1b0-48"},{"uid":"4f68c1b0-50"},{"uid":"4f68c1b0-52"},{"uid":"4f68c1b0-54"},{"uid":"4f68c1b0-56"},{"uid":"4f68c1b0-58"},{"uid":"4f68c1b0-60"},{"uid":"4f68c1b0-62"},{"uid":"4f68c1b0-64"},{"uid":"4f68c1b0-66"},{"uid":"4f68c1b0-68"},{"uid":"4f68c1b0-70"},{"uid":"4f68c1b0-87"},{"uid":"4f68c1b0-89"}]},"4f68c1b0-24":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/radiogroup.vue","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-25"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-121"},{"uid":"4f68c1b0-122"},{"uid":"4f68c1b0-107"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-22"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-26":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/CheckBox/index.vue","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-27"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-123"},{"uid":"4f68c1b0-106"},{"uid":"4f68c1b0-107"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-2"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-22"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-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-8985b8a9.mjs":"4f68c1b0-29"},"imported":[],"importedBy":[{"uid":"4f68c1b0-30"}]},"4f68c1b0-30":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/ColorSelect/index.vue","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-31"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-124"},{"uid":"4f68c1b0-105"},{"uid":"4f68c1b0-107"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-2"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-22"},{"uid":"4f68c1b0-28"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-32":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Date/index.vue","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-33"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-125"},{"uid":"4f68c1b0-107"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-2"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-22"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-34":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/DateTime/index.vue","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-35"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-125"},{"uid":"4f68c1b0-107"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-2"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-22"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-36":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/InputNumber/index.vue","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-37"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-120"},{"uid":"4f68c1b0-107"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-2"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-22"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-38":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Radio/index.vue","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-39"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-121"},{"uid":"4f68c1b0-126"},{"uid":"4f68c1b0-107"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-2"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-22"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-40":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/ruleform.json","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-41"},"imported":[],"importedBy":[{"uid":"4f68c1b0-0"},{"uid":"4f68c1b0-97"}]},"4f68c1b0-42":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/rules.js","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-43"},"imported":[],"importedBy":[{"uid":"4f68c1b0-0"},{"uid":"4f68c1b0-97"}]},"4f68c1b0-44":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Selected/index.vue","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-45"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-118"},{"uid":"4f68c1b0-119"},{"uid":"4f68c1b0-107"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-2"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-22"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-46":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Selecteds/index.vue","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-47"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-118"},{"uid":"4f68c1b0-119"},{"uid":"4f68c1b0-107"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-2"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-22"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-48":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/ShowRule/index.vue","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-49"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-116"},{"uid":"4f68c1b0-107"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-22"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-50":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Slider/index.vue","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-51"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-127"},{"uid":"4f68c1b0-107"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-2"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-22"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-52":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Switch/index.vue","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-53"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-128"},{"uid":"4f68c1b0-107"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-2"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-22"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-54":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Text/index.vue","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-55"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-105"},{"uid":"4f68c1b0-107"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-2"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-22"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-56":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/TextArea/index.vue","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-57"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-105"},{"uid":"4f68c1b0-107"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-2"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-22"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-58":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Time/index.vue","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-59"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-129"},{"uid":"4f68c1b0-107"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-2"},{"uid":"4f68c1b0-22"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-60":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Divider.vue","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-61"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-130"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-2"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-22"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-62":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Info.vue","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-63"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-131"},{"uid":"4f68c1b0-107"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-2"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-22"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-64":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Tabs.vue","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-65"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-132"},{"uid":"4f68c1b0-133"},{"uid":"4f68c1b0-134"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-2"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-22"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-66":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/collapse.vue","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-67"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-113"},{"uid":"4f68c1b0-114"},{"uid":"4f68c1b0-134"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-2"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-22"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-68":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/grid.vue","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-69"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-115"},{"uid":"4f68c1b0-134"},{"uid":"4f68c1b0-117"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-2"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-22"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-70":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/table.vue","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-71"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-134"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-2"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-22"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-72":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/styles/index.scss","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-73"},"imported":[],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-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-8985b8a9.mjs":"4f68c1b0-75"},"imported":[{"uid":"4f68c1b0-145"}],"importedBy":[{"uid":"4f68c1b0-80"}]},"4f68c1b0-76":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/history.ts","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-77"},"imported":[{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-78"}],"importedBy":[{"uid":"4f68c1b0-78"}]},"4f68c1b0-78":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/form.ts","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-79"},"imported":[{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-76"}],"importedBy":[{"uid":"4f68c1b0-80"},{"uid":"4f68c1b0-76"}]},"4f68c1b0-80":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/_.ts","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-81"},"imported":[{"uid":"4f68c1b0-135"},{"uid":"4f68c1b0-74"},{"uid":"4f68c1b0-78"}],"importedBy":[{"uid":"4f68c1b0-0"},{"uid":"4f68c1b0-89"},{"uid":"4f68c1b0-97"}]},"4f68c1b0-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-8985b8a9.mjs":"4f68c1b0-83"},"imported":[],"importedBy":[{"uid":"4f68c1b0-84"}]},"4f68c1b0-84":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue","moduleParts":{"main-8985b8a9.mjs":"4f68c1b0-85"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-109"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-82"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-87":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/index.vue","moduleParts":{"index-3a0f2ea7.mjs":"4f68c1b0-88"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-107"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-136"},{"uid":"4f68c1b0-2"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-22"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-89":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","moduleParts":{"index-a096155f.mjs":"4f68c1b0-90"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-137"},{"uid":"4f68c1b0-138"},{"uid":"4f68c1b0-116"},{"uid":"4f68c1b0-139"},{"uid":"4f68c1b0-107"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-2"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-22"},{"uid":"4f68c1b0-140"},{"uid":"4f68c1b0-80"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-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-98d7b1d5.mjs":"4f68c1b0-92"},"imported":[],"importedBy":[{"uid":"4f68c1b0-93"}]},"4f68c1b0-93":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/formAction.vue","moduleParts":{"formAction-98d7b1d5.mjs":"4f68c1b0-94"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-141"},{"uid":"4f68c1b0-134"},{"uid":"4f68c1b0-105"},{"uid":"4f68c1b0-142"},{"uid":"4f68c1b0-137"},{"uid":"4f68c1b0-139"},{"uid":"4f68c1b0-143"},{"uid":"4f68c1b0-116"},{"uid":"4f68c1b0-107"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-144"},{"uid":"4f68c1b0-91"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-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-5d524f9b.mjs":"4f68c1b0-96"},"imported":[],"importedBy":[{"uid":"4f68c1b0-97"}]},"4f68c1b0-97":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/index.vue","moduleParts":{"index-5d524f9b.mjs":"4f68c1b0-98"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-137"},{"uid":"4f68c1b0-139"},{"uid":"4f68c1b0-138"},{"uid":"4f68c1b0-131"},{"uid":"4f68c1b0-110"},{"uid":"4f68c1b0-111"},{"uid":"4f68c1b0-112"},{"uid":"4f68c1b0-113"},{"uid":"4f68c1b0-114"},{"uid":"4f68c1b0-104"},{"uid":"4f68c1b0-116"},{"uid":"4f68c1b0-118"},{"uid":"4f68c1b0-119"},{"uid":"4f68c1b0-107"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-4"},{"uid":"4f68c1b0-80"},{"uid":"4f68c1b0-42"},{"uid":"4f68c1b0-40"},{"uid":"4f68c1b0-108"},{"uid":"4f68c1b0-99"},{"uid":"4f68c1b0-144"},{"uid":"4f68c1b0-95"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"}]},"4f68c1b0-99":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","moduleParts":{"starfish-form-169cfab7.mjs":"4f68c1b0-100"},"imported":[{"uid":"4f68c1b0-102"},{"uid":"4f68c1b0-103"},{"uid":"4f68c1b0-141"},{"uid":"4f68c1b0-134"},{"uid":"4f68c1b0-101"},{"uid":"4f68c1b0-6"}],"importedBy":[{"uid":"4f68c1b0-0"},{"uid":"4f68c1b0-97"}]},"4f68c1b0-101":{"id":"vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-0"},{"uid":"4f68c1b0-8"},{"uid":"4f68c1b0-10"},{"uid":"4f68c1b0-14"},{"uid":"4f68c1b0-16"},{"uid":"4f68c1b0-18"},{"uid":"4f68c1b0-20"},{"uid":"4f68c1b0-24"},{"uid":"4f68c1b0-26"},{"uid":"4f68c1b0-30"},{"uid":"4f68c1b0-32"},{"uid":"4f68c1b0-34"},{"uid":"4f68c1b0-36"},{"uid":"4f68c1b0-38"},{"uid":"4f68c1b0-44"},{"uid":"4f68c1b0-46"},{"uid":"4f68c1b0-48"},{"uid":"4f68c1b0-50"},{"uid":"4f68c1b0-52"},{"uid":"4f68c1b0-54"},{"uid":"4f68c1b0-56"},{"uid":"4f68c1b0-58"},{"uid":"4f68c1b0-60"},{"uid":"4f68c1b0-62"},{"uid":"4f68c1b0-64"},{"uid":"4f68c1b0-66"},{"uid":"4f68c1b0-68"},{"uid":"4f68c1b0-70"},{"uid":"4f68c1b0-84"},{"uid":"4f68c1b0-87"},{"uid":"4f68c1b0-89"},{"uid":"4f68c1b0-93"},{"uid":"4f68c1b0-97"},{"uid":"4f68c1b0-99"},{"uid":"4f68c1b0-22"},{"uid":"4f68c1b0-78"},{"uid":"4f68c1b0-76"}],"isExternal":true},"4f68c1b0-102":{"id":"element-plus/es","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-8"},{"uid":"4f68c1b0-10"},{"uid":"4f68c1b0-14"},{"uid":"4f68c1b0-16"},{"uid":"4f68c1b0-18"},{"uid":"4f68c1b0-20"},{"uid":"4f68c1b0-24"},{"uid":"4f68c1b0-26"},{"uid":"4f68c1b0-30"},{"uid":"4f68c1b0-32"},{"uid":"4f68c1b0-34"},{"uid":"4f68c1b0-36"},{"uid":"4f68c1b0-38"},{"uid":"4f68c1b0-44"},{"uid":"4f68c1b0-46"},{"uid":"4f68c1b0-48"},{"uid":"4f68c1b0-50"},{"uid":"4f68c1b0-52"},{"uid":"4f68c1b0-54"},{"uid":"4f68c1b0-56"},{"uid":"4f68c1b0-58"},{"uid":"4f68c1b0-60"},{"uid":"4f68c1b0-62"},{"uid":"4f68c1b0-64"},{"uid":"4f68c1b0-66"},{"uid":"4f68c1b0-68"},{"uid":"4f68c1b0-70"},{"uid":"4f68c1b0-84"},{"uid":"4f68c1b0-87"},{"uid":"4f68c1b0-89"},{"uid":"4f68c1b0-93"},{"uid":"4f68c1b0-97"},{"uid":"4f68c1b0-99"}],"isExternal":true},"4f68c1b0-103":{"id":"element-plus/es/components/base/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-8"},{"uid":"4f68c1b0-10"},{"uid":"4f68c1b0-14"},{"uid":"4f68c1b0-16"},{"uid":"4f68c1b0-18"},{"uid":"4f68c1b0-20"},{"uid":"4f68c1b0-24"},{"uid":"4f68c1b0-26"},{"uid":"4f68c1b0-30"},{"uid":"4f68c1b0-32"},{"uid":"4f68c1b0-34"},{"uid":"4f68c1b0-36"},{"uid":"4f68c1b0-38"},{"uid":"4f68c1b0-44"},{"uid":"4f68c1b0-46"},{"uid":"4f68c1b0-48"},{"uid":"4f68c1b0-50"},{"uid":"4f68c1b0-52"},{"uid":"4f68c1b0-54"},{"uid":"4f68c1b0-56"},{"uid":"4f68c1b0-58"},{"uid":"4f68c1b0-60"},{"uid":"4f68c1b0-62"},{"uid":"4f68c1b0-64"},{"uid":"4f68c1b0-66"},{"uid":"4f68c1b0-68"},{"uid":"4f68c1b0-70"},{"uid":"4f68c1b0-84"},{"uid":"4f68c1b0-87"},{"uid":"4f68c1b0-89"},{"uid":"4f68c1b0-93"},{"uid":"4f68c1b0-97"},{"uid":"4f68c1b0-99"}],"isExternal":true},"4f68c1b0-104":{"id":"element-plus/es/components/icon/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-8"},{"uid":"4f68c1b0-10"},{"uid":"4f68c1b0-16"},{"uid":"4f68c1b0-18"},{"uid":"4f68c1b0-20"},{"uid":"4f68c1b0-97"}],"isExternal":true},"4f68c1b0-105":{"id":"element-plus/es/components/input/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-8"},{"uid":"4f68c1b0-10"},{"uid":"4f68c1b0-20"},{"uid":"4f68c1b0-30"},{"uid":"4f68c1b0-54"},{"uid":"4f68c1b0-56"},{"uid":"4f68c1b0-93"}],"isExternal":true},"4f68c1b0-106":{"id":"element-plus/es/components/checkbox/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-8"},{"uid":"4f68c1b0-10"},{"uid":"4f68c1b0-26"}],"isExternal":true},"4f68c1b0-107":{"id":"element-plus/es/components/tooltip/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-8"},{"uid":"4f68c1b0-10"},{"uid":"4f68c1b0-16"},{"uid":"4f68c1b0-20"},{"uid":"4f68c1b0-24"},{"uid":"4f68c1b0-26"},{"uid":"4f68c1b0-30"},{"uid":"4f68c1b0-32"},{"uid":"4f68c1b0-34"},{"uid":"4f68c1b0-36"},{"uid":"4f68c1b0-38"},{"uid":"4f68c1b0-44"},{"uid":"4f68c1b0-46"},{"uid":"4f68c1b0-48"},{"uid":"4f68c1b0-50"},{"uid":"4f68c1b0-52"},{"uid":"4f68c1b0-54"},{"uid":"4f68c1b0-56"},{"uid":"4f68c1b0-58"},{"uid":"4f68c1b0-62"},{"uid":"4f68c1b0-87"},{"uid":"4f68c1b0-89"},{"uid":"4f68c1b0-93"},{"uid":"4f68c1b0-97"}],"isExternal":true},"4f68c1b0-108":{"id":"@element-plus/icons-vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-8"},{"uid":"4f68c1b0-10"},{"uid":"4f68c1b0-16"},{"uid":"4f68c1b0-18"},{"uid":"4f68c1b0-20"},{"uid":"4f68c1b0-97"}],"isExternal":true},"4f68c1b0-109":{"id":"element-plus/es/components/loading/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-14"},{"uid":"4f68c1b0-84"}],"isExternal":true},"4f68c1b0-110":{"id":"element-plus/es/components/dropdown/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-16"},{"uid":"4f68c1b0-97"}],"isExternal":true},"4f68c1b0-111":{"id":"element-plus/es/components/dropdown-menu/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-16"},{"uid":"4f68c1b0-97"}],"isExternal":true},"4f68c1b0-112":{"id":"element-plus/es/components/dropdown-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-16"},{"uid":"4f68c1b0-97"}],"isExternal":true},"4f68c1b0-113":{"id":"element-plus/es/components/collapse/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-16"},{"uid":"4f68c1b0-66"},{"uid":"4f68c1b0-97"}],"isExternal":true},"4f68c1b0-114":{"id":"element-plus/es/components/collapse-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-16"},{"uid":"4f68c1b0-66"},{"uid":"4f68c1b0-97"}],"isExternal":true},"4f68c1b0-115":{"id":"element-plus/es/components/row/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-16"},{"uid":"4f68c1b0-18"},{"uid":"4f68c1b0-20"},{"uid":"4f68c1b0-68"}],"isExternal":true},"4f68c1b0-116":{"id":"element-plus/es/components/button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-16"},{"uid":"4f68c1b0-18"},{"uid":"4f68c1b0-20"},{"uid":"4f68c1b0-48"},{"uid":"4f68c1b0-89"},{"uid":"4f68c1b0-93"},{"uid":"4f68c1b0-97"}],"isExternal":true},"4f68c1b0-117":{"id":"element-plus/es/components/col/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-16"},{"uid":"4f68c1b0-20"},{"uid":"4f68c1b0-68"}],"isExternal":true},"4f68c1b0-118":{"id":"element-plus/es/components/select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-16"},{"uid":"4f68c1b0-44"},{"uid":"4f68c1b0-46"},{"uid":"4f68c1b0-97"}],"isExternal":true},"4f68c1b0-119":{"id":"element-plus/es/components/option/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-16"},{"uid":"4f68c1b0-44"},{"uid":"4f68c1b0-46"},{"uid":"4f68c1b0-97"}],"isExternal":true},"4f68c1b0-120":{"id":"element-plus/es/components/input-number/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-18"},{"uid":"4f68c1b0-36"}],"isExternal":true},"4f68c1b0-121":{"id":"element-plus/es/components/radio-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-24"},{"uid":"4f68c1b0-38"}],"isExternal":true},"4f68c1b0-122":{"id":"element-plus/es/components/radio-button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-24"}],"isExternal":true},"4f68c1b0-123":{"id":"element-plus/es/components/checkbox-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-26"}],"isExternal":true},"4f68c1b0-124":{"id":"element-plus/es/components/color-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-30"}],"isExternal":true},"4f68c1b0-125":{"id":"element-plus/es/components/date-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-32"},{"uid":"4f68c1b0-34"}],"isExternal":true},"4f68c1b0-126":{"id":"element-plus/es/components/radio/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-38"}],"isExternal":true},"4f68c1b0-127":{"id":"element-plus/es/components/slider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-50"}],"isExternal":true},"4f68c1b0-128":{"id":"element-plus/es/components/switch/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-52"}],"isExternal":true},"4f68c1b0-129":{"id":"element-plus/es/components/time-select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-58"}],"isExternal":true},"4f68c1b0-130":{"id":"element-plus/es/components/divider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-60"}],"isExternal":true},"4f68c1b0-131":{"id":"element-plus/es/components/alert/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-62"},{"uid":"4f68c1b0-97"}],"isExternal":true},"4f68c1b0-132":{"id":"element-plus/es/components/tabs/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-64"}],"isExternal":true},"4f68c1b0-133":{"id":"element-plus/es/components/tab-pane/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-64"}],"isExternal":true},"4f68c1b0-134":{"id":"element-plus/es/components/form-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-64"},{"uid":"4f68c1b0-66"},{"uid":"4f68c1b0-68"},{"uid":"4f68c1b0-70"},{"uid":"4f68c1b0-93"},{"uid":"4f68c1b0-99"}],"isExternal":true},"4f68c1b0-135":{"id":"element-plus","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-80"}],"isExternal":true},"4f68c1b0-136":{"id":"wangeditor","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-87"}],"isExternal":true},"4f68c1b0-137":{"id":"element-plus/es/components/container/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-89"},{"uid":"4f68c1b0-93"},{"uid":"4f68c1b0-97"}],"isExternal":true},"4f68c1b0-138":{"id":"element-plus/es/components/footer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-89"},{"uid":"4f68c1b0-97"}],"isExternal":true},"4f68c1b0-139":{"id":"element-plus/es/components/main/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-89"},{"uid":"4f68c1b0-93"},{"uid":"4f68c1b0-97"}],"isExternal":true},"4f68c1b0-140":{"id":"jsoneditor","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-89"}],"isExternal":true},"4f68c1b0-141":{"id":"element-plus/es/components/form/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-93"},{"uid":"4f68c1b0-99"}],"isExternal":true},"4f68c1b0-142":{"id":"element-plus/es/components/aside/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-93"}],"isExternal":true},"4f68c1b0-143":{"id":"element-plus/es/components/scrollbar/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-93"}],"isExternal":true},"4f68c1b0-144":{"id":"vue-codemirror","moduleParts":{},"imported":[],"importedBy":[{"uid":"4f68c1b0-93"},{"uid":"4f68c1b0-97"}],"isExternal":true},"4f68c1b0-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":"4f68c1b0-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":"79040035-1"},{"name":"main-7ff41eda.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":"79040035-3","name":"fieldConfig.ts"},{"uid":"79040035-5","name":"fieldProps.ts"},{"uid":"79040035-23","name":"customHooks.ts"}]},{"name":"common","children":[{"uid":"79040035-9","name":"KeyValueConfig.vue"},{"uid":"79040035-11","name":"KeyValueConfigMult.vue"},{"uid":"79040035-13","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"79040035-15","name":"Loading.vue"},{"uid":"79040035-17","name":"action.vue"},{"uid":"79040035-19","name":"listConfig.vue"},{"uid":"79040035-21","name":"panel.vue"},{"uid":"79040035-25","name":"radiogroup.vue"}]},{"name":"components","children":[{"name":"CheckBox/index.vue","uid":"79040035-27"},{"name":"ColorSelect","children":[{"uid":"79040035-29","name":"index.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"79040035-31","name":"index.vue"}]},{"name":"Date/index.vue","uid":"79040035-33"},{"name":"DateTime/index.vue","uid":"79040035-35"},{"name":"InputNumber/index.vue","uid":"79040035-37"},{"name":"Radio/index.vue","uid":"79040035-39"},{"name":"Rule","children":[{"uid":"79040035-41","name":"ruleform.json"},{"uid":"79040035-43","name":"rules.js"}]},{"name":"Selected/index.vue","uid":"79040035-45"},{"name":"Selecteds/index.vue","uid":"79040035-47"},{"name":"ShowRule/index.vue","uid":"79040035-49"},{"name":"Slider/index.vue","uid":"79040035-51"},{"name":"Switch/index.vue","uid":"79040035-53"},{"name":"Text/index.vue","uid":"79040035-55"},{"name":"TextArea/index.vue","uid":"79040035-57"},{"name":"Time/index.vue","uid":"79040035-59"}]},{"name":"layout","children":[{"uid":"79040035-61","name":"Divider.vue"},{"uid":"79040035-63","name":"Info.vue"},{"uid":"79040035-65","name":"Tabs.vue"},{"uid":"79040035-67","name":"collapse.vue"},{"uid":"79040035-69","name":"grid.vue"},{"uid":"79040035-71","name":"table.vue"}]},{"name":"styles/index.scss","uid":"79040035-73"},{"uid":"79040035-86","name":"main.ts"}]},{"name":"editor/src","children":[{"name":"controller","children":[{"uid":"79040035-77","name":"history.ts"},{"uid":"79040035-79","name":"form.ts"}]},{"name":"utils/_.ts","uid":"79040035-81"},{"name":"common","children":[{"uid":"79040035-83","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"79040035-85","name":"Loading.vue"}]}]}]},{"name":"node_modules/.pnpm/nanoid@4.0.0/node_modules/nanoid/index.browser.js","uid":"79040035-75"}]},{"uid":"79040035-7","name":"plugin-vue:export-helper"}]},{"name":"index-188c4cca.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/index.vue","uid":"79040035-88"}]},{"name":"index-e8e56d6c.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","uid":"79040035-90"}]},{"name":"formAction-8cefef30.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common","children":[{"uid":"79040035-92","name":"formAction.vue?vue&type=style&index=0&lang.scss"},{"uid":"79040035-94","name":"formAction.vue"}]}]},{"name":"index-ebf27278.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule","children":[{"uid":"79040035-96","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"79040035-98","name":"index.vue"}]}]},{"name":"starfish-form-6775ebbc.mjs","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","uid":"79040035-100"}]}],"isRoot":true},"nodeParts":{"79040035-1":{"id":"starfish-form.mjs","gzipLength":0,"brotliLength":0,"renderedLength":1902,"metaUid":"79040035-0"},"79040035-3":{"renderedLength":17824,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-2"},"79040035-5":{"renderedLength":567,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-4"},"79040035-7":{"renderedLength":159,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-6"},"79040035-9":{"renderedLength":8660,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-8"},"79040035-11":{"renderedLength":8485,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-10"},"79040035-13":{"renderedLength":103,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-12"},"79040035-15":{"renderedLength":404,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-14"},"79040035-17":{"renderedLength":8527,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-16"},"79040035-19":{"renderedLength":3223,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-18"},"79040035-21":{"renderedLength":5397,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-20"},"79040035-23":{"renderedLength":482,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-22"},"79040035-25":{"renderedLength":2228,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-24"},"79040035-27":{"renderedLength":4412,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-26"},"79040035-29":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-28"},"79040035-31":{"renderedLength":3864,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-30"},"79040035-33":{"renderedLength":3989,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-32"},"79040035-35":{"renderedLength":3294,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-34"},"79040035-37":{"renderedLength":3966,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-36"},"79040035-39":{"renderedLength":4364,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-38"},"79040035-41":{"renderedLength":5040,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-40"},"79040035-43":{"renderedLength":2564,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-42"},"79040035-45":{"renderedLength":4564,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-44"},"79040035-47":{"renderedLength":4626,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-46"},"79040035-49":{"renderedLength":4133,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-48"},"79040035-51":{"renderedLength":2944,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-50"},"79040035-53":{"renderedLength":2938,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-52"},"79040035-55":{"renderedLength":4047,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-54"},"79040035-57":{"renderedLength":4226,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-56"},"79040035-59":{"renderedLength":3240,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-58"},"79040035-61":{"renderedLength":1315,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-60"},"79040035-63":{"renderedLength":2999,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-62"},"79040035-65":{"renderedLength":5888,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-64"},"79040035-67":{"renderedLength":6238,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-66"},"79040035-69":{"renderedLength":6248,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-68"},"79040035-71":{"renderedLength":5731,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-70"},"79040035-73":{"renderedLength":17,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-72"},"79040035-75":{"renderedLength":350,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-74"},"79040035-77":{"renderedLength":1613,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-76"},"79040035-79":{"renderedLength":6014,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-78"},"79040035-81":{"renderedLength":9841,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-80"},"79040035-83":{"renderedLength":101,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-82"},"79040035-85":{"renderedLength":390,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-84"},"79040035-86":{"renderedLength":2981,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-0"},"79040035-88":{"renderedLength":2874,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-87"},"79040035-90":{"renderedLength":6675,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-89"},"79040035-92":{"renderedLength":92,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-91"},"79040035-94":{"renderedLength":17107,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-93"},"79040035-96":{"renderedLength":87,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-95"},"79040035-98":{"renderedLength":18209,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-97"},"79040035-100":{"renderedLength":8931,"gzipLength":0,"brotliLength":0,"metaUid":"79040035-99"}},"nodeMetas":{"79040035-0":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/main.ts","moduleParts":{"starfish-form.mjs":"79040035-1","main-7ff41eda.mjs":"79040035-86"},"imported":[{"uid":"79040035-8"},{"uid":"79040035-10"},{"uid":"79040035-14"},{"uid":"79040035-16"},{"uid":"79040035-18"},{"uid":"79040035-20"},{"uid":"79040035-24"},{"uid":"79040035-26"},{"uid":"79040035-30"},{"uid":"79040035-32"},{"uid":"79040035-34"},{"uid":"79040035-36"},{"uid":"79040035-38"},{"uid":"79040035-40"},{"uid":"79040035-42"},{"uid":"79040035-44"},{"uid":"79040035-46"},{"uid":"79040035-48"},{"uid":"79040035-50"},{"uid":"79040035-52"},{"uid":"79040035-54"},{"uid":"79040035-56"},{"uid":"79040035-58"},{"uid":"79040035-60"},{"uid":"79040035-62"},{"uid":"79040035-64"},{"uid":"79040035-66"},{"uid":"79040035-68"},{"uid":"79040035-70"},{"uid":"79040035-101"},{"uid":"79040035-72"},{"uid":"79040035-2"},{"uid":"79040035-80"},{"uid":"79040035-84"},{"uid":"79040035-87","dynamic":true},{"uid":"79040035-89","dynamic":true},{"uid":"79040035-93","dynamic":true},{"uid":"79040035-97","dynamic":true},{"uid":"79040035-99","dynamic":true}],"importedBy":[],"isEntry":true},"79040035-2":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/fieldConfig.ts","moduleParts":{"main-7ff41eda.mjs":"79040035-3"},"imported":[],"importedBy":[{"uid":"79040035-0"},{"uid":"79040035-8"},{"uid":"79040035-10"},{"uid":"79040035-26"},{"uid":"79040035-30"},{"uid":"79040035-32"},{"uid":"79040035-34"},{"uid":"79040035-36"},{"uid":"79040035-38"},{"uid":"79040035-44"},{"uid":"79040035-46"},{"uid":"79040035-50"},{"uid":"79040035-52"},{"uid":"79040035-54"},{"uid":"79040035-56"},{"uid":"79040035-58"},{"uid":"79040035-60"},{"uid":"79040035-62"},{"uid":"79040035-64"},{"uid":"79040035-66"},{"uid":"79040035-68"},{"uid":"79040035-70"},{"uid":"79040035-87"},{"uid":"79040035-89"}]},"79040035-4":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/fieldProps.ts","moduleParts":{"main-7ff41eda.mjs":"79040035-5"},"imported":[],"importedBy":[{"uid":"79040035-8"},{"uid":"79040035-10"},{"uid":"79040035-16"},{"uid":"79040035-18"},{"uid":"79040035-20"},{"uid":"79040035-24"},{"uid":"79040035-26"},{"uid":"79040035-30"},{"uid":"79040035-32"},{"uid":"79040035-34"},{"uid":"79040035-36"},{"uid":"79040035-38"},{"uid":"79040035-44"},{"uid":"79040035-46"},{"uid":"79040035-48"},{"uid":"79040035-50"},{"uid":"79040035-52"},{"uid":"79040035-54"},{"uid":"79040035-56"},{"uid":"79040035-58"},{"uid":"79040035-60"},{"uid":"79040035-62"},{"uid":"79040035-64"},{"uid":"79040035-66"},{"uid":"79040035-68"},{"uid":"79040035-70"},{"uid":"79040035-87"},{"uid":"79040035-89"},{"uid":"79040035-97"}]},"79040035-6":{"id":"plugin-vue:export-helper","moduleParts":{"main-7ff41eda.mjs":"79040035-7"},"imported":[],"importedBy":[{"uid":"79040035-8"},{"uid":"79040035-10"},{"uid":"79040035-14"},{"uid":"79040035-16"},{"uid":"79040035-18"},{"uid":"79040035-20"},{"uid":"79040035-24"},{"uid":"79040035-26"},{"uid":"79040035-30"},{"uid":"79040035-32"},{"uid":"79040035-34"},{"uid":"79040035-36"},{"uid":"79040035-38"},{"uid":"79040035-44"},{"uid":"79040035-46"},{"uid":"79040035-48"},{"uid":"79040035-50"},{"uid":"79040035-52"},{"uid":"79040035-54"},{"uid":"79040035-56"},{"uid":"79040035-58"},{"uid":"79040035-60"},{"uid":"79040035-62"},{"uid":"79040035-64"},{"uid":"79040035-66"},{"uid":"79040035-68"},{"uid":"79040035-70"},{"uid":"79040035-84"},{"uid":"79040035-87"},{"uid":"79040035-89"},{"uid":"79040035-93"},{"uid":"79040035-97"},{"uid":"79040035-99"}]},"79040035-8":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfig.vue","moduleParts":{"main-7ff41eda.mjs":"79040035-9"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-104"},{"uid":"79040035-105"},{"uid":"79040035-106"},{"uid":"79040035-107"},{"uid":"79040035-101"},{"uid":"79040035-108"},{"uid":"79040035-2"},{"uid":"79040035-4"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-10":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfigMult.vue","moduleParts":{"main-7ff41eda.mjs":"79040035-11"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-104"},{"uid":"79040035-105"},{"uid":"79040035-106"},{"uid":"79040035-107"},{"uid":"79040035-101"},{"uid":"79040035-108"},{"uid":"79040035-2"},{"uid":"79040035-4"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-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-7ff41eda.mjs":"79040035-13"},"imported":[],"importedBy":[{"uid":"79040035-14"}]},"79040035-14":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/Loading.vue","moduleParts":{"main-7ff41eda.mjs":"79040035-15"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-109"},{"uid":"79040035-101"},{"uid":"79040035-12"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-16":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/action.vue","moduleParts":{"main-7ff41eda.mjs":"79040035-17"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-110"},{"uid":"79040035-111"},{"uid":"79040035-112"},{"uid":"79040035-113"},{"uid":"79040035-114"},{"uid":"79040035-115"},{"uid":"79040035-116"},{"uid":"79040035-104"},{"uid":"79040035-117"},{"uid":"79040035-118"},{"uid":"79040035-119"},{"uid":"79040035-107"},{"uid":"79040035-101"},{"uid":"79040035-108"},{"uid":"79040035-4"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-18":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/listConfig.vue","moduleParts":{"main-7ff41eda.mjs":"79040035-19"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-115"},{"uid":"79040035-116"},{"uid":"79040035-104"},{"uid":"79040035-120"},{"uid":"79040035-101"},{"uid":"79040035-4"},{"uid":"79040035-108"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-20":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/panel.vue","moduleParts":{"main-7ff41eda.mjs":"79040035-21"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-115"},{"uid":"79040035-116"},{"uid":"79040035-104"},{"uid":"79040035-105"},{"uid":"79040035-117"},{"uid":"79040035-107"},{"uid":"79040035-101"},{"uid":"79040035-4"},{"uid":"79040035-108"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-22":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/utils/customHooks.ts","moduleParts":{"main-7ff41eda.mjs":"79040035-23"},"imported":[{"uid":"79040035-101"}],"importedBy":[{"uid":"79040035-24"},{"uid":"79040035-26"},{"uid":"79040035-30"},{"uid":"79040035-32"},{"uid":"79040035-34"},{"uid":"79040035-36"},{"uid":"79040035-38"},{"uid":"79040035-44"},{"uid":"79040035-46"},{"uid":"79040035-48"},{"uid":"79040035-50"},{"uid":"79040035-52"},{"uid":"79040035-54"},{"uid":"79040035-56"},{"uid":"79040035-58"},{"uid":"79040035-60"},{"uid":"79040035-62"},{"uid":"79040035-64"},{"uid":"79040035-66"},{"uid":"79040035-68"},{"uid":"79040035-70"},{"uid":"79040035-87"},{"uid":"79040035-89"}]},"79040035-24":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/radiogroup.vue","moduleParts":{"main-7ff41eda.mjs":"79040035-25"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-121"},{"uid":"79040035-122"},{"uid":"79040035-107"},{"uid":"79040035-101"},{"uid":"79040035-4"},{"uid":"79040035-22"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-26":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/CheckBox/index.vue","moduleParts":{"main-7ff41eda.mjs":"79040035-27"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-123"},{"uid":"79040035-106"},{"uid":"79040035-107"},{"uid":"79040035-101"},{"uid":"79040035-2"},{"uid":"79040035-4"},{"uid":"79040035-22"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-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-7ff41eda.mjs":"79040035-29"},"imported":[],"importedBy":[{"uid":"79040035-30"}]},"79040035-30":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/ColorSelect/index.vue","moduleParts":{"main-7ff41eda.mjs":"79040035-31"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-124"},{"uid":"79040035-105"},{"uid":"79040035-107"},{"uid":"79040035-101"},{"uid":"79040035-2"},{"uid":"79040035-4"},{"uid":"79040035-22"},{"uid":"79040035-28"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-32":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Date/index.vue","moduleParts":{"main-7ff41eda.mjs":"79040035-33"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-125"},{"uid":"79040035-107"},{"uid":"79040035-101"},{"uid":"79040035-2"},{"uid":"79040035-4"},{"uid":"79040035-22"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-34":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/DateTime/index.vue","moduleParts":{"main-7ff41eda.mjs":"79040035-35"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-125"},{"uid":"79040035-107"},{"uid":"79040035-101"},{"uid":"79040035-2"},{"uid":"79040035-4"},{"uid":"79040035-22"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-36":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/InputNumber/index.vue","moduleParts":{"main-7ff41eda.mjs":"79040035-37"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-120"},{"uid":"79040035-107"},{"uid":"79040035-101"},{"uid":"79040035-2"},{"uid":"79040035-4"},{"uid":"79040035-22"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-38":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Radio/index.vue","moduleParts":{"main-7ff41eda.mjs":"79040035-39"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-121"},{"uid":"79040035-126"},{"uid":"79040035-107"},{"uid":"79040035-101"},{"uid":"79040035-2"},{"uid":"79040035-4"},{"uid":"79040035-22"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-40":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/ruleform.json","moduleParts":{"main-7ff41eda.mjs":"79040035-41"},"imported":[],"importedBy":[{"uid":"79040035-0"},{"uid":"79040035-97"}]},"79040035-42":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/rules.js","moduleParts":{"main-7ff41eda.mjs":"79040035-43"},"imported":[],"importedBy":[{"uid":"79040035-0"},{"uid":"79040035-97"}]},"79040035-44":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Selected/index.vue","moduleParts":{"main-7ff41eda.mjs":"79040035-45"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-118"},{"uid":"79040035-119"},{"uid":"79040035-107"},{"uid":"79040035-101"},{"uid":"79040035-2"},{"uid":"79040035-4"},{"uid":"79040035-22"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-46":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Selecteds/index.vue","moduleParts":{"main-7ff41eda.mjs":"79040035-47"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-118"},{"uid":"79040035-119"},{"uid":"79040035-107"},{"uid":"79040035-101"},{"uid":"79040035-2"},{"uid":"79040035-4"},{"uid":"79040035-22"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-48":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/ShowRule/index.vue","moduleParts":{"main-7ff41eda.mjs":"79040035-49"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-116"},{"uid":"79040035-107"},{"uid":"79040035-101"},{"uid":"79040035-4"},{"uid":"79040035-22"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-50":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Slider/index.vue","moduleParts":{"main-7ff41eda.mjs":"79040035-51"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-127"},{"uid":"79040035-107"},{"uid":"79040035-101"},{"uid":"79040035-2"},{"uid":"79040035-4"},{"uid":"79040035-22"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-52":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Switch/index.vue","moduleParts":{"main-7ff41eda.mjs":"79040035-53"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-128"},{"uid":"79040035-107"},{"uid":"79040035-101"},{"uid":"79040035-2"},{"uid":"79040035-4"},{"uid":"79040035-22"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-54":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Text/index.vue","moduleParts":{"main-7ff41eda.mjs":"79040035-55"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-105"},{"uid":"79040035-107"},{"uid":"79040035-101"},{"uid":"79040035-2"},{"uid":"79040035-4"},{"uid":"79040035-22"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-56":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/TextArea/index.vue","moduleParts":{"main-7ff41eda.mjs":"79040035-57"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-105"},{"uid":"79040035-107"},{"uid":"79040035-101"},{"uid":"79040035-2"},{"uid":"79040035-4"},{"uid":"79040035-22"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-58":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Time/index.vue","moduleParts":{"main-7ff41eda.mjs":"79040035-59"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-129"},{"uid":"79040035-107"},{"uid":"79040035-101"},{"uid":"79040035-4"},{"uid":"79040035-2"},{"uid":"79040035-22"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-60":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Divider.vue","moduleParts":{"main-7ff41eda.mjs":"79040035-61"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-130"},{"uid":"79040035-101"},{"uid":"79040035-2"},{"uid":"79040035-4"},{"uid":"79040035-22"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-62":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Info.vue","moduleParts":{"main-7ff41eda.mjs":"79040035-63"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-131"},{"uid":"79040035-107"},{"uid":"79040035-101"},{"uid":"79040035-2"},{"uid":"79040035-4"},{"uid":"79040035-22"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-64":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/Tabs.vue","moduleParts":{"main-7ff41eda.mjs":"79040035-65"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-132"},{"uid":"79040035-133"},{"uid":"79040035-134"},{"uid":"79040035-101"},{"uid":"79040035-2"},{"uid":"79040035-4"},{"uid":"79040035-22"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-66":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/collapse.vue","moduleParts":{"main-7ff41eda.mjs":"79040035-67"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-113"},{"uid":"79040035-114"},{"uid":"79040035-134"},{"uid":"79040035-101"},{"uid":"79040035-2"},{"uid":"79040035-4"},{"uid":"79040035-22"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-68":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/grid.vue","moduleParts":{"main-7ff41eda.mjs":"79040035-69"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-115"},{"uid":"79040035-134"},{"uid":"79040035-117"},{"uid":"79040035-101"},{"uid":"79040035-2"},{"uid":"79040035-4"},{"uid":"79040035-22"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-70":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/layout/table.vue","moduleParts":{"main-7ff41eda.mjs":"79040035-71"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-134"},{"uid":"79040035-101"},{"uid":"79040035-2"},{"uid":"79040035-4"},{"uid":"79040035-22"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-72":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/styles/index.scss","moduleParts":{"main-7ff41eda.mjs":"79040035-73"},"imported":[],"importedBy":[{"uid":"79040035-0"}]},"79040035-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-7ff41eda.mjs":"79040035-75"},"imported":[{"uid":"79040035-145"}],"importedBy":[{"uid":"79040035-80"}]},"79040035-76":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/history.ts","moduleParts":{"main-7ff41eda.mjs":"79040035-77"},"imported":[{"uid":"79040035-101"},{"uid":"79040035-78"}],"importedBy":[{"uid":"79040035-78"}]},"79040035-78":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/form.ts","moduleParts":{"main-7ff41eda.mjs":"79040035-79"},"imported":[{"uid":"79040035-101"},{"uid":"79040035-76"}],"importedBy":[{"uid":"79040035-80"},{"uid":"79040035-76"}]},"79040035-80":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/_.ts","moduleParts":{"main-7ff41eda.mjs":"79040035-81"},"imported":[{"uid":"79040035-135"},{"uid":"79040035-74"},{"uid":"79040035-78"}],"importedBy":[{"uid":"79040035-0"},{"uid":"79040035-89"},{"uid":"79040035-97"}]},"79040035-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-7ff41eda.mjs":"79040035-83"},"imported":[],"importedBy":[{"uid":"79040035-84"}]},"79040035-84":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue","moduleParts":{"main-7ff41eda.mjs":"79040035-85"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-109"},{"uid":"79040035-101"},{"uid":"79040035-82"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-87":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/RichText/index.vue","moduleParts":{"index-188c4cca.mjs":"79040035-88"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-107"},{"uid":"79040035-101"},{"uid":"79040035-136"},{"uid":"79040035-2"},{"uid":"79040035-4"},{"uid":"79040035-22"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-89":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","moduleParts":{"index-e8e56d6c.mjs":"79040035-90"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-137"},{"uid":"79040035-138"},{"uid":"79040035-116"},{"uid":"79040035-139"},{"uid":"79040035-107"},{"uid":"79040035-101"},{"uid":"79040035-2"},{"uid":"79040035-4"},{"uid":"79040035-22"},{"uid":"79040035-140"},{"uid":"79040035-80"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-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-8cefef30.mjs":"79040035-92"},"imported":[],"importedBy":[{"uid":"79040035-93"}]},"79040035-93":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/common/formAction.vue","moduleParts":{"formAction-8cefef30.mjs":"79040035-94"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-141"},{"uid":"79040035-134"},{"uid":"79040035-105"},{"uid":"79040035-142"},{"uid":"79040035-137"},{"uid":"79040035-139"},{"uid":"79040035-143"},{"uid":"79040035-116"},{"uid":"79040035-107"},{"uid":"79040035-101"},{"uid":"79040035-144"},{"uid":"79040035-91"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-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-ebf27278.mjs":"79040035-96"},"imported":[],"importedBy":[{"uid":"79040035-97"}]},"79040035-97":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/components/Rule/index.vue","moduleParts":{"index-ebf27278.mjs":"79040035-98"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-137"},{"uid":"79040035-139"},{"uid":"79040035-138"},{"uid":"79040035-131"},{"uid":"79040035-110"},{"uid":"79040035-111"},{"uid":"79040035-112"},{"uid":"79040035-113"},{"uid":"79040035-114"},{"uid":"79040035-104"},{"uid":"79040035-116"},{"uid":"79040035-118"},{"uid":"79040035-119"},{"uid":"79040035-107"},{"uid":"79040035-101"},{"uid":"79040035-4"},{"uid":"79040035-80"},{"uid":"79040035-42"},{"uid":"79040035-40"},{"uid":"79040035-108"},{"uid":"79040035-99"},{"uid":"79040035-144"},{"uid":"79040035-95"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"}]},"79040035-99":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","moduleParts":{"starfish-form-6775ebbc.mjs":"79040035-100"},"imported":[{"uid":"79040035-102"},{"uid":"79040035-103"},{"uid":"79040035-141"},{"uid":"79040035-134"},{"uid":"79040035-101"},{"uid":"79040035-6"}],"importedBy":[{"uid":"79040035-0"},{"uid":"79040035-97"}]},"79040035-101":{"id":"vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-0"},{"uid":"79040035-8"},{"uid":"79040035-10"},{"uid":"79040035-14"},{"uid":"79040035-16"},{"uid":"79040035-18"},{"uid":"79040035-20"},{"uid":"79040035-24"},{"uid":"79040035-26"},{"uid":"79040035-30"},{"uid":"79040035-32"},{"uid":"79040035-34"},{"uid":"79040035-36"},{"uid":"79040035-38"},{"uid":"79040035-44"},{"uid":"79040035-46"},{"uid":"79040035-48"},{"uid":"79040035-50"},{"uid":"79040035-52"},{"uid":"79040035-54"},{"uid":"79040035-56"},{"uid":"79040035-58"},{"uid":"79040035-60"},{"uid":"79040035-62"},{"uid":"79040035-64"},{"uid":"79040035-66"},{"uid":"79040035-68"},{"uid":"79040035-70"},{"uid":"79040035-84"},{"uid":"79040035-87"},{"uid":"79040035-89"},{"uid":"79040035-93"},{"uid":"79040035-97"},{"uid":"79040035-99"},{"uid":"79040035-22"},{"uid":"79040035-78"},{"uid":"79040035-76"}],"isExternal":true},"79040035-102":{"id":"element-plus/es","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-8"},{"uid":"79040035-10"},{"uid":"79040035-14"},{"uid":"79040035-16"},{"uid":"79040035-18"},{"uid":"79040035-20"},{"uid":"79040035-24"},{"uid":"79040035-26"},{"uid":"79040035-30"},{"uid":"79040035-32"},{"uid":"79040035-34"},{"uid":"79040035-36"},{"uid":"79040035-38"},{"uid":"79040035-44"},{"uid":"79040035-46"},{"uid":"79040035-48"},{"uid":"79040035-50"},{"uid":"79040035-52"},{"uid":"79040035-54"},{"uid":"79040035-56"},{"uid":"79040035-58"},{"uid":"79040035-60"},{"uid":"79040035-62"},{"uid":"79040035-64"},{"uid":"79040035-66"},{"uid":"79040035-68"},{"uid":"79040035-70"},{"uid":"79040035-84"},{"uid":"79040035-87"},{"uid":"79040035-89"},{"uid":"79040035-93"},{"uid":"79040035-97"},{"uid":"79040035-99"}],"isExternal":true},"79040035-103":{"id":"element-plus/es/components/base/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-8"},{"uid":"79040035-10"},{"uid":"79040035-14"},{"uid":"79040035-16"},{"uid":"79040035-18"},{"uid":"79040035-20"},{"uid":"79040035-24"},{"uid":"79040035-26"},{"uid":"79040035-30"},{"uid":"79040035-32"},{"uid":"79040035-34"},{"uid":"79040035-36"},{"uid":"79040035-38"},{"uid":"79040035-44"},{"uid":"79040035-46"},{"uid":"79040035-48"},{"uid":"79040035-50"},{"uid":"79040035-52"},{"uid":"79040035-54"},{"uid":"79040035-56"},{"uid":"79040035-58"},{"uid":"79040035-60"},{"uid":"79040035-62"},{"uid":"79040035-64"},{"uid":"79040035-66"},{"uid":"79040035-68"},{"uid":"79040035-70"},{"uid":"79040035-84"},{"uid":"79040035-87"},{"uid":"79040035-89"},{"uid":"79040035-93"},{"uid":"79040035-97"},{"uid":"79040035-99"}],"isExternal":true},"79040035-104":{"id":"element-plus/es/components/icon/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-8"},{"uid":"79040035-10"},{"uid":"79040035-16"},{"uid":"79040035-18"},{"uid":"79040035-20"},{"uid":"79040035-97"}],"isExternal":true},"79040035-105":{"id":"element-plus/es/components/input/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-8"},{"uid":"79040035-10"},{"uid":"79040035-20"},{"uid":"79040035-30"},{"uid":"79040035-54"},{"uid":"79040035-56"},{"uid":"79040035-93"}],"isExternal":true},"79040035-106":{"id":"element-plus/es/components/checkbox/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-8"},{"uid":"79040035-10"},{"uid":"79040035-26"}],"isExternal":true},"79040035-107":{"id":"element-plus/es/components/tooltip/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-8"},{"uid":"79040035-10"},{"uid":"79040035-16"},{"uid":"79040035-20"},{"uid":"79040035-24"},{"uid":"79040035-26"},{"uid":"79040035-30"},{"uid":"79040035-32"},{"uid":"79040035-34"},{"uid":"79040035-36"},{"uid":"79040035-38"},{"uid":"79040035-44"},{"uid":"79040035-46"},{"uid":"79040035-48"},{"uid":"79040035-50"},{"uid":"79040035-52"},{"uid":"79040035-54"},{"uid":"79040035-56"},{"uid":"79040035-58"},{"uid":"79040035-62"},{"uid":"79040035-87"},{"uid":"79040035-89"},{"uid":"79040035-93"},{"uid":"79040035-97"}],"isExternal":true},"79040035-108":{"id":"@element-plus/icons-vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-8"},{"uid":"79040035-10"},{"uid":"79040035-16"},{"uid":"79040035-18"},{"uid":"79040035-20"},{"uid":"79040035-97"}],"isExternal":true},"79040035-109":{"id":"element-plus/es/components/loading/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-14"},{"uid":"79040035-84"}],"isExternal":true},"79040035-110":{"id":"element-plus/es/components/dropdown/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-16"},{"uid":"79040035-97"}],"isExternal":true},"79040035-111":{"id":"element-plus/es/components/dropdown-menu/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-16"},{"uid":"79040035-97"}],"isExternal":true},"79040035-112":{"id":"element-plus/es/components/dropdown-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-16"},{"uid":"79040035-97"}],"isExternal":true},"79040035-113":{"id":"element-plus/es/components/collapse/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-16"},{"uid":"79040035-66"},{"uid":"79040035-97"}],"isExternal":true},"79040035-114":{"id":"element-plus/es/components/collapse-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-16"},{"uid":"79040035-66"},{"uid":"79040035-97"}],"isExternal":true},"79040035-115":{"id":"element-plus/es/components/row/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-16"},{"uid":"79040035-18"},{"uid":"79040035-20"},{"uid":"79040035-68"}],"isExternal":true},"79040035-116":{"id":"element-plus/es/components/button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-16"},{"uid":"79040035-18"},{"uid":"79040035-20"},{"uid":"79040035-48"},{"uid":"79040035-89"},{"uid":"79040035-93"},{"uid":"79040035-97"}],"isExternal":true},"79040035-117":{"id":"element-plus/es/components/col/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-16"},{"uid":"79040035-20"},{"uid":"79040035-68"}],"isExternal":true},"79040035-118":{"id":"element-plus/es/components/select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-16"},{"uid":"79040035-44"},{"uid":"79040035-46"},{"uid":"79040035-97"}],"isExternal":true},"79040035-119":{"id":"element-plus/es/components/option/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-16"},{"uid":"79040035-44"},{"uid":"79040035-46"},{"uid":"79040035-97"}],"isExternal":true},"79040035-120":{"id":"element-plus/es/components/input-number/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-18"},{"uid":"79040035-36"}],"isExternal":true},"79040035-121":{"id":"element-plus/es/components/radio-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-24"},{"uid":"79040035-38"}],"isExternal":true},"79040035-122":{"id":"element-plus/es/components/radio-button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-24"}],"isExternal":true},"79040035-123":{"id":"element-plus/es/components/checkbox-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-26"}],"isExternal":true},"79040035-124":{"id":"element-plus/es/components/color-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-30"}],"isExternal":true},"79040035-125":{"id":"element-plus/es/components/date-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-32"},{"uid":"79040035-34"}],"isExternal":true},"79040035-126":{"id":"element-plus/es/components/radio/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-38"}],"isExternal":true},"79040035-127":{"id":"element-plus/es/components/slider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-50"}],"isExternal":true},"79040035-128":{"id":"element-plus/es/components/switch/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-52"}],"isExternal":true},"79040035-129":{"id":"element-plus/es/components/time-select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-58"}],"isExternal":true},"79040035-130":{"id":"element-plus/es/components/divider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-60"}],"isExternal":true},"79040035-131":{"id":"element-plus/es/components/alert/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-62"},{"uid":"79040035-97"}],"isExternal":true},"79040035-132":{"id":"element-plus/es/components/tabs/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-64"}],"isExternal":true},"79040035-133":{"id":"element-plus/es/components/tab-pane/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-64"}],"isExternal":true},"79040035-134":{"id":"element-plus/es/components/form-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-64"},{"uid":"79040035-66"},{"uid":"79040035-68"},{"uid":"79040035-70"},{"uid":"79040035-93"},{"uid":"79040035-99"}],"isExternal":true},"79040035-135":{"id":"element-plus","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-80"}],"isExternal":true},"79040035-136":{"id":"wangeditor","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-87"}],"isExternal":true},"79040035-137":{"id":"element-plus/es/components/container/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-89"},{"uid":"79040035-93"},{"uid":"79040035-97"}],"isExternal":true},"79040035-138":{"id":"element-plus/es/components/footer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-89"},{"uid":"79040035-97"}],"isExternal":true},"79040035-139":{"id":"element-plus/es/components/main/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-89"},{"uid":"79040035-93"},{"uid":"79040035-97"}],"isExternal":true},"79040035-140":{"id":"jsoneditor","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-89"}],"isExternal":true},"79040035-141":{"id":"element-plus/es/components/form/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-93"},{"uid":"79040035-99"}],"isExternal":true},"79040035-142":{"id":"element-plus/es/components/aside/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-93"}],"isExternal":true},"79040035-143":{"id":"element-plus/es/components/scrollbar/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-93"}],"isExternal":true},"79040035-144":{"id":"vue-codemirror","moduleParts":{},"imported":[],"importedBy":[{"uid":"79040035-93"},{"uid":"79040035-97"}],"isExternal":true},"79040035-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":"79040035-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;
|