@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
|
@@ -38,37 +38,44 @@ exports[`VIcon for component icon should render component 1`] = `
|
|
|
38
38
|
<span class="v-icon notranslate theme--light"
|
|
39
39
|
aria-hidden="true"
|
|
40
40
|
>
|
|
41
|
+
<div class="test-component v-icon__component theme--light">
|
|
42
|
+
test icon
|
|
43
|
+
</div>
|
|
41
44
|
</span>
|
|
42
45
|
`;
|
|
43
46
|
|
|
44
47
|
exports[`VIcon set font size from helper prop 1`] = `
|
|
45
|
-
<i class="v-icon notranslate theme--light
|
|
48
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
46
49
|
aria-hidden="true"
|
|
47
50
|
style="font-size: 16px;"
|
|
48
51
|
>
|
|
52
|
+
add
|
|
49
53
|
</i>
|
|
50
54
|
`;
|
|
51
55
|
|
|
52
56
|
exports[`VIcon set font size from helper prop 2`] = `
|
|
53
|
-
<i class="v-icon notranslate theme--light
|
|
57
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
54
58
|
aria-hidden="true"
|
|
55
59
|
medium="true"
|
|
56
60
|
>
|
|
61
|
+
add
|
|
57
62
|
</i>
|
|
58
63
|
`;
|
|
59
64
|
|
|
60
65
|
exports[`VIcon set font size from helper prop 3`] = `
|
|
61
|
-
<i class="v-icon notranslate theme--light
|
|
66
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
62
67
|
aria-hidden="true"
|
|
63
68
|
style="font-size: 36px;"
|
|
64
69
|
>
|
|
70
|
+
add
|
|
65
71
|
</i>
|
|
66
72
|
`;
|
|
67
73
|
|
|
68
74
|
exports[`VIcon set font size from helper prop 4`] = `
|
|
69
|
-
<i class="v-icon notranslate theme--light
|
|
75
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
70
76
|
aria-hidden="true"
|
|
71
77
|
style="font-size: 40px;"
|
|
72
78
|
>
|
|
79
|
+
add
|
|
73
80
|
</i>
|
|
74
81
|
`;
|
|
@@ -22,13 +22,17 @@ exports[`VInput.ts should apply theme to label, counter, messages and icons 1`]
|
|
|
22
22
|
<span class="v-icon notranslate theme--light"
|
|
23
23
|
aria-hidden="true"
|
|
24
24
|
>
|
|
25
|
+
<mdi class="v-icon__component theme--light"
|
|
26
|
+
icon="prepend"
|
|
27
|
+
>
|
|
28
|
+
</mdi>
|
|
25
29
|
</span>
|
|
26
30
|
</div>
|
|
27
31
|
</div>
|
|
28
32
|
<div class="v-input__control">
|
|
29
33
|
<div class="v-input__slot">
|
|
30
34
|
<label class="v-label theme--light"
|
|
31
|
-
for="input-
|
|
35
|
+
for="input-48"
|
|
32
36
|
aria-hidden="false"
|
|
33
37
|
style="left: 0px; position: relative;"
|
|
34
38
|
>
|
|
@@ -48,6 +52,10 @@ exports[`VInput.ts should apply theme to label, counter, messages and icons 1`]
|
|
|
48
52
|
<span class="v-icon notranslate theme--light"
|
|
49
53
|
aria-hidden="true"
|
|
50
54
|
>
|
|
55
|
+
<mdi class="v-icon__component theme--light"
|
|
56
|
+
icon="append"
|
|
57
|
+
>
|
|
58
|
+
</mdi>
|
|
51
59
|
</span>
|
|
52
60
|
</div>
|
|
53
61
|
</div>
|
|
@@ -92,6 +100,10 @@ exports[`VInput.ts should generate an icon and match snapshot 1`] = `
|
|
|
92
100
|
<span class="v-icon notranslate theme--light"
|
|
93
101
|
aria-hidden="true"
|
|
94
102
|
>
|
|
103
|
+
<mdi class="v-icon__component theme--light"
|
|
104
|
+
icon="list"
|
|
105
|
+
>
|
|
106
|
+
</mdi>
|
|
95
107
|
</span>
|
|
96
108
|
</div>
|
|
97
109
|
</div>
|
|
@@ -121,6 +133,10 @@ exports[`VInput.ts should generate an icon and match snapshot 2`] = `
|
|
|
121
133
|
<span class="v-icon notranslate theme--light"
|
|
122
134
|
aria-hidden="true"
|
|
123
135
|
>
|
|
136
|
+
<mdi class="v-icon__component theme--light"
|
|
137
|
+
icon="list"
|
|
138
|
+
>
|
|
139
|
+
</mdi>
|
|
124
140
|
</span>
|
|
125
141
|
</div>
|
|
126
142
|
</div>
|
|
@@ -177,7 +193,7 @@ exports[`VInput.ts should render a label 1`] = `
|
|
|
177
193
|
<div class="v-input__control">
|
|
178
194
|
<div class="v-input__slot">
|
|
179
195
|
<label class="v-label theme--light"
|
|
180
|
-
for="input-
|
|
196
|
+
for="input-43"
|
|
181
197
|
aria-hidden="false"
|
|
182
198
|
style="left: 0px; position: relative;"
|
|
183
199
|
>
|
|
@@ -8,7 +8,7 @@ exports[`VListGroup.ts should render component and match snapshot 1`] = `
|
|
|
8
8
|
class="v-list-item v-list-item--link theme--light v-list-group__header"
|
|
9
9
|
>
|
|
10
10
|
<div class="v-list-item__icon v-list-group__header__append-icon v-list-group__header__append-icon">
|
|
11
|
-
<i class="v-icon notranslate
|
|
11
|
+
<i class="v-icon notranslate mdi mdi-chevron-down theme--light"
|
|
12
12
|
aria-hidden="true"
|
|
13
13
|
>
|
|
14
14
|
</i>
|
|
@@ -524,13 +524,16 @@ export default baseMixins.extend({
|
|
|
524
524
|
|
|
525
525
|
return withDirectives(h('div', data, [
|
|
526
526
|
!this.activator && this.genActivator(),
|
|
527
|
-
this.showLazyContent(() =>
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
527
|
+
this.showLazyContent(() => {
|
|
528
|
+
const transition = this.genTransition()
|
|
529
|
+
return [
|
|
530
|
+
h(VThemeProvider, {
|
|
531
|
+
root: true,
|
|
532
|
+
light: this.light,
|
|
533
|
+
dark: this.dark
|
|
534
|
+
}, () => [transition])
|
|
535
|
+
]
|
|
536
|
+
})
|
|
534
537
|
]), directives as any)
|
|
535
538
|
}
|
|
536
539
|
})
|
|
@@ -6,19 +6,19 @@ exports[`VOverflowBtn.js should show label with persistentPlaceholder property s
|
|
|
6
6
|
<div role="combobox"
|
|
7
7
|
aria-haspopup="listbox"
|
|
8
8
|
aria-expanded="false"
|
|
9
|
-
aria-owns="list-
|
|
9
|
+
aria-owns="list-15"
|
|
10
10
|
class="v-input__slot"
|
|
11
11
|
>
|
|
12
12
|
<div class="v-select__slot">
|
|
13
13
|
<label class="v-label theme--light"
|
|
14
|
-
for="input-
|
|
14
|
+
for="input-15"
|
|
15
15
|
aria-hidden="false"
|
|
16
16
|
style="left: 0px; position: absolute;"
|
|
17
17
|
>
|
|
18
18
|
Some label
|
|
19
19
|
</label>
|
|
20
20
|
<div class="v-select__selections">
|
|
21
|
-
<input id="input-
|
|
21
|
+
<input id="input-15"
|
|
22
22
|
readonly
|
|
23
23
|
type="text"
|
|
24
24
|
value
|
|
@@ -26,7 +26,7 @@ exports[`VOverflowBtn.js should show label with persistentPlaceholder property s
|
|
|
26
26
|
</div>
|
|
27
27
|
<div class="v-input__append-inner">
|
|
28
28
|
<div class="v-input__icon v-input__icon--append">
|
|
29
|
-
<i class="v-icon notranslate
|
|
29
|
+
<i class="v-icon notranslate mdi mdi-menu-down theme--light"
|
|
30
30
|
aria-hidden="true"
|
|
31
31
|
>
|
|
32
32
|
</i>
|
|
@@ -53,19 +53,19 @@ exports[`VOverflowBtn.js should show label with persistentPlaceholder property s
|
|
|
53
53
|
<div role="combobox"
|
|
54
54
|
aria-haspopup="listbox"
|
|
55
55
|
aria-expanded="true"
|
|
56
|
-
aria-owns="list-
|
|
56
|
+
aria-owns="list-15"
|
|
57
57
|
class="v-input__slot"
|
|
58
58
|
>
|
|
59
59
|
<div class="v-select__slot">
|
|
60
60
|
<label class="v-label theme--light"
|
|
61
|
-
for="input-
|
|
61
|
+
for="input-15"
|
|
62
62
|
aria-hidden="false"
|
|
63
63
|
style="left: 0px; position: absolute;"
|
|
64
64
|
>
|
|
65
65
|
Some label
|
|
66
66
|
</label>
|
|
67
67
|
<div class="v-select__selections">
|
|
68
|
-
<input id="input-
|
|
68
|
+
<input id="input-15"
|
|
69
69
|
readonly
|
|
70
70
|
type="text"
|
|
71
71
|
value
|
|
@@ -73,7 +73,7 @@ exports[`VOverflowBtn.js should show label with persistentPlaceholder property s
|
|
|
73
73
|
</div>
|
|
74
74
|
<div class="v-input__append-inner">
|
|
75
75
|
<div class="v-input__icon v-input__icon--append">
|
|
76
|
-
<i class="v-icon notranslate
|
|
76
|
+
<i class="v-icon notranslate mdi mdi-menu-down theme--light"
|
|
77
77
|
aria-hidden="true"
|
|
78
78
|
>
|
|
79
79
|
</i>
|
|
@@ -116,7 +116,7 @@ exports[`VOverflowBtn.js should use default autocomplete selections 1`] = `
|
|
|
116
116
|
</div>
|
|
117
117
|
<div class="v-input__append-inner">
|
|
118
118
|
<div class="v-input__icon v-input__icon--append">
|
|
119
|
-
<i class="v-icon notranslate
|
|
119
|
+
<i class="v-icon notranslate mdi mdi-menu-down theme--light"
|
|
120
120
|
aria-hidden="true"
|
|
121
121
|
>
|
|
122
122
|
</i>
|
|
@@ -165,7 +165,7 @@ exports[`VOverflowBtn.js should use default autocomplete selections 2`] = `
|
|
|
165
165
|
</div>
|
|
166
166
|
<div class="v-input__append-inner">
|
|
167
167
|
<div class="v-input__icon v-input__icon--append">
|
|
168
|
-
<i class="v-icon notranslate
|
|
168
|
+
<i class="v-icon notranslate mdi mdi-menu-down theme--light"
|
|
169
169
|
aria-hidden="true"
|
|
170
170
|
>
|
|
171
171
|
</i>
|
|
@@ -10,7 +10,7 @@ exports[`VPagination.ts emits an event when next or previous is clicked 1`] = `
|
|
|
10
10
|
type="button"
|
|
11
11
|
aria-label="Previous page"
|
|
12
12
|
>
|
|
13
|
-
<i class="v-icon notranslate
|
|
13
|
+
<i class="v-icon notranslate mdi mdi-chevron-left theme--light"
|
|
14
14
|
aria-hidden="true"
|
|
15
15
|
>
|
|
16
16
|
</i>
|
|
@@ -66,7 +66,7 @@ exports[`VPagination.ts emits an event when next or previous is clicked 1`] = `
|
|
|
66
66
|
type="button"
|
|
67
67
|
aria-label="Next page"
|
|
68
68
|
>
|
|
69
|
-
<i class="v-icon notranslate
|
|
69
|
+
<i class="v-icon notranslate mdi mdi-chevron-right theme--light"
|
|
70
70
|
aria-hidden="true"
|
|
71
71
|
>
|
|
72
72
|
</i>
|
|
@@ -86,7 +86,7 @@ exports[`VPagination.ts should only render end of range if value is equals "righ
|
|
|
86
86
|
type="button"
|
|
87
87
|
aria-label="Previous page"
|
|
88
88
|
>
|
|
89
|
-
<i class="v-icon notranslate
|
|
89
|
+
<i class="v-icon notranslate mdi mdi-chevron-left theme--light"
|
|
90
90
|
aria-hidden="true"
|
|
91
91
|
>
|
|
92
92
|
</i>
|
|
@@ -138,7 +138,7 @@ exports[`VPagination.ts should only render end of range if value is equals "righ
|
|
|
138
138
|
type="button"
|
|
139
139
|
aria-label="Next page"
|
|
140
140
|
>
|
|
141
|
-
<i class="v-icon notranslate
|
|
141
|
+
<i class="v-icon notranslate mdi mdi-chevron-right theme--light"
|
|
142
142
|
aria-hidden="true"
|
|
143
143
|
>
|
|
144
144
|
</i>
|
|
@@ -158,7 +158,7 @@ exports[`VPagination.ts should only render middle of range if length is big and
|
|
|
158
158
|
type="button"
|
|
159
159
|
aria-label="Previous page"
|
|
160
160
|
>
|
|
161
|
-
<i class="v-icon notranslate
|
|
161
|
+
<i class="v-icon notranslate mdi mdi-chevron-left theme--light"
|
|
162
162
|
aria-hidden="true"
|
|
163
163
|
>
|
|
164
164
|
</i>
|
|
@@ -206,7 +206,7 @@ exports[`VPagination.ts should only render middle of range if length is big and
|
|
|
206
206
|
type="button"
|
|
207
207
|
aria-label="Next page"
|
|
208
208
|
>
|
|
209
|
-
<i class="v-icon notranslate
|
|
209
|
+
<i class="v-icon notranslate mdi mdi-chevron-right theme--light"
|
|
210
210
|
aria-hidden="true"
|
|
211
211
|
>
|
|
212
212
|
</i>
|
|
@@ -227,7 +227,7 @@ exports[`VPagination.ts should only render start and end of range if length is b
|
|
|
227
227
|
type="button"
|
|
228
228
|
aria-label="Previous page"
|
|
229
229
|
>
|
|
230
|
-
<i class="v-icon notranslate
|
|
230
|
+
<i class="v-icon notranslate mdi mdi-chevron-left theme--light"
|
|
231
231
|
aria-hidden="true"
|
|
232
232
|
>
|
|
233
233
|
</i>
|
|
@@ -279,7 +279,7 @@ exports[`VPagination.ts should only render start and end of range if length is b
|
|
|
279
279
|
type="button"
|
|
280
280
|
aria-label="Next page"
|
|
281
281
|
>
|
|
282
|
-
<i class="v-icon notranslate
|
|
282
|
+
<i class="v-icon notranslate mdi mdi-chevron-right theme--light"
|
|
283
283
|
aria-hidden="true"
|
|
284
284
|
>
|
|
285
285
|
</i>
|
|
@@ -299,7 +299,7 @@ exports[`VPagination.ts should only render start of range if value is equals "le
|
|
|
299
299
|
type="button"
|
|
300
300
|
aria-label="Previous page"
|
|
301
301
|
>
|
|
302
|
-
<i class="v-icon notranslate
|
|
302
|
+
<i class="v-icon notranslate mdi mdi-chevron-left theme--light"
|
|
303
303
|
aria-hidden="true"
|
|
304
304
|
>
|
|
305
305
|
</i>
|
|
@@ -351,7 +351,7 @@ exports[`VPagination.ts should only render start of range if value is equals "le
|
|
|
351
351
|
type="button"
|
|
352
352
|
aria-label="Next page"
|
|
353
353
|
>
|
|
354
|
-
<i class="v-icon notranslate
|
|
354
|
+
<i class="v-icon notranslate mdi mdi-chevron-right theme--light"
|
|
355
355
|
aria-hidden="true"
|
|
356
356
|
>
|
|
357
357
|
</i>
|
|
@@ -371,7 +371,7 @@ exports[`VPagination.ts should render component in RTL mode and match snapshot 1
|
|
|
371
371
|
type="button"
|
|
372
372
|
aria-label="Previous page"
|
|
373
373
|
>
|
|
374
|
-
<i class="v-icon notranslate
|
|
374
|
+
<i class="v-icon notranslate mdi mdi-chevron-right theme--light"
|
|
375
375
|
aria-hidden="true"
|
|
376
376
|
>
|
|
377
377
|
</i>
|
|
@@ -427,7 +427,7 @@ exports[`VPagination.ts should render component in RTL mode and match snapshot 1
|
|
|
427
427
|
type="button"
|
|
428
428
|
aria-label="Next page"
|
|
429
429
|
>
|
|
430
|
-
<i class="v-icon notranslate
|
|
430
|
+
<i class="v-icon notranslate mdi mdi-chevron-left theme--light"
|
|
431
431
|
aria-hidden="true"
|
|
432
432
|
>
|
|
433
433
|
</i>
|
|
@@ -448,7 +448,7 @@ exports[`VPagination.ts should render disabled buttons with length equals to 0 1
|
|
|
448
448
|
type="button"
|
|
449
449
|
aria-label="Previous page"
|
|
450
450
|
>
|
|
451
|
-
<i class="v-icon notranslate
|
|
451
|
+
<i class="v-icon notranslate mdi mdi-chevron-left theme--light"
|
|
452
452
|
aria-hidden="true"
|
|
453
453
|
>
|
|
454
454
|
</i>
|
|
@@ -460,7 +460,7 @@ exports[`VPagination.ts should render disabled buttons with length equals to 0 1
|
|
|
460
460
|
type="button"
|
|
461
461
|
aria-label="Next page"
|
|
462
462
|
>
|
|
463
|
-
<i class="v-icon notranslate
|
|
463
|
+
<i class="v-icon notranslate mdi mdi-chevron-right theme--light"
|
|
464
464
|
aria-hidden="true"
|
|
465
465
|
>
|
|
466
466
|
</i>
|
|
@@ -480,7 +480,7 @@ exports[`VPagination.ts should use totalVisible prop if defined 1`] = `
|
|
|
480
480
|
type="button"
|
|
481
481
|
aria-label="Previous page"
|
|
482
482
|
>
|
|
483
|
-
<i class="v-icon notranslate
|
|
483
|
+
<i class="v-icon notranslate mdi mdi-chevron-left theme--light"
|
|
484
484
|
aria-hidden="true"
|
|
485
485
|
>
|
|
486
486
|
</i>
|
|
@@ -573,7 +573,7 @@ exports[`VPagination.ts should use totalVisible prop if defined 1`] = `
|
|
|
573
573
|
type="button"
|
|
574
574
|
aria-label="Next page"
|
|
575
575
|
>
|
|
576
|
-
<i class="v-icon notranslate
|
|
576
|
+
<i class="v-icon notranslate mdi mdi-chevron-right theme--light"
|
|
577
577
|
aria-hidden="true"
|
|
578
578
|
>
|
|
579
579
|
</i>
|
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
exports[`VRadio.ts should be render colored radio 1`] = `
|
|
4
4
|
<div class="v-radio theme--light">
|
|
5
5
|
<div class="v-input--selection-controls__input">
|
|
6
|
-
<i class="v-icon notranslate
|
|
6
|
+
<i class="v-icon notranslate mdi mdi-radiobox-blank theme--light"
|
|
7
7
|
aria-hidden="true"
|
|
8
8
|
>
|
|
9
9
|
</i>
|
|
10
10
|
<input aria-checked="false"
|
|
11
|
-
id="input-
|
|
11
|
+
id="input-22"
|
|
12
12
|
role="radio"
|
|
13
13
|
type="radio"
|
|
14
14
|
>
|
|
@@ -21,12 +21,12 @@ exports[`VRadio.ts should be render colored radio 1`] = `
|
|
|
21
21
|
exports[`VRadio.ts should not render aria-label attribute with no label value on input group 1`] = `
|
|
22
22
|
<div class="v-radio theme--light">
|
|
23
23
|
<div class="v-input--selection-controls__input">
|
|
24
|
-
<i class="v-icon notranslate
|
|
24
|
+
<i class="v-icon notranslate mdi mdi-radiobox-blank theme--light"
|
|
25
25
|
aria-hidden="true"
|
|
26
26
|
>
|
|
27
27
|
</i>
|
|
28
28
|
<input aria-checked="false"
|
|
29
|
-
id="input-
|
|
29
|
+
id="input-4"
|
|
30
30
|
role="radio"
|
|
31
31
|
type="radio"
|
|
32
32
|
name="name"
|
|
@@ -40,12 +40,12 @@ exports[`VRadio.ts should not render aria-label attribute with no label value on
|
|
|
40
40
|
exports[`VRadio.ts should render proper input name 1`] = `
|
|
41
41
|
<div class="v-radio theme--light">
|
|
42
42
|
<div class="v-input--selection-controls__input">
|
|
43
|
-
<i class="v-icon notranslate
|
|
43
|
+
<i class="v-icon notranslate mdi mdi-radiobox-blank theme--light"
|
|
44
44
|
aria-hidden="true"
|
|
45
45
|
>
|
|
46
46
|
</i>
|
|
47
47
|
<input aria-checked="false"
|
|
48
|
-
id="input-
|
|
48
|
+
id="input-7"
|
|
49
49
|
role="radio"
|
|
50
50
|
type="radio"
|
|
51
51
|
name="name"
|
|
@@ -59,7 +59,7 @@ exports[`VRadio.ts should render proper input name 1`] = `
|
|
|
59
59
|
exports[`VRadio.ts should render role and aria-checked attributes on input group 1`] = `
|
|
60
60
|
<div class="v-radio theme--light">
|
|
61
61
|
<div class="v-input--selection-controls__input">
|
|
62
|
-
<i class="v-icon notranslate
|
|
62
|
+
<i class="v-icon notranslate mdi mdi-radiobox-blank theme--light"
|
|
63
63
|
aria-hidden="true"
|
|
64
64
|
>
|
|
65
65
|
</i>
|
|
@@ -80,12 +80,13 @@ exports[`VRadio.ts should render role and aria-checked attributes on input group
|
|
|
80
80
|
exports[`VRadio.ts should use custom icons 1`] = `
|
|
81
81
|
<div class="v-radio theme--light">
|
|
82
82
|
<div class="v-input--selection-controls__input">
|
|
83
|
-
<i class="v-icon notranslate theme--light
|
|
83
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
84
84
|
aria-hidden="true"
|
|
85
85
|
>
|
|
86
|
+
bar
|
|
86
87
|
</i>
|
|
87
88
|
<input aria-checked="false"
|
|
88
|
-
id="input-
|
|
89
|
+
id="input-13"
|
|
89
90
|
role="radio"
|
|
90
91
|
type="radio"
|
|
91
92
|
modelvalue="test"
|
|
@@ -100,12 +101,13 @@ exports[`VRadio.ts should use custom icons 1`] = `
|
|
|
100
101
|
exports[`VRadio.ts should use custom icons 2`] = `
|
|
101
102
|
<div class="v-radio theme--light">
|
|
102
103
|
<div class="v-input--selection-controls__input">
|
|
103
|
-
<i class="v-icon notranslate theme--light
|
|
104
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
104
105
|
aria-hidden="true"
|
|
105
106
|
>
|
|
107
|
+
bar
|
|
106
108
|
</i>
|
|
107
109
|
<input aria-checked="false"
|
|
108
|
-
id="input-
|
|
110
|
+
id="input-13"
|
|
109
111
|
role="radio"
|
|
110
112
|
type="radio"
|
|
111
113
|
modelvalue="test"
|
|
@@ -12,7 +12,7 @@ exports[`VRadioGroup.ts should match dense snapshot 1`] = `
|
|
|
12
12
|
>
|
|
13
13
|
<div class="v-radio theme--light">
|
|
14
14
|
<div class="v-input--selection-controls__input">
|
|
15
|
-
<i class="v-icon--dense v-icon notranslate
|
|
15
|
+
<i class="v-icon--dense v-icon notranslate mdi mdi-radiobox-blank theme--light"
|
|
16
16
|
aria-hidden="true"
|
|
17
17
|
>
|
|
18
18
|
</i>
|
|
@@ -220,7 +220,7 @@ exports[`VSelect.ts should render v-select correctly when not using scope slot 1
|
|
|
220
220
|
<div role="button"
|
|
221
221
|
aria-haspopup="listbox"
|
|
222
222
|
aria-expanded="false"
|
|
223
|
-
aria-owns="list-
|
|
223
|
+
aria-owns="list-37"
|
|
224
224
|
class="v-input__slot"
|
|
225
225
|
>
|
|
226
226
|
<div class="v-select__slot">
|
|
@@ -230,7 +230,7 @@ exports[`VSelect.ts should render v-select correctly when not using scope slot 1
|
|
|
230
230
|
</div>
|
|
231
231
|
<input aria-readonly="false"
|
|
232
232
|
autocomplete="off"
|
|
233
|
-
id="input-
|
|
233
|
+
id="input-37"
|
|
234
234
|
readonly
|
|
235
235
|
type="text"
|
|
236
236
|
>
|
|
@@ -240,6 +240,10 @@ exports[`VSelect.ts should render v-select correctly when not using scope slot 1
|
|
|
240
240
|
<span class="v-icon notranslate theme--light"
|
|
241
241
|
aria-hidden="true"
|
|
242
242
|
>
|
|
243
|
+
<mdi class="v-icon__component theme--light"
|
|
244
|
+
icon="$dropdown"
|
|
245
|
+
>
|
|
246
|
+
</mdi>
|
|
243
247
|
</span>
|
|
244
248
|
</div>
|
|
245
249
|
</div>
|
|
@@ -266,7 +270,7 @@ exports[`VSelect.ts should render v-select correctly when not using v-list-item
|
|
|
266
270
|
<div role="button"
|
|
267
271
|
aria-haspopup="listbox"
|
|
268
272
|
aria-expanded="false"
|
|
269
|
-
aria-owns="list-
|
|
273
|
+
aria-owns="list-30"
|
|
270
274
|
class="v-input__slot"
|
|
271
275
|
>
|
|
272
276
|
<div class="v-select__slot">
|
|
@@ -276,7 +280,7 @@ exports[`VSelect.ts should render v-select correctly when not using v-list-item
|
|
|
276
280
|
</div>
|
|
277
281
|
<input aria-readonly="false"
|
|
278
282
|
autocomplete="off"
|
|
279
|
-
id="input-
|
|
283
|
+
id="input-30"
|
|
280
284
|
readonly
|
|
281
285
|
type="text"
|
|
282
286
|
>
|
|
@@ -286,6 +290,10 @@ exports[`VSelect.ts should render v-select correctly when not using v-list-item
|
|
|
286
290
|
<span class="v-icon notranslate theme--light"
|
|
287
291
|
aria-hidden="true"
|
|
288
292
|
>
|
|
293
|
+
<mdi class="v-icon__component theme--light"
|
|
294
|
+
icon="$dropdown"
|
|
295
|
+
>
|
|
296
|
+
</mdi>
|
|
289
297
|
</span>
|
|
290
298
|
</div>
|
|
291
299
|
</div>
|
|
@@ -312,7 +320,7 @@ exports[`VSelect.ts should render v-select correctly when using v-list-item in i
|
|
|
312
320
|
<div role="button"
|
|
313
321
|
aria-haspopup="listbox"
|
|
314
322
|
aria-expanded="false"
|
|
315
|
-
aria-owns="list-
|
|
323
|
+
aria-owns="list-22"
|
|
316
324
|
class="v-input__slot"
|
|
317
325
|
>
|
|
318
326
|
<div class="v-select__slot">
|
|
@@ -324,7 +332,7 @@ exports[`VSelect.ts should render v-select correctly when using v-list-item in i
|
|
|
324
332
|
</div>
|
|
325
333
|
<input aria-readonly="false"
|
|
326
334
|
autocomplete="off"
|
|
327
|
-
id="input-
|
|
335
|
+
id="input-22"
|
|
328
336
|
readonly
|
|
329
337
|
type="text"
|
|
330
338
|
>
|
|
@@ -334,6 +342,10 @@ exports[`VSelect.ts should render v-select correctly when using v-list-item in i
|
|
|
334
342
|
<span class="v-icon notranslate theme--light"
|
|
335
343
|
aria-hidden="true"
|
|
336
344
|
>
|
|
345
|
+
<mdi class="v-icon__component theme--light"
|
|
346
|
+
icon="$dropdown"
|
|
347
|
+
>
|
|
348
|
+
</mdi>
|
|
337
349
|
</span>
|
|
338
350
|
</div>
|
|
339
351
|
</div>
|
|
@@ -357,7 +369,7 @@ exports[`VSelect.ts should render v-select correctly when using v-list-item in i
|
|
|
357
369
|
exports[`VSelect.ts should use slotted no-data 1`] = `
|
|
358
370
|
<div class="v-sheet theme--light v-list v-select-list theme--light"
|
|
359
371
|
role="listbox"
|
|
360
|
-
id="list-
|
|
372
|
+
id="list-162"
|
|
361
373
|
tabindex="-1"
|
|
362
374
|
>
|
|
363
375
|
<div>
|