@a2simcode/ui 0.0.77 → 0.0.78
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/simcode-ui.es.js +2 -2
- package/dist/simcode-ui.umd.js +1 -1
- package/dist/stats.html +1 -1
- package/package.json +1 -1
package/dist/simcode-ui.es.js
CHANGED
|
@@ -505,10 +505,10 @@ const Xs = (e, t, n, o) => {
|
|
|
505
505
|
return e;
|
|
506
506
|
}, mf = "YYYY-MM-DD HH:mm:ss", yf = "YYYY-MM-DD";
|
|
507
507
|
function ec(e, t = mf) {
|
|
508
|
-
return Vs(e).format(t);
|
|
508
|
+
return e == null || e === "" ? "" : Vs(e).format(t);
|
|
509
509
|
}
|
|
510
510
|
function Ti(e, t = yf) {
|
|
511
|
-
return Vs(e).format(t);
|
|
511
|
+
return e == null || e === "" ? "" : Vs(e).format(t);
|
|
512
512
|
}
|
|
513
513
|
function hr(e) {
|
|
514
514
|
const t = "j-loading-spin", n = document.querySelector(`.${t}`);
|