@zeedhi/vuetify 1.97.2 → 1.97.4

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.
@@ -55738,18 +55738,6 @@ __decorate([
55738
55738
  PropWatch({ type: [Number, String], default: 0 }),
55739
55739
  __metadata("design:type", Object)
55740
55740
  ], ZdProgress.prototype, "value", void 0);
55741
- __decorate([
55742
- PropWatch({ type: [Number, String], default: 'auto' }),
55743
- __metadata("design:type", Object)
55744
- ], ZdProgress.prototype, "minWidth", void 0);
55745
- __decorate([
55746
- PropWatch({ type: [Number, String], default: 'auto' }),
55747
- __metadata("design:type", Object)
55748
- ], ZdProgress.prototype, "maxWidth", void 0);
55749
- __decorate([
55750
- PropWatch({ type: [Number, String], default: '100%' }),
55751
- __metadata("design:type", Object)
55752
- ], ZdProgress.prototype, "width", void 0);
55753
55741
  ZdProgress = __decorate([
55754
55742
  Component
55755
55743
  ], ZdProgress);
@@ -55776,15 +55764,7 @@ var __vue_render__$q = function () {
55776
55764
  },
55777
55765
  ],
55778
55766
  class: [_vm.instance.cssClass],
55779
- style: Object.assign(
55780
- {},
55781
- {
55782
- width: _vm.$formatSize(_vm.instance.width),
55783
- minWidth: _vm.$formatSize(_vm.instance.minWidth),
55784
- maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
55785
- },
55786
- _vm.$styleObject(_vm.instance.cssStyle)
55787
- ),
55767
+ style: _vm.instance.cssStyle,
55788
55768
  attrs: { id: _vm.instance.name },
55789
55769
  on: {
55790
55770
  click: function ($event) {
@@ -56943,7 +56923,6 @@ let ZdSelectMultiple = class ZdSelectMultiple extends __vue_component__$K {
56943
56923
  }
56944
56924
  selectChange(value, event) {
56945
56925
  const input = this.$el.querySelector('input');
56946
- this.$emit('update:value', value);
56947
56926
  input === null || input === void 0 ? void 0 : input.select();
56948
56927
  this.instance.selectChange(value.map((item) => item.originalRow), event, this.$el);
56949
56928
  }
@@ -55737,18 +55737,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
55737
55737
  PropWatch({ type: [Number, String], default: 0 }),
55738
55738
  __metadata("design:type", Object)
55739
55739
  ], ZdProgress.prototype, "value", void 0);
55740
- __decorate([
55741
- PropWatch({ type: [Number, String], default: 'auto' }),
55742
- __metadata("design:type", Object)
55743
- ], ZdProgress.prototype, "minWidth", void 0);
55744
- __decorate([
55745
- PropWatch({ type: [Number, String], default: 'auto' }),
55746
- __metadata("design:type", Object)
55747
- ], ZdProgress.prototype, "maxWidth", void 0);
55748
- __decorate([
55749
- PropWatch({ type: [Number, String], default: '100%' }),
55750
- __metadata("design:type", Object)
55751
- ], ZdProgress.prototype, "width", void 0);
55752
55740
  ZdProgress = __decorate([
55753
55741
  vuePropertyDecorator.Component
55754
55742
  ], ZdProgress);
@@ -55775,15 +55763,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
55775
55763
  },
55776
55764
  ],
55777
55765
  class: [_vm.instance.cssClass],
55778
- style: Object.assign(
55779
- {},
55780
- {
55781
- width: _vm.$formatSize(_vm.instance.width),
55782
- minWidth: _vm.$formatSize(_vm.instance.minWidth),
55783
- maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
55784
- },
55785
- _vm.$styleObject(_vm.instance.cssStyle)
55786
- ),
55766
+ style: _vm.instance.cssStyle,
55787
55767
  attrs: { id: _vm.instance.name },
55788
55768
  on: {
55789
55769
  click: function ($event) {
@@ -56942,7 +56922,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
56942
56922
  }
56943
56923
  selectChange(value, event) {
56944
56924
  const input = this.$el.querySelector('input');
56945
- this.$emit('update:value', value);
56946
56925
  input === null || input === void 0 ? void 0 : input.select();
56947
56926
  this.instance.selectChange(value.map((item) => item.originalRow), event, this.$el);
56948
56927
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zeedhi/vuetify",
3
- "version": "1.97.2",
3
+ "version": "1.97.4",
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": "2b6efae5b9e472259021ee7e9c441ac3ec74d1cb"
54
+ "gitHead": "310c7b5a1c7c949c2e5c8ca2c151fb226cf3ef1a"
55
55
  }
@@ -11,9 +11,6 @@ export default class ZdProgress extends ZdComponentRender {
11
11
  indeterminate: boolean;
12
12
  centerSlot: IComponentRender[];
13
13
  value: number | string;
14
- minWidth?: number | string;
15
- maxWidth?: number | string;
16
- width?: number | string;
17
14
  instance: Progress;
18
15
  instanceType: typeof Progress;
19
16
  }