starfish-form-custom 1.0.8 → 1.0.10
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-f843601f.mjs → formAction-98d7b1d5.mjs} +1 -1
- package/dist/{index-4562877b.mjs → index-3a0f2ea7.mjs} +1 -1
- package/dist/{index-2e0c01c5.mjs → index-5d524f9b.mjs} +2 -2
- package/dist/{index-12dcef92.mjs → index-a096155f.mjs} +1 -1
- package/dist/{main-91ffa57a.mjs → main-8985b8a9.mjs} +192 -112
- package/dist/{starfish-form-91475fa0.mjs → starfish-form-169cfab7.mjs} +1 -1
- package/dist/starfish-form.mjs +1 -1
- package/dist/style.css +7 -0
- package/package.json +1 -1
- package/src/components/CheckBox/index.vue +2 -2
- package/src/components/Date/index.vue +44 -3
- package/src/components/InputNumber/index.vue +81 -37
- package/src/components/Radio/index.vue +71 -29
- package/src/components/Selected/index.vue +89 -37
- package/src/components/Selecteds/index.vue +91 -37
- package/src/components/Switch/index.vue +7 -1
- package/src/components/Text/index.vue +85 -37
- package/src/components/TextArea/index.vue +88 -38
- package/src/components/Time/index.vue +4 -2
- package/src/styles/formedit.scss +5 -0
- package/src/utils/fieldConfig.ts +45 -45
- package/stats.html +1 -1
|
@@ -11,7 +11,7 @@ import 'element-plus/es/components/button/style/css';
|
|
|
11
11
|
import 'element-plus/es/components/tooltip/style/css';
|
|
12
12
|
import { defineComponent, inject, ref, getCurrentInstance, reactive, onMounted, resolveComponent, openBlock, createElementBlock, normalizeClass, normalizeStyle, createElementVNode, toDisplayString, createCommentVNode, createBlock, withCtx, createVNode, Fragment, renderList, withModifiers, createTextVNode } from 'vue';
|
|
13
13
|
import { Codemirror } from 'vue-codemirror';
|
|
14
|
-
import { _ as _export_sfc } from './main-
|
|
14
|
+
import { _ as _export_sfc } from './main-8985b8a9.mjs';
|
|
15
15
|
import 'element-plus/es/components/icon/style/css';
|
|
16
16
|
import 'element-plus/es/components/checkbox/style/css';
|
|
17
17
|
import '@element-plus/icons-vue';
|
|
@@ -3,7 +3,7 @@ import 'element-plus/es/components/base/style/css';
|
|
|
3
3
|
import 'element-plus/es/components/tooltip/style/css';
|
|
4
4
|
import { defineComponent, ref, onMounted, onUnmounted, openBlock, createElementBlock, normalizeClass, createElementVNode, normalizeStyle, toDisplayString, createCommentVNode, createBlock, withCtx } from 'vue';
|
|
5
5
|
import E from 'wangeditor';
|
|
6
|
-
import { _ as _export_sfc, g as getFormConfig, f as fieldProps, u as useWatch } from './main-
|
|
6
|
+
import { _ as _export_sfc, g as getFormConfig, f as fieldProps, u as useWatch } from './main-8985b8a9.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';
|
|
@@ -15,9 +15,9 @@ import 'element-plus/es/components/select/style/css';
|
|
|
15
15
|
import 'element-plus/es/components/option/style/css';
|
|
16
16
|
import 'element-plus/es/components/tooltip/style/css';
|
|
17
17
|
import { defineComponent, getCurrentInstance, inject, computed, ref, resolveComponent, openBlock, createElementBlock, normalizeClass, createElementVNode, normalizeStyle, toDisplayString, createCommentVNode, createBlock, withCtx, Fragment, renderList, createVNode, createTextVNode } from 'vue';
|
|
18
|
-
import { _ as _export_sfc, a as _, f as fieldProps, r as ruleList, b as ruleJsonData } from './main-
|
|
18
|
+
import { _ as _export_sfc, a as _, f as fieldProps, r as ruleList, b as ruleJsonData } from './main-8985b8a9.mjs';
|
|
19
19
|
import { Delete } from '@element-plus/icons-vue';
|
|
20
|
-
import Dynamicform from './starfish-form-
|
|
20
|
+
import Dynamicform from './starfish-form-169cfab7.mjs';
|
|
21
21
|
import { Codemirror } from 'vue-codemirror';
|
|
22
22
|
import 'element-plus/es/components/input/style/css';
|
|
23
23
|
import 'element-plus/es/components/checkbox/style/css';
|
|
@@ -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-8985b8a9.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';
|