@innovastudio/contentbuilder 1.4.104 → 1.4.106
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
|
@@ -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="
|
|
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();
|