@vuetify/nightly 2.6.4 → 2.6.5-master-20220324.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 CHANGED
@@ -1,15 +1,13 @@
1
- # [](https://github.com/vuetifyjs/vuetify/compare/v2.6.4...v) (2022-03-08)
1
+ # [](https://github.com/vuetifyjs/vuetify/compare/v2.6.5-master-20220324.0...v) (2022-03-24)
2
2
 
3
3
 
4
4
 
5
- ## [2.6.4](https://github.com/vuetifyjs/vuetify/compare/v2.6.3...v2.6.4) (2022-03-07)
5
+ ## [2.6.5-master-20220324.0](https://github.com/vuetifyjs/vuetify/compare/v2.6.4...v2.6.5-master-20220324.0) (2022-03-24)
6
6
 
7
7
 
8
8
  ### Bug Fixes
9
9
 
10
- * **VPagination:** get available width before initial mount ([472bbb4](https://github.com/vuetifyjs/vuetify/commit/472bbb4afd3da91656702b62f8c385cf61de1ccd)), closes [#14590](https://github.com/vuetifyjs/vuetify/issues/14590)
11
- * remove duplicate toggleable mixin ([860be6b](https://github.com/vuetifyjs/vuetify/commit/860be6b0bff74b6cd81320259879ae9dc5a77f1d)), closes [#14719](https://github.com/vuetifyjs/vuetify/issues/14719)
12
- * **VSelect:** update menu position on selection change ([5974a84](https://github.com/vuetifyjs/vuetify/commit/5974a840b703cb8dbfba615cac4d6a16cf30ebb9)), closes [#14688](https://github.com/vuetifyjs/vuetify/issues/14688)
10
+ * **selection controls:** emit focus/blur events ([75404fb](https://github.com/vuetifyjs/vuetify/commit/75404fb66e61d4b4d5b759506ac0d4c7a56a3755)), closes [#14862](https://github.com/vuetifyjs/vuetify/issues/14862)
13
11
 
14
12
 
15
13
 
@@ -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.4",
5
+ "version": "2.6.5-master-20220324.0",
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-03-08",
5143
+ "default": "2022-03-24",
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-03-08",
6772
+ "default": "2022-03-24",
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-03-08",
6990
+ "default": "2022-03-24",
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-03-08",
7208
+ "default": "2022-03-24",
7209
7209
  "value": {
7210
7210
  "kind": "expression",
7211
7211
  "type": [
package/dist/vuetify.js CHANGED
@@ -35001,7 +35001,7 @@ function () {
35001
35001
 
35002
35002
  Vuetify.install = _install__WEBPACK_IMPORTED_MODULE_0__["install"];
35003
35003
  Vuetify.installed = false;
35004
- Vuetify.version = "2.6.4";
35004
+ Vuetify.version = "2.6.5-master-20220324.0";
35005
35005
  Vuetify.config = {
35006
35006
  silent: false
35007
35007
  };
@@ -41605,9 +41605,6 @@ function prevent(e) {
41605
41605
  ref: 'input'
41606
41606
  });
41607
41607
  },
41608
- onBlur: function onBlur() {
41609
- this.isFocused = false;
41610
- },
41611
41608
  onClick: function onClick(e) {
41612
41609
  this.onChange();
41613
41610
  this.$emit('click', e);
@@ -41644,8 +41641,13 @@ function prevent(e) {
41644
41641
  this.internalValue = input;
41645
41642
  this.hasColor = input;
41646
41643
  },
41647
- onFocus: function onFocus() {
41644
+ onFocus: function onFocus(e) {
41648
41645
  this.isFocused = true;
41646
+ this.$emit('focus', e);
41647
+ },
41648
+ onBlur: function onBlur(e) {
41649
+ this.isFocused = false;
41650
+ this.$emit('blur', e);
41649
41651
  },
41650
41652
 
41651
41653
  /** @abstract */