@oub/fusion 0.2.65 → 0.2.67
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.
|
@@ -63,6 +63,22 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
63
63
|
type: StringConstructor;
|
|
64
64
|
default: string;
|
|
65
65
|
};
|
|
66
|
+
monthPicker: {
|
|
67
|
+
type: BooleanConstructor;
|
|
68
|
+
default: boolean;
|
|
69
|
+
};
|
|
70
|
+
yearPicker: {
|
|
71
|
+
type: BooleanConstructor;
|
|
72
|
+
default: boolean;
|
|
73
|
+
};
|
|
74
|
+
timePicker: {
|
|
75
|
+
type: BooleanConstructor;
|
|
76
|
+
default: boolean;
|
|
77
|
+
};
|
|
78
|
+
weekPicker: {
|
|
79
|
+
type: BooleanConstructor;
|
|
80
|
+
default: boolean;
|
|
81
|
+
};
|
|
66
82
|
}, unknown, {
|
|
67
83
|
date: string | Date;
|
|
68
84
|
datePickerInputOptions: {
|
|
@@ -144,6 +160,22 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
144
160
|
type: StringConstructor;
|
|
145
161
|
default: string;
|
|
146
162
|
};
|
|
163
|
+
monthPicker: {
|
|
164
|
+
type: BooleanConstructor;
|
|
165
|
+
default: boolean;
|
|
166
|
+
};
|
|
167
|
+
yearPicker: {
|
|
168
|
+
type: BooleanConstructor;
|
|
169
|
+
default: boolean;
|
|
170
|
+
};
|
|
171
|
+
timePicker: {
|
|
172
|
+
type: BooleanConstructor;
|
|
173
|
+
default: boolean;
|
|
174
|
+
};
|
|
175
|
+
weekPicker: {
|
|
176
|
+
type: BooleanConstructor;
|
|
177
|
+
default: boolean;
|
|
178
|
+
};
|
|
147
179
|
}>> & {
|
|
148
180
|
"onInput:blur"?: ((...args: any[]) => any) | undefined;
|
|
149
181
|
"onInput:focus"?: ((...args: any[]) => any) | undefined;
|
|
@@ -158,7 +190,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
158
190
|
maxDate: string;
|
|
159
191
|
format: string;
|
|
160
192
|
clearable: boolean;
|
|
193
|
+
monthPicker: boolean;
|
|
194
|
+
timePicker: boolean;
|
|
161
195
|
autocomplete: string;
|
|
196
|
+
weekPicker: boolean;
|
|
197
|
+
yearPicker: boolean;
|
|
162
198
|
helperLabel: string;
|
|
163
199
|
errorLabel: string;
|
|
164
200
|
dateSeparator: string;
|