@vunk/form 1.1.54 → 1.1.58
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/components/button/src/ctx.d.ts +1 -1
- package/components/button/src/index.vue.d.ts +2 -2
- package/components/cascader/src/ctx.d.ts +1 -1
- package/components/cascader/src/index.vue.d.ts +2 -2
- package/components/checkbox/src/ctx.d.ts +1 -1
- package/components/checkbox/src/index.vue.d.ts +2 -2
- package/components/color-picker/src/ctx.d.ts +1 -1
- package/components/color-picker/src/index.vue.d.ts +2 -2
- package/components/date-picker/src/ctx.d.ts +1 -1
- package/components/date-picker/src/index.vue.d.ts +2 -2
- package/components/esri-input-geojson/src/ctx.d.ts +1 -1
- package/components/esri-input-geojson/src/index.vue.d.ts +2 -2
- package/components/form/src/ctx.d.ts +1 -1
- package/components/form/src/index.vue.d.ts +3 -3
- package/components/form-item/index.js +1 -1
- package/components/form-item/src/ctx.d.ts +1 -1
- package/components/form-item/src/ctx.js +1 -1
- package/components/form-item/src/index.vue.d.ts +2 -2
- package/components/geoinput/src/ctx.d.ts +3 -1
- package/components/geoinput/src/index.vue.d.ts +2 -2
- package/components/geoinput-read/src/core.vue.d.ts +2 -2
- package/components/geoinput-read/src/ctx.d.ts +1 -1
- package/components/geoinput-read/src/index.vue.d.ts +2 -2
- package/components/geoinput-update/src/ctx.d.ts +1 -1
- package/components/geoinput-update/src/index.vue.d.ts +2 -2
- package/components/input/src/ctx.d.ts +1 -1
- package/components/input/src/index.vue.d.ts +2 -2
- package/components/input-link/src/ctx.d.ts +4 -1
- package/components/input-link/src/index.vue.d.ts +2 -2
- package/components/input-number/src/ctx.d.ts +1 -1
- package/components/input-number/src/index.vue.d.ts +2 -2
- package/components/radio/src/ctx.d.ts +1 -1
- package/components/radio/src/index.vue.d.ts +2 -2
- package/components/select/src/ctx.d.ts +1 -1
- package/components/select/src/index.vue.d.ts +2 -2
- package/components/slider/src/ctx.d.ts +1 -1
- package/components/slider/src/index.vue.d.ts +2 -2
- package/components/switch/src/ctx.d.ts +1 -1
- package/components/switch/src/index.vue.d.ts +2 -2
- package/components/upload/src/ctx.d.ts +1 -1
- package/components/upload/src/index.vue.d.ts +2 -2
- package/components/upload-plus/index.js +18085 -22
- package/components/upload-plus/src/api.d.ts +7 -2
- package/components/upload-plus/src/api.js +18058 -5
- package/components/upload-plus/src/ctx.d.ts +14 -12
- package/components/upload-plus/src/ctx.js +4 -0
- package/components/upload-plus/src/index.vue.d.ts +11 -2
- package/components/upload-plus/src/types.d.ts +1 -0
- package/components/van-cascader/src/ctx.d.ts +1 -1
- package/components/van-cascader/src/index.vue.d.ts +2 -2
- package/components/var-datetime-picker/index.css +18 -0
- package/components/var-datetime-picker/index.d.ts +4 -0
- package/components/var-datetime-picker/index.js +319 -0
- package/components/var-datetime-picker/src/const.d.ts +10 -0
- package/components/var-datetime-picker/src/const.js +91 -0
- package/components/var-datetime-picker/src/ctx.d.ts +66 -0
- package/components/var-datetime-picker/src/ctx.js +43 -0
- package/components/var-datetime-picker/src/index.vue.d.ts +172 -0
- package/components/var-datetime-picker/src/types.d.ts +15 -0
- package/components/var-datetime-picker/src/types.js +1 -0
- package/index.css +19 -0
- package/package.json +1 -1
|
@@ -143,7 +143,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
143
143
|
showMessage: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
144
144
|
formItemSize: {
|
|
145
145
|
type: import("vue").PropType<"default" | "small" | "large">;
|
|
146
|
-
default:
|
|
146
|
+
default: "default" | "small" | "large";
|
|
147
147
|
};
|
|
148
148
|
formItemSlots: {
|
|
149
149
|
type: import("vue").PropType<import("../../form-item/src/types").FormItemSlots>;
|
|
@@ -362,7 +362,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
362
362
|
showMessage: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
363
363
|
formItemSize: {
|
|
364
364
|
type: import("vue").PropType<"default" | "small" | "large">;
|
|
365
|
-
default:
|
|
365
|
+
default: "default" | "small" | "large";
|
|
366
366
|
};
|
|
367
367
|
formItemSlots: {
|
|
368
368
|
type: import("vue").PropType<import("../../form-item/src/types").FormItemSlots>;
|