@innovastudio/contentbuilder 1.4.105 → 1.4.107

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.105",
4
+ "version": "1.4.107",
5
5
  "description": "",
6
6
  "main": "public/contentbuilder/contentbuilder.esm.js",
7
7
  "files": [
@@ -78983,6 +78983,7 @@ class ContentBuilder {
78983
78983
  imageEmbed: true,
78984
78984
  imageselect: '',
78985
78985
  fileselect: '',
78986
+ videoselect: '',
78986
78987
  imageSelect: '',
78987
78988
  fileSelect: '',
78988
78989
  videoSelect: '',
@@ -82021,6 +82022,9 @@ class ContentBuilder {
82021
82022
  }
82022
82023
  }
82023
82024
  async upscaleImage(src, callback) {
82025
+ if (this.viewImageUrl) {
82026
+ src = this.viewImageUrl + '?url=' + src;
82027
+ }
82024
82028
  const width = 512;
82025
82029
  const height = 512;
82026
82030
  const img = new Image();