@innovastudio/contentbuilder 1.2.17 → 1.2.18

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/contentbuilder",
3
- "version": "1.2.17",
3
+ "version": "1.2.18",
4
4
  "type": "module",
5
5
  "description": "",
6
6
  "main": "public/contentbuilder/contentbuilder.esm.js",
@@ -4108,7 +4108,7 @@ class Util {
4108
4108
  let html = '';
4109
4109
  html = `<div class="is-modal is-confirm" tabindex="-1" role="dialog" aria-modal="true" aria-hidden="true">
4110
4110
  <div class="is-modal-content" style="padding-bottom:20px;">
4111
- <p>${message}</p>
4111
+ <div style="margin: 20px 0 30px;font-size: 14px;">${message}</div>
4112
4112
  <button title="${this.out('Delete')}" class="input-ok classic focus-warning">${this.out('Delete')}</button>
4113
4113
  </div>
4114
4114
  </div>`;
@@ -4116,7 +4116,7 @@ class Util {
4116
4116
  if (yesno) {
4117
4117
  html = `<div class="is-modal is-confirm" tabindex="-1" role="dialog" aria-modal="true" aria-hidden="true">
4118
4118
  <div class="is-modal-content" style="padding-bottom:20px;">
4119
- <p>${message}</p>
4119
+ <div style="margin: 20px 0 30px;font-size: 14px;">${message}</div>
4120
4120
  <button title="${this.out('Cancel')}" class="input-cancel classic-secondary">${this.out('Cancel')}</button>
4121
4121
  <button title="${yestext}" class="input-ok classic-primary">${yestext}</button>
4122
4122
  </div>
@@ -52925,7 +52925,7 @@ class Modal {
52925
52925
  confirm(message, callback, animated) {
52926
52926
  let html = `<div class="is-modal is-confirm" tabindex="-1" role="dialog" aria-modal="true" aria-hidden="true">
52927
52927
  <div class="is-modal-content" style="padding-bottom:20px;">
52928
- <p>${message}</p>
52928
+ <div style="margin: 20px 0 30px;font-size: 14px;">${message}</div>
52929
52929
  <button title="${this.out('Delete')}" class="input-ok classic">${this.out('Delete')}</button>
52930
52930
  </div>
52931
52931
  </div>`;