@itfin/components 1.0.40 → 1.0.41

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itfin/components",
3
- "version": "1.0.40",
3
+ "version": "1.0.41",
4
4
 
5
5
  "main": "dist/itfin-components.umd.js",
6
6
  "unpkg": "dist/itfin-components.common.js",
@@ -132,7 +132,8 @@ class itfPopover extends Vue {
132
132
 
133
133
  hide() {
134
134
  if (this.modalEl) {
135
- this.modalEl.hide();
135
+ // треба затримка щоб попав не показався знову через отримання фокусу
136
+ setTimeout(() => this.modalEl.hide(), 10);
136
137
  }
137
138
  }
138
139
  }