vuetify 2.6.3 → 2.6.6
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 +2 -2
- package/dist/json/web-types.json +7 -7
- package/dist/vuetify.css +7 -8
- package/dist/vuetify.css.map +1 -1
- package/dist/vuetify.js +140 -95
- 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 +28 -5
- package/es5/components/VDatePicker/VDatePicker.js.map +1 -1
- package/es5/components/VDialog/VDialog.js +1 -4
- package/es5/components/VDialog/VDialog.js.map +1 -1
- package/es5/components/VImg/VImg.js +6 -2
- package/es5/components/VImg/VImg.js.map +1 -1
- package/es5/components/VMenu/VMenu.js +1 -3
- package/es5/components/VMenu/VMenu.js.map +1 -1
- package/es5/components/VOverflowBtn/VOverflowBtn.js +3 -0
- package/es5/components/VOverflowBtn/VOverflowBtn.js.map +1 -1
- package/es5/components/VPagination/VPagination.js +2 -1
- package/es5/components/VPagination/VPagination.js.map +1 -1
- package/es5/components/VResponsive/VResponsive.js +3 -1
- package/es5/components/VResponsive/VResponsive.js.map +1 -1
- package/es5/components/VSelect/VSelect.js +53 -49
- package/es5/components/VSelect/VSelect.js.map +1 -1
- package/es5/components/VTooltip/VTooltip.js +1 -3
- package/es5/components/VTooltip/VTooltip.js.map +1 -1
- package/es5/components/VTreeview/VTreeview.js +1 -1
- package/es5/components/VTreeview/VTreeview.js.map +1 -1
- package/es5/framework.js +1 -1
- package/es5/locale/ca.js +7 -7
- package/es5/locale/ca.js.map +1 -1
- package/es5/locale/es.js +3 -3
- package/es5/locale/es.js.map +1 -1
- package/es5/locale/fi.js +5 -5
- package/es5/locale/fi.js.map +1 -1
- package/es5/mixins/selectable/index.js +6 -4
- package/es5/mixins/selectable/index.js.map +1 -1
- package/es5/services/icons/presets/mdi-svg.js +5 -5
- package/es5/services/icons/presets/mdi-svg.js.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.js +7 -5
- package/lib/components/VDatePicker/VDatePicker.js.map +1 -1
- package/lib/components/VDialog/VDialog.js +2 -4
- package/lib/components/VDialog/VDialog.js.map +1 -1
- package/lib/components/VImg/VImg.js +5 -2
- package/lib/components/VImg/VImg.js.map +1 -1
- package/lib/components/VMenu/VMenu.js +1 -2
- package/lib/components/VMenu/VMenu.js.map +1 -1
- package/lib/components/VOverflowBtn/VOverflowBtn.js +4 -0
- package/lib/components/VOverflowBtn/VOverflowBtn.js.map +1 -1
- package/lib/components/VPagination/VPagination.js +2 -1
- package/lib/components/VPagination/VPagination.js.map +1 -1
- package/lib/components/VResponsive/VResponsive.js +2 -1
- package/lib/components/VResponsive/VResponsive.js.map +1 -1
- package/lib/components/VSelect/VSelect.js +9 -7
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/components/VTooltip/VTooltip.js +2 -3
- package/lib/components/VTooltip/VTooltip.js.map +1 -1
- package/lib/components/VTreeview/VTreeview.js +1 -1
- package/lib/components/VTreeview/VTreeview.js.map +1 -1
- package/lib/framework.js +1 -1
- package/lib/locale/ca.js +7 -7
- package/lib/locale/ca.js.map +1 -1
- package/lib/locale/es.js +3 -3
- package/lib/locale/es.js.map +1 -1
- package/lib/locale/fi.js +5 -5
- package/lib/locale/fi.js.map +1 -1
- package/lib/mixins/selectable/index.js +7 -5
- package/lib/mixins/selectable/index.js.map +1 -1
- package/lib/services/icons/presets/mdi-svg.js +5 -5
- package/lib/services/icons/presets/mdi-svg.js.map +1 -1
- package/package.json +4 -3
- package/src/components/VCalendar/VCalendarCategory.sass +6 -7
- package/src/components/VDatePicker/VDatePicker.ts +11 -5
- package/src/components/VDialog/VDialog.ts +1 -4
- package/src/components/VImg/VImg.ts +4 -2
- package/src/components/VMenu/VMenu.ts +2 -4
- package/src/components/VOverflowBtn/VOverflowBtn.ts +3 -0
- package/src/components/VOverflowBtn/__tests__/VOverflowBtn.spec.ts +18 -0
- package/src/components/VOverflowBtn/__tests__/__snapshots__/VOverflowBtn.spec.ts.snap +96 -0
- package/src/components/VPagination/VPagination.ts +2 -1
- package/src/components/VPagination/__tests__/VPagination.spec.ts +3 -1
- package/src/components/VPagination/__tests__/__snapshots__/VPagination.spec.ts.snap +3 -3
- package/src/components/VResponsive/VResponsive.ts +2 -1
- package/src/components/VSelect/VSelect.sass +1 -1
- package/src/components/VSelect/VSelect.ts +6 -8
- package/src/components/VTooltip/VTooltip.ts +1 -2
- package/src/components/VTreeview/VTreeview.ts +6 -1
- package/src/locale/ca.ts +7 -7
- package/src/locale/es.ts +3 -3
- package/src/locale/fi.ts +5 -5
- package/src/mixins/selectable/index.ts +6 -4
- package/src/services/icons/presets/mdi-svg.ts +5 -5
|
@@ -5605,7 +5605,7 @@
|
|
|
5605
5605
|
},
|
|
5606
5606
|
"v-overflow-btn/persistent-placeholder": {
|
|
5607
5607
|
"type": "boolean",
|
|
5608
|
-
"description": "Forces
|
|
5608
|
+
"description": "Forces label to always be visible"
|
|
5609
5609
|
},
|
|
5610
5610
|
"v-overflow-btn/placeholder": {
|
|
5611
5611
|
"type": "string",
|
|
@@ -6309,7 +6309,7 @@
|
|
|
6309
6309
|
},
|
|
6310
6310
|
"v-rating/background-color": {
|
|
6311
6311
|
"type": "string",
|
|
6312
|
-
"description": "The color used empty icons"
|
|
6312
|
+
"description": "The color used for empty icons"
|
|
6313
6313
|
},
|
|
6314
6314
|
"v-rating/clearable": {
|
|
6315
6315
|
"type": "boolean",
|
package/dist/json/web-types.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "http://json.schemastore.org/web-types",
|
|
3
3
|
"framework": "vue",
|
|
4
4
|
"name": "vuetify",
|
|
5
|
-
"version": "2.6.
|
|
5
|
+
"version": "2.6.6",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -5140,7 +5140,7 @@
|
|
|
5140
5140
|
"name": "start",
|
|
5141
5141
|
"description": "The starting date on the calendar (inclusive) in the format of `YYYY-MM-DD`. This may be ignored depending on the `type` of the calendar.",
|
|
5142
5142
|
"doc-url": "https://www.vuetifyjs.com/api/v-calendar#props",
|
|
5143
|
-
"default": "2022-
|
|
5143
|
+
"default": "2022-05-17",
|
|
5144
5144
|
"value": {
|
|
5145
5145
|
"kind": "expression",
|
|
5146
5146
|
"type": [
|
|
@@ -6769,7 +6769,7 @@
|
|
|
6769
6769
|
"name": "start",
|
|
6770
6770
|
"description": "The starting date on the calendar (inclusive) in the format of `YYYY-MM-DD`. This may be ignored depending on the `type` of the calendar.",
|
|
6771
6771
|
"doc-url": "https://www.vuetifyjs.com/api/v-calendar-daily#props",
|
|
6772
|
-
"default": "2022-
|
|
6772
|
+
"default": "2022-05-17",
|
|
6773
6773
|
"value": {
|
|
6774
6774
|
"kind": "expression",
|
|
6775
6775
|
"type": [
|
|
@@ -6987,7 +6987,7 @@
|
|
|
6987
6987
|
"name": "start",
|
|
6988
6988
|
"description": "The starting date on the calendar (inclusive) in the format of `YYYY-MM-DD`. This may be ignored depending on the `type` of the calendar.",
|
|
6989
6989
|
"doc-url": "https://www.vuetifyjs.com/api/v-calendar-weekly#props",
|
|
6990
|
-
"default": "2022-
|
|
6990
|
+
"default": "2022-05-17",
|
|
6991
6991
|
"value": {
|
|
6992
6992
|
"kind": "expression",
|
|
6993
6993
|
"type": [
|
|
@@ -7205,7 +7205,7 @@
|
|
|
7205
7205
|
"name": "start",
|
|
7206
7206
|
"description": "The starting date on the calendar (inclusive) in the format of `YYYY-MM-DD`. This may be ignored depending on the `type` of the calendar.",
|
|
7207
7207
|
"doc-url": "https://www.vuetifyjs.com/api/v-calendar-monthly#props",
|
|
7208
|
-
"default": "2022-
|
|
7208
|
+
"default": "2022-05-17",
|
|
7209
7209
|
"value": {
|
|
7210
7210
|
"kind": "expression",
|
|
7211
7211
|
"type": [
|
|
@@ -21809,7 +21809,7 @@
|
|
|
21809
21809
|
},
|
|
21810
21810
|
{
|
|
21811
21811
|
"name": "persistent-placeholder",
|
|
21812
|
-
"description": "Forces
|
|
21812
|
+
"description": "Forces label to always be visible",
|
|
21813
21813
|
"doc-url": "https://www.vuetifyjs.com/api/v-overflow-btn#props",
|
|
21814
21814
|
"default": "false",
|
|
21815
21815
|
"value": {
|
|
@@ -24681,7 +24681,7 @@
|
|
|
24681
24681
|
"attributes": [
|
|
24682
24682
|
{
|
|
24683
24683
|
"name": "background-color",
|
|
24684
|
-
"description": "The color used empty icons",
|
|
24684
|
+
"description": "The color used for empty icons",
|
|
24685
24685
|
"doc-url": "https://www.vuetifyjs.com/api/v-rating#props",
|
|
24686
24686
|
"default": "'accent'",
|
|
24687
24687
|
"value": {
|
package/dist/vuetify.css
CHANGED
|
@@ -19488,7 +19488,6 @@ html.overflow-y-hidden {
|
|
|
19488
19488
|
}
|
|
19489
19489
|
.theme--light.v-select .v-select__selections {
|
|
19490
19490
|
color: rgba(0, 0, 0, 0.87);
|
|
19491
|
-
min-height: 10px;
|
|
19492
19491
|
}
|
|
19493
19492
|
.theme--light.v-select.v-input--is-disabled .v-select__selections {
|
|
19494
19493
|
color: rgba(0, 0, 0, 0.38);
|
|
@@ -19502,7 +19501,6 @@ html.overflow-y-hidden {
|
|
|
19502
19501
|
|
|
19503
19502
|
.theme--dark.v-select .v-select__selections {
|
|
19504
19503
|
color: #FFFFFF;
|
|
19505
|
-
min-height: 10px;
|
|
19506
19504
|
}
|
|
19507
19505
|
.theme--dark.v-select.v-input--is-disabled .v-select__selections {
|
|
19508
19506
|
color: rgba(255, 255, 255, 0.5);
|
|
@@ -19614,6 +19612,7 @@ html.overflow-y-hidden {
|
|
|
19614
19612
|
}
|
|
19615
19613
|
.v-select__selection--comma {
|
|
19616
19614
|
margin: 7px 4px 7px 0;
|
|
19615
|
+
min-height: 10px;
|
|
19617
19616
|
overflow: hidden;
|
|
19618
19617
|
text-overflow: ellipsis;
|
|
19619
19618
|
white-space: nowrap;
|
|
@@ -22437,13 +22436,13 @@ html.overflow-y-hidden {
|
|
|
22437
22436
|
.theme--light.v-calendar-category .v-calendar-category__column-header {
|
|
22438
22437
|
border-right: #e0e0e0 1px solid;
|
|
22439
22438
|
}
|
|
22440
|
-
.theme--light.v-calendar-category .v-calendar-
|
|
22439
|
+
.theme--light.v-calendar-category .v-calendar-daily__head {
|
|
22441
22440
|
background: #FFFFFF;
|
|
22442
22441
|
}
|
|
22443
|
-
.theme--light.v-calendar-category .v-calendar-
|
|
22442
|
+
.theme--light.v-calendar-category .v-calendar-daily__intervals-head {
|
|
22444
22443
|
background: #FFFFFF;
|
|
22445
22444
|
}
|
|
22446
|
-
.theme--light.v-calendar-category .v-calendar-
|
|
22445
|
+
.theme--light.v-calendar-category .v-calendar-daily__intervals-body {
|
|
22447
22446
|
background: #FFFFFF;
|
|
22448
22447
|
}
|
|
22449
22448
|
|
|
@@ -22451,13 +22450,13 @@ html.overflow-y-hidden {
|
|
|
22451
22450
|
.theme--dark.v-calendar-category .v-calendar-category__column-header {
|
|
22452
22451
|
border-right: #9e9e9e 1px solid;
|
|
22453
22452
|
}
|
|
22454
|
-
.theme--dark.v-calendar-category .v-calendar-
|
|
22453
|
+
.theme--dark.v-calendar-category .v-calendar-daily__head {
|
|
22455
22454
|
background: #303030;
|
|
22456
22455
|
}
|
|
22457
|
-
.theme--dark.v-calendar-category .v-calendar-
|
|
22456
|
+
.theme--dark.v-calendar-category .v-calendar-daily__intervals-head {
|
|
22458
22457
|
background: #303030;
|
|
22459
22458
|
}
|
|
22460
|
-
.theme--dark.v-calendar-category .v-calendar-
|
|
22459
|
+
.theme--dark.v-calendar-category .v-calendar-daily__intervals-body {
|
|
22461
22460
|
background: #303030;
|
|
22462
22461
|
}
|
|
22463
22462
|
|