@vonage/vivid-vue 3.59.0 → 4.0.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/VBanner.vue2.d.ts +3 -3
- package/generated/components/VBanner.vue3.d.ts +3 -3
- package/generated/components/VButton.vue2.d.ts +8 -8
- package/generated/components/VButton.vue3.d.ts +8 -8
- package/generated/components/VCheckbox.vue2.d.ts +10 -10
- package/generated/components/VCheckbox.vue3.d.ts +10 -10
- package/generated/components/VCombobox.vue2.d.ts +5 -5
- package/generated/components/VCombobox.vue3.d.ts +5 -5
- package/generated/components/VDataGridCell.vue2.d.ts +3 -3
- package/generated/components/VDataGridCell.vue3.d.ts +3 -3
- package/generated/components/VDatePicker.vue2.d.ts +9 -9
- package/generated/components/VDatePicker.vue3.d.ts +9 -9
- package/generated/components/VDateRangePicker.vue2.d.ts +25 -37
- package/generated/components/VDateRangePicker.vue3.d.ts +25 -37
- package/generated/components/VFab.vue2.d.ts +5 -5
- package/generated/components/VFab.vue3.d.ts +5 -5
- package/generated/components/VFilePicker.vue2.d.ts +5 -5
- package/generated/components/VFilePicker.vue3.d.ts +5 -5
- package/generated/components/VNumberField.vue2.d.ts +5 -5
- package/generated/components/VNumberField.vue3.d.ts +5 -5
- package/generated/components/VOption.vue2.d.ts +3 -3
- package/generated/components/VOption.vue3.d.ts +3 -3
- package/generated/components/VRadio.vue2.d.ts +10 -10
- package/generated/components/VRadio.vue3.d.ts +10 -10
- package/generated/components/VRangeSlider.vue2.d.ts +19 -31
- package/generated/components/VRangeSlider.vue3.d.ts +19 -31
- package/generated/components/VSelect.vue2.d.ts +6 -5
- package/generated/components/VSelect.vue3.d.ts +6 -5
- package/generated/components/VSlider.vue2.d.ts +5 -5
- package/generated/components/VSlider.vue3.d.ts +5 -5
- package/generated/components/VSwitch.vue2.d.ts +10 -10
- package/generated/components/VSwitch.vue3.d.ts +10 -10
- package/generated/components/VTab.vue2.d.ts +3 -3
- package/generated/components/VTab.vue3.d.ts +3 -3
- package/generated/components/VTextArea.vue2.d.ts +5 -5
- package/generated/components/VTextArea.vue3.d.ts +5 -5
- package/generated/components/VTextField.vue2.d.ts +5 -5
- package/generated/components/VTextField.vue3.d.ts +5 -5
- package/generated/components/VTimePicker.vue2.d.ts +5 -5
- package/generated/components/VTimePicker.vue3.d.ts +5 -5
- package/index.cjs +717 -719
- package/index.js +717 -719
- package/package.json +2 -2
- package/web-types.json +52 -52
|
@@ -51,35 +51,29 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
51
51
|
default: undefined;
|
|
52
52
|
};
|
|
53
53
|
/**
|
|
54
|
-
* The
|
|
55
|
-
*
|
|
56
|
-
* .setAttribute() method. This is useful for setting the field's value
|
|
57
|
-
* in UI libraries that bind data through the .setAttribute() API
|
|
58
|
-
* and don't support IDL attribute binding.
|
|
54
|
+
* The initial start value. This value sets the `start` property
|
|
55
|
+
* only when the `start` property has not been explicitly set.
|
|
59
56
|
*/
|
|
60
|
-
|
|
57
|
+
initialStart: {
|
|
61
58
|
type: PropType<string>;
|
|
62
59
|
default: undefined;
|
|
63
60
|
};
|
|
64
61
|
/**
|
|
65
|
-
* The
|
|
66
|
-
*
|
|
67
|
-
* .setAttribute() method. This is useful for setting the field's value
|
|
68
|
-
* in UI libraries that bind data through the .setAttribute() API
|
|
69
|
-
* and don't support IDL attribute binding.
|
|
62
|
+
* The initial end value. This value sets the `end` property
|
|
63
|
+
* only when the `end` property has not been explicitly set.
|
|
70
64
|
*/
|
|
71
|
-
|
|
65
|
+
initialEnd: {
|
|
72
66
|
type: PropType<string>;
|
|
73
67
|
default: undefined;
|
|
74
68
|
};
|
|
75
69
|
/**
|
|
76
|
-
* The current
|
|
77
|
-
* to set the `
|
|
70
|
+
* The current start value of the element. This property serves as a mechanism
|
|
71
|
+
* to set the `start` property through both property assignment and the
|
|
78
72
|
* .setAttribute() method. This is useful for setting the field's value
|
|
79
73
|
* in UI libraries that bind data through the .setAttribute() API
|
|
80
74
|
* and don't support IDL attribute binding.
|
|
81
75
|
*/
|
|
82
|
-
|
|
76
|
+
start: {
|
|
83
77
|
type: PropType<string>;
|
|
84
78
|
default: undefined;
|
|
85
79
|
};
|
|
@@ -104,14 +98,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
104
98
|
/**
|
|
105
99
|
* The initial value of the date-picker.
|
|
106
100
|
*/
|
|
107
|
-
|
|
101
|
+
initialValue: {
|
|
108
102
|
type: PropType<string>;
|
|
109
103
|
default: undefined;
|
|
110
104
|
};
|
|
111
105
|
/**
|
|
112
106
|
* The current value of the date-picker.
|
|
113
107
|
*/
|
|
114
|
-
|
|
108
|
+
value: {
|
|
115
109
|
type: PropType<string>;
|
|
116
110
|
default: undefined;
|
|
117
111
|
};
|
|
@@ -176,35 +170,29 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
176
170
|
default: undefined;
|
|
177
171
|
};
|
|
178
172
|
/**
|
|
179
|
-
* The
|
|
180
|
-
*
|
|
181
|
-
* .setAttribute() method. This is useful for setting the field's value
|
|
182
|
-
* in UI libraries that bind data through the .setAttribute() API
|
|
183
|
-
* and don't support IDL attribute binding.
|
|
173
|
+
* The initial start value. This value sets the `start` property
|
|
174
|
+
* only when the `start` property has not been explicitly set.
|
|
184
175
|
*/
|
|
185
|
-
|
|
176
|
+
initialStart: {
|
|
186
177
|
type: PropType<string>;
|
|
187
178
|
default: undefined;
|
|
188
179
|
};
|
|
189
180
|
/**
|
|
190
|
-
* The
|
|
191
|
-
*
|
|
192
|
-
* .setAttribute() method. This is useful for setting the field's value
|
|
193
|
-
* in UI libraries that bind data through the .setAttribute() API
|
|
194
|
-
* and don't support IDL attribute binding.
|
|
181
|
+
* The initial end value. This value sets the `end` property
|
|
182
|
+
* only when the `end` property has not been explicitly set.
|
|
195
183
|
*/
|
|
196
|
-
|
|
184
|
+
initialEnd: {
|
|
197
185
|
type: PropType<string>;
|
|
198
186
|
default: undefined;
|
|
199
187
|
};
|
|
200
188
|
/**
|
|
201
|
-
* The current
|
|
202
|
-
* to set the `
|
|
189
|
+
* The current start value of the element. This property serves as a mechanism
|
|
190
|
+
* to set the `start` property through both property assignment and the
|
|
203
191
|
* .setAttribute() method. This is useful for setting the field's value
|
|
204
192
|
* in UI libraries that bind data through the .setAttribute() API
|
|
205
193
|
* and don't support IDL attribute binding.
|
|
206
194
|
*/
|
|
207
|
-
|
|
195
|
+
start: {
|
|
208
196
|
type: PropType<string>;
|
|
209
197
|
default: undefined;
|
|
210
198
|
};
|
|
@@ -229,14 +217,14 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
229
217
|
/**
|
|
230
218
|
* The initial value of the date-picker.
|
|
231
219
|
*/
|
|
232
|
-
|
|
220
|
+
initialValue: {
|
|
233
221
|
type: PropType<string>;
|
|
234
222
|
default: undefined;
|
|
235
223
|
};
|
|
236
224
|
/**
|
|
237
225
|
* The current value of the date-picker.
|
|
238
226
|
*/
|
|
239
|
-
|
|
227
|
+
value: {
|
|
240
228
|
type: PropType<string>;
|
|
241
229
|
default: undefined;
|
|
242
230
|
};
|
|
@@ -252,7 +240,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
252
240
|
ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
|
|
253
241
|
value: string;
|
|
254
242
|
disabled: boolean;
|
|
255
|
-
|
|
243
|
+
initialValue: string;
|
|
256
244
|
required: boolean;
|
|
257
245
|
label: string;
|
|
258
246
|
start: string;
|
|
@@ -260,8 +248,8 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
260
248
|
readonly: boolean;
|
|
261
249
|
max: string;
|
|
262
250
|
min: string;
|
|
263
|
-
|
|
264
|
-
|
|
251
|
+
initialStart: string;
|
|
252
|
+
initialEnd: string;
|
|
265
253
|
end: string;
|
|
266
254
|
}>;
|
|
267
255
|
export default _default;
|
|
@@ -52,35 +52,29 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
52
52
|
default: undefined;
|
|
53
53
|
};
|
|
54
54
|
/**
|
|
55
|
-
* The
|
|
56
|
-
*
|
|
57
|
-
* .setAttribute() method. This is useful for setting the field's value
|
|
58
|
-
* in UI libraries that bind data through the .setAttribute() API
|
|
59
|
-
* and don't support IDL attribute binding.
|
|
55
|
+
* The initial start value. This value sets the `start` property
|
|
56
|
+
* only when the `start` property has not been explicitly set.
|
|
60
57
|
*/
|
|
61
|
-
|
|
58
|
+
initialStart: {
|
|
62
59
|
type: PropType<string>;
|
|
63
60
|
default: undefined;
|
|
64
61
|
};
|
|
65
62
|
/**
|
|
66
|
-
* The
|
|
67
|
-
*
|
|
68
|
-
* .setAttribute() method. This is useful for setting the field's value
|
|
69
|
-
* in UI libraries that bind data through the .setAttribute() API
|
|
70
|
-
* and don't support IDL attribute binding.
|
|
63
|
+
* The initial end value. This value sets the `end` property
|
|
64
|
+
* only when the `end` property has not been explicitly set.
|
|
71
65
|
*/
|
|
72
|
-
|
|
66
|
+
initialEnd: {
|
|
73
67
|
type: PropType<string>;
|
|
74
68
|
default: undefined;
|
|
75
69
|
};
|
|
76
70
|
/**
|
|
77
|
-
* The current
|
|
78
|
-
* to set the `
|
|
71
|
+
* The current start value of the element. This property serves as a mechanism
|
|
72
|
+
* to set the `start` property through both property assignment and the
|
|
79
73
|
* .setAttribute() method. This is useful for setting the field's value
|
|
80
74
|
* in UI libraries that bind data through the .setAttribute() API
|
|
81
75
|
* and don't support IDL attribute binding.
|
|
82
76
|
*/
|
|
83
|
-
|
|
77
|
+
start: {
|
|
84
78
|
type: PropType<string>;
|
|
85
79
|
default: undefined;
|
|
86
80
|
};
|
|
@@ -105,14 +99,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
105
99
|
/**
|
|
106
100
|
* The initial value of the date-picker.
|
|
107
101
|
*/
|
|
108
|
-
|
|
102
|
+
initialValue: {
|
|
109
103
|
type: PropType<string>;
|
|
110
104
|
default: undefined;
|
|
111
105
|
};
|
|
112
106
|
/**
|
|
113
107
|
* The current value of the date-picker.
|
|
114
108
|
*/
|
|
115
|
-
|
|
109
|
+
value: {
|
|
116
110
|
type: PropType<string>;
|
|
117
111
|
default: undefined;
|
|
118
112
|
};
|
|
@@ -238,35 +232,29 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
238
232
|
default: undefined;
|
|
239
233
|
};
|
|
240
234
|
/**
|
|
241
|
-
* The
|
|
242
|
-
*
|
|
243
|
-
* .setAttribute() method. This is useful for setting the field's value
|
|
244
|
-
* in UI libraries that bind data through the .setAttribute() API
|
|
245
|
-
* and don't support IDL attribute binding.
|
|
235
|
+
* The initial start value. This value sets the `start` property
|
|
236
|
+
* only when the `start` property has not been explicitly set.
|
|
246
237
|
*/
|
|
247
|
-
|
|
238
|
+
initialStart: {
|
|
248
239
|
type: PropType<string>;
|
|
249
240
|
default: undefined;
|
|
250
241
|
};
|
|
251
242
|
/**
|
|
252
|
-
* The
|
|
253
|
-
*
|
|
254
|
-
* .setAttribute() method. This is useful for setting the field's value
|
|
255
|
-
* in UI libraries that bind data through the .setAttribute() API
|
|
256
|
-
* and don't support IDL attribute binding.
|
|
243
|
+
* The initial end value. This value sets the `end` property
|
|
244
|
+
* only when the `end` property has not been explicitly set.
|
|
257
245
|
*/
|
|
258
|
-
|
|
246
|
+
initialEnd: {
|
|
259
247
|
type: PropType<string>;
|
|
260
248
|
default: undefined;
|
|
261
249
|
};
|
|
262
250
|
/**
|
|
263
|
-
* The current
|
|
264
|
-
* to set the `
|
|
251
|
+
* The current start value of the element. This property serves as a mechanism
|
|
252
|
+
* to set the `start` property through both property assignment and the
|
|
265
253
|
* .setAttribute() method. This is useful for setting the field's value
|
|
266
254
|
* in UI libraries that bind data through the .setAttribute() API
|
|
267
255
|
* and don't support IDL attribute binding.
|
|
268
256
|
*/
|
|
269
|
-
|
|
257
|
+
start: {
|
|
270
258
|
type: PropType<string>;
|
|
271
259
|
default: undefined;
|
|
272
260
|
};
|
|
@@ -291,14 +279,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
291
279
|
/**
|
|
292
280
|
* The initial value of the date-picker.
|
|
293
281
|
*/
|
|
294
|
-
|
|
282
|
+
initialValue: {
|
|
295
283
|
type: PropType<string>;
|
|
296
284
|
default: undefined;
|
|
297
285
|
};
|
|
298
286
|
/**
|
|
299
287
|
* The current value of the date-picker.
|
|
300
288
|
*/
|
|
301
|
-
|
|
289
|
+
value: {
|
|
302
290
|
type: PropType<string>;
|
|
303
291
|
default: undefined;
|
|
304
292
|
};
|
|
@@ -327,7 +315,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
327
315
|
ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
|
|
328
316
|
value: string;
|
|
329
317
|
disabled: boolean;
|
|
330
|
-
|
|
318
|
+
initialValue: string;
|
|
331
319
|
required: boolean;
|
|
332
320
|
label: string;
|
|
333
321
|
start: string;
|
|
@@ -335,8 +323,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
335
323
|
readonly: boolean;
|
|
336
324
|
max: string;
|
|
337
325
|
min: string;
|
|
338
|
-
|
|
339
|
-
|
|
326
|
+
initialStart: string;
|
|
327
|
+
initialEnd: string;
|
|
340
328
|
end: string;
|
|
341
329
|
}, SlotsType<{
|
|
342
330
|
/**
|
|
@@ -34,7 +34,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
34
34
|
* The initial value of the form. This value sets the `value` property
|
|
35
35
|
* only when the `value` property has not been explicitly set.
|
|
36
36
|
*/
|
|
37
|
-
|
|
37
|
+
initialValue: {
|
|
38
38
|
type: PropType<string>;
|
|
39
39
|
default: undefined;
|
|
40
40
|
};
|
|
@@ -45,7 +45,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
45
45
|
* in UI libraries that bind data through the .setAttribute() API
|
|
46
46
|
* and don't support IDL attribute binding.
|
|
47
47
|
*/
|
|
48
|
-
|
|
48
|
+
value: {
|
|
49
49
|
type: PropType<string>;
|
|
50
50
|
default: undefined;
|
|
51
51
|
};
|
|
@@ -182,7 +182,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
182
182
|
* The initial value of the form. This value sets the `value` property
|
|
183
183
|
* only when the `value` property has not been explicitly set.
|
|
184
184
|
*/
|
|
185
|
-
|
|
185
|
+
initialValue: {
|
|
186
186
|
type: PropType<string>;
|
|
187
187
|
default: undefined;
|
|
188
188
|
};
|
|
@@ -193,7 +193,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
193
193
|
* in UI libraries that bind data through the .setAttribute() API
|
|
194
194
|
* and don't support IDL attribute binding.
|
|
195
195
|
*/
|
|
196
|
-
|
|
196
|
+
value: {
|
|
197
197
|
type: PropType<string>;
|
|
198
198
|
default: undefined;
|
|
199
199
|
};
|
|
@@ -298,7 +298,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
298
298
|
size: "expanded" | "normal";
|
|
299
299
|
connotation: "accent" | "cta" | "announcement";
|
|
300
300
|
disabled: boolean;
|
|
301
|
-
|
|
301
|
+
initialValue: string;
|
|
302
302
|
required: boolean;
|
|
303
303
|
autofocus: boolean;
|
|
304
304
|
form: string;
|
|
@@ -35,7 +35,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
35
35
|
* The initial value of the form. This value sets the `value` property
|
|
36
36
|
* only when the `value` property has not been explicitly set.
|
|
37
37
|
*/
|
|
38
|
-
|
|
38
|
+
initialValue: {
|
|
39
39
|
type: PropType<string>;
|
|
40
40
|
default: undefined;
|
|
41
41
|
};
|
|
@@ -46,7 +46,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
46
46
|
* in UI libraries that bind data through the .setAttribute() API
|
|
47
47
|
* and don't support IDL attribute binding.
|
|
48
48
|
*/
|
|
49
|
-
|
|
49
|
+
value: {
|
|
50
50
|
type: PropType<string>;
|
|
51
51
|
default: undefined;
|
|
52
52
|
};
|
|
@@ -214,7 +214,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
214
214
|
* The initial value of the form. This value sets the `value` property
|
|
215
215
|
* only when the `value` property has not been explicitly set.
|
|
216
216
|
*/
|
|
217
|
-
|
|
217
|
+
initialValue: {
|
|
218
218
|
type: PropType<string>;
|
|
219
219
|
default: undefined;
|
|
220
220
|
};
|
|
@@ -225,7 +225,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
225
225
|
* in UI libraries that bind data through the .setAttribute() API
|
|
226
226
|
* and don't support IDL attribute binding.
|
|
227
227
|
*/
|
|
228
|
-
|
|
228
|
+
value: {
|
|
229
229
|
type: PropType<string>;
|
|
230
230
|
default: undefined;
|
|
231
231
|
};
|
|
@@ -337,7 +337,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
337
337
|
size: "expanded" | "normal";
|
|
338
338
|
connotation: "accent" | "cta" | "announcement";
|
|
339
339
|
disabled: boolean;
|
|
340
|
-
|
|
340
|
+
initialValue: string;
|
|
341
341
|
required: boolean;
|
|
342
342
|
autofocus: boolean;
|
|
343
343
|
form: string;
|
|
@@ -40,7 +40,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
40
40
|
* The initial value of the form. This value sets the `value` property
|
|
41
41
|
* only when the `value` property has not been explicitly set.
|
|
42
42
|
*/
|
|
43
|
-
|
|
43
|
+
initialValue: {
|
|
44
44
|
type: PropType<string>;
|
|
45
45
|
default: undefined;
|
|
46
46
|
};
|
|
@@ -51,7 +51,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
51
51
|
* in UI libraries that bind data through the .setAttribute() API
|
|
52
52
|
* and don't support IDL attribute binding.
|
|
53
53
|
*/
|
|
54
|
-
|
|
54
|
+
value: {
|
|
55
55
|
type: PropType<string>;
|
|
56
56
|
default: undefined;
|
|
57
57
|
};
|
|
@@ -147,7 +147,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
147
147
|
* The initial value of the form. This value sets the `value` property
|
|
148
148
|
* only when the `value` property has not been explicitly set.
|
|
149
149
|
*/
|
|
150
|
-
|
|
150
|
+
initialValue: {
|
|
151
151
|
type: PropType<string>;
|
|
152
152
|
default: undefined;
|
|
153
153
|
};
|
|
@@ -158,7 +158,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
158
158
|
* in UI libraries that bind data through the .setAttribute() API
|
|
159
159
|
* and don't support IDL attribute binding.
|
|
160
160
|
*/
|
|
161
|
-
|
|
161
|
+
value: {
|
|
162
162
|
type: PropType<string>;
|
|
163
163
|
default: undefined;
|
|
164
164
|
};
|
|
@@ -210,7 +210,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
210
210
|
value: string;
|
|
211
211
|
size: "expanded" | "normal";
|
|
212
212
|
disabled: boolean;
|
|
213
|
-
|
|
213
|
+
initialValue: string;
|
|
214
214
|
required: boolean;
|
|
215
215
|
label: string;
|
|
216
216
|
errorText: string;
|
|
@@ -41,7 +41,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
41
41
|
* The initial value of the form. This value sets the `value` property
|
|
42
42
|
* only when the `value` property has not been explicitly set.
|
|
43
43
|
*/
|
|
44
|
-
|
|
44
|
+
initialValue: {
|
|
45
45
|
type: PropType<string>;
|
|
46
46
|
default: undefined;
|
|
47
47
|
};
|
|
@@ -52,7 +52,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
52
52
|
* in UI libraries that bind data through the .setAttribute() API
|
|
53
53
|
* and don't support IDL attribute binding.
|
|
54
54
|
*/
|
|
55
|
-
|
|
55
|
+
value: {
|
|
56
56
|
type: PropType<string>;
|
|
57
57
|
default: undefined;
|
|
58
58
|
};
|
|
@@ -184,7 +184,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
184
184
|
* The initial value of the form. This value sets the `value` property
|
|
185
185
|
* only when the `value` property has not been explicitly set.
|
|
186
186
|
*/
|
|
187
|
-
|
|
187
|
+
initialValue: {
|
|
188
188
|
type: PropType<string>;
|
|
189
189
|
default: undefined;
|
|
190
190
|
};
|
|
@@ -195,7 +195,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
195
195
|
* in UI libraries that bind data through the .setAttribute() API
|
|
196
196
|
* and don't support IDL attribute binding.
|
|
197
197
|
*/
|
|
198
|
-
|
|
198
|
+
value: {
|
|
199
199
|
type: PropType<string>;
|
|
200
200
|
default: undefined;
|
|
201
201
|
};
|
|
@@ -255,7 +255,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
255
255
|
value: string;
|
|
256
256
|
size: "expanded" | "normal";
|
|
257
257
|
disabled: boolean;
|
|
258
|
-
|
|
258
|
+
initialValue: string;
|
|
259
259
|
required: boolean;
|
|
260
260
|
label: string;
|
|
261
261
|
errorText: string;
|
|
@@ -62,7 +62,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
62
62
|
* The initial value of the form. This value sets the `value` property
|
|
63
63
|
* only when the `value` property has not been explicitly set.
|
|
64
64
|
*/
|
|
65
|
-
|
|
65
|
+
initialValue: {
|
|
66
66
|
type: PropType<string>;
|
|
67
67
|
default: undefined;
|
|
68
68
|
};
|
|
@@ -73,7 +73,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
73
73
|
* in UI libraries that bind data through the .setAttribute() API
|
|
74
74
|
* and don't support IDL attribute binding.
|
|
75
75
|
*/
|
|
76
|
-
|
|
76
|
+
value: {
|
|
77
77
|
type: PropType<string>;
|
|
78
78
|
default: undefined;
|
|
79
79
|
};
|
|
@@ -275,7 +275,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
275
275
|
* The initial value of the form. This value sets the `value` property
|
|
276
276
|
* only when the `value` property has not been explicitly set.
|
|
277
277
|
*/
|
|
278
|
-
|
|
278
|
+
initialValue: {
|
|
279
279
|
type: PropType<string>;
|
|
280
280
|
default: undefined;
|
|
281
281
|
};
|
|
@@ -286,7 +286,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
286
286
|
* in UI libraries that bind data through the .setAttribute() API
|
|
287
287
|
* and don't support IDL attribute binding.
|
|
288
288
|
*/
|
|
289
|
-
|
|
289
|
+
value: {
|
|
290
290
|
type: PropType<string>;
|
|
291
291
|
default: undefined;
|
|
292
292
|
};
|
|
@@ -415,7 +415,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
415
415
|
shape: "rounded" | "pill";
|
|
416
416
|
appearance: "fieldset" | "ghost";
|
|
417
417
|
disabled: boolean;
|
|
418
|
-
|
|
418
|
+
initialValue: string;
|
|
419
419
|
required: boolean;
|
|
420
420
|
autofocus: boolean;
|
|
421
421
|
label: string;
|
|
@@ -63,7 +63,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
63
63
|
* The initial value of the form. This value sets the `value` property
|
|
64
64
|
* only when the `value` property has not been explicitly set.
|
|
65
65
|
*/
|
|
66
|
-
|
|
66
|
+
initialValue: {
|
|
67
67
|
type: PropType<string>;
|
|
68
68
|
default: undefined;
|
|
69
69
|
};
|
|
@@ -74,7 +74,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
74
74
|
* in UI libraries that bind data through the .setAttribute() API
|
|
75
75
|
* and don't support IDL attribute binding.
|
|
76
76
|
*/
|
|
77
|
-
|
|
77
|
+
value: {
|
|
78
78
|
type: PropType<string>;
|
|
79
79
|
default: undefined;
|
|
80
80
|
};
|
|
@@ -317,7 +317,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
317
317
|
* The initial value of the form. This value sets the `value` property
|
|
318
318
|
* only when the `value` property has not been explicitly set.
|
|
319
319
|
*/
|
|
320
|
-
|
|
320
|
+
initialValue: {
|
|
321
321
|
type: PropType<string>;
|
|
322
322
|
default: undefined;
|
|
323
323
|
};
|
|
@@ -328,7 +328,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
328
328
|
* in UI libraries that bind data through the .setAttribute() API
|
|
329
329
|
* and don't support IDL attribute binding.
|
|
330
330
|
*/
|
|
331
|
-
|
|
331
|
+
value: {
|
|
332
332
|
type: PropType<string>;
|
|
333
333
|
default: undefined;
|
|
334
334
|
};
|
|
@@ -466,7 +466,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
466
466
|
shape: "rounded" | "pill";
|
|
467
467
|
appearance: "fieldset" | "ghost";
|
|
468
468
|
disabled: boolean;
|
|
469
|
-
|
|
469
|
+
initialValue: string;
|
|
470
470
|
required: boolean;
|
|
471
471
|
autofocus: boolean;
|
|
472
472
|
label: string;
|