@innovastudio/contentbox 1.6.139 → 1.6.140

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@innovastudio/contentbox",
3
3
  "type": "module",
4
- "version": "1.6.139",
4
+ "version": "1.6.140",
5
5
  "description": "",
6
6
  "main": "public/contentbox/contentbox.esm.js",
7
7
  "types": "index.d.ts",
@@ -59,7 +59,7 @@
59
59
  "ws": "^8.13.0"
60
60
  },
61
61
  "dependencies": {
62
- "@innovastudio/contentbuilder": "^1.5.132",
62
+ "@innovastudio/contentbuilder": "^1.5.133",
63
63
  "js-beautify": "^1.14.0",
64
64
  "sortablejs": "^1.15.2"
65
65
  }
@@ -109935,6 +109935,9 @@ class Dictation {
109935
109935
  font-size: 14px;
109936
109936
  }
109937
109937
  */
109938
+ .is-modal.commandconfig .is-modal-overlay {
109939
+ background: transparent !important;
109940
+ }
109938
109941
  .is-modal.commandconfig ul {
109939
109942
  margin: 0;
109940
109943
  padding: 0 0 0 16px;
@@ -110111,7 +110114,7 @@ class Dictation {
110111
110114
  align-items: center;">
110112
110115
  ${util.out('AI Assistant')}</span>
110113
110116
 
110114
- <button class="is-modal-close" tabindex="-1" title="${util.out('Close')}">
110117
+ <button class="is-modal-close" title="${util.out('Close')}">
110115
110118
  <svg class="is-icon-flex"style="width:22px;height:22px"><use xlink:href="#ion-ios-close-empty"></use></svg>
110116
110119
  </button>
110117
110120
  </div>
@@ -110159,13 +110162,20 @@ class Dictation {
110159
110162
  </div>
110160
110163
  </div>
110161
110164
 
110162
- <div class="is-modal commandconfig" tabindex="-1" role="dialog" aria-modal="true" aria-hidden="true">
110163
- <div class="is-modal-content" style="max-width:380px;padding:55px 40px 35px;">
110164
- <div class="is-modal-bar is-draggable">
110165
- ${util.out('Settings')}
110166
- <button class="is-modal-close" tabindex="-1" title="${util.out('Close')}">&#10005;</button>
110167
- </div>
110168
-
110165
+ <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">
110166
+ <div class="is-modal-bar is-draggable" draggable="">
110167
+ <span style="display: flex;
110168
+ justify-content: center;
110169
+ align-items: center;">
110170
+ ${util.out('Settings')}</span>
110171
+
110172
+ <button class="is-modal-close" title="${util.out('Close')}">
110173
+ <svg class="is-icon-flex"style="width:22px;height:22px"><use xlink:href="#ion-ios-close-empty"></use></svg>
110174
+ </button>
110175
+ </div>
110176
+
110177
+ <div style="width:100%;border-top:transparent 35px solid;box-sizing:border-box;padding:16px 40px 35px;">
110178
+
110169
110179
  <div class="is-label"><span>${util.out('Temperature')}</span>: <span class="val-temp">0.6</span></div>
110170
110180
  <div style="padding-top:4px">
110171
110181
  <input type="range" min="0" max="2" step="0.01" value="0.6" class="temperature-slider is-rangeslider" style="margin:0 !important;">
@@ -110228,6 +110238,9 @@ class Dictation {
110228
110238
  new Draggable$2({
110229
110239
  selector: '.is-modal.page-command .is-draggable'
110230
110240
  });
110241
+ new Draggable$2({
110242
+ selector: '.is-modal.commandconfig .is-draggable'
110243
+ });
110231
110244
  const modalCommandList = builderStuff.querySelector('.commandlist');
110232
110245
  this.modalCommandList = modalCommandList;
110233
110246
  const modalConfig = builderStuff.querySelector('.commandconfig');