@zeedhi/vuetify 1.89.0 → 1.90.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.
@@ -41970,6 +41970,7 @@ let ZdNumber = class ZdNumber extends __vue_component__$1h {
41970
41970
  this.autoNumericInit = true;
41971
41971
  const inputRef = this.$el.getElementsByTagName('input')[0];
41972
41972
  this.instance.autoNumericObj = new AutoNumeric(inputRef, Object.assign(Object.assign({}, this.instance.mask), { emptyInputBehavior: 'null' }));
41973
+ inputRef.inputMode = 'numeric';
41973
41974
  }
41974
41975
  beforeDestroy() {
41975
41976
  if (this.autoNumericInit) {
@@ -51816,289 +51817,302 @@ var __vue_render__$K = function () {
51816
51817
  var _vm = this;
51817
51818
  var _h = _vm.$createElement;
51818
51819
  var _c = _vm._self._c || _h;
51819
- return _c(_vm.instance.autocomplete ? "v-autocomplete" : "v-select", {
51820
- directives: [
51821
- {
51822
- name: "show",
51823
- rawName: "v-show",
51824
- value: _vm.instance.isVisible,
51825
- expression: "instance.isVisible",
51826
- },
51827
- ],
51828
- ref: "instance",
51829
- tag: "component",
51830
- class: [
51831
- _vm.instance.cssClass,
51832
- "zd-input",
51833
- "zd-select",
51834
- "zd-text-input",
51820
+ return _c(
51821
+ _vm.instance.autocomplete ? "v-autocomplete" : "v-select",
51822
+ _vm._g(
51835
51823
  {
51836
- "zd-no-label": !_vm.instance.showLabel,
51837
- "zd-no-helper":
51838
- !_vm.instance.showHelper &&
51839
- !(
51840
- _vm.instance.alwaysShowError &&
51841
- _vm.$refs.instance &&
51842
- _vm.$refs.instance.errorBucket.length
51843
- ),
51844
- "zd-no-border": !_vm.instance.showBorder,
51845
- "zd-dense": _vm.instance.dense,
51846
- "zd-select-autocomplete": _vm.instance.autocomplete,
51847
- "zd-input-required": _vm.instance.validations.required,
51848
- },
51849
- "zd-select-align-" +
51850
- (_vm.instance.reverse ? "right" : _vm.instance.align),
51851
- ],
51852
- style: _vm.instance.cssStyle,
51853
- attrs: {
51854
- id: _vm.instance.name,
51855
- "return-object": "",
51856
- "validate-on-blur": "",
51857
- "no-data-text": _vm.$t("NO_DATA"),
51858
- "no-filter": "",
51859
- name: _vm.instance.name,
51860
- loading: _vm.instance.datasource.loading,
51861
- clearable:
51862
- _vm.instance.clearable &&
51863
- !_vm.instance.readonly &&
51864
- !_vm.instance.disabled,
51865
- attach: _vm.instance.attach,
51866
- color: _vm.instance.color,
51867
- dark: _vm.instance.dark,
51868
- disabled: _vm.instance.disabled,
51869
- readonly: _vm.instance.readonly,
51870
- items: _vm.items,
51871
- "item-text": _vm.formattedDataFunc,
51872
- "item-value": _vm.instance.dataValue,
51873
- "item-disabled": _vm.instance.dataDisabled,
51874
- maxLength: _vm.instance.maxLength,
51875
- label: _vm.instance.showLabel ? _vm.$t(_vm.instance.label) : undefined,
51876
- placeholder: _vm.$t(_vm.instance.placeholder),
51877
- hint: _vm.$t(_vm.instance.hint),
51878
- persistentHint: _vm.instance.persistentHint,
51879
- reverse: _vm.instance.reverse,
51880
- rules: _vm.instance.rules,
51881
- light: _vm.instance.light,
51882
- tabindex: _vm.instance.tabStop ? "" : "-1",
51883
- "menu-props": {
51884
- contentClass: _vm.menuClass,
51885
- dark: _vm.instance.dark,
51886
- offsetY: true,
51887
- fixed: true,
51888
- offsetOverflow: true,
51889
- "max-width": _vm.instance.menuMaxWidth,
51890
- maxHeight: _vm.instance.menuMaxHeight,
51891
- },
51892
- "search-input": _vm.instance.search,
51893
- "append-icon": _vm.$getIcon(_vm.instance.appendIcon),
51894
- "append-outer-icon": _vm.$getIcon(_vm.instance.appendOuterIcon),
51895
- "prepend-icon": _vm.$getIcon(_vm.instance.prependOuterIcon),
51896
- "prepend-inner-icon": _vm.$getIcon(_vm.instance.prependIcon),
51897
- },
51898
- on: {
51899
- "click:append": function ($event) {
51900
- return _vm.toggle()
51901
- },
51902
- mouseenter: function ($event) {
51903
- return _vm.mouseenter($event)
51904
- },
51905
- mouseleave: function ($event) {
51906
- return _vm.mouseleave($event)
51907
- },
51908
- click: function ($event) {
51909
- return _vm.instance.click($event)
51910
- },
51911
- change: function ($event) {
51912
- return _vm.selectChange($event)
51913
- },
51914
- blur: function ($event) {
51915
- return _vm.selectBlur($event)
51916
- },
51917
- focus: function ($event) {
51918
- return _vm.selectFocus($event)
51919
- },
51920
- "update:search-input": [
51921
- function ($event) {
51922
- return _vm.selectInput($event)
51824
+ directives: [
51825
+ {
51826
+ name: "show",
51827
+ rawName: "v-show",
51828
+ value: _vm.instance.isVisible,
51829
+ expression: "instance.isVisible",
51830
+ },
51831
+ ],
51832
+ ref: "instance",
51833
+ tag: "component",
51834
+ class: [
51835
+ _vm.instance.cssClass,
51836
+ "zd-input",
51837
+ "zd-select",
51838
+ "zd-text-input",
51839
+ {
51840
+ "zd-no-label": !_vm.instance.showLabel,
51841
+ "zd-no-helper":
51842
+ !_vm.instance.showHelper &&
51843
+ !(
51844
+ _vm.instance.alwaysShowError &&
51845
+ _vm.$refs.instance &&
51846
+ _vm.$refs.instance.errorBucket.length
51847
+ ),
51848
+ "zd-no-border": !_vm.instance.showBorder,
51849
+ "zd-dense": _vm.instance.dense,
51850
+ "zd-select-autocomplete": _vm.instance.autocomplete,
51851
+ "zd-input-required": _vm.instance.validations.required,
51852
+ },
51853
+ "zd-select-align-" +
51854
+ (_vm.instance.reverse ? "right" : _vm.instance.align),
51855
+ ],
51856
+ style: _vm.instance.cssStyle,
51857
+ attrs: {
51858
+ id: _vm.instance.name,
51859
+ "return-object": "",
51860
+ "validate-on-blur": "",
51861
+ "no-data-text": _vm.$t("NO_DATA"),
51862
+ "no-filter": "",
51863
+ name: _vm.instance.name,
51864
+ loading: _vm.instance.datasource.loading,
51865
+ clearable:
51866
+ _vm.instance.clearable &&
51867
+ !_vm.instance.readonly &&
51868
+ !_vm.instance.disabled,
51869
+ attach: _vm.instance.attach,
51870
+ color: _vm.instance.color,
51871
+ dark: _vm.instance.dark,
51872
+ disabled: _vm.instance.disabled,
51873
+ readonly: _vm.instance.readonly,
51874
+ items: _vm.items,
51875
+ "item-text": _vm.formattedDataFunc,
51876
+ "item-value": _vm.instance.dataValue,
51877
+ "item-disabled": _vm.instance.dataDisabled,
51878
+ maxLength: _vm.instance.maxLength,
51879
+ label: _vm.instance.showLabel
51880
+ ? _vm.$t(_vm.instance.label)
51881
+ : undefined,
51882
+ placeholder: _vm.$t(_vm.instance.placeholder),
51883
+ hint: _vm.$t(_vm.instance.hint),
51884
+ persistentHint: _vm.instance.persistentHint,
51885
+ reverse: _vm.instance.reverse,
51886
+ rules: _vm.instance.rules,
51887
+ light: _vm.instance.light,
51888
+ tabindex: _vm.instance.tabStop ? "" : "-1",
51889
+ "menu-props": {
51890
+ contentClass: _vm.menuClass,
51891
+ dark: _vm.instance.dark,
51892
+ offsetY: true,
51893
+ fixed: true,
51894
+ offsetOverflow: true,
51895
+ "max-width": _vm.instance.menuMaxWidth,
51896
+ maxHeight: _vm.instance.menuMaxHeight,
51897
+ },
51898
+ "search-input": _vm.instance.search,
51899
+ "append-icon": _vm.$getIcon(_vm.instance.appendIcon),
51900
+ "append-outer-icon": _vm.$getIcon(_vm.instance.appendOuterIcon),
51901
+ "prepend-icon": _vm.$getIcon(_vm.instance.prependOuterIcon),
51902
+ "prepend-inner-icon": _vm.$getIcon(_vm.instance.prependIcon),
51923
51903
  },
51924
- function ($event) {
51925
- return _vm.$set(_vm.instance, "search", $event)
51904
+ on: {
51905
+ "click:append": function ($event) {
51906
+ return _vm.toggle()
51907
+ },
51908
+ mouseenter: function ($event) {
51909
+ return _vm.mouseenter($event)
51910
+ },
51911
+ mouseleave: function ($event) {
51912
+ return _vm.mouseleave($event)
51913
+ },
51914
+ click: function ($event) {
51915
+ return _vm.instance.click($event)
51916
+ },
51917
+ change: function ($event) {
51918
+ return _vm.selectChange($event)
51919
+ },
51920
+ blur: function ($event) {
51921
+ return _vm.selectBlur($event)
51922
+ },
51923
+ focus: function ($event) {
51924
+ return _vm.selectFocus($event)
51925
+ },
51926
+ "update:search-input": [
51927
+ function ($event) {
51928
+ return _vm.selectInput($event)
51929
+ },
51930
+ function ($event) {
51931
+ return _vm.$set(_vm.instance, "search", $event)
51932
+ },
51933
+ ],
51934
+ keyup: function ($event) {
51935
+ return _vm.instance.keyup($event)
51936
+ },
51937
+ keydown: function ($event) {
51938
+ return _vm.selectKeydown($event)
51939
+ },
51940
+ "update:searchInput": function ($event) {
51941
+ return _vm.$set(_vm.instance, "search", $event)
51942
+ },
51926
51943
  },
51927
- ],
51928
- keyup: function ($event) {
51929
- return _vm.instance.keyup($event)
51930
- },
51931
- keydown: function ($event) {
51932
- return _vm.selectKeydown($event)
51933
- },
51934
- "update:searchInput": function ($event) {
51935
- return _vm.$set(_vm.instance, "search", $event)
51936
- },
51937
- },
51938
- scopedSlots: _vm._u(
51939
- [
51940
- _vm.instance.itemBeforeSlot.length || !!_vm.$slots.itemBeforeSlot
51941
- ? {
51942
- key: "prepend-item",
51943
- fn: function () {
51944
- return [
51945
- _c(
51946
- "div",
51947
- { staticClass: "zd-select-append-item" },
51948
- [
51944
+ scopedSlots: _vm._u(
51945
+ [
51946
+ _vm.instance.itemBeforeSlot.length || !!_vm.$slots.itemBeforeSlot
51947
+ ? {
51948
+ key: "prepend-item",
51949
+ fn: function () {
51950
+ return [
51949
51951
  _c(
51950
- "v-list-item",
51951
- {
51952
- attrs: {
51953
- dark: _vm.instance.dark,
51954
- light: _vm.instance.light,
51955
- },
51956
- },
51952
+ "div",
51953
+ { staticClass: "zd-select-append-item" },
51957
51954
  [
51958
51955
  _c(
51959
- "v-list-item-content",
51960
- { staticClass: "v-list-item__title" },
51956
+ "v-list-item",
51957
+ {
51958
+ attrs: {
51959
+ dark: _vm.instance.dark,
51960
+ light: _vm.instance.light,
51961
+ },
51962
+ },
51961
51963
  [
51962
- !_vm.$slots.itemBeforeSlot
51963
- ? _vm._l(
51964
- _vm.instance.itemBeforeSlot,
51965
- function (child, index) {
51966
- return _c(
51967
- child.component,
51968
- _vm._b(
51969
- {
51970
- key: index,
51971
- ref: "itemBefore",
51972
- refInFor: true,
51973
- tag: "component",
51974
- attrs: { parent: _vm.instance },
51975
- },
51976
- "component",
51977
- child,
51978
- false
51979
- )
51964
+ _c(
51965
+ "v-list-item-content",
51966
+ { staticClass: "v-list-item__title" },
51967
+ [
51968
+ !_vm.$slots.itemBeforeSlot
51969
+ ? _vm._l(
51970
+ _vm.instance.itemBeforeSlot,
51971
+ function (child, index) {
51972
+ return _c(
51973
+ child.component,
51974
+ _vm._b(
51975
+ {
51976
+ key: index,
51977
+ ref: "itemBefore",
51978
+ refInFor: true,
51979
+ tag: "component",
51980
+ attrs: { parent: _vm.instance },
51981
+ },
51982
+ "component",
51983
+ child,
51984
+ false
51985
+ )
51986
+ )
51987
+ }
51980
51988
  )
51981
- }
51982
- )
51983
- : _vm._e(),
51984
- _vm._v(" "),
51985
- _vm._t("itemBeforeSlot"),
51989
+ : _vm._e(),
51990
+ _vm._v(" "),
51991
+ _vm._t("itemBeforeSlot"),
51992
+ ],
51993
+ 2
51994
+ ),
51986
51995
  ],
51987
- 2
51996
+ 1
51988
51997
  ),
51989
51998
  ],
51990
51999
  1
51991
52000
  ),
51992
- ],
51993
- 1
51994
- ),
51995
- _vm._v(" "),
51996
- _c("v-divider"),
51997
- ]
51998
- },
51999
- proxy: true,
52000
- }
52001
- : null,
52002
- {
52003
- key: "append-item",
52004
- fn: function () {
52005
- return [
52006
- _vm.instance.itemAfterSlot.length || !!_vm.$slots.itemAfterSlot
52007
- ? [
52008
- _c("v-divider"),
52009
- _vm._v(" "),
52010
- _c(
52011
- "div",
52012
- { staticClass: "zd-select-append-item" },
52013
- [
52001
+ _vm._v(" "),
52002
+ _c("v-divider"),
52003
+ ]
52004
+ },
52005
+ proxy: true,
52006
+ }
52007
+ : null,
52008
+ {
52009
+ key: "append-item",
52010
+ fn: function () {
52011
+ return [
52012
+ _vm.instance.itemAfterSlot.length ||
52013
+ !!_vm.$slots.itemAfterSlot
52014
+ ? [
52015
+ _c("v-divider"),
52016
+ _vm._v(" "),
52014
52017
  _c(
52015
- "v-list-item",
52018
+ "div",
52019
+ { staticClass: "zd-select-append-item" },
52016
52020
  [
52017
52021
  _c(
52018
- "v-list-item-content",
52019
- { staticClass: "v-list-item__title" },
52022
+ "v-list-item",
52020
52023
  [
52021
- !_vm.$slots.itemAfterSlot
52022
- ? _vm._l(
52023
- _vm.instance.itemAfterSlot,
52024
- function (child, index) {
52025
- return _c(
52026
- child.component,
52027
- _vm._b(
52028
- {
52029
- key: index,
52030
- tag: "component",
52031
- attrs: { parent: _vm.instance },
52032
- },
52033
- "component",
52034
- child,
52035
- false
52036
- )
52024
+ _c(
52025
+ "v-list-item-content",
52026
+ { staticClass: "v-list-item__title" },
52027
+ [
52028
+ !_vm.$slots.itemAfterSlot
52029
+ ? _vm._l(
52030
+ _vm.instance.itemAfterSlot,
52031
+ function (child, index) {
52032
+ return _c(
52033
+ child.component,
52034
+ _vm._b(
52035
+ {
52036
+ key: index,
52037
+ tag: "component",
52038
+ attrs: {
52039
+ parent: _vm.instance,
52040
+ },
52041
+ },
52042
+ "component",
52043
+ child,
52044
+ false
52045
+ )
52046
+ )
52047
+ }
52037
52048
  )
52038
- }
52039
- )
52040
- : _vm._e(),
52041
- _vm._v(" "),
52042
- _vm._t("itemAfterSlot"),
52049
+ : _vm._e(),
52050
+ _vm._v(" "),
52051
+ _vm._t("itemAfterSlot"),
52052
+ ],
52053
+ 2
52054
+ ),
52043
52055
  ],
52044
- 2
52056
+ 1
52045
52057
  ),
52046
52058
  ],
52047
52059
  1
52048
52060
  ),
52049
- ],
52050
- 1
52051
- ),
52052
- ]
52053
- : _vm._e(),
52054
- _vm._v(" "),
52055
- _vm.instance.showLoadMore()
52056
- ? [
52057
- _c("v-divider"),
52058
- _vm._v(" "),
52059
- _c(
52060
- "div",
52061
- {
52062
- staticClass: "zd-select-append-item",
52063
- on: {
52064
- mousedown: function ($event) {
52065
- $event.preventDefault();
52066
- return _vm.loadMore()
52067
- },
52068
- },
52069
- },
52070
- [
52061
+ ]
52062
+ : _vm._e(),
52063
+ _vm._v(" "),
52064
+ _vm.instance.showLoadMore()
52065
+ ? [
52066
+ _c("v-divider"),
52067
+ _vm._v(" "),
52071
52068
  _c(
52072
- "v-list-item",
52073
- { attrs: { link: "" } },
52069
+ "div",
52070
+ {
52071
+ staticClass: "zd-select-append-item",
52072
+ on: {
52073
+ mousedown: function ($event) {
52074
+ $event.preventDefault();
52075
+ return _vm.loadMore()
52076
+ },
52077
+ },
52078
+ },
52074
52079
  [
52075
- _c("v-list-item-content", [
52076
- _c("span", [_vm._v(_vm._s(_vm.$t("LOAD_MORE")))]),
52077
- ]),
52080
+ _c(
52081
+ "v-list-item",
52082
+ { attrs: { link: "" } },
52083
+ [
52084
+ _c("v-list-item-content", [
52085
+ _c("span", [
52086
+ _vm._v(_vm._s(_vm.$t("LOAD_MORE"))),
52087
+ ]),
52088
+ ]),
52089
+ ],
52090
+ 1
52091
+ ),
52078
52092
  ],
52079
52093
  1
52080
52094
  ),
52081
- ],
52082
- 1
52083
- ),
52084
- ]
52085
- : _vm._e(),
52086
- ]
52095
+ ]
52096
+ : _vm._e(),
52097
+ ]
52098
+ },
52099
+ proxy: true,
52100
+ },
52101
+ ],
52102
+ null,
52103
+ true
52104
+ ),
52105
+ model: {
52106
+ value: _vm.instance.selectValue,
52107
+ callback: function ($$v) {
52108
+ _vm.$set(_vm.instance, "selectValue", $$v);
52087
52109
  },
52088
- proxy: true,
52110
+ expression: "instance.selectValue",
52089
52111
  },
52090
- ],
52091
- null,
52092
- true
52093
- ),
52094
- model: {
52095
- value: _vm.instance.selectValue,
52096
- callback: function ($$v) {
52097
- _vm.$set(_vm.instance, "selectValue", $$v);
52098
52112
  },
52099
- expression: "instance.selectValue",
52100
- },
52101
- })
52113
+ _vm.getIconClickEvents()
52114
+ )
52115
+ )
52102
52116
  };
52103
52117
  var __vue_staticRenderFns__$K = [];
52104
52118
  __vue_render__$K._withStripped = true;
@@ -52106,7 +52120,7 @@ __vue_render__$K._withStripped = true;
52106
52120
  /* style */
52107
52121
  const __vue_inject_styles__$K = function (inject) {
52108
52122
  if (!inject) return
52109
- inject("data-v-da36a8b0_0", { source: ".zd-select .v-input__control .v-input__slot .v-select__slot {\n position: static;\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__prepend-outer {\n margin-right: var(--spacing-1);\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__append-outer {\n margin-left: var(--spacing-1);\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__prepend-outer, .zd-select .v-input__control .v-input__slot .v-select__slot .v-input__append-outer {\n margin-top: 5px;\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__append-inner, .zd-select .v-input__control .v-input__slot .v-select__slot .v-input__prepend-inner {\n padding-left: 0;\n padding-right: 0;\n}\n.zd-select.zd-select-align-left > .v-input__control > .v-input__slot input {\n text-align: left;\n}\n.zd-select.zd-select-align-center > .v-input__control > .v-input__slot input {\n text-align: center;\n}\n.zd-select.zd-select-align-right > .v-input__control > .v-input__slot input {\n text-align: right;\n}\n.zd-select .v-select__selections {\n padding: 0;\n width: 172px;\n overflow: hidden;\n white-space: nowrap;\n flex-wrap: nowrap;\n text-overflow: ellipsis;\n}\n.zd-select .v-select__selections .v-select__selection {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n margin: 0;\n max-width: none;\n}\n.zd-select .v-select__selections .v-select__selection--disabled {\n opacity: 0.5;\n}\n.zd-select.zd-dense .v-input__append-inner, .zd-select.zd-dense .v-input__prepend-inner {\n margin-top: 0;\n}\n.zd-select-append-item .v-list-item__content {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-size);\n color: var(--v-primary-base);\n}\n.v-menu__content.zd-select-menu {\n box-shadow: var(--shadow-2);\n}\n.v-menu__content.zd-select-menu .v-select-list {\n padding: 0;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item {\n height: auto;\n min-height: 40px;\n padding: 0 var(--spacing-4);\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item__content {\n padding: var(--spacing-2) 0;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item:not(.theme--dark) {\n color: var(--zd-font-color);\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item__title {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n height: auto;\n line-height: unset;\n white-space: unset;\n overflow: auto;\n text-overflow: unset;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item.v-list-item--disabled .v-list-item__title {\n opacity: 0.5;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item.v-list-item--disabled.primary--text .v-list-item__title {\n color: inherit;\n}\n.v-menu__content.zd-select-menu.zd-dense .v-list-item {\n height: auto;\n min-height: 24px;\n padding: 0 var(--spacing-4);\n}\n.v-menu__content.zd-select-menu.zd-select-align-left .v-list-item__content .v-list-item__title {\n text-align: left;\n}\n.v-menu__content.zd-select-menu.zd-select-align-center .v-list-item__content .v-list-item__title {\n text-align: center;\n}\n.v-menu__content.zd-select-menu.zd-select-align-right .v-list-item__content .v-list-item__title {\n text-align: right;\n}", map: undefined, media: undefined });
52123
+ inject("data-v-3c4a605c_0", { source: ".zd-select .v-input__control .v-input__slot .v-select__slot {\n position: static;\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__prepend-outer {\n margin-right: var(--spacing-1);\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__append-outer {\n margin-left: var(--spacing-1);\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__prepend-outer, .zd-select .v-input__control .v-input__slot .v-select__slot .v-input__append-outer {\n margin-top: 5px;\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__append-inner, .zd-select .v-input__control .v-input__slot .v-select__slot .v-input__prepend-inner {\n padding-left: 0;\n padding-right: 0;\n}\n.zd-select.zd-select-align-left > .v-input__control > .v-input__slot input {\n text-align: left;\n}\n.zd-select.zd-select-align-center > .v-input__control > .v-input__slot input {\n text-align: center;\n}\n.zd-select.zd-select-align-right > .v-input__control > .v-input__slot input {\n text-align: right;\n}\n.zd-select .v-select__selections {\n padding: 0;\n width: 172px;\n overflow: hidden;\n white-space: nowrap;\n flex-wrap: nowrap;\n text-overflow: ellipsis;\n}\n.zd-select .v-select__selections .v-select__selection {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n margin: 0;\n max-width: none;\n}\n.zd-select .v-select__selections .v-select__selection--disabled {\n opacity: 0.5;\n}\n.zd-select.zd-dense .v-input__append-inner, .zd-select.zd-dense .v-input__prepend-inner {\n margin-top: 0;\n}\n.zd-select-append-item .v-list-item__content {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-size);\n color: var(--v-primary-base);\n}\n.v-menu__content.zd-select-menu {\n box-shadow: var(--shadow-2);\n}\n.v-menu__content.zd-select-menu .v-select-list {\n padding: 0;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item {\n height: auto;\n min-height: 40px;\n padding: 0 var(--spacing-4);\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item__content {\n padding: var(--spacing-2) 0;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item:not(.theme--dark) {\n color: var(--zd-font-color);\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item__title {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n height: auto;\n line-height: unset;\n white-space: unset;\n overflow: auto;\n text-overflow: unset;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item.v-list-item--disabled .v-list-item__title {\n opacity: 0.5;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item.v-list-item--disabled.primary--text .v-list-item__title {\n color: inherit;\n}\n.v-menu__content.zd-select-menu.zd-dense .v-list-item {\n height: auto;\n min-height: 24px;\n padding: 0 var(--spacing-4);\n}\n.v-menu__content.zd-select-menu.zd-select-align-left .v-list-item__content .v-list-item__title {\n text-align: left;\n}\n.v-menu__content.zd-select-menu.zd-select-align-center .v-list-item__content .v-list-item__title {\n text-align: center;\n}\n.v-menu__content.zd-select-menu.zd-select-align-right .v-list-item__content .v-list-item__title {\n text-align: right;\n}", map: undefined, media: undefined });
52110
52124
 
52111
52125
  };
52112
52126
  /* scoped */
@@ -56395,10 +56409,9 @@ let ZdSelectMultiple = class ZdSelectMultiple extends __vue_component__$K {
56395
56409
  refreshDisplay(cb) {
56396
56410
  if (this.instance.limit)
56397
56411
  return;
56398
- const prevMode = this.expandedMode;
56399
56412
  this.expandedMode = true;
56400
56413
  this.$nextTick(() => {
56401
- this.expandedMode = prevMode;
56414
+ this.expandedMode = false;
56402
56415
  if (!this.checkOverflow()) {
56403
56416
  this.calcDisplay(true);
56404
56417
  }
@@ -41969,6 +41969,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41969
41969
  this.autoNumericInit = true;
41970
41970
  const inputRef = this.$el.getElementsByTagName('input')[0];
41971
41971
  this.instance.autoNumericObj = new common.AutoNumeric(inputRef, Object.assign(Object.assign({}, this.instance.mask), { emptyInputBehavior: 'null' }));
41972
+ inputRef.inputMode = 'numeric';
41972
41973
  }
41973
41974
  beforeDestroy() {
41974
41975
  if (this.autoNumericInit) {
@@ -51815,289 +51816,302 @@ If you're seeing "$attrs is readonly", it's caused by this`);
51815
51816
  var _vm = this;
51816
51817
  var _h = _vm.$createElement;
51817
51818
  var _c = _vm._self._c || _h;
51818
- return _c(_vm.instance.autocomplete ? "v-autocomplete" : "v-select", {
51819
- directives: [
51820
- {
51821
- name: "show",
51822
- rawName: "v-show",
51823
- value: _vm.instance.isVisible,
51824
- expression: "instance.isVisible",
51825
- },
51826
- ],
51827
- ref: "instance",
51828
- tag: "component",
51829
- class: [
51830
- _vm.instance.cssClass,
51831
- "zd-input",
51832
- "zd-select",
51833
- "zd-text-input",
51819
+ return _c(
51820
+ _vm.instance.autocomplete ? "v-autocomplete" : "v-select",
51821
+ _vm._g(
51834
51822
  {
51835
- "zd-no-label": !_vm.instance.showLabel,
51836
- "zd-no-helper":
51837
- !_vm.instance.showHelper &&
51838
- !(
51839
- _vm.instance.alwaysShowError &&
51840
- _vm.$refs.instance &&
51841
- _vm.$refs.instance.errorBucket.length
51842
- ),
51843
- "zd-no-border": !_vm.instance.showBorder,
51844
- "zd-dense": _vm.instance.dense,
51845
- "zd-select-autocomplete": _vm.instance.autocomplete,
51846
- "zd-input-required": _vm.instance.validations.required,
51847
- },
51848
- "zd-select-align-" +
51849
- (_vm.instance.reverse ? "right" : _vm.instance.align),
51850
- ],
51851
- style: _vm.instance.cssStyle,
51852
- attrs: {
51853
- id: _vm.instance.name,
51854
- "return-object": "",
51855
- "validate-on-blur": "",
51856
- "no-data-text": _vm.$t("NO_DATA"),
51857
- "no-filter": "",
51858
- name: _vm.instance.name,
51859
- loading: _vm.instance.datasource.loading,
51860
- clearable:
51861
- _vm.instance.clearable &&
51862
- !_vm.instance.readonly &&
51863
- !_vm.instance.disabled,
51864
- attach: _vm.instance.attach,
51865
- color: _vm.instance.color,
51866
- dark: _vm.instance.dark,
51867
- disabled: _vm.instance.disabled,
51868
- readonly: _vm.instance.readonly,
51869
- items: _vm.items,
51870
- "item-text": _vm.formattedDataFunc,
51871
- "item-value": _vm.instance.dataValue,
51872
- "item-disabled": _vm.instance.dataDisabled,
51873
- maxLength: _vm.instance.maxLength,
51874
- label: _vm.instance.showLabel ? _vm.$t(_vm.instance.label) : undefined,
51875
- placeholder: _vm.$t(_vm.instance.placeholder),
51876
- hint: _vm.$t(_vm.instance.hint),
51877
- persistentHint: _vm.instance.persistentHint,
51878
- reverse: _vm.instance.reverse,
51879
- rules: _vm.instance.rules,
51880
- light: _vm.instance.light,
51881
- tabindex: _vm.instance.tabStop ? "" : "-1",
51882
- "menu-props": {
51883
- contentClass: _vm.menuClass,
51884
- dark: _vm.instance.dark,
51885
- offsetY: true,
51886
- fixed: true,
51887
- offsetOverflow: true,
51888
- "max-width": _vm.instance.menuMaxWidth,
51889
- maxHeight: _vm.instance.menuMaxHeight,
51890
- },
51891
- "search-input": _vm.instance.search,
51892
- "append-icon": _vm.$getIcon(_vm.instance.appendIcon),
51893
- "append-outer-icon": _vm.$getIcon(_vm.instance.appendOuterIcon),
51894
- "prepend-icon": _vm.$getIcon(_vm.instance.prependOuterIcon),
51895
- "prepend-inner-icon": _vm.$getIcon(_vm.instance.prependIcon),
51896
- },
51897
- on: {
51898
- "click:append": function ($event) {
51899
- return _vm.toggle()
51900
- },
51901
- mouseenter: function ($event) {
51902
- return _vm.mouseenter($event)
51903
- },
51904
- mouseleave: function ($event) {
51905
- return _vm.mouseleave($event)
51906
- },
51907
- click: function ($event) {
51908
- return _vm.instance.click($event)
51909
- },
51910
- change: function ($event) {
51911
- return _vm.selectChange($event)
51912
- },
51913
- blur: function ($event) {
51914
- return _vm.selectBlur($event)
51915
- },
51916
- focus: function ($event) {
51917
- return _vm.selectFocus($event)
51918
- },
51919
- "update:search-input": [
51920
- function ($event) {
51921
- return _vm.selectInput($event)
51823
+ directives: [
51824
+ {
51825
+ name: "show",
51826
+ rawName: "v-show",
51827
+ value: _vm.instance.isVisible,
51828
+ expression: "instance.isVisible",
51829
+ },
51830
+ ],
51831
+ ref: "instance",
51832
+ tag: "component",
51833
+ class: [
51834
+ _vm.instance.cssClass,
51835
+ "zd-input",
51836
+ "zd-select",
51837
+ "zd-text-input",
51838
+ {
51839
+ "zd-no-label": !_vm.instance.showLabel,
51840
+ "zd-no-helper":
51841
+ !_vm.instance.showHelper &&
51842
+ !(
51843
+ _vm.instance.alwaysShowError &&
51844
+ _vm.$refs.instance &&
51845
+ _vm.$refs.instance.errorBucket.length
51846
+ ),
51847
+ "zd-no-border": !_vm.instance.showBorder,
51848
+ "zd-dense": _vm.instance.dense,
51849
+ "zd-select-autocomplete": _vm.instance.autocomplete,
51850
+ "zd-input-required": _vm.instance.validations.required,
51851
+ },
51852
+ "zd-select-align-" +
51853
+ (_vm.instance.reverse ? "right" : _vm.instance.align),
51854
+ ],
51855
+ style: _vm.instance.cssStyle,
51856
+ attrs: {
51857
+ id: _vm.instance.name,
51858
+ "return-object": "",
51859
+ "validate-on-blur": "",
51860
+ "no-data-text": _vm.$t("NO_DATA"),
51861
+ "no-filter": "",
51862
+ name: _vm.instance.name,
51863
+ loading: _vm.instance.datasource.loading,
51864
+ clearable:
51865
+ _vm.instance.clearable &&
51866
+ !_vm.instance.readonly &&
51867
+ !_vm.instance.disabled,
51868
+ attach: _vm.instance.attach,
51869
+ color: _vm.instance.color,
51870
+ dark: _vm.instance.dark,
51871
+ disabled: _vm.instance.disabled,
51872
+ readonly: _vm.instance.readonly,
51873
+ items: _vm.items,
51874
+ "item-text": _vm.formattedDataFunc,
51875
+ "item-value": _vm.instance.dataValue,
51876
+ "item-disabled": _vm.instance.dataDisabled,
51877
+ maxLength: _vm.instance.maxLength,
51878
+ label: _vm.instance.showLabel
51879
+ ? _vm.$t(_vm.instance.label)
51880
+ : undefined,
51881
+ placeholder: _vm.$t(_vm.instance.placeholder),
51882
+ hint: _vm.$t(_vm.instance.hint),
51883
+ persistentHint: _vm.instance.persistentHint,
51884
+ reverse: _vm.instance.reverse,
51885
+ rules: _vm.instance.rules,
51886
+ light: _vm.instance.light,
51887
+ tabindex: _vm.instance.tabStop ? "" : "-1",
51888
+ "menu-props": {
51889
+ contentClass: _vm.menuClass,
51890
+ dark: _vm.instance.dark,
51891
+ offsetY: true,
51892
+ fixed: true,
51893
+ offsetOverflow: true,
51894
+ "max-width": _vm.instance.menuMaxWidth,
51895
+ maxHeight: _vm.instance.menuMaxHeight,
51896
+ },
51897
+ "search-input": _vm.instance.search,
51898
+ "append-icon": _vm.$getIcon(_vm.instance.appendIcon),
51899
+ "append-outer-icon": _vm.$getIcon(_vm.instance.appendOuterIcon),
51900
+ "prepend-icon": _vm.$getIcon(_vm.instance.prependOuterIcon),
51901
+ "prepend-inner-icon": _vm.$getIcon(_vm.instance.prependIcon),
51922
51902
  },
51923
- function ($event) {
51924
- return _vm.$set(_vm.instance, "search", $event)
51903
+ on: {
51904
+ "click:append": function ($event) {
51905
+ return _vm.toggle()
51906
+ },
51907
+ mouseenter: function ($event) {
51908
+ return _vm.mouseenter($event)
51909
+ },
51910
+ mouseleave: function ($event) {
51911
+ return _vm.mouseleave($event)
51912
+ },
51913
+ click: function ($event) {
51914
+ return _vm.instance.click($event)
51915
+ },
51916
+ change: function ($event) {
51917
+ return _vm.selectChange($event)
51918
+ },
51919
+ blur: function ($event) {
51920
+ return _vm.selectBlur($event)
51921
+ },
51922
+ focus: function ($event) {
51923
+ return _vm.selectFocus($event)
51924
+ },
51925
+ "update:search-input": [
51926
+ function ($event) {
51927
+ return _vm.selectInput($event)
51928
+ },
51929
+ function ($event) {
51930
+ return _vm.$set(_vm.instance, "search", $event)
51931
+ },
51932
+ ],
51933
+ keyup: function ($event) {
51934
+ return _vm.instance.keyup($event)
51935
+ },
51936
+ keydown: function ($event) {
51937
+ return _vm.selectKeydown($event)
51938
+ },
51939
+ "update:searchInput": function ($event) {
51940
+ return _vm.$set(_vm.instance, "search", $event)
51941
+ },
51925
51942
  },
51926
- ],
51927
- keyup: function ($event) {
51928
- return _vm.instance.keyup($event)
51929
- },
51930
- keydown: function ($event) {
51931
- return _vm.selectKeydown($event)
51932
- },
51933
- "update:searchInput": function ($event) {
51934
- return _vm.$set(_vm.instance, "search", $event)
51935
- },
51936
- },
51937
- scopedSlots: _vm._u(
51938
- [
51939
- _vm.instance.itemBeforeSlot.length || !!_vm.$slots.itemBeforeSlot
51940
- ? {
51941
- key: "prepend-item",
51942
- fn: function () {
51943
- return [
51944
- _c(
51945
- "div",
51946
- { staticClass: "zd-select-append-item" },
51947
- [
51943
+ scopedSlots: _vm._u(
51944
+ [
51945
+ _vm.instance.itemBeforeSlot.length || !!_vm.$slots.itemBeforeSlot
51946
+ ? {
51947
+ key: "prepend-item",
51948
+ fn: function () {
51949
+ return [
51948
51950
  _c(
51949
- "v-list-item",
51950
- {
51951
- attrs: {
51952
- dark: _vm.instance.dark,
51953
- light: _vm.instance.light,
51954
- },
51955
- },
51951
+ "div",
51952
+ { staticClass: "zd-select-append-item" },
51956
51953
  [
51957
51954
  _c(
51958
- "v-list-item-content",
51959
- { staticClass: "v-list-item__title" },
51955
+ "v-list-item",
51956
+ {
51957
+ attrs: {
51958
+ dark: _vm.instance.dark,
51959
+ light: _vm.instance.light,
51960
+ },
51961
+ },
51960
51962
  [
51961
- !_vm.$slots.itemBeforeSlot
51962
- ? _vm._l(
51963
- _vm.instance.itemBeforeSlot,
51964
- function (child, index) {
51965
- return _c(
51966
- child.component,
51967
- _vm._b(
51968
- {
51969
- key: index,
51970
- ref: "itemBefore",
51971
- refInFor: true,
51972
- tag: "component",
51973
- attrs: { parent: _vm.instance },
51974
- },
51975
- "component",
51976
- child,
51977
- false
51978
- )
51963
+ _c(
51964
+ "v-list-item-content",
51965
+ { staticClass: "v-list-item__title" },
51966
+ [
51967
+ !_vm.$slots.itemBeforeSlot
51968
+ ? _vm._l(
51969
+ _vm.instance.itemBeforeSlot,
51970
+ function (child, index) {
51971
+ return _c(
51972
+ child.component,
51973
+ _vm._b(
51974
+ {
51975
+ key: index,
51976
+ ref: "itemBefore",
51977
+ refInFor: true,
51978
+ tag: "component",
51979
+ attrs: { parent: _vm.instance },
51980
+ },
51981
+ "component",
51982
+ child,
51983
+ false
51984
+ )
51985
+ )
51986
+ }
51979
51987
  )
51980
- }
51981
- )
51982
- : _vm._e(),
51983
- _vm._v(" "),
51984
- _vm._t("itemBeforeSlot"),
51988
+ : _vm._e(),
51989
+ _vm._v(" "),
51990
+ _vm._t("itemBeforeSlot"),
51991
+ ],
51992
+ 2
51993
+ ),
51985
51994
  ],
51986
- 2
51995
+ 1
51987
51996
  ),
51988
51997
  ],
51989
51998
  1
51990
51999
  ),
51991
- ],
51992
- 1
51993
- ),
51994
- _vm._v(" "),
51995
- _c("v-divider"),
51996
- ]
51997
- },
51998
- proxy: true,
51999
- }
52000
- : null,
52001
- {
52002
- key: "append-item",
52003
- fn: function () {
52004
- return [
52005
- _vm.instance.itemAfterSlot.length || !!_vm.$slots.itemAfterSlot
52006
- ? [
52007
- _c("v-divider"),
52008
- _vm._v(" "),
52009
- _c(
52010
- "div",
52011
- { staticClass: "zd-select-append-item" },
52012
- [
52000
+ _vm._v(" "),
52001
+ _c("v-divider"),
52002
+ ]
52003
+ },
52004
+ proxy: true,
52005
+ }
52006
+ : null,
52007
+ {
52008
+ key: "append-item",
52009
+ fn: function () {
52010
+ return [
52011
+ _vm.instance.itemAfterSlot.length ||
52012
+ !!_vm.$slots.itemAfterSlot
52013
+ ? [
52014
+ _c("v-divider"),
52015
+ _vm._v(" "),
52013
52016
  _c(
52014
- "v-list-item",
52017
+ "div",
52018
+ { staticClass: "zd-select-append-item" },
52015
52019
  [
52016
52020
  _c(
52017
- "v-list-item-content",
52018
- { staticClass: "v-list-item__title" },
52021
+ "v-list-item",
52019
52022
  [
52020
- !_vm.$slots.itemAfterSlot
52021
- ? _vm._l(
52022
- _vm.instance.itemAfterSlot,
52023
- function (child, index) {
52024
- return _c(
52025
- child.component,
52026
- _vm._b(
52027
- {
52028
- key: index,
52029
- tag: "component",
52030
- attrs: { parent: _vm.instance },
52031
- },
52032
- "component",
52033
- child,
52034
- false
52035
- )
52023
+ _c(
52024
+ "v-list-item-content",
52025
+ { staticClass: "v-list-item__title" },
52026
+ [
52027
+ !_vm.$slots.itemAfterSlot
52028
+ ? _vm._l(
52029
+ _vm.instance.itemAfterSlot,
52030
+ function (child, index) {
52031
+ return _c(
52032
+ child.component,
52033
+ _vm._b(
52034
+ {
52035
+ key: index,
52036
+ tag: "component",
52037
+ attrs: {
52038
+ parent: _vm.instance,
52039
+ },
52040
+ },
52041
+ "component",
52042
+ child,
52043
+ false
52044
+ )
52045
+ )
52046
+ }
52036
52047
  )
52037
- }
52038
- )
52039
- : _vm._e(),
52040
- _vm._v(" "),
52041
- _vm._t("itemAfterSlot"),
52048
+ : _vm._e(),
52049
+ _vm._v(" "),
52050
+ _vm._t("itemAfterSlot"),
52051
+ ],
52052
+ 2
52053
+ ),
52042
52054
  ],
52043
- 2
52055
+ 1
52044
52056
  ),
52045
52057
  ],
52046
52058
  1
52047
52059
  ),
52048
- ],
52049
- 1
52050
- ),
52051
- ]
52052
- : _vm._e(),
52053
- _vm._v(" "),
52054
- _vm.instance.showLoadMore()
52055
- ? [
52056
- _c("v-divider"),
52057
- _vm._v(" "),
52058
- _c(
52059
- "div",
52060
- {
52061
- staticClass: "zd-select-append-item",
52062
- on: {
52063
- mousedown: function ($event) {
52064
- $event.preventDefault();
52065
- return _vm.loadMore()
52066
- },
52067
- },
52068
- },
52069
- [
52060
+ ]
52061
+ : _vm._e(),
52062
+ _vm._v(" "),
52063
+ _vm.instance.showLoadMore()
52064
+ ? [
52065
+ _c("v-divider"),
52066
+ _vm._v(" "),
52070
52067
  _c(
52071
- "v-list-item",
52072
- { attrs: { link: "" } },
52068
+ "div",
52069
+ {
52070
+ staticClass: "zd-select-append-item",
52071
+ on: {
52072
+ mousedown: function ($event) {
52073
+ $event.preventDefault();
52074
+ return _vm.loadMore()
52075
+ },
52076
+ },
52077
+ },
52073
52078
  [
52074
- _c("v-list-item-content", [
52075
- _c("span", [_vm._v(_vm._s(_vm.$t("LOAD_MORE")))]),
52076
- ]),
52079
+ _c(
52080
+ "v-list-item",
52081
+ { attrs: { link: "" } },
52082
+ [
52083
+ _c("v-list-item-content", [
52084
+ _c("span", [
52085
+ _vm._v(_vm._s(_vm.$t("LOAD_MORE"))),
52086
+ ]),
52087
+ ]),
52088
+ ],
52089
+ 1
52090
+ ),
52077
52091
  ],
52078
52092
  1
52079
52093
  ),
52080
- ],
52081
- 1
52082
- ),
52083
- ]
52084
- : _vm._e(),
52085
- ]
52094
+ ]
52095
+ : _vm._e(),
52096
+ ]
52097
+ },
52098
+ proxy: true,
52099
+ },
52100
+ ],
52101
+ null,
52102
+ true
52103
+ ),
52104
+ model: {
52105
+ value: _vm.instance.selectValue,
52106
+ callback: function ($$v) {
52107
+ _vm.$set(_vm.instance, "selectValue", $$v);
52086
52108
  },
52087
- proxy: true,
52109
+ expression: "instance.selectValue",
52088
52110
  },
52089
- ],
52090
- null,
52091
- true
52092
- ),
52093
- model: {
52094
- value: _vm.instance.selectValue,
52095
- callback: function ($$v) {
52096
- _vm.$set(_vm.instance, "selectValue", $$v);
52097
52111
  },
52098
- expression: "instance.selectValue",
52099
- },
52100
- })
52112
+ _vm.getIconClickEvents()
52113
+ )
52114
+ )
52101
52115
  };
52102
52116
  var __vue_staticRenderFns__$K = [];
52103
52117
  __vue_render__$K._withStripped = true;
@@ -52105,7 +52119,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
52105
52119
  /* style */
52106
52120
  const __vue_inject_styles__$K = function (inject) {
52107
52121
  if (!inject) return
52108
- inject("data-v-da36a8b0_0", { source: ".zd-select .v-input__control .v-input__slot .v-select__slot {\n position: static;\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__prepend-outer {\n margin-right: var(--spacing-1);\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__append-outer {\n margin-left: var(--spacing-1);\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__prepend-outer, .zd-select .v-input__control .v-input__slot .v-select__slot .v-input__append-outer {\n margin-top: 5px;\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__append-inner, .zd-select .v-input__control .v-input__slot .v-select__slot .v-input__prepend-inner {\n padding-left: 0;\n padding-right: 0;\n}\n.zd-select.zd-select-align-left > .v-input__control > .v-input__slot input {\n text-align: left;\n}\n.zd-select.zd-select-align-center > .v-input__control > .v-input__slot input {\n text-align: center;\n}\n.zd-select.zd-select-align-right > .v-input__control > .v-input__slot input {\n text-align: right;\n}\n.zd-select .v-select__selections {\n padding: 0;\n width: 172px;\n overflow: hidden;\n white-space: nowrap;\n flex-wrap: nowrap;\n text-overflow: ellipsis;\n}\n.zd-select .v-select__selections .v-select__selection {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n margin: 0;\n max-width: none;\n}\n.zd-select .v-select__selections .v-select__selection--disabled {\n opacity: 0.5;\n}\n.zd-select.zd-dense .v-input__append-inner, .zd-select.zd-dense .v-input__prepend-inner {\n margin-top: 0;\n}\n.zd-select-append-item .v-list-item__content {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-size);\n color: var(--v-primary-base);\n}\n.v-menu__content.zd-select-menu {\n box-shadow: var(--shadow-2);\n}\n.v-menu__content.zd-select-menu .v-select-list {\n padding: 0;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item {\n height: auto;\n min-height: 40px;\n padding: 0 var(--spacing-4);\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item__content {\n padding: var(--spacing-2) 0;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item:not(.theme--dark) {\n color: var(--zd-font-color);\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item__title {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n height: auto;\n line-height: unset;\n white-space: unset;\n overflow: auto;\n text-overflow: unset;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item.v-list-item--disabled .v-list-item__title {\n opacity: 0.5;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item.v-list-item--disabled.primary--text .v-list-item__title {\n color: inherit;\n}\n.v-menu__content.zd-select-menu.zd-dense .v-list-item {\n height: auto;\n min-height: 24px;\n padding: 0 var(--spacing-4);\n}\n.v-menu__content.zd-select-menu.zd-select-align-left .v-list-item__content .v-list-item__title {\n text-align: left;\n}\n.v-menu__content.zd-select-menu.zd-select-align-center .v-list-item__content .v-list-item__title {\n text-align: center;\n}\n.v-menu__content.zd-select-menu.zd-select-align-right .v-list-item__content .v-list-item__title {\n text-align: right;\n}", map: undefined, media: undefined });
52122
+ inject("data-v-3c4a605c_0", { source: ".zd-select .v-input__control .v-input__slot .v-select__slot {\n position: static;\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__prepend-outer {\n margin-right: var(--spacing-1);\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__append-outer {\n margin-left: var(--spacing-1);\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__prepend-outer, .zd-select .v-input__control .v-input__slot .v-select__slot .v-input__append-outer {\n margin-top: 5px;\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__append-inner, .zd-select .v-input__control .v-input__slot .v-select__slot .v-input__prepend-inner {\n padding-left: 0;\n padding-right: 0;\n}\n.zd-select.zd-select-align-left > .v-input__control > .v-input__slot input {\n text-align: left;\n}\n.zd-select.zd-select-align-center > .v-input__control > .v-input__slot input {\n text-align: center;\n}\n.zd-select.zd-select-align-right > .v-input__control > .v-input__slot input {\n text-align: right;\n}\n.zd-select .v-select__selections {\n padding: 0;\n width: 172px;\n overflow: hidden;\n white-space: nowrap;\n flex-wrap: nowrap;\n text-overflow: ellipsis;\n}\n.zd-select .v-select__selections .v-select__selection {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n margin: 0;\n max-width: none;\n}\n.zd-select .v-select__selections .v-select__selection--disabled {\n opacity: 0.5;\n}\n.zd-select.zd-dense .v-input__append-inner, .zd-select.zd-dense .v-input__prepend-inner {\n margin-top: 0;\n}\n.zd-select-append-item .v-list-item__content {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-size);\n color: var(--v-primary-base);\n}\n.v-menu__content.zd-select-menu {\n box-shadow: var(--shadow-2);\n}\n.v-menu__content.zd-select-menu .v-select-list {\n padding: 0;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item {\n height: auto;\n min-height: 40px;\n padding: 0 var(--spacing-4);\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item__content {\n padding: var(--spacing-2) 0;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item:not(.theme--dark) {\n color: var(--zd-font-color);\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item__title {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n height: auto;\n line-height: unset;\n white-space: unset;\n overflow: auto;\n text-overflow: unset;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item.v-list-item--disabled .v-list-item__title {\n opacity: 0.5;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item.v-list-item--disabled.primary--text .v-list-item__title {\n color: inherit;\n}\n.v-menu__content.zd-select-menu.zd-dense .v-list-item {\n height: auto;\n min-height: 24px;\n padding: 0 var(--spacing-4);\n}\n.v-menu__content.zd-select-menu.zd-select-align-left .v-list-item__content .v-list-item__title {\n text-align: left;\n}\n.v-menu__content.zd-select-menu.zd-select-align-center .v-list-item__content .v-list-item__title {\n text-align: center;\n}\n.v-menu__content.zd-select-menu.zd-select-align-right .v-list-item__content .v-list-item__title {\n text-align: right;\n}", map: undefined, media: undefined });
52109
52123
 
52110
52124
  };
52111
52125
  /* scoped */
@@ -56394,10 +56408,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
56394
56408
  refreshDisplay(cb) {
56395
56409
  if (this.instance.limit)
56396
56410
  return;
56397
- const prevMode = this.expandedMode;
56398
56411
  this.expandedMode = true;
56399
56412
  this.$nextTick(() => {
56400
- this.expandedMode = prevMode;
56413
+ this.expandedMode = false;
56401
56414
  if (!this.checkOverflow()) {
56402
56415
  this.calcDisplay(true);
56403
56416
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zeedhi/vuetify",
3
- "version": "1.89.0",
3
+ "version": "1.90.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": "2e4c72ed58142dfed158a8a016d238ad79a61f6e"
54
+ "gitHead": "8b9448e324130ed891cc66e6b9fad1cad6114f97"
55
55
  }