@vonage/vivid-vue 3.60.0 → 4.1.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.
Files changed (52) hide show
  1. package/generated/components/VAlert.vue2.d.ts +3 -3
  2. package/generated/components/VAlert.vue3.d.ts +3 -3
  3. package/generated/components/VBanner.vue2.d.ts +6 -6
  4. package/generated/components/VBanner.vue3.d.ts +6 -6
  5. package/generated/components/VButton.vue2.d.ts +2 -19
  6. package/generated/components/VButton.vue3.d.ts +2 -19
  7. package/generated/components/VCalendarEvent.vue2.d.ts +3 -3
  8. package/generated/components/VCalendarEvent.vue3.d.ts +3 -3
  9. package/generated/components/VCheckbox.vue2.d.ts +4 -36
  10. package/generated/components/VCheckbox.vue3.d.ts +4 -36
  11. package/generated/components/VCombobox.vue2.d.ts +2 -19
  12. package/generated/components/VCombobox.vue3.d.ts +2 -19
  13. package/generated/components/VDataGridCell.vue2.d.ts +3 -3
  14. package/generated/components/VDataGridCell.vue3.d.ts +3 -3
  15. package/generated/components/VDatePicker.vue2.d.ts +4 -19
  16. package/generated/components/VDatePicker.vue3.d.ts +4 -19
  17. package/generated/components/VDateRangePicker.vue2.d.ts +2 -63
  18. package/generated/components/VDateRangePicker.vue3.d.ts +2 -63
  19. package/generated/components/VFab.vue2.d.ts +5 -22
  20. package/generated/components/VFab.vue3.d.ts +5 -22
  21. package/generated/components/VFilePicker.vue2.d.ts +2 -19
  22. package/generated/components/VFilePicker.vue3.d.ts +2 -19
  23. package/generated/components/VIcon.vue2.d.ts +3 -3
  24. package/generated/components/VIcon.vue3.d.ts +3 -3
  25. package/generated/components/VNote.vue2.d.ts +3 -3
  26. package/generated/components/VNote.vue3.d.ts +3 -3
  27. package/generated/components/VNumberField.vue2.d.ts +2 -19
  28. package/generated/components/VNumberField.vue3.d.ts +2 -19
  29. package/generated/components/VOption.vue2.d.ts +0 -17
  30. package/generated/components/VOption.vue3.d.ts +0 -17
  31. package/generated/components/VRadio.vue2.d.ts +4 -36
  32. package/generated/components/VRadio.vue3.d.ts +4 -36
  33. package/generated/components/VRangeSlider.vue2.d.ts +2 -65
  34. package/generated/components/VRangeSlider.vue3.d.ts +2 -65
  35. package/generated/components/VSelect.vue2.d.ts +3 -19
  36. package/generated/components/VSelect.vue3.d.ts +3 -19
  37. package/generated/components/VSlider.vue2.d.ts +2 -19
  38. package/generated/components/VSlider.vue3.d.ts +2 -19
  39. package/generated/components/VSwitch.vue2.d.ts +4 -36
  40. package/generated/components/VSwitch.vue3.d.ts +4 -36
  41. package/generated/components/VTab.vue2.d.ts +3 -3
  42. package/generated/components/VTab.vue3.d.ts +3 -3
  43. package/generated/components/VTextArea.vue2.d.ts +2 -19
  44. package/generated/components/VTextArea.vue3.d.ts +2 -19
  45. package/generated/components/VTextField.vue2.d.ts +2 -19
  46. package/generated/components/VTextField.vue3.d.ts +2 -19
  47. package/generated/components/VTimePicker.vue2.d.ts +2 -19
  48. package/generated/components/VTimePicker.vue3.d.ts +2 -19
  49. package/index.cjs +682 -881
  50. package/index.js +682 -881
  51. package/package.json +2 -2
  52. package/web-types.json +8 -200
@@ -6,7 +6,7 @@ declare const _default: import("vue").DefineComponent<{
6
6
  * Extends the data grid cell definition to hold more options.
7
7
  */
8
8
  columnDefinition: {
9
- type: PropType<any>;
9
+ type: PropType<object>;
10
10
  default: undefined;
11
11
  };
12
12
  /**
@@ -113,7 +113,7 @@ declare const _default: import("vue").DefineComponent<{
113
113
  * Extends the data grid cell definition to hold more options.
114
114
  */
115
115
  columnDefinition: {
116
- type: PropType<any>;
116
+ type: PropType<object>;
117
117
  default: undefined;
118
118
  };
119
119
  /**
@@ -173,7 +173,7 @@ declare const _default: import("vue").DefineComponent<{
173
173
  "onCell-focused"?: ((event: CustomEvent<HTMLElement>) => any) | undefined;
174
174
  }, {
175
175
  ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
176
- columnDefinition: any;
176
+ columnDefinition: object;
177
177
  cellType: "default" | "columnheader" | "rowheader";
178
178
  gridColumn: string;
179
179
  ariaSelected: string;
@@ -68,23 +68,16 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
68
68
  default: undefined;
69
69
  };
70
70
  /**
71
- * The initial value of the date-picker.
71
+ * The current value of the date-picker.
72
72
  */
73
73
  value: {
74
74
  type: PropType<string>;
75
75
  default: undefined;
76
76
  };
77
- /**
78
- * The initial value of the date-picker.
79
- */
80
- modelValue: {
81
- type: PropType<string>;
82
- default: undefined;
83
- };
84
77
  /**
85
78
  * The current value of the date-picker.
86
79
  */
87
- currentValue: {
80
+ modelValue: {
88
81
  type: PropType<string>;
89
82
  default: undefined;
90
83
  };
@@ -163,23 +156,16 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
163
156
  default: undefined;
164
157
  };
165
158
  /**
166
- * The initial value of the date-picker.
159
+ * The current value of the date-picker.
167
160
  */
168
161
  value: {
169
162
  type: PropType<string>;
170
163
  default: undefined;
171
164
  };
172
- /**
173
- * The initial value of the date-picker.
174
- */
175
- modelValue: {
176
- type: PropType<string>;
177
- default: undefined;
178
- };
179
165
  /**
180
166
  * The current value of the date-picker.
181
167
  */
182
- currentValue: {
168
+ modelValue: {
183
169
  type: PropType<string>;
184
170
  default: undefined;
185
171
  };
@@ -196,7 +182,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
196
182
  value: string;
197
183
  disabled: boolean;
198
184
  initialValue: string;
199
- currentValue: string;
200
185
  required: boolean;
201
186
  label: string;
202
187
  modelValue: string;
@@ -69,23 +69,16 @@ declare const _default: import("vue").DefineComponent<{
69
69
  default: undefined;
70
70
  };
71
71
  /**
72
- * The initial value of the date-picker.
72
+ * The current value of the date-picker.
73
73
  */
74
74
  value: {
75
75
  type: PropType<string>;
76
76
  default: undefined;
77
77
  };
78
- /**
79
- * The initial value of the date-picker.
80
- */
81
- modelValue: {
82
- type: PropType<string>;
83
- default: undefined;
84
- };
85
78
  /**
86
79
  * The current value of the date-picker.
87
80
  */
88
- currentValue: {
81
+ modelValue: {
89
82
  type: PropType<string>;
90
83
  default: undefined;
91
84
  };
@@ -210,23 +203,16 @@ declare const _default: import("vue").DefineComponent<{
210
203
  default: undefined;
211
204
  };
212
205
  /**
213
- * The initial value of the date-picker.
206
+ * The current value of the date-picker.
214
207
  */
215
208
  value: {
216
209
  type: PropType<string>;
217
210
  default: undefined;
218
211
  };
219
- /**
220
- * The initial value of the date-picker.
221
- */
222
- modelValue: {
223
- type: PropType<string>;
224
- default: undefined;
225
- };
226
212
  /**
227
213
  * The current value of the date-picker.
228
214
  */
229
- currentValue: {
215
+ modelValue: {
230
216
  type: PropType<string>;
231
217
  default: undefined;
232
218
  };
@@ -253,7 +239,6 @@ declare const _default: import("vue").DefineComponent<{
253
239
  value: string;
254
240
  disabled: boolean;
255
241
  initialValue: string;
256
- currentValue: string;
257
242
  required: boolean;
258
243
  label: string;
259
244
  modelValue: string;
@@ -66,17 +66,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
66
66
  type: PropType<string>;
67
67
  default: undefined;
68
68
  };
69
- /**
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
72
- * .setAttribute() method. This is useful for setting the field's value
73
- * in UI libraries that bind data through the .setAttribute() API
74
- * and don't support IDL attribute binding.
75
- */
76
- currentStart: {
77
- type: PropType<string>;
78
- default: undefined;
79
- };
80
69
  /**
81
70
  * The current start value of the element. This property serves as a mechanism
82
71
  * to set the `start` property through both property assignment and the
@@ -88,17 +77,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
88
77
  type: PropType<string>;
89
78
  default: undefined;
90
79
  };
91
- /**
92
- * The current end value of the element. This property serves as a mechanism
93
- * to set the `end` property through both property assignment and the
94
- * .setAttribute() method. This is useful for setting the field's value
95
- * in UI libraries that bind data through the .setAttribute() API
96
- * and don't support IDL attribute binding.
97
- */
98
- currentEnd: {
99
- type: PropType<string>;
100
- default: undefined;
101
- };
102
80
  /**
103
81
  * The current end value of the element. This property serves as a mechanism
104
82
  * to set the `end` property through both property assignment and the
@@ -124,17 +102,10 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
124
102
  type: PropType<string>;
125
103
  default: undefined;
126
104
  };
127
- /**
128
- * The initial value of the date-picker.
129
- */
130
- value: {
131
- type: PropType<string>;
132
- default: undefined;
133
- };
134
105
  /**
135
106
  * The current value of the date-picker.
136
107
  */
137
- currentValue: {
108
+ value: {
138
109
  type: PropType<string>;
139
110
  default: undefined;
140
111
  };
@@ -214,17 +185,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
214
185
  type: PropType<string>;
215
186
  default: undefined;
216
187
  };
217
- /**
218
- * The current start value of the element. This property serves as a mechanism
219
- * to set the `start` property through both property assignment and the
220
- * .setAttribute() method. This is useful for setting the field's value
221
- * in UI libraries that bind data through the .setAttribute() API
222
- * and don't support IDL attribute binding.
223
- */
224
- currentStart: {
225
- type: PropType<string>;
226
- default: undefined;
227
- };
228
188
  /**
229
189
  * The current start value of the element. This property serves as a mechanism
230
190
  * to set the `start` property through both property assignment and the
@@ -236,17 +196,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
236
196
  type: PropType<string>;
237
197
  default: undefined;
238
198
  };
239
- /**
240
- * The current end value of the element. This property serves as a mechanism
241
- * to set the `end` property through both property assignment and the
242
- * .setAttribute() method. This is useful for setting the field's value
243
- * in UI libraries that bind data through the .setAttribute() API
244
- * and don't support IDL attribute binding.
245
- */
246
- currentEnd: {
247
- type: PropType<string>;
248
- default: undefined;
249
- };
250
199
  /**
251
200
  * The current end value of the element. This property serves as a mechanism
252
201
  * to set the `end` property through both property assignment and the
@@ -272,17 +221,10 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
272
221
  type: PropType<string>;
273
222
  default: undefined;
274
223
  };
275
- /**
276
- * The initial value of the date-picker.
277
- */
278
- value: {
279
- type: PropType<string>;
280
- default: undefined;
281
- };
282
224
  /**
283
225
  * The current value of the date-picker.
284
226
  */
285
- currentValue: {
227
+ value: {
286
228
  type: PropType<string>;
287
229
  default: undefined;
288
230
  };
@@ -299,7 +241,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
299
241
  value: string;
300
242
  disabled: boolean;
301
243
  initialValue: string;
302
- currentValue: string;
303
244
  required: boolean;
304
245
  label: string;
305
246
  start: string;
@@ -309,8 +250,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
309
250
  min: string;
310
251
  initialStart: string;
311
252
  initialEnd: string;
312
- currentStart: string;
313
- currentEnd: string;
314
253
  end: string;
315
254
  }>;
316
255
  export default _default;
@@ -67,17 +67,6 @@ declare const _default: import("vue").DefineComponent<{
67
67
  type: PropType<string>;
68
68
  default: undefined;
69
69
  };
70
- /**
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
73
- * .setAttribute() method. This is useful for setting the field's value
74
- * in UI libraries that bind data through the .setAttribute() API
75
- * and don't support IDL attribute binding.
76
- */
77
- currentStart: {
78
- type: PropType<string>;
79
- default: undefined;
80
- };
81
70
  /**
82
71
  * The current start value of the element. This property serves as a mechanism
83
72
  * to set the `start` property through both property assignment and the
@@ -89,17 +78,6 @@ declare const _default: import("vue").DefineComponent<{
89
78
  type: PropType<string>;
90
79
  default: undefined;
91
80
  };
92
- /**
93
- * The current end value of the element. This property serves as a mechanism
94
- * to set the `end` property through both property assignment and the
95
- * .setAttribute() method. This is useful for setting the field's value
96
- * in UI libraries that bind data through the .setAttribute() API
97
- * and don't support IDL attribute binding.
98
- */
99
- currentEnd: {
100
- type: PropType<string>;
101
- default: undefined;
102
- };
103
81
  /**
104
82
  * The current end value of the element. This property serves as a mechanism
105
83
  * to set the `end` property through both property assignment and the
@@ -125,17 +103,10 @@ declare const _default: import("vue").DefineComponent<{
125
103
  type: PropType<string>;
126
104
  default: undefined;
127
105
  };
128
- /**
129
- * The initial value of the date-picker.
130
- */
131
- value: {
132
- type: PropType<string>;
133
- default: undefined;
134
- };
135
106
  /**
136
107
  * The current value of the date-picker.
137
108
  */
138
- currentValue: {
109
+ value: {
139
110
  type: PropType<string>;
140
111
  default: undefined;
141
112
  };
@@ -276,17 +247,6 @@ declare const _default: import("vue").DefineComponent<{
276
247
  type: PropType<string>;
277
248
  default: undefined;
278
249
  };
279
- /**
280
- * The current start value of the element. This property serves as a mechanism
281
- * to set the `start` property through both property assignment and the
282
- * .setAttribute() method. This is useful for setting the field's value
283
- * in UI libraries that bind data through the .setAttribute() API
284
- * and don't support IDL attribute binding.
285
- */
286
- currentStart: {
287
- type: PropType<string>;
288
- default: undefined;
289
- };
290
250
  /**
291
251
  * The current start value of the element. This property serves as a mechanism
292
252
  * to set the `start` property through both property assignment and the
@@ -298,17 +258,6 @@ declare const _default: import("vue").DefineComponent<{
298
258
  type: PropType<string>;
299
259
  default: undefined;
300
260
  };
301
- /**
302
- * The current end value of the element. This property serves as a mechanism
303
- * to set the `end` property through both property assignment and the
304
- * .setAttribute() method. This is useful for setting the field's value
305
- * in UI libraries that bind data through the .setAttribute() API
306
- * and don't support IDL attribute binding.
307
- */
308
- currentEnd: {
309
- type: PropType<string>;
310
- default: undefined;
311
- };
312
261
  /**
313
262
  * The current end value of the element. This property serves as a mechanism
314
263
  * to set the `end` property through both property assignment and the
@@ -334,17 +283,10 @@ declare const _default: import("vue").DefineComponent<{
334
283
  type: PropType<string>;
335
284
  default: undefined;
336
285
  };
337
- /**
338
- * The initial value of the date-picker.
339
- */
340
- value: {
341
- type: PropType<string>;
342
- default: undefined;
343
- };
344
286
  /**
345
287
  * The current value of the date-picker.
346
288
  */
347
- currentValue: {
289
+ value: {
348
290
  type: PropType<string>;
349
291
  default: undefined;
350
292
  };
@@ -374,7 +316,6 @@ declare const _default: import("vue").DefineComponent<{
374
316
  value: string;
375
317
  disabled: boolean;
376
318
  initialValue: string;
377
- currentValue: string;
378
319
  required: boolean;
379
320
  label: string;
380
321
  start: string;
@@ -384,8 +325,6 @@ declare const _default: import("vue").DefineComponent<{
384
325
  min: string;
385
326
  initialStart: string;
386
327
  initialEnd: string;
387
- currentStart: string;
388
- currentEnd: string;
389
328
  end: string;
390
329
  }, SlotsType<{
391
330
  /**
@@ -38,14 +38,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
38
38
  type: PropType<string>;
39
39
  default: undefined;
40
40
  };
41
- /**
42
- * The initial value of the form. This value sets the `value` property
43
- * only when the `value` property has not been explicitly set.
44
- */
45
- value: {
46
- type: PropType<string>;
47
- default: undefined;
48
- };
49
41
  /**
50
42
  * The current value of the element. This property serves as a mechanism
51
43
  * to set the `value` property through both property assignment and the
@@ -53,7 +45,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
53
45
  * in UI libraries that bind data through the .setAttribute() API
54
46
  * and don't support IDL attribute binding.
55
47
  */
56
- currentValue: {
48
+ value: {
57
49
  type: PropType<string>;
58
50
  default: undefined;
59
51
  };
@@ -131,7 +123,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
131
123
  * The connotation the fab should have.
132
124
  */
133
125
  connotation: {
134
- type: PropType<"accent" | "cta" | "announcement">;
126
+ type: PropType<"accent" | "announcement" | "cta">;
135
127
  default: undefined;
136
128
  };
137
129
  /**
@@ -194,14 +186,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
194
186
  type: PropType<string>;
195
187
  default: undefined;
196
188
  };
197
- /**
198
- * The initial value of the form. This value sets the `value` property
199
- * only when the `value` property has not been explicitly set.
200
- */
201
- value: {
202
- type: PropType<string>;
203
- default: undefined;
204
- };
205
189
  /**
206
190
  * The current value of the element. This property serves as a mechanism
207
191
  * to set the `value` property through both property assignment and the
@@ -209,7 +193,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
209
193
  * in UI libraries that bind data through the .setAttribute() API
210
194
  * and don't support IDL attribute binding.
211
195
  */
212
- currentValue: {
196
+ value: {
213
197
  type: PropType<string>;
214
198
  default: undefined;
215
199
  };
@@ -287,7 +271,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
287
271
  * The connotation the fab should have.
288
272
  */
289
273
  connotation: {
290
- type: PropType<"accent" | "cta" | "announcement">;
274
+ type: PropType<"accent" | "announcement" | "cta">;
291
275
  default: undefined;
292
276
  };
293
277
  /**
@@ -312,10 +296,9 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
312
296
  icon: "10-sec-backward-line" | "10-sec-backward-solid" | "10-sec-forward-line" | "10-sec-forward-solid" | "30-sec-backward-line" | "30-sec-backward-solid" | "30-sec-forward-line" | "30-sec-forward-solid" | "5-sec-backward-line" | "5-sec-backward-solid" | "5-sec-forward-line" | "5-sec-forward-solid" | "accessibility-line" | "accessibility-solid" | "active-call-line" | "active-call-solid" | "add-call-line" | "add-call-solid" | "add-group-line" | "add-group-solid" | "add-line" | "add-solid" | "add-time-line" | "add-time-solid" | "add-user-line" | "add-user-solid" | "address-book-line" | "address-book-solid" | "ai-2-line" | "ai-2-solid" | "ai-3-line" | "ai-3-solid" | "ai-line" | "ai-solid" | "alarm-line" | "alarm-solid" | "align-center-line" | "align-center-solid" | "align-left-line" | "align-left-solid" | "align-right-line" | "align-right-solid" | "ambulance-line" | "ambulance-solid" | "android-color" | "android-mono" | "angular-color" | "angular-mono" | "app-line" | "app-plus-line" | "app-plus-solid" | "app-solid" | "app-store-line" | "app-store-solid" | "apple-color" | "apple-mono" | "apps-line" | "apps-solid" | "arrow-bold-left-line" | "arrow-bold-left-solid" | "arrow-bold-right-line" | "arrow-bold-right-solid" | "arrow-down-line" | "arrow-down-solid" | "arrow-inbound-line" | "arrow-inbound-solid" | "arrow-left-line" | "arrow-left-solid" | "arrow-outbound-line" | "arrow-outbound-solid" | "arrow-right-line" | "arrow-right-solid" | "arrow-up-line" | "arrow-up-solid" | "arrow-width-large-line" | "arrow-width-large-solid" | "arrow-width-medium-line" | "arrow-width-medium-solid" | "arrow-width-small-line" | "arrow-width-small-solid" | "assign-user-line" | "assign-user-solid" | "asterisk-2-line" | "asterisk-2-solid" | "asterisk-line" | "asterisk-solid" | "atoms-line" | "atoms-solid" | "attachment-line" | "attachment-solid" | "audio-max-line" | "audio-max-solid" | "audio-mid-line" | "audio-mid-solid" | "audio-min-line" | "audio-min-solid" | "audio-mute-line" | "audio-mute-solid" | "audio-off-2-line" | "audio-off-2-solid" | "audio-off-line" | "audio-off-solid" | "back-line" | "back-solid" | "backspace-line" | "backspace-solid" | "backward-line" | "backward-solid" | "badge-line" | "badge-solid" | "binoculars-line" | "binoculars-solid" | "block-call-line" | "block-call-solid" | "block-line" | "block-solid" | "blogger-color" | "blogger-mono" | "blur-line" | "blur-off-line" | "blur-off-solid" | "blur-solid" | "bold-line" | "bold-solid" | "bookmark-line" | "bookmark-solid" | "books-line" | "books-solid" | "bot-line" | "bot-solid" | "bottom-tabs-line" | "bottom-tabs-solid" | "bounce-line" | "bounce-solid" | "brain-line" | "brain-solid" | "bring-to-front-line" | "bring-to-front-solid" | "broadcast-line" | "broadcast-solid" | "bullet-line" | "bullet-list-2-line" | "bullet-list-2-solid" | "bullet-list-line" | "bullet-list-off-line" | "bullet-list-off-solid" | "bullet-list-solid" | "bullet-solid" | "bullhorn-color" | "bullhorn-mono" | "calculator-line" | "calculator-solid" | "calendar-check-line" | "calendar-check-solid" | "calendar-clock-line" | "calendar-clock-solid" | "calendar-line" | "calendar-plus-line" | "calendar-plus-solid" | "calendar-solid" | "call-line" | "call-solid" | "call-star-line" | "call-star-solid" | "camera-line" | "camera-solid" | "camera-switch-line" | "camera-switch-solid" | "car-line" | "car-solid" | "cart-full-line" | "cart-full-solid" | "cart-line" | "cart-solid" | "cell-reception-line" | "cell-reception-solid" | "chain-line" | "chain-solid" | "charity-line" | "charity-solid" | "chart-line" | "chart-solid" | "chat-2-line" | "chat-2-solid" | "chat-call-line" | "chat-call-solid" | "chat-hide-line" | "chat-hide-solid" | "chat-line" | "chat-solid" | "check-all-line" | "check-all-solid" | "check-call-line" | "check-call-solid" | "check-circle-line" | "check-circle-solid" | "check-double-line" | "check-double-solid" | "check-line" | "check-sent-line" | "check-sent-solid" | "check-solid" | "checkbox-checked-2-line" | "checkbox-checked-2-solid" | "checkbox-checked-line" | "checkbox-checked-solid" | "checkbox-part-checked-line" | "checkbox-part-checked-solid" | "checkbox-unchecked-2-line" | "checkbox-unchecked-2-solid" | "checkbox-unchecked-line" | "checkbox-unchecked-solid" | "chevron-circle-down-line" | "chevron-circle-down-solid" | "chevron-down-line" | "chevron-down-solid" | "chevron-left-line" | "chevron-left-solid" | "chevron-right-line" | "chevron-right-solid" | "chevron-up-line" | "chevron-up-solid" | "chime-color" | "chime-mono" | "circle-line" | "circle-solid" | "clear-file-line" | "clear-file-solid" | "click-to-call-line" | "click-to-call-solid" | "clio-color" | "clio-mono" | "clipboard-add-line" | "clipboard-add-solid" | "clipboard-assign-line" | "clipboard-assign-solid" | "clock-line" | "clock-off-line" | "clock-off-solid" | "clock-solid" | "close-circle-line" | "close-circle-solid" | "close-line" | "close-small-line" | "close-small-solid" | "close-solid" | "closed-captioning-line" | "closed-captioning-off-line" | "closed-captioning-off-solid" | "closed-captioning-solid" | "cloud-download-2-line" | "cloud-download-2-solid" | "cloud-line" | "cloud-office-phone-line" | "cloud-office-phone-solid" | "cloud-solid" | "cloud-upload-2-line" | "cloud-upload-2-solid" | "cloud-upload-line" | "cloud-upload-solid" | "code-line" | "code-snippet-line" | "code-snippet-solid" | "code-solid" | "coffee-line" | "coffee-solid" | "collapse-line" | "collapse-solid" | "comms-online-color" | "comms-online-mono" | "company-line" | "company-solid" | "compose-line" | "compose-solid" | "condition-line" | "condition-solid" | "connect-line" | "connect-solid" | "connectwise-color" | "connectwise-mono" | "cooktail-line" | "cooktail-solid" | "copy-2-line" | "copy-2-solid" | "copy-line" | "copy-solid" | "credit-card-line" | "credit-card-solid" | "crop-line" | "crop-solid" | "curl-color" | "curl-mono" | "curly-brackets-line" | "curly-brackets-solid" | "cursor-2-line" | "cursor-2-solid" | "cursor-line" | "cursor-solid" | "dark-mode-line" | "dark-mode-solid" | "delete-line" | "delete-solid" | "density-high-line" | "density-high-solid" | "density-medium-line" | "density-medium-solid" | "design-tools-line" | "design-tools-solid" | "devices-line" | "devices-solid" | "disable-call-line" | "disable-call-solid" | "distort-line" | "distort-solid" | "divider-line" | "divider-solid" | "document-2-line" | "document-2-solid" | "document-line" | "document-solid" | "dollar-line" | "dollar-solid" | "dotnet-color" | "dotnet-mono" | "double-chevron-left-line" | "double-chevron-left-solid" | "double-chevron-right-line" | "double-chevron-right-solid" | "download-line" | "download-solid" | "drupal-color" | "drupal-mono" | "duplicate-line" | "duplicate-solid" | "dynamics-365-color" | "dynamics-365-mono" | "dynamics-color" | "dynamics-mono" | "echo-line" | "echo-solid" | "edit-line" | "edit-solid" | "edit-user-line" | "edit-user-solid" | "eight-line" | "eight-solid" | "emoji-line" | "emoji-solid" | "end-call-line" | "end-call-solid" | "enlarge-screen-2-line" | "enlarge-screen-2-solid" | "enlarge-screen-line" | "enlarge-screen-solid" | "enter-line" | "enter-solid" | "envelope-line" | "envelope-solid" | "eraser-line" | "eraser-solid" | "error-line" | "error-solid" | "error-star-line" | "error-star-solid" | "exit-line" | "exit-solid" | "expand-2-line" | "expand-2-solid" | "expand-line" | "expand-solid" | "export-line" | "export-solid" | "express-color" | "express-mono" | "eye-hide-line" | "eye-hide-solid" | "eye-line" | "eye-solid" | "facebook-color" | "facebook-line" | "facebook-mono" | "facebook-solid" | "fax-2-line" | "fax-2-solid" | "fax-add-line" | "fax-add-solid" | "fax-failed-line" | "fax-failed-solid" | "fax-inbound-line" | "fax-inbound-solid" | "fax-line" | "fax-outbound-line" | "fax-outbound-solid" | "fax-pending-line" | "fax-pending-solid" | "fax-scheduled-line" | "fax-scheduled-solid" | "fax-solid" | "feedback-line" | "feedback-solid" | "file-add-line" | "file-add-solid" | "file-audio-line" | "file-audio-solid" | "file-csv-line" | "file-csv-solid" | "file-doc-line" | "file-doc-solid" | "file-dollar-line" | "file-dollar-solid" | "file-edit-line" | "file-edit-solid" | "file-gear-line" | "file-gear-solid" | "file-gif-2-line" | "file-gif-2-solid" | "file-gif-line" | "file-gif-solid" | "file-jpg-line" | "file-jpg-solid" | "file-line" | "file-paragraph-line" | "file-paragraph-solid" | "file-pdf-line" | "file-pdf-solid" | "file-plus-line" | "file-plus-solid" | "file-png-line" | "file-png-solid" | "file-ppt-line" | "file-ppt-solid" | "file-search-line" | "file-search-solid" | "file-solid" | "file-video-2-line" | "file-video-2-solid" | "file-video-line" | "file-video-solid" | "file-xls-line" | "file-xls-solid" | "file-zip-line" | "file-zip-solid" | "files-line" | "files-solid" | "filter-line" | "filter-solid" | "five-line" | "five-solid" | "flag-afghanistan" | "flag-aland-islands" | "flag-albania" | "flag-algeria" | "flag-argentina" | "flag-armenia" | "flag-aruba" | "flag-australia" | "flag-austria" | "flag-bahamas" | "flag-bahrain" | "flag-belarus" | "flag-belgium" | "flag-benin" | "flag-bolivia" | "flag-botswana" | "flag-brazil" | "flag-bulgaria" | "flag-burkina-faso" | "flag-cambodia" | "flag-canada" | "flag-cayman-islands" | "flag-central-african-republic" | "flag-chad" | "flag-chile" | "flag-china" | "flag-colombia" | "flag-costa-rica" | "flag-croatia" | "flag-cyprus" | "flag-denmark" | "flag-dominican-republic" | "flag-egypt" | "flag-el-salvador" | "flag-estonia" | "flag-european-union" | "flag-finland" | "flag-france" | "flag-georgia" | "flag-germany" | "flag-ghana" | "flag-grenada" | "flag-guatemala" | "flag-honduras" | "flag-hong-kong" | "flag-hungary" | "flag-iceland" | "flag-india" | "flag-indonesia" | "flag-ireland" | "flag-israel" | "flag-italy" | "flag-jamaica" | "flag-japan" | "flag-latvia" | "flag-liechtenstein" | "flag-lithuania" | "flag-luxembourg" | "flag-macao" | "flag-malaysia" | "flag-malta" | "flag-mauritius" | "flag-mexico" | "flag-moldova" | "flag-netherlands" | "flag-new-zealand" | "flag-nigeria" | "flag-norway" | "flag-pakistan" | "flag-panama" | "flag-peru" | "flag-philippines" | "flag-poland" | "flag-portugal" | "flag-puertorico" | "flag-romania" | "flag-russia" | "flag-rwanda" | "flag-saudi-arabia" | "flag-serbia" | "flag-singapore" | "flag-slovakia" | "flag-slovenia" | "flag-south-africa" | "flag-south-korea" | "flag-spain" | "flag-sri-lanka" | "flag-sweden" | "flag-switzerland" | "flag-taiwan" | "flag-tajikistan" | "flag-tanzania" | "flag-thailand" | "flag-trinidad-and-tobago" | "flag-turkey" | "flag-ukraine" | "flag-united-arab-emirates" | "flag-united-kingdom" | "flag-united-states" | "flag-uruguay" | "flag-uzbekistan" | "flag-venezuela" | "flag-vietnam" | "flag-zambia" | "flash-2-line" | "flash-2-solid" | "flash-line" | "flash-solid" | "flip-horizontal-line" | "flip-horizontal-solid" | "flip-line" | "flip-solid" | "flip-vertical-line" | "flip-vertical-solid" | "flow-2-line" | "flow-2-solid" | "flow-line" | "flow-permission-line" | "flow-permission-solid" | "flow-solid" | "forward-call-line" | "forward-call-solid" | "forward-line" | "forward-solid" | "four-line" | "four-solid" | "full-screen-line" | "full-screen-solid" | "fullscreen-off-line" | "fullscreen-off-solid" | "gallery-line" | "gallery-solid" | "gear-line" | "gear-solid" | "github-color" | "github-mono" | "globe-line" | "globe-solid" | "google-color" | "google-mono" | "gradle-color" | "gradle-mono" | "grid-two-line" | "grid-two-solid" | "groovy-color" | "groovy-mono" | "group-2-line" | "group-2-solid" | "group-3-line" | "group-3-solid" | "group-4-line" | "group-4-solid" | "group-5-line" | "group-5-solid" | "group-6-line" | "group-6-solid" | "group-7-line" | "group-7-solid" | "group-8-line" | "group-8-solid" | "group-9-line" | "group-9-solid" | "group-line" | "group-permission-2-line" | "group-permission-2-solid" | "group-permission-line" | "group-permission-solid" | "group-solid" | "hand-line" | "hand-off-line" | "hand-off-solid" | "hand-shake-line" | "hand-shake-solid" | "hand-solid" | "happy-line" | "happy-solid" | "hash-line" | "hash-solid" | "hashtag-line" | "hashtag-solid" | "headset-2-line" | "headset-2-solid" | "headset-line" | "headset-solid" | "hearing-line" | "hearing-max-line" | "hearing-max-solid" | "hearing-solid" | "heart-line" | "heart-solid" | "help-line" | "help-solid" | "highlight-line" | "highlight-solid" | "history-line" | "history-solid" | "home-line" | "home-solid" | "home-user-line" | "home-user-solid" | "hospital-line" | "hospital-solid" | "hoteling-line" | "hoteling-solid" | "hubspot-color" | "hubspot-mono" | "id-line" | "id-solid" | "image-line" | "image-solid" | "import-line" | "import-solid" | "inbound-call-line" | "inbound-call-solid" | "inbox-2-line" | "inbox-2-solid" | "inbox-3-line" | "inbox-3-solid" | "inbox-line" | "inbox-solid" | "increase-line" | "increase-solid" | "infinity-line" | "infinity-solid" | "info-line" | "info-solid" | "instagram-color" | "instagram-mono" | "interactive-message-line" | "interactive-message-solid" | "ios-color" | "ios-mono" | "italic-line" | "italic-solid" | "java-color" | "java-mono" | "javascript-color" | "javascript-mono" | "jobdiva-color" | "jobdiva-mono" | "key-line" | "key-solid" | "keypad-2-line" | "keypad-2-solid" | "keypad-line" | "keypad-solid" | "kotlin-color" | "kotlin-mono" | "laptop-line" | "laptop-solid" | "laravel-color" | "laravel-mono" | "layout-1-line" | "layout-1-solid" | "layout-2-line" | "layout-2-solid" | "leave-line" | "leave-solid" | "light-bulb-line" | "light-bulb-solid" | "light-mode-line" | "light-mode-solid" | "line-width-large-line" | "line-width-large-solid" | "line-width-medium-line" | "line-width-medium-solid" | "line-width-small-line" | "line-width-small-solid" | "link-add-line" | "link-add-solid" | "link-line" | "link-remove-line" | "link-remove-solid" | "link-solid" | "linkedin-color" | "linkedin-mono" | "linux-color" | "linux-mono" | "list-2-line" | "list-2-solid" | "list-filter-line" | "list-filter-solid" | "list-line" | "list-numbered-line" | "list-numbered-solid" | "list-solid" | "lock-line" | "lock-solid" | "mailbox-line" | "mailbox-solid" | "maximize-line" | "maximize-solid" | "media-player-line" | "media-player-off-line" | "media-player-off-solid" | "media-player-solid" | "megaphone-line" | "megaphone-solid" | "menu-line" | "menu-solid" | "merge-2-line" | "merge-2-solid" | "merge-line" | "merge-solid" | "message-line" | "message-sent-line" | "message-sent-solid" | "message-solid" | "message-template-line" | "message-template-solid" | "mic-mute-line" | "mic-mute-solid" | "microphone-2-line" | "microphone-2-solid" | "microphone-line" | "microphone-solid" | "microsoft-dynamics-365-color" | "microsoft-dynamics-365-mono" | "microsoft-teams-color" | "microsoft-teams-mono" | "mind-map-2-line" | "mind-map-2-solid" | "mind-map-line" | "mind-map-solid" | "minimize-2-line" | "minimize-2-solid" | "minimize-line" | "minimize-solid" | "minus-line" | "minus-solid" | "missed-call-line" | "missed-call-solid" | "mobile-2-line" | "mobile-2-solid" | "mobile-arrow-right-line" | "mobile-arrow-right-solid" | "mobile-devices-line" | "mobile-devices-solid" | "mobile-line" | "mobile-solid" | "mockup-line" | "mockup-solid" | "modal-line" | "modal-solid" | "more-horizontal-line" | "more-horizontal-solid" | "more-vertical-line" | "more-vertical-solid" | "music-line" | "music-solid" | "netsuite-color" | "netsuite-mono" | "nexmo-color" | "nexmo-mono" | "next-line" | "next-solid" | "nine-line" | "nine-solid" | "node-color" | "node-mono" | "note-line" | "note-solid" | "notes-line" | "notes-solid" | "notification-off-line" | "notification-off-solid" | "notification-on-line" | "notification-on-solid" | "objective-c-color" | "objective-c-mono" | "office-color" | "office-mono" | "office-phone-2-line" | "office-phone-2-solid" | "office-phone-line" | "office-phone-solid" | "one-line" | "one-solid" | "open-folder-line" | "open-folder-solid" | "open-line" | "open-solid" | "outbound-call-line" | "outbound-call-solid" | "packet-2-line" | "packet-2-solid" | "packet-line" | "packet-solid" | "palette-line" | "palette-solid" | "park-call-line" | "park-call-solid" | "participants-line" | "participants-off-line" | "participants-off-solid" | "participants-solid" | "password-restart-line" | "password-restart-solid" | "pause-2-line" | "pause-2-solid" | "pause-call-line" | "pause-call-solid" | "pause-line" | "pause-solid" | "pen-effect-line" | "pen-effect-solid" | "pen-tip-large-line" | "pen-tip-large-solid" | "pen-tip-medium-line" | "pen-tip-medium-solid" | "pen-tip-small-line" | "pen-tip-small-solid" | "pending-call-line" | "pending-call-solid" | "pentool-line" | "pentool-solid" | "permission-call-line" | "permission-call-solid" | "phone-number-line" | "phone-number-solid" | "php-color" | "php-mono" | "pie-chart-line" | "pie-chart-solid" | "pin-2-line" | "pin-2-off-line" | "pin-2-off-solid" | "pin-2-solid" | "pin-line" | "pin-off-line" | "pin-off-solid" | "pin-solid" | "pin-unverified-line" | "pin-unverified-solid" | "pin-verified-line" | "pin-verified-solid" | "play-2-line" | "play-2-solid" | "play-line" | "play-solid" | "playback-speed-line" | "playback-speed-solid" | "playlist-line" | "playlist-solid" | "plug-line" | "plug-solid" | "plus-line" | "plus-solid" | "preferences-line" | "preferences-solid" | "presentation-line" | "presentation-solid" | "print-line" | "print-solid" | "profile-line" | "profile-solid" | "puzzle-line" | "puzzle-solid" | "puzzled-line" | "puzzled-solid" | "python-color" | "python-mono" | "quit-line" | "quit-solid" | "quote-line" | "quote-solid" | "radio-checked-2-line" | "radio-checked-2-solid" | "radio-checked-line" | "radio-checked-solid" | "radio-unchecked-2-line" | "radio-unchecked-2-solid" | "radio-unchecked-line" | "radio-unchecked-solid" | "rails-color" | "rails-mono" | "react-color" | "react-mono" | "rec-line" | "rec-solid" | "receptionist-line" | "receptionist-solid" | "record-user-line" | "record-user-solid" | "redo-line" | "redo-solid" | "refresh-call-line" | "refresh-call-solid" | "refresh-dollar-line" | "refresh-dollar-solid" | "refresh-line" | "refresh-solid" | "reload-line" | "reload-solid" | "remove-line" | "remove-solid" | "remove-user-line" | "remove-user-solid" | "reorder-horizontal-line" | "reorder-horizontal-solid" | "reorder-vertical-line" | "reorder-vertical-solid" | "reply-line" | "reply-solid" | "report-line" | "report-solid" | "reset-line" | "reset-solid" | "rocket-disabled-line" | "rocket-disabled-solid" | "rocket-line" | "rocket-solid" | "rss-color" | "rss-line" | "rss-mono" | "rss-solid" | "ruby-color" | "ruby-mono" | "salesforce-color" | "salesforce-line" | "salesforce-mono" | "salesforce-solid" | "sand-clock-line" | "sand-clock-solid" | "save-line" | "save-solid" | "screen-share-line" | "screen-share-off-line" | "screen-share-off-solid" | "screen-share-solid" | "search-line" | "search-solid" | "send-to-back-line" | "send-to-back-solid" | "seven-line" | "seven-solid" | "share-2-line" | "share-2-solid" | "share-line" | "share-solid" | "shield-line" | "shield-solid" | "shout-line" | "shout-solid" | "shuffle-line" | "shuffle-solid" | "sidebar-line" | "sidebar-solid" | "six-line" | "six-solid" | "slack-color" | "slack-mono" | "smile-line" | "smile-solid" | "sms-line" | "sms-solid" | "snooze-line" | "snooze-solid" | "sofa-line" | "sofa-solid" | "sort-asc-line" | "sort-asc-solid" | "sort-desc-line" | "sort-desc-solid" | "sort-line" | "sort-solid" | "sparkles-line" | "sparkles-solid" | "square-line" | "square-solid" | "stack-line" | "stack-solid" | "stackoverflow-color" | "stackoverflow-mono" | "star-dollar-line" | "star-dollar-solid" | "star-line" | "star-solid" | "sticker-line" | "sticker-solid" | "stop-line" | "stop-solid" | "stopwatch-line" | "stopwatch-solid" | "store-line" | "store-solid" | "stream-line" | "stream-solid" | "strikethrough-line" | "strikethrough-solid" | "sub-account-line" | "sub-account-solid" | "subtitles-line" | "subtitles-solid" | "sugarcrm-color" | "sugarcrm-mono" | "surprised-line" | "surprised-solid" | "swift-color" | "swift-mono" | "switch-line" | "switch-solid" | "symfony-color" | "symfony-mono" | "table-2-line" | "table-2-solid" | "table-line" | "table-solid" | "tag-add-line" | "tag-add-solid" | "tag-detach-line" | "tag-detach-solid" | "tag-line" | "tag-search-line" | "tag-search-solid" | "tag-solid" | "telephone-line" | "telephone-solid" | "text-line" | "text-solid" | "textcolor-line" | "textcolor-solid" | "texture-line" | "texture-solid" | "three-line" | "three-solid" | "thumbs-down-line" | "thumbs-down-solid" | "thumbs-up-line" | "thumbs-up-solid" | "timeline-line" | "timeline-solid" | "toggle-line" | "toggle-solid" | "tooltip-line" | "tooltip-solid" | "transfer-call-line" | "transfer-call-solid" | "transfer-line" | "transfer-solid" | "triangle-line" | "triangle-solid" | "trigger-node-line" | "trigger-node-solid" | "twitch-color" | "twitch-mono" | "twitter-color" | "twitter-mono" | "two-line" | "two-solid" | "umbrella-line" | "umbrella-solid" | "underline-line" | "underline-solid" | "undo-line" | "undo-solid" | "unfavourite-line" | "unfavourite-solid" | "unhappy-line" | "unhappy-solid" | "unlock-line" | "unlock-solid" | "upload-line" | "upload-solid" | "user-2-line" | "user-2-solid" | "user-admin-line" | "user-admin-solid" | "user-clock-line" | "user-clock-solid" | "user-line" | "user-lock-line" | "user-lock-solid" | "user-record-line" | "user-record-solid" | "user-solid" | "user-sync-2-line" | "user-sync-2-off-line" | "user-sync-2-off-solid" | "user-sync-2-solid" | "user-sync-line" | "user-sync-solid" | "van-line" | "van-solid" | "viber-color" | "viber-mono" | "video-active-line" | "video-active-solid" | "video-conference-line" | "video-conference-solid" | "video-line" | "video-off-line" | "video-off-solid" | "video-preview-line" | "video-preview-solid" | "video-solid" | "video-whiteboard-line" | "video-whiteboard-solid" | "video_round_table-line" | "video_round_table-solid" | "virtual-voicemail-line" | "virtual-voicemail-solid" | "voicemail-line" | "voicemail-solid" | "voicemail-transcript-line" | "voicemail-transcript-solid" | "volume-decrease-line" | "volume-decrease-solid" | "volume-increase-line" | "volume-increase-solid" | "volume-line" | "volume-off-2-line" | "volume-off-2-solid" | "volume-off-line" | "volume-off-solid" | "volume-on-line" | "volume-on-solid" | "volume-solid" | "vonage-color" | "vonage-line" | "vonage-mono" | "vonage-solid" | "vue-color" | "vue-mono" | "walk-line" | "walk-solid" | "wallet-line" | "wallet-solid" | "wand-line" | "wand-solid" | "warning-line" | "warning-solid" | "waving-line" | "waving-solid" | "web-chat-color" | "web-chat-mono" | "webhook-line" | "webhook-solid" | "whatsapp-color" | "whatsapp-mono" | "whisper-line" | "whisper-solid" | "wifi-line" | "wifi-solid" | "windows-color" | "windows-mono" | "wordpress-color" | "wordpress-mono" | "workplace-color" | "workplace-mono" | "wrench-tool-2-line" | "wrench-tool-2-solid" | "wrench-tool-line" | "wrench-tool-solid" | "x-twitter-color" | "x-twitter-mono" | "xml-color" | "xml-mono" | "youtube-color" | "youtube-mono" | "zendesk-color" | "zendesk-mono" | "zero-line" | "zero-solid" | "zoho-color" | "zoho-mono" | "zoom-in-line" | "zoom-in-solid" | "zoom-out-line" | "zoom-out-solid" | "zoom-to-fit-line" | "zoom-to-fit-solid";
313
297
  iconTrailing: boolean;
314
298
  size: "expanded" | "normal";
315
- connotation: "accent" | "cta" | "announcement";
299
+ connotation: "accent" | "announcement" | "cta";
316
300
  disabled: boolean;
317
301
  initialValue: string;
318
- currentValue: string;
319
302
  required: boolean;
320
303
  autofocus: boolean;
321
304
  form: string;