@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
|
@@ -36,6 +36,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
36
36
|
type: PropType<boolean>;
|
|
37
37
|
default: undefined;
|
|
38
38
|
};
|
|
39
|
+
/**
|
|
40
|
+
* The initial value of the form. This value sets the `value` property
|
|
41
|
+
* only when the `value` property has not been explicitly set.
|
|
42
|
+
*/
|
|
43
|
+
initialValue: {
|
|
44
|
+
type: PropType<string>;
|
|
45
|
+
default: undefined;
|
|
46
|
+
};
|
|
39
47
|
/**
|
|
40
48
|
* The initial value of the form. This value sets the `value` property
|
|
41
49
|
* only when the `value` property has not been explicitly set.
|
|
@@ -143,6 +151,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
143
151
|
type: PropType<boolean>;
|
|
144
152
|
default: undefined;
|
|
145
153
|
};
|
|
154
|
+
/**
|
|
155
|
+
* The initial value of the form. This value sets the `value` property
|
|
156
|
+
* only when the `value` property has not been explicitly set.
|
|
157
|
+
*/
|
|
158
|
+
initialValue: {
|
|
159
|
+
type: PropType<string>;
|
|
160
|
+
default: undefined;
|
|
161
|
+
};
|
|
146
162
|
/**
|
|
147
163
|
* The initial value of the form. This value sets the `value` property
|
|
148
164
|
* only when the `value` property has not been explicitly set.
|
|
@@ -210,6 +226,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
210
226
|
value: string;
|
|
211
227
|
size: "expanded" | "normal";
|
|
212
228
|
disabled: boolean;
|
|
229
|
+
initialValue: string;
|
|
213
230
|
currentValue: string;
|
|
214
231
|
required: boolean;
|
|
215
232
|
label: string;
|
|
@@ -37,6 +37,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
37
37
|
type: PropType<boolean>;
|
|
38
38
|
default: undefined;
|
|
39
39
|
};
|
|
40
|
+
/**
|
|
41
|
+
* The initial value of the form. This value sets the `value` property
|
|
42
|
+
* only when the `value` property has not been explicitly set.
|
|
43
|
+
*/
|
|
44
|
+
initialValue: {
|
|
45
|
+
type: PropType<string>;
|
|
46
|
+
default: undefined;
|
|
47
|
+
};
|
|
40
48
|
/**
|
|
41
49
|
* The initial value of the form. This value sets the `value` property
|
|
42
50
|
* only when the `value` property has not been explicitly set.
|
|
@@ -180,6 +188,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
180
188
|
type: PropType<boolean>;
|
|
181
189
|
default: undefined;
|
|
182
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
|
+
};
|
|
183
199
|
/**
|
|
184
200
|
* The initial value of the form. This value sets the `value` property
|
|
185
201
|
* only when the `value` property has not been explicitly set.
|
|
@@ -255,6 +271,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
255
271
|
value: string;
|
|
256
272
|
size: "expanded" | "normal";
|
|
257
273
|
disabled: boolean;
|
|
274
|
+
initialValue: string;
|
|
258
275
|
currentValue: string;
|
|
259
276
|
required: boolean;
|
|
260
277
|
label: string;
|
|
@@ -58,6 +58,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
58
58
|
type: PropType<boolean>;
|
|
59
59
|
default: undefined;
|
|
60
60
|
};
|
|
61
|
+
/**
|
|
62
|
+
* The initial value of the form. This value sets the `value` property
|
|
63
|
+
* only when the `value` property has not been explicitly set.
|
|
64
|
+
*/
|
|
65
|
+
initialValue: {
|
|
66
|
+
type: PropType<string>;
|
|
67
|
+
default: undefined;
|
|
68
|
+
};
|
|
61
69
|
/**
|
|
62
70
|
* The initial value of the form. This value sets the `value` property
|
|
63
71
|
* only when the `value` property has not been explicitly set.
|
|
@@ -271,6 +279,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
271
279
|
type: PropType<boolean>;
|
|
272
280
|
default: undefined;
|
|
273
281
|
};
|
|
282
|
+
/**
|
|
283
|
+
* The initial value of the form. This value sets the `value` property
|
|
284
|
+
* only when the `value` property has not been explicitly set.
|
|
285
|
+
*/
|
|
286
|
+
initialValue: {
|
|
287
|
+
type: PropType<string>;
|
|
288
|
+
default: undefined;
|
|
289
|
+
};
|
|
274
290
|
/**
|
|
275
291
|
* The initial value of the form. This value sets the `value` property
|
|
276
292
|
* only when the `value` property has not been explicitly set.
|
|
@@ -415,6 +431,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
415
431
|
shape: "rounded" | "pill";
|
|
416
432
|
appearance: "fieldset" | "ghost";
|
|
417
433
|
disabled: boolean;
|
|
434
|
+
initialValue: string;
|
|
418
435
|
currentValue: string;
|
|
419
436
|
required: boolean;
|
|
420
437
|
autofocus: boolean;
|
|
@@ -59,6 +59,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
59
59
|
type: PropType<boolean>;
|
|
60
60
|
default: undefined;
|
|
61
61
|
};
|
|
62
|
+
/**
|
|
63
|
+
* The initial value of the form. This value sets the `value` property
|
|
64
|
+
* only when the `value` property has not been explicitly set.
|
|
65
|
+
*/
|
|
66
|
+
initialValue: {
|
|
67
|
+
type: PropType<string>;
|
|
68
|
+
default: undefined;
|
|
69
|
+
};
|
|
62
70
|
/**
|
|
63
71
|
* The initial value of the form. This value sets the `value` property
|
|
64
72
|
* only when the `value` property has not been explicitly set.
|
|
@@ -313,6 +321,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
313
321
|
type: PropType<boolean>;
|
|
314
322
|
default: undefined;
|
|
315
323
|
};
|
|
324
|
+
/**
|
|
325
|
+
* The initial value of the form. This value sets the `value` property
|
|
326
|
+
* only when the `value` property has not been explicitly set.
|
|
327
|
+
*/
|
|
328
|
+
initialValue: {
|
|
329
|
+
type: PropType<string>;
|
|
330
|
+
default: undefined;
|
|
331
|
+
};
|
|
316
332
|
/**
|
|
317
333
|
* The initial value of the form. This value sets the `value` property
|
|
318
334
|
* only when the `value` property has not been explicitly set.
|
|
@@ -466,6 +482,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
466
482
|
shape: "rounded" | "pill";
|
|
467
483
|
appearance: "fieldset" | "ghost";
|
|
468
484
|
disabled: boolean;
|
|
485
|
+
initialValue: string;
|
|
469
486
|
currentValue: string;
|
|
470
487
|
required: boolean;
|
|
471
488
|
autofocus: boolean;
|
|
@@ -37,6 +37,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
37
37
|
type: PropType<boolean>;
|
|
38
38
|
default: undefined;
|
|
39
39
|
};
|
|
40
|
+
/**
|
|
41
|
+
* The initial value of the option. This value sets the `value` property
|
|
42
|
+
* only when the `value` property has not been explicitly set.
|
|
43
|
+
*/
|
|
44
|
+
initialValue: {
|
|
45
|
+
type: PropType<string>;
|
|
46
|
+
default: undefined;
|
|
47
|
+
};
|
|
40
48
|
/**
|
|
41
49
|
* The initial value of the option. This value sets the `value` property
|
|
42
50
|
* only when the `value` property has not been explicitly set.
|
|
@@ -99,6 +107,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
99
107
|
type: PropType<boolean>;
|
|
100
108
|
default: undefined;
|
|
101
109
|
};
|
|
110
|
+
/**
|
|
111
|
+
* The initial value of the option. This value sets the `value` property
|
|
112
|
+
* only when the `value` property has not been explicitly set.
|
|
113
|
+
*/
|
|
114
|
+
initialValue: {
|
|
115
|
+
type: PropType<string>;
|
|
116
|
+
default: undefined;
|
|
117
|
+
};
|
|
102
118
|
/**
|
|
103
119
|
* The initial value of the option. This value sets the `value` property
|
|
104
120
|
* only when the `value` property has not been explicitly set.
|
|
@@ -122,6 +138,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
122
138
|
iconTrailing: boolean;
|
|
123
139
|
text: string;
|
|
124
140
|
disabled: boolean;
|
|
141
|
+
initialValue: string;
|
|
125
142
|
label: string;
|
|
126
143
|
selected: boolean;
|
|
127
144
|
}>;
|
|
@@ -38,6 +38,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
38
38
|
type: PropType<boolean>;
|
|
39
39
|
default: undefined;
|
|
40
40
|
};
|
|
41
|
+
/**
|
|
42
|
+
* The initial value of the option. This value sets the `value` property
|
|
43
|
+
* only when the `value` property has not been explicitly set.
|
|
44
|
+
*/
|
|
45
|
+
initialValue: {
|
|
46
|
+
type: PropType<string>;
|
|
47
|
+
default: undefined;
|
|
48
|
+
};
|
|
41
49
|
/**
|
|
42
50
|
* The initial value of the option. This value sets the `value` property
|
|
43
51
|
* only when the `value` property has not been explicitly set.
|
|
@@ -131,6 +139,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
131
139
|
type: PropType<boolean>;
|
|
132
140
|
default: undefined;
|
|
133
141
|
};
|
|
142
|
+
/**
|
|
143
|
+
* The initial value of the option. This value sets the `value` property
|
|
144
|
+
* only when the `value` property has not been explicitly set.
|
|
145
|
+
*/
|
|
146
|
+
initialValue: {
|
|
147
|
+
type: PropType<string>;
|
|
148
|
+
default: undefined;
|
|
149
|
+
};
|
|
134
150
|
/**
|
|
135
151
|
* The initial value of the option. This value sets the `value` property
|
|
136
152
|
* only when the `value` property has not been explicitly set.
|
|
@@ -161,6 +177,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
161
177
|
iconTrailing: boolean;
|
|
162
178
|
text: string;
|
|
163
179
|
disabled: boolean;
|
|
180
|
+
initialValue: string;
|
|
164
181
|
label: string;
|
|
165
182
|
selected: boolean;
|
|
166
183
|
}, SlotsType<{
|
|
@@ -15,6 +15,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
15
15
|
type: PropType<boolean>;
|
|
16
16
|
default: undefined;
|
|
17
17
|
};
|
|
18
|
+
/**
|
|
19
|
+
* The initial value of the form. This value sets the `value` property
|
|
20
|
+
* only when the `value` property has not been explicitly set.
|
|
21
|
+
*/
|
|
22
|
+
initialValue: {
|
|
23
|
+
type: PropType<string>;
|
|
24
|
+
default: undefined;
|
|
25
|
+
};
|
|
18
26
|
/**
|
|
19
27
|
* The initial value of the form. This value sets the `value` property
|
|
20
28
|
* only when the `value` property has not been explicitly set.
|
|
@@ -48,6 +56,13 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
48
56
|
type: PropType<boolean>;
|
|
49
57
|
default: undefined;
|
|
50
58
|
};
|
|
59
|
+
/**
|
|
60
|
+
* Provides the default checkedness of the input element
|
|
61
|
+
*/
|
|
62
|
+
defaultChecked: {
|
|
63
|
+
type: PropType<boolean>;
|
|
64
|
+
default: undefined;
|
|
65
|
+
};
|
|
51
66
|
/**
|
|
52
67
|
* Provides the default checkedness of the input element
|
|
53
68
|
*/
|
|
@@ -109,6 +124,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
109
124
|
type: PropType<boolean>;
|
|
110
125
|
default: undefined;
|
|
111
126
|
};
|
|
127
|
+
/**
|
|
128
|
+
* The initial value of the form. This value sets the `value` property
|
|
129
|
+
* only when the `value` property has not been explicitly set.
|
|
130
|
+
*/
|
|
131
|
+
initialValue: {
|
|
132
|
+
type: PropType<string>;
|
|
133
|
+
default: undefined;
|
|
134
|
+
};
|
|
112
135
|
/**
|
|
113
136
|
* The initial value of the form. This value sets the `value` property
|
|
114
137
|
* only when the `value` property has not been explicitly set.
|
|
@@ -142,6 +165,13 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
142
165
|
type: PropType<boolean>;
|
|
143
166
|
default: undefined;
|
|
144
167
|
};
|
|
168
|
+
/**
|
|
169
|
+
* Provides the default checkedness of the input element
|
|
170
|
+
*/
|
|
171
|
+
defaultChecked: {
|
|
172
|
+
type: PropType<boolean>;
|
|
173
|
+
default: undefined;
|
|
174
|
+
};
|
|
145
175
|
/**
|
|
146
176
|
* Provides the default checkedness of the input element
|
|
147
177
|
*/
|
|
@@ -192,9 +222,11 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
192
222
|
ariaLabel: string;
|
|
193
223
|
connotation: "accent" | "cta";
|
|
194
224
|
disabled: boolean;
|
|
225
|
+
initialValue: string;
|
|
195
226
|
currentValue: string;
|
|
196
227
|
required: boolean;
|
|
197
228
|
label: string;
|
|
229
|
+
defaultChecked: boolean;
|
|
198
230
|
checked: boolean;
|
|
199
231
|
currentChecked: boolean;
|
|
200
232
|
readonly: boolean;
|
|
@@ -16,6 +16,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
16
16
|
type: PropType<boolean>;
|
|
17
17
|
default: undefined;
|
|
18
18
|
};
|
|
19
|
+
/**
|
|
20
|
+
* The initial value of the form. This value sets the `value` property
|
|
21
|
+
* only when the `value` property has not been explicitly set.
|
|
22
|
+
*/
|
|
23
|
+
initialValue: {
|
|
24
|
+
type: PropType<string>;
|
|
25
|
+
default: undefined;
|
|
26
|
+
};
|
|
19
27
|
/**
|
|
20
28
|
* The initial value of the form. This value sets the `value` property
|
|
21
29
|
* only when the `value` property has not been explicitly set.
|
|
@@ -49,6 +57,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
49
57
|
type: PropType<boolean>;
|
|
50
58
|
default: undefined;
|
|
51
59
|
};
|
|
60
|
+
/**
|
|
61
|
+
* Provides the default checkedness of the input element
|
|
62
|
+
*/
|
|
63
|
+
defaultChecked: {
|
|
64
|
+
type: PropType<boolean>;
|
|
65
|
+
default: undefined;
|
|
66
|
+
};
|
|
52
67
|
/**
|
|
53
68
|
* Provides the default checkedness of the input element
|
|
54
69
|
*/
|
|
@@ -146,6 +161,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
146
161
|
type: PropType<boolean>;
|
|
147
162
|
default: undefined;
|
|
148
163
|
};
|
|
164
|
+
/**
|
|
165
|
+
* The initial value of the form. This value sets the `value` property
|
|
166
|
+
* only when the `value` property has not been explicitly set.
|
|
167
|
+
*/
|
|
168
|
+
initialValue: {
|
|
169
|
+
type: PropType<string>;
|
|
170
|
+
default: undefined;
|
|
171
|
+
};
|
|
149
172
|
/**
|
|
150
173
|
* The initial value of the form. This value sets the `value` property
|
|
151
174
|
* only when the `value` property has not been explicitly set.
|
|
@@ -179,6 +202,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
179
202
|
type: PropType<boolean>;
|
|
180
203
|
default: undefined;
|
|
181
204
|
};
|
|
205
|
+
/**
|
|
206
|
+
* Provides the default checkedness of the input element
|
|
207
|
+
*/
|
|
208
|
+
defaultChecked: {
|
|
209
|
+
type: PropType<boolean>;
|
|
210
|
+
default: undefined;
|
|
211
|
+
};
|
|
182
212
|
/**
|
|
183
213
|
* Provides the default checkedness of the input element
|
|
184
214
|
*/
|
|
@@ -237,9 +267,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
237
267
|
ariaLabel: string;
|
|
238
268
|
connotation: "accent" | "cta";
|
|
239
269
|
disabled: boolean;
|
|
270
|
+
initialValue: string;
|
|
240
271
|
currentValue: string;
|
|
241
272
|
required: boolean;
|
|
242
273
|
label: string;
|
|
274
|
+
defaultChecked: boolean;
|
|
243
275
|
checked: boolean;
|
|
244
276
|
currentChecked: boolean;
|
|
245
277
|
readonly: boolean;
|
|
@@ -25,6 +25,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
25
25
|
type: PropType<boolean>;
|
|
26
26
|
default: undefined;
|
|
27
27
|
};
|
|
28
|
+
/**
|
|
29
|
+
* The initial value of the form. This value sets the `value` property
|
|
30
|
+
* only when the `value` property has not been explicitly set.
|
|
31
|
+
*/
|
|
32
|
+
initialValue: {
|
|
33
|
+
type: PropType<string>;
|
|
34
|
+
default: undefined;
|
|
35
|
+
};
|
|
28
36
|
/**
|
|
29
37
|
* The initial value of the form. This value sets the `value` property
|
|
30
38
|
* only when the `value` property has not been explicitly set.
|
|
@@ -58,6 +66,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
58
66
|
type: PropType<boolean>;
|
|
59
67
|
default: undefined;
|
|
60
68
|
};
|
|
69
|
+
/**
|
|
70
|
+
* The initial start value. This value sets the `start` property
|
|
71
|
+
* only when the `start` property has not been explicitly set.
|
|
72
|
+
*/
|
|
73
|
+
initialStart: {
|
|
74
|
+
type: PropType<string>;
|
|
75
|
+
default: undefined;
|
|
76
|
+
};
|
|
61
77
|
/**
|
|
62
78
|
* The current start value of the element. This property serves as a mechanism
|
|
63
79
|
* to set the `start` property through both property assignment and the
|
|
@@ -80,6 +96,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
80
96
|
type: PropType<string>;
|
|
81
97
|
default: undefined;
|
|
82
98
|
};
|
|
99
|
+
/**
|
|
100
|
+
* The initial end value. This value sets the `end` property
|
|
101
|
+
* only when the `end` property has not been explicitly set.
|
|
102
|
+
*/
|
|
103
|
+
initialEnd: {
|
|
104
|
+
type: PropType<string>;
|
|
105
|
+
default: undefined;
|
|
106
|
+
};
|
|
83
107
|
/**
|
|
84
108
|
* The current end value of the element. This property serves as a mechanism
|
|
85
109
|
* to set the `end` property through both property assignment and the
|
|
@@ -185,6 +209,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
185
209
|
type: PropType<boolean>;
|
|
186
210
|
default: undefined;
|
|
187
211
|
};
|
|
212
|
+
/**
|
|
213
|
+
* The initial value of the form. This value sets the `value` property
|
|
214
|
+
* only when the `value` property has not been explicitly set.
|
|
215
|
+
*/
|
|
216
|
+
initialValue: {
|
|
217
|
+
type: PropType<string>;
|
|
218
|
+
default: undefined;
|
|
219
|
+
};
|
|
188
220
|
/**
|
|
189
221
|
* The initial value of the form. This value sets the `value` property
|
|
190
222
|
* only when the `value` property has not been explicitly set.
|
|
@@ -218,6 +250,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
218
250
|
type: PropType<boolean>;
|
|
219
251
|
default: undefined;
|
|
220
252
|
};
|
|
253
|
+
/**
|
|
254
|
+
* The initial start value. This value sets the `start` property
|
|
255
|
+
* only when the `start` property has not been explicitly set.
|
|
256
|
+
*/
|
|
257
|
+
initialStart: {
|
|
258
|
+
type: PropType<string>;
|
|
259
|
+
default: undefined;
|
|
260
|
+
};
|
|
221
261
|
/**
|
|
222
262
|
* The current start value of the element. This property serves as a mechanism
|
|
223
263
|
* to set the `start` property through both property assignment and the
|
|
@@ -240,6 +280,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
240
280
|
type: PropType<string>;
|
|
241
281
|
default: undefined;
|
|
242
282
|
};
|
|
283
|
+
/**
|
|
284
|
+
* The initial end value. This value sets the `end` property
|
|
285
|
+
* only when the `end` property has not been explicitly set.
|
|
286
|
+
*/
|
|
287
|
+
initialEnd: {
|
|
288
|
+
type: PropType<string>;
|
|
289
|
+
default: undefined;
|
|
290
|
+
};
|
|
243
291
|
/**
|
|
244
292
|
* The current end value of the element. This property serves as a mechanism
|
|
245
293
|
* to set the `end` property through both property assignment and the
|
|
@@ -325,12 +373,15 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
325
373
|
value: string;
|
|
326
374
|
connotation: "accent" | "cta";
|
|
327
375
|
disabled: boolean;
|
|
376
|
+
initialValue: string;
|
|
328
377
|
currentValue: string;
|
|
329
378
|
required: boolean;
|
|
330
379
|
label: string;
|
|
331
380
|
start: string;
|
|
332
381
|
max: number;
|
|
333
382
|
min: number;
|
|
383
|
+
initialStart: string;
|
|
384
|
+
initialEnd: string;
|
|
334
385
|
currentStart: string;
|
|
335
386
|
currentEnd: string;
|
|
336
387
|
end: string;
|
|
@@ -26,6 +26,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
26
26
|
type: PropType<boolean>;
|
|
27
27
|
default: undefined;
|
|
28
28
|
};
|
|
29
|
+
/**
|
|
30
|
+
* The initial value of the form. This value sets the `value` property
|
|
31
|
+
* only when the `value` property has not been explicitly set.
|
|
32
|
+
*/
|
|
33
|
+
initialValue: {
|
|
34
|
+
type: PropType<string>;
|
|
35
|
+
default: undefined;
|
|
36
|
+
};
|
|
29
37
|
/**
|
|
30
38
|
* The initial value of the form. This value sets the `value` property
|
|
31
39
|
* only when the `value` property has not been explicitly set.
|
|
@@ -59,6 +67,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
59
67
|
type: PropType<boolean>;
|
|
60
68
|
default: undefined;
|
|
61
69
|
};
|
|
70
|
+
/**
|
|
71
|
+
* The initial start value. This value sets the `start` property
|
|
72
|
+
* only when the `start` property has not been explicitly set.
|
|
73
|
+
*/
|
|
74
|
+
initialStart: {
|
|
75
|
+
type: PropType<string>;
|
|
76
|
+
default: undefined;
|
|
77
|
+
};
|
|
62
78
|
/**
|
|
63
79
|
* The current start value of the element. This property serves as a mechanism
|
|
64
80
|
* to set the `start` property through both property assignment and the
|
|
@@ -81,6 +97,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
81
97
|
type: PropType<string>;
|
|
82
98
|
default: undefined;
|
|
83
99
|
};
|
|
100
|
+
/**
|
|
101
|
+
* The initial end value. This value sets the `end` property
|
|
102
|
+
* only when the `end` property has not been explicitly set.
|
|
103
|
+
*/
|
|
104
|
+
initialEnd: {
|
|
105
|
+
type: PropType<string>;
|
|
106
|
+
default: undefined;
|
|
107
|
+
};
|
|
84
108
|
/**
|
|
85
109
|
* The current end value of the element. This property serves as a mechanism
|
|
86
110
|
* to set the `end` property through both property assignment and the
|
|
@@ -242,6 +266,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
242
266
|
type: PropType<boolean>;
|
|
243
267
|
default: undefined;
|
|
244
268
|
};
|
|
269
|
+
/**
|
|
270
|
+
* The initial value of the form. This value sets the `value` property
|
|
271
|
+
* only when the `value` property has not been explicitly set.
|
|
272
|
+
*/
|
|
273
|
+
initialValue: {
|
|
274
|
+
type: PropType<string>;
|
|
275
|
+
default: undefined;
|
|
276
|
+
};
|
|
245
277
|
/**
|
|
246
278
|
* The initial value of the form. This value sets the `value` property
|
|
247
279
|
* only when the `value` property has not been explicitly set.
|
|
@@ -275,6 +307,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
275
307
|
type: PropType<boolean>;
|
|
276
308
|
default: undefined;
|
|
277
309
|
};
|
|
310
|
+
/**
|
|
311
|
+
* The initial start value. This value sets the `start` property
|
|
312
|
+
* only when the `start` property has not been explicitly set.
|
|
313
|
+
*/
|
|
314
|
+
initialStart: {
|
|
315
|
+
type: PropType<string>;
|
|
316
|
+
default: undefined;
|
|
317
|
+
};
|
|
278
318
|
/**
|
|
279
319
|
* The current start value of the element. This property serves as a mechanism
|
|
280
320
|
* to set the `start` property through both property assignment and the
|
|
@@ -297,6 +337,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
297
337
|
type: PropType<string>;
|
|
298
338
|
default: undefined;
|
|
299
339
|
};
|
|
340
|
+
/**
|
|
341
|
+
* The initial end value. This value sets the `end` property
|
|
342
|
+
* only when the `end` property has not been explicitly set.
|
|
343
|
+
*/
|
|
344
|
+
initialEnd: {
|
|
345
|
+
type: PropType<string>;
|
|
346
|
+
default: undefined;
|
|
347
|
+
};
|
|
300
348
|
/**
|
|
301
349
|
* The current end value of the element. This property serves as a mechanism
|
|
302
350
|
* to set the `end` property through both property assignment and the
|
|
@@ -394,12 +442,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
394
442
|
value: string;
|
|
395
443
|
connotation: "accent" | "cta";
|
|
396
444
|
disabled: boolean;
|
|
445
|
+
initialValue: string;
|
|
397
446
|
currentValue: string;
|
|
398
447
|
required: boolean;
|
|
399
448
|
label: string;
|
|
400
449
|
start: string;
|
|
401
450
|
max: number;
|
|
402
451
|
min: number;
|
|
452
|
+
initialStart: string;
|
|
453
|
+
initialEnd: string;
|
|
403
454
|
currentStart: string;
|
|
404
455
|
currentEnd: string;
|
|
405
456
|
end: string;
|
|
@@ -58,6 +58,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
58
58
|
type: PropType<boolean>;
|
|
59
59
|
default: undefined;
|
|
60
60
|
};
|
|
61
|
+
/**
|
|
62
|
+
* The initial value of the form. This value sets the `value` property
|
|
63
|
+
* only when the `value` property has not been explicitly set.
|
|
64
|
+
*/
|
|
65
|
+
initialValue: {
|
|
66
|
+
type: PropType<string>;
|
|
67
|
+
default: undefined;
|
|
68
|
+
};
|
|
61
69
|
/**
|
|
62
70
|
* The initial value of the form. This value sets the `value` property
|
|
63
71
|
* only when the `value` property has not been explicitly set.
|
|
@@ -172,6 +180,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
172
180
|
*/
|
|
173
181
|
selectFirstOption(): void;
|
|
174
182
|
setDefaultSelectedOption(): void;
|
|
183
|
+
slottedOptionsChanged(prev: Element[] | undefined, next: Element[]): unknown;
|
|
175
184
|
}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, ("click" | "focus" | "blur" | "keydown" | "keyup" | "input" | "change" | "update:modelValue")[], string, Readonly<import("vue").ExtractPropTypes<{
|
|
176
185
|
/**
|
|
177
186
|
* The success text for the form element.
|
|
@@ -230,6 +239,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
230
239
|
type: PropType<boolean>;
|
|
231
240
|
default: undefined;
|
|
232
241
|
};
|
|
242
|
+
/**
|
|
243
|
+
* The initial value of the form. This value sets the `value` property
|
|
244
|
+
* only when the `value` property has not been explicitly set.
|
|
245
|
+
*/
|
|
246
|
+
initialValue: {
|
|
247
|
+
type: PropType<string>;
|
|
248
|
+
default: undefined;
|
|
249
|
+
};
|
|
233
250
|
/**
|
|
234
251
|
* The initial value of the form. This value sets the `value` property
|
|
235
252
|
* only when the `value` property has not been explicitly set.
|
|
@@ -333,6 +350,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
333
350
|
appearance: "fieldset" | "ghost";
|
|
334
351
|
open: boolean;
|
|
335
352
|
disabled: boolean;
|
|
353
|
+
initialValue: string;
|
|
336
354
|
currentValue: string;
|
|
337
355
|
required: boolean;
|
|
338
356
|
label: string;
|
|
@@ -59,6 +59,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
59
59
|
type: PropType<boolean>;
|
|
60
60
|
default: undefined;
|
|
61
61
|
};
|
|
62
|
+
/**
|
|
63
|
+
* The initial value of the form. This value sets the `value` property
|
|
64
|
+
* only when the `value` property has not been explicitly set.
|
|
65
|
+
*/
|
|
66
|
+
initialValue: {
|
|
67
|
+
type: PropType<string>;
|
|
68
|
+
default: undefined;
|
|
69
|
+
};
|
|
62
70
|
/**
|
|
63
71
|
* The initial value of the form. This value sets the `value` property
|
|
64
72
|
* only when the `value` property has not been explicitly set.
|
|
@@ -173,6 +181,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
173
181
|
*/
|
|
174
182
|
selectFirstOption(): void;
|
|
175
183
|
setDefaultSelectedOption(): void;
|
|
184
|
+
slottedOptionsChanged(prev: Element[] | undefined, next: Element[]): unknown;
|
|
176
185
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
177
186
|
/**
|
|
178
187
|
* Fires when a pointing device button (such as a mouse's primary mouse button) is both pressed and released while the pointer is located inside the element.
|
|
@@ -272,6 +281,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
272
281
|
type: PropType<boolean>;
|
|
273
282
|
default: undefined;
|
|
274
283
|
};
|
|
284
|
+
/**
|
|
285
|
+
* The initial value of the form. This value sets the `value` property
|
|
286
|
+
* only when the `value` property has not been explicitly set.
|
|
287
|
+
*/
|
|
288
|
+
initialValue: {
|
|
289
|
+
type: PropType<string>;
|
|
290
|
+
default: undefined;
|
|
291
|
+
};
|
|
275
292
|
/**
|
|
276
293
|
* The initial value of the form. This value sets the `value` property
|
|
277
294
|
* only when the `value` property has not been explicitly set.
|
|
@@ -384,6 +401,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
384
401
|
appearance: "fieldset" | "ghost";
|
|
385
402
|
open: boolean;
|
|
386
403
|
disabled: boolean;
|
|
404
|
+
initialValue: string;
|
|
387
405
|
currentValue: string;
|
|
388
406
|
required: boolean;
|
|
389
407
|
label: string;
|