vuetify 2.4.3 → 2.4.4
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 +3 -3
- package/dist/json/web-types.json +8 -8
- package/dist/vuetify.css +2 -2
- package/dist/vuetify.css.map +1 -1
- package/dist/vuetify.js +87 -61
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +2 -2
- package/es5/components/VDatePicker/VDatePicker.js +12 -38
- package/es5/components/VDatePicker/VDatePicker.js.map +1 -1
- package/es5/components/VDatePicker/mixins/date-picker-table.js +9 -1
- package/es5/components/VDatePicker/mixins/date-picker-table.js.map +1 -1
- package/es5/components/VDatePicker/util/index.js +8 -0
- package/es5/components/VDatePicker/util/index.js.map +1 -1
- package/es5/components/VDatePicker/util/sanitizeDateString.js +37 -0
- package/es5/components/VDatePicker/util/sanitizeDateString.js.map +1 -0
- package/es5/components/VPagination/VPagination.js +1 -0
- package/es5/components/VPagination/VPagination.js.map +1 -1
- package/es5/framework.js +1 -1
- package/lib/components/VDatePicker/VDatePicker.js +1 -12
- package/lib/components/VDatePicker/VDatePicker.js.map +1 -1
- package/lib/components/VDatePicker/mixins/date-picker-table.js +12 -2
- package/lib/components/VDatePicker/mixins/date-picker-table.js.map +1 -1
- package/lib/components/VDatePicker/util/index.js +2 -1
- package/lib/components/VDatePicker/util/index.js.map +1 -1
- package/lib/components/VDatePicker/util/sanitizeDateString.js +12 -0
- package/lib/components/VDatePicker/util/sanitizeDateString.js.map +1 -0
- package/lib/components/VPagination/VPagination.js +1 -0
- package/lib/components/VPagination/VPagination.js.map +1 -1
- package/lib/framework.js +1 -1
- package/package.json +2 -2
- package/src/components/VDatePicker/VDatePicker.ts +1 -7
- package/src/components/VDatePicker/__tests__/VDatePickerDateTable.spec.ts +32 -0
- package/src/components/VDatePicker/__tests__/VDatePickerMonthTable.spec.ts +32 -0
- package/src/components/VDatePicker/mixins/date-picker-table.ts +10 -2
- package/src/components/VDatePicker/util/__tests__/sanitizeDateString.spec.ts +10 -0
- package/src/components/VDatePicker/util/index.ts +2 -0
- package/src/components/VDatePicker/util/sanitizeDateString.ts +8 -0
- package/src/components/VPagination/VPagination.ts +1 -0
- package/src/components/VPagination/__tests__/__snapshots__/VPagination.spec.ts.snap +6 -3
- package/src/components/VTextField/VTextField.sass +2 -2
|
@@ -349,7 +349,8 @@ exports[`VPagination.ts should only render start and end of range if length is b
|
|
|
349
349
|
>
|
|
350
350
|
<ul class="v-pagination theme--light">
|
|
351
351
|
<li>
|
|
352
|
-
<button
|
|
352
|
+
<button disabled="disabled"
|
|
353
|
+
type="button"
|
|
353
354
|
aria-label="$vuetify.pagination.ariaLabel.previous"
|
|
354
355
|
class="v-pagination__navigation v-pagination__navigation--disabled"
|
|
355
356
|
>
|
|
@@ -694,7 +695,8 @@ exports[`VPagination.ts should render disabled buttons with length equals to 0 1
|
|
|
694
695
|
>
|
|
695
696
|
<ul class="v-pagination theme--light">
|
|
696
697
|
<li>
|
|
697
|
-
<button
|
|
698
|
+
<button disabled="disabled"
|
|
699
|
+
type="button"
|
|
698
700
|
aria-label="$vuetify.pagination.ariaLabel.previous"
|
|
699
701
|
class="v-pagination__navigation v-pagination__navigation--disabled"
|
|
700
702
|
>
|
|
@@ -705,7 +707,8 @@ exports[`VPagination.ts should render disabled buttons with length equals to 0 1
|
|
|
705
707
|
</button>
|
|
706
708
|
</li>
|
|
707
709
|
<li>
|
|
708
|
-
<button
|
|
710
|
+
<button disabled="disabled"
|
|
711
|
+
type="button"
|
|
709
712
|
aria-label="$vuetify.pagination.ariaLabel.next"
|
|
710
713
|
class="v-pagination__navigation v-pagination__navigation--disabled"
|
|
711
714
|
>
|