vuetify 2.6.11 → 2.6.13
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/LICENSE.md +1 -1
- package/dist/json/attributes.json +12 -104
- package/dist/json/tags.json +0 -23
- package/dist/json/web-types.json +29 -266
- package/dist/vuetify.css +2 -2
- package/dist/vuetify.css.map +1 -1
- package/dist/vuetify.js +16 -12
- 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 +0 -4
- package/es5/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/es5/components/VCalendar/mixins/calendar-with-events.js +3 -1
- package/es5/components/VCalendar/mixins/calendar-with-events.js.map +1 -1
- package/es5/components/VCombobox/VCombobox.js +1 -0
- package/es5/components/VCombobox/VCombobox.js.map +1 -1
- package/es5/components/VDataTable/VDataTable.js +2 -2
- package/es5/components/VDataTable/VDataTable.js.map +1 -1
- package/es5/components/VFileInput/VFileInput.js +6 -3
- package/es5/components/VFileInput/VFileInput.js.map +1 -1
- package/es5/directives/ripple/index.js +3 -1
- package/es5/directives/ripple/index.js.map +1 -1
- package/es5/framework.js +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.js +0 -4
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VCalendar/mixins/calendar-with-events.js +3 -1
- package/lib/components/VCalendar/mixins/calendar-with-events.js.map +1 -1
- package/lib/components/VCombobox/VCombobox.js +1 -0
- package/lib/components/VCombobox/VCombobox.js.map +1 -1
- package/lib/components/VDataTable/VDataTable.js +1 -1
- package/lib/components/VDataTable/VDataTable.js.map +1 -1
- package/lib/components/VFileInput/VFileInput.js +6 -2
- package/lib/components/VFileInput/VFileInput.js.map +1 -1
- package/lib/directives/ripple/index.js +3 -1
- package/lib/directives/ripple/index.js.map +1 -1
- package/lib/framework.js +1 -1
- package/package.json +2 -2
- package/src/components/VAutocomplete/VAutocomplete.ts +0 -4
- package/src/components/VCalendar/mixins/calendar-with-events.ts +1 -1
- package/src/components/VCombobox/VCombobox.ts +1 -0
- package/src/components/VDataTable/VDataTable.ts +1 -1
- package/src/components/VDialog/__tests__/VDialog.spec.ts +1 -1
- package/src/components/VFileInput/VFileInput.ts +7 -2
- package/src/components/VStepper/VStepper.sass +2 -2
- package/src/directives/ripple/index.ts +1 -1
|
@@ -204,7 +204,7 @@ export default VTextField.extend({
|
|
|
204
204
|
|
|
205
205
|
// This solves an issue in Safari where
|
|
206
206
|
// nothing happens when adding a file
|
|
207
|
-
//
|
|
207
|
+
// due to the input event not firing
|
|
208
208
|
// https://github.com/vuetifyjs/vuetify/issues/7941
|
|
209
209
|
delete input.data!.on!.input
|
|
210
210
|
input.data!.on!.change = this.onInput
|
|
@@ -259,7 +259,12 @@ export default VTextField.extend({
|
|
|
259
259
|
|
|
260
260
|
node.data!.on = {
|
|
261
261
|
...(node.data!.on || {}),
|
|
262
|
-
click: () =>
|
|
262
|
+
click: (e: MouseEvent) => {
|
|
263
|
+
// Clicking the label already delegates to input element, so we shouldn't click it twice
|
|
264
|
+
if (e.target && (e.target as HTMLElement).nodeName === 'LABEL') return
|
|
265
|
+
|
|
266
|
+
this.$refs.input.click()
|
|
267
|
+
},
|
|
263
268
|
}
|
|
264
269
|
|
|
265
270
|
return node
|
|
@@ -128,7 +128,7 @@
|
|
|
128
128
|
font-size: $stepper-step-error-icon-font-size
|
|
129
129
|
color: inherit
|
|
130
130
|
|
|
131
|
-
.v-stepper__label
|
|
131
|
+
.v-stepper & .v-stepper__label
|
|
132
132
|
color: inherit
|
|
133
133
|
text-shadow: none
|
|
134
134
|
font-weight: 500
|
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
padding: $stepper-vertical-content-ltr-padding
|
|
187
187
|
+rtl()
|
|
188
188
|
padding: $stepper-vertical-content-rtl-padding
|
|
189
|
-
|
|
189
|
+
|
|
190
190
|
width: auto
|
|
191
191
|
+ltr()
|
|
192
192
|
margin: $stepper-vertical-content-ltr-margin
|