@innovastudio/contentbuilder 1.5.131 → 1.5.133
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 +1 -1
- package/public/contentbuilder/contentbuilder.css +1 -1
- package/public/contentbuilder/contentbuilder.esm.js +23 -10
- package/public/contentbuilder/contentbuilder.min.js +1 -1
- package/public/contentbuilder/lang/en.js +1 -1
- package/public/contentbuilder/lang/fr.js +1 -1
- package/readme.txt +0 -8
package/package.json
CHANGED
@@ -83424,6 +83424,9 @@ class Dictation {
|
|
83424
83424
|
font-size: 14px;
|
83425
83425
|
}
|
83426
83426
|
*/
|
83427
|
+
.is-modal.commandconfig .is-modal-overlay {
|
83428
|
+
background: transparent !important;
|
83429
|
+
}
|
83427
83430
|
.is-modal.commandconfig ul {
|
83428
83431
|
margin: 0;
|
83429
83432
|
padding: 0 0 0 16px;
|
@@ -83600,7 +83603,7 @@ class Dictation {
|
|
83600
83603
|
align-items: center;">
|
83601
83604
|
${util.out('AI Assistant')}</span>
|
83602
83605
|
|
83603
|
-
<button class="is-modal-close"
|
83606
|
+
<button class="is-modal-close" title="${util.out('Close')}">
|
83604
83607
|
<svg class="is-icon-flex"style="width:22px;height:22px"><use xlink:href="#ion-ios-close-empty"></use></svg>
|
83605
83608
|
</button>
|
83606
83609
|
</div>
|
@@ -83648,13 +83651,20 @@ class Dictation {
|
|
83648
83651
|
</div>
|
83649
83652
|
</div>
|
83650
83653
|
|
83651
|
-
<div class="is-modal commandconfig" tabindex="-1" role="dialog" aria-modal="true" aria-hidden="true">
|
83652
|
-
<div class="is-modal-
|
83653
|
-
<
|
83654
|
-
|
83655
|
-
|
83656
|
-
|
83657
|
-
|
83654
|
+
<div class="is-modal is-modal-content commandconfig" tabindex="-1" role="dialog" aria-modal="true" aria-hidden="true" style="top:calc(50% - 250px);left:calc(50% - 191px);max-width:380px;height:auto;z-index: 10005">
|
83655
|
+
<div class="is-modal-bar is-draggable" draggable="">
|
83656
|
+
<span style="display: flex;
|
83657
|
+
justify-content: center;
|
83658
|
+
align-items: center;">
|
83659
|
+
${util.out('Settings')}</span>
|
83660
|
+
|
83661
|
+
<button class="is-modal-close" title="${util.out('Close')}">
|
83662
|
+
<svg class="is-icon-flex"style="width:22px;height:22px"><use xlink:href="#ion-ios-close-empty"></use></svg>
|
83663
|
+
</button>
|
83664
|
+
</div>
|
83665
|
+
|
83666
|
+
<div style="width:100%;border-top:transparent 35px solid;box-sizing:border-box;padding:16px 40px 35px;">
|
83667
|
+
|
83658
83668
|
<div class="is-label"><span>${util.out('Temperature')}</span>: <span class="val-temp">0.6</span></div>
|
83659
83669
|
<div style="padding-top:4px">
|
83660
83670
|
<input type="range" min="0" max="2" step="0.01" value="0.6" class="temperature-slider is-rangeslider" style="margin:0 !important;">
|
@@ -83717,6 +83727,9 @@ class Dictation {
|
|
83717
83727
|
new Draggable$2({
|
83718
83728
|
selector: '.is-modal.page-command .is-draggable'
|
83719
83729
|
});
|
83730
|
+
new Draggable$2({
|
83731
|
+
selector: '.is-modal.commandconfig .is-draggable'
|
83732
|
+
});
|
83720
83733
|
const modalCommandList = builderStuff.querySelector('.commandlist');
|
83721
83734
|
this.modalCommandList = modalCommandList;
|
83722
83735
|
const modalConfig = builderStuff.querySelector('.commandconfig');
|
@@ -84122,12 +84135,12 @@ class Dictation {
|
|
84122
84135
|
'4:3': util.out('Landscape 4x3'),
|
84123
84136
|
'5:4': util.out('Landscape 5x4'),
|
84124
84137
|
'16:9': util.out('Landscape 16x9'),
|
84138
|
+
'21:9': util.out('Landscape 21:9'),
|
84125
84139
|
'2:3': util.out('Portrait 2x3'),
|
84126
84140
|
'3:4': util.out('Portrait 3x4'),
|
84127
84141
|
'4:5': util.out('Portrait 4x5'),
|
84128
84142
|
'9:16': util.out('Portrait 9x16'),
|
84129
|
-
'21
|
84130
|
-
'9:21': util.out('Landscape 9:21')
|
84143
|
+
'9:21': util.out('Portrait 9:21')
|
84131
84144
|
};
|
84132
84145
|
|
84133
84146
|
// Default set
|