@oub/fusion 0.2.82 → 0.2.84
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.
|
@@ -28,7 +28,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
28
28
|
default: string;
|
|
29
29
|
};
|
|
30
30
|
modelValue: {
|
|
31
|
-
type: (StringConstructor | DateConstructor)[];
|
|
31
|
+
type: (StringConstructor | ObjectConstructor | DateConstructor)[];
|
|
32
32
|
default: null;
|
|
33
33
|
};
|
|
34
34
|
required: {
|
|
@@ -80,7 +80,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
80
80
|
default: boolean;
|
|
81
81
|
};
|
|
82
82
|
}, unknown, {
|
|
83
|
-
date: string | Date
|
|
83
|
+
date: string | Date | {
|
|
84
|
+
month: number;
|
|
85
|
+
year: number;
|
|
86
|
+
} | null;
|
|
84
87
|
datePickerInputOptions: {
|
|
85
88
|
format: string;
|
|
86
89
|
rangeSeparator: string;
|
|
@@ -92,7 +95,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
92
95
|
};
|
|
93
96
|
isClearable(): boolean;
|
|
94
97
|
}, {
|
|
95
|
-
updateDate(): void;
|
|
96
98
|
handleFocus(): void;
|
|
97
99
|
handleBlur(): void;
|
|
98
100
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("input:blur" | "input:focus" | "update:modelValue")[], "input:blur" | "input:focus" | "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -125,7 +127,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
125
127
|
default: string;
|
|
126
128
|
};
|
|
127
129
|
modelValue: {
|
|
128
|
-
type: (StringConstructor | DateConstructor)[];
|
|
130
|
+
type: (StringConstructor | ObjectConstructor | DateConstructor)[];
|
|
129
131
|
default: null;
|
|
130
132
|
};
|
|
131
133
|
required: {
|
|
@@ -184,7 +186,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
184
186
|
dataTest: string;
|
|
185
187
|
disabled: boolean;
|
|
186
188
|
required: boolean;
|
|
187
|
-
modelValue: string | Date;
|
|
189
|
+
modelValue: string | Record<string, any> | Date;
|
|
188
190
|
placeholder: string;
|
|
189
191
|
minDate: string;
|
|
190
192
|
maxDate: string;
|
|
@@ -1,2 +1,4 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click-outside"[], "click-outside", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
|
|
2
|
+
"onClick-outside"?: ((...args: any[]) => any) | undefined;
|
|
3
|
+
}, {}, {}>;
|
|
2
4
|
export default _default;
|