starfish-editor-custom 1.0.14 → 1.0.15
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/package.json +2 -2
- package/src/styles/props-panel.scss +124 -124
- package/stats.html +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "starfish-editor-custom",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.15",
|
|
4
4
|
"main": "dist/starfish-editor.umd.js",
|
|
5
5
|
"style": "dist/style.css",
|
|
6
6
|
"module": "dist/starfish-editor.es.js",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"keycon": "^1.1.2",
|
|
34
34
|
"mitt": "^3.0.0",
|
|
35
35
|
"nanoid": "^4.0.0",
|
|
36
|
-
"starfish-form-custom": "1.0.
|
|
36
|
+
"starfish-form-custom": "1.0.16",
|
|
37
37
|
"vue": "^3.2.37",
|
|
38
38
|
"vue-codemirror": "6.1.1",
|
|
39
39
|
"vuedraggable": "^4.1.0",
|
|
@@ -1,124 +1,124 @@
|
|
|
1
|
-
.starfish-editor {
|
|
2
|
-
.editor_pages_right {
|
|
3
|
-
width: 100%;
|
|
4
|
-
height: 100%;
|
|
5
|
-
// position: fixed;
|
|
6
|
-
// right: 0;
|
|
7
|
-
background: white;
|
|
8
|
-
// padding: 30px 0;
|
|
9
|
-
z-index: 1;
|
|
10
|
-
position: relative;
|
|
11
|
-
display: flex;
|
|
12
|
-
overflow: hidden;
|
|
13
|
-
.demo-tabs {
|
|
14
|
-
width: 380px;
|
|
15
|
-
flex: 1;
|
|
16
|
-
flex-direction: column;
|
|
17
|
-
.el-tabs__nav {
|
|
18
|
-
display: flex;
|
|
19
|
-
justify-content: space-around;
|
|
20
|
-
width: 100%;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.dynamic {
|
|
24
|
-
padding-top: 1px;
|
|
25
|
-
.el-form-item__content {
|
|
26
|
-
margin-bottom: 16px;
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
.form_tab3 {
|
|
31
|
-
padding: 5px;
|
|
32
|
-
.form_tab3_list {
|
|
33
|
-
margin-bottom: 15px;
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
.json {
|
|
37
|
-
padding: 10px;
|
|
38
|
-
height: 100%;
|
|
39
|
-
> div {
|
|
40
|
-
height: 90%;
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
.el-tabs__content {
|
|
44
|
-
padding: 0;
|
|
45
|
-
height: 100%;
|
|
46
|
-
> div {
|
|
47
|
-
height: 100%;
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
&.editor_transition {
|
|
51
|
-
transition: all 0.5s ease-in-out 0s;
|
|
52
|
-
}
|
|
53
|
-
.editor_container {
|
|
54
|
-
// position: absolute;
|
|
55
|
-
// left: 0;
|
|
56
|
-
// top: 0;
|
|
57
|
-
padding-top: 30px;
|
|
58
|
-
box-sizing: border-box;
|
|
59
|
-
height: 100%;
|
|
60
|
-
border-right: 1px solid $resizer_background_color;
|
|
61
|
-
margin-right: 5px;
|
|
62
|
-
}
|
|
63
|
-
.controlLine {
|
|
64
|
-
position: absolute;
|
|
65
|
-
left: 0;
|
|
66
|
-
height: 100%;
|
|
67
|
-
width: 5px;
|
|
68
|
-
background: red;
|
|
69
|
-
z-index: 2;
|
|
70
|
-
&:hover {
|
|
71
|
-
background: $blue;
|
|
72
|
-
cursor: ew-resize;
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
.viewAndJson {
|
|
76
|
-
display: flex;
|
|
77
|
-
justify-content: center;
|
|
78
|
-
justify-items: center;
|
|
79
|
-
margin: 5px auto;
|
|
80
|
-
width: 80%;
|
|
81
|
-
> div {
|
|
82
|
-
width: 30%;
|
|
83
|
-
border: 3px solid rgb(121, 118, 118);
|
|
84
|
-
height: 30px;
|
|
85
|
-
line-height: 30px;
|
|
86
|
-
text-align: center;
|
|
87
|
-
border-radius: 5px;
|
|
88
|
-
&.active {
|
|
89
|
-
border-color: $blue;
|
|
90
|
-
color: $blue;
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
.dynamic {
|
|
95
|
-
overflow: auto;
|
|
96
|
-
height: 100%;
|
|
97
|
-
@include scrollbar();
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
&.editor_pages_right_visible {
|
|
101
|
-
right: 0;
|
|
102
|
-
}
|
|
103
|
-
&.editor_pages_right_hidden {
|
|
104
|
-
transform: translateX(100%);
|
|
105
|
-
// right: -100%;
|
|
106
|
-
}
|
|
107
|
-
.editor_right_accept {
|
|
108
|
-
width: 20px;
|
|
109
|
-
height: 80px;
|
|
110
|
-
background: #fff;
|
|
111
|
-
box-shadow: -2px 0 4px 0 rgba(0, 0, 0, 0.1);
|
|
112
|
-
display: flex;
|
|
113
|
-
justify-content: center;
|
|
114
|
-
align-items: center;
|
|
115
|
-
right: 304px;
|
|
116
|
-
top: 50%;
|
|
117
|
-
margin-top: -32px;
|
|
118
|
-
transform: translateY(-50%);
|
|
119
|
-
cursor: pointer;
|
|
120
|
-
position: absolute;
|
|
121
|
-
left: -28px;
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
}
|
|
1
|
+
.starfish-editor {
|
|
2
|
+
.editor_pages_right {
|
|
3
|
+
width: 100%;
|
|
4
|
+
height: 100%;
|
|
5
|
+
// position: fixed;
|
|
6
|
+
// right: 0;
|
|
7
|
+
background: white;
|
|
8
|
+
// padding: 30px 0;
|
|
9
|
+
z-index: 1;
|
|
10
|
+
position: relative;
|
|
11
|
+
display: flex;
|
|
12
|
+
overflow: hidden;
|
|
13
|
+
.demo-tabs {
|
|
14
|
+
width: 380px;
|
|
15
|
+
flex: 1;
|
|
16
|
+
flex-direction: column;
|
|
17
|
+
.el-tabs__nav {
|
|
18
|
+
display: flex;
|
|
19
|
+
justify-content: space-around;
|
|
20
|
+
width: 100%;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.dynamic {
|
|
24
|
+
padding-top: 1px;
|
|
25
|
+
.el-form-item__content {
|
|
26
|
+
margin-bottom: 16px;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
.form_tab3 {
|
|
31
|
+
padding: 5px;
|
|
32
|
+
.form_tab3_list {
|
|
33
|
+
margin-bottom: 15px;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
.json {
|
|
37
|
+
padding: 10px;
|
|
38
|
+
height: 100%;
|
|
39
|
+
> div {
|
|
40
|
+
height: 90%;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
.el-tabs__content {
|
|
44
|
+
padding: 0;
|
|
45
|
+
height: 100%;
|
|
46
|
+
> div {
|
|
47
|
+
height: 100%;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
&.editor_transition {
|
|
51
|
+
transition: all 0.5s ease-in-out 0s;
|
|
52
|
+
}
|
|
53
|
+
.editor_container {
|
|
54
|
+
// position: absolute;
|
|
55
|
+
// left: 0;
|
|
56
|
+
// top: 0;
|
|
57
|
+
padding-top: 30px;
|
|
58
|
+
box-sizing: border-box;
|
|
59
|
+
height: 100%;
|
|
60
|
+
border-right: 1px solid $resizer_background_color;
|
|
61
|
+
margin-right: 5px;
|
|
62
|
+
}
|
|
63
|
+
.controlLine {
|
|
64
|
+
position: absolute;
|
|
65
|
+
left: 0;
|
|
66
|
+
height: 100%;
|
|
67
|
+
width: 5px;
|
|
68
|
+
background: red;
|
|
69
|
+
z-index: 2;
|
|
70
|
+
&:hover {
|
|
71
|
+
background: $blue;
|
|
72
|
+
cursor: ew-resize;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
.viewAndJson {
|
|
76
|
+
display: flex;
|
|
77
|
+
justify-content: center;
|
|
78
|
+
justify-items: center;
|
|
79
|
+
margin: 5px auto;
|
|
80
|
+
width: 80%;
|
|
81
|
+
> div {
|
|
82
|
+
width: 30%;
|
|
83
|
+
border: 3px solid rgb(121, 118, 118);
|
|
84
|
+
height: 30px;
|
|
85
|
+
line-height: 30px;
|
|
86
|
+
text-align: center;
|
|
87
|
+
border-radius: 5px;
|
|
88
|
+
&.active {
|
|
89
|
+
border-color: $blue;
|
|
90
|
+
color: $blue;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
.dynamic {
|
|
95
|
+
overflow: auto;
|
|
96
|
+
height: 100%;
|
|
97
|
+
@include scrollbar();
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
&.editor_pages_right_visible {
|
|
101
|
+
right: 0;
|
|
102
|
+
}
|
|
103
|
+
&.editor_pages_right_hidden {
|
|
104
|
+
transform: translateX(100%);
|
|
105
|
+
// right: -100%;
|
|
106
|
+
}
|
|
107
|
+
.editor_right_accept {
|
|
108
|
+
width: 20px;
|
|
109
|
+
height: 80px;
|
|
110
|
+
background: #fff;
|
|
111
|
+
box-shadow: -2px 0 4px 0 rgba(0, 0, 0, 0.1);
|
|
112
|
+
display: flex;
|
|
113
|
+
justify-content: center;
|
|
114
|
+
align-items: center;
|
|
115
|
+
right: 304px;
|
|
116
|
+
top: 50%;
|
|
117
|
+
margin-top: -32px;
|
|
118
|
+
transform: translateY(-50%);
|
|
119
|
+
cursor: pointer;
|
|
120
|
+
position: absolute;
|
|
121
|
+
left: -28px;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
package/stats.html
CHANGED
|
@@ -6157,7 +6157,7 @@ var drawChart = (function (exports) {
|
|
|
6157
6157
|
</script>
|
|
6158
6158
|
<script>
|
|
6159
6159
|
/*<!--*/
|
|
6160
|
-
const data = {"version":2,"tree":{"name":"root","children":[{"name":"starfish-editor.es.js","uid":"aa2d-1"},{"name":"main.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src","children":[{"name":"styles/index.scss","uid":"aa2d-3"},{"name":"utils","children":[{"uid":"aa2d-5","name":"vm.ts"},{"uid":"aa2d-11","name":"_.ts"},{"uid":"aa2d-33","name":"formKeycon.ts"},{"uid":"aa2d-51","name":"shortcutKey.ts"}]},{"name":"controller","children":[{"uid":"aa2d-7","name":"history.ts"},{"uid":"aa2d-9","name":"form.ts"},{"uid":"aa2d-13","name":"ui.ts"},{"uid":"aa2d-31","name":"shortcut.ts"},{"uid":"aa2d-49","name":"action.ts"}]},{"name":"components","children":[{"uid":"aa2d-17","name":"FormPreview.vue"},{"uid":"aa2d-29","name":"PropsPanel.vue"},{"uid":"aa2d-35","name":"Shape.vue"},{"uid":"aa2d-37","name":"Workspace.vue"},{"uid":"aa2d-39","name":"ComponentList.vue"},{"uid":"aa2d-41","name":"NavList.vue"},{"uid":"aa2d-43","name":"Nav.vue"}]},{"name":"layouts","children":[{"uid":"aa2d-19","name":"ShortcutKey.vue"},{"uid":"aa2d-21","name":"ControlEditSize.vue"},{"uid":"aa2d-45","name":"Resizer.vue"},{"uid":"aa2d-47","name":"Framework.vue"}]},{"name":"common","children":[{"uid":"aa2d-23","name":"formJson.ts"},{"uid":"aa2d-25","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"aa2d-27","name":"Loading.vue"}]},{"uid":"aa2d-53","name":"starfish-editor.vue?vue&type=style&index=0&lang.css"},{"uid":"aa2d-55","name":"starfish-editor.vue"},{"uid":"aa2d-56","name":"main.ts"}]},{"uid":"aa2d-15","name":"plugin-vue:export-helper"}]},{"name":"CustomDialog.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common","children":[{"uid":"aa2d-58","name":"CustomDialog.vue?vue&type=style&index=0&scoped=true&lang.css"},{"uid":"aa2d-60","name":"CustomDialog.vue"}]}]},{"name":"ConditionSelect.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect.vue","uid":"aa2d-62"}]},{"name":"ConditionModule.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect","children":[{"uid":"aa2d-64","name":"ConditionTanc.vue"},{"uid":"aa2d-66","name":"ConditionGroup.vue"},{"uid":"aa2d-68","name":"ConditionModule.vue"}]}]},{"name":"formStyle.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common","children":[{"uid":"aa2d-70","name":"formStyle.vue?vue&type=style&index=0&lang.scss"},{"uid":"aa2d-72","name":"formStyle.vue"}]}]},{"name":"jsonCode.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common","children":[{"uid":"aa2d-74","name":"jsonCode.vue?vue&type=style&index=0&lang.scss"},{"uid":"aa2d-76","name":"jsonCode.vue"}]}]},{"name":"jsonEditor.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/jsonEditor.vue","uid":"aa2d-78"}]},{"name":"globalFormList.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/globalFormList.vue","uid":"aa2d-80"}]}],"isRoot":true},"nodeParts":{"aa2d-1":{"id":"starfish-editor.es.js","gzipLength":0,"brotliLength":0,"renderedLength":1218,"metaUid":"aa2d-0"},"aa2d-3":{"renderedLength":67033,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-2"},"aa2d-5":{"renderedLength":16,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-4"},"aa2d-7":{"renderedLength":1613,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-6"},"aa2d-9":{"renderedLength":5583,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-8"},"aa2d-11":{"renderedLength":9431,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-10"},"aa2d-13":{"renderedLength":2025,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-12"},"aa2d-15":{"renderedLength":157,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-14"},"aa2d-17":{"renderedLength":7683,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-16"},"aa2d-19":{"renderedLength":1858,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-18"},"aa2d-21":{"renderedLength":2836,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-20"},"aa2d-23":{"renderedLength":1187,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-22"},"aa2d-25":{"renderedLength":192,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-24"},"aa2d-27":{"renderedLength":400,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-26"},"aa2d-29":{"renderedLength":16694,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-28"},"aa2d-31":{"renderedLength":1832,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-30"},"aa2d-33":{"renderedLength":457,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-32"},"aa2d-35":{"renderedLength":6369,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-34"},"aa2d-37":{"renderedLength":9051,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-36"},"aa2d-39":{"renderedLength":5871,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-38"},"aa2d-41":{"renderedLength":19472,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-40"},"aa2d-43":{"renderedLength":8406,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-42"},"aa2d-45":{"renderedLength":1138,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-44"},"aa2d-47":{"renderedLength":2712,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-46"},"aa2d-49":{"renderedLength":466,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-48"},"aa2d-51":{"renderedLength":1024,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-50"},"aa2d-53":{"renderedLength":260,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-52"},"aa2d-55":{"renderedLength":3983,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-54"},"aa2d-56":{"renderedLength":1112,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-0"},"aa2d-58":{"renderedLength":272,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-57"},"aa2d-60":{"renderedLength":2123,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-59"},"aa2d-62":{"renderedLength":18742,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-61"},"aa2d-64":{"renderedLength":17222,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-63"},"aa2d-66":{"renderedLength":8014,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-65"},"aa2d-68":{"renderedLength":5784,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-67"},"aa2d-70":{"renderedLength":166,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-69"},"aa2d-72":{"renderedLength":6954,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-71"},"aa2d-74":{"renderedLength":187,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-73"},"aa2d-76":{"renderedLength":1553,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-75"},"aa2d-78":{"renderedLength":1338,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-77"},"aa2d-80":{"renderedLength":1044,"gzipLength":0,"brotliLength":0,"metaUid":"aa2d-79"}},"nodeMetas":{"aa2d-0":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/main.ts","moduleParts":{"starfish-editor.es.js":"aa2d-1","main.js":"aa2d-56"},"imported":[{"uid":"aa2d-81"},{"uid":"aa2d-82"},{"uid":"aa2d-2"},{"uid":"aa2d-83"},{"uid":"aa2d-84"},{"uid":"aa2d-4"},{"uid":"aa2d-10"},{"uid":"aa2d-85"},{"uid":"aa2d-54"},{"uid":"aa2d-26"},{"uid":"aa2d-59","dynamic":true},{"uid":"aa2d-61","dynamic":true},{"uid":"aa2d-67","dynamic":true},{"uid":"aa2d-86","dynamic":true},{"uid":"aa2d-34","dynamic":true},{"uid":"aa2d-71","dynamic":true}],"importedBy":[],"isEntry":true},"aa2d-2":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/styles/index.scss","moduleParts":{"main.js":"aa2d-3"},"imported":[],"importedBy":[{"uid":"aa2d-0"}]},"aa2d-4":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/vm.ts","moduleParts":{"main.js":"aa2d-5"},"imported":[{"uid":"aa2d-87"}],"importedBy":[{"uid":"aa2d-0"}]},"aa2d-6":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/history.ts","moduleParts":{"main.js":"aa2d-7"},"imported":[{"uid":"aa2d-81"},{"uid":"aa2d-8"}],"importedBy":[{"uid":"aa2d-54"},{"uid":"aa2d-8"},{"uid":"aa2d-50"}]},"aa2d-8":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/form.ts","moduleParts":{"main.js":"aa2d-9"},"imported":[{"uid":"aa2d-81"},{"uid":"aa2d-6"}],"importedBy":[{"uid":"aa2d-10"},{"uid":"aa2d-54"},{"uid":"aa2d-61"},{"uid":"aa2d-67"},{"uid":"aa2d-16"},{"uid":"aa2d-38"},{"uid":"aa2d-6"},{"uid":"aa2d-30"}]},"aa2d-10":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/_.ts","moduleParts":{"main.js":"aa2d-11"},"imported":[{"uid":"aa2d-88"},{"uid":"aa2d-89"},{"uid":"aa2d-8"}],"importedBy":[{"uid":"aa2d-0"}]},"aa2d-12":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/ui.ts","moduleParts":{"main.js":"aa2d-13"},"imported":[{"uid":"aa2d-81"}],"importedBy":[{"uid":"aa2d-54"},{"uid":"aa2d-16"}]},"aa2d-14":{"id":"plugin-vue:export-helper","moduleParts":{"main.js":"aa2d-15"},"imported":[],"importedBy":[{"uid":"aa2d-54"},{"uid":"aa2d-26"},{"uid":"aa2d-59"},{"uid":"aa2d-61"},{"uid":"aa2d-67"},{"uid":"aa2d-34"},{"uid":"aa2d-71"},{"uid":"aa2d-16"},{"uid":"aa2d-28"},{"uid":"aa2d-36"},{"uid":"aa2d-38"},{"uid":"aa2d-40"},{"uid":"aa2d-42"},{"uid":"aa2d-46"},{"uid":"aa2d-65"},{"uid":"aa2d-75"},{"uid":"aa2d-20"},{"uid":"aa2d-77"},{"uid":"aa2d-79"},{"uid":"aa2d-44"},{"uid":"aa2d-63"},{"uid":"aa2d-18"}]},"aa2d-16":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/FormPreview.vue","moduleParts":{"main.js":"aa2d-17"},"imported":[{"uid":"aa2d-90"},{"uid":"aa2d-91"},{"uid":"aa2d-95"},{"uid":"aa2d-98"},{"uid":"aa2d-81"},{"uid":"aa2d-8"},{"uid":"aa2d-84"},{"uid":"aa2d-12"},{"uid":"aa2d-109"},{"uid":"aa2d-14"},{"uid":"aa2d-110"},{"uid":"aa2d-75","dynamic":true}],"importedBy":[{"uid":"aa2d-54"}]},"aa2d-18":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/layouts/ShortcutKey.vue","moduleParts":{"main.js":"aa2d-19"},"imported":[{"uid":"aa2d-81"},{"uid":"aa2d-14"}],"importedBy":[{"uid":"aa2d-20"}]},"aa2d-20":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/layouts/ControlEditSize.vue","moduleParts":{"main.js":"aa2d-21"},"imported":[{"uid":"aa2d-81"},{"uid":"aa2d-18"},{"uid":"aa2d-14"}],"importedBy":[{"uid":"aa2d-28"}]},"aa2d-22":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/formJson.ts","moduleParts":{"main.js":"aa2d-23"},"imported":[],"importedBy":[{"uid":"aa2d-28"}]},"aa2d-24":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue?vue&type=style&index=0&scoped=true&lang.scss","moduleParts":{"main.js":"aa2d-25"},"imported":[],"importedBy":[{"uid":"aa2d-26"}]},"aa2d-26":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue","moduleParts":{"main.js":"aa2d-27"},"imported":[{"uid":"aa2d-90"},{"uid":"aa2d-91"},{"uid":"aa2d-92"},{"uid":"aa2d-81"},{"uid":"aa2d-24"},{"uid":"aa2d-14"}],"importedBy":[{"uid":"aa2d-0"},{"uid":"aa2d-28"}]},"aa2d-28":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/PropsPanel.vue","moduleParts":{"main.js":"aa2d-29"},"imported":[{"uid":"aa2d-90"},{"uid":"aa2d-91"},{"uid":"aa2d-111"},{"uid":"aa2d-112"},{"uid":"aa2d-113"},{"uid":"aa2d-100"},{"uid":"aa2d-101"},{"uid":"aa2d-81"},{"uid":"aa2d-20"},{"uid":"aa2d-22"},{"uid":"aa2d-26"},{"uid":"aa2d-14"},{"uid":"aa2d-114"},{"uid":"aa2d-77","dynamic":true},{"uid":"aa2d-79","dynamic":true}],"importedBy":[{"uid":"aa2d-54"}]},"aa2d-30":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/shortcut.ts","moduleParts":{"main.js":"aa2d-31"},"imported":[{"uid":"aa2d-81"},{"uid":"aa2d-8"}],"importedBy":[{"uid":"aa2d-54"},{"uid":"aa2d-32"}]},"aa2d-32":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/formKeycon.ts","moduleParts":{"main.js":"aa2d-33"},"imported":[{"uid":"aa2d-30"}],"importedBy":[{"uid":"aa2d-54"},{"uid":"aa2d-34"},{"uid":"aa2d-36"},{"uid":"aa2d-40"}]},"aa2d-34":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/Shape.vue","moduleParts":{"main.js":"aa2d-35"},"imported":[{"uid":"aa2d-81"},{"uid":"aa2d-32"},{"uid":"aa2d-14"}],"importedBy":[{"uid":"aa2d-0"},{"uid":"aa2d-36"}]},"aa2d-36":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/Workspace.vue","moduleParts":{"main.js":"aa2d-37"},"imported":[{"uid":"aa2d-34"},{"uid":"aa2d-81"},{"uid":"aa2d-32"},{"uid":"aa2d-14"}],"importedBy":[{"uid":"aa2d-54"}]},"aa2d-38":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/ComponentList.vue","moduleParts":{"main.js":"aa2d-39"},"imported":[{"uid":"aa2d-90"},{"uid":"aa2d-91"},{"uid":"aa2d-98"},{"uid":"aa2d-102"},{"uid":"aa2d-81"},{"uid":"aa2d-8"},{"uid":"aa2d-14"}],"importedBy":[{"uid":"aa2d-54"}]},"aa2d-40":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/NavList.vue","moduleParts":{"main.js":"aa2d-41"},"imported":[{"uid":"aa2d-90"},{"uid":"aa2d-91"},{"uid":"aa2d-95"},{"uid":"aa2d-115"},{"uid":"aa2d-98"},{"uid":"aa2d-116"},{"uid":"aa2d-117"},{"uid":"aa2d-102"},{"uid":"aa2d-106"},{"uid":"aa2d-81"},{"uid":"aa2d-32"},{"uid":"aa2d-14"},{"uid":"aa2d-110"},{"uid":"aa2d-75","dynamic":true}],"importedBy":[{"uid":"aa2d-54"}]},"aa2d-42":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/Nav.vue","moduleParts":{"main.js":"aa2d-43"},"imported":[{"uid":"aa2d-81"},{"uid":"aa2d-14"}],"importedBy":[{"uid":"aa2d-54"}]},"aa2d-44":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/layouts/Resizer.vue","moduleParts":{"main.js":"aa2d-45"},"imported":[{"uid":"aa2d-81"},{"uid":"aa2d-121"},{"uid":"aa2d-14"}],"importedBy":[{"uid":"aa2d-46"}]},"aa2d-46":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/layouts/Framework.vue","moduleParts":{"main.js":"aa2d-47"},"imported":[{"uid":"aa2d-81"},{"uid":"aa2d-44"},{"uid":"aa2d-14"}],"importedBy":[{"uid":"aa2d-54"}]},"aa2d-48":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/action.ts","moduleParts":{"main.js":"aa2d-49"},"imported":[{"uid":"aa2d-81"}],"importedBy":[{"uid":"aa2d-54"}]},"aa2d-50":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/shortcutKey.ts","moduleParts":{"main.js":"aa2d-51"},"imported":[{"uid":"aa2d-118"},{"uid":"aa2d-6"}],"importedBy":[{"uid":"aa2d-54"}]},"aa2d-52":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/starfish-editor.vue?vue&type=style&index=0&lang.css","moduleParts":{"main.js":"aa2d-53"},"imported":[],"importedBy":[{"uid":"aa2d-54"}]},"aa2d-54":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/starfish-editor.vue","moduleParts":{"main.js":"aa2d-55"},"imported":[{"uid":"aa2d-16"},{"uid":"aa2d-28"},{"uid":"aa2d-36"},{"uid":"aa2d-38"},{"uid":"aa2d-40"},{"uid":"aa2d-42"},{"uid":"aa2d-81"},{"uid":"aa2d-46"},{"uid":"aa2d-12"},{"uid":"aa2d-6"},{"uid":"aa2d-8"},{"uid":"aa2d-48"},{"uid":"aa2d-30"},{"uid":"aa2d-50"},{"uid":"aa2d-32"},{"uid":"aa2d-52"},{"uid":"aa2d-14"},{"uid":"aa2d-16","dynamic":true}],"importedBy":[{"uid":"aa2d-0"}]},"aa2d-57":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/CustomDialog.vue?vue&type=style&index=0&scoped=true&lang.css","moduleParts":{"CustomDialog.js":"aa2d-58"},"imported":[],"importedBy":[{"uid":"aa2d-59"}]},"aa2d-59":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/CustomDialog.vue","moduleParts":{"CustomDialog.js":"aa2d-60"},"imported":[{"uid":"aa2d-90"},{"uid":"aa2d-91"},{"uid":"aa2d-93"},{"uid":"aa2d-81"},{"uid":"aa2d-57"},{"uid":"aa2d-14"}],"importedBy":[{"uid":"aa2d-0"}]},"aa2d-61":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect.vue","moduleParts":{"ConditionSelect.js":"aa2d-62"},"imported":[{"uid":"aa2d-90"},{"uid":"aa2d-91"},{"uid":"aa2d-94"},{"uid":"aa2d-95"},{"uid":"aa2d-96"},{"uid":"aa2d-97"},{"uid":"aa2d-98"},{"uid":"aa2d-99"},{"uid":"aa2d-100"},{"uid":"aa2d-101"},{"uid":"aa2d-102"},{"uid":"aa2d-103"},{"uid":"aa2d-104"},{"uid":"aa2d-105"},{"uid":"aa2d-81"},{"uid":"aa2d-8"},{"uid":"aa2d-14"}],"importedBy":[{"uid":"aa2d-0"}]},"aa2d-63":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect/ConditionTanc.vue","moduleParts":{"ConditionModule.js":"aa2d-64"},"imported":[{"uid":"aa2d-90"},{"uid":"aa2d-91"},{"uid":"aa2d-94"},{"uid":"aa2d-95"},{"uid":"aa2d-96"},{"uid":"aa2d-97"},{"uid":"aa2d-98"},{"uid":"aa2d-99"},{"uid":"aa2d-100"},{"uid":"aa2d-101"},{"uid":"aa2d-102"},{"uid":"aa2d-103"},{"uid":"aa2d-104"},{"uid":"aa2d-105"},{"uid":"aa2d-110"},{"uid":"aa2d-81"},{"uid":"aa2d-14"}],"importedBy":[{"uid":"aa2d-65"}]},"aa2d-65":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect/ConditionGroup.vue","moduleParts":{"ConditionModule.js":"aa2d-66"},"imported":[{"uid":"aa2d-90"},{"uid":"aa2d-91"},{"uid":"aa2d-98"},{"uid":"aa2d-104"},{"uid":"aa2d-105"},{"uid":"aa2d-63"},{"uid":"aa2d-81"},{"uid":"aa2d-14"}],"importedBy":[{"uid":"aa2d-67"}]},"aa2d-67":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect/ConditionModule.vue","moduleParts":{"ConditionModule.js":"aa2d-68"},"imported":[{"uid":"aa2d-90"},{"uid":"aa2d-91"},{"uid":"aa2d-94"},{"uid":"aa2d-95"},{"uid":"aa2d-98"},{"uid":"aa2d-96"},{"uid":"aa2d-65"},{"uid":"aa2d-8"},{"uid":"aa2d-81"},{"uid":"aa2d-14"}],"importedBy":[{"uid":"aa2d-0"}]},"aa2d-69":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/formStyle.vue?vue&type=style&index=0&lang.scss","moduleParts":{"formStyle.js":"aa2d-70"},"imported":[],"importedBy":[{"uid":"aa2d-71"}]},"aa2d-71":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/formStyle.vue","moduleParts":{"formStyle.js":"aa2d-72"},"imported":[{"uid":"aa2d-90"},{"uid":"aa2d-91"},{"uid":"aa2d-95"},{"uid":"aa2d-98"},{"uid":"aa2d-106"},{"uid":"aa2d-81"},{"uid":"aa2d-107"},{"uid":"aa2d-108"},{"uid":"aa2d-69"},{"uid":"aa2d-14"}],"importedBy":[{"uid":"aa2d-0"}]},"aa2d-73":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/jsonCode.vue?vue&type=style&index=0&lang.scss","moduleParts":{"jsonCode.js":"aa2d-74"},"imported":[],"importedBy":[{"uid":"aa2d-75"}]},"aa2d-75":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/jsonCode.vue","moduleParts":{"jsonCode.js":"aa2d-76"},"imported":[{"uid":"aa2d-81"},{"uid":"aa2d-119"},{"uid":"aa2d-108"},{"uid":"aa2d-73"},{"uid":"aa2d-14"}],"importedBy":[{"uid":"aa2d-16"},{"uid":"aa2d-40"}]},"aa2d-77":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/jsonEditor.vue","moduleParts":{"jsonEditor.js":"aa2d-78"},"imported":[{"uid":"aa2d-81"},{"uid":"aa2d-120"},{"uid":"aa2d-14"}],"importedBy":[{"uid":"aa2d-28"}]},"aa2d-79":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/globalFormList.vue","moduleParts":{"globalFormList.js":"aa2d-80"},"imported":[{"uid":"aa2d-81"},{"uid":"aa2d-14"}],"importedBy":[{"uid":"aa2d-28"}]},"aa2d-81":{"id":"vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-0"},{"uid":"aa2d-54"},{"uid":"aa2d-26"},{"uid":"aa2d-59"},{"uid":"aa2d-61"},{"uid":"aa2d-67"},{"uid":"aa2d-34"},{"uid":"aa2d-71"},{"uid":"aa2d-8"},{"uid":"aa2d-16"},{"uid":"aa2d-28"},{"uid":"aa2d-36"},{"uid":"aa2d-38"},{"uid":"aa2d-40"},{"uid":"aa2d-42"},{"uid":"aa2d-46"},{"uid":"aa2d-12"},{"uid":"aa2d-6"},{"uid":"aa2d-48"},{"uid":"aa2d-30"},{"uid":"aa2d-65"},{"uid":"aa2d-75"},{"uid":"aa2d-20"},{"uid":"aa2d-77"},{"uid":"aa2d-79"},{"uid":"aa2d-44"},{"uid":"aa2d-63"},{"uid":"aa2d-18"}],"isExternal":true},"aa2d-82":{"id":"element-plus/dist/index.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-0"}],"isExternal":true},"aa2d-83":{"id":"jsoneditor/dist/jsoneditor.min.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-0"}],"isExternal":true},"aa2d-84":{"id":"starfish-form-custom","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-0"},{"uid":"aa2d-16"}],"isExternal":true},"aa2d-85":{"id":"starfish-form-custom/dist/style.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-0"}],"isExternal":true},"aa2d-86":{"id":"vuedraggable","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-0"}],"isExternal":true},"aa2d-87":{"id":"mitt","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-4"}],"isExternal":true},"aa2d-88":{"id":"element-plus","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-10"}],"isExternal":true},"aa2d-89":{"id":"nanoid","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-10"}],"isExternal":true},"aa2d-90":{"id":"element-plus/es","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-26"},{"uid":"aa2d-59"},{"uid":"aa2d-61"},{"uid":"aa2d-67"},{"uid":"aa2d-71"},{"uid":"aa2d-16"},{"uid":"aa2d-28"},{"uid":"aa2d-38"},{"uid":"aa2d-40"},{"uid":"aa2d-65"},{"uid":"aa2d-63"}],"isExternal":true},"aa2d-91":{"id":"element-plus/es/components/base/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-26"},{"uid":"aa2d-59"},{"uid":"aa2d-61"},{"uid":"aa2d-67"},{"uid":"aa2d-71"},{"uid":"aa2d-16"},{"uid":"aa2d-28"},{"uid":"aa2d-38"},{"uid":"aa2d-40"},{"uid":"aa2d-65"},{"uid":"aa2d-63"}],"isExternal":true},"aa2d-92":{"id":"element-plus/es/components/loading/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-26"}],"isExternal":true},"aa2d-93":{"id":"element-plus/es/components/dialog/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-59"}],"isExternal":true},"aa2d-94":{"id":"element-plus/es/components/container/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-61"},{"uid":"aa2d-67"},{"uid":"aa2d-63"}],"isExternal":true},"aa2d-95":{"id":"element-plus/es/components/footer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-61"},{"uid":"aa2d-67"},{"uid":"aa2d-71"},{"uid":"aa2d-16"},{"uid":"aa2d-40"},{"uid":"aa2d-63"}],"isExternal":true},"aa2d-96":{"id":"element-plus/es/components/main/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-61"},{"uid":"aa2d-67"},{"uid":"aa2d-63"}],"isExternal":true},"aa2d-97":{"id":"element-plus/es/components/table/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-61"},{"uid":"aa2d-63"}],"isExternal":true},"aa2d-98":{"id":"element-plus/es/components/button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-61"},{"uid":"aa2d-67"},{"uid":"aa2d-71"},{"uid":"aa2d-16"},{"uid":"aa2d-38"},{"uid":"aa2d-40"},{"uid":"aa2d-65"},{"uid":"aa2d-63"}],"isExternal":true},"aa2d-99":{"id":"element-plus/es/components/switch/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-61"},{"uid":"aa2d-63"}],"isExternal":true},"aa2d-100":{"id":"element-plus/es/components/form/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-61"},{"uid":"aa2d-28"},{"uid":"aa2d-63"}],"isExternal":true},"aa2d-101":{"id":"element-plus/es/components/form-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-61"},{"uid":"aa2d-28"},{"uid":"aa2d-63"}],"isExternal":true},"aa2d-102":{"id":"element-plus/es/components/input/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-61"},{"uid":"aa2d-38"},{"uid":"aa2d-40"},{"uid":"aa2d-63"}],"isExternal":true},"aa2d-103":{"id":"element-plus/es/components/table-column/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-61"},{"uid":"aa2d-63"}],"isExternal":true},"aa2d-104":{"id":"element-plus/es/components/select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-61"},{"uid":"aa2d-65"},{"uid":"aa2d-63"}],"isExternal":true},"aa2d-105":{"id":"element-plus/es/components/option/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-61"},{"uid":"aa2d-65"},{"uid":"aa2d-63"}],"isExternal":true},"aa2d-106":{"id":"element-plus/es/components/tooltip/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-71"},{"uid":"aa2d-40"}],"isExternal":true},"aa2d-107":{"id":"@codemirror/lang-css","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-71"}],"isExternal":true},"aa2d-108":{"id":"vue-codemirror","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-71"},{"uid":"aa2d-75"}],"isExternal":true},"aa2d-109":{"id":"clipboard","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-16"}],"isExternal":true},"aa2d-110":{"id":"element-plus/es/components/message/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-16"},{"uid":"aa2d-40"},{"uid":"aa2d-63"}],"isExternal":true},"aa2d-111":{"id":"element-plus/es/components/tabs/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-28"}],"isExternal":true},"aa2d-112":{"id":"element-plus/es/components/tab-pane/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-28"}],"isExternal":true},"aa2d-113":{"id":"element-plus/es/components/empty/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-28"}],"isExternal":true},"aa2d-114":{"id":"element-plus/es/components/notification/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-28"}],"isExternal":true},"aa2d-115":{"id":"element-plus/es/components/upload/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-40"}],"isExternal":true},"aa2d-116":{"id":"element-plus/es/components/drawer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-40"}],"isExternal":true},"aa2d-117":{"id":"element-plus/es/components/tree/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-40"}],"isExternal":true},"aa2d-118":{"id":"keycon","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-50"}],"isExternal":true},"aa2d-119":{"id":"@codemirror/lang-json","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-75"}],"isExternal":true},"aa2d-120":{"id":"jsoneditor","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-77"}],"isExternal":true},"aa2d-121":{"id":"gesto","moduleParts":{},"imported":[],"importedBy":[{"uid":"aa2d-44"}],"isExternal":true}},"env":{"rollup":"2.75.6"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
|
|
6160
|
+
const data = {"version":2,"tree":{"name":"root","children":[{"name":"starfish-editor.es.js","uid":"9124-1"},{"name":"main.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src","children":[{"name":"styles/index.scss","uid":"9124-3"},{"name":"utils","children":[{"uid":"9124-5","name":"vm.ts"},{"uid":"9124-11","name":"_.ts"},{"uid":"9124-33","name":"formKeycon.ts"},{"uid":"9124-51","name":"shortcutKey.ts"}]},{"name":"controller","children":[{"uid":"9124-7","name":"history.ts"},{"uid":"9124-9","name":"form.ts"},{"uid":"9124-13","name":"ui.ts"},{"uid":"9124-31","name":"shortcut.ts"},{"uid":"9124-49","name":"action.ts"}]},{"name":"components","children":[{"uid":"9124-17","name":"FormPreview.vue"},{"uid":"9124-29","name":"PropsPanel.vue"},{"uid":"9124-35","name":"Shape.vue"},{"uid":"9124-37","name":"Workspace.vue"},{"uid":"9124-39","name":"ComponentList.vue"},{"uid":"9124-41","name":"NavList.vue"},{"uid":"9124-43","name":"Nav.vue"}]},{"name":"layouts","children":[{"uid":"9124-19","name":"ShortcutKey.vue"},{"uid":"9124-21","name":"ControlEditSize.vue"},{"uid":"9124-45","name":"Resizer.vue"},{"uid":"9124-47","name":"Framework.vue"}]},{"name":"common","children":[{"uid":"9124-23","name":"formJson.ts"},{"uid":"9124-25","name":"Loading.vue?vue&type=style&index=0&scoped=true&lang.scss"},{"uid":"9124-27","name":"Loading.vue"}]},{"uid":"9124-53","name":"starfish-editor.vue?vue&type=style&index=0&lang.css"},{"uid":"9124-55","name":"starfish-editor.vue"},{"uid":"9124-56","name":"main.ts"}]},{"uid":"9124-15","name":"plugin-vue:export-helper"}]},{"name":"CustomDialog.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common","children":[{"uid":"9124-58","name":"CustomDialog.vue?vue&type=style&index=0&scoped=true&lang.css"},{"uid":"9124-60","name":"CustomDialog.vue"}]}]},{"name":"ConditionSelect.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect.vue","uid":"9124-62"}]},{"name":"ConditionModule.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect","children":[{"uid":"9124-64","name":"ConditionTanc.vue"},{"uid":"9124-66","name":"ConditionGroup.vue"},{"uid":"9124-68","name":"ConditionModule.vue"}]}]},{"name":"formStyle.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common","children":[{"uid":"9124-70","name":"formStyle.vue?vue&type=style&index=0&lang.scss"},{"uid":"9124-72","name":"formStyle.vue"}]}]},{"name":"jsonCode.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common","children":[{"uid":"9124-74","name":"jsonCode.vue?vue&type=style&index=0&lang.scss"},{"uid":"9124-76","name":"jsonCode.vue"}]}]},{"name":"jsonEditor.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/jsonEditor.vue","uid":"9124-78"}]},{"name":"globalFormList.js","children":[{"name":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/globalFormList.vue","uid":"9124-80"}]}],"isRoot":true},"nodeParts":{"9124-1":{"id":"starfish-editor.es.js","gzipLength":0,"brotliLength":0,"renderedLength":1218,"metaUid":"9124-0"},"9124-3":{"renderedLength":67033,"gzipLength":0,"brotliLength":0,"metaUid":"9124-2"},"9124-5":{"renderedLength":16,"gzipLength":0,"brotliLength":0,"metaUid":"9124-4"},"9124-7":{"renderedLength":1613,"gzipLength":0,"brotliLength":0,"metaUid":"9124-6"},"9124-9":{"renderedLength":5583,"gzipLength":0,"brotliLength":0,"metaUid":"9124-8"},"9124-11":{"renderedLength":9431,"gzipLength":0,"brotliLength":0,"metaUid":"9124-10"},"9124-13":{"renderedLength":2025,"gzipLength":0,"brotliLength":0,"metaUid":"9124-12"},"9124-15":{"renderedLength":157,"gzipLength":0,"brotliLength":0,"metaUid":"9124-14"},"9124-17":{"renderedLength":7683,"gzipLength":0,"brotliLength":0,"metaUid":"9124-16"},"9124-19":{"renderedLength":1858,"gzipLength":0,"brotliLength":0,"metaUid":"9124-18"},"9124-21":{"renderedLength":2836,"gzipLength":0,"brotliLength":0,"metaUid":"9124-20"},"9124-23":{"renderedLength":1187,"gzipLength":0,"brotliLength":0,"metaUid":"9124-22"},"9124-25":{"renderedLength":192,"gzipLength":0,"brotliLength":0,"metaUid":"9124-24"},"9124-27":{"renderedLength":400,"gzipLength":0,"brotliLength":0,"metaUid":"9124-26"},"9124-29":{"renderedLength":16694,"gzipLength":0,"brotliLength":0,"metaUid":"9124-28"},"9124-31":{"renderedLength":1832,"gzipLength":0,"brotliLength":0,"metaUid":"9124-30"},"9124-33":{"renderedLength":457,"gzipLength":0,"brotliLength":0,"metaUid":"9124-32"},"9124-35":{"renderedLength":6369,"gzipLength":0,"brotliLength":0,"metaUid":"9124-34"},"9124-37":{"renderedLength":9051,"gzipLength":0,"brotliLength":0,"metaUid":"9124-36"},"9124-39":{"renderedLength":5871,"gzipLength":0,"brotliLength":0,"metaUid":"9124-38"},"9124-41":{"renderedLength":19472,"gzipLength":0,"brotliLength":0,"metaUid":"9124-40"},"9124-43":{"renderedLength":8406,"gzipLength":0,"brotliLength":0,"metaUid":"9124-42"},"9124-45":{"renderedLength":1138,"gzipLength":0,"brotliLength":0,"metaUid":"9124-44"},"9124-47":{"renderedLength":2712,"gzipLength":0,"brotliLength":0,"metaUid":"9124-46"},"9124-49":{"renderedLength":466,"gzipLength":0,"brotliLength":0,"metaUid":"9124-48"},"9124-51":{"renderedLength":1024,"gzipLength":0,"brotliLength":0,"metaUid":"9124-50"},"9124-53":{"renderedLength":260,"gzipLength":0,"brotliLength":0,"metaUid":"9124-52"},"9124-55":{"renderedLength":3983,"gzipLength":0,"brotliLength":0,"metaUid":"9124-54"},"9124-56":{"renderedLength":1112,"gzipLength":0,"brotliLength":0,"metaUid":"9124-0"},"9124-58":{"renderedLength":272,"gzipLength":0,"brotliLength":0,"metaUid":"9124-57"},"9124-60":{"renderedLength":2123,"gzipLength":0,"brotliLength":0,"metaUid":"9124-59"},"9124-62":{"renderedLength":18742,"gzipLength":0,"brotliLength":0,"metaUid":"9124-61"},"9124-64":{"renderedLength":17222,"gzipLength":0,"brotliLength":0,"metaUid":"9124-63"},"9124-66":{"renderedLength":8014,"gzipLength":0,"brotliLength":0,"metaUid":"9124-65"},"9124-68":{"renderedLength":5784,"gzipLength":0,"brotliLength":0,"metaUid":"9124-67"},"9124-70":{"renderedLength":166,"gzipLength":0,"brotliLength":0,"metaUid":"9124-69"},"9124-72":{"renderedLength":6954,"gzipLength":0,"brotliLength":0,"metaUid":"9124-71"},"9124-74":{"renderedLength":187,"gzipLength":0,"brotliLength":0,"metaUid":"9124-73"},"9124-76":{"renderedLength":1553,"gzipLength":0,"brotliLength":0,"metaUid":"9124-75"},"9124-78":{"renderedLength":1338,"gzipLength":0,"brotliLength":0,"metaUid":"9124-77"},"9124-80":{"renderedLength":1044,"gzipLength":0,"brotliLength":0,"metaUid":"9124-79"}},"nodeMetas":{"9124-0":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/main.ts","moduleParts":{"starfish-editor.es.js":"9124-1","main.js":"9124-56"},"imported":[{"uid":"9124-81"},{"uid":"9124-82"},{"uid":"9124-2"},{"uid":"9124-83"},{"uid":"9124-84"},{"uid":"9124-4"},{"uid":"9124-10"},{"uid":"9124-85"},{"uid":"9124-54"},{"uid":"9124-26"},{"uid":"9124-59","dynamic":true},{"uid":"9124-61","dynamic":true},{"uid":"9124-67","dynamic":true},{"uid":"9124-86","dynamic":true},{"uid":"9124-34","dynamic":true},{"uid":"9124-71","dynamic":true}],"importedBy":[],"isEntry":true},"9124-2":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/styles/index.scss","moduleParts":{"main.js":"9124-3"},"imported":[],"importedBy":[{"uid":"9124-0"}]},"9124-4":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/vm.ts","moduleParts":{"main.js":"9124-5"},"imported":[{"uid":"9124-87"}],"importedBy":[{"uid":"9124-0"}]},"9124-6":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/history.ts","moduleParts":{"main.js":"9124-7"},"imported":[{"uid":"9124-81"},{"uid":"9124-8"}],"importedBy":[{"uid":"9124-54"},{"uid":"9124-8"},{"uid":"9124-50"}]},"9124-8":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/form.ts","moduleParts":{"main.js":"9124-9"},"imported":[{"uid":"9124-81"},{"uid":"9124-6"}],"importedBy":[{"uid":"9124-10"},{"uid":"9124-54"},{"uid":"9124-61"},{"uid":"9124-67"},{"uid":"9124-16"},{"uid":"9124-38"},{"uid":"9124-6"},{"uid":"9124-30"}]},"9124-10":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/_.ts","moduleParts":{"main.js":"9124-11"},"imported":[{"uid":"9124-88"},{"uid":"9124-89"},{"uid":"9124-8"}],"importedBy":[{"uid":"9124-0"}]},"9124-12":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/ui.ts","moduleParts":{"main.js":"9124-13"},"imported":[{"uid":"9124-81"}],"importedBy":[{"uid":"9124-54"},{"uid":"9124-16"}]},"9124-14":{"id":"plugin-vue:export-helper","moduleParts":{"main.js":"9124-15"},"imported":[],"importedBy":[{"uid":"9124-54"},{"uid":"9124-26"},{"uid":"9124-59"},{"uid":"9124-61"},{"uid":"9124-67"},{"uid":"9124-34"},{"uid":"9124-71"},{"uid":"9124-16"},{"uid":"9124-28"},{"uid":"9124-36"},{"uid":"9124-38"},{"uid":"9124-40"},{"uid":"9124-42"},{"uid":"9124-46"},{"uid":"9124-65"},{"uid":"9124-75"},{"uid":"9124-20"},{"uid":"9124-77"},{"uid":"9124-79"},{"uid":"9124-44"},{"uid":"9124-63"},{"uid":"9124-18"}]},"9124-16":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/FormPreview.vue","moduleParts":{"main.js":"9124-17"},"imported":[{"uid":"9124-90"},{"uid":"9124-91"},{"uid":"9124-95"},{"uid":"9124-98"},{"uid":"9124-81"},{"uid":"9124-8"},{"uid":"9124-84"},{"uid":"9124-12"},{"uid":"9124-109"},{"uid":"9124-14"},{"uid":"9124-110"},{"uid":"9124-75","dynamic":true}],"importedBy":[{"uid":"9124-54"}]},"9124-18":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/layouts/ShortcutKey.vue","moduleParts":{"main.js":"9124-19"},"imported":[{"uid":"9124-81"},{"uid":"9124-14"}],"importedBy":[{"uid":"9124-20"}]},"9124-20":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/layouts/ControlEditSize.vue","moduleParts":{"main.js":"9124-21"},"imported":[{"uid":"9124-81"},{"uid":"9124-18"},{"uid":"9124-14"}],"importedBy":[{"uid":"9124-28"}]},"9124-22":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/formJson.ts","moduleParts":{"main.js":"9124-23"},"imported":[],"importedBy":[{"uid":"9124-28"}]},"9124-24":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue?vue&type=style&index=0&scoped=true&lang.scss","moduleParts":{"main.js":"9124-25"},"imported":[],"importedBy":[{"uid":"9124-26"}]},"9124-26":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/Loading.vue","moduleParts":{"main.js":"9124-27"},"imported":[{"uid":"9124-90"},{"uid":"9124-91"},{"uid":"9124-92"},{"uid":"9124-81"},{"uid":"9124-24"},{"uid":"9124-14"}],"importedBy":[{"uid":"9124-0"},{"uid":"9124-28"}]},"9124-28":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/PropsPanel.vue","moduleParts":{"main.js":"9124-29"},"imported":[{"uid":"9124-90"},{"uid":"9124-91"},{"uid":"9124-111"},{"uid":"9124-112"},{"uid":"9124-113"},{"uid":"9124-100"},{"uid":"9124-101"},{"uid":"9124-81"},{"uid":"9124-20"},{"uid":"9124-22"},{"uid":"9124-26"},{"uid":"9124-14"},{"uid":"9124-114"},{"uid":"9124-77","dynamic":true},{"uid":"9124-79","dynamic":true}],"importedBy":[{"uid":"9124-54"}]},"9124-30":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/shortcut.ts","moduleParts":{"main.js":"9124-31"},"imported":[{"uid":"9124-81"},{"uid":"9124-8"}],"importedBy":[{"uid":"9124-54"},{"uid":"9124-32"}]},"9124-32":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/formKeycon.ts","moduleParts":{"main.js":"9124-33"},"imported":[{"uid":"9124-30"}],"importedBy":[{"uid":"9124-54"},{"uid":"9124-34"},{"uid":"9124-36"},{"uid":"9124-40"}]},"9124-34":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/Shape.vue","moduleParts":{"main.js":"9124-35"},"imported":[{"uid":"9124-81"},{"uid":"9124-32"},{"uid":"9124-14"}],"importedBy":[{"uid":"9124-0"},{"uid":"9124-36"}]},"9124-36":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/Workspace.vue","moduleParts":{"main.js":"9124-37"},"imported":[{"uid":"9124-34"},{"uid":"9124-81"},{"uid":"9124-32"},{"uid":"9124-14"}],"importedBy":[{"uid":"9124-54"}]},"9124-38":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/ComponentList.vue","moduleParts":{"main.js":"9124-39"},"imported":[{"uid":"9124-90"},{"uid":"9124-91"},{"uid":"9124-98"},{"uid":"9124-102"},{"uid":"9124-81"},{"uid":"9124-8"},{"uid":"9124-14"}],"importedBy":[{"uid":"9124-54"}]},"9124-40":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/NavList.vue","moduleParts":{"main.js":"9124-41"},"imported":[{"uid":"9124-90"},{"uid":"9124-91"},{"uid":"9124-95"},{"uid":"9124-115"},{"uid":"9124-98"},{"uid":"9124-116"},{"uid":"9124-117"},{"uid":"9124-102"},{"uid":"9124-106"},{"uid":"9124-81"},{"uid":"9124-32"},{"uid":"9124-110"},{"uid":"9124-14"},{"uid":"9124-75","dynamic":true}],"importedBy":[{"uid":"9124-54"}]},"9124-42":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/Nav.vue","moduleParts":{"main.js":"9124-43"},"imported":[{"uid":"9124-81"},{"uid":"9124-14"}],"importedBy":[{"uid":"9124-54"}]},"9124-44":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/layouts/Resizer.vue","moduleParts":{"main.js":"9124-45"},"imported":[{"uid":"9124-81"},{"uid":"9124-121"},{"uid":"9124-14"}],"importedBy":[{"uid":"9124-46"}]},"9124-46":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/layouts/Framework.vue","moduleParts":{"main.js":"9124-47"},"imported":[{"uid":"9124-81"},{"uid":"9124-44"},{"uid":"9124-14"}],"importedBy":[{"uid":"9124-54"}]},"9124-48":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/controller/action.ts","moduleParts":{"main.js":"9124-49"},"imported":[{"uid":"9124-81"}],"importedBy":[{"uid":"9124-54"}]},"9124-50":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/utils/shortcutKey.ts","moduleParts":{"main.js":"9124-51"},"imported":[{"uid":"9124-118"},{"uid":"9124-6"}],"importedBy":[{"uid":"9124-54"}]},"9124-52":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/starfish-editor.vue?vue&type=style&index=0&lang.css","moduleParts":{"main.js":"9124-53"},"imported":[],"importedBy":[{"uid":"9124-54"}]},"9124-54":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/starfish-editor.vue","moduleParts":{"main.js":"9124-55"},"imported":[{"uid":"9124-16"},{"uid":"9124-28"},{"uid":"9124-36"},{"uid":"9124-38"},{"uid":"9124-40"},{"uid":"9124-42"},{"uid":"9124-81"},{"uid":"9124-46"},{"uid":"9124-12"},{"uid":"9124-6"},{"uid":"9124-8"},{"uid":"9124-48"},{"uid":"9124-30"},{"uid":"9124-50"},{"uid":"9124-32"},{"uid":"9124-52"},{"uid":"9124-14"},{"uid":"9124-16","dynamic":true}],"importedBy":[{"uid":"9124-0"}]},"9124-57":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/CustomDialog.vue?vue&type=style&index=0&scoped=true&lang.css","moduleParts":{"CustomDialog.js":"9124-58"},"imported":[],"importedBy":[{"uid":"9124-59"}]},"9124-59":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/CustomDialog.vue","moduleParts":{"CustomDialog.js":"9124-60"},"imported":[{"uid":"9124-90"},{"uid":"9124-91"},{"uid":"9124-93"},{"uid":"9124-81"},{"uid":"9124-57"},{"uid":"9124-14"}],"importedBy":[{"uid":"9124-0"}]},"9124-61":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect.vue","moduleParts":{"ConditionSelect.js":"9124-62"},"imported":[{"uid":"9124-90"},{"uid":"9124-91"},{"uid":"9124-94"},{"uid":"9124-95"},{"uid":"9124-96"},{"uid":"9124-97"},{"uid":"9124-98"},{"uid":"9124-99"},{"uid":"9124-100"},{"uid":"9124-101"},{"uid":"9124-102"},{"uid":"9124-103"},{"uid":"9124-104"},{"uid":"9124-105"},{"uid":"9124-81"},{"uid":"9124-8"},{"uid":"9124-14"}],"importedBy":[{"uid":"9124-0"}]},"9124-63":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect/ConditionTanc.vue","moduleParts":{"ConditionModule.js":"9124-64"},"imported":[{"uid":"9124-90"},{"uid":"9124-91"},{"uid":"9124-94"},{"uid":"9124-95"},{"uid":"9124-96"},{"uid":"9124-97"},{"uid":"9124-98"},{"uid":"9124-99"},{"uid":"9124-100"},{"uid":"9124-101"},{"uid":"9124-102"},{"uid":"9124-103"},{"uid":"9124-104"},{"uid":"9124-105"},{"uid":"9124-110"},{"uid":"9124-81"},{"uid":"9124-14"}],"importedBy":[{"uid":"9124-65"}]},"9124-65":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect/ConditionGroup.vue","moduleParts":{"ConditionModule.js":"9124-66"},"imported":[{"uid":"9124-90"},{"uid":"9124-91"},{"uid":"9124-98"},{"uid":"9124-104"},{"uid":"9124-105"},{"uid":"9124-63"},{"uid":"9124-81"},{"uid":"9124-14"}],"importedBy":[{"uid":"9124-67"}]},"9124-67":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/ConditionSelect/ConditionModule.vue","moduleParts":{"ConditionModule.js":"9124-68"},"imported":[{"uid":"9124-90"},{"uid":"9124-91"},{"uid":"9124-94"},{"uid":"9124-95"},{"uid":"9124-98"},{"uid":"9124-96"},{"uid":"9124-65"},{"uid":"9124-8"},{"uid":"9124-81"},{"uid":"9124-14"}],"importedBy":[{"uid":"9124-0"}]},"9124-69":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/formStyle.vue?vue&type=style&index=0&lang.scss","moduleParts":{"formStyle.js":"9124-70"},"imported":[],"importedBy":[{"uid":"9124-71"}]},"9124-71":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/formStyle.vue","moduleParts":{"formStyle.js":"9124-72"},"imported":[{"uid":"9124-90"},{"uid":"9124-91"},{"uid":"9124-95"},{"uid":"9124-98"},{"uid":"9124-106"},{"uid":"9124-81"},{"uid":"9124-107"},{"uid":"9124-108"},{"uid":"9124-69"},{"uid":"9124-14"}],"importedBy":[{"uid":"9124-0"}]},"9124-73":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/jsonCode.vue?vue&type=style&index=0&lang.scss","moduleParts":{"jsonCode.js":"9124-74"},"imported":[],"importedBy":[{"uid":"9124-75"}]},"9124-75":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/common/jsonCode.vue","moduleParts":{"jsonCode.js":"9124-76"},"imported":[{"uid":"9124-81"},{"uid":"9124-119"},{"uid":"9124-108"},{"uid":"9124-73"},{"uid":"9124-14"}],"importedBy":[{"uid":"9124-16"},{"uid":"9124-40"}]},"9124-77":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/jsonEditor.vue","moduleParts":{"jsonEditor.js":"9124-78"},"imported":[{"uid":"9124-81"},{"uid":"9124-120"},{"uid":"9124-14"}],"importedBy":[{"uid":"9124-28"}]},"9124-79":{"id":"C:/Users/jiton/project/vue-form-design/vue-form-design/packages/editor/src/components/globalFormList.vue","moduleParts":{"globalFormList.js":"9124-80"},"imported":[{"uid":"9124-81"},{"uid":"9124-14"}],"importedBy":[{"uid":"9124-28"}]},"9124-81":{"id":"vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-0"},{"uid":"9124-54"},{"uid":"9124-26"},{"uid":"9124-59"},{"uid":"9124-61"},{"uid":"9124-67"},{"uid":"9124-34"},{"uid":"9124-71"},{"uid":"9124-8"},{"uid":"9124-16"},{"uid":"9124-28"},{"uid":"9124-36"},{"uid":"9124-38"},{"uid":"9124-40"},{"uid":"9124-42"},{"uid":"9124-46"},{"uid":"9124-12"},{"uid":"9124-6"},{"uid":"9124-48"},{"uid":"9124-30"},{"uid":"9124-65"},{"uid":"9124-75"},{"uid":"9124-20"},{"uid":"9124-77"},{"uid":"9124-79"},{"uid":"9124-44"},{"uid":"9124-63"},{"uid":"9124-18"}],"isExternal":true},"9124-82":{"id":"element-plus/dist/index.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-0"}],"isExternal":true},"9124-83":{"id":"jsoneditor/dist/jsoneditor.min.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-0"}],"isExternal":true},"9124-84":{"id":"starfish-form-custom","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-0"},{"uid":"9124-16"}],"isExternal":true},"9124-85":{"id":"starfish-form-custom/dist/style.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-0"}],"isExternal":true},"9124-86":{"id":"vuedraggable","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-0"}],"isExternal":true},"9124-87":{"id":"mitt","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-4"}],"isExternal":true},"9124-88":{"id":"element-plus","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-10"}],"isExternal":true},"9124-89":{"id":"nanoid","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-10"}],"isExternal":true},"9124-90":{"id":"element-plus/es","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-26"},{"uid":"9124-59"},{"uid":"9124-61"},{"uid":"9124-67"},{"uid":"9124-71"},{"uid":"9124-16"},{"uid":"9124-28"},{"uid":"9124-38"},{"uid":"9124-40"},{"uid":"9124-65"},{"uid":"9124-63"}],"isExternal":true},"9124-91":{"id":"element-plus/es/components/base/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-26"},{"uid":"9124-59"},{"uid":"9124-61"},{"uid":"9124-67"},{"uid":"9124-71"},{"uid":"9124-16"},{"uid":"9124-28"},{"uid":"9124-38"},{"uid":"9124-40"},{"uid":"9124-65"},{"uid":"9124-63"}],"isExternal":true},"9124-92":{"id":"element-plus/es/components/loading/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-26"}],"isExternal":true},"9124-93":{"id":"element-plus/es/components/dialog/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-59"}],"isExternal":true},"9124-94":{"id":"element-plus/es/components/container/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-61"},{"uid":"9124-67"},{"uid":"9124-63"}],"isExternal":true},"9124-95":{"id":"element-plus/es/components/footer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-61"},{"uid":"9124-67"},{"uid":"9124-71"},{"uid":"9124-16"},{"uid":"9124-40"},{"uid":"9124-63"}],"isExternal":true},"9124-96":{"id":"element-plus/es/components/main/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-61"},{"uid":"9124-67"},{"uid":"9124-63"}],"isExternal":true},"9124-97":{"id":"element-plus/es/components/table/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-61"},{"uid":"9124-63"}],"isExternal":true},"9124-98":{"id":"element-plus/es/components/button/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-61"},{"uid":"9124-67"},{"uid":"9124-71"},{"uid":"9124-16"},{"uid":"9124-38"},{"uid":"9124-40"},{"uid":"9124-65"},{"uid":"9124-63"}],"isExternal":true},"9124-99":{"id":"element-plus/es/components/switch/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-61"},{"uid":"9124-63"}],"isExternal":true},"9124-100":{"id":"element-plus/es/components/form/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-61"},{"uid":"9124-28"},{"uid":"9124-63"}],"isExternal":true},"9124-101":{"id":"element-plus/es/components/form-item/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-61"},{"uid":"9124-28"},{"uid":"9124-63"}],"isExternal":true},"9124-102":{"id":"element-plus/es/components/input/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-61"},{"uid":"9124-38"},{"uid":"9124-40"},{"uid":"9124-63"}],"isExternal":true},"9124-103":{"id":"element-plus/es/components/table-column/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-61"},{"uid":"9124-63"}],"isExternal":true},"9124-104":{"id":"element-plus/es/components/select/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-61"},{"uid":"9124-65"},{"uid":"9124-63"}],"isExternal":true},"9124-105":{"id":"element-plus/es/components/option/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-61"},{"uid":"9124-65"},{"uid":"9124-63"}],"isExternal":true},"9124-106":{"id":"element-plus/es/components/tooltip/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-71"},{"uid":"9124-40"}],"isExternal":true},"9124-107":{"id":"@codemirror/lang-css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-71"}],"isExternal":true},"9124-108":{"id":"vue-codemirror","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-71"},{"uid":"9124-75"}],"isExternal":true},"9124-109":{"id":"clipboard","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-16"}],"isExternal":true},"9124-110":{"id":"element-plus/es/components/message/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-16"},{"uid":"9124-40"},{"uid":"9124-63"}],"isExternal":true},"9124-111":{"id":"element-plus/es/components/tabs/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-28"}],"isExternal":true},"9124-112":{"id":"element-plus/es/components/tab-pane/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-28"}],"isExternal":true},"9124-113":{"id":"element-plus/es/components/empty/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-28"}],"isExternal":true},"9124-114":{"id":"element-plus/es/components/notification/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-28"}],"isExternal":true},"9124-115":{"id":"element-plus/es/components/upload/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-40"}],"isExternal":true},"9124-116":{"id":"element-plus/es/components/drawer/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-40"}],"isExternal":true},"9124-117":{"id":"element-plus/es/components/tree/style/css","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-40"}],"isExternal":true},"9124-118":{"id":"keycon","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-50"}],"isExternal":true},"9124-119":{"id":"@codemirror/lang-json","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-75"}],"isExternal":true},"9124-120":{"id":"jsoneditor","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-77"}],"isExternal":true},"9124-121":{"id":"gesto","moduleParts":{},"imported":[],"importedBy":[{"uid":"9124-44"}],"isExternal":true}},"env":{"rollup":"2.75.6"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
|
|
6161
6161
|
|
|
6162
6162
|
const run = () => {
|
|
6163
6163
|
const width = window.innerWidth;
|