@vonage/vivid-vue 3.59.0 → 3.60.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/generated/components/VButton.vue2.d.ts +20 -3
- package/generated/components/VButton.vue3.d.ts +20 -3
- package/generated/components/VCheckbox.vue2.d.ts +32 -0
- package/generated/components/VCheckbox.vue3.d.ts +32 -0
- package/generated/components/VCombobox.vue2.d.ts +17 -0
- package/generated/components/VCombobox.vue3.d.ts +17 -0
- package/generated/components/VDatePicker.vue2.d.ts +15 -0
- package/generated/components/VDatePicker.vue3.d.ts +15 -0
- package/generated/components/VDateRangePicker.vue2.d.ts +49 -0
- package/generated/components/VDateRangePicker.vue3.d.ts +49 -0
- package/generated/components/VFab.vue2.d.ts +17 -0
- package/generated/components/VFab.vue3.d.ts +17 -0
- package/generated/components/VFilePicker.vue2.d.ts +17 -0
- package/generated/components/VFilePicker.vue3.d.ts +17 -0
- package/generated/components/VNumberField.vue2.d.ts +17 -0
- package/generated/components/VNumberField.vue3.d.ts +17 -0
- package/generated/components/VOption.vue2.d.ts +17 -0
- package/generated/components/VOption.vue3.d.ts +17 -0
- package/generated/components/VRadio.vue2.d.ts +32 -0
- package/generated/components/VRadio.vue3.d.ts +32 -0
- package/generated/components/VRangeSlider.vue2.d.ts +51 -0
- package/generated/components/VRangeSlider.vue3.d.ts +51 -0
- package/generated/components/VSelect.vue2.d.ts +18 -0
- package/generated/components/VSelect.vue3.d.ts +18 -0
- package/generated/components/VSlider.vue2.d.ts +17 -0
- package/generated/components/VSlider.vue3.d.ts +17 -0
- package/generated/components/VSwitch.vue2.d.ts +32 -0
- package/generated/components/VSwitch.vue3.d.ts +32 -0
- package/generated/components/VTextArea.vue2.d.ts +17 -0
- package/generated/components/VTextArea.vue3.d.ts +17 -0
- package/generated/components/VTextField.vue2.d.ts +17 -0
- package/generated/components/VTextField.vue3.d.ts +17 -0
- package/generated/components/VTimePicker.vue2.d.ts +17 -0
- package/generated/components/VTimePicker.vue3.d.ts +17 -0
- package/index.cjs +205 -5
- package/index.js +205 -5
- package/package.json +2 -2
- package/web-types.json +194 -2
|
@@ -30,6 +30,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
30
30
|
type: PropType<boolean>;
|
|
31
31
|
default: undefined;
|
|
32
32
|
};
|
|
33
|
+
/**
|
|
34
|
+
* The initial value of the form. This value sets the `value` property
|
|
35
|
+
* only when the `value` property has not been explicitly set.
|
|
36
|
+
*/
|
|
37
|
+
initialValue: {
|
|
38
|
+
type: PropType<string>;
|
|
39
|
+
default: undefined;
|
|
40
|
+
};
|
|
33
41
|
/**
|
|
34
42
|
* The initial value of the form. This value sets the `value` property
|
|
35
43
|
* only when the `value` property has not been explicitly set.
|
|
@@ -141,7 +149,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
141
149
|
* The appearance the button should have.
|
|
142
150
|
*/
|
|
143
151
|
appearance: {
|
|
144
|
-
type: PropType<"ghost" | "filled" | "outlined" | "ghost-light">;
|
|
152
|
+
type: PropType<"ghost" | "filled" | "outlined" | "ghost-light" | "outlined-light">;
|
|
145
153
|
default: undefined;
|
|
146
154
|
};
|
|
147
155
|
/**
|
|
@@ -266,6 +274,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
266
274
|
type: PropType<boolean>;
|
|
267
275
|
default: undefined;
|
|
268
276
|
};
|
|
277
|
+
/**
|
|
278
|
+
* The initial value of the form. This value sets the `value` property
|
|
279
|
+
* only when the `value` property has not been explicitly set.
|
|
280
|
+
*/
|
|
281
|
+
initialValue: {
|
|
282
|
+
type: PropType<string>;
|
|
283
|
+
default: undefined;
|
|
284
|
+
};
|
|
269
285
|
/**
|
|
270
286
|
* The initial value of the form. This value sets the `value` property
|
|
271
287
|
* only when the `value` property has not been explicitly set.
|
|
@@ -377,7 +393,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
377
393
|
* The appearance the button should have.
|
|
378
394
|
*/
|
|
379
395
|
appearance: {
|
|
380
|
-
type: PropType<"ghost" | "filled" | "outlined" | "ghost-light">;
|
|
396
|
+
type: PropType<"ghost" | "filled" | "outlined" | "ghost-light" | "outlined-light">;
|
|
381
397
|
default: undefined;
|
|
382
398
|
};
|
|
383
399
|
/**
|
|
@@ -473,7 +489,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
473
489
|
iconTrailing: boolean;
|
|
474
490
|
size: "expanded" | "condensed" | "normal" | "super-condensed";
|
|
475
491
|
shape: "rounded" | "pill";
|
|
476
|
-
appearance: "ghost" | "filled" | "outlined" | "ghost-light";
|
|
492
|
+
appearance: "ghost" | "filled" | "outlined" | "ghost-light" | "outlined-light";
|
|
477
493
|
connotation: "accent" | "success" | "alert" | "cta";
|
|
478
494
|
disabled: boolean;
|
|
479
495
|
download: string;
|
|
@@ -483,6 +499,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
483
499
|
referrerpolicy: string;
|
|
484
500
|
rel: string;
|
|
485
501
|
target: "_self" | "_blank" | "_parent" | "_top";
|
|
502
|
+
initialValue: string;
|
|
486
503
|
currentValue: string;
|
|
487
504
|
required: boolean;
|
|
488
505
|
autofocus: boolean;
|
|
@@ -31,6 +31,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
31
31
|
type: PropType<boolean>;
|
|
32
32
|
default: undefined;
|
|
33
33
|
};
|
|
34
|
+
/**
|
|
35
|
+
* The initial value of the form. This value sets the `value` property
|
|
36
|
+
* only when the `value` property has not been explicitly set.
|
|
37
|
+
*/
|
|
38
|
+
initialValue: {
|
|
39
|
+
type: PropType<string>;
|
|
40
|
+
default: undefined;
|
|
41
|
+
};
|
|
34
42
|
/**
|
|
35
43
|
* The initial value of the form. This value sets the `value` property
|
|
36
44
|
* only when the `value` property has not been explicitly set.
|
|
@@ -142,7 +150,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
142
150
|
* The appearance the button should have.
|
|
143
151
|
*/
|
|
144
152
|
appearance: {
|
|
145
|
-
type: PropType<"ghost" | "filled" | "outlined" | "ghost-light">;
|
|
153
|
+
type: PropType<"ghost" | "filled" | "outlined" | "ghost-light" | "outlined-light">;
|
|
146
154
|
default: undefined;
|
|
147
155
|
};
|
|
148
156
|
/**
|
|
@@ -298,6 +306,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
298
306
|
type: PropType<boolean>;
|
|
299
307
|
default: undefined;
|
|
300
308
|
};
|
|
309
|
+
/**
|
|
310
|
+
* The initial value of the form. This value sets the `value` property
|
|
311
|
+
* only when the `value` property has not been explicitly set.
|
|
312
|
+
*/
|
|
313
|
+
initialValue: {
|
|
314
|
+
type: PropType<string>;
|
|
315
|
+
default: undefined;
|
|
316
|
+
};
|
|
301
317
|
/**
|
|
302
318
|
* The initial value of the form. This value sets the `value` property
|
|
303
319
|
* only when the `value` property has not been explicitly set.
|
|
@@ -409,7 +425,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
409
425
|
* The appearance the button should have.
|
|
410
426
|
*/
|
|
411
427
|
appearance: {
|
|
412
|
-
type: PropType<"ghost" | "filled" | "outlined" | "ghost-light">;
|
|
428
|
+
type: PropType<"ghost" | "filled" | "outlined" | "ghost-light" | "outlined-light">;
|
|
413
429
|
default: undefined;
|
|
414
430
|
};
|
|
415
431
|
/**
|
|
@@ -512,7 +528,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
512
528
|
iconTrailing: boolean;
|
|
513
529
|
size: "expanded" | "condensed" | "normal" | "super-condensed";
|
|
514
530
|
shape: "rounded" | "pill";
|
|
515
|
-
appearance: "ghost" | "filled" | "outlined" | "ghost-light";
|
|
531
|
+
appearance: "ghost" | "filled" | "outlined" | "ghost-light" | "outlined-light";
|
|
516
532
|
connotation: "accent" | "success" | "alert" | "cta";
|
|
517
533
|
disabled: boolean;
|
|
518
534
|
download: string;
|
|
@@ -522,6 +538,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
522
538
|
referrerpolicy: string;
|
|
523
539
|
rel: string;
|
|
524
540
|
target: "_self" | "_blank" | "_parent" | "_top";
|
|
541
|
+
initialValue: string;
|
|
525
542
|
currentValue: string;
|
|
526
543
|
required: boolean;
|
|
527
544
|
autofocus: boolean;
|
|
@@ -43,6 +43,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
43
43
|
type: PropType<boolean>;
|
|
44
44
|
default: undefined;
|
|
45
45
|
};
|
|
46
|
+
/**
|
|
47
|
+
* The initial value of the form. This value sets the `value` property
|
|
48
|
+
* only when the `value` property has not been explicitly set.
|
|
49
|
+
*/
|
|
50
|
+
initialValue: {
|
|
51
|
+
type: PropType<string>;
|
|
52
|
+
default: undefined;
|
|
53
|
+
};
|
|
46
54
|
/**
|
|
47
55
|
* The initial value of the form. This value sets the `value` property
|
|
48
56
|
* only when the `value` property has not been explicitly set.
|
|
@@ -76,6 +84,13 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
76
84
|
type: PropType<boolean>;
|
|
77
85
|
default: undefined;
|
|
78
86
|
};
|
|
87
|
+
/**
|
|
88
|
+
* Provides the default checkedness of the input element
|
|
89
|
+
*/
|
|
90
|
+
defaultChecked: {
|
|
91
|
+
type: PropType<boolean>;
|
|
92
|
+
default: undefined;
|
|
93
|
+
};
|
|
79
94
|
/**
|
|
80
95
|
* Provides the default checkedness of the input element
|
|
81
96
|
*/
|
|
@@ -173,6 +188,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
173
188
|
type: PropType<boolean>;
|
|
174
189
|
default: undefined;
|
|
175
190
|
};
|
|
191
|
+
/**
|
|
192
|
+
* The initial value of the form. This value sets the `value` property
|
|
193
|
+
* only when the `value` property has not been explicitly set.
|
|
194
|
+
*/
|
|
195
|
+
initialValue: {
|
|
196
|
+
type: PropType<string>;
|
|
197
|
+
default: undefined;
|
|
198
|
+
};
|
|
176
199
|
/**
|
|
177
200
|
* The initial value of the form. This value sets the `value` property
|
|
178
201
|
* only when the `value` property has not been explicitly set.
|
|
@@ -206,6 +229,13 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
206
229
|
type: PropType<boolean>;
|
|
207
230
|
default: undefined;
|
|
208
231
|
};
|
|
232
|
+
/**
|
|
233
|
+
* Provides the default checkedness of the input element
|
|
234
|
+
*/
|
|
235
|
+
defaultChecked: {
|
|
236
|
+
type: PropType<boolean>;
|
|
237
|
+
default: undefined;
|
|
238
|
+
};
|
|
209
239
|
/**
|
|
210
240
|
* Provides the default checkedness of the input element
|
|
211
241
|
*/
|
|
@@ -264,6 +294,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
264
294
|
ariaLabel: string;
|
|
265
295
|
connotation: "accent" | "cta";
|
|
266
296
|
disabled: boolean;
|
|
297
|
+
initialValue: string;
|
|
267
298
|
currentValue: string;
|
|
268
299
|
required: boolean;
|
|
269
300
|
label: string;
|
|
@@ -271,6 +302,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
271
302
|
successText: string;
|
|
272
303
|
errorText: string;
|
|
273
304
|
helperText: string;
|
|
305
|
+
defaultChecked: boolean;
|
|
274
306
|
checked: boolean;
|
|
275
307
|
currentChecked: boolean;
|
|
276
308
|
readonly: boolean;
|
|
@@ -44,6 +44,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
44
44
|
type: PropType<boolean>;
|
|
45
45
|
default: undefined;
|
|
46
46
|
};
|
|
47
|
+
/**
|
|
48
|
+
* The initial value of the form. This value sets the `value` property
|
|
49
|
+
* only when the `value` property has not been explicitly set.
|
|
50
|
+
*/
|
|
51
|
+
initialValue: {
|
|
52
|
+
type: PropType<string>;
|
|
53
|
+
default: undefined;
|
|
54
|
+
};
|
|
47
55
|
/**
|
|
48
56
|
* The initial value of the form. This value sets the `value` property
|
|
49
57
|
* only when the `value` property has not been explicitly set.
|
|
@@ -77,6 +85,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
77
85
|
type: PropType<boolean>;
|
|
78
86
|
default: undefined;
|
|
79
87
|
};
|
|
88
|
+
/**
|
|
89
|
+
* Provides the default checkedness of the input element
|
|
90
|
+
*/
|
|
91
|
+
defaultChecked: {
|
|
92
|
+
type: PropType<boolean>;
|
|
93
|
+
default: undefined;
|
|
94
|
+
};
|
|
80
95
|
/**
|
|
81
96
|
* Provides the default checkedness of the input element
|
|
82
97
|
*/
|
|
@@ -215,6 +230,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
215
230
|
type: PropType<boolean>;
|
|
216
231
|
default: undefined;
|
|
217
232
|
};
|
|
233
|
+
/**
|
|
234
|
+
* The initial value of the form. This value sets the `value` property
|
|
235
|
+
* only when the `value` property has not been explicitly set.
|
|
236
|
+
*/
|
|
237
|
+
initialValue: {
|
|
238
|
+
type: PropType<string>;
|
|
239
|
+
default: undefined;
|
|
240
|
+
};
|
|
218
241
|
/**
|
|
219
242
|
* The initial value of the form. This value sets the `value` property
|
|
220
243
|
* only when the `value` property has not been explicitly set.
|
|
@@ -248,6 +271,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
248
271
|
type: PropType<boolean>;
|
|
249
272
|
default: undefined;
|
|
250
273
|
};
|
|
274
|
+
/**
|
|
275
|
+
* Provides the default checkedness of the input element
|
|
276
|
+
*/
|
|
277
|
+
defaultChecked: {
|
|
278
|
+
type: PropType<boolean>;
|
|
279
|
+
default: undefined;
|
|
280
|
+
};
|
|
251
281
|
/**
|
|
252
282
|
* Provides the default checkedness of the input element
|
|
253
283
|
*/
|
|
@@ -315,6 +345,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
315
345
|
ariaLabel: string;
|
|
316
346
|
connotation: "accent" | "cta";
|
|
317
347
|
disabled: boolean;
|
|
348
|
+
initialValue: string;
|
|
318
349
|
currentValue: string;
|
|
319
350
|
required: boolean;
|
|
320
351
|
label: string;
|
|
@@ -322,6 +353,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
322
353
|
successText: string;
|
|
323
354
|
errorText: string;
|
|
324
355
|
helperText: string;
|
|
356
|
+
defaultChecked: boolean;
|
|
325
357
|
checked: boolean;
|
|
326
358
|
currentChecked: boolean;
|
|
327
359
|
readonly: boolean;
|
|
@@ -23,6 +23,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
23
23
|
type: PropType<"page" | "step" | "location" | "date" | "time" | "true" | "false">;
|
|
24
24
|
default: undefined;
|
|
25
25
|
};
|
|
26
|
+
/**
|
|
27
|
+
* The initial value of the form. This value sets the `value` property
|
|
28
|
+
* only when the `value` property has not been explicitly set.
|
|
29
|
+
*/
|
|
30
|
+
initialValue: {
|
|
31
|
+
type: PropType<string>;
|
|
32
|
+
default: undefined;
|
|
33
|
+
};
|
|
26
34
|
/**
|
|
27
35
|
* The initial value of the form. This value sets the `value` property
|
|
28
36
|
* only when the `value` property has not been explicitly set.
|
|
@@ -172,6 +180,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
172
180
|
type: PropType<"page" | "step" | "location" | "date" | "time" | "true" | "false">;
|
|
173
181
|
default: undefined;
|
|
174
182
|
};
|
|
183
|
+
/**
|
|
184
|
+
* The initial value of the form. This value sets the `value` property
|
|
185
|
+
* only when the `value` property has not been explicitly set.
|
|
186
|
+
*/
|
|
187
|
+
initialValue: {
|
|
188
|
+
type: PropType<string>;
|
|
189
|
+
default: undefined;
|
|
190
|
+
};
|
|
175
191
|
/**
|
|
176
192
|
* The initial value of the form. This value sets the `value` property
|
|
177
193
|
* only when the `value` property has not been explicitly set.
|
|
@@ -283,6 +299,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
283
299
|
placement: "top" | "bottom";
|
|
284
300
|
open: boolean;
|
|
285
301
|
disabled: boolean;
|
|
302
|
+
initialValue: string;
|
|
286
303
|
currentValue: string;
|
|
287
304
|
required: boolean;
|
|
288
305
|
label: string;
|
|
@@ -24,6 +24,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
24
24
|
type: PropType<"page" | "step" | "location" | "date" | "time" | "true" | "false">;
|
|
25
25
|
default: undefined;
|
|
26
26
|
};
|
|
27
|
+
/**
|
|
28
|
+
* The initial value of the form. This value sets the `value` property
|
|
29
|
+
* only when the `value` property has not been explicitly set.
|
|
30
|
+
*/
|
|
31
|
+
initialValue: {
|
|
32
|
+
type: PropType<string>;
|
|
33
|
+
default: undefined;
|
|
34
|
+
};
|
|
27
35
|
/**
|
|
28
36
|
* The initial value of the form. This value sets the `value` property
|
|
29
37
|
* only when the `value` property has not been explicitly set.
|
|
@@ -214,6 +222,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
214
222
|
type: PropType<"page" | "step" | "location" | "date" | "time" | "true" | "false">;
|
|
215
223
|
default: undefined;
|
|
216
224
|
};
|
|
225
|
+
/**
|
|
226
|
+
* The initial value of the form. This value sets the `value` property
|
|
227
|
+
* only when the `value` property has not been explicitly set.
|
|
228
|
+
*/
|
|
229
|
+
initialValue: {
|
|
230
|
+
type: PropType<string>;
|
|
231
|
+
default: undefined;
|
|
232
|
+
};
|
|
217
233
|
/**
|
|
218
234
|
* The initial value of the form. This value sets the `value` property
|
|
219
235
|
* only when the `value` property has not been explicitly set.
|
|
@@ -334,6 +350,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
334
350
|
placement: "top" | "bottom";
|
|
335
351
|
open: boolean;
|
|
336
352
|
disabled: boolean;
|
|
353
|
+
initialValue: string;
|
|
337
354
|
currentValue: string;
|
|
338
355
|
required: boolean;
|
|
339
356
|
label: string;
|
|
@@ -60,6 +60,13 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
60
60
|
type: PropType<string>;
|
|
61
61
|
default: undefined;
|
|
62
62
|
};
|
|
63
|
+
/**
|
|
64
|
+
* The initial value of the date-picker.
|
|
65
|
+
*/
|
|
66
|
+
initialValue: {
|
|
67
|
+
type: PropType<string>;
|
|
68
|
+
default: undefined;
|
|
69
|
+
};
|
|
63
70
|
/**
|
|
64
71
|
* The initial value of the date-picker.
|
|
65
72
|
*/
|
|
@@ -148,6 +155,13 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
148
155
|
type: PropType<string>;
|
|
149
156
|
default: undefined;
|
|
150
157
|
};
|
|
158
|
+
/**
|
|
159
|
+
* The initial value of the date-picker.
|
|
160
|
+
*/
|
|
161
|
+
initialValue: {
|
|
162
|
+
type: PropType<string>;
|
|
163
|
+
default: undefined;
|
|
164
|
+
};
|
|
151
165
|
/**
|
|
152
166
|
* The initial value of the date-picker.
|
|
153
167
|
*/
|
|
@@ -181,6 +195,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
181
195
|
ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
|
|
182
196
|
value: string;
|
|
183
197
|
disabled: boolean;
|
|
198
|
+
initialValue: string;
|
|
184
199
|
currentValue: string;
|
|
185
200
|
required: boolean;
|
|
186
201
|
label: string;
|
|
@@ -61,6 +61,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
61
61
|
type: PropType<string>;
|
|
62
62
|
default: undefined;
|
|
63
63
|
};
|
|
64
|
+
/**
|
|
65
|
+
* The initial value of the date-picker.
|
|
66
|
+
*/
|
|
67
|
+
initialValue: {
|
|
68
|
+
type: PropType<string>;
|
|
69
|
+
default: undefined;
|
|
70
|
+
};
|
|
64
71
|
/**
|
|
65
72
|
* The initial value of the date-picker.
|
|
66
73
|
*/
|
|
@@ -195,6 +202,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
195
202
|
type: PropType<string>;
|
|
196
203
|
default: undefined;
|
|
197
204
|
};
|
|
205
|
+
/**
|
|
206
|
+
* The initial value of the date-picker.
|
|
207
|
+
*/
|
|
208
|
+
initialValue: {
|
|
209
|
+
type: PropType<string>;
|
|
210
|
+
default: undefined;
|
|
211
|
+
};
|
|
198
212
|
/**
|
|
199
213
|
* The initial value of the date-picker.
|
|
200
214
|
*/
|
|
@@ -238,6 +252,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
238
252
|
ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
|
|
239
253
|
value: string;
|
|
240
254
|
disabled: boolean;
|
|
255
|
+
initialValue: string;
|
|
241
256
|
currentValue: string;
|
|
242
257
|
required: boolean;
|
|
243
258
|
label: string;
|
|
@@ -50,6 +50,22 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
50
50
|
type: PropType<string>;
|
|
51
51
|
default: undefined;
|
|
52
52
|
};
|
|
53
|
+
/**
|
|
54
|
+
* The initial start value. This value sets the `start` property
|
|
55
|
+
* only when the `start` property has not been explicitly set.
|
|
56
|
+
*/
|
|
57
|
+
initialStart: {
|
|
58
|
+
type: PropType<string>;
|
|
59
|
+
default: undefined;
|
|
60
|
+
};
|
|
61
|
+
/**
|
|
62
|
+
* The initial end value. This value sets the `end` property
|
|
63
|
+
* only when the `end` property has not been explicitly set.
|
|
64
|
+
*/
|
|
65
|
+
initialEnd: {
|
|
66
|
+
type: PropType<string>;
|
|
67
|
+
default: undefined;
|
|
68
|
+
};
|
|
53
69
|
/**
|
|
54
70
|
* The current start value of the element. This property serves as a mechanism
|
|
55
71
|
* to set the `start` property through both property assignment and the
|
|
@@ -101,6 +117,13 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
101
117
|
type: PropType<string>;
|
|
102
118
|
default: undefined;
|
|
103
119
|
};
|
|
120
|
+
/**
|
|
121
|
+
* The initial value of the date-picker.
|
|
122
|
+
*/
|
|
123
|
+
initialValue: {
|
|
124
|
+
type: PropType<string>;
|
|
125
|
+
default: undefined;
|
|
126
|
+
};
|
|
104
127
|
/**
|
|
105
128
|
* The initial value of the date-picker.
|
|
106
129
|
*/
|
|
@@ -175,6 +198,22 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
175
198
|
type: PropType<string>;
|
|
176
199
|
default: undefined;
|
|
177
200
|
};
|
|
201
|
+
/**
|
|
202
|
+
* The initial start value. This value sets the `start` property
|
|
203
|
+
* only when the `start` property has not been explicitly set.
|
|
204
|
+
*/
|
|
205
|
+
initialStart: {
|
|
206
|
+
type: PropType<string>;
|
|
207
|
+
default: undefined;
|
|
208
|
+
};
|
|
209
|
+
/**
|
|
210
|
+
* The initial end value. This value sets the `end` property
|
|
211
|
+
* only when the `end` property has not been explicitly set.
|
|
212
|
+
*/
|
|
213
|
+
initialEnd: {
|
|
214
|
+
type: PropType<string>;
|
|
215
|
+
default: undefined;
|
|
216
|
+
};
|
|
178
217
|
/**
|
|
179
218
|
* The current start value of the element. This property serves as a mechanism
|
|
180
219
|
* to set the `start` property through both property assignment and the
|
|
@@ -226,6 +265,13 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
226
265
|
type: PropType<string>;
|
|
227
266
|
default: undefined;
|
|
228
267
|
};
|
|
268
|
+
/**
|
|
269
|
+
* The initial value of the date-picker.
|
|
270
|
+
*/
|
|
271
|
+
initialValue: {
|
|
272
|
+
type: PropType<string>;
|
|
273
|
+
default: undefined;
|
|
274
|
+
};
|
|
229
275
|
/**
|
|
230
276
|
* The initial value of the date-picker.
|
|
231
277
|
*/
|
|
@@ -252,6 +298,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
252
298
|
ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
|
|
253
299
|
value: string;
|
|
254
300
|
disabled: boolean;
|
|
301
|
+
initialValue: string;
|
|
255
302
|
currentValue: string;
|
|
256
303
|
required: boolean;
|
|
257
304
|
label: string;
|
|
@@ -260,6 +307,8 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
260
307
|
readonly: boolean;
|
|
261
308
|
max: string;
|
|
262
309
|
min: string;
|
|
310
|
+
initialStart: string;
|
|
311
|
+
initialEnd: string;
|
|
263
312
|
currentStart: string;
|
|
264
313
|
currentEnd: string;
|
|
265
314
|
end: string;
|
|
@@ -51,6 +51,22 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
51
51
|
type: PropType<string>;
|
|
52
52
|
default: undefined;
|
|
53
53
|
};
|
|
54
|
+
/**
|
|
55
|
+
* The initial start value. This value sets the `start` property
|
|
56
|
+
* only when the `start` property has not been explicitly set.
|
|
57
|
+
*/
|
|
58
|
+
initialStart: {
|
|
59
|
+
type: PropType<string>;
|
|
60
|
+
default: undefined;
|
|
61
|
+
};
|
|
62
|
+
/**
|
|
63
|
+
* The initial end value. This value sets the `end` property
|
|
64
|
+
* only when the `end` property has not been explicitly set.
|
|
65
|
+
*/
|
|
66
|
+
initialEnd: {
|
|
67
|
+
type: PropType<string>;
|
|
68
|
+
default: undefined;
|
|
69
|
+
};
|
|
54
70
|
/**
|
|
55
71
|
* The current start value of the element. This property serves as a mechanism
|
|
56
72
|
* to set the `start` property through both property assignment and the
|
|
@@ -102,6 +118,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
102
118
|
type: PropType<string>;
|
|
103
119
|
default: undefined;
|
|
104
120
|
};
|
|
121
|
+
/**
|
|
122
|
+
* The initial value of the date-picker.
|
|
123
|
+
*/
|
|
124
|
+
initialValue: {
|
|
125
|
+
type: PropType<string>;
|
|
126
|
+
default: undefined;
|
|
127
|
+
};
|
|
105
128
|
/**
|
|
106
129
|
* The initial value of the date-picker.
|
|
107
130
|
*/
|
|
@@ -237,6 +260,22 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
237
260
|
type: PropType<string>;
|
|
238
261
|
default: undefined;
|
|
239
262
|
};
|
|
263
|
+
/**
|
|
264
|
+
* The initial start value. This value sets the `start` property
|
|
265
|
+
* only when the `start` property has not been explicitly set.
|
|
266
|
+
*/
|
|
267
|
+
initialStart: {
|
|
268
|
+
type: PropType<string>;
|
|
269
|
+
default: undefined;
|
|
270
|
+
};
|
|
271
|
+
/**
|
|
272
|
+
* The initial end value. This value sets the `end` property
|
|
273
|
+
* only when the `end` property has not been explicitly set.
|
|
274
|
+
*/
|
|
275
|
+
initialEnd: {
|
|
276
|
+
type: PropType<string>;
|
|
277
|
+
default: undefined;
|
|
278
|
+
};
|
|
240
279
|
/**
|
|
241
280
|
* The current start value of the element. This property serves as a mechanism
|
|
242
281
|
* to set the `start` property through both property assignment and the
|
|
@@ -288,6 +327,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
288
327
|
type: PropType<string>;
|
|
289
328
|
default: undefined;
|
|
290
329
|
};
|
|
330
|
+
/**
|
|
331
|
+
* The initial value of the date-picker.
|
|
332
|
+
*/
|
|
333
|
+
initialValue: {
|
|
334
|
+
type: PropType<string>;
|
|
335
|
+
default: undefined;
|
|
336
|
+
};
|
|
291
337
|
/**
|
|
292
338
|
* The initial value of the date-picker.
|
|
293
339
|
*/
|
|
@@ -327,6 +373,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
327
373
|
ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
|
|
328
374
|
value: string;
|
|
329
375
|
disabled: boolean;
|
|
376
|
+
initialValue: string;
|
|
330
377
|
currentValue: string;
|
|
331
378
|
required: boolean;
|
|
332
379
|
label: string;
|
|
@@ -335,6 +382,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
335
382
|
readonly: boolean;
|
|
336
383
|
max: string;
|
|
337
384
|
min: string;
|
|
385
|
+
initialStart: string;
|
|
386
|
+
initialEnd: string;
|
|
338
387
|
currentStart: string;
|
|
339
388
|
currentEnd: string;
|
|
340
389
|
end: string;
|
|
@@ -30,6 +30,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
30
30
|
type: PropType<boolean>;
|
|
31
31
|
default: undefined;
|
|
32
32
|
};
|
|
33
|
+
/**
|
|
34
|
+
* The initial value of the form. This value sets the `value` property
|
|
35
|
+
* only when the `value` property has not been explicitly set.
|
|
36
|
+
*/
|
|
37
|
+
initialValue: {
|
|
38
|
+
type: PropType<string>;
|
|
39
|
+
default: undefined;
|
|
40
|
+
};
|
|
33
41
|
/**
|
|
34
42
|
* The initial value of the form. This value sets the `value` property
|
|
35
43
|
* only when the `value` property has not been explicitly set.
|
|
@@ -178,6 +186,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
178
186
|
type: PropType<boolean>;
|
|
179
187
|
default: undefined;
|
|
180
188
|
};
|
|
189
|
+
/**
|
|
190
|
+
* The initial value of the form. This value sets the `value` property
|
|
191
|
+
* only when the `value` property has not been explicitly set.
|
|
192
|
+
*/
|
|
193
|
+
initialValue: {
|
|
194
|
+
type: PropType<string>;
|
|
195
|
+
default: undefined;
|
|
196
|
+
};
|
|
181
197
|
/**
|
|
182
198
|
* The initial value of the form. This value sets the `value` property
|
|
183
199
|
* only when the `value` property has not been explicitly set.
|
|
@@ -298,6 +314,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
298
314
|
size: "expanded" | "normal";
|
|
299
315
|
connotation: "accent" | "cta" | "announcement";
|
|
300
316
|
disabled: boolean;
|
|
317
|
+
initialValue: string;
|
|
301
318
|
currentValue: string;
|
|
302
319
|
required: boolean;
|
|
303
320
|
autofocus: boolean;
|
|
@@ -31,6 +31,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
31
31
|
type: PropType<boolean>;
|
|
32
32
|
default: undefined;
|
|
33
33
|
};
|
|
34
|
+
/**
|
|
35
|
+
* The initial value of the form. This value sets the `value` property
|
|
36
|
+
* only when the `value` property has not been explicitly set.
|
|
37
|
+
*/
|
|
38
|
+
initialValue: {
|
|
39
|
+
type: PropType<string>;
|
|
40
|
+
default: undefined;
|
|
41
|
+
};
|
|
34
42
|
/**
|
|
35
43
|
* The initial value of the form. This value sets the `value` property
|
|
36
44
|
* only when the `value` property has not been explicitly set.
|
|
@@ -210,6 +218,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
210
218
|
type: PropType<boolean>;
|
|
211
219
|
default: undefined;
|
|
212
220
|
};
|
|
221
|
+
/**
|
|
222
|
+
* The initial value of the form. This value sets the `value` property
|
|
223
|
+
* only when the `value` property has not been explicitly set.
|
|
224
|
+
*/
|
|
225
|
+
initialValue: {
|
|
226
|
+
type: PropType<string>;
|
|
227
|
+
default: undefined;
|
|
228
|
+
};
|
|
213
229
|
/**
|
|
214
230
|
* The initial value of the form. This value sets the `value` property
|
|
215
231
|
* only when the `value` property has not been explicitly set.
|
|
@@ -337,6 +353,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
337
353
|
size: "expanded" | "normal";
|
|
338
354
|
connotation: "accent" | "cta" | "announcement";
|
|
339
355
|
disabled: boolean;
|
|
356
|
+
initialValue: string;
|
|
340
357
|
currentValue: string;
|
|
341
358
|
required: boolean;
|
|
342
359
|
autofocus: boolean;
|