@citruslime/ui 2.7.0-beta.2 → 3.0.0-beta.0
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/README.md +3 -3
- package/dist/citrus-lime-ui.es.js +3590 -3507
- package/dist/citrus-lime-ui.umd.js +8 -8
- package/dist/components/accordion/cl-ui-accordion.vue.d.ts +33 -13
- package/dist/components/accordion/header/cl-ui-accordion-header.vue.d.ts +1 -1
- package/dist/components/accordion/item/cl-ui-accordion-item.vue.d.ts +37 -25
- package/dist/components/app/cl-ui-app.vue.d.ts +34 -15
- package/dist/components/button/cl-ui-button.vue.d.ts +43 -38
- package/dist/components/calendar/cl-ui-calendar-input.vue.d.ts +30 -54
- package/dist/components/calendar/cl-ui-calendar.vue.d.ts +73 -98
- package/dist/components/calendar/cl-ui-quick-dates-group.vue.d.ts +19 -22
- package/dist/components/calendar/cl-ui-quick-dates.vue.d.ts +20 -34
- package/dist/components/card/cl-ui-card.vue.d.ts +40 -24
- package/dist/components/combo-box/cl-ui-combo-box.vue.d.ts +97 -146
- package/dist/components/combo-box/search-container/cl-ui-combo-box-search.vue.d.ts +70 -95
- package/dist/components/combo-box/search-container/header/cl-ui-combo-box-header.vue.d.ts +37 -30
- package/dist/components/combo-box/search-container/selectable/cl-ui-combo-box-selectable.vue.d.ts +47 -50
- package/dist/components/currency/cl-ui-currency-input.vue.d.ts +51 -78
- package/dist/components/file-uploader/cl-ui-file-uploader.vue.d.ts +39 -38
- package/dist/components/footer/cl-ui-footer.vue.d.ts +1 -1
- package/dist/components/grid/action-row/cl-ui-grid-action-row.vue.d.ts +38 -59
- package/dist/components/grid/body/cl-ui-grid-body.vue.d.ts +60 -83
- package/dist/components/grid/body/cl-ui-grid-cell-value.vue.d.ts +20 -35
- package/dist/components/grid/body/cl-ui-grid-cell.vue.d.ts +37 -46
- package/dist/components/grid/body/cl-ui-grid-row.vue.d.ts +40 -58
- package/dist/components/grid/cl-ui-grid.vue.d.ts +83 -88
- package/dist/components/grid/footer/cl-ui-grid-footer.vue.d.ts +33 -30
- package/dist/components/grid/header/cl-ui-grid-filter.vue.d.ts +41 -61
- package/dist/components/grid/header/cl-ui-grid-header.vue.d.ts +30 -65
- package/dist/components/grid/header/cl-ui-grid-method-selector.vue.d.ts +37 -46
- package/dist/components/grid/header/cl-ui-grid-search.vue.d.ts +10 -3
- package/dist/components/grid/view-manager/cl-ui-grid-view-manager.vue.d.ts +19 -22
- package/dist/components/header/cl-ui-header.vue.d.ts +23 -14
- package/dist/components/header/menu/cl-ui-header-menu.vue.d.ts +44 -45
- package/dist/components/header/menu/index.d.ts +1 -0
- package/dist/components/input/cl-ui-input.vue.d.ts +225 -333
- package/dist/components/input-v2/input-checkbox/cl-ui-input-checkbox.vue.d.ts +60 -0
- package/dist/components/input-v2/input-checkbox/index.d.ts +1 -0
- package/dist/components/input-v2/input-layout-wrapper/cl-ui-input-layout-wrapper.vue.d.ts +21 -21
- package/dist/components/input-v2/input-number/cl-ui-input-number.vue.d.ts +29 -25
- package/dist/components/input-v2/input-text/cl-ui-input-text.vue.d.ts +26 -22
- package/dist/components/language-switcher/cl-ui-language-switcher.vue.d.ts +33 -28
- package/dist/components/loading-spinner/cl-ui-loading-spinner.vue.d.ts +1 -1
- package/dist/components/login/cl-ui-login.vue.d.ts +44 -28
- package/dist/components/modal/cl-ui-modal.vue.d.ts +54 -40
- package/dist/components/navigation/cl-ui-navigation.vue.d.ts +39 -15
- package/dist/components/navigation/group/cl-ui-navigation-group.vue.d.ts +19 -13
- package/dist/components/navigation/icon/cl-ui-navigation-icon.vue.d.ts +30 -27
- package/dist/components/navigation/item/cl-ui-navigation-item.vue.d.ts +1 -1
- package/dist/components/navigation/section/cl-ui-navigation-section.vue.d.ts +1 -1
- package/dist/components/notification/cl-ui-notification.vue.d.ts +32 -20
- package/dist/components/slider/cl-ui-slider.vue.d.ts +19 -24
- package/dist/components/tab/cl-ui-tab.vue.d.ts +44 -23
- package/dist/components/tab/content/cl-ui-tab-content.vue.d.ts +32 -20
- package/dist/components/tab/header/cl-ui-tab-header.vue.d.ts +43 -44
- package/dist/style.css +1 -1
- package/package.json +12 -11
|
@@ -1,140 +1,76 @@
|
|
|
1
1
|
import type { CurrencyInputOptions } from 'vue-currency-input';
|
|
2
|
-
import type {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
type: import("vue").PropType<boolean>;
|
|
66
|
-
default: boolean;
|
|
67
|
-
};
|
|
68
|
-
inputSpecificClasses: {
|
|
69
|
-
type: import("vue").PropType<string>;
|
|
70
|
-
default: string;
|
|
71
|
-
};
|
|
72
|
-
showArrows: {
|
|
73
|
-
type: import("vue").PropType<boolean>;
|
|
74
|
-
default: boolean;
|
|
75
|
-
};
|
|
76
|
-
inputType: {
|
|
77
|
-
type: import("vue").PropType<"number" | "button" | "time" | "text" | "color" | "search" | "date" | "datetime" | "dateRange" | "reset" | "checkbox" | "currency" | "email" | "file" | "password" | "radio" | "range" | "submit" | "tel" | "url">;
|
|
78
|
-
required: true;
|
|
79
|
-
default: string;
|
|
80
|
-
};
|
|
81
|
-
customValidationFunction: {
|
|
82
|
-
type: import("vue").PropType<(_name: string, _value: InputValueType) => InputValidationState>;
|
|
83
|
-
default: undefined;
|
|
84
|
-
};
|
|
85
|
-
onInputFunction: {
|
|
86
|
-
type: import("vue").PropType<(_value: InputValueType) => InputValueType>;
|
|
87
|
-
default: undefined;
|
|
88
|
-
};
|
|
89
|
-
validateImmediately: {
|
|
90
|
-
type: import("vue").PropType<boolean>;
|
|
91
|
-
default: boolean;
|
|
92
|
-
};
|
|
93
|
-
validateOn: {
|
|
94
|
-
type: import("vue").PropType<"input" | "disabled" | "change">;
|
|
95
|
-
default: string;
|
|
96
|
-
};
|
|
97
|
-
externalErrors: {
|
|
98
|
-
type: import("vue").PropType<string[]>;
|
|
99
|
-
default: () => never[];
|
|
100
|
-
};
|
|
101
|
-
requiredText: {
|
|
102
|
-
type: import("vue").PropType<string>;
|
|
103
|
-
default: string;
|
|
104
|
-
};
|
|
105
|
-
showLabel: {
|
|
106
|
-
type: import("vue").PropType<boolean>;
|
|
107
|
-
default: boolean;
|
|
108
|
-
};
|
|
109
|
-
messageWhenValid: {
|
|
110
|
-
type: import("vue").PropType<string>;
|
|
111
|
-
default: string;
|
|
112
|
-
};
|
|
113
|
-
showValidationMessages: {
|
|
114
|
-
type: import("vue").PropType<boolean>;
|
|
115
|
-
default: boolean;
|
|
116
|
-
};
|
|
117
|
-
hideRequiredAsterisk: {
|
|
118
|
-
type: import("vue").PropType<boolean>;
|
|
119
|
-
default: boolean;
|
|
120
|
-
};
|
|
121
|
-
}, {
|
|
2
|
+
import type { QuickDateName } from '../calendar/quick-dates';
|
|
3
|
+
import type { InputValidationState, InputType, InputValueType, DateRange } from './types';
|
|
4
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
5
|
+
inputType?: "number" | "search" | "button" | "time" | "text" | "color" | "email" | "tel" | "password" | "checkbox" | "date" | "file" | "radio" | "range" | "reset" | "submit" | "url" | "datetime" | "dateRange" | "currency" | undefined;
|
|
6
|
+
modelValue?: InputValueType;
|
|
7
|
+
label?: string | undefined;
|
|
8
|
+
isRequired?: boolean | undefined;
|
|
9
|
+
customValidationFunction?: ((_name: string, _value: InputValueType) => InputValidationState) | undefined;
|
|
10
|
+
onInputFunction?: ((_value: InputValueType) => InputValueType) | undefined;
|
|
11
|
+
min?: string | number | null | undefined;
|
|
12
|
+
max?: string | number | null | undefined;
|
|
13
|
+
step?: number | undefined;
|
|
14
|
+
validateImmediately?: boolean | undefined;
|
|
15
|
+
validateOn?: "input" | "disabled" | "change" | undefined;
|
|
16
|
+
externalErrors?: string[] | undefined;
|
|
17
|
+
disabled?: boolean | undefined;
|
|
18
|
+
timeZone?: string | null | undefined;
|
|
19
|
+
requiredText?: string | undefined;
|
|
20
|
+
placeholderText?: string | undefined;
|
|
21
|
+
group?: string | undefined;
|
|
22
|
+
showLabel?: boolean | undefined;
|
|
23
|
+
showArrows?: boolean | undefined;
|
|
24
|
+
autocomplete?: string | undefined;
|
|
25
|
+
highlightWhenValid?: boolean | undefined;
|
|
26
|
+
messageWhenValid?: string | undefined;
|
|
27
|
+
inputSpecificClasses?: string | undefined;
|
|
28
|
+
showValidationMessages?: boolean | undefined;
|
|
29
|
+
hideRequiredAsterisk?: boolean | undefined;
|
|
30
|
+
initialDate?: string | null | undefined;
|
|
31
|
+
quickDateScope?: "past" | "future" | ("today" | "this week" | "this month" | "this year" | "yesterday" | "last week" | "last month" | "last year" | "tomorrow" | "next week" | "next month" | "next year")[] | "none" | null | undefined;
|
|
32
|
+
dateFormatLocale?: string | null | undefined;
|
|
33
|
+
currencyOptions?: CurrencyInputOptions | undefined;
|
|
34
|
+
}>, {
|
|
35
|
+
inputType: string;
|
|
36
|
+
modelValue: undefined;
|
|
37
|
+
label: string;
|
|
38
|
+
isRequired: boolean;
|
|
39
|
+
customValidationFunction: undefined;
|
|
40
|
+
onInputFunction: undefined;
|
|
41
|
+
min: null;
|
|
42
|
+
max: null;
|
|
43
|
+
step: number;
|
|
44
|
+
validateImmediately: boolean;
|
|
45
|
+
validateOn: string;
|
|
46
|
+
externalErrors: () => never[];
|
|
47
|
+
disabled: boolean;
|
|
48
|
+
timeZone: null;
|
|
49
|
+
requiredText: string;
|
|
50
|
+
placeholderText: string;
|
|
51
|
+
group: string;
|
|
52
|
+
showLabel: boolean;
|
|
53
|
+
showArrows: boolean;
|
|
54
|
+
autocomplete: string;
|
|
55
|
+
highlightWhenValid: boolean;
|
|
56
|
+
messageWhenValid: string;
|
|
57
|
+
inputSpecificClasses: string;
|
|
58
|
+
showValidationMessages: boolean;
|
|
59
|
+
hideRequiredAsterisk: boolean;
|
|
60
|
+
initialDate: null;
|
|
61
|
+
quickDateScope: null;
|
|
62
|
+
dateFormatLocale: null;
|
|
63
|
+
currencyOptions: undefined;
|
|
64
|
+
}>, {
|
|
122
65
|
focus(): void;
|
|
123
66
|
blur(): void;
|
|
124
67
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
125
|
-
'update:model-value': (args_0: InputValueType) => void;
|
|
126
|
-
click: (event: MouseEvent) => void;
|
|
127
|
-
focus: () => void;
|
|
128
68
|
input: (args_0: {
|
|
129
69
|
target: EventTarget | import("vue").DefineComponent<{
|
|
130
70
|
type: {
|
|
131
71
|
type: import("vue").PropType<"time" | "date" | "datetime" | "dateRange">;
|
|
132
72
|
default: string;
|
|
133
73
|
};
|
|
134
|
-
placeholder: {
|
|
135
|
-
type: import("vue").PropType<string | null>;
|
|
136
|
-
default: null;
|
|
137
|
-
};
|
|
138
74
|
disabled: {
|
|
139
75
|
type: import("vue").PropType<boolean>;
|
|
140
76
|
default: boolean;
|
|
@@ -143,15 +79,19 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
143
79
|
type: import("vue").PropType<boolean>;
|
|
144
80
|
default: boolean;
|
|
145
81
|
};
|
|
82
|
+
placeholder: {
|
|
83
|
+
type: import("vue").PropType<string | null>;
|
|
84
|
+
default: null;
|
|
85
|
+
};
|
|
146
86
|
date: {
|
|
147
87
|
type: import("vue").PropType<string | DateRange | null>;
|
|
148
88
|
required: true;
|
|
149
89
|
};
|
|
150
|
-
|
|
90
|
+
min: {
|
|
151
91
|
type: import("vue").PropType<string | null>;
|
|
152
92
|
default: null;
|
|
153
93
|
};
|
|
154
|
-
|
|
94
|
+
max: {
|
|
155
95
|
type: import("vue").PropType<string | null>;
|
|
156
96
|
default: null;
|
|
157
97
|
};
|
|
@@ -174,16 +114,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
174
114
|
}, {
|
|
175
115
|
focus(): void;
|
|
176
116
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
177
|
-
"update:date": (
|
|
178
|
-
}, string, import("vue").
|
|
117
|
+
"update:date": (args_0: string | DateRange | null) => void;
|
|
118
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
179
119
|
type: {
|
|
180
120
|
type: import("vue").PropType<"time" | "date" | "datetime" | "dateRange">;
|
|
181
121
|
default: string;
|
|
182
122
|
};
|
|
183
|
-
placeholder: {
|
|
184
|
-
type: import("vue").PropType<string | null>;
|
|
185
|
-
default: null;
|
|
186
|
-
};
|
|
187
123
|
disabled: {
|
|
188
124
|
type: import("vue").PropType<boolean>;
|
|
189
125
|
default: boolean;
|
|
@@ -192,15 +128,19 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
192
128
|
type: import("vue").PropType<boolean>;
|
|
193
129
|
default: boolean;
|
|
194
130
|
};
|
|
131
|
+
placeholder: {
|
|
132
|
+
type: import("vue").PropType<string | null>;
|
|
133
|
+
default: null;
|
|
134
|
+
};
|
|
195
135
|
date: {
|
|
196
136
|
type: import("vue").PropType<string | DateRange | null>;
|
|
197
137
|
required: true;
|
|
198
138
|
};
|
|
199
|
-
|
|
139
|
+
min: {
|
|
200
140
|
type: import("vue").PropType<string | null>;
|
|
201
141
|
default: null;
|
|
202
142
|
};
|
|
203
|
-
|
|
143
|
+
max: {
|
|
204
144
|
type: import("vue").PropType<string | null>;
|
|
205
145
|
default: null;
|
|
206
146
|
};
|
|
@@ -221,14 +161,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
221
161
|
default: null;
|
|
222
162
|
};
|
|
223
163
|
}>> & {
|
|
224
|
-
"onUpdate:date"?: ((
|
|
164
|
+
"onUpdate:date"?: ((args_0: string | DateRange | null) => any) | undefined;
|
|
225
165
|
}, {
|
|
226
166
|
type: "time" | "date" | "datetime" | "dateRange";
|
|
227
|
-
placeholder: string | null;
|
|
228
167
|
disabled: boolean;
|
|
229
168
|
required: boolean;
|
|
230
|
-
|
|
169
|
+
placeholder: string | null;
|
|
231
170
|
min: string | null;
|
|
171
|
+
max: string | null;
|
|
232
172
|
timeZone: string | null;
|
|
233
173
|
initialDate: string | null;
|
|
234
174
|
quickDateScope: "past" | "future" | ("today" | "this week" | "this month" | "this year" | "yesterday" | "last week" | "last month" | "last year" | "tomorrow" | "next week" | "next month" | "next year")[] | "none" | null;
|
|
@@ -238,19 +178,19 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
238
178
|
required: true;
|
|
239
179
|
type: import("vue").PropType<number>;
|
|
240
180
|
};
|
|
241
|
-
placeholder: {
|
|
242
|
-
type: import("vue").PropType<string>;
|
|
243
|
-
default: string;
|
|
244
|
-
};
|
|
245
181
|
disabled: {
|
|
246
182
|
type: import("vue").PropType<boolean>;
|
|
247
183
|
default: boolean;
|
|
248
184
|
};
|
|
249
|
-
|
|
185
|
+
placeholder: {
|
|
186
|
+
type: import("vue").PropType<string>;
|
|
187
|
+
default: string;
|
|
188
|
+
};
|
|
189
|
+
min: {
|
|
250
190
|
type: import("vue").PropType<number>;
|
|
251
191
|
required: true;
|
|
252
192
|
};
|
|
253
|
-
|
|
193
|
+
max: {
|
|
254
194
|
type: import("vue").PropType<number>;
|
|
255
195
|
required: true;
|
|
256
196
|
};
|
|
@@ -258,30 +198,28 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
258
198
|
type: import("vue").PropType<number>;
|
|
259
199
|
default: number;
|
|
260
200
|
};
|
|
261
|
-
enforceStep: {
|
|
262
|
-
type: import("vue").PropType<boolean>;
|
|
263
|
-
default: boolean;
|
|
264
|
-
};
|
|
265
201
|
}, {
|
|
266
202
|
focus(): void;
|
|
267
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
203
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
204
|
+
"update:value": (value: number) => void;
|
|
205
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
268
206
|
value: {
|
|
269
207
|
required: true;
|
|
270
208
|
type: import("vue").PropType<number>;
|
|
271
209
|
};
|
|
272
|
-
placeholder: {
|
|
273
|
-
type: import("vue").PropType<string>;
|
|
274
|
-
default: string;
|
|
275
|
-
};
|
|
276
210
|
disabled: {
|
|
277
211
|
type: import("vue").PropType<boolean>;
|
|
278
212
|
default: boolean;
|
|
279
213
|
};
|
|
280
|
-
|
|
214
|
+
placeholder: {
|
|
215
|
+
type: import("vue").PropType<string>;
|
|
216
|
+
default: string;
|
|
217
|
+
};
|
|
218
|
+
min: {
|
|
281
219
|
type: import("vue").PropType<number>;
|
|
282
220
|
required: true;
|
|
283
221
|
};
|
|
284
|
-
|
|
222
|
+
max: {
|
|
285
223
|
type: import("vue").PropType<number>;
|
|
286
224
|
required: true;
|
|
287
225
|
};
|
|
@@ -289,138 +227,80 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
289
227
|
type: import("vue").PropType<number>;
|
|
290
228
|
default: number;
|
|
291
229
|
};
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
};
|
|
296
|
-
}>>, {
|
|
297
|
-
placeholder: string;
|
|
230
|
+
}>> & {
|
|
231
|
+
"onUpdate:value"?: ((value: number) => any) | undefined;
|
|
232
|
+
}, {
|
|
298
233
|
disabled: boolean;
|
|
234
|
+
placeholder: string;
|
|
299
235
|
step: number;
|
|
300
|
-
enforceStep: boolean;
|
|
301
236
|
}, {}> | null;
|
|
302
237
|
}, args_1: InputValueType) => void;
|
|
238
|
+
click: (event: MouseEvent) => void;
|
|
239
|
+
focus: () => void;
|
|
303
240
|
change: (args_0: Event, args_1: InputValueType) => void;
|
|
241
|
+
"update:model-value": (args_0: InputValueType) => void;
|
|
304
242
|
validated: (args_0: boolean, args_1: InputValueType) => void;
|
|
305
|
-
}, string, import("vue").
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
highlightWhenValid: {
|
|
367
|
-
type: import("vue").PropType<boolean>;
|
|
368
|
-
default: boolean;
|
|
369
|
-
};
|
|
370
|
-
inputSpecificClasses: {
|
|
371
|
-
type: import("vue").PropType<string>;
|
|
372
|
-
default: string;
|
|
373
|
-
};
|
|
374
|
-
showArrows: {
|
|
375
|
-
type: import("vue").PropType<boolean>;
|
|
376
|
-
default: boolean;
|
|
377
|
-
};
|
|
378
|
-
inputType: {
|
|
379
|
-
type: import("vue").PropType<"number" | "button" | "time" | "text" | "color" | "search" | "date" | "datetime" | "dateRange" | "reset" | "checkbox" | "currency" | "email" | "file" | "password" | "radio" | "range" | "submit" | "tel" | "url">;
|
|
380
|
-
required: true;
|
|
381
|
-
default: string;
|
|
382
|
-
};
|
|
383
|
-
customValidationFunction: {
|
|
384
|
-
type: import("vue").PropType<(_name: string, _value: InputValueType) => InputValidationState>;
|
|
385
|
-
default: undefined;
|
|
386
|
-
};
|
|
387
|
-
onInputFunction: {
|
|
388
|
-
type: import("vue").PropType<(_value: InputValueType) => InputValueType>;
|
|
389
|
-
default: undefined;
|
|
390
|
-
};
|
|
391
|
-
validateImmediately: {
|
|
392
|
-
type: import("vue").PropType<boolean>;
|
|
393
|
-
default: boolean;
|
|
394
|
-
};
|
|
395
|
-
validateOn: {
|
|
396
|
-
type: import("vue").PropType<"input" | "disabled" | "change">;
|
|
397
|
-
default: string;
|
|
398
|
-
};
|
|
399
|
-
externalErrors: {
|
|
400
|
-
type: import("vue").PropType<string[]>;
|
|
401
|
-
default: () => never[];
|
|
402
|
-
};
|
|
403
|
-
requiredText: {
|
|
404
|
-
type: import("vue").PropType<string>;
|
|
405
|
-
default: string;
|
|
406
|
-
};
|
|
407
|
-
showLabel: {
|
|
408
|
-
type: import("vue").PropType<boolean>;
|
|
409
|
-
default: boolean;
|
|
410
|
-
};
|
|
411
|
-
messageWhenValid: {
|
|
412
|
-
type: import("vue").PropType<string>;
|
|
413
|
-
default: string;
|
|
414
|
-
};
|
|
415
|
-
showValidationMessages: {
|
|
416
|
-
type: import("vue").PropType<boolean>;
|
|
417
|
-
default: boolean;
|
|
418
|
-
};
|
|
419
|
-
hideRequiredAsterisk: {
|
|
420
|
-
type: import("vue").PropType<boolean>;
|
|
421
|
-
default: boolean;
|
|
422
|
-
};
|
|
423
|
-
}>> & {
|
|
243
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
244
|
+
inputType?: "number" | "search" | "button" | "time" | "text" | "color" | "email" | "tel" | "password" | "checkbox" | "date" | "file" | "radio" | "range" | "reset" | "submit" | "url" | "datetime" | "dateRange" | "currency" | undefined;
|
|
245
|
+
modelValue?: InputValueType;
|
|
246
|
+
label?: string | undefined;
|
|
247
|
+
isRequired?: boolean | undefined;
|
|
248
|
+
customValidationFunction?: ((_name: string, _value: InputValueType) => InputValidationState) | undefined;
|
|
249
|
+
onInputFunction?: ((_value: InputValueType) => InputValueType) | undefined;
|
|
250
|
+
min?: string | number | null | undefined;
|
|
251
|
+
max?: string | number | null | undefined;
|
|
252
|
+
step?: number | undefined;
|
|
253
|
+
validateImmediately?: boolean | undefined;
|
|
254
|
+
validateOn?: "input" | "disabled" | "change" | undefined;
|
|
255
|
+
externalErrors?: string[] | undefined;
|
|
256
|
+
disabled?: boolean | undefined;
|
|
257
|
+
timeZone?: string | null | undefined;
|
|
258
|
+
requiredText?: string | undefined;
|
|
259
|
+
placeholderText?: string | undefined;
|
|
260
|
+
group?: string | undefined;
|
|
261
|
+
showLabel?: boolean | undefined;
|
|
262
|
+
showArrows?: boolean | undefined;
|
|
263
|
+
autocomplete?: string | undefined;
|
|
264
|
+
highlightWhenValid?: boolean | undefined;
|
|
265
|
+
messageWhenValid?: string | undefined;
|
|
266
|
+
inputSpecificClasses?: string | undefined;
|
|
267
|
+
showValidationMessages?: boolean | undefined;
|
|
268
|
+
hideRequiredAsterisk?: boolean | undefined;
|
|
269
|
+
initialDate?: string | null | undefined;
|
|
270
|
+
quickDateScope?: "past" | "future" | ("today" | "this week" | "this month" | "this year" | "yesterday" | "last week" | "last month" | "last year" | "tomorrow" | "next week" | "next month" | "next year")[] | "none" | null | undefined;
|
|
271
|
+
dateFormatLocale?: string | null | undefined;
|
|
272
|
+
currencyOptions?: CurrencyInputOptions | undefined;
|
|
273
|
+
}>, {
|
|
274
|
+
inputType: string;
|
|
275
|
+
modelValue: undefined;
|
|
276
|
+
label: string;
|
|
277
|
+
isRequired: boolean;
|
|
278
|
+
customValidationFunction: undefined;
|
|
279
|
+
onInputFunction: undefined;
|
|
280
|
+
min: null;
|
|
281
|
+
max: null;
|
|
282
|
+
step: number;
|
|
283
|
+
validateImmediately: boolean;
|
|
284
|
+
validateOn: string;
|
|
285
|
+
externalErrors: () => never[];
|
|
286
|
+
disabled: boolean;
|
|
287
|
+
timeZone: null;
|
|
288
|
+
requiredText: string;
|
|
289
|
+
placeholderText: string;
|
|
290
|
+
group: string;
|
|
291
|
+
showLabel: boolean;
|
|
292
|
+
showArrows: boolean;
|
|
293
|
+
autocomplete: string;
|
|
294
|
+
highlightWhenValid: boolean;
|
|
295
|
+
messageWhenValid: string;
|
|
296
|
+
inputSpecificClasses: string;
|
|
297
|
+
showValidationMessages: boolean;
|
|
298
|
+
hideRequiredAsterisk: boolean;
|
|
299
|
+
initialDate: null;
|
|
300
|
+
quickDateScope: null;
|
|
301
|
+
dateFormatLocale: null;
|
|
302
|
+
currencyOptions: undefined;
|
|
303
|
+
}>>> & {
|
|
424
304
|
onFocus?: (() => any) | undefined;
|
|
425
305
|
onChange?: ((args_0: Event, args_1: InputValueType) => any) | undefined;
|
|
426
306
|
onInput?: ((args_0: {
|
|
@@ -429,10 +309,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
429
309
|
type: import("vue").PropType<"time" | "date" | "datetime" | "dateRange">;
|
|
430
310
|
default: string;
|
|
431
311
|
};
|
|
432
|
-
placeholder: {
|
|
433
|
-
type: import("vue").PropType<string | null>;
|
|
434
|
-
default: null;
|
|
435
|
-
};
|
|
436
312
|
disabled: {
|
|
437
313
|
type: import("vue").PropType<boolean>;
|
|
438
314
|
default: boolean;
|
|
@@ -441,15 +317,19 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
441
317
|
type: import("vue").PropType<boolean>;
|
|
442
318
|
default: boolean;
|
|
443
319
|
};
|
|
320
|
+
placeholder: {
|
|
321
|
+
type: import("vue").PropType<string | null>;
|
|
322
|
+
default: null;
|
|
323
|
+
};
|
|
444
324
|
date: {
|
|
445
325
|
type: import("vue").PropType<string | DateRange | null>;
|
|
446
326
|
required: true;
|
|
447
327
|
};
|
|
448
|
-
|
|
328
|
+
min: {
|
|
449
329
|
type: import("vue").PropType<string | null>;
|
|
450
330
|
default: null;
|
|
451
331
|
};
|
|
452
|
-
|
|
332
|
+
max: {
|
|
453
333
|
type: import("vue").PropType<string | null>;
|
|
454
334
|
default: null;
|
|
455
335
|
};
|
|
@@ -472,16 +352,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
472
352
|
}, {
|
|
473
353
|
focus(): void;
|
|
474
354
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
475
|
-
"update:date": (
|
|
476
|
-
}, string, import("vue").
|
|
355
|
+
"update:date": (args_0: string | DateRange | null) => void;
|
|
356
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
477
357
|
type: {
|
|
478
358
|
type: import("vue").PropType<"time" | "date" | "datetime" | "dateRange">;
|
|
479
359
|
default: string;
|
|
480
360
|
};
|
|
481
|
-
placeholder: {
|
|
482
|
-
type: import("vue").PropType<string | null>;
|
|
483
|
-
default: null;
|
|
484
|
-
};
|
|
485
361
|
disabled: {
|
|
486
362
|
type: import("vue").PropType<boolean>;
|
|
487
363
|
default: boolean;
|
|
@@ -490,15 +366,19 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
490
366
|
type: import("vue").PropType<boolean>;
|
|
491
367
|
default: boolean;
|
|
492
368
|
};
|
|
369
|
+
placeholder: {
|
|
370
|
+
type: import("vue").PropType<string | null>;
|
|
371
|
+
default: null;
|
|
372
|
+
};
|
|
493
373
|
date: {
|
|
494
374
|
type: import("vue").PropType<string | DateRange | null>;
|
|
495
375
|
required: true;
|
|
496
376
|
};
|
|
497
|
-
|
|
377
|
+
min: {
|
|
498
378
|
type: import("vue").PropType<string | null>;
|
|
499
379
|
default: null;
|
|
500
380
|
};
|
|
501
|
-
|
|
381
|
+
max: {
|
|
502
382
|
type: import("vue").PropType<string | null>;
|
|
503
383
|
default: null;
|
|
504
384
|
};
|
|
@@ -519,14 +399,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
519
399
|
default: null;
|
|
520
400
|
};
|
|
521
401
|
}>> & {
|
|
522
|
-
"onUpdate:date"?: ((
|
|
402
|
+
"onUpdate:date"?: ((args_0: string | DateRange | null) => any) | undefined;
|
|
523
403
|
}, {
|
|
524
404
|
type: "time" | "date" | "datetime" | "dateRange";
|
|
525
|
-
placeholder: string | null;
|
|
526
405
|
disabled: boolean;
|
|
527
406
|
required: boolean;
|
|
528
|
-
|
|
407
|
+
placeholder: string | null;
|
|
529
408
|
min: string | null;
|
|
409
|
+
max: string | null;
|
|
530
410
|
timeZone: string | null;
|
|
531
411
|
initialDate: string | null;
|
|
532
412
|
quickDateScope: "past" | "future" | ("today" | "this week" | "this month" | "this year" | "yesterday" | "last week" | "last month" | "last year" | "tomorrow" | "next week" | "next month" | "next year")[] | "none" | null;
|
|
@@ -536,19 +416,19 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
536
416
|
required: true;
|
|
537
417
|
type: import("vue").PropType<number>;
|
|
538
418
|
};
|
|
539
|
-
placeholder: {
|
|
540
|
-
type: import("vue").PropType<string>;
|
|
541
|
-
default: string;
|
|
542
|
-
};
|
|
543
419
|
disabled: {
|
|
544
420
|
type: import("vue").PropType<boolean>;
|
|
545
421
|
default: boolean;
|
|
546
422
|
};
|
|
547
|
-
|
|
423
|
+
placeholder: {
|
|
424
|
+
type: import("vue").PropType<string>;
|
|
425
|
+
default: string;
|
|
426
|
+
};
|
|
427
|
+
min: {
|
|
548
428
|
type: import("vue").PropType<number>;
|
|
549
429
|
required: true;
|
|
550
430
|
};
|
|
551
|
-
|
|
431
|
+
max: {
|
|
552
432
|
type: import("vue").PropType<number>;
|
|
553
433
|
required: true;
|
|
554
434
|
};
|
|
@@ -556,30 +436,28 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
556
436
|
type: import("vue").PropType<number>;
|
|
557
437
|
default: number;
|
|
558
438
|
};
|
|
559
|
-
enforceStep: {
|
|
560
|
-
type: import("vue").PropType<boolean>;
|
|
561
|
-
default: boolean;
|
|
562
|
-
};
|
|
563
439
|
}, {
|
|
564
440
|
focus(): void;
|
|
565
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
441
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
442
|
+
"update:value": (value: number) => void;
|
|
443
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
566
444
|
value: {
|
|
567
445
|
required: true;
|
|
568
446
|
type: import("vue").PropType<number>;
|
|
569
447
|
};
|
|
570
|
-
placeholder: {
|
|
571
|
-
type: import("vue").PropType<string>;
|
|
572
|
-
default: string;
|
|
573
|
-
};
|
|
574
448
|
disabled: {
|
|
575
449
|
type: import("vue").PropType<boolean>;
|
|
576
450
|
default: boolean;
|
|
577
451
|
};
|
|
578
|
-
|
|
452
|
+
placeholder: {
|
|
453
|
+
type: import("vue").PropType<string>;
|
|
454
|
+
default: string;
|
|
455
|
+
};
|
|
456
|
+
min: {
|
|
579
457
|
type: import("vue").PropType<number>;
|
|
580
458
|
required: true;
|
|
581
459
|
};
|
|
582
|
-
|
|
460
|
+
max: {
|
|
583
461
|
type: import("vue").PropType<number>;
|
|
584
462
|
required: true;
|
|
585
463
|
};
|
|
@@ -587,15 +465,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
587
465
|
type: import("vue").PropType<number>;
|
|
588
466
|
default: number;
|
|
589
467
|
};
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
};
|
|
594
|
-
}>>, {
|
|
595
|
-
placeholder: string;
|
|
468
|
+
}>> & {
|
|
469
|
+
"onUpdate:value"?: ((value: number) => any) | undefined;
|
|
470
|
+
}, {
|
|
596
471
|
disabled: boolean;
|
|
472
|
+
placeholder: string;
|
|
597
473
|
step: number;
|
|
598
|
-
enforceStep: boolean;
|
|
599
474
|
}, {}> | null;
|
|
600
475
|
}, args_1: InputValueType) => any) | undefined;
|
|
601
476
|
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
@@ -604,32 +479,49 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
604
479
|
}, {
|
|
605
480
|
label: string;
|
|
606
481
|
disabled: boolean;
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
min: string | number | null;
|
|
610
|
-
step: number;
|
|
482
|
+
modelValue: string | number | boolean | DateRange | null;
|
|
483
|
+
placeholderText: string;
|
|
611
484
|
group: string;
|
|
485
|
+
min: number | string | null;
|
|
486
|
+
max: number | string | null;
|
|
612
487
|
timeZone: string | null;
|
|
613
488
|
initialDate: string | null;
|
|
614
|
-
quickDateScope:
|
|
489
|
+
quickDateScope: 'past' | 'future' | 'none' | QuickDateName[] | null;
|
|
615
490
|
dateFormatLocale: string | null;
|
|
616
|
-
modelValue: string | number | boolean | DateRange | null;
|
|
617
491
|
isRequired: boolean;
|
|
618
|
-
placeholderText: string;
|
|
619
492
|
currencyOptions: CurrencyInputOptions;
|
|
620
493
|
highlightWhenValid: boolean;
|
|
621
494
|
inputSpecificClasses: string;
|
|
495
|
+
step: number;
|
|
622
496
|
showArrows: boolean;
|
|
623
|
-
inputType:
|
|
497
|
+
inputType: InputType;
|
|
624
498
|
customValidationFunction: (_name: string, _value: InputValueType) => InputValidationState;
|
|
625
499
|
onInputFunction: (_value: InputValueType) => InputValueType;
|
|
626
500
|
validateImmediately: boolean;
|
|
627
|
-
validateOn:
|
|
501
|
+
validateOn: 'disabled' | 'input' | 'change';
|
|
628
502
|
externalErrors: string[];
|
|
629
503
|
requiredText: string;
|
|
630
504
|
showLabel: boolean;
|
|
505
|
+
autocomplete: string;
|
|
631
506
|
messageWhenValid: string;
|
|
632
507
|
showValidationMessages: boolean;
|
|
633
508
|
hideRequiredAsterisk: boolean;
|
|
634
509
|
}, {}>;
|
|
635
510
|
export default _default;
|
|
511
|
+
type __VLS_WithDefaults<P, D> = {
|
|
512
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
513
|
+
default: D[K];
|
|
514
|
+
}> : P[K];
|
|
515
|
+
};
|
|
516
|
+
type __VLS_Prettify<T> = {
|
|
517
|
+
[K in keyof T]: T[K];
|
|
518
|
+
} & {};
|
|
519
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
520
|
+
type __VLS_TypePropsToOption<T> = {
|
|
521
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
522
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
523
|
+
} : {
|
|
524
|
+
type: import('vue').PropType<T[K]>;
|
|
525
|
+
required: true;
|
|
526
|
+
};
|
|
527
|
+
};
|