ninegrid2 6.385.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 +5 -2
- package/dist/bundle.esm.js +5 -2
- package/dist/etc/nxConfirm.js +4 -1
- package/dist/utils/ninegrid.js +1 -1
- package/package.json +1 -1
- package/src/etc/nxConfirm.js +4 -1
- package/src/utils/ninegrid.js +1 -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"); });
|
|
@@ -10996,7 +10999,7 @@ class ninegrid {
|
|
|
10996
10999
|
},
|
|
10997
11000
|
alert : {
|
|
10998
11001
|
"class" : "classic",
|
|
10999
|
-
"animation" : "
|
|
11002
|
+
"animation" : "zoom", //run, reverseRun, moveUp, moveDown, zoom, fade
|
|
11000
11003
|
},
|
|
11001
11004
|
};
|
|
11002
11005
|
|
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"); });
|
|
@@ -10994,7 +10997,7 @@ class ninegrid {
|
|
|
10994
10997
|
},
|
|
10995
10998
|
alert : {
|
|
10996
10999
|
"class" : "classic",
|
|
10997
|
-
"animation" : "
|
|
11000
|
+
"animation" : "zoom", //run, reverseRun, moveUp, moveDown, zoom, fade
|
|
10998
11001
|
},
|
|
10999
11002
|
};
|
|
11000
11003
|
|
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/dist/utils/ninegrid.js
CHANGED
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"); });
|
package/src/utils/ninegrid.js
CHANGED