@innovastudio/contentbuilder 1.5.85 → 1.5.86

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@innovastudio/contentbuilder",
3
3
  "type": "module",
4
- "version": "1.5.85",
4
+ "version": "1.5.86",
5
5
  "description": "",
6
6
  "main": "public/contentbuilder/contentbuilder.esm.js",
7
7
  "types": "index.d.ts",
@@ -5033,6 +5033,7 @@ class Util {
5033
5033
  pop.style.display = '';
5034
5034
  dom.removeClass(pop, 'active');
5035
5035
  this.builder.doc.activeElement.blur();
5036
+ document.activeElement.blur();
5036
5037
  // this.builder.doc.body.focus();
5037
5038
  pop.setAttribute('aria-hidden', true);
5038
5039
 
@@ -5229,6 +5230,7 @@ class Util {
5229
5230
 
5230
5231
  hideModal(modal) {
5231
5232
  this.builder.doc.activeElement.blur();
5233
+ document.activeElement.blur();
5232
5234
  // this.builder.doc.body.focus();
5233
5235
  modal.setAttribute('aria-hidden', true);
5234
5236