@@ -74,7 +74,7 @@ const sharedProps = [
74
74
type : "VBtn['$props']['variant']" ,
75
75
} ,
76
76
{
77
- default : undefined ,
77
+ default : '$close' ,
78
78
desc : 'The icon to use to cancel' ,
79
79
name : 'cancel-icon' ,
80
80
type : 'string | undefined' ,
@@ -198,6 +198,15 @@ const autofocusProp = [
198
198
} ,
199
199
] ;
200
200
201
+ const clearIconProp = [
202
+ {
203
+ default : '$clear' ,
204
+ desc : 'The icon to use to clear the field' ,
205
+ name : 'clear-icon' ,
206
+ type : "string | undefined" ,
207
+ } ,
208
+ ] ;
209
+
201
210
const saveAndLoadingIconProps = [
202
211
{
203
212
default : false ,
@@ -263,7 +272,7 @@ const trueFalseIconProps = [
263
272
type : 'boolean | string' ,
264
273
} ,
265
274
{
266
- default : undefined ,
275
+ default : '$close' ,
267
276
desc : 'The displayed <code class="ic">false</code> icon when the field is not editable' ,
268
277
name : 'icon-false' ,
269
278
type : 'string | undefined' ,
@@ -281,7 +290,7 @@ const trueFalseIconProps = [
281
290
type : 'string | undefined' ,
282
291
} ,
283
292
{
284
- default : undefined ,
293
+ default : '$complete' ,
285
294
desc : 'The displayed <code class="ic">true</code> icon when the field is not editable' ,
286
295
name : 'icon-true' ,
287
296
type : 'string | undefined' ,
@@ -333,13 +342,13 @@ const vInlineCheckboxProps = [
333
342
...trueFalseIconProps ,
334
343
...[
335
344
{
336
- default : undefined ,
345
+ default : '$close' ,
337
346
desc : 'The icon of the checkbox when <code class="ic">false</code>' ,
338
347
name : 'false-icon' ,
339
348
type : "string | undefined" ,
340
349
} ,
341
350
{
342
- default : undefined ,
351
+ default : '$complete' ,
343
352
desc : 'The icon of the checkbox when <code class="ic">true</code>' ,
344
353
name : 'true-icon' ,
345
354
type : "string | undefined" ,
@@ -350,14 +359,9 @@ const vInlineCheckboxProps = [
350
359
const vInlineSelectProps = [
351
360
...sharedProps ,
352
361
...autofocusProp ,
362
+ ...clearIconProp ,
353
363
...saveAndLoadingIconProps ,
354
364
...[
355
- {
356
- default : undefined ,
357
- desc : 'The icon to use to clear the field' ,
358
- name : 'clear-icon' ,
359
- type : "VSelect['$props']['clearIcon']" ,
360
- } ,
361
365
{
362
366
default : false ,
363
367
desc : 'Allows for the component to be cleared' ,
@@ -402,7 +406,7 @@ const vInlineSwitchProps = [
402
406
...trueFalseIconProps ,
403
407
...[
404
408
{
405
- default : undefined ,
409
+ default : '$close' ,
406
410
desc : 'The icon of the field when <code class="ic">false</code>' ,
407
411
name : 'false-icon' ,
408
412
type : "VSwitch['$props']['falseIcon']" ,
@@ -413,6 +417,7 @@ const vInlineSwitchProps = [
413
417
const vInlineTextareaProps = [
414
418
...sharedProps ,
415
419
...autofocusProp ,
420
+ ...clearIconProp ,
416
421
...saveAndLoadingIconProps ,
417
422
...truncateProps ,
418
423
...[
@@ -440,6 +445,7 @@ const vInlineTextareaProps = [
440
445
const vInlineTextFieldProps = [
441
446
...sharedProps ,
442
447
...autofocusProp ,
448
+ ...clearIconProp ,
443
449
...saveAndLoadingIconProps ,
444
450
...truncateProps ,
445
451
...[
0 commit comments