@zeedhi/vuetify 1.90.1 → 1.91.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.
@@ -45072,7 +45072,7 @@ __vue_render__$16._withStripped = true;
45072
45072
  /* style */
45073
45073
  const __vue_inject_styles__$16 = function (inject) {
45074
45074
  if (!inject) return
45075
- inject("data-v-28a85c8a_0", { source: ".zd-form {\n overflow-x: hidden;\n padding-bottom: 4px;\n}\n.zd-form > .row {\n height: 100%;\n align-content: flex-start;\n margin: 0 -12px;\n}\n.zd-form > .row.row--dense {\n margin: 0 -4px;\n}", map: undefined, media: undefined });
45075
+ inject("data-v-076cbf35_0", { source: ".zd-form {\n padding: 0 4px 4px 4px;\n}\n.zd-form > .row {\n height: 100%;\n align-content: flex-start;\n margin: 0 -12px;\n}\n.zd-form > .row.row--dense {\n margin: 0 -4px;\n}", map: undefined, media: undefined });
45076
45076
 
45077
45077
  };
45078
45078
  /* scoped */
@@ -51647,6 +51647,11 @@ let ZdSelect = class ZdSelect extends __vue_component__$1h {
51647
51647
  selectBlur(event) {
51648
51648
  if (this.$el.contains(document.activeElement))
51649
51649
  return;
51650
+ // manually calls VSelect.blur if component is still focused
51651
+ // this fixes a bug when tabbing out using mobile's "enter" key
51652
+ if (this.componentRef.isFocused) {
51653
+ this.componentRef.blur();
51654
+ }
51650
51655
  this.blur(event);
51651
51656
  }
51652
51657
  formattedDataFunc(item) {
@@ -45071,7 +45071,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
45071
45071
  /* style */
45072
45072
  const __vue_inject_styles__$16 = function (inject) {
45073
45073
  if (!inject) return
45074
- inject("data-v-28a85c8a_0", { source: ".zd-form {\n overflow-x: hidden;\n padding-bottom: 4px;\n}\n.zd-form > .row {\n height: 100%;\n align-content: flex-start;\n margin: 0 -12px;\n}\n.zd-form > .row.row--dense {\n margin: 0 -4px;\n}", map: undefined, media: undefined });
45074
+ inject("data-v-076cbf35_0", { source: ".zd-form {\n padding: 0 4px 4px 4px;\n}\n.zd-form > .row {\n height: 100%;\n align-content: flex-start;\n margin: 0 -12px;\n}\n.zd-form > .row.row--dense {\n margin: 0 -4px;\n}", map: undefined, media: undefined });
45075
45075
 
45076
45076
  };
45077
45077
  /* scoped */
@@ -51646,6 +51646,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
51646
51646
  selectBlur(event) {
51647
51647
  if (this.$el.contains(document.activeElement))
51648
51648
  return;
51649
+ // manually calls VSelect.blur if component is still focused
51650
+ // this fixes a bug when tabbing out using mobile's "enter" key
51651
+ if (this.componentRef.isFocused) {
51652
+ this.componentRef.blur();
51653
+ }
51649
51654
  this.blur(event);
51650
51655
  }
51651
51656
  formattedDataFunc(item) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zeedhi/vuetify",
3
- "version": "1.90.1",
3
+ "version": "1.91.0",
4
4
  "description": "Zeedhi Components based on Vuetify",
5
5
  "author": "Zeedhi <zeedhi@teknisa.com>",
6
6
  "license": "ISC",
@@ -51,5 +51,5 @@
51
51
  "@types/prismjs": "1.26.*",
52
52
  "@types/sortablejs": "1.15.*"
53
53
  },
54
- "gitHead": "be90b18bc571fcba290fa0c732dc9b20bc32b920"
54
+ "gitHead": "339335452076396bc99e4762022332e59bab4e71"
55
55
  }