@vunk/form 2.14.3 → 2.14.4
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.
|
@@ -245,8 +245,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
245
245
|
} & {
|
|
246
246
|
readonly default: true;
|
|
247
247
|
};
|
|
248
|
-
}>> & Readonly<{
|
|
249
|
-
|
|
248
|
+
}>> & Readonly<{
|
|
249
|
+
"onUpdate:modelValue"?: (...args: any[] | unknown[]) => any;
|
|
250
|
+
}> & {}>;
|
|
251
|
+
emit: ((event: "update:modelValue", ...args: unknown[]) => void) & ((event: "update:modelValue", ...args: any) => void) & ((event: "update:modelValue", ...args: any[]) => void);
|
|
250
252
|
formItemBindProps: import("vue").ComputedRef<{}>;
|
|
251
253
|
readonly: import("vue").ComputedRef<boolean>;
|
|
252
254
|
formData: import("vue").ComputedRef<NormalObject | NormalObject[]>;
|
|
@@ -932,7 +934,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
932
934
|
install(app: import("vue").App): void;
|
|
933
935
|
};
|
|
934
936
|
readonly Plus: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
935
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
937
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
938
|
+
'update:modelValue': any;
|
|
939
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
936
940
|
columns: {
|
|
937
941
|
type: import("vue").PropType<any[]>;
|
|
938
942
|
default: () => any[];
|
|
@@ -1054,7 +1058,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1054
1058
|
} & {
|
|
1055
1059
|
readonly default: true;
|
|
1056
1060
|
};
|
|
1057
|
-
}>> & Readonly<{
|
|
1061
|
+
}>> & Readonly<{
|
|
1062
|
+
"onUpdate:modelValue"?: (...args: any[] | unknown[]) => any;
|
|
1063
|
+
}>, {
|
|
1058
1064
|
required: boolean;
|
|
1059
1065
|
formItemSize: "default" | "small" | "large";
|
|
1060
1066
|
formItemSlots: import("@vunk/form/components/form-item/src/types").FormItemSlots;
|