ninegrid2 6.384.0 → 6.386.0
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/dist/bundle.cjs.js +4 -1
- package/dist/bundle.esm.js +4 -1
- package/dist/etc/nxConfirm.js +4 -1
- package/package.json +1 -1
- package/src/etc/nxConfirm.js +4 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -10797,7 +10797,10 @@ class nxAlertPopup extends HTMLElement
|
|
|
10797
10797
|
const t = document.body.querySelector("nx-alert-popup");
|
|
10798
10798
|
|
|
10799
10799
|
$('.title', t.shadowRoot).html(title);
|
|
10800
|
-
|
|
10800
|
+
|
|
10801
|
+
console.log(message);
|
|
10802
|
+
|
|
10803
|
+
$('.msg', t.shadowRoot).html(message?.replaceAll("\n", "<br/>"));
|
|
10801
10804
|
|
|
10802
10805
|
return new Promise(function(resolve) {
|
|
10803
10806
|
$(".cancel,.close2", t.shadowRoot) .on("click", e => { resolve(false); $(".close", t.shadowRoot).trigger("click"); });
|
package/dist/bundle.esm.js
CHANGED
|
@@ -10795,7 +10795,10 @@ class nxAlertPopup extends HTMLElement
|
|
|
10795
10795
|
const t = document.body.querySelector("nx-alert-popup");
|
|
10796
10796
|
|
|
10797
10797
|
$('.title', t.shadowRoot).html(title);
|
|
10798
|
-
|
|
10798
|
+
|
|
10799
|
+
console.log(message);
|
|
10800
|
+
|
|
10801
|
+
$('.msg', t.shadowRoot).html(message?.replaceAll("\n", "<br/>"));
|
|
10799
10802
|
|
|
10800
10803
|
return new Promise(function(resolve) {
|
|
10801
10804
|
$(".cancel,.close2", t.shadowRoot) .on("click", e => { resolve(false); $(".close", t.shadowRoot).trigger("click"); });
|
package/dist/etc/nxConfirm.js
CHANGED
|
@@ -89,7 +89,10 @@ export class nxAlertPopup extends HTMLElement
|
|
|
89
89
|
const t = document.body.querySelector("nx-alert-popup");
|
|
90
90
|
|
|
91
91
|
$('.title', t.shadowRoot).html(title);
|
|
92
|
-
|
|
92
|
+
|
|
93
|
+
console.log(message);
|
|
94
|
+
|
|
95
|
+
$('.msg', t.shadowRoot).html(message?.replaceAll("\n", "<br/>"));
|
|
93
96
|
|
|
94
97
|
return new Promise(function(resolve) {
|
|
95
98
|
$(".cancel,.close2", t.shadowRoot) .on("click", e => { resolve(false); $(".close", t.shadowRoot).trigger("click"); });
|
package/package.json
CHANGED
package/src/etc/nxConfirm.js
CHANGED
|
@@ -89,7 +89,10 @@ export class nxAlertPopup extends HTMLElement
|
|
|
89
89
|
const t = document.body.querySelector("nx-alert-popup");
|
|
90
90
|
|
|
91
91
|
$('.title', t.shadowRoot).html(title);
|
|
92
|
-
|
|
92
|
+
|
|
93
|
+
console.log(message);
|
|
94
|
+
|
|
95
|
+
$('.msg', t.shadowRoot).html(message?.replaceAll("\n", "<br/>"));
|
|
93
96
|
|
|
94
97
|
return new Promise(function(resolve) {
|
|
95
98
|
$(".cancel,.close2", t.shadowRoot) .on("click", e => { resolve(false); $(".close", t.shadowRoot).trigger("click"); });
|