@cdmx/wappler_ag_grid 0.7.6 → 0.7.7

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- Maintained by: Roney Dsilva
1
+ #### Developed and Maintained by: Roney Dsilva
2
2
  # AG Grid Module Documentation
3
3
 
4
4
  The AG Grid module allows you to create a flexible and customizable data grid with various options and properties. Below, you'll find the list of properties and options available for configuring the AG Grid module:
package/dmx-ag-grid.js CHANGED
@@ -411,7 +411,7 @@ dmx.Component('ag-grid', {
411
411
  let hasText = false;
412
412
 
413
413
  for (const value of values) {
414
- if (value === null || value === undefined || value === '') {
414
+ if (value === null || value === undefined || value === '' || typeof value === "boolean") {
415
415
  hasText = true;
416
416
  } else if (!isNaN(Number(value)) && !(typeof value === "string")) {
417
417
  hasNumber = true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cdmx/wappler_ag_grid",
3
- "version": "0.7.6",
3
+ "version": "0.7.7",
4
4
  "type": "module",
5
5
  "description": "App Connect module for AG Grid Table Generation.",
6
6
  "license": "MIT",