@innovastudio/contentbox 1.5.6 → 1.5.8
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
@@ -103389,6 +103389,16 @@ class ContentBox {
|
|
103389
103389
|
videoSelect: '',
|
103390
103390
|
audioSelect: '',
|
103391
103391
|
mediaSelect: '',
|
103392
|
+
imageSelectWidth: '1024px',
|
103393
|
+
imageSelectHeight: '80vh',
|
103394
|
+
fileSelectWidth: '1024px',
|
103395
|
+
fileSelectHeight: '80vh',
|
103396
|
+
videoSelectWidth: '1024px',
|
103397
|
+
videoSelectHeight: '80vh',
|
103398
|
+
audioSelectWidth: '1024px',
|
103399
|
+
audioSelectHeight: '80vh',
|
103400
|
+
mediaSelectWidth: '1024px',
|
103401
|
+
mediaSelectHeight: '80vh',
|
103392
103402
|
slider: '',
|
103393
103403
|
navbar: false,
|
103394
103404
|
onRender: function () {},
|
@@ -105903,9 +105913,11 @@ class ContentBox {
|
|
105903
105913
|
let old2 = this.settings.onChange;
|
105904
105914
|
|
105905
105915
|
this.settings.onChange = () => {
|
105906
|
-
old2.call(this);
|
105907
|
-
|
105908
|
-
|
105916
|
+
old2.call(this);
|
105917
|
+
setTimeout(() => {
|
105918
|
+
// this.quickPosTool();
|
105919
|
+
this.editor.livePreview.previewRefresh();
|
105920
|
+
}, 100);
|
105909
105921
|
}; // Hidden placement for builder things
|
105910
105922
|
|
105911
105923
|
|
@@ -106190,6 +106202,16 @@ class ContentBox {
|
|
106190
106202
|
videoSelect: this.settings.videoSelect,
|
106191
106203
|
audioSelect: this.settings.audioSelect,
|
106192
106204
|
mediaSelect: this.settings.mediaSelect,
|
106205
|
+
imageSelectWidth: this.settings.imageSelectWidth,
|
106206
|
+
imageSelectHeight: this.settings.imageSelectHeight,
|
106207
|
+
fileSelectWidth: this.settings.fileSelectWidth,
|
106208
|
+
fileSelectHeight: this.settings.fileSelectHeight,
|
106209
|
+
videoSelectWidth: this.settings.videoSelectWidth,
|
106210
|
+
videoSelectHeight: this.settings.videoSelectHeight,
|
106211
|
+
audioSelectWidth: this.settings.audioSelectWidth,
|
106212
|
+
audioSelectHeight: this.settings.audioSelectHeight,
|
106213
|
+
mediaSelectWidth: this.settings.mediaSelectWidth,
|
106214
|
+
mediaSelectHeight: this.settings.mediaSelectHeight,
|
106193
106215
|
onContentClick: e => {
|
106194
106216
|
if (this.settings.onContentClick) this.settings.onContentClick();
|
106195
106217
|
this.doc.body.classList.remove('temporary-hide-tools');
|