@cdmx/wappler_ag_grid 1.3.1 → 1.3.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.
Files changed (2) hide show
  1. package/dmx-ag-grid.js +1 -1
  2. package/package.json +1 -1
package/dmx-ag-grid.js CHANGED
@@ -748,7 +748,7 @@ dmx.Component('ag-grid', {
748
748
  hasText = true;
749
749
  } else if (!isNaN(Number(value)) && !(typeof value === "string")) {
750
750
  hasNumber = true;
751
- } else if (moment(value, moment.ISO_8601, true).isValid()) {
751
+ } else if ((new Date(value)).getTime() > 0) {
752
752
  hasDate = true;
753
753
  } else {
754
754
  hasText = true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cdmx/wappler_ag_grid",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "type": "module",
5
5
  "description": "App Connect module for AG Grid Table Generation.",
6
6
  "license": "MIT",