@zeedhi/vuetify 1.96.2 → 1.97.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/dist/zd-vuetify.esm.js
CHANGED
@@ -41712,7 +41712,8 @@ let ZdTextInput = class ZdTextInput extends ZdInput$1 {
|
|
41712
41712
|
}
|
41713
41713
|
getInputAutocompleteValue() {
|
41714
41714
|
const isChrome = navigator.userAgent.indexOf('Chrome') > -1;
|
41715
|
-
|
41715
|
+
const offValue = isChrome ? 'one-time-code' : 'off';
|
41716
|
+
return this.instance.autofill ? 'on' : offValue;
|
41716
41717
|
}
|
41717
41718
|
};
|
41718
41719
|
__decorate([
|
@@ -55731,6 +55732,18 @@ __decorate([
|
|
55731
55732
|
PropWatch({ type: [Number, String], default: 0 }),
|
55732
55733
|
__metadata("design:type", Object)
|
55733
55734
|
], ZdProgress.prototype, "value", void 0);
|
55735
|
+
__decorate([
|
55736
|
+
PropWatch({ type: [Number, String], default: 'auto' }),
|
55737
|
+
__metadata("design:type", Object)
|
55738
|
+
], ZdProgress.prototype, "minWidth", void 0);
|
55739
|
+
__decorate([
|
55740
|
+
PropWatch({ type: [Number, String], default: 'auto' }),
|
55741
|
+
__metadata("design:type", Object)
|
55742
|
+
], ZdProgress.prototype, "maxWidth", void 0);
|
55743
|
+
__decorate([
|
55744
|
+
PropWatch({ type: [Number, String], default: '100%' }),
|
55745
|
+
__metadata("design:type", Object)
|
55746
|
+
], ZdProgress.prototype, "width", void 0);
|
55734
55747
|
ZdProgress = __decorate([
|
55735
55748
|
Component
|
55736
55749
|
], ZdProgress);
|
@@ -55757,7 +55770,15 @@ var __vue_render__$q = function () {
|
|
55757
55770
|
},
|
55758
55771
|
],
|
55759
55772
|
class: [_vm.instance.cssClass],
|
55760
|
-
style:
|
55773
|
+
style: Object.assign(
|
55774
|
+
{},
|
55775
|
+
{
|
55776
|
+
width: _vm.$formatSize(_vm.instance.width),
|
55777
|
+
minWidth: _vm.$formatSize(_vm.instance.minWidth),
|
55778
|
+
maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
|
55779
|
+
},
|
55780
|
+
_vm.$styleObject(_vm.instance.cssStyle)
|
55781
|
+
),
|
55761
55782
|
attrs: { id: _vm.instance.name },
|
55762
55783
|
on: {
|
55763
55784
|
click: function ($event) {
|
package/dist/zd-vuetify.umd.js
CHANGED
@@ -41711,7 +41711,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
41711
41711
|
}
|
41712
41712
|
getInputAutocompleteValue() {
|
41713
41713
|
const isChrome = navigator.userAgent.indexOf('Chrome') > -1;
|
41714
|
-
|
41714
|
+
const offValue = isChrome ? 'one-time-code' : 'off';
|
41715
|
+
return this.instance.autofill ? 'on' : offValue;
|
41715
41716
|
}
|
41716
41717
|
};
|
41717
41718
|
__decorate([
|
@@ -55730,6 +55731,18 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
55730
55731
|
PropWatch({ type: [Number, String], default: 0 }),
|
55731
55732
|
__metadata("design:type", Object)
|
55732
55733
|
], ZdProgress.prototype, "value", void 0);
|
55734
|
+
__decorate([
|
55735
|
+
PropWatch({ type: [Number, String], default: 'auto' }),
|
55736
|
+
__metadata("design:type", Object)
|
55737
|
+
], ZdProgress.prototype, "minWidth", void 0);
|
55738
|
+
__decorate([
|
55739
|
+
PropWatch({ type: [Number, String], default: 'auto' }),
|
55740
|
+
__metadata("design:type", Object)
|
55741
|
+
], ZdProgress.prototype, "maxWidth", void 0);
|
55742
|
+
__decorate([
|
55743
|
+
PropWatch({ type: [Number, String], default: '100%' }),
|
55744
|
+
__metadata("design:type", Object)
|
55745
|
+
], ZdProgress.prototype, "width", void 0);
|
55733
55746
|
ZdProgress = __decorate([
|
55734
55747
|
vuePropertyDecorator.Component
|
55735
55748
|
], ZdProgress);
|
@@ -55756,7 +55769,15 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
55756
55769
|
},
|
55757
55770
|
],
|
55758
55771
|
class: [_vm.instance.cssClass],
|
55759
|
-
style:
|
55772
|
+
style: Object.assign(
|
55773
|
+
{},
|
55774
|
+
{
|
55775
|
+
width: _vm.$formatSize(_vm.instance.width),
|
55776
|
+
minWidth: _vm.$formatSize(_vm.instance.minWidth),
|
55777
|
+
maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
|
55778
|
+
},
|
55779
|
+
_vm.$styleObject(_vm.instance.cssStyle)
|
55780
|
+
),
|
55760
55781
|
attrs: { id: _vm.instance.name },
|
55761
55782
|
on: {
|
55762
55783
|
click: function ($event) {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@zeedhi/vuetify",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.97.0",
|
4
4
|
"description": "Zeedhi Components based on Vuetify",
|
5
5
|
"author": "Zeedhi <zeedhi@teknisa.com>",
|
6
6
|
"license": "ISC",
|
@@ -20,7 +20,7 @@
|
|
20
20
|
},
|
21
21
|
"dependencies": {
|
22
22
|
"@panter/vue-i18next": "0.15.*",
|
23
|
-
"@zeedhi/zd-vue-treeselect": "
|
23
|
+
"@zeedhi/zd-vue-treeselect": "^1.3.0",
|
24
24
|
"apexcharts": "3.36.*",
|
25
25
|
"hooper": "0.3.*",
|
26
26
|
"lodash.camelcase": "4.3.*",
|
@@ -37,9 +37,9 @@
|
|
37
37
|
"vuetify": "2.6.*"
|
38
38
|
},
|
39
39
|
"peerDependencies": {
|
40
|
-
"@zeedhi/common": "
|
41
|
-
"@zeedhi/core": "
|
42
|
-
"@zeedhi/vue": "
|
40
|
+
"@zeedhi/common": "~1.97.0",
|
41
|
+
"@zeedhi/core": "~1.97.0",
|
42
|
+
"@zeedhi/vue": "~1.97.0",
|
43
43
|
"vue": "2.7.*",
|
44
44
|
"vuetify": "2.6.*"
|
45
45
|
},
|
@@ -51,5 +51,5 @@
|
|
51
51
|
"@types/prismjs": "1.26.*",
|
52
52
|
"@types/sortablejs": "1.15.*"
|
53
53
|
},
|
54
|
-
"gitHead": "
|
54
|
+
"gitHead": "327c44931165d45f2aab6354501c9deeb07d2413"
|
55
55
|
}
|
@@ -11,6 +11,9 @@ 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;
|
14
17
|
instance: Progress;
|
15
18
|
instanceType: typeof Progress;
|
16
19
|
}
|
@@ -30,5 +30,5 @@ export default class ZdTextInput extends ZdInput {
|
|
30
30
|
setBlur(): void;
|
31
31
|
getIconClickEvents(): any;
|
32
32
|
setPlaceholder(htmlElment?: string): void;
|
33
|
-
getInputAutocompleteValue(): "
|
33
|
+
getInputAutocompleteValue(): "one-time-code" | "off" | "on";
|
34
34
|
}
|