@dimailn/vuetify 2.7.2-alpha46 → 2.7.2-alpha47
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/dist/vuetify.js +98 -96
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +1 -1
- package/dist/vuetify.min.js +2 -2
- package/es5/components/VIcon/VIcon.js +73 -93
- package/es5/components/VIcon/VIcon.js.map +1 -1
- package/es5/components/VMenu/VMenu.js +3 -1
- package/es5/components/VMenu/VMenu.js.map +1 -1
- package/es5/framework.js +1 -1
- package/lib/components/VIcon/VIcon.js +50 -96
- package/lib/components/VIcon/VIcon.js.map +1 -1
- package/lib/components/VMenu/VMenu.js +8 -5
- package/lib/components/VMenu/VMenu.js.map +1 -1
- package/lib/framework.js +1 -1
- package/package.json +1 -1
- package/src/components/VAlert/__tests__/__snapshots__/VAlert.spec.ts.snap +2 -2
- package/src/components/VAppBar/__tests__/__snapshots__/VAppBarNavIcon.spec.ts.snap +1 -1
- package/src/components/VBanner/__tests__/__snapshots__/VBanner.spec.ts.snap +1 -1
- package/src/components/VCheckbox/__tests__/__snapshots__/VCheckbox.spec.ts.snap +16 -13
- package/src/components/VChip/__tests__/__snapshots__/VChip.spec.ts.snap +5 -0
- package/src/components/VColorPicker/__tests__/__snapshots__/VColorPicker.spec.ts.snap +33 -24
- package/src/components/VColorPicker/__tests__/__snapshots__/VColorPickerEdit.spec.ts.snap +10 -5
- package/src/components/VDataIterator/__tests__/__snapshots__/VDataFooter.spec.ts.snap +50 -29
- package/src/components/VDataIterator/__tests__/__snapshots__/VDataIterator.spec.ts.snap +38 -23
- package/src/components/VDataTable/__tests__/__snapshots__/VDataTable.spec.ts.snap +670 -438
- package/src/components/VDataTable/__tests__/__snapshots__/VDataTableHeader.spec.ts.snap +88 -53
- package/src/components/VDataTable/mixins/__tests__/__snapshots__/header.spec.ts.snap +4 -4
- package/src/components/VDatePicker/__tests__/__snapshots__/VDatePicker.date.spec.ts.snap +68 -0
- package/src/components/VDatePicker/__tests__/__snapshots__/VDatePicker.month.spec.ts.snap +40 -0
- package/src/components/VDatePicker/__tests__/__snapshots__/VDatePickerHeader.spec.ts.snap +40 -0
- package/src/components/VDatePicker/__tests__/__snapshots__/VDatePickerTitle.spec.ts.snap +4 -0
- package/src/components/VExpansionPanel/__tests__/__snapshots__/VExpansionPanel.spec.ts.snap +1 -1
- package/src/components/VFileInput/__tests__/__snapshots__/VFileInput.spec.ts.snap +43 -43
- package/src/components/VIcon/VIcon.ts +50 -98
- package/src/components/VIcon/__tests__/VIcon.spec.ts +26 -5
- package/src/components/VIcon/__tests__/__snapshots__/VIcon.spec.ts.snap +11 -4
- package/src/components/VInput/__tests__/__snapshots__/VInput.spec.ts.snap +18 -2
- package/src/components/VList/__tests__/__snapshots__/VListGroup.spec.ts.snap +1 -1
- package/src/components/VMenu/VMenu.ts +10 -7
- package/src/components/VOverflowBtn/__tests__/__snapshots__/VOverflowBtn.spec.ts.snap +10 -10
- package/src/components/VPagination/__tests__/__snapshots__/VPagination.spec.ts.snap +16 -16
- package/src/components/VRadioGroup/__tests__/__snapshots__/VRadio.spec.ts.snap +13 -11
- package/src/components/VRadioGroup/__tests__/__snapshots__/VRadioGroup.spec.ts.snap +1 -1
- package/src/components/VSelect/__tests__/__snapshots__/VSelect.spec.ts.snap +19 -7
- package/src/components/VSelect/__tests__/__snapshots__/VSelect2.spec.ts.snap +29 -9
- package/src/components/VSelect/__tests__/__snapshots__/VSelect3.spec.ts.snap +6 -2
- package/src/components/VStepper/__tests__/__snapshots__/VStepperStep.spec.ts.snap +6 -5
- package/src/components/VTextField/__tests__/__snapshots__/VTextField.spec.ts.snap +14 -12
- package/src/components/VTimeline/__tests__/__snapshots__/VTimelineItem.spec.ts.snap +2 -1
- package/src/components/VTreeview/__tests__/__snapshots__/VTreeview.spec.ts.snap +42 -21
- package/src/components/VTreeview/__tests__/__snapshots__/VTreeviewNode.spec.ts.snap +5 -4
|
@@ -41,9 +41,10 @@ exports[`VDataIterator.ts should render and match snapshot 1`] = `
|
|
|
41
41
|
</div>
|
|
42
42
|
<div class="v-input__append-inner">
|
|
43
43
|
<div class="v-input__icon v-input__icon--append">
|
|
44
|
-
<i class="v-icon notranslate theme--light
|
|
44
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
45
45
|
aria-hidden="true"
|
|
46
46
|
>
|
|
47
|
+
$dropdown
|
|
47
48
|
</i>
|
|
48
49
|
</div>
|
|
49
50
|
</div>
|
|
@@ -67,9 +68,10 @@ exports[`VDataIterator.ts should render and match snapshot 1`] = `
|
|
|
67
68
|
aria-label="Previous page"
|
|
68
69
|
>
|
|
69
70
|
<span class="v-btn__content">
|
|
70
|
-
<i class="v-icon notranslate theme--light
|
|
71
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
71
72
|
aria-hidden="true"
|
|
72
73
|
>
|
|
74
|
+
$prev
|
|
73
75
|
</i>
|
|
74
76
|
</span>
|
|
75
77
|
</button>
|
|
@@ -81,9 +83,10 @@ exports[`VDataIterator.ts should render and match snapshot 1`] = `
|
|
|
81
83
|
aria-label="Next page"
|
|
82
84
|
>
|
|
83
85
|
<span class="v-btn__content">
|
|
84
|
-
<i class="v-icon notranslate theme--light
|
|
86
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
85
87
|
aria-hidden="true"
|
|
86
88
|
>
|
|
89
|
+
$next
|
|
87
90
|
</i>
|
|
88
91
|
</span>
|
|
89
92
|
</button>
|
|
@@ -116,7 +119,7 @@ exports[`VDataIterator.ts should render and match snapshot with data 1`] = `
|
|
|
116
119
|
<div role="button"
|
|
117
120
|
aria-haspopup="listbox"
|
|
118
121
|
aria-expanded="false"
|
|
119
|
-
aria-owns="list-
|
|
122
|
+
aria-owns="list-15"
|
|
120
123
|
class="v-input__slot"
|
|
121
124
|
>
|
|
122
125
|
<div class="v-select__slot">
|
|
@@ -127,16 +130,17 @@ exports[`VDataIterator.ts should render and match snapshot with data 1`] = `
|
|
|
127
130
|
<input aria-label="Items per page:"
|
|
128
131
|
aria-readonly="false"
|
|
129
132
|
autocomplete="off"
|
|
130
|
-
id="input-
|
|
133
|
+
id="input-15"
|
|
131
134
|
readonly
|
|
132
135
|
type="text"
|
|
133
136
|
>
|
|
134
137
|
</div>
|
|
135
138
|
<div class="v-input__append-inner">
|
|
136
139
|
<div class="v-input__icon v-input__icon--append">
|
|
137
|
-
<i class="v-icon notranslate theme--light
|
|
140
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
138
141
|
aria-hidden="true"
|
|
139
142
|
>
|
|
143
|
+
$dropdown
|
|
140
144
|
</i>
|
|
141
145
|
</div>
|
|
142
146
|
</div>
|
|
@@ -160,9 +164,10 @@ exports[`VDataIterator.ts should render and match snapshot with data 1`] = `
|
|
|
160
164
|
aria-label="Previous page"
|
|
161
165
|
>
|
|
162
166
|
<span class="v-btn__content">
|
|
163
|
-
<i class="v-icon notranslate theme--light
|
|
167
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
164
168
|
aria-hidden="true"
|
|
165
169
|
>
|
|
170
|
+
$prev
|
|
166
171
|
</i>
|
|
167
172
|
</span>
|
|
168
173
|
</button>
|
|
@@ -174,9 +179,10 @@ exports[`VDataIterator.ts should render and match snapshot with data 1`] = `
|
|
|
174
179
|
aria-label="Next page"
|
|
175
180
|
>
|
|
176
181
|
<span class="v-btn__content">
|
|
177
|
-
<i class="v-icon notranslate theme--light
|
|
182
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
178
183
|
aria-hidden="true"
|
|
179
184
|
>
|
|
185
|
+
$next
|
|
180
186
|
</i>
|
|
181
187
|
</span>
|
|
182
188
|
</button>
|
|
@@ -200,7 +206,7 @@ exports[`VDataIterator.ts should render valid no-data, loading and no-results st
|
|
|
200
206
|
<div role="button"
|
|
201
207
|
aria-haspopup="listbox"
|
|
202
208
|
aria-expanded="false"
|
|
203
|
-
aria-owns="list-
|
|
209
|
+
aria-owns="list-26"
|
|
204
210
|
class="v-input__slot"
|
|
205
211
|
>
|
|
206
212
|
<div class="v-select__slot">
|
|
@@ -211,16 +217,17 @@ exports[`VDataIterator.ts should render valid no-data, loading and no-results st
|
|
|
211
217
|
<input aria-label="Items per page:"
|
|
212
218
|
aria-readonly="false"
|
|
213
219
|
autocomplete="off"
|
|
214
|
-
id="input-
|
|
220
|
+
id="input-26"
|
|
215
221
|
readonly
|
|
216
222
|
type="text"
|
|
217
223
|
>
|
|
218
224
|
</div>
|
|
219
225
|
<div class="v-input__append-inner">
|
|
220
226
|
<div class="v-input__icon v-input__icon--append">
|
|
221
|
-
<i class="v-icon notranslate theme--light
|
|
227
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
222
228
|
aria-hidden="true"
|
|
223
229
|
>
|
|
230
|
+
$dropdown
|
|
224
231
|
</i>
|
|
225
232
|
</div>
|
|
226
233
|
</div>
|
|
@@ -244,9 +251,10 @@ exports[`VDataIterator.ts should render valid no-data, loading and no-results st
|
|
|
244
251
|
aria-label="Previous page"
|
|
245
252
|
>
|
|
246
253
|
<span class="v-btn__content">
|
|
247
|
-
<i class="v-icon notranslate theme--light
|
|
254
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
248
255
|
aria-hidden="true"
|
|
249
256
|
>
|
|
257
|
+
$prev
|
|
250
258
|
</i>
|
|
251
259
|
</span>
|
|
252
260
|
</button>
|
|
@@ -258,9 +266,10 @@ exports[`VDataIterator.ts should render valid no-data, loading and no-results st
|
|
|
258
266
|
aria-label="Next page"
|
|
259
267
|
>
|
|
260
268
|
<span class="v-btn__content">
|
|
261
|
-
<i class="v-icon notranslate theme--light
|
|
269
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
262
270
|
aria-hidden="true"
|
|
263
271
|
>
|
|
272
|
+
$next
|
|
264
273
|
</i>
|
|
265
274
|
</span>
|
|
266
275
|
</button>
|
|
@@ -284,7 +293,7 @@ exports[`VDataIterator.ts should render valid no-data, loading and no-results st
|
|
|
284
293
|
<div role="button"
|
|
285
294
|
aria-haspopup="listbox"
|
|
286
295
|
aria-expanded="false"
|
|
287
|
-
aria-owns="list-
|
|
296
|
+
aria-owns="list-26"
|
|
288
297
|
class="v-input__slot"
|
|
289
298
|
>
|
|
290
299
|
<div class="v-select__slot">
|
|
@@ -295,16 +304,17 @@ exports[`VDataIterator.ts should render valid no-data, loading and no-results st
|
|
|
295
304
|
<input aria-label="Items per page:"
|
|
296
305
|
aria-readonly="false"
|
|
297
306
|
autocomplete="off"
|
|
298
|
-
id="input-
|
|
307
|
+
id="input-26"
|
|
299
308
|
readonly
|
|
300
309
|
type="text"
|
|
301
310
|
>
|
|
302
311
|
</div>
|
|
303
312
|
<div class="v-input__append-inner">
|
|
304
313
|
<div class="v-input__icon v-input__icon--append">
|
|
305
|
-
<i class="v-icon notranslate theme--light
|
|
314
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
306
315
|
aria-hidden="true"
|
|
307
316
|
>
|
|
317
|
+
$dropdown
|
|
308
318
|
</i>
|
|
309
319
|
</div>
|
|
310
320
|
</div>
|
|
@@ -328,9 +338,10 @@ exports[`VDataIterator.ts should render valid no-data, loading and no-results st
|
|
|
328
338
|
aria-label="Previous page"
|
|
329
339
|
>
|
|
330
340
|
<span class="v-btn__content">
|
|
331
|
-
<i class="v-icon notranslate theme--light
|
|
341
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
332
342
|
aria-hidden="true"
|
|
333
343
|
>
|
|
344
|
+
$prev
|
|
334
345
|
</i>
|
|
335
346
|
</span>
|
|
336
347
|
</button>
|
|
@@ -342,9 +353,10 @@ exports[`VDataIterator.ts should render valid no-data, loading and no-results st
|
|
|
342
353
|
aria-label="Next page"
|
|
343
354
|
>
|
|
344
355
|
<span class="v-btn__content">
|
|
345
|
-
<i class="v-icon notranslate theme--light
|
|
356
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
346
357
|
aria-hidden="true"
|
|
347
358
|
>
|
|
359
|
+
$next
|
|
348
360
|
</i>
|
|
349
361
|
</span>
|
|
350
362
|
</button>
|
|
@@ -368,7 +380,7 @@ exports[`VDataIterator.ts should render valid no-data, loading and no-results st
|
|
|
368
380
|
<div role="button"
|
|
369
381
|
aria-haspopup="listbox"
|
|
370
382
|
aria-expanded="false"
|
|
371
|
-
aria-owns="list-
|
|
383
|
+
aria-owns="list-26"
|
|
372
384
|
class="v-input__slot"
|
|
373
385
|
>
|
|
374
386
|
<div class="v-select__slot">
|
|
@@ -379,16 +391,17 @@ exports[`VDataIterator.ts should render valid no-data, loading and no-results st
|
|
|
379
391
|
<input aria-label="Items per page:"
|
|
380
392
|
aria-readonly="false"
|
|
381
393
|
autocomplete="off"
|
|
382
|
-
id="input-
|
|
394
|
+
id="input-26"
|
|
383
395
|
readonly
|
|
384
396
|
type="text"
|
|
385
397
|
>
|
|
386
398
|
</div>
|
|
387
399
|
<div class="v-input__append-inner">
|
|
388
400
|
<div class="v-input__icon v-input__icon--append">
|
|
389
|
-
<i class="v-icon notranslate theme--light
|
|
401
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
390
402
|
aria-hidden="true"
|
|
391
403
|
>
|
|
404
|
+
$dropdown
|
|
392
405
|
</i>
|
|
393
406
|
</div>
|
|
394
407
|
</div>
|
|
@@ -412,9 +425,10 @@ exports[`VDataIterator.ts should render valid no-data, loading and no-results st
|
|
|
412
425
|
aria-label="Previous page"
|
|
413
426
|
>
|
|
414
427
|
<span class="v-btn__content">
|
|
415
|
-
<i class="v-icon notranslate theme--light
|
|
428
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
416
429
|
aria-hidden="true"
|
|
417
430
|
>
|
|
431
|
+
$prev
|
|
418
432
|
</i>
|
|
419
433
|
</span>
|
|
420
434
|
</button>
|
|
@@ -426,9 +440,10 @@ exports[`VDataIterator.ts should render valid no-data, loading and no-results st
|
|
|
426
440
|
aria-label="Next page"
|
|
427
441
|
>
|
|
428
442
|
<span class="v-btn__content">
|
|
429
|
-
<i class="v-icon notranslate theme--light
|
|
443
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
430
444
|
aria-hidden="true"
|
|
431
445
|
>
|
|
446
|
+
$next
|
|
432
447
|
</i>
|
|
433
448
|
</span>
|
|
434
449
|
</button>
|