starfish-form-custom 1.0.47 → 1.0.48
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-003dce29.mjs → formAction-8f689053.mjs} +1 -1
- package/dist/{index-ffe5a532.mjs → index-3c21357b.mjs} +2 -2
- package/dist/index-5ee7ae61.mjs +240 -0
- package/dist/{index-bf109006.mjs → index-ec5813e3.mjs} +1 -1
- package/dist/{main-a9ce8be4.mjs → main-aab412b3.mjs} +5 -5
- package/dist/{starfish-form-dfa363ef.mjs → starfish-form-a750924c.mjs} +1 -1
- package/dist/starfish-form.mjs +1 -1
- package/dist/style.css +5 -5
- package/package.json +1 -1
- package/src/components/RichText/index.vue +194 -42
- package/stats.html +1 -1
- package/dist/index-8980a82d.mjs +0 -133
|
@@ -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-aab412b3.mjs';
|
|
15
15
|
import 'element-plus/es/components/icon/style/css';
|
|
16
16
|
import 'element-plus/es/components/checkbox/style/css';
|
|
17
17
|
import '@element-plus/icons-vue';
|
|
@@ -13,9 +13,9 @@ import 'element-plus/es/components/dropdown-item/style/css';
|
|
|
13
13
|
import 'element-plus/es/components/button/style/css';
|
|
14
14
|
import 'element-plus/es/components/tooltip/style/css';
|
|
15
15
|
import { defineComponent, getCurrentInstance, inject, computed, ref, resolveComponent, openBlock, createElementBlock, normalizeClass, createElementVNode, normalizeStyle, toDisplayString, createCommentVNode, createBlock, withCtx, createVNode, 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-aab412b3.mjs';
|
|
17
17
|
import { Delete } from '@element-plus/icons-vue';
|
|
18
|
-
import Dynamicform from './starfish-form-
|
|
18
|
+
import Dynamicform from './starfish-form-a750924c.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';
|
|
@@ -0,0 +1,240 @@
|
|
|
1
|
+
import { ElTooltip } from 'element-plus/es';
|
|
2
|
+
import 'element-plus/es/components/base/style/css';
|
|
3
|
+
import 'element-plus/es/components/tooltip/style/css';
|
|
4
|
+
import { defineComponent, ref, computed, watch, nextTick, resolveComponent, openBlock, createElementBlock, normalizeClass, createElementVNode, normalizeStyle, createCommentVNode, toDisplayString, createBlock, withCtx, withModifiers, createVNode } from 'vue';
|
|
5
|
+
import { QuillEditor } from '@vueup/vue-quill';
|
|
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-aab412b3.mjs';
|
|
8
|
+
import 'element-plus/es/components/icon/style/css';
|
|
9
|
+
import 'element-plus/es/components/input/style/css';
|
|
10
|
+
import 'element-plus/es/components/checkbox/style/css';
|
|
11
|
+
import '@element-plus/icons-vue';
|
|
12
|
+
import 'element-plus/es/components/loading/style/css';
|
|
13
|
+
import 'element-plus/es/components/dropdown/style/css';
|
|
14
|
+
import 'element-plus/es/components/dropdown-menu/style/css';
|
|
15
|
+
import 'element-plus/es/components/dropdown-item/style/css';
|
|
16
|
+
import 'element-plus/es/components/collapse/style/css';
|
|
17
|
+
import 'element-plus/es/components/collapse-item/style/css';
|
|
18
|
+
import 'element-plus/es/components/row/style/css';
|
|
19
|
+
import 'element-plus/es/components/button/style/css';
|
|
20
|
+
import 'element-plus/es/components/col/style/css';
|
|
21
|
+
import 'element-plus/es/components/select/style/css';
|
|
22
|
+
import 'element-plus/es/components/option/style/css';
|
|
23
|
+
import 'element-plus/es/components/input-number/style/css';
|
|
24
|
+
import 'element-plus/es/components/radio-group/style/css';
|
|
25
|
+
import 'element-plus/es/components/radio-button/style/css';
|
|
26
|
+
import 'element-plus/es/components/checkbox-group/style/css';
|
|
27
|
+
import 'element-plus/es/components/color-picker/style/css';
|
|
28
|
+
import 'element-plus/es/components/date-picker/style/css';
|
|
29
|
+
import 'element-plus/es/components/radio/style/css';
|
|
30
|
+
import 'element-plus/es/components/slider/style/css';
|
|
31
|
+
import 'element-plus/es/components/switch/style/css';
|
|
32
|
+
import 'element-plus/es/components/time-select/style/css';
|
|
33
|
+
import 'element-plus/es/components/divider/style/css';
|
|
34
|
+
import 'element-plus/es/components/alert/style/css';
|
|
35
|
+
import 'element-plus/es/components/tabs/style/css';
|
|
36
|
+
import 'element-plus/es/components/tab-pane/style/css';
|
|
37
|
+
import 'element-plus/es/components/form-item/style/css';
|
|
38
|
+
import 'element-plus';
|
|
39
|
+
|
|
40
|
+
/* unplugin-vue-components disabled */const index_vue_vue_type_style_index_0_scoped_true_lang = '';
|
|
41
|
+
|
|
42
|
+
const _sfc_main = defineComponent({
|
|
43
|
+
ControlType: "RichText",
|
|
44
|
+
nameCn: "\u5BCC\u6587\u672C",
|
|
45
|
+
icon: "icon-textEdit",
|
|
46
|
+
formConfig: getFormConfig("RichText", [
|
|
47
|
+
{ fieldName: "state", component: "Radio" }
|
|
48
|
+
]),
|
|
49
|
+
props: {
|
|
50
|
+
...fieldProps
|
|
51
|
+
},
|
|
52
|
+
components: {
|
|
53
|
+
QuillEditor
|
|
54
|
+
},
|
|
55
|
+
setup(props) {
|
|
56
|
+
useWatch(props);
|
|
57
|
+
const quillEditorRef = ref();
|
|
58
|
+
const internalContent = ref(null);
|
|
59
|
+
const isEditorReady = ref(false);
|
|
60
|
+
const toolbarOptions = [
|
|
61
|
+
["bold", "italic", "underline", "strike"],
|
|
62
|
+
["blockquote", "code-block"],
|
|
63
|
+
["link", "image", "formula"],
|
|
64
|
+
[{ header: 1 }, { header: 2 }],
|
|
65
|
+
[{ list: "ordered" }, { list: "bullet" }, { list: "check" }],
|
|
66
|
+
[{ script: "sub" }, { script: "super" }],
|
|
67
|
+
[{ indent: "-1" }, { indent: "+1" }],
|
|
68
|
+
[{ direction: "rtl" }],
|
|
69
|
+
[{ size: ["small", false, "large", "huge"] }],
|
|
70
|
+
[{ header: [1, 2, 3, 4, 5, 6, false] }],
|
|
71
|
+
[{ color: [] }, { background: [] }],
|
|
72
|
+
[{ font: [] }],
|
|
73
|
+
[{ align: [] }],
|
|
74
|
+
["clean"]
|
|
75
|
+
];
|
|
76
|
+
const isReadonly = computed(
|
|
77
|
+
() => props.readonly || props.item.data.state === "readonly"
|
|
78
|
+
);
|
|
79
|
+
const onEditorReady = () => {
|
|
80
|
+
isEditorReady.value = true;
|
|
81
|
+
initContentFromProps();
|
|
82
|
+
};
|
|
83
|
+
const initContentFromProps = () => {
|
|
84
|
+
if (!isEditorReady.value)
|
|
85
|
+
return;
|
|
86
|
+
const fieldName = props.item.data.fieldName;
|
|
87
|
+
const rawValue = props.data[fieldName];
|
|
88
|
+
const defaultValue = props.item.data.default || "";
|
|
89
|
+
if (rawValue === void 0 || rawValue === null || rawValue === "") {
|
|
90
|
+
internalContent.value = defaultValue;
|
|
91
|
+
return;
|
|
92
|
+
}
|
|
93
|
+
if (rawValue && typeof rawValue === "object" && Array.isArray(rawValue.ops)) {
|
|
94
|
+
internalContent.value = rawValue;
|
|
95
|
+
return;
|
|
96
|
+
}
|
|
97
|
+
if (typeof rawValue === "string") {
|
|
98
|
+
if (rawValue.trim().startsWith("{") || rawValue.trim().startsWith("[")) {
|
|
99
|
+
try {
|
|
100
|
+
const parsed = JSON.parse(rawValue);
|
|
101
|
+
if (parsed && Array.isArray(parsed.ops)) {
|
|
102
|
+
internalContent.value = parsed;
|
|
103
|
+
} else {
|
|
104
|
+
internalContent.value = rawValue;
|
|
105
|
+
}
|
|
106
|
+
} catch {
|
|
107
|
+
internalContent.value = rawValue;
|
|
108
|
+
}
|
|
109
|
+
} else {
|
|
110
|
+
internalContent.value = rawValue;
|
|
111
|
+
}
|
|
112
|
+
return;
|
|
113
|
+
}
|
|
114
|
+
internalContent.value = defaultValue;
|
|
115
|
+
};
|
|
116
|
+
const handleContentChange = (value) => {
|
|
117
|
+
internalContent.value = value;
|
|
118
|
+
if (!quillEditorRef.value)
|
|
119
|
+
return;
|
|
120
|
+
const quill = quillEditorRef.value.getQuill();
|
|
121
|
+
if (!quill)
|
|
122
|
+
return;
|
|
123
|
+
const fieldName = props.item.data.fieldName;
|
|
124
|
+
const htmlContent = quill.root.innerHTML;
|
|
125
|
+
props.data[fieldName] = htmlContent;
|
|
126
|
+
};
|
|
127
|
+
watch(
|
|
128
|
+
() => props.data[props.item.data.fieldName],
|
|
129
|
+
(newValue) => {
|
|
130
|
+
if (!isEditorReady.value)
|
|
131
|
+
return;
|
|
132
|
+
let newInternalValue = null;
|
|
133
|
+
if (newValue === void 0 || newValue === null || newValue === "") {
|
|
134
|
+
newInternalValue = props.item.data.default || "";
|
|
135
|
+
} else if (newValue && typeof newValue === "object" && Array.isArray(newValue.ops)) {
|
|
136
|
+
newInternalValue = newValue;
|
|
137
|
+
} else if (typeof newValue === "string") {
|
|
138
|
+
if (newValue.trim().startsWith("{") || newValue.trim().startsWith("[")) {
|
|
139
|
+
try {
|
|
140
|
+
const parsed = JSON.parse(newValue);
|
|
141
|
+
if (parsed && Array.isArray(parsed.ops)) {
|
|
142
|
+
newInternalValue = parsed;
|
|
143
|
+
} else {
|
|
144
|
+
newInternalValue = newValue;
|
|
145
|
+
}
|
|
146
|
+
} catch {
|
|
147
|
+
newInternalValue = newValue;
|
|
148
|
+
}
|
|
149
|
+
} else {
|
|
150
|
+
newInternalValue = newValue;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
if (JSON.stringify(newInternalValue) !== JSON.stringify(internalContent.value)) {
|
|
154
|
+
internalContent.value = newInternalValue;
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
{ immediate: true }
|
|
158
|
+
);
|
|
159
|
+
watch(isEditorReady, (ready) => {
|
|
160
|
+
if (ready) {
|
|
161
|
+
nextTick(() => {
|
|
162
|
+
initContentFromProps();
|
|
163
|
+
});
|
|
164
|
+
}
|
|
165
|
+
});
|
|
166
|
+
return {
|
|
167
|
+
content: internalContent,
|
|
168
|
+
quillEditorRef,
|
|
169
|
+
handleContentChange,
|
|
170
|
+
onEditorReady,
|
|
171
|
+
toolbarOptions,
|
|
172
|
+
isReadonly
|
|
173
|
+
};
|
|
174
|
+
}
|
|
175
|
+
});
|
|
176
|
+
const _hoisted_1 = ["data-control-type", "data-id"];
|
|
177
|
+
const _hoisted_2 = {
|
|
178
|
+
key: 0,
|
|
179
|
+
class: "item_require"
|
|
180
|
+
};
|
|
181
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
182
|
+
const _component_el_tooltip = ElTooltip;
|
|
183
|
+
const _component_QuillEditor = resolveComponent("QuillEditor");
|
|
184
|
+
return openBlock(), createElementBlock("div", {
|
|
185
|
+
class: normalizeClass(["starfish-formitem", {
|
|
186
|
+
formCover: _ctx.drag,
|
|
187
|
+
"starfish-vertical": _ctx.labelalign != "top",
|
|
188
|
+
[_ctx.item.data.csslist?.join(" ")]: !!_ctx.item.data.csslist
|
|
189
|
+
}]),
|
|
190
|
+
"data-control-type": _ctx.item.ControlType,
|
|
191
|
+
"data-id": _ctx.item.id
|
|
192
|
+
}, [
|
|
193
|
+
createElementVNode("div", {
|
|
194
|
+
class: normalizeClass(["label", "label_" + _ctx.labelalign]),
|
|
195
|
+
style: normalizeStyle({ width: _ctx.labelWidth + "px" })
|
|
196
|
+
}, [
|
|
197
|
+
_ctx.item.data.required && !_ctx.readonly && _ctx.item.data.state !== "readonly" ? (openBlock(), createElementBlock("span", _hoisted_2, "*")) : createCommentVNode("", true),
|
|
198
|
+
createElementVNode("label", null, toDisplayString(_ctx.item.data.label) + toDisplayString(_ctx.suffix), 1),
|
|
199
|
+
_ctx.item.data.tip && !_ctx.readonly ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
200
|
+
key: 1,
|
|
201
|
+
class: "item",
|
|
202
|
+
effect: "dark",
|
|
203
|
+
content: _ctx.item.data.tip,
|
|
204
|
+
placement: "top"
|
|
205
|
+
}, {
|
|
206
|
+
default: withCtx(() => [..._cache[2] || (_cache[2] = [
|
|
207
|
+
createElementVNode("span", { class: "tip iconfontui icon-tishi" }, null, -1)
|
|
208
|
+
])]),
|
|
209
|
+
_: 1
|
|
210
|
+
}, 8, ["content"])) : createCommentVNode("", true)
|
|
211
|
+
], 6),
|
|
212
|
+
createElementVNode("div", {
|
|
213
|
+
class: "control",
|
|
214
|
+
style: normalizeStyle({ marginLeft: _ctx.labelalign != "top" ? _ctx.labelWidth + "px" : "" })
|
|
215
|
+
}, [
|
|
216
|
+
createElementVNode("div", {
|
|
217
|
+
class: "rich-text-editor",
|
|
218
|
+
onClick: _cache[1] || (_cache[1] = withModifiers(() => {
|
|
219
|
+
}, ["stop"]))
|
|
220
|
+
}, [
|
|
221
|
+
createVNode(_component_QuillEditor, {
|
|
222
|
+
ref: "quillEditorRef",
|
|
223
|
+
theme: "snow",
|
|
224
|
+
content: _ctx.internalContent,
|
|
225
|
+
"onUpdate:content": [
|
|
226
|
+
_cache[0] || (_cache[0] = ($event) => _ctx.internalContent = $event),
|
|
227
|
+
_ctx.handleContentChange
|
|
228
|
+
],
|
|
229
|
+
onReady: _ctx.onEditorReady,
|
|
230
|
+
toolbar: _ctx.toolbarOptions,
|
|
231
|
+
"read-only": _ctx.isReadonly || _ctx.drag,
|
|
232
|
+
class: "editor-content"
|
|
233
|
+
}, null, 8, ["content", "onUpdate:content", "onReady", "toolbar", "read-only"])
|
|
234
|
+
])
|
|
235
|
+
], 4)
|
|
236
|
+
], 10, _hoisted_1);
|
|
237
|
+
}
|
|
238
|
+
const index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-77a8db1a"]]);
|
|
239
|
+
|
|
240
|
+
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-aab412b3.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';
|
|
@@ -5395,7 +5395,7 @@ Object.keys(files).forEach((fileName) => {
|
|
|
5395
5395
|
}
|
|
5396
5396
|
});
|
|
5397
5397
|
const RichText = defineAsyncComponent({
|
|
5398
|
-
loader: () => import('./index-
|
|
5398
|
+
loader: () => import('./index-5ee7ae61.mjs'),
|
|
5399
5399
|
loadingComponent: Loading
|
|
5400
5400
|
});
|
|
5401
5401
|
RichText.ControlType = "RichText";
|
|
@@ -5404,7 +5404,7 @@ RichText.icon = "icon-textEdit";
|
|
|
5404
5404
|
RichText.formConfig = getFormConfig("RichText");
|
|
5405
5405
|
utilFuns[RichText.ControlType] = RichText;
|
|
5406
5406
|
const jsonEditor = defineAsyncComponent({
|
|
5407
|
-
loader: () => import('./index-
|
|
5407
|
+
loader: () => import('./index-ec5813e3.mjs'),
|
|
5408
5408
|
loadingComponent: Loading
|
|
5409
5409
|
});
|
|
5410
5410
|
jsonEditor.ControlType = "JsonEditor";
|
|
@@ -5414,14 +5414,14 @@ jsonEditor.formConfig = getFormConfig("JsonEditor", [{ fieldName: "default", com
|
|
|
5414
5414
|
jsonEditor.rule = _.getJsonValidate();
|
|
5415
5415
|
utilFuns[jsonEditor.ControlType] = jsonEditor;
|
|
5416
5416
|
const formAction = defineAsyncComponent({
|
|
5417
|
-
loader: () => import('./formAction-
|
|
5417
|
+
loader: () => import('./formAction-8f689053.mjs'),
|
|
5418
5418
|
loadingComponent: Loading
|
|
5419
5419
|
});
|
|
5420
5420
|
formAction.ControlType = "FormAction";
|
|
5421
5421
|
formAction.isHide = true;
|
|
5422
5422
|
utilFuns[formAction.ControlType] = formAction;
|
|
5423
5423
|
const Rule = defineAsyncComponent({
|
|
5424
|
-
loader: () => import('./index-
|
|
5424
|
+
loader: () => import('./index-3c21357b.mjs'),
|
|
5425
5425
|
loadingComponent: Loading
|
|
5426
5426
|
});
|
|
5427
5427
|
Rule.ControlType = "Rule";
|
|
@@ -5430,7 +5430,7 @@ utilFuns[Rule.ControlType] = Rule;
|
|
|
5430
5430
|
const install = (app) => {
|
|
5431
5431
|
app.config.globalProperties.$formcomponents = utilFuns;
|
|
5432
5432
|
};
|
|
5433
|
-
const Dynamicform = defineAsyncComponent(() => import('./starfish-form-
|
|
5433
|
+
const Dynamicform = defineAsyncComponent(() => import('./starfish-form-a750924c.mjs'));
|
|
5434
5434
|
const main = {
|
|
5435
5435
|
install
|
|
5436
5436
|
};
|
|
@@ -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-aab412b3.mjs';
|
|
7
7
|
import 'element-plus/es/components/icon/style/css';
|
|
8
8
|
import 'element-plus/es/components/input/style/css';
|
|
9
9
|
import 'element-plus/es/components/checkbox/style/css';
|
package/dist/starfish-form.mjs
CHANGED
package/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-77a8db1a] {
|
|
428
428
|
min-height: 200px;
|
|
429
429
|
position: relative;
|
|
430
430
|
z-index: 1;
|
|
431
431
|
}
|
|
432
|
-
[data-v-
|
|
432
|
+
[data-v-77a8db1a] .editor-content {
|
|
433
433
|
min-height: 200px;
|
|
434
434
|
}
|
|
435
|
-
[data-v-
|
|
435
|
+
[data-v-77a8db1a] .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-77a8db1a] .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-77a8db1a] .shape .rich-text-editor {
|
|
452
452
|
pointer-events: auto !important;
|
|
453
453
|
}.cm-gutters.cm-gutters-before {
|
|
454
454
|
background: #133F63;
|
package/package.json
CHANGED
|
@@ -1,26 +1,49 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div
|
|
3
|
-
|
|
2
|
+
<div
|
|
3
|
+
class="starfish-formitem"
|
|
4
|
+
:class="{
|
|
5
|
+
formCover: drag,
|
|
6
|
+
'starfish-vertical': labelalign != 'top',
|
|
7
|
+
[item.data.csslist?.join(' ')]: !!item.data.csslist,
|
|
8
|
+
}"
|
|
4
9
|
:data-control-type="item.ControlType"
|
|
5
10
|
:data-id="item.id"
|
|
11
|
+
>
|
|
12
|
+
<div
|
|
13
|
+
class="label"
|
|
14
|
+
:class="'label_' + labelalign"
|
|
15
|
+
:style="{ width: labelWidth + 'px' }"
|
|
6
16
|
>
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
17
|
+
<span
|
|
18
|
+
v-if="item.data.required && !readonly && item.data.state !== 'readonly'"
|
|
19
|
+
class="item_require"
|
|
20
|
+
>*</span
|
|
21
|
+
>
|
|
22
|
+
<label>{{ item.data.label }}{{ suffix }}</label>
|
|
23
|
+
<el-tooltip
|
|
24
|
+
v-if="item.data.tip && !readonly"
|
|
25
|
+
class="item"
|
|
26
|
+
effect="dark"
|
|
27
|
+
:content="item.data.tip"
|
|
28
|
+
placement="top"
|
|
29
|
+
>
|
|
11
30
|
<span class="tip iconfontui icon-tishi"></span>
|
|
12
31
|
</el-tooltip>
|
|
13
32
|
</div>
|
|
14
|
-
<div
|
|
33
|
+
<div
|
|
34
|
+
class="control"
|
|
35
|
+
:style="{ marginLeft: labelalign != 'top' ? labelWidth + 'px' : '' }"
|
|
36
|
+
>
|
|
15
37
|
<div class="rich-text-editor" @click.stop>
|
|
16
|
-
<QuillEditor
|
|
38
|
+
<QuillEditor
|
|
17
39
|
ref="quillEditorRef"
|
|
18
|
-
theme="snow"
|
|
19
|
-
:content="
|
|
40
|
+
theme="snow"
|
|
41
|
+
v-model:content="internalContent"
|
|
20
42
|
@update:content="handleContentChange"
|
|
21
|
-
|
|
22
|
-
:
|
|
23
|
-
|
|
43
|
+
@ready="onEditorReady"
|
|
44
|
+
:toolbar="toolbarOptions"
|
|
45
|
+
:read-only="isReadonly || drag"
|
|
46
|
+
class="editor-content"
|
|
24
47
|
/>
|
|
25
48
|
</div>
|
|
26
49
|
</div>
|
|
@@ -28,53 +51,185 @@
|
|
|
28
51
|
</template>
|
|
29
52
|
|
|
30
53
|
<script lang="ts">
|
|
31
|
-
import { defineComponent, ref, computed, watch } from "vue";
|
|
32
|
-
import { QuillEditor } from
|
|
33
|
-
import
|
|
54
|
+
import { defineComponent, ref, computed, watch, nextTick } from "vue";
|
|
55
|
+
import { QuillEditor } from "@vueup/vue-quill";
|
|
56
|
+
import "@vueup/vue-quill/dist/vue-quill.snow.css";
|
|
34
57
|
import { getFormConfig } from "../../utils/fieldConfig";
|
|
35
58
|
import fieldProps from "../../utils/fieldProps";
|
|
36
59
|
import { useWatch } from "../../utils/customHooks";
|
|
60
|
+
import type { Delta } from "@vueup/vue-quill";
|
|
37
61
|
|
|
38
62
|
export default defineComponent({
|
|
39
63
|
ControlType: "RichText",
|
|
40
64
|
nameCn: "富文本",
|
|
41
65
|
icon: "icon-textEdit",
|
|
42
|
-
formConfig: getFormConfig("RichText", [
|
|
66
|
+
formConfig: getFormConfig("RichText", [
|
|
67
|
+
{ fieldName: "state", component: "Radio" },
|
|
68
|
+
]),
|
|
43
69
|
props: {
|
|
44
70
|
...fieldProps,
|
|
45
71
|
},
|
|
46
72
|
components: {
|
|
47
|
-
QuillEditor
|
|
73
|
+
QuillEditor,
|
|
48
74
|
},
|
|
49
75
|
setup(props) {
|
|
50
76
|
useWatch(props);
|
|
51
|
-
const quillEditorRef = ref();
|
|
52
|
-
const
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
const
|
|
56
|
-
|
|
77
|
+
const quillEditorRef = ref<InstanceType<typeof QuillEditor>>();
|
|
78
|
+
const internalContent = ref<string | Delta | null>(null);
|
|
79
|
+
const isEditorReady = ref(false);
|
|
80
|
+
|
|
81
|
+
const toolbarOptions = [
|
|
82
|
+
["bold", "italic", "underline", "strike"],
|
|
83
|
+
["blockquote", "code-block"],
|
|
84
|
+
["link", "image", "formula"],
|
|
85
|
+
[{ header: 1 }, { header: 2 }],
|
|
86
|
+
[{ list: "ordered" }, { list: "bullet" }, { list: "check" }],
|
|
87
|
+
[{ script: "sub" }, { script: "super" }],
|
|
88
|
+
[{ indent: "-1" }, { indent: "+1" }],
|
|
89
|
+
[{ direction: "rtl" }],
|
|
90
|
+
[{ size: ["small", false, "large", "huge"] }],
|
|
91
|
+
[{ header: [1, 2, 3, 4, 5, 6, false] }],
|
|
92
|
+
[{ color: [] }, { background: [] }],
|
|
93
|
+
[{ font: [] }],
|
|
94
|
+
[{ align: [] }],
|
|
95
|
+
["clean"],
|
|
96
|
+
];
|
|
97
|
+
|
|
98
|
+
const isReadonly = computed(
|
|
99
|
+
() => props.readonly || props.item.data.state === "readonly"
|
|
57
100
|
);
|
|
58
|
-
|
|
101
|
+
|
|
102
|
+
// 编辑器就绪回调
|
|
103
|
+
const onEditorReady = () => {
|
|
104
|
+
isEditorReady.value = true;
|
|
105
|
+
initContentFromProps();
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
// 从 props 初始化内容(支持字符串和 Delta 对象)
|
|
109
|
+
const initContentFromProps = () => {
|
|
110
|
+
if (!isEditorReady.value) return;
|
|
111
|
+
|
|
112
|
+
const fieldName = props.item.data.fieldName;
|
|
113
|
+
const rawValue = props.data[fieldName];
|
|
114
|
+
const defaultValue = props.item.data.default || "";
|
|
115
|
+
|
|
116
|
+
// 处理空值
|
|
117
|
+
if (rawValue === undefined || rawValue === null || rawValue === "") {
|
|
118
|
+
internalContent.value = defaultValue;
|
|
119
|
+
return;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
// 情况1:如果是 Delta 对象({ ops: [...] })
|
|
123
|
+
if (
|
|
124
|
+
rawValue &&
|
|
125
|
+
typeof rawValue === "object" &&
|
|
126
|
+
Array.isArray(rawValue.ops)
|
|
127
|
+
) {
|
|
128
|
+
internalContent.value = rawValue;
|
|
129
|
+
return;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
// 情况2:如果是字符串
|
|
133
|
+
if (typeof rawValue === "string") {
|
|
134
|
+
// 尝试解析是否为 JSON 字符串的 Delta
|
|
135
|
+
if (rawValue.trim().startsWith("{") || rawValue.trim().startsWith("[")) {
|
|
136
|
+
try {
|
|
137
|
+
const parsed = JSON.parse(rawValue);
|
|
138
|
+
if (parsed && Array.isArray(parsed.ops)) {
|
|
139
|
+
internalContent.value = parsed;
|
|
140
|
+
} else {
|
|
141
|
+
// 不是 Delta JSON,当作普通 HTML 字符串
|
|
142
|
+
internalContent.value = rawValue;
|
|
143
|
+
}
|
|
144
|
+
} catch {
|
|
145
|
+
// 解析失败,当作普通 HTML 字符串
|
|
146
|
+
internalContent.value = rawValue;
|
|
147
|
+
}
|
|
148
|
+
} else {
|
|
149
|
+
// 普通字符串
|
|
150
|
+
internalContent.value = rawValue;
|
|
151
|
+
}
|
|
152
|
+
return;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
// 情况3:其他类型,使用默认值
|
|
156
|
+
internalContent.value = defaultValue;
|
|
157
|
+
};
|
|
158
|
+
|
|
59
159
|
// 处理内容变化
|
|
60
|
-
const handleContentChange = (value: string) => {
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
160
|
+
const handleContentChange = (value: string | Delta) => {
|
|
161
|
+
internalContent.value = value;
|
|
162
|
+
|
|
163
|
+
if (!quillEditorRef.value) return;
|
|
164
|
+
|
|
165
|
+
const quill = quillEditorRef.value.getQuill();
|
|
166
|
+
if (!quill) return;
|
|
167
|
+
|
|
168
|
+
const fieldName = props.item.data.fieldName;
|
|
169
|
+
const htmlContent = quill.root.innerHTML;
|
|
170
|
+
props.data[fieldName] = htmlContent;
|
|
64
171
|
};
|
|
65
|
-
|
|
66
|
-
//
|
|
67
|
-
watch(
|
|
68
|
-
|
|
69
|
-
|
|
172
|
+
|
|
173
|
+
// 监听外部数据变化(父组件更新时)
|
|
174
|
+
watch(
|
|
175
|
+
() => props.data[props.item.data.fieldName],
|
|
176
|
+
(newValue) => {
|
|
177
|
+
// 避免循环更新
|
|
178
|
+
if (!isEditorReady.value) return;
|
|
179
|
+
|
|
180
|
+
// 转换为内部表示
|
|
181
|
+
let newInternalValue: string | Delta | null = null;
|
|
182
|
+
|
|
183
|
+
if (newValue === undefined || newValue === null || newValue === "") {
|
|
184
|
+
newInternalValue = props.item.data.default || "";
|
|
185
|
+
} else if (
|
|
186
|
+
newValue &&
|
|
187
|
+
typeof newValue === "object" &&
|
|
188
|
+
Array.isArray(newValue.ops)
|
|
189
|
+
) {
|
|
190
|
+
// Delta 对象
|
|
191
|
+
newInternalValue = newValue;
|
|
192
|
+
} else if (typeof newValue === "string") {
|
|
193
|
+
// 字符串(可能是 HTML 或 JSON 字符串)
|
|
194
|
+
if (newValue.trim().startsWith("{") || newValue.trim().startsWith("[")) {
|
|
195
|
+
try {
|
|
196
|
+
const parsed = JSON.parse(newValue);
|
|
197
|
+
if (parsed && Array.isArray(parsed.ops)) {
|
|
198
|
+
newInternalValue = parsed;
|
|
199
|
+
} else {
|
|
200
|
+
newInternalValue = newValue;
|
|
201
|
+
}
|
|
202
|
+
} catch {
|
|
203
|
+
newInternalValue = newValue;
|
|
204
|
+
}
|
|
205
|
+
} else {
|
|
206
|
+
newInternalValue = newValue;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
// 只有值真正变化时才更新
|
|
210
|
+
if (JSON.stringify(newInternalValue) !== JSON.stringify(internalContent.value)) {
|
|
211
|
+
internalContent.value = newInternalValue;
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
{ immediate: true }
|
|
215
|
+
);
|
|
216
|
+
|
|
217
|
+
// 监听编辑器就绪状态
|
|
218
|
+
watch(isEditorReady, (ready) => {
|
|
219
|
+
if (ready) {
|
|
220
|
+
nextTick(() => {
|
|
221
|
+
initContentFromProps();
|
|
222
|
+
});
|
|
70
223
|
}
|
|
71
224
|
});
|
|
72
|
-
|
|
225
|
+
|
|
73
226
|
return {
|
|
74
|
-
content,
|
|
227
|
+
content: internalContent,
|
|
75
228
|
quillEditorRef,
|
|
76
229
|
handleContentChange,
|
|
77
|
-
|
|
230
|
+
onEditorReady,
|
|
231
|
+
toolbarOptions,
|
|
232
|
+
isReadonly,
|
|
78
233
|
};
|
|
79
234
|
},
|
|
80
235
|
});
|
|
@@ -87,11 +242,9 @@ export default defineComponent({
|
|
|
87
242
|
z-index: 1;
|
|
88
243
|
}
|
|
89
244
|
|
|
90
|
-
// 确保编辑器层级
|
|
91
245
|
:deep(.editor-content) {
|
|
92
246
|
min-height: 200px;
|
|
93
|
-
|
|
94
|
-
// 确保工具栏正常显示
|
|
247
|
+
|
|
95
248
|
.ql-toolbar {
|
|
96
249
|
z-index: 100;
|
|
97
250
|
background: white;
|
|
@@ -100,7 +253,7 @@ export default defineComponent({
|
|
|
100
253
|
border-top-right-radius: 4px;
|
|
101
254
|
position: relative;
|
|
102
255
|
}
|
|
103
|
-
|
|
256
|
+
|
|
104
257
|
.ql-container {
|
|
105
258
|
border: 1px solid #ccc;
|
|
106
259
|
border-top: none;
|
|
@@ -111,7 +264,6 @@ export default defineComponent({
|
|
|
111
264
|
}
|
|
112
265
|
}
|
|
113
266
|
|
|
114
|
-
// 防止拖拽区域覆盖编辑器
|
|
115
267
|
:deep(.shape) {
|
|
116
268
|
.rich-text-editor {
|
|
117
269
|
pointer-events: auto !important;
|
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":"1d644f62-1"},{"name":"main-a9ce8be4.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":"1d644f62-3","name":"fieldConfig.ts"},{"uid":"1d644f62-5","name":"fieldProps.ts"},{"uid":"1d644f62-23","name":"customHooks.ts"}]},{"name":"common","children":[{"uid":"1d644f62-9","name":"KeyValueConfig.vue"},{"uid":"1d644f62-11","name":"KeyValueConfigMult.vue"},{"uid":"1d644f62-13","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"1d644f62-15","name":"Loading.vue"},{"uid":"1d644f62-17","name":"action.vue"},{"uid":"1d644f62-19","name":"listConfig.vue"},{"uid":"1d644f62-21","name":"panel.vue"},{"uid":"1d644f62-25","name":"radiogroup.vue"}]},{"name":"components","children":[{"name":"CheckBox/index.vue","uid":"1d644f62-27"},{"name":"ColorSelect","children":[{"uid":"1d644f62-29","name":"index.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"1d644f62-31","name":"index.vue"}]},{"name":"Date/index.vue","uid":"1d644f62-33"},{"name":"DateTime/index.vue","uid":"1d644f62-35"},{"name":"InputNumber/index.vue","uid":"1d644f62-37"},{"name":"Radio/index.vue","uid":"1d644f62-39"},{"name":"Rule","children":[{"uid":"1d644f62-41","name":"ruleform.json"},{"uid":"1d644f62-43","name":"rules.js"}]},{"name":"Selected/index.vue","uid":"1d644f62-45"},{"name":"Selecteds/index.vue","uid":"1d644f62-47"},{"name":"ShowRule/index.vue","uid":"1d644f62-49"},{"name":"Slider/index.vue","uid":"1d644f62-51"},{"name":"Switch/index.vue","uid":"1d644f62-53"},{"name":"Text/index.vue","uid":"1d644f62-55"},{"name":"TextArea/index.vue","uid":"1d644f62-57"},{"name":"Time/index.vue","uid":"1d644f62-59"}]},{"name":"layout","children":[{"uid":"1d644f62-61","name":"Divider.vue"},{"uid":"1d644f62-63","name":"Info.vue"},{"uid":"1d644f62-65","name":"Tabs.vue"},{"uid":"1d644f62-67","name":"collapse.vue"},{"uid":"1d644f62-69","name":"grid.vue"},{"uid":"1d644f62-71","name":"table.vue"}]},{"name":"styles/index.scss","uid":"1d644f62-73"},{"uid":"1d644f62-86","name":"main.ts"}]},{"name":"editor/src","children":[{"name":"controller","children":[{"uid":"1d644f62-77","name":"history.ts"},{"uid":"1d644f62-79","name":"form.ts"}]},{"name":"utils/_.ts","uid":"1d644f62-81"},{"name":"common","children":[{"uid":"1d644f62-83","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"1d644f62-85","name":"Loading.vue"}]}]}]},{"name":"node_modules/.pnpm/nanoid@4.0.2/node_modules/nanoid/index.browser.js","uid":"1d644f62-75"}]},{"uid":"1d644f62-7","name":"plugin-vue:export-helper"}]},{"name":"index-8980a82d.mjs","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/RichText","children":[{"uid":"1d644f62-88","name":"index.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"1d644f62-90","name":"index.vue"}]}]},{"name":"index-bf109006.mjs","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","uid":"1d644f62-92"}]},{"name":"formAction-003dce29.mjs","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common","children":[{"uid":"1d644f62-94","name":"formAction.vue?vue&type=style&index=0&lang.scss"},{"uid":"1d644f62-96","name":"formAction.vue"}]}]},{"name":"index-ffe5a532.mjs","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Rule","children":[{"uid":"1d644f62-98","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"1d644f62-100","name":"index.vue"}]}]},{"name":"starfish-form-dfa363ef.mjs","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","uid":"1d644f62-102"}]}],"isRoot":true},"nodeParts":{"1d644f62-1":{"id":"starfish-form.mjs","gzipLength":0,"brotliLength":0,"renderedLength":1902,"metaUid":"1d644f62-0"},"1d644f62-3":{"renderedLength":18542,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-2"},"1d644f62-5":{"renderedLength":681,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-4"},"1d644f62-7":{"renderedLength":159,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-6"},"1d644f62-9":{"renderedLength":8553,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-8"},"1d644f62-11":{"renderedLength":8386,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-10"},"1d644f62-13":{"renderedLength":103,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-12"},"1d644f62-15":{"renderedLength":405,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-14"},"1d644f62-17":{"renderedLength":8484,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-16"},"1d644f62-19":{"renderedLength":3246,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-18"},"1d644f62-21":{"renderedLength":5328,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-20"},"1d644f62-23":{"renderedLength":482,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-22"},"1d644f62-25":{"renderedLength":2209,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-24"},"1d644f62-27":{"renderedLength":5439,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-26"},"1d644f62-29":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-28"},"1d644f62-31":{"renderedLength":3717,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-30"},"1d644f62-33":{"renderedLength":5563,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-32"},"1d644f62-35":{"renderedLength":4809,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-34"},"1d644f62-37":{"renderedLength":4772,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-36"},"1d644f62-39":{"renderedLength":5147,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-38"},"1d644f62-41":{"renderedLength":5040,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-40"},"1d644f62-43":{"renderedLength":2633,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-42"},"1d644f62-45":{"renderedLength":5365,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-44"},"1d644f62-47":{"renderedLength":5377,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-46"},"1d644f62-49":{"renderedLength":4066,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-48"},"1d644f62-51":{"renderedLength":2925,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-50"},"1d644f62-53":{"renderedLength":3362,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-52"},"1d644f62-55":{"renderedLength":4735,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-54"},"1d644f62-57":{"renderedLength":4541,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-56"},"1d644f62-59":{"renderedLength":3221,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-58"},"1d644f62-61":{"renderedLength":1315,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-60"},"1d644f62-63":{"renderedLength":2984,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-62"},"1d644f62-65":{"renderedLength":5888,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-64"},"1d644f62-67":{"renderedLength":6238,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-66"},"1d644f62-69":{"renderedLength":6689,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-68"},"1d644f62-71":{"renderedLength":6149,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-70"},"1d644f62-73":{"renderedLength":17,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-72"},"1d644f62-75":{"renderedLength":350,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-74"},"1d644f62-77":{"renderedLength":1613,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-76"},"1d644f62-79":{"renderedLength":6014,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-78"},"1d644f62-81":{"renderedLength":11658,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-80"},"1d644f62-83":{"renderedLength":101,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-82"},"1d644f62-85":{"renderedLength":391,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-84"},"1d644f62-86":{"renderedLength":2981,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-0"},"1d644f62-88":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-87"},"1d644f62-90":{"renderedLength":3378,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-89"},"1d644f62-92":{"renderedLength":6608,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-91"},"1d644f62-94":{"renderedLength":92,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-93"},"1d644f62-96":{"renderedLength":16981,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-95"},"1d644f62-98":{"renderedLength":87,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-97"},"1d644f62-100":{"renderedLength":17071,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-99"},"1d644f62-102":{"renderedLength":9949,"gzipLength":0,"brotliLength":0,"metaUid":"1d644f62-101"}},"nodeMetas":{"1d644f62-0":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/main.ts","moduleParts":{"starfish-form.mjs":"1d644f62-1","main-a9ce8be4.mjs":"1d644f62-86"},"imported":[{"uid":"1d644f62-8"},{"uid":"1d644f62-10"},{"uid":"1d644f62-14"},{"uid":"1d644f62-16"},{"uid":"1d644f62-18"},{"uid":"1d644f62-20"},{"uid":"1d644f62-24"},{"uid":"1d644f62-26"},{"uid":"1d644f62-30"},{"uid":"1d644f62-32"},{"uid":"1d644f62-34"},{"uid":"1d644f62-36"},{"uid":"1d644f62-38"},{"uid":"1d644f62-40"},{"uid":"1d644f62-42"},{"uid":"1d644f62-44"},{"uid":"1d644f62-46"},{"uid":"1d644f62-48"},{"uid":"1d644f62-50"},{"uid":"1d644f62-52"},{"uid":"1d644f62-54"},{"uid":"1d644f62-56"},{"uid":"1d644f62-58"},{"uid":"1d644f62-60"},{"uid":"1d644f62-62"},{"uid":"1d644f62-64"},{"uid":"1d644f62-66"},{"uid":"1d644f62-68"},{"uid":"1d644f62-70"},{"uid":"1d644f62-103"},{"uid":"1d644f62-72"},{"uid":"1d644f62-2"},{"uid":"1d644f62-80"},{"uid":"1d644f62-84"},{"uid":"1d644f62-89","dynamic":true},{"uid":"1d644f62-91","dynamic":true},{"uid":"1d644f62-95","dynamic":true},{"uid":"1d644f62-99","dynamic":true},{"uid":"1d644f62-101","dynamic":true}],"importedBy":[],"isEntry":true},"1d644f62-2":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/utils/fieldConfig.ts","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-3"},"imported":[],"importedBy":[{"uid":"1d644f62-0"},{"uid":"1d644f62-8"},{"uid":"1d644f62-10"},{"uid":"1d644f62-26"},{"uid":"1d644f62-30"},{"uid":"1d644f62-32"},{"uid":"1d644f62-34"},{"uid":"1d644f62-36"},{"uid":"1d644f62-38"},{"uid":"1d644f62-44"},{"uid":"1d644f62-46"},{"uid":"1d644f62-50"},{"uid":"1d644f62-52"},{"uid":"1d644f62-54"},{"uid":"1d644f62-56"},{"uid":"1d644f62-58"},{"uid":"1d644f62-60"},{"uid":"1d644f62-62"},{"uid":"1d644f62-64"},{"uid":"1d644f62-66"},{"uid":"1d644f62-68"},{"uid":"1d644f62-70"},{"uid":"1d644f62-89"},{"uid":"1d644f62-91"}]},"1d644f62-4":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/utils/fieldProps.ts","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-5"},"imported":[],"importedBy":[{"uid":"1d644f62-8"},{"uid":"1d644f62-10"},{"uid":"1d644f62-16"},{"uid":"1d644f62-18"},{"uid":"1d644f62-20"},{"uid":"1d644f62-24"},{"uid":"1d644f62-26"},{"uid":"1d644f62-30"},{"uid":"1d644f62-32"},{"uid":"1d644f62-34"},{"uid":"1d644f62-36"},{"uid":"1d644f62-38"},{"uid":"1d644f62-44"},{"uid":"1d644f62-46"},{"uid":"1d644f62-48"},{"uid":"1d644f62-50"},{"uid":"1d644f62-52"},{"uid":"1d644f62-54"},{"uid":"1d644f62-56"},{"uid":"1d644f62-58"},{"uid":"1d644f62-60"},{"uid":"1d644f62-62"},{"uid":"1d644f62-64"},{"uid":"1d644f62-66"},{"uid":"1d644f62-68"},{"uid":"1d644f62-70"},{"uid":"1d644f62-89"},{"uid":"1d644f62-91"},{"uid":"1d644f62-99"}]},"1d644f62-6":{"id":"plugin-vue:export-helper","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-7"},"imported":[],"importedBy":[{"uid":"1d644f62-8"},{"uid":"1d644f62-10"},{"uid":"1d644f62-14"},{"uid":"1d644f62-16"},{"uid":"1d644f62-18"},{"uid":"1d644f62-20"},{"uid":"1d644f62-24"},{"uid":"1d644f62-26"},{"uid":"1d644f62-30"},{"uid":"1d644f62-32"},{"uid":"1d644f62-34"},{"uid":"1d644f62-36"},{"uid":"1d644f62-38"},{"uid":"1d644f62-44"},{"uid":"1d644f62-46"},{"uid":"1d644f62-48"},{"uid":"1d644f62-50"},{"uid":"1d644f62-52"},{"uid":"1d644f62-54"},{"uid":"1d644f62-56"},{"uid":"1d644f62-58"},{"uid":"1d644f62-60"},{"uid":"1d644f62-62"},{"uid":"1d644f62-64"},{"uid":"1d644f62-66"},{"uid":"1d644f62-68"},{"uid":"1d644f62-70"},{"uid":"1d644f62-84"},{"uid":"1d644f62-89"},{"uid":"1d644f62-91"},{"uid":"1d644f62-95"},{"uid":"1d644f62-99"},{"uid":"1d644f62-101"}]},"1d644f62-8":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfig.vue","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-9"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-106"},{"uid":"1d644f62-107"},{"uid":"1d644f62-108"},{"uid":"1d644f62-109"},{"uid":"1d644f62-103"},{"uid":"1d644f62-110"},{"uid":"1d644f62-2"},{"uid":"1d644f62-4"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-10":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfigMult.vue","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-11"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-106"},{"uid":"1d644f62-107"},{"uid":"1d644f62-108"},{"uid":"1d644f62-109"},{"uid":"1d644f62-103"},{"uid":"1d644f62-110"},{"uid":"1d644f62-2"},{"uid":"1d644f62-4"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-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-a9ce8be4.mjs":"1d644f62-13"},"imported":[],"importedBy":[{"uid":"1d644f62-14"}]},"1d644f62-14":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/Loading.vue","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-15"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-111"},{"uid":"1d644f62-103"},{"uid":"1d644f62-12"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-16":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/action.vue","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-17"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-112"},{"uid":"1d644f62-113"},{"uid":"1d644f62-114"},{"uid":"1d644f62-115"},{"uid":"1d644f62-116"},{"uid":"1d644f62-117"},{"uid":"1d644f62-118"},{"uid":"1d644f62-106"},{"uid":"1d644f62-119"},{"uid":"1d644f62-120"},{"uid":"1d644f62-121"},{"uid":"1d644f62-109"},{"uid":"1d644f62-103"},{"uid":"1d644f62-110"},{"uid":"1d644f62-4"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-18":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/listConfig.vue","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-19"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-117"},{"uid":"1d644f62-118"},{"uid":"1d644f62-106"},{"uid":"1d644f62-122"},{"uid":"1d644f62-103"},{"uid":"1d644f62-4"},{"uid":"1d644f62-110"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-20":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/panel.vue","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-21"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-117"},{"uid":"1d644f62-118"},{"uid":"1d644f62-106"},{"uid":"1d644f62-107"},{"uid":"1d644f62-119"},{"uid":"1d644f62-109"},{"uid":"1d644f62-103"},{"uid":"1d644f62-4"},{"uid":"1d644f62-110"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-22":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/utils/customHooks.ts","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-23"},"imported":[{"uid":"1d644f62-103"}],"importedBy":[{"uid":"1d644f62-24"},{"uid":"1d644f62-26"},{"uid":"1d644f62-30"},{"uid":"1d644f62-32"},{"uid":"1d644f62-34"},{"uid":"1d644f62-36"},{"uid":"1d644f62-38"},{"uid":"1d644f62-44"},{"uid":"1d644f62-46"},{"uid":"1d644f62-48"},{"uid":"1d644f62-50"},{"uid":"1d644f62-52"},{"uid":"1d644f62-54"},{"uid":"1d644f62-56"},{"uid":"1d644f62-58"},{"uid":"1d644f62-60"},{"uid":"1d644f62-62"},{"uid":"1d644f62-64"},{"uid":"1d644f62-66"},{"uid":"1d644f62-68"},{"uid":"1d644f62-70"},{"uid":"1d644f62-89"},{"uid":"1d644f62-91"}]},"1d644f62-24":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/radiogroup.vue","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-25"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-123"},{"uid":"1d644f62-124"},{"uid":"1d644f62-109"},{"uid":"1d644f62-103"},{"uid":"1d644f62-4"},{"uid":"1d644f62-22"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-26":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/CheckBox/index.vue","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-27"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-125"},{"uid":"1d644f62-108"},{"uid":"1d644f62-109"},{"uid":"1d644f62-103"},{"uid":"1d644f62-2"},{"uid":"1d644f62-4"},{"uid":"1d644f62-22"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-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-a9ce8be4.mjs":"1d644f62-29"},"imported":[],"importedBy":[{"uid":"1d644f62-30"}]},"1d644f62-30":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/ColorSelect/index.vue","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-31"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-126"},{"uid":"1d644f62-107"},{"uid":"1d644f62-109"},{"uid":"1d644f62-103"},{"uid":"1d644f62-2"},{"uid":"1d644f62-4"},{"uid":"1d644f62-22"},{"uid":"1d644f62-28"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-32":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Date/index.vue","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-33"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-127"},{"uid":"1d644f62-109"},{"uid":"1d644f62-103"},{"uid":"1d644f62-2"},{"uid":"1d644f62-4"},{"uid":"1d644f62-22"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-34":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/DateTime/index.vue","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-35"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-127"},{"uid":"1d644f62-109"},{"uid":"1d644f62-103"},{"uid":"1d644f62-2"},{"uid":"1d644f62-4"},{"uid":"1d644f62-22"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-36":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/InputNumber/index.vue","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-37"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-122"},{"uid":"1d644f62-109"},{"uid":"1d644f62-103"},{"uid":"1d644f62-2"},{"uid":"1d644f62-4"},{"uid":"1d644f62-22"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-38":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Radio/index.vue","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-39"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-123"},{"uid":"1d644f62-128"},{"uid":"1d644f62-109"},{"uid":"1d644f62-103"},{"uid":"1d644f62-2"},{"uid":"1d644f62-4"},{"uid":"1d644f62-22"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-40":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Rule/ruleform.json","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-41"},"imported":[],"importedBy":[{"uid":"1d644f62-0"},{"uid":"1d644f62-99"}]},"1d644f62-42":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Rule/rules.js","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-43"},"imported":[],"importedBy":[{"uid":"1d644f62-0"},{"uid":"1d644f62-99"}]},"1d644f62-44":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Selected/index.vue","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-45"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-120"},{"uid":"1d644f62-121"},{"uid":"1d644f62-109"},{"uid":"1d644f62-103"},{"uid":"1d644f62-2"},{"uid":"1d644f62-4"},{"uid":"1d644f62-22"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-46":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Selecteds/index.vue","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-47"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-120"},{"uid":"1d644f62-121"},{"uid":"1d644f62-109"},{"uid":"1d644f62-103"},{"uid":"1d644f62-2"},{"uid":"1d644f62-4"},{"uid":"1d644f62-22"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-48":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/ShowRule/index.vue","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-49"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-118"},{"uid":"1d644f62-109"},{"uid":"1d644f62-103"},{"uid":"1d644f62-4"},{"uid":"1d644f62-22"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-50":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Slider/index.vue","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-51"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-129"},{"uid":"1d644f62-109"},{"uid":"1d644f62-103"},{"uid":"1d644f62-2"},{"uid":"1d644f62-4"},{"uid":"1d644f62-22"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-52":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Switch/index.vue","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-53"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-130"},{"uid":"1d644f62-109"},{"uid":"1d644f62-103"},{"uid":"1d644f62-2"},{"uid":"1d644f62-4"},{"uid":"1d644f62-22"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-54":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Text/index.vue","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-55"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-107"},{"uid":"1d644f62-109"},{"uid":"1d644f62-103"},{"uid":"1d644f62-2"},{"uid":"1d644f62-4"},{"uid":"1d644f62-22"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-56":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/TextArea/index.vue","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-57"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-107"},{"uid":"1d644f62-109"},{"uid":"1d644f62-103"},{"uid":"1d644f62-2"},{"uid":"1d644f62-4"},{"uid":"1d644f62-22"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-58":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Time/index.vue","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-59"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-131"},{"uid":"1d644f62-109"},{"uid":"1d644f62-103"},{"uid":"1d644f62-4"},{"uid":"1d644f62-2"},{"uid":"1d644f62-22"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-60":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/Divider.vue","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-61"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-132"},{"uid":"1d644f62-103"},{"uid":"1d644f62-2"},{"uid":"1d644f62-4"},{"uid":"1d644f62-22"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-62":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/Info.vue","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-63"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-133"},{"uid":"1d644f62-109"},{"uid":"1d644f62-103"},{"uid":"1d644f62-2"},{"uid":"1d644f62-4"},{"uid":"1d644f62-22"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-64":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/Tabs.vue","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-65"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-134"},{"uid":"1d644f62-135"},{"uid":"1d644f62-136"},{"uid":"1d644f62-103"},{"uid":"1d644f62-2"},{"uid":"1d644f62-4"},{"uid":"1d644f62-22"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-66":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/collapse.vue","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-67"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-115"},{"uid":"1d644f62-116"},{"uid":"1d644f62-136"},{"uid":"1d644f62-103"},{"uid":"1d644f62-2"},{"uid":"1d644f62-4"},{"uid":"1d644f62-22"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-68":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/grid.vue","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-69"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-117"},{"uid":"1d644f62-136"},{"uid":"1d644f62-119"},{"uid":"1d644f62-103"},{"uid":"1d644f62-2"},{"uid":"1d644f62-4"},{"uid":"1d644f62-22"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-70":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/table.vue","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-71"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-136"},{"uid":"1d644f62-103"},{"uid":"1d644f62-2"},{"uid":"1d644f62-4"},{"uid":"1d644f62-22"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-72":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/styles/index.scss","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-73"},"imported":[],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-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-a9ce8be4.mjs":"1d644f62-75"},"imported":[{"uid":"1d644f62-148"}],"importedBy":[{"uid":"1d644f62-80"}]},"1d644f62-76":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/controller/history.ts","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-77"},"imported":[{"uid":"1d644f62-103"},{"uid":"1d644f62-78"}],"importedBy":[{"uid":"1d644f62-78"}]},"1d644f62-78":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/controller/form.ts","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-79"},"imported":[{"uid":"1d644f62-103"},{"uid":"1d644f62-76"}],"importedBy":[{"uid":"1d644f62-80"},{"uid":"1d644f62-76"}]},"1d644f62-80":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/utils/_.ts","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-81"},"imported":[{"uid":"1d644f62-137"},{"uid":"1d644f62-74"},{"uid":"1d644f62-78"}],"importedBy":[{"uid":"1d644f62-0"},{"uid":"1d644f62-91"},{"uid":"1d644f62-99"}]},"1d644f62-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-a9ce8be4.mjs":"1d644f62-83"},"imported":[],"importedBy":[{"uid":"1d644f62-84"}]},"1d644f62-84":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue","moduleParts":{"main-a9ce8be4.mjs":"1d644f62-85"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-111"},{"uid":"1d644f62-103"},{"uid":"1d644f62-82"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-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-8980a82d.mjs":"1d644f62-88"},"imported":[],"importedBy":[{"uid":"1d644f62-89"}]},"1d644f62-89":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/RichText/index.vue","moduleParts":{"index-8980a82d.mjs":"1d644f62-90"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-109"},{"uid":"1d644f62-103"},{"uid":"1d644f62-138"},{"uid":"1d644f62-139"},{"uid":"1d644f62-2"},{"uid":"1d644f62-4"},{"uid":"1d644f62-22"},{"uid":"1d644f62-87"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-91":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","moduleParts":{"index-bf109006.mjs":"1d644f62-92"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-140"},{"uid":"1d644f62-141"},{"uid":"1d644f62-118"},{"uid":"1d644f62-142"},{"uid":"1d644f62-109"},{"uid":"1d644f62-103"},{"uid":"1d644f62-2"},{"uid":"1d644f62-4"},{"uid":"1d644f62-22"},{"uid":"1d644f62-143"},{"uid":"1d644f62-80"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-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-003dce29.mjs":"1d644f62-94"},"imported":[],"importedBy":[{"uid":"1d644f62-95"}]},"1d644f62-95":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/formAction.vue","moduleParts":{"formAction-003dce29.mjs":"1d644f62-96"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-144"},{"uid":"1d644f62-136"},{"uid":"1d644f62-107"},{"uid":"1d644f62-145"},{"uid":"1d644f62-140"},{"uid":"1d644f62-142"},{"uid":"1d644f62-146"},{"uid":"1d644f62-118"},{"uid":"1d644f62-109"},{"uid":"1d644f62-103"},{"uid":"1d644f62-147"},{"uid":"1d644f62-93"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-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-ffe5a532.mjs":"1d644f62-98"},"imported":[],"importedBy":[{"uid":"1d644f62-99"}]},"1d644f62-99":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Rule/index.vue","moduleParts":{"index-ffe5a532.mjs":"1d644f62-100"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-140"},{"uid":"1d644f62-142"},{"uid":"1d644f62-141"},{"uid":"1d644f62-133"},{"uid":"1d644f62-106"},{"uid":"1d644f62-120"},{"uid":"1d644f62-121"},{"uid":"1d644f62-112"},{"uid":"1d644f62-113"},{"uid":"1d644f62-114"},{"uid":"1d644f62-118"},{"uid":"1d644f62-109"},{"uid":"1d644f62-103"},{"uid":"1d644f62-4"},{"uid":"1d644f62-80"},{"uid":"1d644f62-42"},{"uid":"1d644f62-40"},{"uid":"1d644f62-110"},{"uid":"1d644f62-101"},{"uid":"1d644f62-147"},{"uid":"1d644f62-97"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"}]},"1d644f62-101":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","moduleParts":{"starfish-form-dfa363ef.mjs":"1d644f62-102"},"imported":[{"uid":"1d644f62-104"},{"uid":"1d644f62-105"},{"uid":"1d644f62-144"},{"uid":"1d644f62-136"},{"uid":"1d644f62-103"},{"uid":"1d644f62-6"}],"importedBy":[{"uid":"1d644f62-0"},{"uid":"1d644f62-99"}]},"1d644f62-103":{"id":"vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-0"},{"uid":"1d644f62-8"},{"uid":"1d644f62-10"},{"uid":"1d644f62-14"},{"uid":"1d644f62-16"},{"uid":"1d644f62-18"},{"uid":"1d644f62-20"},{"uid":"1d644f62-24"},{"uid":"1d644f62-26"},{"uid":"1d644f62-30"},{"uid":"1d644f62-32"},{"uid":"1d644f62-34"},{"uid":"1d644f62-36"},{"uid":"1d644f62-38"},{"uid":"1d644f62-44"},{"uid":"1d644f62-46"},{"uid":"1d644f62-48"},{"uid":"1d644f62-50"},{"uid":"1d644f62-52"},{"uid":"1d644f62-54"},{"uid":"1d644f62-56"},{"uid":"1d644f62-58"},{"uid":"1d644f62-60"},{"uid":"1d644f62-62"},{"uid":"1d644f62-64"},{"uid":"1d644f62-66"},{"uid":"1d644f62-68"},{"uid":"1d644f62-70"},{"uid":"1d644f62-84"},{"uid":"1d644f62-89"},{"uid":"1d644f62-91"},{"uid":"1d644f62-95"},{"uid":"1d644f62-99"},{"uid":"1d644f62-101"},{"uid":"1d644f62-22"},{"uid":"1d644f62-78"},{"uid":"1d644f62-76"}],"isExternal":true},"1d644f62-104":{"id":"element-plus/es","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-8"},{"uid":"1d644f62-10"},{"uid":"1d644f62-14"},{"uid":"1d644f62-16"},{"uid":"1d644f62-18"},{"uid":"1d644f62-20"},{"uid":"1d644f62-24"},{"uid":"1d644f62-26"},{"uid":"1d644f62-30"},{"uid":"1d644f62-32"},{"uid":"1d644f62-34"},{"uid":"1d644f62-36"},{"uid":"1d644f62-38"},{"uid":"1d644f62-44"},{"uid":"1d644f62-46"},{"uid":"1d644f62-48"},{"uid":"1d644f62-50"},{"uid":"1d644f62-52"},{"uid":"1d644f62-54"},{"uid":"1d644f62-56"},{"uid":"1d644f62-58"},{"uid":"1d644f62-60"},{"uid":"1d644f62-62"},{"uid":"1d644f62-64"},{"uid":"1d644f62-66"},{"uid":"1d644f62-68"},{"uid":"1d644f62-70"},{"uid":"1d644f62-84"},{"uid":"1d644f62-89"},{"uid":"1d644f62-91"},{"uid":"1d644f62-95"},{"uid":"1d644f62-99"},{"uid":"1d644f62-101"}],"isExternal":true},"1d644f62-105":{"id":"element-plus/es/components/base/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-8"},{"uid":"1d644f62-10"},{"uid":"1d644f62-14"},{"uid":"1d644f62-16"},{"uid":"1d644f62-18"},{"uid":"1d644f62-20"},{"uid":"1d644f62-24"},{"uid":"1d644f62-26"},{"uid":"1d644f62-30"},{"uid":"1d644f62-32"},{"uid":"1d644f62-34"},{"uid":"1d644f62-36"},{"uid":"1d644f62-38"},{"uid":"1d644f62-44"},{"uid":"1d644f62-46"},{"uid":"1d644f62-48"},{"uid":"1d644f62-50"},{"uid":"1d644f62-52"},{"uid":"1d644f62-54"},{"uid":"1d644f62-56"},{"uid":"1d644f62-58"},{"uid":"1d644f62-60"},{"uid":"1d644f62-62"},{"uid":"1d644f62-64"},{"uid":"1d644f62-66"},{"uid":"1d644f62-68"},{"uid":"1d644f62-70"},{"uid":"1d644f62-84"},{"uid":"1d644f62-89"},{"uid":"1d644f62-91"},{"uid":"1d644f62-95"},{"uid":"1d644f62-99"},{"uid":"1d644f62-101"}],"isExternal":true},"1d644f62-106":{"id":"element-plus/es/components/icon/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-8"},{"uid":"1d644f62-10"},{"uid":"1d644f62-16"},{"uid":"1d644f62-18"},{"uid":"1d644f62-20"},{"uid":"1d644f62-99"}],"isExternal":true},"1d644f62-107":{"id":"element-plus/es/components/input/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-8"},{"uid":"1d644f62-10"},{"uid":"1d644f62-20"},{"uid":"1d644f62-30"},{"uid":"1d644f62-54"},{"uid":"1d644f62-56"},{"uid":"1d644f62-95"}],"isExternal":true},"1d644f62-108":{"id":"element-plus/es/components/checkbox/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-8"},{"uid":"1d644f62-10"},{"uid":"1d644f62-26"}],"isExternal":true},"1d644f62-109":{"id":"element-plus/es/components/tooltip/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-8"},{"uid":"1d644f62-10"},{"uid":"1d644f62-16"},{"uid":"1d644f62-20"},{"uid":"1d644f62-24"},{"uid":"1d644f62-26"},{"uid":"1d644f62-30"},{"uid":"1d644f62-32"},{"uid":"1d644f62-34"},{"uid":"1d644f62-36"},{"uid":"1d644f62-38"},{"uid":"1d644f62-44"},{"uid":"1d644f62-46"},{"uid":"1d644f62-48"},{"uid":"1d644f62-50"},{"uid":"1d644f62-52"},{"uid":"1d644f62-54"},{"uid":"1d644f62-56"},{"uid":"1d644f62-58"},{"uid":"1d644f62-62"},{"uid":"1d644f62-89"},{"uid":"1d644f62-91"},{"uid":"1d644f62-95"},{"uid":"1d644f62-99"}],"isExternal":true},"1d644f62-110":{"id":"@element-plus/icons-vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-8"},{"uid":"1d644f62-10"},{"uid":"1d644f62-16"},{"uid":"1d644f62-18"},{"uid":"1d644f62-20"},{"uid":"1d644f62-99"}],"isExternal":true},"1d644f62-111":{"id":"element-plus/es/components/loading/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-14"},{"uid":"1d644f62-84"}],"isExternal":true},"1d644f62-112":{"id":"element-plus/es/components/dropdown/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-16"},{"uid":"1d644f62-99"}],"isExternal":true},"1d644f62-113":{"id":"element-plus/es/components/dropdown-menu/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-16"},{"uid":"1d644f62-99"}],"isExternal":true},"1d644f62-114":{"id":"element-plus/es/components/dropdown-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-16"},{"uid":"1d644f62-99"}],"isExternal":true},"1d644f62-115":{"id":"element-plus/es/components/collapse/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-16"},{"uid":"1d644f62-66"}],"isExternal":true},"1d644f62-116":{"id":"element-plus/es/components/collapse-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-16"},{"uid":"1d644f62-66"}],"isExternal":true},"1d644f62-117":{"id":"element-plus/es/components/row/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-16"},{"uid":"1d644f62-18"},{"uid":"1d644f62-20"},{"uid":"1d644f62-68"}],"isExternal":true},"1d644f62-118":{"id":"element-plus/es/components/button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-16"},{"uid":"1d644f62-18"},{"uid":"1d644f62-20"},{"uid":"1d644f62-48"},{"uid":"1d644f62-91"},{"uid":"1d644f62-95"},{"uid":"1d644f62-99"}],"isExternal":true},"1d644f62-119":{"id":"element-plus/es/components/col/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-16"},{"uid":"1d644f62-20"},{"uid":"1d644f62-68"}],"isExternal":true},"1d644f62-120":{"id":"element-plus/es/components/select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-16"},{"uid":"1d644f62-44"},{"uid":"1d644f62-46"},{"uid":"1d644f62-99"}],"isExternal":true},"1d644f62-121":{"id":"element-plus/es/components/option/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-16"},{"uid":"1d644f62-44"},{"uid":"1d644f62-46"},{"uid":"1d644f62-99"}],"isExternal":true},"1d644f62-122":{"id":"element-plus/es/components/input-number/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-18"},{"uid":"1d644f62-36"}],"isExternal":true},"1d644f62-123":{"id":"element-plus/es/components/radio-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-24"},{"uid":"1d644f62-38"}],"isExternal":true},"1d644f62-124":{"id":"element-plus/es/components/radio-button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-24"}],"isExternal":true},"1d644f62-125":{"id":"element-plus/es/components/checkbox-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-26"}],"isExternal":true},"1d644f62-126":{"id":"element-plus/es/components/color-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-30"}],"isExternal":true},"1d644f62-127":{"id":"element-plus/es/components/date-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-32"},{"uid":"1d644f62-34"}],"isExternal":true},"1d644f62-128":{"id":"element-plus/es/components/radio/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-38"}],"isExternal":true},"1d644f62-129":{"id":"element-plus/es/components/slider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-50"}],"isExternal":true},"1d644f62-130":{"id":"element-plus/es/components/switch/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-52"}],"isExternal":true},"1d644f62-131":{"id":"element-plus/es/components/time-select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-58"}],"isExternal":true},"1d644f62-132":{"id":"element-plus/es/components/divider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-60"}],"isExternal":true},"1d644f62-133":{"id":"element-plus/es/components/alert/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-62"},{"uid":"1d644f62-99"}],"isExternal":true},"1d644f62-134":{"id":"element-plus/es/components/tabs/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-64"}],"isExternal":true},"1d644f62-135":{"id":"element-plus/es/components/tab-pane/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-64"}],"isExternal":true},"1d644f62-136":{"id":"element-plus/es/components/form-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-64"},{"uid":"1d644f62-66"},{"uid":"1d644f62-68"},{"uid":"1d644f62-70"},{"uid":"1d644f62-95"},{"uid":"1d644f62-101"}],"isExternal":true},"1d644f62-137":{"id":"element-plus","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-80"}],"isExternal":true},"1d644f62-138":{"id":"@vueup/vue-quill","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-89"}],"isExternal":true},"1d644f62-139":{"id":"@vueup/vue-quill/dist/vue-quill.snow.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-89"}],"isExternal":true},"1d644f62-140":{"id":"element-plus/es/components/container/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-91"},{"uid":"1d644f62-95"},{"uid":"1d644f62-99"}],"isExternal":true},"1d644f62-141":{"id":"element-plus/es/components/footer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-91"},{"uid":"1d644f62-99"}],"isExternal":true},"1d644f62-142":{"id":"element-plus/es/components/main/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-91"},{"uid":"1d644f62-95"},{"uid":"1d644f62-99"}],"isExternal":true},"1d644f62-143":{"id":"jsoneditor","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-91"}],"isExternal":true},"1d644f62-144":{"id":"element-plus/es/components/form/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-95"},{"uid":"1d644f62-101"}],"isExternal":true},"1d644f62-145":{"id":"element-plus/es/components/aside/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-95"}],"isExternal":true},"1d644f62-146":{"id":"element-plus/es/components/scrollbar/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-95"}],"isExternal":true},"1d644f62-147":{"id":"vue-codemirror","moduleParts":{},"imported":[],"importedBy":[{"uid":"1d644f62-95"},{"uid":"1d644f62-99"}],"isExternal":true},"1d644f62-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":"1d644f62-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":"769f3df4-1"},{"name":"main-aab412b3.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":"769f3df4-3","name":"fieldConfig.ts"},{"uid":"769f3df4-5","name":"fieldProps.ts"},{"uid":"769f3df4-23","name":"customHooks.ts"}]},{"name":"common","children":[{"uid":"769f3df4-9","name":"KeyValueConfig.vue"},{"uid":"769f3df4-11","name":"KeyValueConfigMult.vue"},{"uid":"769f3df4-13","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"769f3df4-15","name":"Loading.vue"},{"uid":"769f3df4-17","name":"action.vue"},{"uid":"769f3df4-19","name":"listConfig.vue"},{"uid":"769f3df4-21","name":"panel.vue"},{"uid":"769f3df4-25","name":"radiogroup.vue"}]},{"name":"components","children":[{"name":"CheckBox/index.vue","uid":"769f3df4-27"},{"name":"ColorSelect","children":[{"uid":"769f3df4-29","name":"index.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"769f3df4-31","name":"index.vue"}]},{"name":"Date/index.vue","uid":"769f3df4-33"},{"name":"DateTime/index.vue","uid":"769f3df4-35"},{"name":"InputNumber/index.vue","uid":"769f3df4-37"},{"name":"Radio/index.vue","uid":"769f3df4-39"},{"name":"Rule","children":[{"uid":"769f3df4-41","name":"ruleform.json"},{"uid":"769f3df4-43","name":"rules.js"}]},{"name":"Selected/index.vue","uid":"769f3df4-45"},{"name":"Selecteds/index.vue","uid":"769f3df4-47"},{"name":"ShowRule/index.vue","uid":"769f3df4-49"},{"name":"Slider/index.vue","uid":"769f3df4-51"},{"name":"Switch/index.vue","uid":"769f3df4-53"},{"name":"Text/index.vue","uid":"769f3df4-55"},{"name":"TextArea/index.vue","uid":"769f3df4-57"},{"name":"Time/index.vue","uid":"769f3df4-59"}]},{"name":"layout","children":[{"uid":"769f3df4-61","name":"Divider.vue"},{"uid":"769f3df4-63","name":"Info.vue"},{"uid":"769f3df4-65","name":"Tabs.vue"},{"uid":"769f3df4-67","name":"collapse.vue"},{"uid":"769f3df4-69","name":"grid.vue"},{"uid":"769f3df4-71","name":"table.vue"}]},{"name":"styles/index.scss","uid":"769f3df4-73"},{"uid":"769f3df4-86","name":"main.ts"}]},{"name":"editor/src","children":[{"name":"controller","children":[{"uid":"769f3df4-77","name":"history.ts"},{"uid":"769f3df4-79","name":"form.ts"}]},{"name":"utils/_.ts","uid":"769f3df4-81"},{"name":"common","children":[{"uid":"769f3df4-83","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"769f3df4-85","name":"Loading.vue"}]}]}]},{"name":"node_modules/.pnpm/nanoid@4.0.2/node_modules/nanoid/index.browser.js","uid":"769f3df4-75"}]},{"uid":"769f3df4-7","name":"plugin-vue:export-helper"}]},{"name":"index-5ee7ae61.mjs","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/RichText","children":[{"uid":"769f3df4-88","name":"index.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"769f3df4-90","name":"index.vue"}]}]},{"name":"index-ec5813e3.mjs","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","uid":"769f3df4-92"}]},{"name":"formAction-8f689053.mjs","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common","children":[{"uid":"769f3df4-94","name":"formAction.vue?vue&type=style&index=0&lang.scss"},{"uid":"769f3df4-96","name":"formAction.vue"}]}]},{"name":"index-3c21357b.mjs","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Rule","children":[{"uid":"769f3df4-98","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"769f3df4-100","name":"index.vue"}]}]},{"name":"starfish-form-a750924c.mjs","children":[{"name":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","uid":"769f3df4-102"}]}],"isRoot":true},"nodeParts":{"769f3df4-1":{"id":"starfish-form.mjs","gzipLength":0,"brotliLength":0,"renderedLength":1902,"metaUid":"769f3df4-0"},"769f3df4-3":{"renderedLength":18542,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-2"},"769f3df4-5":{"renderedLength":681,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-4"},"769f3df4-7":{"renderedLength":159,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-6"},"769f3df4-9":{"renderedLength":8553,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-8"},"769f3df4-11":{"renderedLength":8386,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-10"},"769f3df4-13":{"renderedLength":103,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-12"},"769f3df4-15":{"renderedLength":405,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-14"},"769f3df4-17":{"renderedLength":8484,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-16"},"769f3df4-19":{"renderedLength":3246,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-18"},"769f3df4-21":{"renderedLength":5328,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-20"},"769f3df4-23":{"renderedLength":482,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-22"},"769f3df4-25":{"renderedLength":2209,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-24"},"769f3df4-27":{"renderedLength":5439,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-26"},"769f3df4-29":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-28"},"769f3df4-31":{"renderedLength":3717,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-30"},"769f3df4-33":{"renderedLength":5563,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-32"},"769f3df4-35":{"renderedLength":4809,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-34"},"769f3df4-37":{"renderedLength":4772,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-36"},"769f3df4-39":{"renderedLength":5147,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-38"},"769f3df4-41":{"renderedLength":5040,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-40"},"769f3df4-43":{"renderedLength":2633,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-42"},"769f3df4-45":{"renderedLength":5365,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-44"},"769f3df4-47":{"renderedLength":5377,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-46"},"769f3df4-49":{"renderedLength":4066,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-48"},"769f3df4-51":{"renderedLength":2925,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-50"},"769f3df4-53":{"renderedLength":3362,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-52"},"769f3df4-55":{"renderedLength":4735,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-54"},"769f3df4-57":{"renderedLength":4541,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-56"},"769f3df4-59":{"renderedLength":3221,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-58"},"769f3df4-61":{"renderedLength":1315,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-60"},"769f3df4-63":{"renderedLength":2984,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-62"},"769f3df4-65":{"renderedLength":5888,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-64"},"769f3df4-67":{"renderedLength":6238,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-66"},"769f3df4-69":{"renderedLength":6689,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-68"},"769f3df4-71":{"renderedLength":6149,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-70"},"769f3df4-73":{"renderedLength":17,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-72"},"769f3df4-75":{"renderedLength":350,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-74"},"769f3df4-77":{"renderedLength":1613,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-76"},"769f3df4-79":{"renderedLength":6014,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-78"},"769f3df4-81":{"renderedLength":11658,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-80"},"769f3df4-83":{"renderedLength":101,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-82"},"769f3df4-85":{"renderedLength":391,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-84"},"769f3df4-86":{"renderedLength":2981,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-0"},"769f3df4-88":{"renderedLength":99,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-87"},"769f3df4-90":{"renderedLength":6861,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-89"},"769f3df4-92":{"renderedLength":6608,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-91"},"769f3df4-94":{"renderedLength":92,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-93"},"769f3df4-96":{"renderedLength":16981,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-95"},"769f3df4-98":{"renderedLength":87,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-97"},"769f3df4-100":{"renderedLength":17071,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-99"},"769f3df4-102":{"renderedLength":9949,"gzipLength":0,"brotliLength":0,"metaUid":"769f3df4-101"}},"nodeMetas":{"769f3df4-0":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/main.ts","moduleParts":{"starfish-form.mjs":"769f3df4-1","main-aab412b3.mjs":"769f3df4-86"},"imported":[{"uid":"769f3df4-8"},{"uid":"769f3df4-10"},{"uid":"769f3df4-14"},{"uid":"769f3df4-16"},{"uid":"769f3df4-18"},{"uid":"769f3df4-20"},{"uid":"769f3df4-24"},{"uid":"769f3df4-26"},{"uid":"769f3df4-30"},{"uid":"769f3df4-32"},{"uid":"769f3df4-34"},{"uid":"769f3df4-36"},{"uid":"769f3df4-38"},{"uid":"769f3df4-40"},{"uid":"769f3df4-42"},{"uid":"769f3df4-44"},{"uid":"769f3df4-46"},{"uid":"769f3df4-48"},{"uid":"769f3df4-50"},{"uid":"769f3df4-52"},{"uid":"769f3df4-54"},{"uid":"769f3df4-56"},{"uid":"769f3df4-58"},{"uid":"769f3df4-60"},{"uid":"769f3df4-62"},{"uid":"769f3df4-64"},{"uid":"769f3df4-66"},{"uid":"769f3df4-68"},{"uid":"769f3df4-70"},{"uid":"769f3df4-103"},{"uid":"769f3df4-72"},{"uid":"769f3df4-2"},{"uid":"769f3df4-80"},{"uid":"769f3df4-84"},{"uid":"769f3df4-89","dynamic":true},{"uid":"769f3df4-91","dynamic":true},{"uid":"769f3df4-95","dynamic":true},{"uid":"769f3df4-99","dynamic":true},{"uid":"769f3df4-101","dynamic":true}],"importedBy":[],"isEntry":true},"769f3df4-2":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/utils/fieldConfig.ts","moduleParts":{"main-aab412b3.mjs":"769f3df4-3"},"imported":[],"importedBy":[{"uid":"769f3df4-0"},{"uid":"769f3df4-8"},{"uid":"769f3df4-10"},{"uid":"769f3df4-26"},{"uid":"769f3df4-30"},{"uid":"769f3df4-32"},{"uid":"769f3df4-34"},{"uid":"769f3df4-36"},{"uid":"769f3df4-38"},{"uid":"769f3df4-44"},{"uid":"769f3df4-46"},{"uid":"769f3df4-50"},{"uid":"769f3df4-52"},{"uid":"769f3df4-54"},{"uid":"769f3df4-56"},{"uid":"769f3df4-58"},{"uid":"769f3df4-60"},{"uid":"769f3df4-62"},{"uid":"769f3df4-64"},{"uid":"769f3df4-66"},{"uid":"769f3df4-68"},{"uid":"769f3df4-70"},{"uid":"769f3df4-89"},{"uid":"769f3df4-91"}]},"769f3df4-4":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/utils/fieldProps.ts","moduleParts":{"main-aab412b3.mjs":"769f3df4-5"},"imported":[],"importedBy":[{"uid":"769f3df4-8"},{"uid":"769f3df4-10"},{"uid":"769f3df4-16"},{"uid":"769f3df4-18"},{"uid":"769f3df4-20"},{"uid":"769f3df4-24"},{"uid":"769f3df4-26"},{"uid":"769f3df4-30"},{"uid":"769f3df4-32"},{"uid":"769f3df4-34"},{"uid":"769f3df4-36"},{"uid":"769f3df4-38"},{"uid":"769f3df4-44"},{"uid":"769f3df4-46"},{"uid":"769f3df4-48"},{"uid":"769f3df4-50"},{"uid":"769f3df4-52"},{"uid":"769f3df4-54"},{"uid":"769f3df4-56"},{"uid":"769f3df4-58"},{"uid":"769f3df4-60"},{"uid":"769f3df4-62"},{"uid":"769f3df4-64"},{"uid":"769f3df4-66"},{"uid":"769f3df4-68"},{"uid":"769f3df4-70"},{"uid":"769f3df4-89"},{"uid":"769f3df4-91"},{"uid":"769f3df4-99"}]},"769f3df4-6":{"id":"plugin-vue:export-helper","moduleParts":{"main-aab412b3.mjs":"769f3df4-7"},"imported":[],"importedBy":[{"uid":"769f3df4-8"},{"uid":"769f3df4-10"},{"uid":"769f3df4-14"},{"uid":"769f3df4-16"},{"uid":"769f3df4-18"},{"uid":"769f3df4-20"},{"uid":"769f3df4-24"},{"uid":"769f3df4-26"},{"uid":"769f3df4-30"},{"uid":"769f3df4-32"},{"uid":"769f3df4-34"},{"uid":"769f3df4-36"},{"uid":"769f3df4-38"},{"uid":"769f3df4-44"},{"uid":"769f3df4-46"},{"uid":"769f3df4-48"},{"uid":"769f3df4-50"},{"uid":"769f3df4-52"},{"uid":"769f3df4-54"},{"uid":"769f3df4-56"},{"uid":"769f3df4-58"},{"uid":"769f3df4-60"},{"uid":"769f3df4-62"},{"uid":"769f3df4-64"},{"uid":"769f3df4-66"},{"uid":"769f3df4-68"},{"uid":"769f3df4-70"},{"uid":"769f3df4-84"},{"uid":"769f3df4-89"},{"uid":"769f3df4-91"},{"uid":"769f3df4-95"},{"uid":"769f3df4-99"},{"uid":"769f3df4-101"}]},"769f3df4-8":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfig.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-9"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-106"},{"uid":"769f3df4-107"},{"uid":"769f3df4-108"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-110"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-10":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/KeyValueConfigMult.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-11"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-106"},{"uid":"769f3df4-107"},{"uid":"769f3df4-108"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-110"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-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-aab412b3.mjs":"769f3df4-13"},"imported":[],"importedBy":[{"uid":"769f3df4-14"}]},"769f3df4-14":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/Loading.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-15"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-111"},{"uid":"769f3df4-103"},{"uid":"769f3df4-12"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-16":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/action.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-17"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-112"},{"uid":"769f3df4-113"},{"uid":"769f3df4-114"},{"uid":"769f3df4-115"},{"uid":"769f3df4-116"},{"uid":"769f3df4-117"},{"uid":"769f3df4-118"},{"uid":"769f3df4-106"},{"uid":"769f3df4-119"},{"uid":"769f3df4-120"},{"uid":"769f3df4-121"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-110"},{"uid":"769f3df4-4"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-18":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/listConfig.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-19"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-117"},{"uid":"769f3df4-118"},{"uid":"769f3df4-106"},{"uid":"769f3df4-122"},{"uid":"769f3df4-103"},{"uid":"769f3df4-4"},{"uid":"769f3df4-110"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-20":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/panel.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-21"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-117"},{"uid":"769f3df4-118"},{"uid":"769f3df4-106"},{"uid":"769f3df4-107"},{"uid":"769f3df4-119"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-4"},{"uid":"769f3df4-110"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-22":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/utils/customHooks.ts","moduleParts":{"main-aab412b3.mjs":"769f3df4-23"},"imported":[{"uid":"769f3df4-103"}],"importedBy":[{"uid":"769f3df4-24"},{"uid":"769f3df4-26"},{"uid":"769f3df4-30"},{"uid":"769f3df4-32"},{"uid":"769f3df4-34"},{"uid":"769f3df4-36"},{"uid":"769f3df4-38"},{"uid":"769f3df4-44"},{"uid":"769f3df4-46"},{"uid":"769f3df4-48"},{"uid":"769f3df4-50"},{"uid":"769f3df4-52"},{"uid":"769f3df4-54"},{"uid":"769f3df4-56"},{"uid":"769f3df4-58"},{"uid":"769f3df4-60"},{"uid":"769f3df4-62"},{"uid":"769f3df4-64"},{"uid":"769f3df4-66"},{"uid":"769f3df4-68"},{"uid":"769f3df4-70"},{"uid":"769f3df4-89"},{"uid":"769f3df4-91"}]},"769f3df4-24":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/radiogroup.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-25"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-123"},{"uid":"769f3df4-124"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-26":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/CheckBox/index.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-27"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-125"},{"uid":"769f3df4-108"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-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-aab412b3.mjs":"769f3df4-29"},"imported":[],"importedBy":[{"uid":"769f3df4-30"}]},"769f3df4-30":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/ColorSelect/index.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-31"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-126"},{"uid":"769f3df4-107"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-28"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-32":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Date/index.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-33"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-127"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-34":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/DateTime/index.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-35"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-127"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-36":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/InputNumber/index.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-37"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-122"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-38":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Radio/index.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-39"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-123"},{"uid":"769f3df4-128"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-40":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Rule/ruleform.json","moduleParts":{"main-aab412b3.mjs":"769f3df4-41"},"imported":[],"importedBy":[{"uid":"769f3df4-0"},{"uid":"769f3df4-99"}]},"769f3df4-42":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Rule/rules.js","moduleParts":{"main-aab412b3.mjs":"769f3df4-43"},"imported":[],"importedBy":[{"uid":"769f3df4-0"},{"uid":"769f3df4-99"}]},"769f3df4-44":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Selected/index.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-45"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-120"},{"uid":"769f3df4-121"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-46":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Selecteds/index.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-47"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-120"},{"uid":"769f3df4-121"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-48":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/ShowRule/index.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-49"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-118"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-50":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Slider/index.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-51"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-129"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-52":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Switch/index.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-53"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-130"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-54":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Text/index.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-55"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-107"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-56":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/TextArea/index.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-57"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-107"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-58":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Time/index.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-59"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-131"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-4"},{"uid":"769f3df4-2"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-60":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/Divider.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-61"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-132"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-62":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/Info.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-63"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-133"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-64":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/Tabs.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-65"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-134"},{"uid":"769f3df4-135"},{"uid":"769f3df4-136"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-66":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/collapse.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-67"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-115"},{"uid":"769f3df4-116"},{"uid":"769f3df4-136"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-68":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/grid.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-69"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-117"},{"uid":"769f3df4-136"},{"uid":"769f3df4-119"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-70":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/layout/table.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-71"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-136"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-72":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/styles/index.scss","moduleParts":{"main-aab412b3.mjs":"769f3df4-73"},"imported":[],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-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-aab412b3.mjs":"769f3df4-75"},"imported":[{"uid":"769f3df4-148"}],"importedBy":[{"uid":"769f3df4-80"}]},"769f3df4-76":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/controller/history.ts","moduleParts":{"main-aab412b3.mjs":"769f3df4-77"},"imported":[{"uid":"769f3df4-103"},{"uid":"769f3df4-78"}],"importedBy":[{"uid":"769f3df4-78"}]},"769f3df4-78":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/controller/form.ts","moduleParts":{"main-aab412b3.mjs":"769f3df4-79"},"imported":[{"uid":"769f3df4-103"},{"uid":"769f3df4-76"}],"importedBy":[{"uid":"769f3df4-80"},{"uid":"769f3df4-76"}]},"769f3df4-80":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/utils/_.ts","moduleParts":{"main-aab412b3.mjs":"769f3df4-81"},"imported":[{"uid":"769f3df4-137"},{"uid":"769f3df4-74"},{"uid":"769f3df4-78"}],"importedBy":[{"uid":"769f3df4-0"},{"uid":"769f3df4-91"},{"uid":"769f3df4-99"}]},"769f3df4-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-aab412b3.mjs":"769f3df4-83"},"imported":[],"importedBy":[{"uid":"769f3df4-84"}]},"769f3df4-84":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue","moduleParts":{"main-aab412b3.mjs":"769f3df4-85"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-111"},{"uid":"769f3df4-103"},{"uid":"769f3df4-82"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-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-5ee7ae61.mjs":"769f3df4-88"},"imported":[],"importedBy":[{"uid":"769f3df4-89"}]},"769f3df4-89":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/RichText/index.vue","moduleParts":{"index-5ee7ae61.mjs":"769f3df4-90"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-138"},{"uid":"769f3df4-139"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-87"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-91":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/JsonEditor/index.vue","moduleParts":{"index-ec5813e3.mjs":"769f3df4-92"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-140"},{"uid":"769f3df4-141"},{"uid":"769f3df4-118"},{"uid":"769f3df4-142"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-2"},{"uid":"769f3df4-4"},{"uid":"769f3df4-22"},{"uid":"769f3df4-143"},{"uid":"769f3df4-80"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-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-8f689053.mjs":"769f3df4-94"},"imported":[],"importedBy":[{"uid":"769f3df4-95"}]},"769f3df4-95":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/common/formAction.vue","moduleParts":{"formAction-8f689053.mjs":"769f3df4-96"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-144"},{"uid":"769f3df4-136"},{"uid":"769f3df4-107"},{"uid":"769f3df4-145"},{"uid":"769f3df4-140"},{"uid":"769f3df4-142"},{"uid":"769f3df4-146"},{"uid":"769f3df4-118"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-147"},{"uid":"769f3df4-93"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-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-3c21357b.mjs":"769f3df4-98"},"imported":[],"importedBy":[{"uid":"769f3df4-99"}]},"769f3df4-99":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/components/Rule/index.vue","moduleParts":{"index-3c21357b.mjs":"769f3df4-100"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-140"},{"uid":"769f3df4-142"},{"uid":"769f3df4-141"},{"uid":"769f3df4-133"},{"uid":"769f3df4-106"},{"uid":"769f3df4-120"},{"uid":"769f3df4-121"},{"uid":"769f3df4-112"},{"uid":"769f3df4-113"},{"uid":"769f3df4-114"},{"uid":"769f3df4-118"},{"uid":"769f3df4-109"},{"uid":"769f3df4-103"},{"uid":"769f3df4-4"},{"uid":"769f3df4-80"},{"uid":"769f3df4-42"},{"uid":"769f3df4-40"},{"uid":"769f3df4-110"},{"uid":"769f3df4-101"},{"uid":"769f3df4-147"},{"uid":"769f3df4-97"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"}]},"769f3df4-101":{"id":"E:/my/work/jiton/vue-form-design/vue-form-design/packages/form/src/starfish-form.vue","moduleParts":{"starfish-form-a750924c.mjs":"769f3df4-102"},"imported":[{"uid":"769f3df4-104"},{"uid":"769f3df4-105"},{"uid":"769f3df4-144"},{"uid":"769f3df4-136"},{"uid":"769f3df4-103"},{"uid":"769f3df4-6"}],"importedBy":[{"uid":"769f3df4-0"},{"uid":"769f3df4-99"}]},"769f3df4-103":{"id":"vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-0"},{"uid":"769f3df4-8"},{"uid":"769f3df4-10"},{"uid":"769f3df4-14"},{"uid":"769f3df4-16"},{"uid":"769f3df4-18"},{"uid":"769f3df4-20"},{"uid":"769f3df4-24"},{"uid":"769f3df4-26"},{"uid":"769f3df4-30"},{"uid":"769f3df4-32"},{"uid":"769f3df4-34"},{"uid":"769f3df4-36"},{"uid":"769f3df4-38"},{"uid":"769f3df4-44"},{"uid":"769f3df4-46"},{"uid":"769f3df4-48"},{"uid":"769f3df4-50"},{"uid":"769f3df4-52"},{"uid":"769f3df4-54"},{"uid":"769f3df4-56"},{"uid":"769f3df4-58"},{"uid":"769f3df4-60"},{"uid":"769f3df4-62"},{"uid":"769f3df4-64"},{"uid":"769f3df4-66"},{"uid":"769f3df4-68"},{"uid":"769f3df4-70"},{"uid":"769f3df4-84"},{"uid":"769f3df4-89"},{"uid":"769f3df4-91"},{"uid":"769f3df4-95"},{"uid":"769f3df4-99"},{"uid":"769f3df4-101"},{"uid":"769f3df4-22"},{"uid":"769f3df4-78"},{"uid":"769f3df4-76"}],"isExternal":true},"769f3df4-104":{"id":"element-plus/es","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-8"},{"uid":"769f3df4-10"},{"uid":"769f3df4-14"},{"uid":"769f3df4-16"},{"uid":"769f3df4-18"},{"uid":"769f3df4-20"},{"uid":"769f3df4-24"},{"uid":"769f3df4-26"},{"uid":"769f3df4-30"},{"uid":"769f3df4-32"},{"uid":"769f3df4-34"},{"uid":"769f3df4-36"},{"uid":"769f3df4-38"},{"uid":"769f3df4-44"},{"uid":"769f3df4-46"},{"uid":"769f3df4-48"},{"uid":"769f3df4-50"},{"uid":"769f3df4-52"},{"uid":"769f3df4-54"},{"uid":"769f3df4-56"},{"uid":"769f3df4-58"},{"uid":"769f3df4-60"},{"uid":"769f3df4-62"},{"uid":"769f3df4-64"},{"uid":"769f3df4-66"},{"uid":"769f3df4-68"},{"uid":"769f3df4-70"},{"uid":"769f3df4-84"},{"uid":"769f3df4-89"},{"uid":"769f3df4-91"},{"uid":"769f3df4-95"},{"uid":"769f3df4-99"},{"uid":"769f3df4-101"}],"isExternal":true},"769f3df4-105":{"id":"element-plus/es/components/base/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-8"},{"uid":"769f3df4-10"},{"uid":"769f3df4-14"},{"uid":"769f3df4-16"},{"uid":"769f3df4-18"},{"uid":"769f3df4-20"},{"uid":"769f3df4-24"},{"uid":"769f3df4-26"},{"uid":"769f3df4-30"},{"uid":"769f3df4-32"},{"uid":"769f3df4-34"},{"uid":"769f3df4-36"},{"uid":"769f3df4-38"},{"uid":"769f3df4-44"},{"uid":"769f3df4-46"},{"uid":"769f3df4-48"},{"uid":"769f3df4-50"},{"uid":"769f3df4-52"},{"uid":"769f3df4-54"},{"uid":"769f3df4-56"},{"uid":"769f3df4-58"},{"uid":"769f3df4-60"},{"uid":"769f3df4-62"},{"uid":"769f3df4-64"},{"uid":"769f3df4-66"},{"uid":"769f3df4-68"},{"uid":"769f3df4-70"},{"uid":"769f3df4-84"},{"uid":"769f3df4-89"},{"uid":"769f3df4-91"},{"uid":"769f3df4-95"},{"uid":"769f3df4-99"},{"uid":"769f3df4-101"}],"isExternal":true},"769f3df4-106":{"id":"element-plus/es/components/icon/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-8"},{"uid":"769f3df4-10"},{"uid":"769f3df4-16"},{"uid":"769f3df4-18"},{"uid":"769f3df4-20"},{"uid":"769f3df4-99"}],"isExternal":true},"769f3df4-107":{"id":"element-plus/es/components/input/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-8"},{"uid":"769f3df4-10"},{"uid":"769f3df4-20"},{"uid":"769f3df4-30"},{"uid":"769f3df4-54"},{"uid":"769f3df4-56"},{"uid":"769f3df4-95"}],"isExternal":true},"769f3df4-108":{"id":"element-plus/es/components/checkbox/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-8"},{"uid":"769f3df4-10"},{"uid":"769f3df4-26"}],"isExternal":true},"769f3df4-109":{"id":"element-plus/es/components/tooltip/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-8"},{"uid":"769f3df4-10"},{"uid":"769f3df4-16"},{"uid":"769f3df4-20"},{"uid":"769f3df4-24"},{"uid":"769f3df4-26"},{"uid":"769f3df4-30"},{"uid":"769f3df4-32"},{"uid":"769f3df4-34"},{"uid":"769f3df4-36"},{"uid":"769f3df4-38"},{"uid":"769f3df4-44"},{"uid":"769f3df4-46"},{"uid":"769f3df4-48"},{"uid":"769f3df4-50"},{"uid":"769f3df4-52"},{"uid":"769f3df4-54"},{"uid":"769f3df4-56"},{"uid":"769f3df4-58"},{"uid":"769f3df4-62"},{"uid":"769f3df4-89"},{"uid":"769f3df4-91"},{"uid":"769f3df4-95"},{"uid":"769f3df4-99"}],"isExternal":true},"769f3df4-110":{"id":"@element-plus/icons-vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-8"},{"uid":"769f3df4-10"},{"uid":"769f3df4-16"},{"uid":"769f3df4-18"},{"uid":"769f3df4-20"},{"uid":"769f3df4-99"}],"isExternal":true},"769f3df4-111":{"id":"element-plus/es/components/loading/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-14"},{"uid":"769f3df4-84"}],"isExternal":true},"769f3df4-112":{"id":"element-plus/es/components/dropdown/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-16"},{"uid":"769f3df4-99"}],"isExternal":true},"769f3df4-113":{"id":"element-plus/es/components/dropdown-menu/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-16"},{"uid":"769f3df4-99"}],"isExternal":true},"769f3df4-114":{"id":"element-plus/es/components/dropdown-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-16"},{"uid":"769f3df4-99"}],"isExternal":true},"769f3df4-115":{"id":"element-plus/es/components/collapse/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-16"},{"uid":"769f3df4-66"}],"isExternal":true},"769f3df4-116":{"id":"element-plus/es/components/collapse-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-16"},{"uid":"769f3df4-66"}],"isExternal":true},"769f3df4-117":{"id":"element-plus/es/components/row/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-16"},{"uid":"769f3df4-18"},{"uid":"769f3df4-20"},{"uid":"769f3df4-68"}],"isExternal":true},"769f3df4-118":{"id":"element-plus/es/components/button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-16"},{"uid":"769f3df4-18"},{"uid":"769f3df4-20"},{"uid":"769f3df4-48"},{"uid":"769f3df4-91"},{"uid":"769f3df4-95"},{"uid":"769f3df4-99"}],"isExternal":true},"769f3df4-119":{"id":"element-plus/es/components/col/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-16"},{"uid":"769f3df4-20"},{"uid":"769f3df4-68"}],"isExternal":true},"769f3df4-120":{"id":"element-plus/es/components/select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-16"},{"uid":"769f3df4-44"},{"uid":"769f3df4-46"},{"uid":"769f3df4-99"}],"isExternal":true},"769f3df4-121":{"id":"element-plus/es/components/option/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-16"},{"uid":"769f3df4-44"},{"uid":"769f3df4-46"},{"uid":"769f3df4-99"}],"isExternal":true},"769f3df4-122":{"id":"element-plus/es/components/input-number/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-18"},{"uid":"769f3df4-36"}],"isExternal":true},"769f3df4-123":{"id":"element-plus/es/components/radio-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-24"},{"uid":"769f3df4-38"}],"isExternal":true},"769f3df4-124":{"id":"element-plus/es/components/radio-button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-24"}],"isExternal":true},"769f3df4-125":{"id":"element-plus/es/components/checkbox-group/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-26"}],"isExternal":true},"769f3df4-126":{"id":"element-plus/es/components/color-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-30"}],"isExternal":true},"769f3df4-127":{"id":"element-plus/es/components/date-picker/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-32"},{"uid":"769f3df4-34"}],"isExternal":true},"769f3df4-128":{"id":"element-plus/es/components/radio/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-38"}],"isExternal":true},"769f3df4-129":{"id":"element-plus/es/components/slider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-50"}],"isExternal":true},"769f3df4-130":{"id":"element-plus/es/components/switch/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-52"}],"isExternal":true},"769f3df4-131":{"id":"element-plus/es/components/time-select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-58"}],"isExternal":true},"769f3df4-132":{"id":"element-plus/es/components/divider/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-60"}],"isExternal":true},"769f3df4-133":{"id":"element-plus/es/components/alert/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-62"},{"uid":"769f3df4-99"}],"isExternal":true},"769f3df4-134":{"id":"element-plus/es/components/tabs/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-64"}],"isExternal":true},"769f3df4-135":{"id":"element-plus/es/components/tab-pane/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-64"}],"isExternal":true},"769f3df4-136":{"id":"element-plus/es/components/form-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-64"},{"uid":"769f3df4-66"},{"uid":"769f3df4-68"},{"uid":"769f3df4-70"},{"uid":"769f3df4-95"},{"uid":"769f3df4-101"}],"isExternal":true},"769f3df4-137":{"id":"element-plus","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-80"}],"isExternal":true},"769f3df4-138":{"id":"@vueup/vue-quill","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-89"}],"isExternal":true},"769f3df4-139":{"id":"@vueup/vue-quill/dist/vue-quill.snow.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-89"}],"isExternal":true},"769f3df4-140":{"id":"element-plus/es/components/container/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-91"},{"uid":"769f3df4-95"},{"uid":"769f3df4-99"}],"isExternal":true},"769f3df4-141":{"id":"element-plus/es/components/footer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-91"},{"uid":"769f3df4-99"}],"isExternal":true},"769f3df4-142":{"id":"element-plus/es/components/main/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-91"},{"uid":"769f3df4-95"},{"uid":"769f3df4-99"}],"isExternal":true},"769f3df4-143":{"id":"jsoneditor","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-91"}],"isExternal":true},"769f3df4-144":{"id":"element-plus/es/components/form/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-95"},{"uid":"769f3df4-101"}],"isExternal":true},"769f3df4-145":{"id":"element-plus/es/components/aside/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-95"}],"isExternal":true},"769f3df4-146":{"id":"element-plus/es/components/scrollbar/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-95"}],"isExternal":true},"769f3df4-147":{"id":"vue-codemirror","moduleParts":{},"imported":[],"importedBy":[{"uid":"769f3df4-95"},{"uid":"769f3df4-99"}],"isExternal":true},"769f3df4-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":"769f3df4-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;
|
package/dist/index-8980a82d.mjs
DELETED
|
@@ -1,133 +0,0 @@
|
|
|
1
|
-
import { ElTooltip } from 'element-plus/es';
|
|
2
|
-
import 'element-plus/es/components/base/style/css';
|
|
3
|
-
import 'element-plus/es/components/tooltip/style/css';
|
|
4
|
-
import { defineComponent, ref, computed, watch, resolveComponent, openBlock, createElementBlock, normalizeClass, createElementVNode, normalizeStyle, createCommentVNode, toDisplayString, createBlock, withCtx, withModifiers, createVNode } from 'vue';
|
|
5
|
-
import { QuillEditor } from '@vueup/vue-quill';
|
|
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-a9ce8be4.mjs';
|
|
8
|
-
import 'element-plus/es/components/icon/style/css';
|
|
9
|
-
import 'element-plus/es/components/input/style/css';
|
|
10
|
-
import 'element-plus/es/components/checkbox/style/css';
|
|
11
|
-
import '@element-plus/icons-vue';
|
|
12
|
-
import 'element-plus/es/components/loading/style/css';
|
|
13
|
-
import 'element-plus/es/components/dropdown/style/css';
|
|
14
|
-
import 'element-plus/es/components/dropdown-menu/style/css';
|
|
15
|
-
import 'element-plus/es/components/dropdown-item/style/css';
|
|
16
|
-
import 'element-plus/es/components/collapse/style/css';
|
|
17
|
-
import 'element-plus/es/components/collapse-item/style/css';
|
|
18
|
-
import 'element-plus/es/components/row/style/css';
|
|
19
|
-
import 'element-plus/es/components/button/style/css';
|
|
20
|
-
import 'element-plus/es/components/col/style/css';
|
|
21
|
-
import 'element-plus/es/components/select/style/css';
|
|
22
|
-
import 'element-plus/es/components/option/style/css';
|
|
23
|
-
import 'element-plus/es/components/input-number/style/css';
|
|
24
|
-
import 'element-plus/es/components/radio-group/style/css';
|
|
25
|
-
import 'element-plus/es/components/radio-button/style/css';
|
|
26
|
-
import 'element-plus/es/components/checkbox-group/style/css';
|
|
27
|
-
import 'element-plus/es/components/color-picker/style/css';
|
|
28
|
-
import 'element-plus/es/components/date-picker/style/css';
|
|
29
|
-
import 'element-plus/es/components/radio/style/css';
|
|
30
|
-
import 'element-plus/es/components/slider/style/css';
|
|
31
|
-
import 'element-plus/es/components/switch/style/css';
|
|
32
|
-
import 'element-plus/es/components/time-select/style/css';
|
|
33
|
-
import 'element-plus/es/components/divider/style/css';
|
|
34
|
-
import 'element-plus/es/components/alert/style/css';
|
|
35
|
-
import 'element-plus/es/components/tabs/style/css';
|
|
36
|
-
import 'element-plus/es/components/tab-pane/style/css';
|
|
37
|
-
import 'element-plus/es/components/form-item/style/css';
|
|
38
|
-
import 'element-plus';
|
|
39
|
-
|
|
40
|
-
/* unplugin-vue-components disabled */const index_vue_vue_type_style_index_0_scoped_true_lang = '';
|
|
41
|
-
|
|
42
|
-
const _sfc_main = defineComponent({
|
|
43
|
-
ControlType: "RichText",
|
|
44
|
-
nameCn: "\u5BCC\u6587\u672C",
|
|
45
|
-
icon: "icon-textEdit",
|
|
46
|
-
formConfig: getFormConfig("RichText", [{ fieldName: "state", component: "Radio" }]),
|
|
47
|
-
props: {
|
|
48
|
-
...fieldProps
|
|
49
|
-
},
|
|
50
|
-
components: {
|
|
51
|
-
QuillEditor
|
|
52
|
-
},
|
|
53
|
-
setup(props) {
|
|
54
|
-
useWatch(props);
|
|
55
|
-
const quillEditorRef = ref();
|
|
56
|
-
const content = ref(props.data[props.item.data.fieldName] || props.item.data.default || "");
|
|
57
|
-
const isReadonly = computed(
|
|
58
|
-
() => props.readonly || props.item.data.state === "readonly"
|
|
59
|
-
);
|
|
60
|
-
const handleContentChange = (value) => {
|
|
61
|
-
content.value = value;
|
|
62
|
-
props.data[props.item.data.fieldName] = value;
|
|
63
|
-
};
|
|
64
|
-
watch(() => props.data[props.item.data.fieldName], (newValue) => {
|
|
65
|
-
if (newValue !== content.value) {
|
|
66
|
-
content.value = newValue || "";
|
|
67
|
-
}
|
|
68
|
-
});
|
|
69
|
-
return {
|
|
70
|
-
content,
|
|
71
|
-
quillEditorRef,
|
|
72
|
-
handleContentChange,
|
|
73
|
-
isReadonly
|
|
74
|
-
};
|
|
75
|
-
}
|
|
76
|
-
});
|
|
77
|
-
const _hoisted_1 = ["data-control-type", "data-id"];
|
|
78
|
-
const _hoisted_2 = {
|
|
79
|
-
key: 0,
|
|
80
|
-
class: "item_require"
|
|
81
|
-
};
|
|
82
|
-
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
83
|
-
const _component_el_tooltip = ElTooltip;
|
|
84
|
-
const _component_QuillEditor = resolveComponent("QuillEditor");
|
|
85
|
-
return openBlock(), createElementBlock("div", {
|
|
86
|
-
class: normalizeClass(["starfish-formitem", { formCover: _ctx.drag, "starfish-vertical": _ctx.labelalign != "top", [_ctx.item.data.csslist?.join(" ")]: !!_ctx.item.data.csslist }]),
|
|
87
|
-
"data-control-type": _ctx.item.ControlType,
|
|
88
|
-
"data-id": _ctx.item.id
|
|
89
|
-
}, [
|
|
90
|
-
createElementVNode("div", {
|
|
91
|
-
class: normalizeClass(["label", "label_" + _ctx.labelalign]),
|
|
92
|
-
style: normalizeStyle({ width: _ctx.labelWidth + "px" })
|
|
93
|
-
}, [
|
|
94
|
-
_ctx.item.data.required && !_ctx.readonly && _ctx.item.data.state !== "readonly" ? (openBlock(), createElementBlock("span", _hoisted_2, "*")) : createCommentVNode("", true),
|
|
95
|
-
createElementVNode("label", null, toDisplayString(_ctx.item.data.label) + toDisplayString(_ctx.suffix), 1),
|
|
96
|
-
_ctx.item.data.tip && !_ctx.readonly ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
97
|
-
key: 1,
|
|
98
|
-
class: "item",
|
|
99
|
-
effect: "dark",
|
|
100
|
-
content: _ctx.item.data.tip,
|
|
101
|
-
placement: "top"
|
|
102
|
-
}, {
|
|
103
|
-
default: withCtx(() => [..._cache[1] || (_cache[1] = [
|
|
104
|
-
createElementVNode("span", { class: "tip iconfontui icon-tishi" }, null, -1)
|
|
105
|
-
])]),
|
|
106
|
-
_: 1
|
|
107
|
-
}, 8, ["content"])) : createCommentVNode("", true)
|
|
108
|
-
], 6),
|
|
109
|
-
createElementVNode("div", {
|
|
110
|
-
class: "control",
|
|
111
|
-
style: normalizeStyle({ marginLeft: _ctx.labelalign != "top" ? _ctx.labelWidth + "px" : "" })
|
|
112
|
-
}, [
|
|
113
|
-
createElementVNode("div", {
|
|
114
|
-
class: "rich-text-editor",
|
|
115
|
-
onClick: _cache[0] || (_cache[0] = withModifiers(() => {
|
|
116
|
-
}, ["stop"]))
|
|
117
|
-
}, [
|
|
118
|
-
createVNode(_component_QuillEditor, {
|
|
119
|
-
ref: "quillEditorRef",
|
|
120
|
-
theme: "snow",
|
|
121
|
-
content: _ctx.content,
|
|
122
|
-
"onUpdate:content": _ctx.handleContentChange,
|
|
123
|
-
toolbar: "full",
|
|
124
|
-
"read-only": _ctx.isReadonly || _ctx.drag,
|
|
125
|
-
class: "editor-content"
|
|
126
|
-
}, null, 8, ["content", "onUpdate:content", "read-only"])
|
|
127
|
-
])
|
|
128
|
-
], 4)
|
|
129
|
-
], 10, _hoisted_1);
|
|
130
|
-
}
|
|
131
|
-
const index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-2f76c2d0"]]);
|
|
132
|
-
|
|
133
|
-
export { index as default };
|