starfish-form-custom 1.0.45 → 1.0.46
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-47da9ade.mjs → formAction-b76664af.mjs} +1 -1
- package/dist/{index-b3b75fee.mjs → index-0aa74f91.mjs} +3 -3
- package/dist/{index-d029d3de.mjs → index-7fc8db96.mjs} +1 -1
- package/dist/{index-2d78c11c.mjs → index-d1c1ba4b.mjs} +2 -2
- package/dist/{main-c9f94a75.mjs → main-d99755be.mjs} +27 -23
- package/dist/{starfish-form-ff99f526.mjs → starfish-form-0baee1df.mjs} +11 -5
- package/dist/starfish-form.mjs +1 -1
- package/dist/style.css +5 -5
- package/dist/types/form/src/main.d.ts +9 -0
- package/dist/types/form/src/starfish-form.vue.d.ts +9 -0
- package/dist/types/form/src/utils/fieldProps.d.ts +4 -0
- package/package.json +1 -1
- package/src/components/CheckBox/index.vue +2 -2
- package/src/components/Date/index.vue +2 -2
- package/src/components/DateTime/index.vue +2 -2
- package/src/components/InputNumber/index.vue +2 -2
- package/src/components/Radio/index.vue +9 -1
- package/src/components/RichText/index.vue +1 -1
- package/src/components/Selected/index.vue +2 -2
- package/src/components/Selecteds/index.vue +2 -2
- package/src/components/Switch/index.vue +1 -1
- package/src/components/Text/index.vue +2 -2
- package/src/components/TextArea/index.vue +2 -2
- package/src/starfish-form.vue +8 -2
- package/src/utils/fieldProps.ts +5 -1
- 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, createTextVNode, createVNode, Fragment, renderList, withModifiers } from 'vue';
|
|
13
13
|
import { Codemirror } from 'vue-codemirror';
|
|
14
|
-
import { _ as _export_sfc } from './main-
|
|
14
|
+
import { _ as _export_sfc } from './main-d99755be.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';
|
|
@@ -4,7 +4,7 @@ import 'element-plus/es/components/tooltip/style/css';
|
|
|
4
4
|
import { defineComponent, ref, computed, watch, resolveComponent, openBlock, createElementBlock, normalizeClass, createElementVNode, normalizeStyle, createCommentVNode, toDisplayString, createBlock, withCtx, withModifiers, createVNode } from 'vue';
|
|
5
5
|
import { QuillEditor } from '@vueup/vue-quill';
|
|
6
6
|
import '@vueup/vue-quill/dist/vue-quill.snow.css';
|
|
7
|
-
import { _ as _export_sfc, g as getFormConfig, f as fieldProps, u as useWatch } from './main-
|
|
7
|
+
import { _ as _export_sfc, g as getFormConfig, f as fieldProps, u as useWatch } from './main-d99755be.mjs';
|
|
8
8
|
import 'element-plus/es/components/icon/style/css';
|
|
9
9
|
import 'element-plus/es/components/input/style/css';
|
|
10
10
|
import 'element-plus/es/components/checkbox/style/css';
|
|
@@ -93,7 +93,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
93
93
|
}, [
|
|
94
94
|
_ctx.item.data.required && !_ctx.readonly && _ctx.item.data.state !== "readonly" ? (openBlock(), createElementBlock("span", _hoisted_2, "*")) : createCommentVNode("", true),
|
|
95
95
|
createElementVNode("label", null, toDisplayString(_ctx.item.data.label) + toDisplayString(_ctx.suffix), 1),
|
|
96
|
-
_ctx.item.data.tip ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
96
|
+
_ctx.item.data.tip && !_ctx.readonly ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
97
97
|
key: 1,
|
|
98
98
|
class: "item",
|
|
99
99
|
effect: "dark",
|
|
@@ -128,6 +128,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
128
128
|
], 4)
|
|
129
129
|
], 10, _hoisted_1);
|
|
130
130
|
}
|
|
131
|
-
const index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-
|
|
131
|
+
const index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-244b11c8"]]);
|
|
132
132
|
|
|
133
133
|
export { index as default };
|
|
@@ -6,7 +6,7 @@ import 'element-plus/es/components/button/style/css';
|
|
|
6
6
|
import 'element-plus/es/components/main/style/css';
|
|
7
7
|
import 'element-plus/es/components/tooltip/style/css';
|
|
8
8
|
import { defineComponent, ref, onMounted, watch, nextTick, resolveComponent, openBlock, createElementBlock, normalizeClass, createElementVNode, normalizeStyle, toDisplayString, createCommentVNode, createBlock, withCtx, createVNode, createTextVNode } from 'vue';
|
|
9
|
-
import { _ as _export_sfc, 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-d99755be.mjs';
|
|
10
10
|
import JSONEditor from 'jsoneditor';
|
|
11
11
|
import 'element-plus/es/components/icon/style/css';
|
|
12
12
|
import 'element-plus/es/components/input/style/css';
|
|
@@ -13,9 +13,9 @@ import 'element-plus/es/components/dropdown-item/style/css';
|
|
|
13
13
|
import 'element-plus/es/components/button/style/css';
|
|
14
14
|
import 'element-plus/es/components/tooltip/style/css';
|
|
15
15
|
import { defineComponent, getCurrentInstance, inject, computed, ref, resolveComponent, openBlock, createElementBlock, normalizeClass, createElementVNode, normalizeStyle, toDisplayString, createCommentVNode, createBlock, withCtx, createVNode, createTextVNode, Fragment, renderList } from 'vue';
|
|
16
|
-
import { _ as _export_sfc, a as _, f as fieldProps, r as ruleList, b as ruleJsonData } from './main-
|
|
16
|
+
import { _ as _export_sfc, a as _, f as fieldProps, r as ruleList, b as ruleJsonData } from './main-d99755be.mjs';
|
|
17
17
|
import { Delete } from '@element-plus/icons-vue';
|
|
18
|
-
import Dynamicform from './starfish-form-
|
|
18
|
+
import Dynamicform from './starfish-form-0baee1df.mjs';
|
|
19
19
|
import { Codemirror } from 'vue-codemirror';
|
|
20
20
|
import 'element-plus/es/components/input/style/css';
|
|
21
21
|
import 'element-plus/es/components/checkbox/style/css';
|
|
@@ -970,6 +970,10 @@ const fieldProps = {
|
|
|
970
970
|
type: Boolean,
|
|
971
971
|
default: false
|
|
972
972
|
},
|
|
973
|
+
search: {
|
|
974
|
+
type: Boolean,
|
|
975
|
+
default: false
|
|
976
|
+
},
|
|
973
977
|
labelalign: {
|
|
974
978
|
type: String,
|
|
975
979
|
default: "top"
|
|
@@ -2065,9 +2069,9 @@ function _sfc_render$k(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2065
2069
|
class: normalizeClass(["label", "label_" + _ctx.labelalign]),
|
|
2066
2070
|
style: normalizeStyle({ width: _ctx.labelWidth + "px" })
|
|
2067
2071
|
}, [
|
|
2068
|
-
_ctx.item.data.required && !_ctx.readonly && _ctx.item.data.state !== "readonly" ? (openBlock(), createElementBlock("span", _hoisted_1$k, "*")) : createCommentVNode("", true),
|
|
2072
|
+
_ctx.item.data.required && !_ctx.readonly && _ctx.item.data.state !== "readonly" && !_ctx.search ? (openBlock(), createElementBlock("span", _hoisted_1$k, "*")) : createCommentVNode("", true),
|
|
2069
2073
|
createElementVNode("label", null, toDisplayString(_ctx.item.data.label) + toDisplayString(_ctx.suffix), 1),
|
|
2070
|
-
_ctx.item.data.tip ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
2074
|
+
_ctx.item.data.tip && !_ctx.readonly && !_ctx.search ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
2071
2075
|
key: 1,
|
|
2072
2076
|
class: "item",
|
|
2073
2077
|
effect: "dark",
|
|
@@ -2308,9 +2312,9 @@ function _sfc_render$i(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2308
2312
|
class: normalizeClass(["label", "label_" + _ctx.labelalign]),
|
|
2309
2313
|
style: normalizeStyle({ width: _ctx.labelWidth + "px" })
|
|
2310
2314
|
}, [
|
|
2311
|
-
_ctx.item.data.required && !_ctx.readonly && _ctx.item.data.state !== "readonly" ? (openBlock(), createElementBlock("span", _hoisted_1$i, "*")) : createCommentVNode("", true),
|
|
2315
|
+
_ctx.item.data.required && !_ctx.readonly && _ctx.item.data.state !== "readonly" && !_ctx.search ? (openBlock(), createElementBlock("span", _hoisted_1$i, "*")) : createCommentVNode("", true),
|
|
2312
2316
|
createElementVNode("label", null, toDisplayString(_ctx.item.data.label) + toDisplayString(_ctx.suffix), 1),
|
|
2313
|
-
_ctx.item.data.tip ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
2317
|
+
_ctx.item.data.tip && !_ctx.readonly && !_ctx.search ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
2314
2318
|
key: 1,
|
|
2315
2319
|
class: "item",
|
|
2316
2320
|
effect: "dark",
|
|
@@ -2425,9 +2429,9 @@ function _sfc_render$h(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2425
2429
|
class: normalizeClass(["label", "label_" + _ctx.labelalign]),
|
|
2426
2430
|
style: normalizeStyle({ width: _ctx.labelWidth + "px" })
|
|
2427
2431
|
}, [
|
|
2428
|
-
_ctx.item.data.required && !_ctx.readonly && _ctx.item.data.state !== "readonly" ? (openBlock(), createElementBlock("span", _hoisted_1$h, "*")) : createCommentVNode("", true),
|
|
2432
|
+
_ctx.item.data.required && !_ctx.readonly && _ctx.item.data.state !== "readonly" && !_ctx.search ? (openBlock(), createElementBlock("span", _hoisted_1$h, "*")) : createCommentVNode("", true),
|
|
2429
2433
|
createElementVNode("label", null, toDisplayString(_ctx.item.data.label) + toDisplayString(_ctx.suffix), 1),
|
|
2430
|
-
_ctx.item.data.tip ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
2434
|
+
_ctx.item.data.tip && !_ctx.readonly && !_ctx.search ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
2431
2435
|
key: 1,
|
|
2432
2436
|
class: "item",
|
|
2433
2437
|
effect: "dark",
|
|
@@ -2537,9 +2541,9 @@ function _sfc_render$g(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2537
2541
|
class: normalizeClass(["label", "label_" + _ctx.labelalign]),
|
|
2538
2542
|
style: normalizeStyle({ width: _ctx.labelWidth + "px" })
|
|
2539
2543
|
}, [
|
|
2540
|
-
_ctx.item.data.required && !_ctx.readonly && _ctx.item.data.state !== "readonly" ? (openBlock(), createElementBlock("span", _hoisted_1$g, "*")) : createCommentVNode("", true),
|
|
2544
|
+
_ctx.item.data.required && !_ctx.readonly && _ctx.item.data.state !== "readonly" && !_ctx.search ? (openBlock(), createElementBlock("span", _hoisted_1$g, "*")) : createCommentVNode("", true),
|
|
2541
2545
|
createElementVNode("label", null, toDisplayString(_ctx.item.data.label) + toDisplayString(_ctx.suffix), 1),
|
|
2542
|
-
_ctx.item.data.tip ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
2546
|
+
_ctx.item.data.tip && !_ctx.readonly && !_ctx.search ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
2543
2547
|
key: 1,
|
|
2544
2548
|
class: "item",
|
|
2545
2549
|
effect: "dark",
|
|
@@ -2628,7 +2632,7 @@ function _sfc_render$f(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2628
2632
|
}, [
|
|
2629
2633
|
_ctx.item.data.required && !_ctx.readonly && _ctx.item.data.state !== "readonly" ? (openBlock(), createElementBlock("span", _hoisted_1$f, "*")) : createCommentVNode("", true),
|
|
2630
2634
|
createElementVNode("label", null, toDisplayString(_ctx.item.data.label) + toDisplayString(_ctx.suffix), 1),
|
|
2631
|
-
_ctx.item.data.tip ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
2635
|
+
_ctx.item.data.tip && !_ctx.readonly ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
2632
2636
|
key: 1,
|
|
2633
2637
|
class: "item",
|
|
2634
2638
|
effect: "dark",
|
|
@@ -3174,9 +3178,9 @@ function _sfc_render$e(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3174
3178
|
class: normalizeClass(["label", "label_" + _ctx.labelalign]),
|
|
3175
3179
|
style: normalizeStyle({ width: _ctx.labelWidth + "px" })
|
|
3176
3180
|
}, [
|
|
3177
|
-
_ctx.item.data.required && !_ctx.readonly && _ctx.item.data.state !== "readonly" ? (openBlock(), createElementBlock("span", _hoisted_1$e, "*")) : createCommentVNode("", true),
|
|
3181
|
+
_ctx.item.data.required && !_ctx.readonly && _ctx.item.data.state !== "readonly" && !_ctx.search ? (openBlock(), createElementBlock("span", _hoisted_1$e, "*")) : createCommentVNode("", true),
|
|
3178
3182
|
createElementVNode("label", null, toDisplayString(_ctx.item.data.label) + toDisplayString(_ctx.suffix), 1),
|
|
3179
|
-
_ctx.item.data.tip ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
3183
|
+
_ctx.item.data.tip && !_ctx.readonly && !_ctx.search ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
3180
3184
|
key: 1,
|
|
3181
3185
|
class: "item",
|
|
3182
3186
|
effect: "dark",
|
|
@@ -3310,9 +3314,9 @@ function _sfc_render$d(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3310
3314
|
class: normalizeClass(["label", "label_" + _ctx.labelalign]),
|
|
3311
3315
|
style: normalizeStyle({ width: _ctx.labelWidth + "px" })
|
|
3312
3316
|
}, [
|
|
3313
|
-
_ctx.item.data.required && !_ctx.readonly && _ctx.item.data.state !== "readonly" ? (openBlock(), createElementBlock("span", _hoisted_1$d, "*")) : createCommentVNode("", true),
|
|
3317
|
+
_ctx.item.data.required && !_ctx.readonly && _ctx.item.data.state !== "readonly" && !_ctx.search ? (openBlock(), createElementBlock("span", _hoisted_1$d, "*")) : createCommentVNode("", true),
|
|
3314
3318
|
createElementVNode("label", null, toDisplayString(_ctx.item.data.label) + toDisplayString(_ctx.suffix), 1),
|
|
3315
|
-
_ctx.item.data.tip ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
3319
|
+
_ctx.item.data.tip && !_ctx.readonly && !_ctx.search ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
3316
3320
|
key: 1,
|
|
3317
3321
|
class: "item",
|
|
3318
3322
|
effect: "dark",
|
|
@@ -3621,7 +3625,7 @@ function _sfc_render$a(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3621
3625
|
}, [
|
|
3622
3626
|
_ctx.item.data.required && !_ctx.readonly && _ctx.item.data.state !== "readonly" ? (openBlock(), createElementBlock("span", _hoisted_1$a, "*")) : createCommentVNode("", true),
|
|
3623
3627
|
createElementVNode("label", null, toDisplayString(_ctx.item.data.label) + toDisplayString(_ctx.suffix), 1),
|
|
3624
|
-
_ctx.item.data.tip ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
3628
|
+
_ctx.item.data.tip && !_ctx.readonly ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
3625
3629
|
key: 1,
|
|
3626
3630
|
class: "item",
|
|
3627
3631
|
effect: "dark",
|
|
@@ -3713,9 +3717,9 @@ function _sfc_render$9(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3713
3717
|
class: normalizeClass(["label", "label_" + _ctx.labelalign]),
|
|
3714
3718
|
style: normalizeStyle({ width: _ctx.labelWidth + "px" })
|
|
3715
3719
|
}, [
|
|
3716
|
-
_ctx.item.data.required && !_ctx.readonly && _ctx.item.data.state !== "readonly" ? (openBlock(), createElementBlock("span", _hoisted_1$9, "*")) : createCommentVNode("", true),
|
|
3720
|
+
_ctx.item.data.required && !_ctx.readonly && _ctx.item.data.state !== "readonly" && !_ctx.search ? (openBlock(), createElementBlock("span", _hoisted_1$9, "*")) : createCommentVNode("", true),
|
|
3717
3721
|
createElementVNode("label", null, toDisplayString(_ctx.item.data.label) + toDisplayString(_ctx.suffix), 1),
|
|
3718
|
-
_ctx.item.data.tip ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
3722
|
+
_ctx.item.data.tip && !_ctx.readonly && !_ctx.search ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
3719
3723
|
key: 1,
|
|
3720
3724
|
class: "item",
|
|
3721
3725
|
effect: "dark",
|
|
@@ -3822,9 +3826,9 @@ function _sfc_render$8(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3822
3826
|
class: normalizeClass(["label", "label_" + _ctx.labelalign]),
|
|
3823
3827
|
style: normalizeStyle({ width: _ctx.labelWidth + "px" })
|
|
3824
3828
|
}, [
|
|
3825
|
-
_ctx.item.data.required && !_ctx.readonly && _ctx.item.data.state !== "readonly" ? (openBlock(), createElementBlock("span", _hoisted_1$8, "*")) : createCommentVNode("", true),
|
|
3829
|
+
_ctx.item.data.required && !_ctx.readonly && _ctx.item.data.state !== "readonly" && !_ctx.search ? (openBlock(), createElementBlock("span", _hoisted_1$8, "*")) : createCommentVNode("", true),
|
|
3826
3830
|
createElementVNode("label", null, toDisplayString(_ctx.item.data.label) + toDisplayString(_ctx.suffix), 1),
|
|
3827
|
-
_ctx.item.data.tip ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
3831
|
+
_ctx.item.data.tip && !_ctx.readonly && !_ctx.search ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
3828
3832
|
key: 1,
|
|
3829
3833
|
class: "item",
|
|
3830
3834
|
effect: "dark",
|
|
@@ -5335,7 +5339,7 @@ Object.keys(files).forEach((fileName) => {
|
|
|
5335
5339
|
}
|
|
5336
5340
|
});
|
|
5337
5341
|
const RichText = defineAsyncComponent({
|
|
5338
|
-
loader: () => import('./index-
|
|
5342
|
+
loader: () => import('./index-0aa74f91.mjs'),
|
|
5339
5343
|
loadingComponent: Loading
|
|
5340
5344
|
});
|
|
5341
5345
|
RichText.ControlType = "RichText";
|
|
@@ -5344,7 +5348,7 @@ RichText.icon = "icon-textEdit";
|
|
|
5344
5348
|
RichText.formConfig = getFormConfig("RichText");
|
|
5345
5349
|
utilFuns[RichText.ControlType] = RichText;
|
|
5346
5350
|
const jsonEditor = defineAsyncComponent({
|
|
5347
|
-
loader: () => import('./index-
|
|
5351
|
+
loader: () => import('./index-7fc8db96.mjs'),
|
|
5348
5352
|
loadingComponent: Loading
|
|
5349
5353
|
});
|
|
5350
5354
|
jsonEditor.ControlType = "JsonEditor";
|
|
@@ -5354,14 +5358,14 @@ jsonEditor.formConfig = getFormConfig("JsonEditor", [{ fieldName: "default", com
|
|
|
5354
5358
|
jsonEditor.rule = _.getJsonValidate();
|
|
5355
5359
|
utilFuns[jsonEditor.ControlType] = jsonEditor;
|
|
5356
5360
|
const formAction = defineAsyncComponent({
|
|
5357
|
-
loader: () => import('./formAction-
|
|
5361
|
+
loader: () => import('./formAction-b76664af.mjs'),
|
|
5358
5362
|
loadingComponent: Loading
|
|
5359
5363
|
});
|
|
5360
5364
|
formAction.ControlType = "FormAction";
|
|
5361
5365
|
formAction.isHide = true;
|
|
5362
5366
|
utilFuns[formAction.ControlType] = formAction;
|
|
5363
5367
|
const Rule = defineAsyncComponent({
|
|
5364
|
-
loader: () => import('./index-
|
|
5368
|
+
loader: () => import('./index-d1c1ba4b.mjs'),
|
|
5365
5369
|
loadingComponent: Loading
|
|
5366
5370
|
});
|
|
5367
5371
|
Rule.ControlType = "Rule";
|
|
@@ -5370,7 +5374,7 @@ utilFuns[Rule.ControlType] = Rule;
|
|
|
5370
5374
|
const install = (app) => {
|
|
5371
5375
|
app.config.globalProperties.$formcomponents = utilFuns;
|
|
5372
5376
|
};
|
|
5373
|
-
const Dynamicform = defineAsyncComponent(() => import('./starfish-form-
|
|
5377
|
+
const Dynamicform = defineAsyncComponent(() => import('./starfish-form-0baee1df.mjs'));
|
|
5374
5378
|
const main = {
|
|
5375
5379
|
install
|
|
5376
5380
|
};
|
|
@@ -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-d99755be.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';
|
|
@@ -60,6 +60,10 @@ const _sfc_main = defineComponent({
|
|
|
60
60
|
readonly: {
|
|
61
61
|
type: Boolean,
|
|
62
62
|
default: false
|
|
63
|
+
},
|
|
64
|
+
search: {
|
|
65
|
+
type: Boolean,
|
|
66
|
+
default: false
|
|
63
67
|
}
|
|
64
68
|
},
|
|
65
69
|
setup(props, { emit }) {
|
|
@@ -107,14 +111,14 @@ const _sfc_main = defineComponent({
|
|
|
107
111
|
function getRules(item2) {
|
|
108
112
|
if (!item2.layout) {
|
|
109
113
|
let rule = [];
|
|
110
|
-
if (item2.data.required) {
|
|
114
|
+
if (item2.data.required && !props.search) {
|
|
111
115
|
rule.push({
|
|
112
116
|
required: true,
|
|
113
117
|
message: "\u8BF7\u8F93\u5165" + item2.data.label,
|
|
114
118
|
trigger: "blur"
|
|
115
119
|
});
|
|
116
120
|
}
|
|
117
|
-
if (typeof item2.data.minLength === "number" && item2.data.minLength > 0) {
|
|
121
|
+
if (typeof item2.data.minLength === "number" && item2.data.minLength > 0 && !props.search) {
|
|
118
122
|
rule.push({
|
|
119
123
|
validator: (rule2, value, callback) => {
|
|
120
124
|
if (typeof value === "string" && value.length < item2.data.minLength) {
|
|
@@ -324,11 +328,12 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
324
328
|
onChange: _ctx.handleControlChange
|
|
325
329
|
}, { ref_for: true }, _ctx.globalConfig, {
|
|
326
330
|
readonly: _ctx.readonly,
|
|
331
|
+
search: _ctx.search,
|
|
327
332
|
item: item2,
|
|
328
333
|
data: _ctx.formResult || "{}",
|
|
329
334
|
drag: false,
|
|
330
335
|
size: "default"
|
|
331
|
-
}), null, 16, ["onChange", "readonly", "item", "data"]))
|
|
336
|
+
}), null, 16, ["onChange", "readonly", "search", "item", "data"]))
|
|
332
337
|
]),
|
|
333
338
|
_: 2
|
|
334
339
|
}, 1032, ["prop"])) : item2.show ? (openBlock(), createBlock(resolveDynamicComponent(item2.ControlType), mergeProps({
|
|
@@ -338,11 +343,12 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
338
343
|
key: item2.id
|
|
339
344
|
}, { ref_for: true }, _ctx.globalConfig, {
|
|
340
345
|
readonly: _ctx.readonly,
|
|
346
|
+
search: _ctx.search,
|
|
341
347
|
item: item2,
|
|
342
348
|
data: _ctx.formResult || "{}",
|
|
343
349
|
drag: false,
|
|
344
350
|
size: "default"
|
|
345
|
-
}), null, 16, ["onChange", "readonly", "item", "data"])) : createCommentVNode("", true)
|
|
351
|
+
}), null, 16, ["onChange", "readonly", "search", "item", "data"])) : createCommentVNode("", true)
|
|
346
352
|
], 64);
|
|
347
353
|
}), 256))
|
|
348
354
|
]),
|
package/dist/starfish-form.mjs
CHANGED
package/dist/style.css
CHANGED
|
@@ -424,15 +424,15 @@
|
|
|
424
424
|
width: 100%;
|
|
425
425
|
min-height: 60px;
|
|
426
426
|
height: 100%;
|
|
427
|
-
}.rich-text-editor[data-v-
|
|
427
|
+
}.rich-text-editor[data-v-244b11c8] {
|
|
428
428
|
min-height: 200px;
|
|
429
429
|
position: relative;
|
|
430
430
|
z-index: 1;
|
|
431
431
|
}
|
|
432
|
-
[data-v-
|
|
432
|
+
[data-v-244b11c8] .editor-content {
|
|
433
433
|
min-height: 200px;
|
|
434
434
|
}
|
|
435
|
-
[data-v-
|
|
435
|
+
[data-v-244b11c8] .editor-content .ql-toolbar {
|
|
436
436
|
z-index: 100;
|
|
437
437
|
background: white;
|
|
438
438
|
border: 1px solid #ccc;
|
|
@@ -440,7 +440,7 @@
|
|
|
440
440
|
border-top-right-radius: 4px;
|
|
441
441
|
position: relative;
|
|
442
442
|
}
|
|
443
|
-
[data-v-
|
|
443
|
+
[data-v-244b11c8] .editor-content .ql-container {
|
|
444
444
|
border: 1px solid #ccc;
|
|
445
445
|
border-top: none;
|
|
446
446
|
border-bottom-left-radius: 4px;
|
|
@@ -448,7 +448,7 @@
|
|
|
448
448
|
min-height: 200px;
|
|
449
449
|
z-index: 99;
|
|
450
450
|
}
|
|
451
|
-
[data-v-
|
|
451
|
+
[data-v-244b11c8] .shape .rich-text-editor {
|
|
452
452
|
pointer-events: auto !important;
|
|
453
453
|
}.cm-gutters.cm-gutters-before {
|
|
454
454
|
background: #133F63;
|
|
@@ -16,6 +16,10 @@ export declare const Dynamicform: DefineComponent<ExtractPropTypes<{
|
|
|
16
16
|
type: BooleanConstructor;
|
|
17
17
|
default: boolean;
|
|
18
18
|
};
|
|
19
|
+
search: {
|
|
20
|
+
type: BooleanConstructor;
|
|
21
|
+
default: boolean;
|
|
22
|
+
};
|
|
19
23
|
}>, {
|
|
20
24
|
rules: any;
|
|
21
25
|
ruleForm: Ref<any, any>;
|
|
@@ -40,7 +44,12 @@ export declare const Dynamicform: DefineComponent<ExtractPropTypes<{
|
|
|
40
44
|
type: BooleanConstructor;
|
|
41
45
|
default: boolean;
|
|
42
46
|
};
|
|
47
|
+
search: {
|
|
48
|
+
type: BooleanConstructor;
|
|
49
|
+
default: boolean;
|
|
50
|
+
};
|
|
43
51
|
}>> & Readonly<{}>, {
|
|
52
|
+
search: boolean;
|
|
44
53
|
readonly: boolean;
|
|
45
54
|
allFormList: any;
|
|
46
55
|
formResult: Record<string, any>;
|
|
@@ -16,6 +16,10 @@ declare const _sfc_main: DefineComponent<ExtractPropTypes<{
|
|
|
16
16
|
type: BooleanConstructor;
|
|
17
17
|
default: boolean;
|
|
18
18
|
};
|
|
19
|
+
search: {
|
|
20
|
+
type: BooleanConstructor;
|
|
21
|
+
default: boolean;
|
|
22
|
+
};
|
|
19
23
|
}>, {
|
|
20
24
|
rules: any;
|
|
21
25
|
ruleForm: Ref<any, any>;
|
|
@@ -40,7 +44,12 @@ declare const _sfc_main: DefineComponent<ExtractPropTypes<{
|
|
|
40
44
|
type: BooleanConstructor;
|
|
41
45
|
default: boolean;
|
|
42
46
|
};
|
|
47
|
+
search: {
|
|
48
|
+
type: BooleanConstructor;
|
|
49
|
+
default: boolean;
|
|
50
|
+
};
|
|
43
51
|
}>> & Readonly<{}>, {
|
|
52
|
+
search: boolean;
|
|
44
53
|
readonly: boolean;
|
|
45
54
|
allFormList: any;
|
|
46
55
|
formResult: Record<string, any>;
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="starfish-formitem" :class="{ formCover: drag, 'starfish-vertical': labelalign != 'top', [item.data.csslist?.join(' ')]: !!item.data.csslist}">
|
|
3
3
|
<div class="label" :class="'label_' + labelalign" :style="{width: labelWidth + 'px'}">
|
|
4
|
-
<span v-if="item.data.required && !readonly && item.data.state !== 'readonly'" class="item_require">*</span>
|
|
4
|
+
<span v-if="item.data.required && !readonly && item.data.state !== 'readonly' && !search" class="item_require">*</span>
|
|
5
5
|
<label>{{ item.data.label }}{{suffix}}</label>
|
|
6
|
-
<el-tooltip v-if="item.data.tip" class="item" effect="dark" :content="item.data.tip" placement="top">
|
|
6
|
+
<el-tooltip v-if="item.data.tip && !readonly && !search" class="item" effect="dark" :content="item.data.tip" placement="top">
|
|
7
7
|
<span class="tip iconfontui icon-tishi"></span>
|
|
8
8
|
</el-tooltip>
|
|
9
9
|
</div>
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="starfish-formitem" :class="{ formCover: drag, 'starfish-vertical': labelalign != 'top', [item.data.csslist?.join(' ')]: !!item.data.csslist}">
|
|
3
3
|
<div class="label" :class="'label_' + labelalign" :style="{width: labelWidth + 'px'}">
|
|
4
|
-
<span v-if="item.data.required && !readonly && item.data.state !== 'readonly'" class="item_require">*</span>
|
|
4
|
+
<span v-if="item.data.required && !readonly && item.data.state !== 'readonly' && !search" class="item_require">*</span>
|
|
5
5
|
<label>{{ item.data.label }}{{suffix}}</label>
|
|
6
|
-
<el-tooltip v-if="item.data.tip" class="item" effect="dark" :content="item.data.tip" placement="top">
|
|
6
|
+
<el-tooltip v-if="item.data.tip && !readonly && !search" class="item" effect="dark" :content="item.data.tip" placement="top">
|
|
7
7
|
<span class="tip iconfontui icon-tishi"></span>
|
|
8
8
|
</el-tooltip>
|
|
9
9
|
</div>
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="starfish-formitem" :class="{ formCover: drag, 'starfish-vertical': labelalign != 'top', [item.data.csslist?.join(' ')]: !!item.data.csslist}">
|
|
3
3
|
<div class="label" :class="'label_' + labelalign" :style="{width: labelWidth + 'px'}">
|
|
4
|
-
<span v-if="item.data.required && !readonly && item.data.state !== 'readonly'" class="item_require">*</span>
|
|
4
|
+
<span v-if="item.data.required && !readonly && item.data.state !== 'readonly' && !search" class="item_require">*</span>
|
|
5
5
|
<label>{{ item.data.label }}{{suffix}}</label>
|
|
6
|
-
<el-tooltip v-if="item.data.tip" class="item" effect="dark" :content="item.data.tip" placement="top">
|
|
6
|
+
<el-tooltip v-if="item.data.tip && !readonly && !search" class="item" effect="dark" :content="item.data.tip" placement="top">
|
|
7
7
|
<span class="tip iconfontui icon-tishi"></span>
|
|
8
8
|
</el-tooltip>
|
|
9
9
|
</div>
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
:class="'label_' + labelalign"
|
|
13
13
|
:style="{ width: labelWidth + 'px' }"
|
|
14
14
|
>
|
|
15
|
-
<span v-if="item.data.required && !readonly && item.data.state !== 'readonly'" class="item_require">*</span>
|
|
15
|
+
<span v-if="item.data.required && !readonly && item.data.state !== 'readonly' && !search" class="item_require">*</span>
|
|
16
16
|
<label>{{ item.data.label }}{{ suffix }}</label>
|
|
17
17
|
<el-tooltip
|
|
18
|
-
v-if="item.data.tip"
|
|
18
|
+
v-if="item.data.tip && !readonly && !search"
|
|
19
19
|
class="item"
|
|
20
20
|
effect="dark"
|
|
21
21
|
:content="item.data.tip"
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
* @Author: chenwen chenwen@jiton.com
|
|
3
|
+
* @Date: 2025-07-25 15:26:40
|
|
4
|
+
* @LastEditors: chenwen chenwen@jiton.com
|
|
5
|
+
* @LastEditTime: 2025-12-24 16:07:50
|
|
6
|
+
* @FilePath: \vue-form-design\packages\form\src\components\Radio\index.vue
|
|
7
|
+
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
|
8
|
+
-->
|
|
1
9
|
<template>
|
|
2
10
|
<div
|
|
3
11
|
class="starfish-formitem"
|
|
@@ -16,7 +24,7 @@
|
|
|
16
24
|
<span v-if="item.data.required && !readonly && item.data.state !== 'readonly'" class="item_require">*</span>
|
|
17
25
|
<label>{{ item.data.label }}{{ suffix }}</label>
|
|
18
26
|
<el-tooltip
|
|
19
|
-
v-if="item.data.tip"
|
|
27
|
+
v-if="item.data.tip && !readonly"
|
|
20
28
|
class="item"
|
|
21
29
|
effect="dark"
|
|
22
30
|
:content="item.data.tip"
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<div class="label" :class="'label_' + labelalign" :style="{width: labelWidth + 'px'}">
|
|
8
8
|
<span v-if="item.data.required && !readonly && item.data.state !== 'readonly'" class="item_require">*</span>
|
|
9
9
|
<label>{{ item.data.label }}{{suffix}}</label>
|
|
10
|
-
<el-tooltip v-if="item.data.tip" class="item" effect="dark" :content="item.data.tip" placement="top">
|
|
10
|
+
<el-tooltip v-if="item.data.tip && !readonly" class="item" effect="dark" :content="item.data.tip" placement="top">
|
|
11
11
|
<span class="tip iconfontui icon-tishi"></span>
|
|
12
12
|
</el-tooltip>
|
|
13
13
|
</div>
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
:class="'label_' + labelalign"
|
|
13
13
|
:style="{ width: labelWidth + 'px' }"
|
|
14
14
|
>
|
|
15
|
-
<span v-if="item.data.required && !readonly && item.data.state !== 'readonly'" class="item_require">*</span>
|
|
15
|
+
<span v-if="item.data.required && !readonly && item.data.state !== 'readonly' && !search" class="item_require">*</span>
|
|
16
16
|
<label>{{ item.data.label }}{{ suffix }}</label>
|
|
17
17
|
<el-tooltip
|
|
18
|
-
v-if="item.data.tip"
|
|
18
|
+
v-if="item.data.tip && !readonly && !search"
|
|
19
19
|
class="item"
|
|
20
20
|
effect="dark"
|
|
21
21
|
:content="item.data.tip"
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
:class="'label_' + labelalign"
|
|
13
13
|
:style="{ width: labelWidth + 'px' }"
|
|
14
14
|
>
|
|
15
|
-
<span v-if="item.data.required && !readonly && item.data.state !== 'readonly'" class="item_require">*</span>
|
|
15
|
+
<span v-if="item.data.required && !readonly && item.data.state !== 'readonly' && !search" class="item_require">*</span>
|
|
16
16
|
<label>{{ item.data.label }}{{ suffix }}</label>
|
|
17
17
|
<el-tooltip
|
|
18
|
-
v-if="item.data.tip"
|
|
18
|
+
v-if="item.data.tip && !readonly && !search"
|
|
19
19
|
class="item"
|
|
20
20
|
effect="dark"
|
|
21
21
|
:content="item.data.tip"
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
<span v-if="item.data.required && !readonly && item.data.state !== 'readonly'" class="item_require">*</span>
|
|
16
16
|
<label>{{ item.data.label }}{{ suffix }}</label>
|
|
17
17
|
<el-tooltip
|
|
18
|
-
v-if="item.data.tip"
|
|
18
|
+
v-if="item.data.tip && !readonly"
|
|
19
19
|
class="item"
|
|
20
20
|
effect="dark"
|
|
21
21
|
:content="item.data.tip"
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
:class="'label_' + labelalign"
|
|
13
13
|
:style="{ width: labelWidth + 'px' }"
|
|
14
14
|
>
|
|
15
|
-
<span v-if="item.data.required && !readonly && item.data.state !== 'readonly'" class="item_require">*</span>
|
|
15
|
+
<span v-if="item.data.required && !readonly && item.data.state !== 'readonly' && !search" class="item_require">*</span>
|
|
16
16
|
<label>{{ item.data.label }}{{ suffix }}</label>
|
|
17
17
|
<el-tooltip
|
|
18
|
-
v-if="item.data.tip"
|
|
18
|
+
v-if="item.data.tip && !readonly && !search"
|
|
19
19
|
class="item"
|
|
20
20
|
effect="dark"
|
|
21
21
|
:content="item.data.tip"
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
:class="'label_' + labelalign"
|
|
13
13
|
:style="{ width: labelWidth + 'px' }"
|
|
14
14
|
>
|
|
15
|
-
<span v-if="item.data.required && !readonly && item.data.state !== 'readonly'" class="item_require">*</span>
|
|
15
|
+
<span v-if="item.data.required && !readonly && item.data.state !== 'readonly' && !search" class="item_require">*</span>
|
|
16
16
|
<label>{{ item.data.label }}{{ suffix }}</label>
|
|
17
17
|
<el-tooltip
|
|
18
|
-
v-if="item.data.tip"
|
|
18
|
+
v-if="item.data.tip && !readonly && !search"
|
|
19
19
|
class="item"
|
|
20
20
|
effect="dark"
|
|
21
21
|
:content="item.data.tip"
|
package/src/starfish-form.vue
CHANGED
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
:is="item.ControlType"
|
|
23
23
|
v-bind="globalConfig"
|
|
24
24
|
:readonly="readonly"
|
|
25
|
+
:search="search"
|
|
25
26
|
:item="item"
|
|
26
27
|
:data="formResult || '{}'"
|
|
27
28
|
:drag="false"
|
|
@@ -36,6 +37,7 @@
|
|
|
36
37
|
:key="item.id"
|
|
37
38
|
v-bind="globalConfig"
|
|
38
39
|
:readonly="readonly"
|
|
40
|
+
:search="search"
|
|
39
41
|
:item="item"
|
|
40
42
|
:data="formResult || '{}'"
|
|
41
43
|
:drag="false"
|
|
@@ -80,6 +82,10 @@ export default defineComponent({
|
|
|
80
82
|
type: Boolean,
|
|
81
83
|
default: false,
|
|
82
84
|
},
|
|
85
|
+
search: {
|
|
86
|
+
type: Boolean,
|
|
87
|
+
default: false,
|
|
88
|
+
}
|
|
83
89
|
},
|
|
84
90
|
setup(props: any, { emit }) {
|
|
85
91
|
const { proxy } = getCurrentInstance() as any;
|
|
@@ -130,7 +136,7 @@ export default defineComponent({
|
|
|
130
136
|
function getRules(item: any) {
|
|
131
137
|
if (!item.layout) {
|
|
132
138
|
let rule: any[] = [];
|
|
133
|
-
if (item.data.required) {
|
|
139
|
+
if (item.data.required && !props.search) {
|
|
134
140
|
rule.push({
|
|
135
141
|
required: true,
|
|
136
142
|
message: "请输入" + item.data.label,
|
|
@@ -140,7 +146,7 @@ export default defineComponent({
|
|
|
140
146
|
// 新增 minLength 校验
|
|
141
147
|
if (
|
|
142
148
|
typeof item.data.minLength === "number" &&
|
|
143
|
-
item.data.minLength > 0
|
|
149
|
+
item.data.minLength > 0 && !props.search
|
|
144
150
|
) {
|
|
145
151
|
rule.push({
|
|
146
152
|
validator: (rule: any, value: any, callback: any) => {
|
package/src/utils/fieldProps.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PropType
|
|
1
|
+
import { PropType } from "vue";
|
|
2
2
|
|
|
3
3
|
interface FormConfig {
|
|
4
4
|
[key: string]: any;
|
|
@@ -26,6 +26,10 @@ export default {
|
|
|
26
26
|
type: Boolean,
|
|
27
27
|
default: false,
|
|
28
28
|
},
|
|
29
|
+
search: {
|
|
30
|
+
type: Boolean,
|
|
31
|
+
default: false,
|
|
32
|
+
},
|
|
29
33
|
labelalign: {
|
|
30
34
|
type: String,
|
|
31
35
|
default: 'top'
|
package/stats.html
CHANGED
|
@@ -4929,7 +4929,7 @@ var drawChart = (function (exports) {
|
|
|
4929
4929
|
</script>
|
|
4930
4930
|
<script>
|
|
4931
4931
|
/*<!--*/
|
|
4932
|
-
const data = {"version":2,"tree":{"name":"root","children":[{"name":"starfish-form.mjs","uid":"2e176821-1"},{"name":"main-c9f94a75.mjs","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design","children":[{"name":"packages","children":[{"name":"form/src","children":[{"name":"utils","children":[{"uid":"2e176821-3","name":"fieldConfig.ts"},{"uid":"2e176821-5","name":"fieldProps.ts"},{"uid":"2e176821-23","name":"customHooks.ts"}]},{"name":"common","children":[{"uid":"2e176821-9","name":"KeyValueConfig.vue"},{"uid":"2e176821-11","name":"KeyValueConfigMult.vue"},{"uid":"2e176821-13","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"2e176821-15","name":"Loading.vue"},{"uid":"2e176821-17","name":"action.vue"},{"uid":"2e176821-19","name":"listConfig.vue"},{"uid":"2e176821-21","name":"panel.vue"},{"uid":"2e176821-25","name":"radiogroup.vue"}]},{"name":"components","children":[{"name":"CheckBox/index.vue","uid":"2e176821-27"},{"name":"ColorSelect","children":[{"uid":"2e176821-29","name":"index.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"2e176821-31","name":"index.vue"}]},{"name":"Date/index.vue","uid":"2e176821-33"},{"name":"DateTime/index.vue","uid":"2e176821-35"},{"name":"InputNumber/index.vue","uid":"2e176821-37"},{"name":"Radio/index.vue","uid":"2e176821-39"},{"name":"Rule","children":[{"uid":"2e176821-41","name":"ruleform.json"},{"uid":"2e176821-43","name":"rules.js"}]},{"name":"Selected/index.vue","uid":"2e176821-45"},{"name":"Selecteds/index.vue","uid":"2e176821-47"},{"name":"ShowRule/index.vue","uid":"2e176821-49"},{"name":"Slider/index.vue","uid":"2e176821-51"},{"name":"Switch/index.vue","uid":"2e176821-53"},{"name":"Text/index.vue","uid":"2e176821-55"},{"name":"TextArea/index.vue","uid":"2e176821-57"},{"name":"Time/index.vue","uid":"2e176821-59"}]},{"name":"layout","children":[{"uid":"2e176821-61","name":"Divider.vue"},{"uid":"2e176821-63","name":"Info.vue"},{"uid":"2e176821-65","name":"Tabs.vue"},{"uid":"2e176821-67","name":"collapse.vue"},{"uid":"2e176821-69","name":"grid.vue"},{"uid":"2e176821-71","name":"table.vue"}]},{"name":"styles/index.scss","uid":"2e176821-73"},{"uid":"2e176821-86","name":"main.ts"}]},{"name":"editor/src","children":[{"name":"controller","children":[{"uid":"2e176821-77","name":"history.ts"},{"uid":"2e176821-79","name":"form.ts"}]},{"name":"utils/_.ts","uid":"2e176821-81"},{"name":"common","children":[{"uid":"2e176821-83","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"2e176821-85","name":"Loading.vue"}]}]}]},{"name":"node_modules/.pnpm/nanoid@4.0.2/node_modules/nanoid/index.browser.js","uid":"2e176821-75"}]},{"uid":"2e176821-7","name":"plugin-vue:export-helper"}]},{"name":"index-b3b75fee.mjs","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/RichText","children":[{"uid":"2e176821-88","name":"index.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"2e176821-90","name":"index.vue"}]}]},{"name":"index-d029d3de.mjs","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","uid":"2e176821-92"}]},{"name":"formAction-47da9ade.mjs","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common","children":[{"uid":"2e176821-94","name":"formAction.vue?vue&type=style&index=0&lang.scss"},{"uid":"2e176821-96","name":"formAction.vue"}]}]},{"name":"index-2d78c11c.mjs","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Rule","children":[{"uid":"2e176821-98","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"2e176821-100","name":"index.vue"}]}]},{"name":"starfish-form-ff99f526.mjs","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","uid":"2e176821-102"}]}],"isRoot":true},"nodeParts":{"2e176821-1":{"id":"starfish-form.mjs","gzipLength":0,"brotliLength":0,"renderedLength":1902,"metaUid":"2e176821-0"},"2e176821-3":{"renderedLength":18542,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-2"},"2e176821-5":{"renderedLength":626,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-4"},"2e176821-7":{"renderedLength":159,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-6"},"2e176821-9":{"renderedLength":8553,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-8"},"2e176821-11":{"renderedLength":8386,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-10"},"2e176821-13":{"renderedLength":103,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-12"},"2e176821-15":{"renderedLength":405,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-14"},"2e176821-17":{"renderedLength":8484,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-16"},"2e176821-19":{"renderedLength":3246,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-18"},"2e176821-21":{"renderedLength":5328,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-20"},"2e176821-23":{"renderedLength":482,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-22"},"2e176821-25":{"renderedLength":2209,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-24"},"2e176821-27":{"renderedLength":4825,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-26"},"2e176821-29":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-28"},"2e176821-31":{"renderedLength":3717,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-30"},"2e176821-33":{"renderedLength":5513,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-32"},"2e176821-35":{"renderedLength":4759,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-34"},"2e176821-37":{"renderedLength":4722,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-36"},"2e176821-39":{"renderedLength":4737,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-38"},"2e176821-41":{"renderedLength":5040,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-40"},"2e176821-43":{"renderedLength":2588,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-42"},"2e176821-45":{"renderedLength":4847,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-44"},"2e176821-47":{"renderedLength":5423,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-46"},"2e176821-49":{"renderedLength":4066,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-48"},"2e176821-51":{"renderedLength":2925,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-50"},"2e176821-53":{"renderedLength":2976,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-52"},"2e176821-55":{"renderedLength":4685,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-54"},"2e176821-57":{"renderedLength":4491,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-56"},"2e176821-59":{"renderedLength":3221,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-58"},"2e176821-61":{"renderedLength":1315,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-60"},"2e176821-63":{"renderedLength":2984,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-62"},"2e176821-65":{"renderedLength":5888,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-64"},"2e176821-67":{"renderedLength":6238,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-66"},"2e176821-69":{"renderedLength":6689,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-68"},"2e176821-71":{"renderedLength":6149,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-70"},"2e176821-73":{"renderedLength":17,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-72"},"2e176821-75":{"renderedLength":350,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-74"},"2e176821-77":{"renderedLength":1613,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-76"},"2e176821-79":{"renderedLength":6014,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-78"},"2e176821-81":{"renderedLength":11658,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-80"},"2e176821-83":{"renderedLength":101,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-82"},"2e176821-85":{"renderedLength":391,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-84"},"2e176821-86":{"renderedLength":2981,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-0"},"2e176821-88":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-87"},"2e176821-90":{"renderedLength":3347,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-89"},"2e176821-92":{"renderedLength":6608,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-91"},"2e176821-94":{"renderedLength":92,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-93"},"2e176821-96":{"renderedLength":16981,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-95"},"2e176821-98":{"renderedLength":87,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-97"},"2e176821-100":{"renderedLength":17071,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-99"},"2e176821-102":{"renderedLength":9758,"gzipLength":0,"brotliLength":0,"metaUid":"2e176821-101"}},"nodeMetas":{"2e176821-0":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/main.ts","moduleParts":{"starfish-form.mjs":"2e176821-1","main-c9f94a75.mjs":"2e176821-86"},"imported":[{"uid":"2e176821-8"},{"uid":"2e176821-10"},{"uid":"2e176821-14"},{"uid":"2e176821-16"},{"uid":"2e176821-18"},{"uid":"2e176821-20"},{"uid":"2e176821-24"},{"uid":"2e176821-26"},{"uid":"2e176821-30"},{"uid":"2e176821-32"},{"uid":"2e176821-34"},{"uid":"2e176821-36"},{"uid":"2e176821-38"},{"uid":"2e176821-40"},{"uid":"2e176821-42"},{"uid":"2e176821-44"},{"uid":"2e176821-46"},{"uid":"2e176821-48"},{"uid":"2e176821-50"},{"uid":"2e176821-52"},{"uid":"2e176821-54"},{"uid":"2e176821-56"},{"uid":"2e176821-58"},{"uid":"2e176821-60"},{"uid":"2e176821-62"},{"uid":"2e176821-64"},{"uid":"2e176821-66"},{"uid":"2e176821-68"},{"uid":"2e176821-70"},{"uid":"2e176821-103"},{"uid":"2e176821-72"},{"uid":"2e176821-2"},{"uid":"2e176821-80"},{"uid":"2e176821-84"},{"uid":"2e176821-89","dynamic":true},{"uid":"2e176821-91","dynamic":true},{"uid":"2e176821-95","dynamic":true},{"uid":"2e176821-99","dynamic":true},{"uid":"2e176821-101","dynamic":true}],"importedBy":[],"isEntry":true},"2e176821-2":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/utils/fieldConfig.ts","moduleParts":{"main-c9f94a75.mjs":"2e176821-3"},"imported":[],"importedBy":[{"uid":"2e176821-0"},{"uid":"2e176821-8"},{"uid":"2e176821-10"},{"uid":"2e176821-26"},{"uid":"2e176821-30"},{"uid":"2e176821-32"},{"uid":"2e176821-34"},{"uid":"2e176821-36"},{"uid":"2e176821-38"},{"uid":"2e176821-44"},{"uid":"2e176821-46"},{"uid":"2e176821-50"},{"uid":"2e176821-52"},{"uid":"2e176821-54"},{"uid":"2e176821-56"},{"uid":"2e176821-58"},{"uid":"2e176821-60"},{"uid":"2e176821-62"},{"uid":"2e176821-64"},{"uid":"2e176821-66"},{"uid":"2e176821-68"},{"uid":"2e176821-70"},{"uid":"2e176821-89"},{"uid":"2e176821-91"}]},"2e176821-4":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/utils/fieldProps.ts","moduleParts":{"main-c9f94a75.mjs":"2e176821-5"},"imported":[],"importedBy":[{"uid":"2e176821-8"},{"uid":"2e176821-10"},{"uid":"2e176821-16"},{"uid":"2e176821-18"},{"uid":"2e176821-20"},{"uid":"2e176821-24"},{"uid":"2e176821-26"},{"uid":"2e176821-30"},{"uid":"2e176821-32"},{"uid":"2e176821-34"},{"uid":"2e176821-36"},{"uid":"2e176821-38"},{"uid":"2e176821-44"},{"uid":"2e176821-46"},{"uid":"2e176821-48"},{"uid":"2e176821-50"},{"uid":"2e176821-52"},{"uid":"2e176821-54"},{"uid":"2e176821-56"},{"uid":"2e176821-58"},{"uid":"2e176821-60"},{"uid":"2e176821-62"},{"uid":"2e176821-64"},{"uid":"2e176821-66"},{"uid":"2e176821-68"},{"uid":"2e176821-70"},{"uid":"2e176821-89"},{"uid":"2e176821-91"},{"uid":"2e176821-99"}]},"2e176821-6":{"id":"plugin-vue:export-helper","moduleParts":{"main-c9f94a75.mjs":"2e176821-7"},"imported":[],"importedBy":[{"uid":"2e176821-8"},{"uid":"2e176821-10"},{"uid":"2e176821-14"},{"uid":"2e176821-16"},{"uid":"2e176821-18"},{"uid":"2e176821-20"},{"uid":"2e176821-24"},{"uid":"2e176821-26"},{"uid":"2e176821-30"},{"uid":"2e176821-32"},{"uid":"2e176821-34"},{"uid":"2e176821-36"},{"uid":"2e176821-38"},{"uid":"2e176821-44"},{"uid":"2e176821-46"},{"uid":"2e176821-48"},{"uid":"2e176821-50"},{"uid":"2e176821-52"},{"uid":"2e176821-54"},{"uid":"2e176821-56"},{"uid":"2e176821-58"},{"uid":"2e176821-60"},{"uid":"2e176821-62"},{"uid":"2e176821-64"},{"uid":"2e176821-66"},{"uid":"2e176821-68"},{"uid":"2e176821-70"},{"uid":"2e176821-84"},{"uid":"2e176821-89"},{"uid":"2e176821-91"},{"uid":"2e176821-95"},{"uid":"2e176821-99"},{"uid":"2e176821-101"}]},"2e176821-8":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfig.vue","moduleParts":{"main-c9f94a75.mjs":"2e176821-9"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-106"},{"uid":"2e176821-107"},{"uid":"2e176821-108"},{"uid":"2e176821-109"},{"uid":"2e176821-103"},{"uid":"2e176821-110"},{"uid":"2e176821-2"},{"uid":"2e176821-4"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-10":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfigMult.vue","moduleParts":{"main-c9f94a75.mjs":"2e176821-11"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-106"},{"uid":"2e176821-107"},{"uid":"2e176821-108"},{"uid":"2e176821-109"},{"uid":"2e176821-103"},{"uid":"2e176821-110"},{"uid":"2e176821-2"},{"uid":"2e176821-4"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-12":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/Loading.vue?vue&type=style&index=0&scoped=true&lang.scss","moduleParts":{"main-c9f94a75.mjs":"2e176821-13"},"imported":[],"importedBy":[{"uid":"2e176821-14"}]},"2e176821-14":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/Loading.vue","moduleParts":{"main-c9f94a75.mjs":"2e176821-15"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-111"},{"uid":"2e176821-103"},{"uid":"2e176821-12"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-16":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/action.vue","moduleParts":{"main-c9f94a75.mjs":"2e176821-17"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-112"},{"uid":"2e176821-113"},{"uid":"2e176821-114"},{"uid":"2e176821-115"},{"uid":"2e176821-116"},{"uid":"2e176821-117"},{"uid":"2e176821-118"},{"uid":"2e176821-106"},{"uid":"2e176821-119"},{"uid":"2e176821-120"},{"uid":"2e176821-121"},{"uid":"2e176821-109"},{"uid":"2e176821-103"},{"uid":"2e176821-110"},{"uid":"2e176821-4"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-18":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/listConfig.vue","moduleParts":{"main-c9f94a75.mjs":"2e176821-19"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-117"},{"uid":"2e176821-118"},{"uid":"2e176821-106"},{"uid":"2e176821-122"},{"uid":"2e176821-103"},{"uid":"2e176821-4"},{"uid":"2e176821-110"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-20":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/panel.vue","moduleParts":{"main-c9f94a75.mjs":"2e176821-21"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-117"},{"uid":"2e176821-118"},{"uid":"2e176821-106"},{"uid":"2e176821-107"},{"uid":"2e176821-119"},{"uid":"2e176821-109"},{"uid":"2e176821-103"},{"uid":"2e176821-4"},{"uid":"2e176821-110"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-22":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/utils/customHooks.ts","moduleParts":{"main-c9f94a75.mjs":"2e176821-23"},"imported":[{"uid":"2e176821-103"}],"importedBy":[{"uid":"2e176821-24"},{"uid":"2e176821-26"},{"uid":"2e176821-30"},{"uid":"2e176821-32"},{"uid":"2e176821-34"},{"uid":"2e176821-36"},{"uid":"2e176821-38"},{"uid":"2e176821-44"},{"uid":"2e176821-46"},{"uid":"2e176821-48"},{"uid":"2e176821-50"},{"uid":"2e176821-52"},{"uid":"2e176821-54"},{"uid":"2e176821-56"},{"uid":"2e176821-58"},{"uid":"2e176821-60"},{"uid":"2e176821-62"},{"uid":"2e176821-64"},{"uid":"2e176821-66"},{"uid":"2e176821-68"},{"uid":"2e176821-70"},{"uid":"2e176821-89"},{"uid":"2e176821-91"}]},"2e176821-24":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/radiogroup.vue","moduleParts":{"main-c9f94a75.mjs":"2e176821-25"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-123"},{"uid":"2e176821-124"},{"uid":"2e176821-109"},{"uid":"2e176821-103"},{"uid":"2e176821-4"},{"uid":"2e176821-22"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-26":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/CheckBox/index.vue","moduleParts":{"main-c9f94a75.mjs":"2e176821-27"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-125"},{"uid":"2e176821-108"},{"uid":"2e176821-109"},{"uid":"2e176821-103"},{"uid":"2e176821-2"},{"uid":"2e176821-4"},{"uid":"2e176821-22"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-28":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/ColorSelect/index.vue?vue&type=style&index=0&scoped=true&lang.scss","moduleParts":{"main-c9f94a75.mjs":"2e176821-29"},"imported":[],"importedBy":[{"uid":"2e176821-30"}]},"2e176821-30":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/ColorSelect/index.vue","moduleParts":{"main-c9f94a75.mjs":"2e176821-31"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-126"},{"uid":"2e176821-107"},{"uid":"2e176821-109"},{"uid":"2e176821-103"},{"uid":"2e176821-2"},{"uid":"2e176821-4"},{"uid":"2e176821-22"},{"uid":"2e176821-28"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-32":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Date/index.vue","moduleParts":{"main-c9f94a75.mjs":"2e176821-33"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-127"},{"uid":"2e176821-109"},{"uid":"2e176821-103"},{"uid":"2e176821-2"},{"uid":"2e176821-4"},{"uid":"2e176821-22"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-34":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/DateTime/index.vue","moduleParts":{"main-c9f94a75.mjs":"2e176821-35"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-127"},{"uid":"2e176821-109"},{"uid":"2e176821-103"},{"uid":"2e176821-2"},{"uid":"2e176821-4"},{"uid":"2e176821-22"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-36":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/InputNumber/index.vue","moduleParts":{"main-c9f94a75.mjs":"2e176821-37"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-122"},{"uid":"2e176821-109"},{"uid":"2e176821-103"},{"uid":"2e176821-2"},{"uid":"2e176821-4"},{"uid":"2e176821-22"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-38":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Radio/index.vue","moduleParts":{"main-c9f94a75.mjs":"2e176821-39"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-123"},{"uid":"2e176821-128"},{"uid":"2e176821-109"},{"uid":"2e176821-103"},{"uid":"2e176821-2"},{"uid":"2e176821-4"},{"uid":"2e176821-22"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-40":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Rule/ruleform.json","moduleParts":{"main-c9f94a75.mjs":"2e176821-41"},"imported":[],"importedBy":[{"uid":"2e176821-0"},{"uid":"2e176821-99"}]},"2e176821-42":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Rule/rules.js","moduleParts":{"main-c9f94a75.mjs":"2e176821-43"},"imported":[],"importedBy":[{"uid":"2e176821-0"},{"uid":"2e176821-99"}]},"2e176821-44":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Selected/index.vue","moduleParts":{"main-c9f94a75.mjs":"2e176821-45"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-120"},{"uid":"2e176821-121"},{"uid":"2e176821-109"},{"uid":"2e176821-103"},{"uid":"2e176821-2"},{"uid":"2e176821-4"},{"uid":"2e176821-22"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-46":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Selecteds/index.vue","moduleParts":{"main-c9f94a75.mjs":"2e176821-47"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-120"},{"uid":"2e176821-121"},{"uid":"2e176821-109"},{"uid":"2e176821-103"},{"uid":"2e176821-2"},{"uid":"2e176821-4"},{"uid":"2e176821-22"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-48":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/ShowRule/index.vue","moduleParts":{"main-c9f94a75.mjs":"2e176821-49"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-118"},{"uid":"2e176821-109"},{"uid":"2e176821-103"},{"uid":"2e176821-4"},{"uid":"2e176821-22"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-50":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Slider/index.vue","moduleParts":{"main-c9f94a75.mjs":"2e176821-51"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-129"},{"uid":"2e176821-109"},{"uid":"2e176821-103"},{"uid":"2e176821-2"},{"uid":"2e176821-4"},{"uid":"2e176821-22"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-52":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Switch/index.vue","moduleParts":{"main-c9f94a75.mjs":"2e176821-53"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-130"},{"uid":"2e176821-109"},{"uid":"2e176821-103"},{"uid":"2e176821-2"},{"uid":"2e176821-4"},{"uid":"2e176821-22"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-54":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Text/index.vue","moduleParts":{"main-c9f94a75.mjs":"2e176821-55"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-107"},{"uid":"2e176821-109"},{"uid":"2e176821-103"},{"uid":"2e176821-2"},{"uid":"2e176821-4"},{"uid":"2e176821-22"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-56":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/TextArea/index.vue","moduleParts":{"main-c9f94a75.mjs":"2e176821-57"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-107"},{"uid":"2e176821-109"},{"uid":"2e176821-103"},{"uid":"2e176821-2"},{"uid":"2e176821-4"},{"uid":"2e176821-22"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-58":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Time/index.vue","moduleParts":{"main-c9f94a75.mjs":"2e176821-59"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-131"},{"uid":"2e176821-109"},{"uid":"2e176821-103"},{"uid":"2e176821-4"},{"uid":"2e176821-2"},{"uid":"2e176821-22"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-60":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/Divider.vue","moduleParts":{"main-c9f94a75.mjs":"2e176821-61"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-132"},{"uid":"2e176821-103"},{"uid":"2e176821-2"},{"uid":"2e176821-4"},{"uid":"2e176821-22"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-62":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/Info.vue","moduleParts":{"main-c9f94a75.mjs":"2e176821-63"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-133"},{"uid":"2e176821-109"},{"uid":"2e176821-103"},{"uid":"2e176821-2"},{"uid":"2e176821-4"},{"uid":"2e176821-22"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-64":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/Tabs.vue","moduleParts":{"main-c9f94a75.mjs":"2e176821-65"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-134"},{"uid":"2e176821-135"},{"uid":"2e176821-136"},{"uid":"2e176821-103"},{"uid":"2e176821-2"},{"uid":"2e176821-4"},{"uid":"2e176821-22"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-66":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/collapse.vue","moduleParts":{"main-c9f94a75.mjs":"2e176821-67"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-115"},{"uid":"2e176821-116"},{"uid":"2e176821-136"},{"uid":"2e176821-103"},{"uid":"2e176821-2"},{"uid":"2e176821-4"},{"uid":"2e176821-22"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-68":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/grid.vue","moduleParts":{"main-c9f94a75.mjs":"2e176821-69"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-117"},{"uid":"2e176821-136"},{"uid":"2e176821-119"},{"uid":"2e176821-103"},{"uid":"2e176821-2"},{"uid":"2e176821-4"},{"uid":"2e176821-22"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-70":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/table.vue","moduleParts":{"main-c9f94a75.mjs":"2e176821-71"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-136"},{"uid":"2e176821-103"},{"uid":"2e176821-2"},{"uid":"2e176821-4"},{"uid":"2e176821-22"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-72":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/styles/index.scss","moduleParts":{"main-c9f94a75.mjs":"2e176821-73"},"imported":[],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-74":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/node_modules/.pnpm/nanoid@4.0.2/node_modules/nanoid/index.browser.js","moduleParts":{"main-c9f94a75.mjs":"2e176821-75"},"imported":[{"uid":"2e176821-148"}],"importedBy":[{"uid":"2e176821-80"}]},"2e176821-76":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/controller/history.ts","moduleParts":{"main-c9f94a75.mjs":"2e176821-77"},"imported":[{"uid":"2e176821-103"},{"uid":"2e176821-78"}],"importedBy":[{"uid":"2e176821-78"}]},"2e176821-78":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/controller/form.ts","moduleParts":{"main-c9f94a75.mjs":"2e176821-79"},"imported":[{"uid":"2e176821-103"},{"uid":"2e176821-76"}],"importedBy":[{"uid":"2e176821-80"},{"uid":"2e176821-76"}]},"2e176821-80":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/utils/_.ts","moduleParts":{"main-c9f94a75.mjs":"2e176821-81"},"imported":[{"uid":"2e176821-137"},{"uid":"2e176821-74"},{"uid":"2e176821-78"}],"importedBy":[{"uid":"2e176821-0"},{"uid":"2e176821-91"},{"uid":"2e176821-99"}]},"2e176821-82":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue?vue&type=style&index=0&scoped=true&lang.scss","moduleParts":{"main-c9f94a75.mjs":"2e176821-83"},"imported":[],"importedBy":[{"uid":"2e176821-84"}]},"2e176821-84":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue","moduleParts":{"main-c9f94a75.mjs":"2e176821-85"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-111"},{"uid":"2e176821-103"},{"uid":"2e176821-82"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-87":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/RichText/index.vue?vue&type=style&index=0&scoped=true&lang.scss","moduleParts":{"index-b3b75fee.mjs":"2e176821-88"},"imported":[],"importedBy":[{"uid":"2e176821-89"}]},"2e176821-89":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/RichText/index.vue","moduleParts":{"index-b3b75fee.mjs":"2e176821-90"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-109"},{"uid":"2e176821-103"},{"uid":"2e176821-138"},{"uid":"2e176821-139"},{"uid":"2e176821-2"},{"uid":"2e176821-4"},{"uid":"2e176821-22"},{"uid":"2e176821-87"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-91":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","moduleParts":{"index-d029d3de.mjs":"2e176821-92"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-140"},{"uid":"2e176821-141"},{"uid":"2e176821-118"},{"uid":"2e176821-142"},{"uid":"2e176821-109"},{"uid":"2e176821-103"},{"uid":"2e176821-2"},{"uid":"2e176821-4"},{"uid":"2e176821-22"},{"uid":"2e176821-143"},{"uid":"2e176821-80"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-93":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/formAction.vue?vue&type=style&index=0&lang.scss","moduleParts":{"formAction-47da9ade.mjs":"2e176821-94"},"imported":[],"importedBy":[{"uid":"2e176821-95"}]},"2e176821-95":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/formAction.vue","moduleParts":{"formAction-47da9ade.mjs":"2e176821-96"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-144"},{"uid":"2e176821-136"},{"uid":"2e176821-107"},{"uid":"2e176821-145"},{"uid":"2e176821-140"},{"uid":"2e176821-142"},{"uid":"2e176821-146"},{"uid":"2e176821-118"},{"uid":"2e176821-109"},{"uid":"2e176821-103"},{"uid":"2e176821-147"},{"uid":"2e176821-93"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-97":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Rule/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"index-2d78c11c.mjs":"2e176821-98"},"imported":[],"importedBy":[{"uid":"2e176821-99"}]},"2e176821-99":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Rule/index.vue","moduleParts":{"index-2d78c11c.mjs":"2e176821-100"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-140"},{"uid":"2e176821-142"},{"uid":"2e176821-141"},{"uid":"2e176821-133"},{"uid":"2e176821-106"},{"uid":"2e176821-120"},{"uid":"2e176821-121"},{"uid":"2e176821-112"},{"uid":"2e176821-113"},{"uid":"2e176821-114"},{"uid":"2e176821-118"},{"uid":"2e176821-109"},{"uid":"2e176821-103"},{"uid":"2e176821-4"},{"uid":"2e176821-80"},{"uid":"2e176821-42"},{"uid":"2e176821-40"},{"uid":"2e176821-110"},{"uid":"2e176821-101"},{"uid":"2e176821-147"},{"uid":"2e176821-97"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"}]},"2e176821-101":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","moduleParts":{"starfish-form-ff99f526.mjs":"2e176821-102"},"imported":[{"uid":"2e176821-104"},{"uid":"2e176821-105"},{"uid":"2e176821-144"},{"uid":"2e176821-136"},{"uid":"2e176821-103"},{"uid":"2e176821-6"}],"importedBy":[{"uid":"2e176821-0"},{"uid":"2e176821-99"}]},"2e176821-103":{"id":"vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-0"},{"uid":"2e176821-8"},{"uid":"2e176821-10"},{"uid":"2e176821-14"},{"uid":"2e176821-16"},{"uid":"2e176821-18"},{"uid":"2e176821-20"},{"uid":"2e176821-24"},{"uid":"2e176821-26"},{"uid":"2e176821-30"},{"uid":"2e176821-32"},{"uid":"2e176821-34"},{"uid":"2e176821-36"},{"uid":"2e176821-38"},{"uid":"2e176821-44"},{"uid":"2e176821-46"},{"uid":"2e176821-48"},{"uid":"2e176821-50"},{"uid":"2e176821-52"},{"uid":"2e176821-54"},{"uid":"2e176821-56"},{"uid":"2e176821-58"},{"uid":"2e176821-60"},{"uid":"2e176821-62"},{"uid":"2e176821-64"},{"uid":"2e176821-66"},{"uid":"2e176821-68"},{"uid":"2e176821-70"},{"uid":"2e176821-84"},{"uid":"2e176821-89"},{"uid":"2e176821-91"},{"uid":"2e176821-95"},{"uid":"2e176821-99"},{"uid":"2e176821-101"},{"uid":"2e176821-22"},{"uid":"2e176821-78"},{"uid":"2e176821-76"}],"isExternal":true},"2e176821-104":{"id":"element-plus/es","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-8"},{"uid":"2e176821-10"},{"uid":"2e176821-14"},{"uid":"2e176821-16"},{"uid":"2e176821-18"},{"uid":"2e176821-20"},{"uid":"2e176821-24"},{"uid":"2e176821-26"},{"uid":"2e176821-30"},{"uid":"2e176821-32"},{"uid":"2e176821-34"},{"uid":"2e176821-36"},{"uid":"2e176821-38"},{"uid":"2e176821-44"},{"uid":"2e176821-46"},{"uid":"2e176821-48"},{"uid":"2e176821-50"},{"uid":"2e176821-52"},{"uid":"2e176821-54"},{"uid":"2e176821-56"},{"uid":"2e176821-58"},{"uid":"2e176821-60"},{"uid":"2e176821-62"},{"uid":"2e176821-64"},{"uid":"2e176821-66"},{"uid":"2e176821-68"},{"uid":"2e176821-70"},{"uid":"2e176821-84"},{"uid":"2e176821-89"},{"uid":"2e176821-91"},{"uid":"2e176821-95"},{"uid":"2e176821-99"},{"uid":"2e176821-101"}],"isExternal":true},"2e176821-105":{"id":"element-plus/es/components/base/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-8"},{"uid":"2e176821-10"},{"uid":"2e176821-14"},{"uid":"2e176821-16"},{"uid":"2e176821-18"},{"uid":"2e176821-20"},{"uid":"2e176821-24"},{"uid":"2e176821-26"},{"uid":"2e176821-30"},{"uid":"2e176821-32"},{"uid":"2e176821-34"},{"uid":"2e176821-36"},{"uid":"2e176821-38"},{"uid":"2e176821-44"},{"uid":"2e176821-46"},{"uid":"2e176821-48"},{"uid":"2e176821-50"},{"uid":"2e176821-52"},{"uid":"2e176821-54"},{"uid":"2e176821-56"},{"uid":"2e176821-58"},{"uid":"2e176821-60"},{"uid":"2e176821-62"},{"uid":"2e176821-64"},{"uid":"2e176821-66"},{"uid":"2e176821-68"},{"uid":"2e176821-70"},{"uid":"2e176821-84"},{"uid":"2e176821-89"},{"uid":"2e176821-91"},{"uid":"2e176821-95"},{"uid":"2e176821-99"},{"uid":"2e176821-101"}],"isExternal":true},"2e176821-106":{"id":"element-plus/es/components/icon/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-8"},{"uid":"2e176821-10"},{"uid":"2e176821-16"},{"uid":"2e176821-18"},{"uid":"2e176821-20"},{"uid":"2e176821-99"}],"isExternal":true},"2e176821-107":{"id":"element-plus/es/components/input/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-8"},{"uid":"2e176821-10"},{"uid":"2e176821-20"},{"uid":"2e176821-30"},{"uid":"2e176821-54"},{"uid":"2e176821-56"},{"uid":"2e176821-95"}],"isExternal":true},"2e176821-108":{"id":"element-plus/es/components/checkbox/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-8"},{"uid":"2e176821-10"},{"uid":"2e176821-26"}],"isExternal":true},"2e176821-109":{"id":"element-plus/es/components/tooltip/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-8"},{"uid":"2e176821-10"},{"uid":"2e176821-16"},{"uid":"2e176821-20"},{"uid":"2e176821-24"},{"uid":"2e176821-26"},{"uid":"2e176821-30"},{"uid":"2e176821-32"},{"uid":"2e176821-34"},{"uid":"2e176821-36"},{"uid":"2e176821-38"},{"uid":"2e176821-44"},{"uid":"2e176821-46"},{"uid":"2e176821-48"},{"uid":"2e176821-50"},{"uid":"2e176821-52"},{"uid":"2e176821-54"},{"uid":"2e176821-56"},{"uid":"2e176821-58"},{"uid":"2e176821-62"},{"uid":"2e176821-89"},{"uid":"2e176821-91"},{"uid":"2e176821-95"},{"uid":"2e176821-99"}],"isExternal":true},"2e176821-110":{"id":"@element-plus/icons-vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-8"},{"uid":"2e176821-10"},{"uid":"2e176821-16"},{"uid":"2e176821-18"},{"uid":"2e176821-20"},{"uid":"2e176821-99"}],"isExternal":true},"2e176821-111":{"id":"element-plus/es/components/loading/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-14"},{"uid":"2e176821-84"}],"isExternal":true},"2e176821-112":{"id":"element-plus/es/components/dropdown/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-16"},{"uid":"2e176821-99"}],"isExternal":true},"2e176821-113":{"id":"element-plus/es/components/dropdown-menu/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-16"},{"uid":"2e176821-99"}],"isExternal":true},"2e176821-114":{"id":"element-plus/es/components/dropdown-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-16"},{"uid":"2e176821-99"}],"isExternal":true},"2e176821-115":{"id":"element-plus/es/components/collapse/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-16"},{"uid":"2e176821-66"}],"isExternal":true},"2e176821-116":{"id":"element-plus/es/components/collapse-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-16"},{"uid":"2e176821-66"}],"isExternal":true},"2e176821-117":{"id":"element-plus/es/components/row/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-16"},{"uid":"2e176821-18"},{"uid":"2e176821-20"},{"uid":"2e176821-68"}],"isExternal":true},"2e176821-118":{"id":"element-plus/es/components/button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-16"},{"uid":"2e176821-18"},{"uid":"2e176821-20"},{"uid":"2e176821-48"},{"uid":"2e176821-91"},{"uid":"2e176821-95"},{"uid":"2e176821-99"}],"isExternal":true},"2e176821-119":{"id":"element-plus/es/components/col/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-16"},{"uid":"2e176821-20"},{"uid":"2e176821-68"}],"isExternal":true},"2e176821-120":{"id":"element-plus/es/components/select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-16"},{"uid":"2e176821-44"},{"uid":"2e176821-46"},{"uid":"2e176821-99"}],"isExternal":true},"2e176821-121":{"id":"element-plus/es/components/option/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-16"},{"uid":"2e176821-44"},{"uid":"2e176821-46"},{"uid":"2e176821-99"}],"isExternal":true},"2e176821-122":{"id":"element-plus/es/components/input-number/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-18"},{"uid":"2e176821-36"}],"isExternal":true},"2e176821-123":{"id":"element-plus/es/components/radio-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-24"},{"uid":"2e176821-38"}],"isExternal":true},"2e176821-124":{"id":"element-plus/es/components/radio-button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-24"}],"isExternal":true},"2e176821-125":{"id":"element-plus/es/components/checkbox-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-26"}],"isExternal":true},"2e176821-126":{"id":"element-plus/es/components/color-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-30"}],"isExternal":true},"2e176821-127":{"id":"element-plus/es/components/date-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-32"},{"uid":"2e176821-34"}],"isExternal":true},"2e176821-128":{"id":"element-plus/es/components/radio/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-38"}],"isExternal":true},"2e176821-129":{"id":"element-plus/es/components/slider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-50"}],"isExternal":true},"2e176821-130":{"id":"element-plus/es/components/switch/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-52"}],"isExternal":true},"2e176821-131":{"id":"element-plus/es/components/time-select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-58"}],"isExternal":true},"2e176821-132":{"id":"element-plus/es/components/divider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-60"}],"isExternal":true},"2e176821-133":{"id":"element-plus/es/components/alert/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-62"},{"uid":"2e176821-99"}],"isExternal":true},"2e176821-134":{"id":"element-plus/es/components/tabs/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-64"}],"isExternal":true},"2e176821-135":{"id":"element-plus/es/components/tab-pane/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-64"}],"isExternal":true},"2e176821-136":{"id":"element-plus/es/components/form-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-64"},{"uid":"2e176821-66"},{"uid":"2e176821-68"},{"uid":"2e176821-70"},{"uid":"2e176821-95"},{"uid":"2e176821-101"}],"isExternal":true},"2e176821-137":{"id":"element-plus","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-80"}],"isExternal":true},"2e176821-138":{"id":"@vueup/vue-quill","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-89"}],"isExternal":true},"2e176821-139":{"id":"@vueup/vue-quill/dist/vue-quill.snow.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-89"}],"isExternal":true},"2e176821-140":{"id":"element-plus/es/components/container/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-91"},{"uid":"2e176821-95"},{"uid":"2e176821-99"}],"isExternal":true},"2e176821-141":{"id":"element-plus/es/components/footer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-91"},{"uid":"2e176821-99"}],"isExternal":true},"2e176821-142":{"id":"element-plus/es/components/main/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-91"},{"uid":"2e176821-95"},{"uid":"2e176821-99"}],"isExternal":true},"2e176821-143":{"id":"jsoneditor","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-91"}],"isExternal":true},"2e176821-144":{"id":"element-plus/es/components/form/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-95"},{"uid":"2e176821-101"}],"isExternal":true},"2e176821-145":{"id":"element-plus/es/components/aside/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-95"}],"isExternal":true},"2e176821-146":{"id":"element-plus/es/components/scrollbar/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-95"}],"isExternal":true},"2e176821-147":{"id":"vue-codemirror","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-95"},{"uid":"2e176821-99"}],"isExternal":true},"2e176821-148":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/node_modules/.pnpm/nanoid@4.0.2/node_modules/nanoid/url-alphabet/index.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"2e176821-74"}]}},"env":{"rollup":"3.29.4"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
|
|
4932
|
+
const data = {"version":2,"tree":{"name":"root","children":[{"name":"starfish-form.mjs","uid":"9f1d1834-1"},{"name":"main-d99755be.mjs","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design","children":[{"name":"packages","children":[{"name":"form/src","children":[{"name":"utils","children":[{"uid":"9f1d1834-3","name":"fieldConfig.ts"},{"uid":"9f1d1834-5","name":"fieldProps.ts"},{"uid":"9f1d1834-23","name":"customHooks.ts"}]},{"name":"common","children":[{"uid":"9f1d1834-9","name":"KeyValueConfig.vue"},{"uid":"9f1d1834-11","name":"KeyValueConfigMult.vue"},{"uid":"9f1d1834-13","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"9f1d1834-15","name":"Loading.vue"},{"uid":"9f1d1834-17","name":"action.vue"},{"uid":"9f1d1834-19","name":"listConfig.vue"},{"uid":"9f1d1834-21","name":"panel.vue"},{"uid":"9f1d1834-25","name":"radiogroup.vue"}]},{"name":"components","children":[{"name":"CheckBox/index.vue","uid":"9f1d1834-27"},{"name":"ColorSelect","children":[{"uid":"9f1d1834-29","name":"index.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"9f1d1834-31","name":"index.vue"}]},{"name":"Date/index.vue","uid":"9f1d1834-33"},{"name":"DateTime/index.vue","uid":"9f1d1834-35"},{"name":"InputNumber/index.vue","uid":"9f1d1834-37"},{"name":"Radio/index.vue","uid":"9f1d1834-39"},{"name":"Rule","children":[{"uid":"9f1d1834-41","name":"ruleform.json"},{"uid":"9f1d1834-43","name":"rules.js"}]},{"name":"Selected/index.vue","uid":"9f1d1834-45"},{"name":"Selecteds/index.vue","uid":"9f1d1834-47"},{"name":"ShowRule/index.vue","uid":"9f1d1834-49"},{"name":"Slider/index.vue","uid":"9f1d1834-51"},{"name":"Switch/index.vue","uid":"9f1d1834-53"},{"name":"Text/index.vue","uid":"9f1d1834-55"},{"name":"TextArea/index.vue","uid":"9f1d1834-57"},{"name":"Time/index.vue","uid":"9f1d1834-59"}]},{"name":"layout","children":[{"uid":"9f1d1834-61","name":"Divider.vue"},{"uid":"9f1d1834-63","name":"Info.vue"},{"uid":"9f1d1834-65","name":"Tabs.vue"},{"uid":"9f1d1834-67","name":"collapse.vue"},{"uid":"9f1d1834-69","name":"grid.vue"},{"uid":"9f1d1834-71","name":"table.vue"}]},{"name":"styles/index.scss","uid":"9f1d1834-73"},{"uid":"9f1d1834-86","name":"main.ts"}]},{"name":"editor/src","children":[{"name":"controller","children":[{"uid":"9f1d1834-77","name":"history.ts"},{"uid":"9f1d1834-79","name":"form.ts"}]},{"name":"utils/_.ts","uid":"9f1d1834-81"},{"name":"common","children":[{"uid":"9f1d1834-83","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"9f1d1834-85","name":"Loading.vue"}]}]}]},{"name":"node_modules/.pnpm/nanoid@4.0.2/node_modules/nanoid/index.browser.js","uid":"9f1d1834-75"}]},{"uid":"9f1d1834-7","name":"plugin-vue:export-helper"}]},{"name":"index-0aa74f91.mjs","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/RichText","children":[{"uid":"9f1d1834-88","name":"index.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"9f1d1834-90","name":"index.vue"}]}]},{"name":"index-7fc8db96.mjs","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","uid":"9f1d1834-92"}]},{"name":"formAction-b76664af.mjs","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common","children":[{"uid":"9f1d1834-94","name":"formAction.vue?vue&type=style&index=0&lang.scss"},{"uid":"9f1d1834-96","name":"formAction.vue"}]}]},{"name":"index-d1c1ba4b.mjs","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Rule","children":[{"uid":"9f1d1834-98","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"9f1d1834-100","name":"index.vue"}]}]},{"name":"starfish-form-0baee1df.mjs","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","uid":"9f1d1834-102"}]}],"isRoot":true},"nodeParts":{"9f1d1834-1":{"id":"starfish-form.mjs","gzipLength":0,"brotliLength":0,"renderedLength":1902,"metaUid":"9f1d1834-0"},"9f1d1834-3":{"renderedLength":18542,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-2"},"9f1d1834-5":{"renderedLength":681,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-4"},"9f1d1834-7":{"renderedLength":159,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-6"},"9f1d1834-9":{"renderedLength":8553,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-8"},"9f1d1834-11":{"renderedLength":8386,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-10"},"9f1d1834-13":{"renderedLength":103,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-12"},"9f1d1834-15":{"renderedLength":405,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-14"},"9f1d1834-17":{"renderedLength":8484,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-16"},"9f1d1834-19":{"renderedLength":3246,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-18"},"9f1d1834-21":{"renderedLength":5328,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-20"},"9f1d1834-23":{"renderedLength":482,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-22"},"9f1d1834-25":{"renderedLength":2209,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-24"},"9f1d1834-27":{"renderedLength":4875,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-26"},"9f1d1834-29":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-28"},"9f1d1834-31":{"renderedLength":3717,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-30"},"9f1d1834-33":{"renderedLength":5563,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-32"},"9f1d1834-35":{"renderedLength":4809,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-34"},"9f1d1834-37":{"renderedLength":4772,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-36"},"9f1d1834-39":{"renderedLength":4755,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-38"},"9f1d1834-41":{"renderedLength":5040,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-40"},"9f1d1834-43":{"renderedLength":2588,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-42"},"9f1d1834-45":{"renderedLength":4897,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-44"},"9f1d1834-47":{"renderedLength":5473,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-46"},"9f1d1834-49":{"renderedLength":4066,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-48"},"9f1d1834-51":{"renderedLength":2925,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-50"},"9f1d1834-53":{"renderedLength":2994,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-52"},"9f1d1834-55":{"renderedLength":4735,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-54"},"9f1d1834-57":{"renderedLength":4541,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-56"},"9f1d1834-59":{"renderedLength":3221,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-58"},"9f1d1834-61":{"renderedLength":1315,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-60"},"9f1d1834-63":{"renderedLength":2984,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-62"},"9f1d1834-65":{"renderedLength":5888,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-64"},"9f1d1834-67":{"renderedLength":6238,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-66"},"9f1d1834-69":{"renderedLength":6689,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-68"},"9f1d1834-71":{"renderedLength":6149,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-70"},"9f1d1834-73":{"renderedLength":17,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-72"},"9f1d1834-75":{"renderedLength":350,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-74"},"9f1d1834-77":{"renderedLength":1613,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-76"},"9f1d1834-79":{"renderedLength":6014,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-78"},"9f1d1834-81":{"renderedLength":11658,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-80"},"9f1d1834-83":{"renderedLength":101,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-82"},"9f1d1834-85":{"renderedLength":391,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-84"},"9f1d1834-86":{"renderedLength":2981,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-0"},"9f1d1834-88":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-87"},"9f1d1834-90":{"renderedLength":3365,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-89"},"9f1d1834-92":{"renderedLength":6608,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-91"},"9f1d1834-94":{"renderedLength":92,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-93"},"9f1d1834-96":{"renderedLength":16981,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-95"},"9f1d1834-98":{"renderedLength":87,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-97"},"9f1d1834-100":{"renderedLength":17071,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-99"},"9f1d1834-102":{"renderedLength":9949,"gzipLength":0,"brotliLength":0,"metaUid":"9f1d1834-101"}},"nodeMetas":{"9f1d1834-0":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/main.ts","moduleParts":{"starfish-form.mjs":"9f1d1834-1","main-d99755be.mjs":"9f1d1834-86"},"imported":[{"uid":"9f1d1834-8"},{"uid":"9f1d1834-10"},{"uid":"9f1d1834-14"},{"uid":"9f1d1834-16"},{"uid":"9f1d1834-18"},{"uid":"9f1d1834-20"},{"uid":"9f1d1834-24"},{"uid":"9f1d1834-26"},{"uid":"9f1d1834-30"},{"uid":"9f1d1834-32"},{"uid":"9f1d1834-34"},{"uid":"9f1d1834-36"},{"uid":"9f1d1834-38"},{"uid":"9f1d1834-40"},{"uid":"9f1d1834-42"},{"uid":"9f1d1834-44"},{"uid":"9f1d1834-46"},{"uid":"9f1d1834-48"},{"uid":"9f1d1834-50"},{"uid":"9f1d1834-52"},{"uid":"9f1d1834-54"},{"uid":"9f1d1834-56"},{"uid":"9f1d1834-58"},{"uid":"9f1d1834-60"},{"uid":"9f1d1834-62"},{"uid":"9f1d1834-64"},{"uid":"9f1d1834-66"},{"uid":"9f1d1834-68"},{"uid":"9f1d1834-70"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-72"},{"uid":"9f1d1834-2"},{"uid":"9f1d1834-80"},{"uid":"9f1d1834-84"},{"uid":"9f1d1834-89","dynamic":true},{"uid":"9f1d1834-91","dynamic":true},{"uid":"9f1d1834-95","dynamic":true},{"uid":"9f1d1834-99","dynamic":true},{"uid":"9f1d1834-101","dynamic":true}],"importedBy":[],"isEntry":true},"9f1d1834-2":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/utils/fieldConfig.ts","moduleParts":{"main-d99755be.mjs":"9f1d1834-3"},"imported":[],"importedBy":[{"uid":"9f1d1834-0"},{"uid":"9f1d1834-8"},{"uid":"9f1d1834-10"},{"uid":"9f1d1834-26"},{"uid":"9f1d1834-30"},{"uid":"9f1d1834-32"},{"uid":"9f1d1834-34"},{"uid":"9f1d1834-36"},{"uid":"9f1d1834-38"},{"uid":"9f1d1834-44"},{"uid":"9f1d1834-46"},{"uid":"9f1d1834-50"},{"uid":"9f1d1834-52"},{"uid":"9f1d1834-54"},{"uid":"9f1d1834-56"},{"uid":"9f1d1834-58"},{"uid":"9f1d1834-60"},{"uid":"9f1d1834-62"},{"uid":"9f1d1834-64"},{"uid":"9f1d1834-66"},{"uid":"9f1d1834-68"},{"uid":"9f1d1834-70"},{"uid":"9f1d1834-89"},{"uid":"9f1d1834-91"}]},"9f1d1834-4":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/utils/fieldProps.ts","moduleParts":{"main-d99755be.mjs":"9f1d1834-5"},"imported":[],"importedBy":[{"uid":"9f1d1834-8"},{"uid":"9f1d1834-10"},{"uid":"9f1d1834-16"},{"uid":"9f1d1834-18"},{"uid":"9f1d1834-20"},{"uid":"9f1d1834-24"},{"uid":"9f1d1834-26"},{"uid":"9f1d1834-30"},{"uid":"9f1d1834-32"},{"uid":"9f1d1834-34"},{"uid":"9f1d1834-36"},{"uid":"9f1d1834-38"},{"uid":"9f1d1834-44"},{"uid":"9f1d1834-46"},{"uid":"9f1d1834-48"},{"uid":"9f1d1834-50"},{"uid":"9f1d1834-52"},{"uid":"9f1d1834-54"},{"uid":"9f1d1834-56"},{"uid":"9f1d1834-58"},{"uid":"9f1d1834-60"},{"uid":"9f1d1834-62"},{"uid":"9f1d1834-64"},{"uid":"9f1d1834-66"},{"uid":"9f1d1834-68"},{"uid":"9f1d1834-70"},{"uid":"9f1d1834-89"},{"uid":"9f1d1834-91"},{"uid":"9f1d1834-99"}]},"9f1d1834-6":{"id":"plugin-vue:export-helper","moduleParts":{"main-d99755be.mjs":"9f1d1834-7"},"imported":[],"importedBy":[{"uid":"9f1d1834-8"},{"uid":"9f1d1834-10"},{"uid":"9f1d1834-14"},{"uid":"9f1d1834-16"},{"uid":"9f1d1834-18"},{"uid":"9f1d1834-20"},{"uid":"9f1d1834-24"},{"uid":"9f1d1834-26"},{"uid":"9f1d1834-30"},{"uid":"9f1d1834-32"},{"uid":"9f1d1834-34"},{"uid":"9f1d1834-36"},{"uid":"9f1d1834-38"},{"uid":"9f1d1834-44"},{"uid":"9f1d1834-46"},{"uid":"9f1d1834-48"},{"uid":"9f1d1834-50"},{"uid":"9f1d1834-52"},{"uid":"9f1d1834-54"},{"uid":"9f1d1834-56"},{"uid":"9f1d1834-58"},{"uid":"9f1d1834-60"},{"uid":"9f1d1834-62"},{"uid":"9f1d1834-64"},{"uid":"9f1d1834-66"},{"uid":"9f1d1834-68"},{"uid":"9f1d1834-70"},{"uid":"9f1d1834-84"},{"uid":"9f1d1834-89"},{"uid":"9f1d1834-91"},{"uid":"9f1d1834-95"},{"uid":"9f1d1834-99"},{"uid":"9f1d1834-101"}]},"9f1d1834-8":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfig.vue","moduleParts":{"main-d99755be.mjs":"9f1d1834-9"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-106"},{"uid":"9f1d1834-107"},{"uid":"9f1d1834-108"},{"uid":"9f1d1834-109"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-110"},{"uid":"9f1d1834-2"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-10":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfigMult.vue","moduleParts":{"main-d99755be.mjs":"9f1d1834-11"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-106"},{"uid":"9f1d1834-107"},{"uid":"9f1d1834-108"},{"uid":"9f1d1834-109"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-110"},{"uid":"9f1d1834-2"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-12":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/Loading.vue?vue&type=style&index=0&scoped=true&lang.scss","moduleParts":{"main-d99755be.mjs":"9f1d1834-13"},"imported":[],"importedBy":[{"uid":"9f1d1834-14"}]},"9f1d1834-14":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/Loading.vue","moduleParts":{"main-d99755be.mjs":"9f1d1834-15"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-111"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-12"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-16":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/action.vue","moduleParts":{"main-d99755be.mjs":"9f1d1834-17"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-112"},{"uid":"9f1d1834-113"},{"uid":"9f1d1834-114"},{"uid":"9f1d1834-115"},{"uid":"9f1d1834-116"},{"uid":"9f1d1834-117"},{"uid":"9f1d1834-118"},{"uid":"9f1d1834-106"},{"uid":"9f1d1834-119"},{"uid":"9f1d1834-120"},{"uid":"9f1d1834-121"},{"uid":"9f1d1834-109"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-110"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-18":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/listConfig.vue","moduleParts":{"main-d99755be.mjs":"9f1d1834-19"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-117"},{"uid":"9f1d1834-118"},{"uid":"9f1d1834-106"},{"uid":"9f1d1834-122"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-110"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-20":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/panel.vue","moduleParts":{"main-d99755be.mjs":"9f1d1834-21"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-117"},{"uid":"9f1d1834-118"},{"uid":"9f1d1834-106"},{"uid":"9f1d1834-107"},{"uid":"9f1d1834-119"},{"uid":"9f1d1834-109"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-110"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-22":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/utils/customHooks.ts","moduleParts":{"main-d99755be.mjs":"9f1d1834-23"},"imported":[{"uid":"9f1d1834-103"}],"importedBy":[{"uid":"9f1d1834-24"},{"uid":"9f1d1834-26"},{"uid":"9f1d1834-30"},{"uid":"9f1d1834-32"},{"uid":"9f1d1834-34"},{"uid":"9f1d1834-36"},{"uid":"9f1d1834-38"},{"uid":"9f1d1834-44"},{"uid":"9f1d1834-46"},{"uid":"9f1d1834-48"},{"uid":"9f1d1834-50"},{"uid":"9f1d1834-52"},{"uid":"9f1d1834-54"},{"uid":"9f1d1834-56"},{"uid":"9f1d1834-58"},{"uid":"9f1d1834-60"},{"uid":"9f1d1834-62"},{"uid":"9f1d1834-64"},{"uid":"9f1d1834-66"},{"uid":"9f1d1834-68"},{"uid":"9f1d1834-70"},{"uid":"9f1d1834-89"},{"uid":"9f1d1834-91"}]},"9f1d1834-24":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/radiogroup.vue","moduleParts":{"main-d99755be.mjs":"9f1d1834-25"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-123"},{"uid":"9f1d1834-124"},{"uid":"9f1d1834-109"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-22"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-26":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/CheckBox/index.vue","moduleParts":{"main-d99755be.mjs":"9f1d1834-27"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-125"},{"uid":"9f1d1834-108"},{"uid":"9f1d1834-109"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-2"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-22"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-28":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/ColorSelect/index.vue?vue&type=style&index=0&scoped=true&lang.scss","moduleParts":{"main-d99755be.mjs":"9f1d1834-29"},"imported":[],"importedBy":[{"uid":"9f1d1834-30"}]},"9f1d1834-30":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/ColorSelect/index.vue","moduleParts":{"main-d99755be.mjs":"9f1d1834-31"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-126"},{"uid":"9f1d1834-107"},{"uid":"9f1d1834-109"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-2"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-22"},{"uid":"9f1d1834-28"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-32":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Date/index.vue","moduleParts":{"main-d99755be.mjs":"9f1d1834-33"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-127"},{"uid":"9f1d1834-109"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-2"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-22"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-34":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/DateTime/index.vue","moduleParts":{"main-d99755be.mjs":"9f1d1834-35"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-127"},{"uid":"9f1d1834-109"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-2"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-22"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-36":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/InputNumber/index.vue","moduleParts":{"main-d99755be.mjs":"9f1d1834-37"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-122"},{"uid":"9f1d1834-109"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-2"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-22"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-38":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Radio/index.vue","moduleParts":{"main-d99755be.mjs":"9f1d1834-39"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-123"},{"uid":"9f1d1834-128"},{"uid":"9f1d1834-109"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-2"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-22"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-40":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Rule/ruleform.json","moduleParts":{"main-d99755be.mjs":"9f1d1834-41"},"imported":[],"importedBy":[{"uid":"9f1d1834-0"},{"uid":"9f1d1834-99"}]},"9f1d1834-42":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Rule/rules.js","moduleParts":{"main-d99755be.mjs":"9f1d1834-43"},"imported":[],"importedBy":[{"uid":"9f1d1834-0"},{"uid":"9f1d1834-99"}]},"9f1d1834-44":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Selected/index.vue","moduleParts":{"main-d99755be.mjs":"9f1d1834-45"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-120"},{"uid":"9f1d1834-121"},{"uid":"9f1d1834-109"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-2"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-22"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-46":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Selecteds/index.vue","moduleParts":{"main-d99755be.mjs":"9f1d1834-47"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-120"},{"uid":"9f1d1834-121"},{"uid":"9f1d1834-109"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-2"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-22"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-48":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/ShowRule/index.vue","moduleParts":{"main-d99755be.mjs":"9f1d1834-49"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-118"},{"uid":"9f1d1834-109"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-22"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-50":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Slider/index.vue","moduleParts":{"main-d99755be.mjs":"9f1d1834-51"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-129"},{"uid":"9f1d1834-109"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-2"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-22"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-52":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Switch/index.vue","moduleParts":{"main-d99755be.mjs":"9f1d1834-53"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-130"},{"uid":"9f1d1834-109"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-2"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-22"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-54":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Text/index.vue","moduleParts":{"main-d99755be.mjs":"9f1d1834-55"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-107"},{"uid":"9f1d1834-109"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-2"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-22"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-56":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/TextArea/index.vue","moduleParts":{"main-d99755be.mjs":"9f1d1834-57"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-107"},{"uid":"9f1d1834-109"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-2"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-22"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-58":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Time/index.vue","moduleParts":{"main-d99755be.mjs":"9f1d1834-59"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-131"},{"uid":"9f1d1834-109"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-2"},{"uid":"9f1d1834-22"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-60":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/Divider.vue","moduleParts":{"main-d99755be.mjs":"9f1d1834-61"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-132"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-2"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-22"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-62":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/Info.vue","moduleParts":{"main-d99755be.mjs":"9f1d1834-63"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-133"},{"uid":"9f1d1834-109"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-2"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-22"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-64":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/Tabs.vue","moduleParts":{"main-d99755be.mjs":"9f1d1834-65"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-134"},{"uid":"9f1d1834-135"},{"uid":"9f1d1834-136"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-2"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-22"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-66":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/collapse.vue","moduleParts":{"main-d99755be.mjs":"9f1d1834-67"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-115"},{"uid":"9f1d1834-116"},{"uid":"9f1d1834-136"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-2"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-22"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-68":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/grid.vue","moduleParts":{"main-d99755be.mjs":"9f1d1834-69"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-117"},{"uid":"9f1d1834-136"},{"uid":"9f1d1834-119"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-2"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-22"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-70":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/table.vue","moduleParts":{"main-d99755be.mjs":"9f1d1834-71"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-136"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-2"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-22"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-72":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/styles/index.scss","moduleParts":{"main-d99755be.mjs":"9f1d1834-73"},"imported":[],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-74":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/node_modules/.pnpm/nanoid@4.0.2/node_modules/nanoid/index.browser.js","moduleParts":{"main-d99755be.mjs":"9f1d1834-75"},"imported":[{"uid":"9f1d1834-148"}],"importedBy":[{"uid":"9f1d1834-80"}]},"9f1d1834-76":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/controller/history.ts","moduleParts":{"main-d99755be.mjs":"9f1d1834-77"},"imported":[{"uid":"9f1d1834-103"},{"uid":"9f1d1834-78"}],"importedBy":[{"uid":"9f1d1834-78"}]},"9f1d1834-78":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/controller/form.ts","moduleParts":{"main-d99755be.mjs":"9f1d1834-79"},"imported":[{"uid":"9f1d1834-103"},{"uid":"9f1d1834-76"}],"importedBy":[{"uid":"9f1d1834-80"},{"uid":"9f1d1834-76"}]},"9f1d1834-80":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/utils/_.ts","moduleParts":{"main-d99755be.mjs":"9f1d1834-81"},"imported":[{"uid":"9f1d1834-137"},{"uid":"9f1d1834-74"},{"uid":"9f1d1834-78"}],"importedBy":[{"uid":"9f1d1834-0"},{"uid":"9f1d1834-91"},{"uid":"9f1d1834-99"}]},"9f1d1834-82":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue?vue&type=style&index=0&scoped=true&lang.scss","moduleParts":{"main-d99755be.mjs":"9f1d1834-83"},"imported":[],"importedBy":[{"uid":"9f1d1834-84"}]},"9f1d1834-84":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue","moduleParts":{"main-d99755be.mjs":"9f1d1834-85"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-111"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-82"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-87":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/RichText/index.vue?vue&type=style&index=0&scoped=true&lang.scss","moduleParts":{"index-0aa74f91.mjs":"9f1d1834-88"},"imported":[],"importedBy":[{"uid":"9f1d1834-89"}]},"9f1d1834-89":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/RichText/index.vue","moduleParts":{"index-0aa74f91.mjs":"9f1d1834-90"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-109"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-138"},{"uid":"9f1d1834-139"},{"uid":"9f1d1834-2"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-22"},{"uid":"9f1d1834-87"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-91":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","moduleParts":{"index-7fc8db96.mjs":"9f1d1834-92"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-140"},{"uid":"9f1d1834-141"},{"uid":"9f1d1834-118"},{"uid":"9f1d1834-142"},{"uid":"9f1d1834-109"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-2"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-22"},{"uid":"9f1d1834-143"},{"uid":"9f1d1834-80"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-93":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/formAction.vue?vue&type=style&index=0&lang.scss","moduleParts":{"formAction-b76664af.mjs":"9f1d1834-94"},"imported":[],"importedBy":[{"uid":"9f1d1834-95"}]},"9f1d1834-95":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/formAction.vue","moduleParts":{"formAction-b76664af.mjs":"9f1d1834-96"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-144"},{"uid":"9f1d1834-136"},{"uid":"9f1d1834-107"},{"uid":"9f1d1834-145"},{"uid":"9f1d1834-140"},{"uid":"9f1d1834-142"},{"uid":"9f1d1834-146"},{"uid":"9f1d1834-118"},{"uid":"9f1d1834-109"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-147"},{"uid":"9f1d1834-93"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-97":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Rule/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"index-d1c1ba4b.mjs":"9f1d1834-98"},"imported":[],"importedBy":[{"uid":"9f1d1834-99"}]},"9f1d1834-99":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Rule/index.vue","moduleParts":{"index-d1c1ba4b.mjs":"9f1d1834-100"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-140"},{"uid":"9f1d1834-142"},{"uid":"9f1d1834-141"},{"uid":"9f1d1834-133"},{"uid":"9f1d1834-106"},{"uid":"9f1d1834-120"},{"uid":"9f1d1834-121"},{"uid":"9f1d1834-112"},{"uid":"9f1d1834-113"},{"uid":"9f1d1834-114"},{"uid":"9f1d1834-118"},{"uid":"9f1d1834-109"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-4"},{"uid":"9f1d1834-80"},{"uid":"9f1d1834-42"},{"uid":"9f1d1834-40"},{"uid":"9f1d1834-110"},{"uid":"9f1d1834-101"},{"uid":"9f1d1834-147"},{"uid":"9f1d1834-97"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"}]},"9f1d1834-101":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","moduleParts":{"starfish-form-0baee1df.mjs":"9f1d1834-102"},"imported":[{"uid":"9f1d1834-104"},{"uid":"9f1d1834-105"},{"uid":"9f1d1834-144"},{"uid":"9f1d1834-136"},{"uid":"9f1d1834-103"},{"uid":"9f1d1834-6"}],"importedBy":[{"uid":"9f1d1834-0"},{"uid":"9f1d1834-99"}]},"9f1d1834-103":{"id":"vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-0"},{"uid":"9f1d1834-8"},{"uid":"9f1d1834-10"},{"uid":"9f1d1834-14"},{"uid":"9f1d1834-16"},{"uid":"9f1d1834-18"},{"uid":"9f1d1834-20"},{"uid":"9f1d1834-24"},{"uid":"9f1d1834-26"},{"uid":"9f1d1834-30"},{"uid":"9f1d1834-32"},{"uid":"9f1d1834-34"},{"uid":"9f1d1834-36"},{"uid":"9f1d1834-38"},{"uid":"9f1d1834-44"},{"uid":"9f1d1834-46"},{"uid":"9f1d1834-48"},{"uid":"9f1d1834-50"},{"uid":"9f1d1834-52"},{"uid":"9f1d1834-54"},{"uid":"9f1d1834-56"},{"uid":"9f1d1834-58"},{"uid":"9f1d1834-60"},{"uid":"9f1d1834-62"},{"uid":"9f1d1834-64"},{"uid":"9f1d1834-66"},{"uid":"9f1d1834-68"},{"uid":"9f1d1834-70"},{"uid":"9f1d1834-84"},{"uid":"9f1d1834-89"},{"uid":"9f1d1834-91"},{"uid":"9f1d1834-95"},{"uid":"9f1d1834-99"},{"uid":"9f1d1834-101"},{"uid":"9f1d1834-22"},{"uid":"9f1d1834-78"},{"uid":"9f1d1834-76"}],"isExternal":true},"9f1d1834-104":{"id":"element-plus/es","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-8"},{"uid":"9f1d1834-10"},{"uid":"9f1d1834-14"},{"uid":"9f1d1834-16"},{"uid":"9f1d1834-18"},{"uid":"9f1d1834-20"},{"uid":"9f1d1834-24"},{"uid":"9f1d1834-26"},{"uid":"9f1d1834-30"},{"uid":"9f1d1834-32"},{"uid":"9f1d1834-34"},{"uid":"9f1d1834-36"},{"uid":"9f1d1834-38"},{"uid":"9f1d1834-44"},{"uid":"9f1d1834-46"},{"uid":"9f1d1834-48"},{"uid":"9f1d1834-50"},{"uid":"9f1d1834-52"},{"uid":"9f1d1834-54"},{"uid":"9f1d1834-56"},{"uid":"9f1d1834-58"},{"uid":"9f1d1834-60"},{"uid":"9f1d1834-62"},{"uid":"9f1d1834-64"},{"uid":"9f1d1834-66"},{"uid":"9f1d1834-68"},{"uid":"9f1d1834-70"},{"uid":"9f1d1834-84"},{"uid":"9f1d1834-89"},{"uid":"9f1d1834-91"},{"uid":"9f1d1834-95"},{"uid":"9f1d1834-99"},{"uid":"9f1d1834-101"}],"isExternal":true},"9f1d1834-105":{"id":"element-plus/es/components/base/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-8"},{"uid":"9f1d1834-10"},{"uid":"9f1d1834-14"},{"uid":"9f1d1834-16"},{"uid":"9f1d1834-18"},{"uid":"9f1d1834-20"},{"uid":"9f1d1834-24"},{"uid":"9f1d1834-26"},{"uid":"9f1d1834-30"},{"uid":"9f1d1834-32"},{"uid":"9f1d1834-34"},{"uid":"9f1d1834-36"},{"uid":"9f1d1834-38"},{"uid":"9f1d1834-44"},{"uid":"9f1d1834-46"},{"uid":"9f1d1834-48"},{"uid":"9f1d1834-50"},{"uid":"9f1d1834-52"},{"uid":"9f1d1834-54"},{"uid":"9f1d1834-56"},{"uid":"9f1d1834-58"},{"uid":"9f1d1834-60"},{"uid":"9f1d1834-62"},{"uid":"9f1d1834-64"},{"uid":"9f1d1834-66"},{"uid":"9f1d1834-68"},{"uid":"9f1d1834-70"},{"uid":"9f1d1834-84"},{"uid":"9f1d1834-89"},{"uid":"9f1d1834-91"},{"uid":"9f1d1834-95"},{"uid":"9f1d1834-99"},{"uid":"9f1d1834-101"}],"isExternal":true},"9f1d1834-106":{"id":"element-plus/es/components/icon/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-8"},{"uid":"9f1d1834-10"},{"uid":"9f1d1834-16"},{"uid":"9f1d1834-18"},{"uid":"9f1d1834-20"},{"uid":"9f1d1834-99"}],"isExternal":true},"9f1d1834-107":{"id":"element-plus/es/components/input/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-8"},{"uid":"9f1d1834-10"},{"uid":"9f1d1834-20"},{"uid":"9f1d1834-30"},{"uid":"9f1d1834-54"},{"uid":"9f1d1834-56"},{"uid":"9f1d1834-95"}],"isExternal":true},"9f1d1834-108":{"id":"element-plus/es/components/checkbox/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-8"},{"uid":"9f1d1834-10"},{"uid":"9f1d1834-26"}],"isExternal":true},"9f1d1834-109":{"id":"element-plus/es/components/tooltip/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-8"},{"uid":"9f1d1834-10"},{"uid":"9f1d1834-16"},{"uid":"9f1d1834-20"},{"uid":"9f1d1834-24"},{"uid":"9f1d1834-26"},{"uid":"9f1d1834-30"},{"uid":"9f1d1834-32"},{"uid":"9f1d1834-34"},{"uid":"9f1d1834-36"},{"uid":"9f1d1834-38"},{"uid":"9f1d1834-44"},{"uid":"9f1d1834-46"},{"uid":"9f1d1834-48"},{"uid":"9f1d1834-50"},{"uid":"9f1d1834-52"},{"uid":"9f1d1834-54"},{"uid":"9f1d1834-56"},{"uid":"9f1d1834-58"},{"uid":"9f1d1834-62"},{"uid":"9f1d1834-89"},{"uid":"9f1d1834-91"},{"uid":"9f1d1834-95"},{"uid":"9f1d1834-99"}],"isExternal":true},"9f1d1834-110":{"id":"@element-plus/icons-vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-8"},{"uid":"9f1d1834-10"},{"uid":"9f1d1834-16"},{"uid":"9f1d1834-18"},{"uid":"9f1d1834-20"},{"uid":"9f1d1834-99"}],"isExternal":true},"9f1d1834-111":{"id":"element-plus/es/components/loading/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-14"},{"uid":"9f1d1834-84"}],"isExternal":true},"9f1d1834-112":{"id":"element-plus/es/components/dropdown/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-16"},{"uid":"9f1d1834-99"}],"isExternal":true},"9f1d1834-113":{"id":"element-plus/es/components/dropdown-menu/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-16"},{"uid":"9f1d1834-99"}],"isExternal":true},"9f1d1834-114":{"id":"element-plus/es/components/dropdown-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-16"},{"uid":"9f1d1834-99"}],"isExternal":true},"9f1d1834-115":{"id":"element-plus/es/components/collapse/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-16"},{"uid":"9f1d1834-66"}],"isExternal":true},"9f1d1834-116":{"id":"element-plus/es/components/collapse-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-16"},{"uid":"9f1d1834-66"}],"isExternal":true},"9f1d1834-117":{"id":"element-plus/es/components/row/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-16"},{"uid":"9f1d1834-18"},{"uid":"9f1d1834-20"},{"uid":"9f1d1834-68"}],"isExternal":true},"9f1d1834-118":{"id":"element-plus/es/components/button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-16"},{"uid":"9f1d1834-18"},{"uid":"9f1d1834-20"},{"uid":"9f1d1834-48"},{"uid":"9f1d1834-91"},{"uid":"9f1d1834-95"},{"uid":"9f1d1834-99"}],"isExternal":true},"9f1d1834-119":{"id":"element-plus/es/components/col/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-16"},{"uid":"9f1d1834-20"},{"uid":"9f1d1834-68"}],"isExternal":true},"9f1d1834-120":{"id":"element-plus/es/components/select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-16"},{"uid":"9f1d1834-44"},{"uid":"9f1d1834-46"},{"uid":"9f1d1834-99"}],"isExternal":true},"9f1d1834-121":{"id":"element-plus/es/components/option/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-16"},{"uid":"9f1d1834-44"},{"uid":"9f1d1834-46"},{"uid":"9f1d1834-99"}],"isExternal":true},"9f1d1834-122":{"id":"element-plus/es/components/input-number/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-18"},{"uid":"9f1d1834-36"}],"isExternal":true},"9f1d1834-123":{"id":"element-plus/es/components/radio-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-24"},{"uid":"9f1d1834-38"}],"isExternal":true},"9f1d1834-124":{"id":"element-plus/es/components/radio-button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-24"}],"isExternal":true},"9f1d1834-125":{"id":"element-plus/es/components/checkbox-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-26"}],"isExternal":true},"9f1d1834-126":{"id":"element-plus/es/components/color-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-30"}],"isExternal":true},"9f1d1834-127":{"id":"element-plus/es/components/date-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-32"},{"uid":"9f1d1834-34"}],"isExternal":true},"9f1d1834-128":{"id":"element-plus/es/components/radio/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-38"}],"isExternal":true},"9f1d1834-129":{"id":"element-plus/es/components/slider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-50"}],"isExternal":true},"9f1d1834-130":{"id":"element-plus/es/components/switch/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-52"}],"isExternal":true},"9f1d1834-131":{"id":"element-plus/es/components/time-select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-58"}],"isExternal":true},"9f1d1834-132":{"id":"element-plus/es/components/divider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-60"}],"isExternal":true},"9f1d1834-133":{"id":"element-plus/es/components/alert/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-62"},{"uid":"9f1d1834-99"}],"isExternal":true},"9f1d1834-134":{"id":"element-plus/es/components/tabs/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-64"}],"isExternal":true},"9f1d1834-135":{"id":"element-plus/es/components/tab-pane/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-64"}],"isExternal":true},"9f1d1834-136":{"id":"element-plus/es/components/form-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-64"},{"uid":"9f1d1834-66"},{"uid":"9f1d1834-68"},{"uid":"9f1d1834-70"},{"uid":"9f1d1834-95"},{"uid":"9f1d1834-101"}],"isExternal":true},"9f1d1834-137":{"id":"element-plus","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-80"}],"isExternal":true},"9f1d1834-138":{"id":"@vueup/vue-quill","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-89"}],"isExternal":true},"9f1d1834-139":{"id":"@vueup/vue-quill/dist/vue-quill.snow.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-89"}],"isExternal":true},"9f1d1834-140":{"id":"element-plus/es/components/container/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-91"},{"uid":"9f1d1834-95"},{"uid":"9f1d1834-99"}],"isExternal":true},"9f1d1834-141":{"id":"element-plus/es/components/footer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-91"},{"uid":"9f1d1834-99"}],"isExternal":true},"9f1d1834-142":{"id":"element-plus/es/components/main/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-91"},{"uid":"9f1d1834-95"},{"uid":"9f1d1834-99"}],"isExternal":true},"9f1d1834-143":{"id":"jsoneditor","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-91"}],"isExternal":true},"9f1d1834-144":{"id":"element-plus/es/components/form/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-95"},{"uid":"9f1d1834-101"}],"isExternal":true},"9f1d1834-145":{"id":"element-plus/es/components/aside/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-95"}],"isExternal":true},"9f1d1834-146":{"id":"element-plus/es/components/scrollbar/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-95"}],"isExternal":true},"9f1d1834-147":{"id":"vue-codemirror","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-95"},{"uid":"9f1d1834-99"}],"isExternal":true},"9f1d1834-148":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/node_modules/.pnpm/nanoid@4.0.2/node_modules/nanoid/url-alphabet/index.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f1d1834-74"}]}},"env":{"rollup":"3.29.4"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
|
|
4933
4933
|
|
|
4934
4934
|
const run = () => {
|
|
4935
4935
|
const width = window.innerWidth;
|