@vunk/form 1.4.7 → 1.4.8
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/date-picker/src/index.vue.d.ts +4 -4
- package/components/download-plus/src/index.vue.d.ts +3 -3
- package/components/input/src/index.vue.d.ts +3 -3
- package/components/input-collection/src/index.vue.d.ts +2 -1
- package/components/input-number/index.cjs +35 -16
- package/components/input-number/index.css +0 -3
- package/components/input-number/index.mjs +35 -16
- package/components/input-number/src/ctx.d.ts +11 -5
- package/components/input-number/src/index.vue.d.ts +10 -0
- package/components/input-number/src/types.d.ts +5 -1
- package/components/upload-plus/src/index.vue.d.ts +3 -3
- package/components/van-cascader/src/index.vue.d.ts +10628 -349
- package/components/var-datetime-picker/src/index.vue.d.ts +4 -4
- package/index.css +0 -3
- package/package.json +1 -1
|
@@ -210,13 +210,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
210
210
|
__epPropKey: true;
|
|
211
211
|
};
|
|
212
212
|
readonly id: {
|
|
213
|
-
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | [string, string]) | (() => import("element-plus
|
|
213
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | [string, string]) | (() => import("element-plus").SingleOrRange<string>) | ((new (...args: any[]) => string | [string, string]) | (() => import("element-plus").SingleOrRange<string>))[], unknown, unknown>>;
|
|
214
214
|
readonly required: false;
|
|
215
215
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
216
216
|
__epPropKey: true;
|
|
217
217
|
};
|
|
218
218
|
readonly name: {
|
|
219
|
-
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | [string, string]) | (() => import("element-plus
|
|
219
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | [string, string]) | (() => import("element-plus").SingleOrRange<string>) | ((new (...args: any[]) => string | [string, string]) | (() => import("element-plus").SingleOrRange<string>))[], unknown, unknown>>;
|
|
220
220
|
readonly required: false;
|
|
221
221
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
222
222
|
__epPropKey: true;
|
|
@@ -250,13 +250,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
250
250
|
readonly startPlaceholder: StringConstructor;
|
|
251
251
|
readonly endPlaceholder: StringConstructor;
|
|
252
252
|
readonly defaultValue: {
|
|
253
|
-
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => Date | [Date, Date]) | (() => import("element-plus
|
|
253
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => Date | [Date, Date]) | (() => import("element-plus").SingleOrRange<Date>) | ((new (...args: any[]) => Date | [Date, Date]) | (() => import("element-plus").SingleOrRange<Date>))[], unknown, unknown>>;
|
|
254
254
|
readonly required: false;
|
|
255
255
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
256
256
|
__epPropKey: true;
|
|
257
257
|
};
|
|
258
258
|
readonly defaultTime: {
|
|
259
|
-
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => Date | [Date, Date]) | (() => import("element-plus
|
|
259
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => Date | [Date, Date]) | (() => import("element-plus").SingleOrRange<Date>) | ((new (...args: any[]) => Date | [Date, Date]) | (() => import("element-plus").SingleOrRange<Date>))[], unknown, unknown>>;
|
|
260
260
|
readonly required: false;
|
|
261
261
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
262
262
|
__epPropKey: true;
|
package/index.css
CHANGED