@dimailn/vuetify 2.7.2-alpha46 → 2.7.2-alpha48
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 +100 -97
- 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/VItemGroup/VItemGroup.js +2 -1
- package/es5/components/VItemGroup/VItemGroup.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/VItemGroup/VItemGroup.js +2 -1
- package/lib/components/VItemGroup/VItemGroup.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/VItemGroup/VItemGroup.ts +5 -2
- package/src/components/VItemGroup/__tests__/VItemGroup.spec.ts +2 -0
- package/src/components/VList/__tests__/VListItemGroup.spec.ts +31 -0
- 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
|
@@ -5,12 +5,12 @@ exports[`VCheckbox.ts should apply classes to root element 1`] = `
|
|
|
5
5
|
<div class="v-input__control">
|
|
6
6
|
<div class="v-input__slot">
|
|
7
7
|
<div class="v-input--selection-controls__input">
|
|
8
|
-
<i class="v-icon notranslate
|
|
8
|
+
<i class="v-icon notranslate mdi mdi-checkbox-marked theme--light primary--text"
|
|
9
9
|
aria-hidden="true"
|
|
10
10
|
>
|
|
11
11
|
</i>
|
|
12
12
|
<input aria-checked="true"
|
|
13
|
-
id="input-
|
|
13
|
+
id="input-117"
|
|
14
14
|
role="checkbox"
|
|
15
15
|
type="checkbox"
|
|
16
16
|
checked
|
|
@@ -30,7 +30,7 @@ exports[`VCheckbox.ts should apply classes to root element 1`] = `
|
|
|
30
30
|
exports[`VCheckbox.ts should be disabled 1`] = `
|
|
31
31
|
<input aria-checked="false"
|
|
32
32
|
disabled
|
|
33
|
-
id="input-
|
|
33
|
+
id="input-107"
|
|
34
34
|
role="checkbox"
|
|
35
35
|
type="checkbox"
|
|
36
36
|
>
|
|
@@ -41,12 +41,12 @@ exports[`VCheckbox.ts should be render colored checkbox 1`] = `
|
|
|
41
41
|
<div class="v-input__control">
|
|
42
42
|
<div class="v-input__slot">
|
|
43
43
|
<div class="v-input--selection-controls__input">
|
|
44
|
-
<i class="v-icon notranslate
|
|
44
|
+
<i class="v-icon notranslate mdi mdi-checkbox-blank-outline theme--light"
|
|
45
45
|
aria-hidden="true"
|
|
46
46
|
>
|
|
47
47
|
</i>
|
|
48
48
|
<input aria-checked="false"
|
|
49
|
-
id="input-
|
|
49
|
+
id="input-112"
|
|
50
50
|
role="checkbox"
|
|
51
51
|
type="checkbox"
|
|
52
52
|
>
|
|
@@ -67,12 +67,12 @@ exports[`VCheckbox.ts should render themed component 1`] = `
|
|
|
67
67
|
<div class="v-input__control">
|
|
68
68
|
<div class="v-input__slot">
|
|
69
69
|
<div class="v-input--selection-controls__input">
|
|
70
|
-
<i class="v-icon notranslate
|
|
70
|
+
<i class="v-icon notranslate mdi mdi-checkbox-blank-outline theme--light"
|
|
71
71
|
aria-hidden="true"
|
|
72
72
|
>
|
|
73
73
|
</i>
|
|
74
74
|
<input aria-checked="false"
|
|
75
|
-
id="input-
|
|
75
|
+
id="input-102"
|
|
76
76
|
role="checkbox"
|
|
77
77
|
type="checkbox"
|
|
78
78
|
>
|
|
@@ -93,12 +93,13 @@ exports[`VCheckbox.ts should use custom icons 1`] = `
|
|
|
93
93
|
<div class="v-input__control">
|
|
94
94
|
<div class="v-input__slot">
|
|
95
95
|
<div class="v-input--selection-controls__input">
|
|
96
|
-
<i class="v-icon notranslate theme--light
|
|
96
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
97
97
|
aria-hidden="true"
|
|
98
98
|
>
|
|
99
|
+
fizzbuzz
|
|
99
100
|
</i>
|
|
100
101
|
<input aria-checked="mixed"
|
|
101
|
-
id="input-
|
|
102
|
+
id="input-97"
|
|
102
103
|
role="checkbox"
|
|
103
104
|
type="checkbox"
|
|
104
105
|
value="fizz"
|
|
@@ -120,12 +121,13 @@ exports[`VCheckbox.ts should use custom icons 2`] = `
|
|
|
120
121
|
<div class="v-input__control">
|
|
121
122
|
<div class="v-input__slot">
|
|
122
123
|
<div class="v-input--selection-controls__input">
|
|
123
|
-
<i class="v-icon notranslate theme--light
|
|
124
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
124
125
|
aria-hidden="true"
|
|
125
126
|
>
|
|
127
|
+
fizzbuzz
|
|
126
128
|
</i>
|
|
127
129
|
<input aria-checked="mixed"
|
|
128
|
-
id="input-
|
|
130
|
+
id="input-97"
|
|
129
131
|
role="checkbox"
|
|
130
132
|
type="checkbox"
|
|
131
133
|
value="fizz"
|
|
@@ -147,12 +149,13 @@ exports[`VCheckbox.ts should use custom icons 3`] = `
|
|
|
147
149
|
<div class="v-input__control">
|
|
148
150
|
<div class="v-input__slot">
|
|
149
151
|
<div class="v-input--selection-controls__input">
|
|
150
|
-
<i class="v-icon notranslate theme--light
|
|
152
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
151
153
|
aria-hidden="true"
|
|
152
154
|
>
|
|
155
|
+
fizzbuzz
|
|
153
156
|
</i>
|
|
154
157
|
<input aria-checked="mixed"
|
|
155
|
-
id="input-
|
|
158
|
+
id="input-97"
|
|
156
159
|
role="checkbox"
|
|
157
160
|
type="checkbox"
|
|
158
161
|
value="fizz"
|
|
@@ -9,6 +9,11 @@ exports[`VChip.ts should be removable 1`] = `
|
|
|
9
9
|
style="font-size: 18px; height: 18px; width: 18px;"
|
|
10
10
|
aria-label="$vuetify.close"
|
|
11
11
|
>
|
|
12
|
+
<mdi class="v-icon__component theme--light"
|
|
13
|
+
style="font-size: 18px; height: 18px; width: 18px;"
|
|
14
|
+
icon="$delete"
|
|
15
|
+
>
|
|
16
|
+
</mdi>
|
|
12
17
|
</button>
|
|
13
18
|
</span>
|
|
14
19
|
</span>
|
|
@@ -27,7 +27,7 @@ exports[`VColorPicker.ts should change canvas height 1`] = `
|
|
|
27
27
|
<div class="v-input__control">
|
|
28
28
|
<div class="v-input__slot">
|
|
29
29
|
<div class="v-slider v-slider--horizontal theme--light">
|
|
30
|
-
<input id="input-
|
|
30
|
+
<input id="input-15"
|
|
31
31
|
disabled
|
|
32
32
|
readonly
|
|
33
33
|
tabindex="-1"
|
|
@@ -65,7 +65,7 @@ exports[`VColorPicker.ts should change canvas height 1`] = `
|
|
|
65
65
|
<div class="v-input__control">
|
|
66
66
|
<div class="v-input__slot">
|
|
67
67
|
<div class="v-slider v-slider--horizontal theme--light">
|
|
68
|
-
<input id="input-
|
|
68
|
+
<input id="input-16"
|
|
69
69
|
disabled
|
|
70
70
|
readonly
|
|
71
71
|
tabindex="-1"
|
|
@@ -150,9 +150,10 @@ exports[`VColorPicker.ts should change canvas height 1`] = `
|
|
|
150
150
|
type="button"
|
|
151
151
|
>
|
|
152
152
|
<span class="v-btn__content">
|
|
153
|
-
<i class="v-icon notranslate theme--light
|
|
153
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
154
154
|
aria-hidden="true"
|
|
155
155
|
>
|
|
156
|
+
$unfold
|
|
156
157
|
</i>
|
|
157
158
|
</span>
|
|
158
159
|
</button>
|
|
@@ -176,7 +177,7 @@ exports[`VColorPicker.ts should hide canvas 1`] = `
|
|
|
176
177
|
<div class="v-input__control">
|
|
177
178
|
<div class="v-input__slot">
|
|
178
179
|
<div class="v-slider v-slider--horizontal theme--light">
|
|
179
|
-
<input id="input-
|
|
180
|
+
<input id="input-35"
|
|
180
181
|
disabled
|
|
181
182
|
readonly
|
|
182
183
|
tabindex="-1"
|
|
@@ -214,7 +215,7 @@ exports[`VColorPicker.ts should hide canvas 1`] = `
|
|
|
214
215
|
<div class="v-input__control">
|
|
215
216
|
<div class="v-input__slot">
|
|
216
217
|
<div class="v-slider v-slider--horizontal theme--light">
|
|
217
|
-
<input id="input-
|
|
218
|
+
<input id="input-36"
|
|
218
219
|
disabled
|
|
219
220
|
readonly
|
|
220
221
|
tabindex="-1"
|
|
@@ -299,9 +300,10 @@ exports[`VColorPicker.ts should hide canvas 1`] = `
|
|
|
299
300
|
type="button"
|
|
300
301
|
>
|
|
301
302
|
<span class="v-btn__content">
|
|
302
|
-
<i class="v-icon notranslate theme--light
|
|
303
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
303
304
|
aria-hidden="true"
|
|
304
305
|
>
|
|
306
|
+
$unfold
|
|
305
307
|
</i>
|
|
306
308
|
</span>
|
|
307
309
|
</button>
|
|
@@ -356,7 +358,7 @@ exports[`VColorPicker.ts should hide inputs 1`] = `
|
|
|
356
358
|
<div class="v-input__control">
|
|
357
359
|
<div class="v-input__slot">
|
|
358
360
|
<div class="v-slider v-slider--horizontal theme--light">
|
|
359
|
-
<input id="input-
|
|
361
|
+
<input id="input-52"
|
|
360
362
|
disabled
|
|
361
363
|
readonly
|
|
362
364
|
tabindex="-1"
|
|
@@ -394,7 +396,7 @@ exports[`VColorPicker.ts should hide inputs 1`] = `
|
|
|
394
396
|
<div class="v-input__control">
|
|
395
397
|
<div class="v-input__slot">
|
|
396
398
|
<div class="v-slider v-slider--horizontal theme--light">
|
|
397
|
-
<input id="input-
|
|
399
|
+
<input id="input-53"
|
|
398
400
|
disabled
|
|
399
401
|
readonly
|
|
400
402
|
tabindex="-1"
|
|
@@ -500,9 +502,10 @@ exports[`VColorPicker.ts should hide sliders 1`] = `
|
|
|
500
502
|
type="button"
|
|
501
503
|
>
|
|
502
504
|
<span class="v-btn__content">
|
|
503
|
-
<i class="v-icon notranslate theme--light
|
|
505
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
504
506
|
aria-hidden="true"
|
|
505
507
|
>
|
|
508
|
+
$unfold
|
|
506
509
|
</i>
|
|
507
510
|
</span>
|
|
508
511
|
</button>
|
|
@@ -538,7 +541,7 @@ exports[`VColorPicker.ts should not show alpha controls if given hex value witho
|
|
|
538
541
|
<div class="v-input__control">
|
|
539
542
|
<div class="v-input__slot">
|
|
540
543
|
<div class="v-slider v-slider--horizontal theme--light">
|
|
541
|
-
<input id="input-
|
|
544
|
+
<input id="input-81"
|
|
542
545
|
disabled
|
|
543
546
|
readonly
|
|
544
547
|
tabindex="-1"
|
|
@@ -612,9 +615,10 @@ exports[`VColorPicker.ts should not show alpha controls if given hex value witho
|
|
|
612
615
|
type="button"
|
|
613
616
|
>
|
|
614
617
|
<span class="v-btn__content">
|
|
615
|
-
<i class="v-icon notranslate theme--light
|
|
618
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
616
619
|
aria-hidden="true"
|
|
617
620
|
>
|
|
621
|
+
$unfold
|
|
618
622
|
</i>
|
|
619
623
|
</span>
|
|
620
624
|
</button>
|
|
@@ -773,9 +777,10 @@ exports[`VColorPicker.ts should render color picker 1`] = `
|
|
|
773
777
|
type="button"
|
|
774
778
|
>
|
|
775
779
|
<span class="v-btn__content">
|
|
776
|
-
<i class="v-icon notranslate theme--light
|
|
780
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
777
781
|
aria-hidden="true"
|
|
778
782
|
>
|
|
783
|
+
$unfold
|
|
779
784
|
</i>
|
|
780
785
|
</span>
|
|
781
786
|
</button>
|
|
@@ -811,7 +816,7 @@ exports[`VColorPicker.ts should render flat picker 1`] = `
|
|
|
811
816
|
<div class="v-input__control">
|
|
812
817
|
<div class="v-input__slot">
|
|
813
818
|
<div class="v-slider v-slider--horizontal theme--light">
|
|
814
|
-
<input id="input-
|
|
819
|
+
<input id="input-100"
|
|
815
820
|
disabled
|
|
816
821
|
readonly
|
|
817
822
|
tabindex="-1"
|
|
@@ -849,7 +854,7 @@ exports[`VColorPicker.ts should render flat picker 1`] = `
|
|
|
849
854
|
<div class="v-input__control">
|
|
850
855
|
<div class="v-input__slot">
|
|
851
856
|
<div class="v-slider v-slider--horizontal theme--light">
|
|
852
|
-
<input id="input-
|
|
857
|
+
<input id="input-101"
|
|
853
858
|
disabled
|
|
854
859
|
readonly
|
|
855
860
|
tabindex="-1"
|
|
@@ -934,9 +939,10 @@ exports[`VColorPicker.ts should render flat picker 1`] = `
|
|
|
934
939
|
type="button"
|
|
935
940
|
>
|
|
936
941
|
<span class="v-btn__content">
|
|
937
|
-
<i class="v-icon notranslate theme--light
|
|
942
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
938
943
|
aria-hidden="true"
|
|
939
944
|
>
|
|
945
|
+
$unfold
|
|
940
946
|
</i>
|
|
941
947
|
</span>
|
|
942
948
|
</button>
|
|
@@ -972,7 +978,7 @@ exports[`VColorPicker.ts should render picker with elevation 1`] = `
|
|
|
972
978
|
<div class="v-input__control">
|
|
973
979
|
<div class="v-input__slot">
|
|
974
980
|
<div class="v-slider v-slider--horizontal theme--light">
|
|
975
|
-
<input id="input-
|
|
981
|
+
<input id="input-110"
|
|
976
982
|
disabled
|
|
977
983
|
readonly
|
|
978
984
|
tabindex="-1"
|
|
@@ -1010,7 +1016,7 @@ exports[`VColorPicker.ts should render picker with elevation 1`] = `
|
|
|
1010
1016
|
<div class="v-input__control">
|
|
1011
1017
|
<div class="v-input__slot">
|
|
1012
1018
|
<div class="v-slider v-slider--horizontal theme--light">
|
|
1013
|
-
<input id="input-
|
|
1019
|
+
<input id="input-111"
|
|
1014
1020
|
disabled
|
|
1015
1021
|
readonly
|
|
1016
1022
|
tabindex="-1"
|
|
@@ -1095,9 +1101,10 @@ exports[`VColorPicker.ts should render picker with elevation 1`] = `
|
|
|
1095
1101
|
type="button"
|
|
1096
1102
|
>
|
|
1097
1103
|
<span class="v-btn__content">
|
|
1098
|
-
<i class="v-icon notranslate theme--light
|
|
1104
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
1099
1105
|
aria-hidden="true"
|
|
1100
1106
|
>
|
|
1107
|
+
$unfold
|
|
1101
1108
|
</i>
|
|
1102
1109
|
</span>
|
|
1103
1110
|
</button>
|
|
@@ -1133,7 +1140,7 @@ exports[`VColorPicker.ts should show swatches 1`] = `
|
|
|
1133
1140
|
<div class="v-input__control">
|
|
1134
1141
|
<div class="v-input__slot">
|
|
1135
1142
|
<div class="v-slider v-slider--horizontal theme--light">
|
|
1136
|
-
<input id="input-
|
|
1143
|
+
<input id="input-25"
|
|
1137
1144
|
disabled
|
|
1138
1145
|
readonly
|
|
1139
1146
|
tabindex="-1"
|
|
@@ -1171,7 +1178,7 @@ exports[`VColorPicker.ts should show swatches 1`] = `
|
|
|
1171
1178
|
<div class="v-input__control">
|
|
1172
1179
|
<div class="v-input__slot">
|
|
1173
1180
|
<div class="v-slider v-slider--horizontal theme--light">
|
|
1174
|
-
<input id="input-
|
|
1181
|
+
<input id="input-26"
|
|
1175
1182
|
disabled
|
|
1176
1183
|
readonly
|
|
1177
1184
|
tabindex="-1"
|
|
@@ -1256,9 +1263,10 @@ exports[`VColorPicker.ts should show swatches 1`] = `
|
|
|
1256
1263
|
type="button"
|
|
1257
1264
|
>
|
|
1258
1265
|
<span class="v-btn__content">
|
|
1259
|
-
<i class="v-icon notranslate theme--light
|
|
1266
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
1260
1267
|
aria-hidden="true"
|
|
1261
1268
|
>
|
|
1269
|
+
$unfold
|
|
1262
1270
|
</i>
|
|
1263
1271
|
</span>
|
|
1264
1272
|
</button>
|
|
@@ -2112,7 +2120,7 @@ exports[`VColorPicker.ts should work correctly when initial value is null 1`] =
|
|
|
2112
2120
|
<div class="v-input__control">
|
|
2113
2121
|
<div class="v-input__slot">
|
|
2114
2122
|
<div class="v-slider v-slider--horizontal theme--light">
|
|
2115
|
-
<input id="input-
|
|
2123
|
+
<input id="input-90"
|
|
2116
2124
|
disabled
|
|
2117
2125
|
readonly
|
|
2118
2126
|
tabindex="-1"
|
|
@@ -2150,7 +2158,7 @@ exports[`VColorPicker.ts should work correctly when initial value is null 1`] =
|
|
|
2150
2158
|
<div class="v-input__control">
|
|
2151
2159
|
<div class="v-input__slot">
|
|
2152
2160
|
<div class="v-slider v-slider--horizontal theme--light">
|
|
2153
|
-
<input id="input-
|
|
2161
|
+
<input id="input-91"
|
|
2154
2162
|
disabled
|
|
2155
2163
|
readonly
|
|
2156
2164
|
tabindex="-1"
|
|
@@ -2235,9 +2243,10 @@ exports[`VColorPicker.ts should work correctly when initial value is null 1`] =
|
|
|
2235
2243
|
type="button"
|
|
2236
2244
|
>
|
|
2237
2245
|
<span class="v-btn__content">
|
|
2238
|
-
<i class="v-icon notranslate theme--light
|
|
2246
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
2239
2247
|
aria-hidden="true"
|
|
2240
2248
|
>
|
|
2249
|
+
$unfold
|
|
2241
2250
|
</i>
|
|
2242
2251
|
</span>
|
|
2243
2252
|
</button>
|
|
@@ -50,9 +50,10 @@ exports[`VColorPickerEdit.ts should change mode 1`] = `
|
|
|
50
50
|
type="button"
|
|
51
51
|
>
|
|
52
52
|
<span class="v-btn__content">
|
|
53
|
-
<i class="v-icon notranslate theme--light
|
|
53
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
54
54
|
aria-hidden="true"
|
|
55
55
|
>
|
|
56
|
+
$unfold
|
|
56
57
|
</i>
|
|
57
58
|
</span>
|
|
58
59
|
</button>
|
|
@@ -109,9 +110,10 @@ exports[`VColorPickerEdit.ts should change mode 2`] = `
|
|
|
109
110
|
type="button"
|
|
110
111
|
>
|
|
111
112
|
<span class="v-btn__content">
|
|
112
|
-
<i class="v-icon notranslate theme--light
|
|
113
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
113
114
|
aria-hidden="true"
|
|
114
115
|
>
|
|
116
|
+
$unfold
|
|
115
117
|
</i>
|
|
116
118
|
</span>
|
|
117
119
|
</button>
|
|
@@ -132,9 +134,10 @@ exports[`VColorPickerEdit.ts should change mode 3`] = `
|
|
|
132
134
|
type="button"
|
|
133
135
|
>
|
|
134
136
|
<span class="v-btn__content">
|
|
135
|
-
<i class="v-icon notranslate theme--light
|
|
137
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
136
138
|
aria-hidden="true"
|
|
137
139
|
>
|
|
140
|
+
$unfold
|
|
138
141
|
</i>
|
|
139
142
|
</span>
|
|
140
143
|
</button>
|
|
@@ -191,9 +194,10 @@ exports[`VColorPickerEdit.ts should change mode 4`] = `
|
|
|
191
194
|
type="button"
|
|
192
195
|
>
|
|
193
196
|
<span class="v-btn__content">
|
|
194
|
-
<i class="v-icon notranslate theme--light
|
|
197
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
195
198
|
aria-hidden="true"
|
|
196
199
|
>
|
|
200
|
+
$unfold
|
|
197
201
|
</i>
|
|
198
202
|
</span>
|
|
199
203
|
</button>
|
|
@@ -304,9 +308,10 @@ exports[`VColorPickerEdit.ts should render with disabled 1`] = `
|
|
|
304
308
|
disabled
|
|
305
309
|
>
|
|
306
310
|
<span class="v-btn__content">
|
|
307
|
-
<i class="v-icon notranslate theme--light
|
|
311
|
+
<i class="v-icon notranslate material-icons theme--light"
|
|
308
312
|
aria-hidden="true"
|
|
309
313
|
>
|
|
314
|
+
$unfold
|
|
310
315
|
</i>
|
|
311
316
|
</span>
|
|
312
317
|
</button>
|