@espresso-lab/mantine-data-table 1.5.1 → 1.5.2
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/index.es.js +2 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +7 -7
package/dist/index.es.js
CHANGED
|
@@ -5214,10 +5214,10 @@ function Au({
|
|
|
5214
5214
|
}
|
|
5215
5215
|
}
|
|
5216
5216
|
function wn(i) {
|
|
5217
|
-
return i == null ? i : Re(i).format("YYYY-MM-DD");
|
|
5217
|
+
return i == null || i === "" ? i : Re(i).format("YYYY-MM-DD");
|
|
5218
5218
|
}
|
|
5219
5219
|
function Cd(i) {
|
|
5220
|
-
return i == null ? i : Re(i).format("YYYY-MM-DD HH:mm:ss");
|
|
5220
|
+
return i == null || i === "" ? i : Re(i).format("YYYY-MM-DD HH:mm:ss");
|
|
5221
5221
|
}
|
|
5222
5222
|
const eb = {
|
|
5223
5223
|
locale: "en",
|