@innovastudio/contentbuilder 1.4.104 → 1.4.106

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@innovastudio/contentbuilder",
3
3
  "type": "module",
4
- "version": "1.4.104",
4
+ "version": "1.4.106",
5
5
  "description": "",
6
6
  "main": "public/contentbuilder/contentbuilder.esm.js",
7
7
  "files": [
@@ -15985,7 +15985,7 @@ const prepareSvgIcons = builder => {
15985
15985
  <path d="M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"></path>
15986
15986
  <path d="M20.2 20.2l1.8 1.8"></path>
15987
15987
  </symbol>
15988
- <symbol id="icon-message" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
15988
+ <symbol id="icon-message" viewBox="0 0 24 24" stroke-width="1" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
15989
15989
  <path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
15990
15990
  <path d="M8 9h8"></path>
15991
15991
  <path d="M8 13h6"></path>
@@ -82021,6 +82021,9 @@ class ContentBuilder {
82021
82021
  }
82022
82022
  }
82023
82023
  async upscaleImage(src, callback) {
82024
+ if (this.viewImageUrl) {
82025
+ src = this.viewImageUrl + '?url=' + src;
82026
+ }
82024
82027
  const width = 512;
82025
82028
  const height = 512;
82026
82029
  const img = new Image();