@wizishop/angular-components 15.1.60 → 15.1.61
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/esm2020/lib/components/ai-express/ai-express.component.mjs +3 -3
- package/fesm2015/wizishop-angular-components.mjs +2 -2
- package/fesm2015/wizishop-angular-components.mjs.map +1 -1
- package/fesm2020/wizishop-angular-components.mjs +2 -2
- package/fesm2020/wizishop-angular-components.mjs.map +1 -1
- package/package.json +1 -1
- package/wizishop-angular-components-15.1.61.tgz +0 -0
- package/wizishop-angular-components-15.1.60.tgz +0 -0
|
@@ -6140,7 +6140,7 @@ class AiExpressComponent {
|
|
|
6140
6140
|
}
|
|
6141
6141
|
ngOnInit() { }
|
|
6142
6142
|
showPopup() {
|
|
6143
|
-
if (!this.isOpen &&
|
|
6143
|
+
if (!this.isOpen && !this.disabled) {
|
|
6144
6144
|
this.isOpen = true;
|
|
6145
6145
|
}
|
|
6146
6146
|
}
|
|
@@ -6160,7 +6160,7 @@ class AiExpressComponent {
|
|
|
6160
6160
|
}
|
|
6161
6161
|
}
|
|
6162
6162
|
hidePopup() {
|
|
6163
|
-
if (this.isOpen &&
|
|
6163
|
+
if (this.isOpen && !this.disabled) {
|
|
6164
6164
|
this.isOpen = false;
|
|
6165
6165
|
}
|
|
6166
6166
|
}
|