vuetify 1.5.20 → 1.5.24
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.css +13 -6
- package/dist/vuetify.css.map +1 -1
- package/dist/vuetify.js +28 -14
- 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 -0
- package/es5/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/es5/components/VCombobox/VCombobox.js +1 -1
- package/es5/components/VCombobox/VCombobox.js.map +1 -1
- package/es5/components/VDataTable/mixins/body.js +5 -1
- package/es5/components/VDataTable/mixins/body.js.map +1 -1
- package/es5/components/VInput/VInput.js +2 -2
- package/es5/components/VInput/VInput.js.map +1 -1
- package/es5/components/VSelect/VSelect.js +4 -4
- package/es5/components/VSelect/VSelect.js.map +1 -1
- package/es5/components/VTextField/VTextField.js +12 -5
- package/es5/components/VTextField/VTextField.js.map +1 -1
- package/es5/components/Vuetify/index.js +1 -1
- package/es5/index.js +1 -1
- package/es5/util/mask.js +1 -1
- package/es5/util/mask.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.js +4 -0
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VCombobox/VCombobox.js +1 -1
- package/lib/components/VCombobox/VCombobox.js.map +1 -1
- package/lib/components/VDataTable/mixins/body.js +5 -1
- package/lib/components/VDataTable/mixins/body.js.map +1 -1
- package/lib/components/VInput/VInput.js +2 -2
- package/lib/components/VInput/VInput.js.map +1 -1
- package/lib/components/VSelect/VSelect.js +4 -4
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/components/VTextField/VTextField.js +12 -5
- package/lib/components/VTextField/VTextField.js.map +1 -1
- package/lib/components/Vuetify/index.js +1 -1
- package/lib/util/mask.js +1 -1
- package/lib/util/mask.js.map +1 -1
- package/package.json +2 -2
- package/src/components/VAutocomplete/VAutocomplete.js +4 -0
- package/src/components/VCombobox/VCombobox.js +1 -1
- package/src/components/VDataTable/mixins/body.js +6 -1
- package/src/components/VInput/VInput.ts +2 -2
- package/src/components/VSelect/VSelect.js +7 -4
- package/src/components/VTextField/VTextField.js +8 -3
- package/src/stylus/components/_data-table.styl +9 -2
- package/src/stylus/components/_tables.styl +2 -2
- package/src/stylus/settings/_theme.styl +2 -0
- package/src/util/mask.ts +1 -1
package/dist/vuetify.css
CHANGED
|
@@ -6789,8 +6789,8 @@ p {
|
|
|
6789
6789
|
.theme--light.v-table thead th {
|
|
6790
6790
|
color: rgba(0,0,0,0.54);
|
|
6791
6791
|
}
|
|
6792
|
-
.theme--light.v-table tbody tr:not(:
|
|
6793
|
-
border-
|
|
6792
|
+
.theme--light.v-table tbody tr:not(:first-child) {
|
|
6793
|
+
border-top: 1px solid rgba(0,0,0,0.12);
|
|
6794
6794
|
}
|
|
6795
6795
|
.theme--light.v-table tbody tr[active] {
|
|
6796
6796
|
background: #f5f5f5;
|
|
@@ -6811,8 +6811,8 @@ p {
|
|
|
6811
6811
|
.theme--dark.v-table thead th {
|
|
6812
6812
|
color: rgba(255,255,255,0.7);
|
|
6813
6813
|
}
|
|
6814
|
-
.theme--dark.v-table tbody tr:not(:
|
|
6815
|
-
border-
|
|
6814
|
+
.theme--dark.v-table tbody tr:not(:first-child) {
|
|
6815
|
+
border-top: 1px solid rgba(255,255,255,0.12);
|
|
6816
6816
|
}
|
|
6817
6817
|
.theme--dark.v-table tbody tr[active] {
|
|
6818
6818
|
background: #505050;
|
|
@@ -6917,6 +6917,9 @@ table.v-table tfoot tr td {
|
|
|
6917
6917
|
color: rgba(0,0,0,0.54);
|
|
6918
6918
|
border-top: 1px solid rgba(0,0,0,0.12);
|
|
6919
6919
|
}
|
|
6920
|
+
.theme--light.v-datatable .v-datatable__expand-col--expanded {
|
|
6921
|
+
border-bottom: 1px solid #e0e0e0;
|
|
6922
|
+
}
|
|
6920
6923
|
.theme--dark.v-datatable thead th.column.sortable .v-icon {
|
|
6921
6924
|
color: rgba(255,255,255,0.5);
|
|
6922
6925
|
}
|
|
@@ -6934,6 +6937,9 @@ table.v-table tfoot tr td {
|
|
|
6934
6937
|
color: rgba(255,255,255,0.7);
|
|
6935
6938
|
border-top: 1px solid rgba(255,255,255,0.12);
|
|
6936
6939
|
}
|
|
6940
|
+
.theme--dark.v-datatable .v-datatable__expand-col--expanded {
|
|
6941
|
+
border-bottom: 1px solid #616161;
|
|
6942
|
+
}
|
|
6937
6943
|
.v-datatable .v-input--selection-controls {
|
|
6938
6944
|
margin: 0;
|
|
6939
6945
|
padding: 0;
|
|
@@ -7021,14 +7027,15 @@ table.v-table tfoot tr td {
|
|
|
7021
7027
|
margin: 0;
|
|
7022
7028
|
}
|
|
7023
7029
|
.v-datatable__expand-row {
|
|
7024
|
-
border: none !important;
|
|
7030
|
+
border-top: none !important;
|
|
7025
7031
|
}
|
|
7026
7032
|
.v-datatable__expand-col {
|
|
7027
7033
|
padding: 0 !important;
|
|
7028
7034
|
height: 0px !important;
|
|
7035
|
+
visibility: hidden;
|
|
7029
7036
|
}
|
|
7030
7037
|
.v-datatable__expand-col--expanded {
|
|
7031
|
-
|
|
7038
|
+
visibility: visible;
|
|
7032
7039
|
}
|
|
7033
7040
|
.v-datatable__expand-content {
|
|
7034
7041
|
transition: height 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
|