@innovastudio/contentbox 1.3.20 → 1.3.21

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@innovastudio/contentbox",
3
- "version": "1.3.20",
3
+ "version": "1.3.21",
4
4
  "type": "module",
5
5
  "description": "",
6
6
  "main": "public/contentbox/contentbox.esm.js",
@@ -46,7 +46,7 @@
46
46
  "webpack-dev-server": "^4.0.0"
47
47
  },
48
48
  "dependencies": {
49
- "@innovastudio/contentbuilder": "^1.2.17",
49
+ "@innovastudio/contentbuilder": "^1.2.18",
50
50
  "js-beautify": "^1.14.0"
51
51
  }
52
52
  }
@@ -15431,7 +15431,7 @@ class Util {
15431
15431
  let html = '';
15432
15432
  html = `<div class="is-modal is-confirm" tabindex="-1" role="dialog" aria-modal="true" aria-hidden="true">
15433
15433
  <div class="is-modal-content" style="padding-bottom:20px;">
15434
- <p>${message}</p>
15434
+ <div style="margin: 20px 0 30px;font-size: 14px;">${message}</div>
15435
15435
  <button title="${this.out('Delete')}" class="input-ok classic focus-warning">${this.out('Delete')}</button>
15436
15436
  </div>
15437
15437
  </div>`;
@@ -15439,7 +15439,7 @@ class Util {
15439
15439
  if (yesno) {
15440
15440
  html = `<div class="is-modal is-confirm" tabindex="-1" role="dialog" aria-modal="true" aria-hidden="true">
15441
15441
  <div class="is-modal-content" style="padding-bottom:20px;">
15442
- <p>${message}</p>
15442
+ <div style="margin: 20px 0 30px;font-size: 14px;">${message}</div>
15443
15443
  <button title="${this.out('Cancel')}" class="input-cancel classic-secondary">${this.out('Cancel')}</button>
15444
15444
  <button title="${yestext}" class="input-ok classic-primary">${yestext}</button>
15445
15445
  </div>
@@ -64248,7 +64248,7 @@ class Modal {
64248
64248
  confirm(message, callback, animated) {
64249
64249
  let html = `<div class="is-modal is-confirm" tabindex="-1" role="dialog" aria-modal="true" aria-hidden="true">
64250
64250
  <div class="is-modal-content" style="padding-bottom:20px;">
64251
- <p>${message}</p>
64251
+ <div style="margin: 20px 0 30px;font-size: 14px;">${message}</div>
64252
64252
  <button title="${this.out('Delete')}" class="input-ok classic">${this.out('Delete')}</button>
64253
64253
  </div>
64254
64254
  </div>`;