@vuetify/nightly 2.6.9 → 2.6.10-master-20220906.0
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/CHANGELOG.md +5 -8
- package/dist/json/web-types.json +5 -5
- package/dist/vuetify.css +7 -0
- package/dist/vuetify.css.map +1 -1
- package/dist/vuetify.js +8 -3
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +2 -2
- package/es5/components/VInput/VInput.js +2 -1
- package/es5/components/VInput/VInput.js.map +1 -1
- package/es5/framework.js +1 -1
- package/es5/mixins/menuable/index.js +5 -1
- package/es5/mixins/menuable/index.js.map +1 -1
- package/lib/components/VInput/VInput.js +2 -1
- package/lib/components/VInput/VInput.js.map +1 -1
- package/lib/framework.js +1 -1
- package/lib/mixins/menuable/index.js +5 -1
- package/lib/mixins/menuable/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/VFileInput/__tests__/__snapshots__/VFileInput.spec.ts.snap +7 -0
- package/src/components/VInput/VInput.ts +1 -0
- package/src/components/VSelect/__tests__/__snapshots__/VSelect2.spec.ts.snap +2 -0
- package/src/components/VTextField/VTextField.sass +9 -0
- package/src/mixins/menuable/index.ts +4 -1
package/dist/vuetify.js
CHANGED
|
@@ -18007,7 +18007,8 @@ var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_8__["default"])(_m
|
|
|
18007
18007
|
color: this.validationState,
|
|
18008
18008
|
dark: this.dark,
|
|
18009
18009
|
disabled: this.isDisabled,
|
|
18010
|
-
light: this.light
|
|
18010
|
+
light: this.light,
|
|
18011
|
+
tabindex: type === 'clear' ? -1 : undefined
|
|
18011
18012
|
},
|
|
18012
18013
|
on: !hasListener ? undefined : {
|
|
18013
18014
|
click: function click(e) {
|
|
@@ -35139,7 +35140,7 @@ function () {
|
|
|
35139
35140
|
|
|
35140
35141
|
Vuetify.install = _install__WEBPACK_IMPORTED_MODULE_0__["install"];
|
|
35141
35142
|
Vuetify.installed = false;
|
|
35142
|
-
Vuetify.version = "2.6.
|
|
35143
|
+
Vuetify.version = "2.6.10-master-20220906.0";
|
|
35143
35144
|
Vuetify.config = {
|
|
35144
35145
|
silent: false
|
|
35145
35146
|
};
|
|
@@ -40430,7 +40431,11 @@ var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_4__["default"])(_s
|
|
|
40430
40431
|
}
|
|
40431
40432
|
},
|
|
40432
40433
|
checkActivatorFixed: function checkActivatorFixed() {
|
|
40433
|
-
if (this.attach !== false)
|
|
40434
|
+
if (this.attach !== false) {
|
|
40435
|
+
this.activatorFixed = false;
|
|
40436
|
+
return;
|
|
40437
|
+
}
|
|
40438
|
+
|
|
40434
40439
|
var el = this.getActivator();
|
|
40435
40440
|
|
|
40436
40441
|
while (el) {
|