vuetify 2.2.11 → 2.2.15
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/json/attributes.json +12 -4
- package/dist/json/tags.json +2 -0
- package/dist/json/web-types.json +36 -13
- package/dist/vuetify.css +19 -8
- package/dist/vuetify.css.map +1 -1
- package/dist/vuetify.js +123 -78
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +2 -2
- package/es5/components/VAutocomplete/VAutocomplete.js +4 -4
- package/es5/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/es5/components/VChip/VChip.js +2 -1
- package/es5/components/VChip/VChip.js.map +1 -1
- package/es5/components/VData/VData.js +6 -1
- package/es5/components/VData/VData.js.map +1 -1
- package/es5/components/VDataIterator/VDataIterator.js +16 -3
- package/es5/components/VDataIterator/VDataIterator.js.map +1 -1
- package/es5/components/VDataTable/VDataTable.js +3 -13
- package/es5/components/VDataTable/VDataTable.js.map +1 -1
- package/es5/components/VDialog/VDialog.js +33 -27
- package/es5/components/VDialog/VDialog.js.map +1 -1
- package/es5/components/VIcon/VIcon.js +2 -2
- package/es5/components/VIcon/VIcon.js.map +1 -1
- package/es5/components/VList/VList.js +1 -1
- package/es5/components/VList/VList.js.map +1 -1
- package/es5/components/VMenu/VMenu.js +13 -11
- package/es5/components/VMenu/VMenu.js.map +1 -1
- package/es5/components/VRangeSlider/VRangeSlider.js +1 -0
- package/es5/components/VRangeSlider/VRangeSlider.js.map +1 -1
- package/es5/components/VSelect/VSelect.js +4 -3
- package/es5/components/VSelect/VSelect.js.map +1 -1
- package/es5/components/VTimePicker/VTimePicker.js +2 -1
- package/es5/components/VTimePicker/VTimePicker.js.map +1 -1
- package/es5/components/VTimePicker/VTimePickerTitle.js +6 -2
- package/es5/components/VTimePicker/VTimePickerTitle.js.map +1 -1
- package/es5/components/VTooltip/VTooltip.js +6 -4
- package/es5/components/VTooltip/VTooltip.js.map +1 -1
- package/es5/framework.js +1 -1
- package/es5/mixins/menuable/index.js +11 -4
- package/es5/mixins/menuable/index.js.map +1 -1
- package/es5/services/icons/presets/fa4.js +1 -1
- package/es5/services/icons/presets/fa4.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.js +4 -4
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VChip/VChip.js +2 -1
- package/lib/components/VChip/VChip.js.map +1 -1
- package/lib/components/VData/VData.js +7 -1
- package/lib/components/VData/VData.js.map +1 -1
- package/lib/components/VDataIterator/VDataIterator.js +16 -4
- package/lib/components/VDataIterator/VDataIterator.js.map +1 -1
- package/lib/components/VDataTable/VDataTable.js +3 -14
- package/lib/components/VDataTable/VDataTable.js.map +1 -1
- package/lib/components/VDialog/VDialog.js +31 -26
- package/lib/components/VDialog/VDialog.js.map +1 -1
- package/lib/components/VIcon/VIcon.js +2 -2
- package/lib/components/VIcon/VIcon.js.map +1 -1
- package/lib/components/VList/VList.js +1 -1
- package/lib/components/VList/VList.js.map +1 -1
- package/lib/components/VMenu/VMenu.js +9 -9
- package/lib/components/VMenu/VMenu.js.map +1 -1
- package/lib/components/VRangeSlider/VRangeSlider.js +1 -0
- package/lib/components/VRangeSlider/VRangeSlider.js.map +1 -1
- package/lib/components/VSelect/VSelect.js +4 -3
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/components/VTimePicker/VTimePicker.js +2 -1
- package/lib/components/VTimePicker/VTimePicker.js.map +1 -1
- package/lib/components/VTimePicker/VTimePickerTitle.js +6 -2
- package/lib/components/VTimePicker/VTimePickerTitle.js.map +1 -1
- package/lib/components/VTooltip/VTooltip.js +2 -2
- package/lib/components/VTooltip/VTooltip.js.map +1 -1
- package/lib/framework.js +1 -1
- package/lib/mixins/menuable/index.js +7 -2
- package/lib/mixins/menuable/index.js.map +1 -1
- package/lib/services/icons/presets/fa4.js +1 -1
- package/lib/services/icons/presets/fa4.js.map +1 -1
- package/package.json +2 -2
- package/src/components/VAutocomplete/VAutocomplete.ts +4 -4
- package/src/components/VAutocomplete/__tests__/VAutocomplete.spec.ts +11 -0
- package/src/components/VAutocomplete/__tests__/VAutocomplete2.spec.ts +1 -1
- package/src/components/VAutocomplete/__tests__/VAutocomplete3.spec.ts +34 -0
- package/src/components/VChip/VChip.ts +1 -0
- package/src/components/VChip/__tests__/__snapshots__/VChip.spec.ts.snap +1 -0
- package/src/components/VData/VData.ts +6 -1
- package/src/components/VDataIterator/VDataIterator.ts +14 -3
- package/src/components/VDataIterator/__tests__/VDataIterator.spec.ts +26 -0
- package/src/components/VDataIterator/__tests__/__snapshots__/VDataFooter.spec.ts.snap +8 -8
- package/src/components/VDataIterator/__tests__/__snapshots__/VDataIterator.spec.ts.snap +8 -8
- package/src/components/VDataTable/VDataTable.ts +3 -14
- package/src/components/VDataTable/VSimpleTable.sass +12 -6
- package/src/components/VDataTable/__tests__/VDataTable.spec.ts +119 -0
- package/src/components/VDataTable/__tests__/__snapshots__/VDataTable.spec.ts.snap +620 -53
- package/src/components/VDataTable/__tests__/__snapshots__/VDataTableHeader.spec.ts.snap +15 -15
- package/src/components/VDialog/VDialog.ts +29 -25
- package/src/components/VIcon/VIcon.ts +2 -2
- package/src/components/VIcon/__tests__/__snapshots__/VIcon.spec.ts.snap +2 -2
- package/src/components/VList/VList.ts +1 -1
- package/src/components/VMenu/VMenu.ts +11 -13
- package/src/components/VMenu/__tests__/VMenu.spec.ts +17 -0
- package/src/components/VMenu/__tests__/__snapshots__/VMenu.spec.ts.snap +18 -0
- package/src/components/VOverflowBtn/__tests__/__snapshots__/VOverflowBtn.spec.ts.snap +0 -66
- package/src/components/VRangeSlider/VRangeSlider.ts +1 -0
- package/src/components/VRangeSlider/__tests__/VRangeSlider.spec.ts +8 -0
- package/src/components/VRangeSlider/__tests__/__snapshots__/VRangeSlider.spec.ts.snap +4 -4
- package/src/components/VSelect/VSelect.ts +4 -3
- package/src/components/VSelect/__tests__/__snapshots__/VSelect.spec.ts.snap +8 -8
- package/src/components/VSelect/__tests__/__snapshots__/VSelect2.spec.ts.snap +4 -4
- package/src/components/VSelect/__tests__/__snapshots__/VSelect3.spec.ts.snap +2 -2
- package/src/components/VSlideGroup/VSlideGroup.sass +2 -2
- package/src/components/VTimePicker/VTimePicker.ts +2 -1
- package/src/components/VTimePicker/VTimePickerTitle.sass +5 -0
- package/src/components/VTimePicker/VTimePickerTitle.ts +6 -2
- package/src/components/VTimePicker/__tests__/__snapshots__/VTimePicker.spec.ts.snap +94 -14
- package/src/components/VTooltip/VTooltip.ts +2 -2
- package/src/mixins/menuable/index.ts +5 -2
- package/src/services/icons/__tests__/__snapshots__/icons.spec.ts.snap +1 -1
- package/src/services/icons/presets/fa4.ts +1 -1
|
@@ -425,7 +425,7 @@ exports[`VDataTable.ts should default to first option in itemsPerPageOptions if
|
|
|
425
425
|
<div role="button"
|
|
426
426
|
aria-haspopup="listbox"
|
|
427
427
|
aria-expanded="false"
|
|
428
|
-
aria-owns="list-
|
|
428
|
+
aria-owns="list-409"
|
|
429
429
|
class="v-input__slot"
|
|
430
430
|
>
|
|
431
431
|
<div class="v-select__slot">
|
|
@@ -434,7 +434,7 @@ exports[`VDataTable.ts should default to first option in itemsPerPageOptions if
|
|
|
434
434
|
6
|
|
435
435
|
</div>
|
|
436
436
|
<input aria-label="$vuetify.dataTable.itemsPerPageText"
|
|
437
|
-
id="input-
|
|
437
|
+
id="input-409"
|
|
438
438
|
readonly="readonly"
|
|
439
439
|
type="text"
|
|
440
440
|
aria-readonly="false"
|
|
@@ -814,7 +814,7 @@ exports[`VDataTable.ts should handle object when checking if it should default t
|
|
|
814
814
|
<div role="button"
|
|
815
815
|
aria-haspopup="listbox"
|
|
816
816
|
aria-expanded="false"
|
|
817
|
-
aria-owns="list-
|
|
817
|
+
aria-owns="list-427"
|
|
818
818
|
class="v-input__slot"
|
|
819
819
|
>
|
|
820
820
|
<div class="v-select__slot">
|
|
@@ -823,7 +823,7 @@ exports[`VDataTable.ts should handle object when checking if it should default t
|
|
|
823
823
|
All
|
|
824
824
|
</div>
|
|
825
825
|
<input aria-label="$vuetify.dataTable.itemsPerPageText"
|
|
826
|
-
id="input-
|
|
826
|
+
id="input-427"
|
|
827
827
|
readonly="readonly"
|
|
828
828
|
type="text"
|
|
829
829
|
aria-readonly="false"
|
|
@@ -1104,7 +1104,7 @@ exports[`VDataTable.ts should limit page to current page count if not using serv
|
|
|
1104
1104
|
<div role="button"
|
|
1105
1105
|
aria-haspopup="listbox"
|
|
1106
1106
|
aria-expanded="false"
|
|
1107
|
-
aria-owns="list-
|
|
1107
|
+
aria-owns="list-391"
|
|
1108
1108
|
class="v-input__slot"
|
|
1109
1109
|
>
|
|
1110
1110
|
<div class="v-select__slot">
|
|
@@ -1113,7 +1113,7 @@ exports[`VDataTable.ts should limit page to current page count if not using serv
|
|
|
1113
1113
|
5
|
|
1114
1114
|
</div>
|
|
1115
1115
|
<input aria-label="$vuetify.dataTable.itemsPerPageText"
|
|
1116
|
-
id="input-
|
|
1116
|
+
id="input-391"
|
|
1117
1117
|
readonly="readonly"
|
|
1118
1118
|
type="text"
|
|
1119
1119
|
aria-readonly="false"
|
|
@@ -1298,7 +1298,7 @@ exports[`VDataTable.ts should not limit page to current item count when using se
|
|
|
1298
1298
|
<div role="button"
|
|
1299
1299
|
aria-haspopup="listbox"
|
|
1300
1300
|
aria-expanded="false"
|
|
1301
|
-
aria-owns="list-
|
|
1301
|
+
aria-owns="list-335"
|
|
1302
1302
|
class="v-input__slot"
|
|
1303
1303
|
>
|
|
1304
1304
|
<div class="v-select__slot">
|
|
@@ -1307,7 +1307,7 @@ exports[`VDataTable.ts should not limit page to current item count when using se
|
|
|
1307
1307
|
5
|
|
1308
1308
|
</div>
|
|
1309
1309
|
<input aria-label="$vuetify.dataTable.itemsPerPageText"
|
|
1310
|
-
id="input-
|
|
1310
|
+
id="input-335"
|
|
1311
1311
|
readonly="readonly"
|
|
1312
1312
|
type="text"
|
|
1313
1313
|
aria-readonly="false"
|
|
@@ -1587,7 +1587,7 @@ exports[`VDataTable.ts should not limit page to current item count when using se
|
|
|
1587
1587
|
<div role="button"
|
|
1588
1588
|
aria-haspopup="listbox"
|
|
1589
1589
|
aria-expanded="false"
|
|
1590
|
-
aria-owns="list-
|
|
1590
|
+
aria-owns="list-335"
|
|
1591
1591
|
class="v-input__slot"
|
|
1592
1592
|
>
|
|
1593
1593
|
<div class="v-select__slot">
|
|
@@ -1596,7 +1596,7 @@ exports[`VDataTable.ts should not limit page to current item count when using se
|
|
|
1596
1596
|
5
|
|
1597
1597
|
</div>
|
|
1598
1598
|
<input aria-label="$vuetify.dataTable.itemsPerPageText"
|
|
1599
|
-
id="input-
|
|
1599
|
+
id="input-335"
|
|
1600
1600
|
readonly="readonly"
|
|
1601
1601
|
type="text"
|
|
1602
1602
|
aria-readonly="false"
|
|
@@ -1981,7 +1981,7 @@ exports[`VDataTable.ts should not search column with filterable set to false 1`]
|
|
|
1981
1981
|
<div role="button"
|
|
1982
1982
|
aria-haspopup="listbox"
|
|
1983
1983
|
aria-expanded="false"
|
|
1984
|
-
aria-owns="list-
|
|
1984
|
+
aria-owns="list-354"
|
|
1985
1985
|
class="v-input__slot"
|
|
1986
1986
|
>
|
|
1987
1987
|
<div class="v-select__slot">
|
|
@@ -1990,7 +1990,7 @@ exports[`VDataTable.ts should not search column with filterable set to false 1`]
|
|
|
1990
1990
|
10
|
|
1991
1991
|
</div>
|
|
1992
1992
|
<input aria-label="$vuetify.dataTable.itemsPerPageText"
|
|
1993
|
-
id="input-
|
|
1993
|
+
id="input-354"
|
|
1994
1994
|
readonly="readonly"
|
|
1995
1995
|
type="text"
|
|
1996
1996
|
aria-readonly="false"
|
|
@@ -2184,7 +2184,7 @@ exports[`VDataTable.ts should not search column with filterable set to false 2`]
|
|
|
2184
2184
|
<div role="button"
|
|
2185
2185
|
aria-haspopup="listbox"
|
|
2186
2186
|
aria-expanded="false"
|
|
2187
|
-
aria-owns="list-
|
|
2187
|
+
aria-owns="list-354"
|
|
2188
2188
|
class="v-input__slot"
|
|
2189
2189
|
>
|
|
2190
2190
|
<div class="v-select__slot">
|
|
@@ -2193,7 +2193,7 @@ exports[`VDataTable.ts should not search column with filterable set to false 2`]
|
|
|
2193
2193
|
10
|
|
2194
2194
|
</div>
|
|
2195
2195
|
<input aria-label="$vuetify.dataTable.itemsPerPageText"
|
|
2196
|
-
id="input-
|
|
2196
|
+
id="input-354"
|
|
2197
2197
|
readonly="readonly"
|
|
2198
2198
|
type="text"
|
|
2199
2199
|
aria-readonly="false"
|
|
@@ -2440,7 +2440,7 @@ exports[`VDataTable.ts should not search column with filterable set to false and
|
|
|
2440
2440
|
<div role="button"
|
|
2441
2441
|
aria-haspopup="listbox"
|
|
2442
2442
|
aria-expanded="false"
|
|
2443
|
-
aria-owns="list-
|
|
2443
|
+
aria-owns="list-373"
|
|
2444
2444
|
class="v-input__slot"
|
|
2445
2445
|
>
|
|
2446
2446
|
<div class="v-select__slot">
|
|
@@ -2449,7 +2449,7 @@ exports[`VDataTable.ts should not search column with filterable set to false and
|
|
|
2449
2449
|
10
|
|
2450
2450
|
</div>
|
|
2451
2451
|
<input aria-label="$vuetify.dataTable.itemsPerPageText"
|
|
2452
|
-
id="input-
|
|
2452
|
+
id="input-373"
|
|
2453
2453
|
readonly="readonly"
|
|
2454
2454
|
type="text"
|
|
2455
2455
|
aria-readonly="false"
|
|
@@ -2836,7 +2836,7 @@ exports[`VDataTable.ts should not search column with filterable set to false and
|
|
|
2836
2836
|
<div role="button"
|
|
2837
2837
|
aria-haspopup="listbox"
|
|
2838
2838
|
aria-expanded="false"
|
|
2839
|
-
aria-owns="list-
|
|
2839
|
+
aria-owns="list-373"
|
|
2840
2840
|
class="v-input__slot"
|
|
2841
2841
|
>
|
|
2842
2842
|
<div class="v-select__slot">
|
|
@@ -2845,7 +2845,7 @@ exports[`VDataTable.ts should not search column with filterable set to false and
|
|
|
2845
2845
|
10
|
|
2846
2846
|
</div>
|
|
2847
2847
|
<input aria-label="$vuetify.dataTable.itemsPerPageText"
|
|
2848
|
-
id="input-
|
|
2848
|
+
id="input-373"
|
|
2849
2849
|
readonly="readonly"
|
|
2850
2850
|
type="text"
|
|
2851
2851
|
aria-readonly="false"
|
|
@@ -3104,7 +3104,7 @@ exports[`VDataTable.ts should not select item that is not selectable 1`] = `
|
|
|
3104
3104
|
<div role="button"
|
|
3105
3105
|
aria-haspopup="listbox"
|
|
3106
3106
|
aria-expanded="false"
|
|
3107
|
-
aria-owns="list-
|
|
3107
|
+
aria-owns="list-501"
|
|
3108
3108
|
class="v-input__slot"
|
|
3109
3109
|
>
|
|
3110
3110
|
<div class="v-select__slot">
|
|
@@ -3113,7 +3113,7 @@ exports[`VDataTable.ts should not select item that is not selectable 1`] = `
|
|
|
3113
3113
|
10
|
|
3114
3114
|
</div>
|
|
3115
3115
|
<input aria-label="$vuetify.dataTable.itemsPerPageText"
|
|
3116
|
-
id="input-
|
|
3116
|
+
id="input-501"
|
|
3117
3117
|
readonly="readonly"
|
|
3118
3118
|
type="text"
|
|
3119
3119
|
aria-readonly="false"
|
|
@@ -3203,7 +3203,7 @@ exports[`VDataTable.ts should pass kebab-case footer props correctly 1`] = `
|
|
|
3203
3203
|
<div role="button"
|
|
3204
3204
|
aria-haspopup="listbox"
|
|
3205
3205
|
aria-expanded="false"
|
|
3206
|
-
aria-owns="list-
|
|
3206
|
+
aria-owns="list-285"
|
|
3207
3207
|
class="v-input__slot"
|
|
3208
3208
|
>
|
|
3209
3209
|
<div class="v-select__slot">
|
|
@@ -3212,7 +3212,7 @@ exports[`VDataTable.ts should pass kebab-case footer props correctly 1`] = `
|
|
|
3212
3212
|
10
|
|
3213
3213
|
</div>
|
|
3214
3214
|
<input aria-label="Foo:"
|
|
3215
|
-
id="input-
|
|
3215
|
+
id="input-285"
|
|
3216
3216
|
readonly="readonly"
|
|
3217
3217
|
type="text"
|
|
3218
3218
|
aria-readonly="false"
|
|
@@ -3398,7 +3398,7 @@ exports[`VDataTable.ts should render footer.page-text slot content 1`] = `
|
|
|
3398
3398
|
<div role="button"
|
|
3399
3399
|
aria-haspopup="listbox"
|
|
3400
3400
|
aria-expanded="false"
|
|
3401
|
-
aria-owns="list-
|
|
3401
|
+
aria-owns="list-317"
|
|
3402
3402
|
class="v-input__slot"
|
|
3403
3403
|
>
|
|
3404
3404
|
<div class="v-select__slot">
|
|
@@ -3407,7 +3407,7 @@ exports[`VDataTable.ts should render footer.page-text slot content 1`] = `
|
|
|
3407
3407
|
10
|
|
3408
3408
|
</div>
|
|
3409
3409
|
<input aria-label="$vuetify.dataTable.itemsPerPageText"
|
|
3410
|
-
id="input-
|
|
3410
|
+
id="input-317"
|
|
3411
3411
|
readonly="readonly"
|
|
3412
3412
|
type="text"
|
|
3413
3413
|
aria-readonly="false"
|
|
@@ -3472,6 +3472,249 @@ exports[`VDataTable.ts should render footer.page-text slot content 1`] = `
|
|
|
3472
3472
|
</div>
|
|
3473
3473
|
`;
|
|
3474
3474
|
|
|
3475
|
+
exports[`VDataTable.ts should render item slot when using group-by function 1`] = `
|
|
3476
|
+
<div class="v-data-table theme--light">
|
|
3477
|
+
<div class="v-data-table__wrapper">
|
|
3478
|
+
<table>
|
|
3479
|
+
<colgroup>
|
|
3480
|
+
<col class>
|
|
3481
|
+
<col class>
|
|
3482
|
+
<col class>
|
|
3483
|
+
<col class>
|
|
3484
|
+
<col class>
|
|
3485
|
+
</colgroup>
|
|
3486
|
+
<thead class="v-data-table-header">
|
|
3487
|
+
<tr>
|
|
3488
|
+
<th role="columnheader"
|
|
3489
|
+
scope="col"
|
|
3490
|
+
aria-label="Calories: Not sorted. Activate to sort ascending."
|
|
3491
|
+
aria-sort="none"
|
|
3492
|
+
class="text-start sortable"
|
|
3493
|
+
>
|
|
3494
|
+
<span>
|
|
3495
|
+
Calories
|
|
3496
|
+
</span>
|
|
3497
|
+
<i aria-hidden="true"
|
|
3498
|
+
class="v-icon notranslate v-data-table-header__icon material-icons theme--light"
|
|
3499
|
+
style="font-size: 18px;"
|
|
3500
|
+
>
|
|
3501
|
+
$sort
|
|
3502
|
+
</i>
|
|
3503
|
+
</th>
|
|
3504
|
+
<th role="columnheader"
|
|
3505
|
+
scope="col"
|
|
3506
|
+
aria-label="Fat (g): Not sorted. Activate to sort ascending."
|
|
3507
|
+
aria-sort="none"
|
|
3508
|
+
class="text-start sortable"
|
|
3509
|
+
>
|
|
3510
|
+
<span>
|
|
3511
|
+
Fat (g)
|
|
3512
|
+
</span>
|
|
3513
|
+
<i aria-hidden="true"
|
|
3514
|
+
class="v-icon notranslate v-data-table-header__icon material-icons theme--light"
|
|
3515
|
+
style="font-size: 18px;"
|
|
3516
|
+
>
|
|
3517
|
+
$sort
|
|
3518
|
+
</i>
|
|
3519
|
+
</th>
|
|
3520
|
+
<th role="columnheader"
|
|
3521
|
+
scope="col"
|
|
3522
|
+
aria-label="Carbs (g): Not sorted. Activate to sort ascending."
|
|
3523
|
+
aria-sort="none"
|
|
3524
|
+
class="text-start sortable"
|
|
3525
|
+
>
|
|
3526
|
+
<span>
|
|
3527
|
+
Carbs (g)
|
|
3528
|
+
</span>
|
|
3529
|
+
<i aria-hidden="true"
|
|
3530
|
+
class="v-icon notranslate v-data-table-header__icon material-icons theme--light"
|
|
3531
|
+
style="font-size: 18px;"
|
|
3532
|
+
>
|
|
3533
|
+
$sort
|
|
3534
|
+
</i>
|
|
3535
|
+
</th>
|
|
3536
|
+
<th role="columnheader"
|
|
3537
|
+
scope="col"
|
|
3538
|
+
aria-label="Protein (g): Not sorted. Activate to sort ascending."
|
|
3539
|
+
aria-sort="none"
|
|
3540
|
+
class="text-start sortable"
|
|
3541
|
+
>
|
|
3542
|
+
<span>
|
|
3543
|
+
Protein (g)
|
|
3544
|
+
</span>
|
|
3545
|
+
<i aria-hidden="true"
|
|
3546
|
+
class="v-icon notranslate v-data-table-header__icon material-icons theme--light"
|
|
3547
|
+
style="font-size: 18px;"
|
|
3548
|
+
>
|
|
3549
|
+
$sort
|
|
3550
|
+
</i>
|
|
3551
|
+
</th>
|
|
3552
|
+
<th role="columnheader"
|
|
3553
|
+
scope="col"
|
|
3554
|
+
aria-label="Iron (%): Not sorted. Activate to sort ascending."
|
|
3555
|
+
aria-sort="none"
|
|
3556
|
+
class="text-start sortable"
|
|
3557
|
+
>
|
|
3558
|
+
<span>
|
|
3559
|
+
Iron (%)
|
|
3560
|
+
</span>
|
|
3561
|
+
<i aria-hidden="true"
|
|
3562
|
+
class="v-icon notranslate v-data-table-header__icon material-icons theme--light"
|
|
3563
|
+
style="font-size: 18px;"
|
|
3564
|
+
>
|
|
3565
|
+
$sort
|
|
3566
|
+
</i>
|
|
3567
|
+
</th>
|
|
3568
|
+
</tr>
|
|
3569
|
+
</thead>
|
|
3570
|
+
<tbody>
|
|
3571
|
+
<tr class="v-row-group__header">
|
|
3572
|
+
<td colspan="5"
|
|
3573
|
+
class="text-start"
|
|
3574
|
+
>
|
|
3575
|
+
<button type="button"
|
|
3576
|
+
class="ma-0 v-btn v-btn--flat v-btn--icon v-btn--round theme--light v-size--small"
|
|
3577
|
+
>
|
|
3578
|
+
<span class="v-btn__content">
|
|
3579
|
+
<i aria-hidden="true"
|
|
3580
|
+
class="v-icon notranslate material-icons theme--light"
|
|
3581
|
+
>
|
|
3582
|
+
$minus
|
|
3583
|
+
</i>
|
|
3584
|
+
</span>
|
|
3585
|
+
</button>
|
|
3586
|
+
name: Frozen Yogurt
|
|
3587
|
+
<button type="button"
|
|
3588
|
+
class="ma-0 v-btn v-btn--flat v-btn--icon v-btn--round theme--light v-size--small"
|
|
3589
|
+
>
|
|
3590
|
+
<span class="v-btn__content">
|
|
3591
|
+
<i aria-hidden="true"
|
|
3592
|
+
class="v-icon notranslate material-icons theme--light"
|
|
3593
|
+
>
|
|
3594
|
+
$close
|
|
3595
|
+
</i>
|
|
3596
|
+
</span>
|
|
3597
|
+
</button>
|
|
3598
|
+
</td>
|
|
3599
|
+
</tr>
|
|
3600
|
+
<div>
|
|
3601
|
+
scoped
|
|
3602
|
+
</div>
|
|
3603
|
+
<tr class="v-row-group__header">
|
|
3604
|
+
<td colspan="5"
|
|
3605
|
+
class="text-start"
|
|
3606
|
+
>
|
|
3607
|
+
<button type="button"
|
|
3608
|
+
class="ma-0 v-btn v-btn--flat v-btn--icon v-btn--round theme--light v-size--small"
|
|
3609
|
+
>
|
|
3610
|
+
<span class="v-btn__content">
|
|
3611
|
+
<i aria-hidden="true"
|
|
3612
|
+
class="v-icon notranslate material-icons theme--light"
|
|
3613
|
+
>
|
|
3614
|
+
$minus
|
|
3615
|
+
</i>
|
|
3616
|
+
</span>
|
|
3617
|
+
</button>
|
|
3618
|
+
name: Ice cream sandwich
|
|
3619
|
+
<button type="button"
|
|
3620
|
+
class="ma-0 v-btn v-btn--flat v-btn--icon v-btn--round theme--light v-size--small"
|
|
3621
|
+
>
|
|
3622
|
+
<span class="v-btn__content">
|
|
3623
|
+
<i aria-hidden="true"
|
|
3624
|
+
class="v-icon notranslate material-icons theme--light"
|
|
3625
|
+
>
|
|
3626
|
+
$close
|
|
3627
|
+
</i>
|
|
3628
|
+
</span>
|
|
3629
|
+
</button>
|
|
3630
|
+
</td>
|
|
3631
|
+
</tr>
|
|
3632
|
+
<div>
|
|
3633
|
+
scoped
|
|
3634
|
+
</div>
|
|
3635
|
+
</tbody>
|
|
3636
|
+
</table>
|
|
3637
|
+
</div>
|
|
3638
|
+
<div class="v-data-footer">
|
|
3639
|
+
<div class="v-data-footer__select">
|
|
3640
|
+
Rows per page:
|
|
3641
|
+
<div class="v-input v-input--hide-details v-input--is-label-active v-input--is-dirty theme--light v-text-field v-select">
|
|
3642
|
+
<div class="v-input__control">
|
|
3643
|
+
<div role="button"
|
|
3644
|
+
aria-haspopup="listbox"
|
|
3645
|
+
aria-expanded="false"
|
|
3646
|
+
aria-owns="list-571"
|
|
3647
|
+
class="v-input__slot"
|
|
3648
|
+
>
|
|
3649
|
+
<div class="v-select__slot">
|
|
3650
|
+
<div class="v-select__selections">
|
|
3651
|
+
<div class="v-select__selection v-select__selection--comma">
|
|
3652
|
+
10
|
|
3653
|
+
</div>
|
|
3654
|
+
<input aria-label="$vuetify.dataTable.itemsPerPageText"
|
|
3655
|
+
id="input-571"
|
|
3656
|
+
readonly="readonly"
|
|
3657
|
+
type="text"
|
|
3658
|
+
aria-readonly="false"
|
|
3659
|
+
autocomplete="off"
|
|
3660
|
+
>
|
|
3661
|
+
</div>
|
|
3662
|
+
<div class="v-input__append-inner">
|
|
3663
|
+
<div class="v-input__icon v-input__icon--append">
|
|
3664
|
+
<i aria-hidden="true"
|
|
3665
|
+
class="v-icon notranslate material-icons theme--light"
|
|
3666
|
+
>
|
|
3667
|
+
$dropdown
|
|
3668
|
+
</i>
|
|
3669
|
+
</div>
|
|
3670
|
+
</div>
|
|
3671
|
+
<input type="hidden"
|
|
3672
|
+
value="10"
|
|
3673
|
+
>
|
|
3674
|
+
</div>
|
|
3675
|
+
<div class="v-menu">
|
|
3676
|
+
</div>
|
|
3677
|
+
</div>
|
|
3678
|
+
</div>
|
|
3679
|
+
</div>
|
|
3680
|
+
</div>
|
|
3681
|
+
<div class="v-data-footer__pagination">
|
|
3682
|
+
1-2 of 2
|
|
3683
|
+
</div>
|
|
3684
|
+
<div class="v-data-footer__icons-before">
|
|
3685
|
+
<button type="button"
|
|
3686
|
+
disabled="disabled"
|
|
3687
|
+
class="v-btn v-btn--disabled v-btn--flat v-btn--icon v-btn--round v-btn--text theme--light v-size--default"
|
|
3688
|
+
aria-label="Previous page"
|
|
3689
|
+
>
|
|
3690
|
+
<span class="v-btn__content">
|
|
3691
|
+
<i aria-hidden="true"
|
|
3692
|
+
class="v-icon notranslate material-icons theme--light"
|
|
3693
|
+
>
|
|
3694
|
+
$prev
|
|
3695
|
+
</i>
|
|
3696
|
+
</span>
|
|
3697
|
+
</button>
|
|
3698
|
+
</div>
|
|
3699
|
+
<div class="v-data-footer__icons-after">
|
|
3700
|
+
<button type="button"
|
|
3701
|
+
disabled="disabled"
|
|
3702
|
+
class="v-btn v-btn--disabled v-btn--flat v-btn--icon v-btn--round v-btn--text theme--light v-size--default"
|
|
3703
|
+
aria-label="Next page"
|
|
3704
|
+
>
|
|
3705
|
+
<span class="v-btn__content">
|
|
3706
|
+
<i aria-hidden="true"
|
|
3707
|
+
class="v-icon notranslate material-icons theme--light"
|
|
3708
|
+
>
|
|
3709
|
+
$next
|
|
3710
|
+
</i>
|
|
3711
|
+
</span>
|
|
3712
|
+
</button>
|
|
3713
|
+
</div>
|
|
3714
|
+
</div>
|
|
3715
|
+
</div>
|
|
3716
|
+
`;
|
|
3717
|
+
|
|
3475
3718
|
exports[`VDataTable.ts should render loading state 1`] = `
|
|
3476
3719
|
<div class="v-data-table theme--light">
|
|
3477
3720
|
<div class="v-data-table__wrapper">
|
|
@@ -3526,7 +3769,7 @@ exports[`VDataTable.ts should render loading state 1`] = `
|
|
|
3526
3769
|
<div role="button"
|
|
3527
3770
|
aria-haspopup="listbox"
|
|
3528
3771
|
aria-expanded="false"
|
|
3529
|
-
aria-owns="list-
|
|
3772
|
+
aria-owns="list-236"
|
|
3530
3773
|
class="v-input__slot"
|
|
3531
3774
|
>
|
|
3532
3775
|
<div class="v-select__slot">
|
|
@@ -3535,7 +3778,7 @@ exports[`VDataTable.ts should render loading state 1`] = `
|
|
|
3535
3778
|
10
|
|
3536
3779
|
</div>
|
|
3537
3780
|
<input aria-label="$vuetify.dataTable.itemsPerPageText"
|
|
3538
|
-
id="input-
|
|
3781
|
+
id="input-236"
|
|
3539
3782
|
readonly="readonly"
|
|
3540
3783
|
type="text"
|
|
3541
3784
|
aria-readonly="false"
|
|
@@ -3732,7 +3975,7 @@ exports[`VDataTable.ts should render loading state 2`] = `
|
|
|
3732
3975
|
<div role="button"
|
|
3733
3976
|
aria-haspopup="listbox"
|
|
3734
3977
|
aria-expanded="false"
|
|
3735
|
-
aria-owns="list-
|
|
3978
|
+
aria-owns="list-254"
|
|
3736
3979
|
class="v-input__slot"
|
|
3737
3980
|
>
|
|
3738
3981
|
<div class="v-select__slot">
|
|
@@ -3741,7 +3984,7 @@ exports[`VDataTable.ts should render loading state 2`] = `
|
|
|
3741
3984
|
10
|
|
3742
3985
|
</div>
|
|
3743
3986
|
<input aria-label="$vuetify.dataTable.itemsPerPageText"
|
|
3744
|
-
id="input-
|
|
3987
|
+
id="input-254"
|
|
3745
3988
|
readonly="readonly"
|
|
3746
3989
|
type="text"
|
|
3747
3990
|
aria-readonly="false"
|
|
@@ -3923,7 +4166,7 @@ exports[`VDataTable.ts should render with body slot 1`] = `
|
|
|
3923
4166
|
<div role="button"
|
|
3924
4167
|
aria-haspopup="listbox"
|
|
3925
4168
|
aria-expanded="false"
|
|
3926
|
-
aria-owns="list-
|
|
4169
|
+
aria-owns="list-43"
|
|
3927
4170
|
class="v-input__slot"
|
|
3928
4171
|
>
|
|
3929
4172
|
<div class="v-select__slot">
|
|
@@ -3932,7 +4175,7 @@ exports[`VDataTable.ts should render with body slot 1`] = `
|
|
|
3932
4175
|
5
|
|
3933
4176
|
</div>
|
|
3934
4177
|
<input aria-label="$vuetify.dataTable.itemsPerPageText"
|
|
3935
|
-
id="input-
|
|
4178
|
+
id="input-43"
|
|
3936
4179
|
readonly="readonly"
|
|
3937
4180
|
type="text"
|
|
3938
4181
|
aria-readonly="false"
|
|
@@ -4212,7 +4455,7 @@ exports[`VDataTable.ts should render with data 1`] = `
|
|
|
4212
4455
|
<div role="button"
|
|
4213
4456
|
aria-haspopup="listbox"
|
|
4214
4457
|
aria-expanded="false"
|
|
4215
|
-
aria-owns="list-
|
|
4458
|
+
aria-owns="list-24"
|
|
4216
4459
|
class="v-input__slot"
|
|
4217
4460
|
>
|
|
4218
4461
|
<div class="v-select__slot">
|
|
@@ -4221,7 +4464,7 @@ exports[`VDataTable.ts should render with data 1`] = `
|
|
|
4221
4464
|
5
|
|
4222
4465
|
</div>
|
|
4223
4466
|
<input aria-label="$vuetify.dataTable.itemsPerPageText"
|
|
4224
|
-
id="input-
|
|
4467
|
+
id="input-24"
|
|
4225
4468
|
readonly="readonly"
|
|
4226
4469
|
type="text"
|
|
4227
4470
|
aria-readonly="false"
|
|
@@ -4396,7 +4639,7 @@ exports[`VDataTable.ts should render with group scoped slot 1`] = `
|
|
|
4396
4639
|
<div role="button"
|
|
4397
4640
|
aria-haspopup="listbox"
|
|
4398
4641
|
aria-expanded="false"
|
|
4399
|
-
aria-owns="list-
|
|
4642
|
+
aria-owns="list-221"
|
|
4400
4643
|
class="v-input__slot"
|
|
4401
4644
|
>
|
|
4402
4645
|
<div class="v-select__slot">
|
|
@@ -4405,7 +4648,7 @@ exports[`VDataTable.ts should render with group scoped slot 1`] = `
|
|
|
4405
4648
|
5
|
|
4406
4649
|
</div>
|
|
4407
4650
|
<input aria-label="$vuetify.dataTable.itemsPerPageText"
|
|
4408
|
-
id="input-
|
|
4651
|
+
id="input-221"
|
|
4409
4652
|
readonly="readonly"
|
|
4410
4653
|
type="text"
|
|
4411
4654
|
aria-readonly="false"
|
|
@@ -4823,7 +5066,7 @@ exports[`VDataTable.ts should render with group.summary scoped slot 1`] = `
|
|
|
4823
5066
|
<div role="button"
|
|
4824
5067
|
aria-haspopup="listbox"
|
|
4825
5068
|
aria-expanded="false"
|
|
4826
|
-
aria-owns="list-
|
|
5069
|
+
aria-owns="list-149"
|
|
4827
5070
|
class="v-input__slot"
|
|
4828
5071
|
>
|
|
4829
5072
|
<div class="v-select__slot">
|
|
@@ -4832,7 +5075,7 @@ exports[`VDataTable.ts should render with group.summary scoped slot 1`] = `
|
|
|
4832
5075
|
5
|
|
4833
5076
|
</div>
|
|
4834
5077
|
<input aria-label="$vuetify.dataTable.itemsPerPageText"
|
|
4835
|
-
id="input-
|
|
5078
|
+
id="input-149"
|
|
4836
5079
|
readonly="readonly"
|
|
4837
5080
|
type="text"
|
|
4838
5081
|
aria-readonly="false"
|
|
@@ -5196,7 +5439,7 @@ exports[`VDataTable.ts should render with grouped rows 1`] = `
|
|
|
5196
5439
|
<div role="button"
|
|
5197
5440
|
aria-haspopup="listbox"
|
|
5198
5441
|
aria-expanded="false"
|
|
5199
|
-
aria-owns="list-
|
|
5442
|
+
aria-owns="list-202"
|
|
5200
5443
|
class="v-input__slot"
|
|
5201
5444
|
>
|
|
5202
5445
|
<div class="v-select__slot">
|
|
@@ -5205,7 +5448,7 @@ exports[`VDataTable.ts should render with grouped rows 1`] = `
|
|
|
5205
5448
|
5
|
|
5206
5449
|
</div>
|
|
5207
5450
|
<input aria-label="$vuetify.dataTable.itemsPerPageText"
|
|
5208
|
-
id="input-
|
|
5451
|
+
id="input-202"
|
|
5209
5452
|
readonly="readonly"
|
|
5210
5453
|
type="text"
|
|
5211
5454
|
aria-readonly="false"
|
|
@@ -5375,19 +5618,19 @@ exports[`VDataTable.ts should render with item scoped slot 1`] = `
|
|
|
5375
5618
|
</thead>
|
|
5376
5619
|
<tbody>
|
|
5377
5620
|
<div>
|
|
5378
|
-
{"item":{"name":"Frozen Yogurt","calories":159,"fat":6,"carbs":24,"protein":4,"iron":"1%"},"isSelected":false,"isExpanded":false,"headers":[{"text":"Dessert (100g serving)","align":"left","sortable":false,"value":"name"},{"text":"Calories","value":"calories"},{"text":"Fat (g)","value":"fat"},{"text":"Carbs (g)","value":"carbs"},{"text":"Protein (g)","value":"protein"},{"text":"Iron (%)","value":"iron"}],"index":0}
|
|
5621
|
+
{"item":{"name":"Frozen Yogurt","calories":159,"fat":6,"carbs":24,"protein":4,"iron":"1%"},"isSelected":false,"isExpanded":false,"isMobile":false,"headers":[{"text":"Dessert (100g serving)","align":"left","sortable":false,"value":"name"},{"text":"Calories","value":"calories"},{"text":"Fat (g)","value":"fat"},{"text":"Carbs (g)","value":"carbs"},{"text":"Protein (g)","value":"protein"},{"text":"Iron (%)","value":"iron"}],"index":0}
|
|
5379
5622
|
</div>
|
|
5380
5623
|
<div>
|
|
5381
|
-
{"item":{"name":"Ice cream sandwich","calories":237,"fat":9,"carbs":37,"protein":4.3,"iron":"1%"},"isSelected":false,"isExpanded":false,"headers":[{"text":"Dessert (100g serving)","align":"left","sortable":false,"value":"name"},{"text":"Calories","value":"calories"},{"text":"Fat (g)","value":"fat"},{"text":"Carbs (g)","value":"carbs"},{"text":"Protein (g)","value":"protein"},{"text":"Iron (%)","value":"iron"}],"index":1}
|
|
5624
|
+
{"item":{"name":"Ice cream sandwich","calories":237,"fat":9,"carbs":37,"protein":4.3,"iron":"1%"},"isSelected":false,"isExpanded":false,"isMobile":false,"headers":[{"text":"Dessert (100g serving)","align":"left","sortable":false,"value":"name"},{"text":"Calories","value":"calories"},{"text":"Fat (g)","value":"fat"},{"text":"Carbs (g)","value":"carbs"},{"text":"Protein (g)","value":"protein"},{"text":"Iron (%)","value":"iron"}],"index":1}
|
|
5382
5625
|
</div>
|
|
5383
5626
|
<div>
|
|
5384
|
-
{"item":{"name":"Eclair","calories":262,"fat":16,"carbs":23,"protein":6,"iron":"7%"},"isSelected":false,"isExpanded":false,"headers":[{"text":"Dessert (100g serving)","align":"left","sortable":false,"value":"name"},{"text":"Calories","value":"calories"},{"text":"Fat (g)","value":"fat"},{"text":"Carbs (g)","value":"carbs"},{"text":"Protein (g)","value":"protein"},{"text":"Iron (%)","value":"iron"}],"index":2}
|
|
5627
|
+
{"item":{"name":"Eclair","calories":262,"fat":16,"carbs":23,"protein":6,"iron":"7%"},"isSelected":false,"isExpanded":false,"isMobile":false,"headers":[{"text":"Dessert (100g serving)","align":"left","sortable":false,"value":"name"},{"text":"Calories","value":"calories"},{"text":"Fat (g)","value":"fat"},{"text":"Carbs (g)","value":"carbs"},{"text":"Protein (g)","value":"protein"},{"text":"Iron (%)","value":"iron"}],"index":2}
|
|
5385
5628
|
</div>
|
|
5386
5629
|
<div>
|
|
5387
|
-
{"item":{"name":"Cupcake","calories":305,"fat":3.7,"carbs":67,"protein":4.3,"iron":"8%"},"isSelected":false,"isExpanded":false,"headers":[{"text":"Dessert (100g serving)","align":"left","sortable":false,"value":"name"},{"text":"Calories","value":"calories"},{"text":"Fat (g)","value":"fat"},{"text":"Carbs (g)","value":"carbs"},{"text":"Protein (g)","value":"protein"},{"text":"Iron (%)","value":"iron"}],"index":3}
|
|
5630
|
+
{"item":{"name":"Cupcake","calories":305,"fat":3.7,"carbs":67,"protein":4.3,"iron":"8%"},"isSelected":false,"isExpanded":false,"isMobile":false,"headers":[{"text":"Dessert (100g serving)","align":"left","sortable":false,"value":"name"},{"text":"Calories","value":"calories"},{"text":"Fat (g)","value":"fat"},{"text":"Carbs (g)","value":"carbs"},{"text":"Protein (g)","value":"protein"},{"text":"Iron (%)","value":"iron"}],"index":3}
|
|
5388
5631
|
</div>
|
|
5389
5632
|
<div>
|
|
5390
|
-
{"item":{"name":"Gingerbread","calories":356,"fat":16,"carbs":49,"protein":3.9,"iron":"16%"},"isSelected":false,"isExpanded":false,"headers":[{"text":"Dessert (100g serving)","align":"left","sortable":false,"value":"name"},{"text":"Calories","value":"calories"},{"text":"Fat (g)","value":"fat"},{"text":"Carbs (g)","value":"carbs"},{"text":"Protein (g)","value":"protein"},{"text":"Iron (%)","value":"iron"}],"index":4}
|
|
5633
|
+
{"item":{"name":"Gingerbread","calories":356,"fat":16,"carbs":49,"protein":3.9,"iron":"16%"},"isSelected":false,"isExpanded":false,"isMobile":false,"headers":[{"text":"Dessert (100g serving)","align":"left","sortable":false,"value":"name"},{"text":"Calories","value":"calories"},{"text":"Fat (g)","value":"fat"},{"text":"Carbs (g)","value":"carbs"},{"text":"Protein (g)","value":"protein"},{"text":"Iron (%)","value":"iron"}],"index":4}
|
|
5391
5634
|
</div>
|
|
5392
5635
|
</tbody>
|
|
5393
5636
|
</table>
|
|
@@ -5400,7 +5643,7 @@ exports[`VDataTable.ts should render with item scoped slot 1`] = `
|
|
|
5400
5643
|
<div role="button"
|
|
5401
5644
|
aria-haspopup="listbox"
|
|
5402
5645
|
aria-expanded="false"
|
|
5403
|
-
aria-owns="list-
|
|
5646
|
+
aria-owns="list-169"
|
|
5404
5647
|
class="v-input__slot"
|
|
5405
5648
|
>
|
|
5406
5649
|
<div class="v-select__slot">
|
|
@@ -5409,7 +5652,7 @@ exports[`VDataTable.ts should render with item scoped slot 1`] = `
|
|
|
5409
5652
|
5
|
|
5410
5653
|
</div>
|
|
5411
5654
|
<input aria-label="$vuetify.dataTable.itemsPerPageText"
|
|
5412
|
-
id="input-
|
|
5655
|
+
id="input-169"
|
|
5413
5656
|
readonly="readonly"
|
|
5414
5657
|
type="text"
|
|
5415
5658
|
aria-readonly="false"
|
|
@@ -5714,7 +5957,7 @@ exports[`VDataTable.ts should render with item.expanded scoped slot 1`] = `
|
|
|
5714
5957
|
<div role="button"
|
|
5715
5958
|
aria-haspopup="listbox"
|
|
5716
5959
|
aria-expanded="false"
|
|
5717
|
-
aria-owns="list-
|
|
5960
|
+
aria-owns="list-110"
|
|
5718
5961
|
class="v-input__slot"
|
|
5719
5962
|
>
|
|
5720
5963
|
<div class="v-select__slot">
|
|
@@ -5723,7 +5966,7 @@ exports[`VDataTable.ts should render with item.expanded scoped slot 1`] = `
|
|
|
5723
5966
|
5
|
|
5724
5967
|
</div>
|
|
5725
5968
|
<input aria-label="$vuetify.dataTable.itemsPerPageText"
|
|
5726
|
-
id="input-
|
|
5969
|
+
id="input-110"
|
|
5727
5970
|
readonly="readonly"
|
|
5728
5971
|
type="text"
|
|
5729
5972
|
aria-readonly="false"
|
|
@@ -6049,7 +6292,7 @@ exports[`VDataTable.ts should render with showExpand 1`] = `
|
|
|
6049
6292
|
<div role="button"
|
|
6050
6293
|
aria-haspopup="listbox"
|
|
6051
6294
|
aria-expanded="false"
|
|
6052
|
-
aria-owns="list-
|
|
6295
|
+
aria-owns="list-66"
|
|
6053
6296
|
class="v-input__slot"
|
|
6054
6297
|
>
|
|
6055
6298
|
<div class="v-select__slot">
|
|
@@ -6058,7 +6301,7 @@ exports[`VDataTable.ts should render with showExpand 1`] = `
|
|
|
6058
6301
|
5
|
|
6059
6302
|
</div>
|
|
6060
6303
|
<input aria-label="$vuetify.dataTable.itemsPerPageText"
|
|
6061
|
-
id="input-
|
|
6304
|
+
id="input-66"
|
|
6062
6305
|
readonly="readonly"
|
|
6063
6306
|
type="text"
|
|
6064
6307
|
aria-readonly="false"
|
|
@@ -6384,7 +6627,7 @@ exports[`VDataTable.ts should render with showExpand 2`] = `
|
|
|
6384
6627
|
<div role="button"
|
|
6385
6628
|
aria-haspopup="listbox"
|
|
6386
6629
|
aria-expanded="false"
|
|
6387
|
-
aria-owns="list-
|
|
6630
|
+
aria-owns="list-66"
|
|
6388
6631
|
class="v-input__slot"
|
|
6389
6632
|
>
|
|
6390
6633
|
<div class="v-select__slot">
|
|
@@ -6393,7 +6636,7 @@ exports[`VDataTable.ts should render with showExpand 2`] = `
|
|
|
6393
6636
|
5
|
|
6394
6637
|
</div>
|
|
6395
6638
|
<input aria-label="$vuetify.dataTable.itemsPerPageText"
|
|
6396
|
-
id="input-
|
|
6639
|
+
id="input-66"
|
|
6397
6640
|
readonly="readonly"
|
|
6398
6641
|
type="text"
|
|
6399
6642
|
aria-readonly="false"
|
|
@@ -6746,7 +6989,7 @@ exports[`VDataTable.ts should render with showSelect 1`] = `
|
|
|
6746
6989
|
<div role="button"
|
|
6747
6990
|
aria-haspopup="listbox"
|
|
6748
6991
|
aria-expanded="false"
|
|
6749
|
-
aria-owns="list-
|
|
6992
|
+
aria-owns="list-90"
|
|
6750
6993
|
class="v-input__slot"
|
|
6751
6994
|
>
|
|
6752
6995
|
<div class="v-select__slot">
|
|
@@ -6755,7 +6998,7 @@ exports[`VDataTable.ts should render with showSelect 1`] = `
|
|
|
6755
6998
|
5
|
|
6756
6999
|
</div>
|
|
6757
7000
|
<input aria-label="$vuetify.dataTable.itemsPerPageText"
|
|
6758
|
-
id="input-
|
|
7001
|
+
id="input-90"
|
|
6759
7002
|
readonly="readonly"
|
|
6760
7003
|
type="text"
|
|
6761
7004
|
aria-readonly="false"
|
|
@@ -6816,3 +7059,327 @@ exports[`VDataTable.ts should render with showSelect 1`] = `
|
|
|
6816
7059
|
</div>
|
|
6817
7060
|
</div>
|
|
6818
7061
|
`;
|
|
7062
|
+
|
|
7063
|
+
exports[`VDataTable.ts should search group-by column 1`] = `
|
|
7064
|
+
<div class="v-data-table theme--light">
|
|
7065
|
+
<div class="v-data-table__wrapper">
|
|
7066
|
+
<table>
|
|
7067
|
+
<colgroup>
|
|
7068
|
+
<col class>
|
|
7069
|
+
</colgroup>
|
|
7070
|
+
<thead class="v-data-table-header">
|
|
7071
|
+
<tr>
|
|
7072
|
+
<th role="columnheader"
|
|
7073
|
+
scope="col"
|
|
7074
|
+
aria-label="ID: Not sorted. Activate to sort ascending."
|
|
7075
|
+
aria-sort="none"
|
|
7076
|
+
class="text-start sortable"
|
|
7077
|
+
>
|
|
7078
|
+
<span>
|
|
7079
|
+
ID
|
|
7080
|
+
</span>
|
|
7081
|
+
<i aria-hidden="true"
|
|
7082
|
+
class="v-icon notranslate v-data-table-header__icon material-icons theme--light"
|
|
7083
|
+
style="font-size: 18px;"
|
|
7084
|
+
>
|
|
7085
|
+
$sort
|
|
7086
|
+
</i>
|
|
7087
|
+
</th>
|
|
7088
|
+
</tr>
|
|
7089
|
+
</thead>
|
|
7090
|
+
<tbody>
|
|
7091
|
+
<tr class="v-row-group__header">
|
|
7092
|
+
<td colspan="1"
|
|
7093
|
+
class="text-start"
|
|
7094
|
+
>
|
|
7095
|
+
<button type="button"
|
|
7096
|
+
class="ma-0 v-btn v-btn--flat v-btn--icon v-btn--round theme--light v-size--small"
|
|
7097
|
+
>
|
|
7098
|
+
<span class="v-btn__content">
|
|
7099
|
+
<i aria-hidden="true"
|
|
7100
|
+
class="v-icon notranslate material-icons theme--light"
|
|
7101
|
+
>
|
|
7102
|
+
$minus
|
|
7103
|
+
</i>
|
|
7104
|
+
</span>
|
|
7105
|
+
</button>
|
|
7106
|
+
name: Assistance
|
|
7107
|
+
<button type="button"
|
|
7108
|
+
class="ma-0 v-btn v-btn--flat v-btn--icon v-btn--round theme--light v-size--small"
|
|
7109
|
+
>
|
|
7110
|
+
<span class="v-btn__content">
|
|
7111
|
+
<i aria-hidden="true"
|
|
7112
|
+
class="v-icon notranslate material-icons theme--light"
|
|
7113
|
+
>
|
|
7114
|
+
$close
|
|
7115
|
+
</i>
|
|
7116
|
+
</span>
|
|
7117
|
+
</button>
|
|
7118
|
+
</td>
|
|
7119
|
+
</tr>
|
|
7120
|
+
<tr class>
|
|
7121
|
+
<td class="text-start">
|
|
7122
|
+
1
|
|
7123
|
+
</td>
|
|
7124
|
+
</tr>
|
|
7125
|
+
<tr class="v-row-group__header">
|
|
7126
|
+
<td colspan="1"
|
|
7127
|
+
class="text-start"
|
|
7128
|
+
>
|
|
7129
|
+
<button type="button"
|
|
7130
|
+
class="ma-0 v-btn v-btn--flat v-btn--icon v-btn--round theme--light v-size--small"
|
|
7131
|
+
>
|
|
7132
|
+
<span class="v-btn__content">
|
|
7133
|
+
<i aria-hidden="true"
|
|
7134
|
+
class="v-icon notranslate material-icons theme--light"
|
|
7135
|
+
>
|
|
7136
|
+
$minus
|
|
7137
|
+
</i>
|
|
7138
|
+
</span>
|
|
7139
|
+
</button>
|
|
7140
|
+
name: Candidat
|
|
7141
|
+
<button type="button"
|
|
7142
|
+
class="ma-0 v-btn v-btn--flat v-btn--icon v-btn--round theme--light v-size--small"
|
|
7143
|
+
>
|
|
7144
|
+
<span class="v-btn__content">
|
|
7145
|
+
<i aria-hidden="true"
|
|
7146
|
+
class="v-icon notranslate material-icons theme--light"
|
|
7147
|
+
>
|
|
7148
|
+
$close
|
|
7149
|
+
</i>
|
|
7150
|
+
</span>
|
|
7151
|
+
</button>
|
|
7152
|
+
</td>
|
|
7153
|
+
</tr>
|
|
7154
|
+
<tr class>
|
|
7155
|
+
<td class="text-start">
|
|
7156
|
+
2
|
|
7157
|
+
</td>
|
|
7158
|
+
</tr>
|
|
7159
|
+
</tbody>
|
|
7160
|
+
</table>
|
|
7161
|
+
</div>
|
|
7162
|
+
<div class="v-data-footer">
|
|
7163
|
+
<div class="v-data-footer__select">
|
|
7164
|
+
Rows per page:
|
|
7165
|
+
<div class="v-input v-input--hide-details v-input--is-label-active v-input--is-dirty theme--light v-text-field v-select">
|
|
7166
|
+
<div class="v-input__control">
|
|
7167
|
+
<div role="button"
|
|
7168
|
+
aria-haspopup="listbox"
|
|
7169
|
+
aria-expanded="false"
|
|
7170
|
+
aria-owns="list-544"
|
|
7171
|
+
class="v-input__slot"
|
|
7172
|
+
>
|
|
7173
|
+
<div class="v-select__slot">
|
|
7174
|
+
<div class="v-select__selections">
|
|
7175
|
+
<div class="v-select__selection v-select__selection--comma">
|
|
7176
|
+
10
|
|
7177
|
+
</div>
|
|
7178
|
+
<input aria-label="$vuetify.dataTable.itemsPerPageText"
|
|
7179
|
+
id="input-544"
|
|
7180
|
+
readonly="readonly"
|
|
7181
|
+
type="text"
|
|
7182
|
+
aria-readonly="false"
|
|
7183
|
+
autocomplete="off"
|
|
7184
|
+
>
|
|
7185
|
+
</div>
|
|
7186
|
+
<div class="v-input__append-inner">
|
|
7187
|
+
<div class="v-input__icon v-input__icon--append">
|
|
7188
|
+
<i aria-hidden="true"
|
|
7189
|
+
class="v-icon notranslate material-icons theme--light"
|
|
7190
|
+
>
|
|
7191
|
+
$dropdown
|
|
7192
|
+
</i>
|
|
7193
|
+
</div>
|
|
7194
|
+
</div>
|
|
7195
|
+
<input type="hidden"
|
|
7196
|
+
value="10"
|
|
7197
|
+
>
|
|
7198
|
+
</div>
|
|
7199
|
+
<div class="v-menu">
|
|
7200
|
+
</div>
|
|
7201
|
+
</div>
|
|
7202
|
+
</div>
|
|
7203
|
+
</div>
|
|
7204
|
+
</div>
|
|
7205
|
+
<div class="v-data-footer__pagination">
|
|
7206
|
+
1-2 of 2
|
|
7207
|
+
</div>
|
|
7208
|
+
<div class="v-data-footer__icons-before">
|
|
7209
|
+
<button type="button"
|
|
7210
|
+
disabled="disabled"
|
|
7211
|
+
class="v-btn v-btn--disabled v-btn--flat v-btn--icon v-btn--round v-btn--text theme--light v-size--default"
|
|
7212
|
+
aria-label="Previous page"
|
|
7213
|
+
>
|
|
7214
|
+
<span class="v-btn__content">
|
|
7215
|
+
<i aria-hidden="true"
|
|
7216
|
+
class="v-icon notranslate material-icons theme--light"
|
|
7217
|
+
>
|
|
7218
|
+
$prev
|
|
7219
|
+
</i>
|
|
7220
|
+
</span>
|
|
7221
|
+
</button>
|
|
7222
|
+
</div>
|
|
7223
|
+
<div class="v-data-footer__icons-after">
|
|
7224
|
+
<button type="button"
|
|
7225
|
+
disabled="disabled"
|
|
7226
|
+
class="v-btn v-btn--disabled v-btn--flat v-btn--icon v-btn--round v-btn--text theme--light v-size--default"
|
|
7227
|
+
aria-label="Next page"
|
|
7228
|
+
>
|
|
7229
|
+
<span class="v-btn__content">
|
|
7230
|
+
<i aria-hidden="true"
|
|
7231
|
+
class="v-icon notranslate material-icons theme--light"
|
|
7232
|
+
>
|
|
7233
|
+
$next
|
|
7234
|
+
</i>
|
|
7235
|
+
</span>
|
|
7236
|
+
</button>
|
|
7237
|
+
</div>
|
|
7238
|
+
</div>
|
|
7239
|
+
</div>
|
|
7240
|
+
`;
|
|
7241
|
+
|
|
7242
|
+
exports[`VDataTable.ts should search group-by column 2`] = `
|
|
7243
|
+
<div class="v-data-table theme--light">
|
|
7244
|
+
<div class="v-data-table__wrapper">
|
|
7245
|
+
<table>
|
|
7246
|
+
<colgroup>
|
|
7247
|
+
<col class>
|
|
7248
|
+
</colgroup>
|
|
7249
|
+
<thead class="v-data-table-header">
|
|
7250
|
+
<tr>
|
|
7251
|
+
<th role="columnheader"
|
|
7252
|
+
scope="col"
|
|
7253
|
+
aria-label="ID: Not sorted. Activate to sort ascending."
|
|
7254
|
+
aria-sort="none"
|
|
7255
|
+
class="text-start sortable"
|
|
7256
|
+
>
|
|
7257
|
+
<span>
|
|
7258
|
+
ID
|
|
7259
|
+
</span>
|
|
7260
|
+
<i aria-hidden="true"
|
|
7261
|
+
class="v-icon notranslate v-data-table-header__icon material-icons theme--light"
|
|
7262
|
+
style="font-size: 18px;"
|
|
7263
|
+
>
|
|
7264
|
+
$sort
|
|
7265
|
+
</i>
|
|
7266
|
+
</th>
|
|
7267
|
+
</tr>
|
|
7268
|
+
</thead>
|
|
7269
|
+
<tbody>
|
|
7270
|
+
<tr class="v-row-group__header">
|
|
7271
|
+
<td colspan="1"
|
|
7272
|
+
class="text-start"
|
|
7273
|
+
>
|
|
7274
|
+
<button type="button"
|
|
7275
|
+
class="ma-0 v-btn v-btn--flat v-btn--icon v-btn--round theme--light v-size--small"
|
|
7276
|
+
>
|
|
7277
|
+
<span class="v-btn__content">
|
|
7278
|
+
<i aria-hidden="true"
|
|
7279
|
+
class="v-icon notranslate material-icons theme--light"
|
|
7280
|
+
>
|
|
7281
|
+
$minus
|
|
7282
|
+
</i>
|
|
7283
|
+
</span>
|
|
7284
|
+
</button>
|
|
7285
|
+
name: Candidat
|
|
7286
|
+
<button type="button"
|
|
7287
|
+
class="ma-0 v-btn v-btn--flat v-btn--icon v-btn--round theme--light v-size--small"
|
|
7288
|
+
>
|
|
7289
|
+
<span class="v-btn__content">
|
|
7290
|
+
<i aria-hidden="true"
|
|
7291
|
+
class="v-icon notranslate material-icons theme--light"
|
|
7292
|
+
>
|
|
7293
|
+
$close
|
|
7294
|
+
</i>
|
|
7295
|
+
</span>
|
|
7296
|
+
</button>
|
|
7297
|
+
</td>
|
|
7298
|
+
</tr>
|
|
7299
|
+
<tr class>
|
|
7300
|
+
<td class="text-start">
|
|
7301
|
+
2
|
|
7302
|
+
</td>
|
|
7303
|
+
</tr>
|
|
7304
|
+
</tbody>
|
|
7305
|
+
</table>
|
|
7306
|
+
</div>
|
|
7307
|
+
<div class="v-data-footer">
|
|
7308
|
+
<div class="v-data-footer__select">
|
|
7309
|
+
Rows per page:
|
|
7310
|
+
<div class="v-input v-input--hide-details v-input--is-label-active v-input--is-dirty theme--light v-text-field v-select">
|
|
7311
|
+
<div class="v-input__control">
|
|
7312
|
+
<div role="button"
|
|
7313
|
+
aria-haspopup="listbox"
|
|
7314
|
+
aria-expanded="false"
|
|
7315
|
+
aria-owns="list-544"
|
|
7316
|
+
class="v-input__slot"
|
|
7317
|
+
>
|
|
7318
|
+
<div class="v-select__slot">
|
|
7319
|
+
<div class="v-select__selections">
|
|
7320
|
+
<div class="v-select__selection v-select__selection--comma">
|
|
7321
|
+
10
|
|
7322
|
+
</div>
|
|
7323
|
+
<input aria-label="$vuetify.dataTable.itemsPerPageText"
|
|
7324
|
+
id="input-544"
|
|
7325
|
+
readonly="readonly"
|
|
7326
|
+
type="text"
|
|
7327
|
+
aria-readonly="false"
|
|
7328
|
+
autocomplete="off"
|
|
7329
|
+
>
|
|
7330
|
+
</div>
|
|
7331
|
+
<div class="v-input__append-inner">
|
|
7332
|
+
<div class="v-input__icon v-input__icon--append">
|
|
7333
|
+
<i aria-hidden="true"
|
|
7334
|
+
class="v-icon notranslate material-icons theme--light"
|
|
7335
|
+
>
|
|
7336
|
+
$dropdown
|
|
7337
|
+
</i>
|
|
7338
|
+
</div>
|
|
7339
|
+
</div>
|
|
7340
|
+
<input type="hidden"
|
|
7341
|
+
value="10"
|
|
7342
|
+
>
|
|
7343
|
+
</div>
|
|
7344
|
+
<div class="v-menu">
|
|
7345
|
+
</div>
|
|
7346
|
+
</div>
|
|
7347
|
+
</div>
|
|
7348
|
+
</div>
|
|
7349
|
+
</div>
|
|
7350
|
+
<div class="v-data-footer__pagination">
|
|
7351
|
+
1-1 of 1
|
|
7352
|
+
</div>
|
|
7353
|
+
<div class="v-data-footer__icons-before">
|
|
7354
|
+
<button type="button"
|
|
7355
|
+
disabled="disabled"
|
|
7356
|
+
class="v-btn v-btn--disabled v-btn--flat v-btn--icon v-btn--round v-btn--text theme--light v-size--default"
|
|
7357
|
+
aria-label="Previous page"
|
|
7358
|
+
>
|
|
7359
|
+
<span class="v-btn__content">
|
|
7360
|
+
<i aria-hidden="true"
|
|
7361
|
+
class="v-icon notranslate material-icons theme--light"
|
|
7362
|
+
>
|
|
7363
|
+
$prev
|
|
7364
|
+
</i>
|
|
7365
|
+
</span>
|
|
7366
|
+
</button>
|
|
7367
|
+
</div>
|
|
7368
|
+
<div class="v-data-footer__icons-after">
|
|
7369
|
+
<button type="button"
|
|
7370
|
+
disabled="disabled"
|
|
7371
|
+
class="v-btn v-btn--disabled v-btn--flat v-btn--icon v-btn--round v-btn--text theme--light v-size--default"
|
|
7372
|
+
aria-label="Next page"
|
|
7373
|
+
>
|
|
7374
|
+
<span class="v-btn__content">
|
|
7375
|
+
<i aria-hidden="true"
|
|
7376
|
+
class="v-icon notranslate material-icons theme--light"
|
|
7377
|
+
>
|
|
7378
|
+
$next
|
|
7379
|
+
</i>
|
|
7380
|
+
</span>
|
|
7381
|
+
</button>
|
|
7382
|
+
</div>
|
|
7383
|
+
</div>
|
|
7384
|
+
</div>
|
|
7385
|
+
`;
|