@cdmx/wappler_ag_grid 0.7.5 → 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 +1 -1
- package/app_connect/components.hjson +4 -4
- package/dmx-ag-grid.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
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:
|
|
@@ -1332,19 +1332,19 @@
|
|
|
1332
1332
|
"allowed_children": {},
|
|
1333
1333
|
"copyFiles": [
|
|
1334
1334
|
{
|
|
1335
|
-
"src": "ag-grid-community.min.js",
|
|
1335
|
+
"src": "../../../node_modules/ag-grid-community/dist/ag-grid-community.min.js",
|
|
1336
1336
|
"dst": "js/ag-grid-community.min.js"
|
|
1337
1337
|
},
|
|
1338
1338
|
{
|
|
1339
|
-
"src": "ag-theme-alpine.css",
|
|
1339
|
+
"src": "../../../node_modules/ag-grid-community/styles/ag-theme-alpine.css",
|
|
1340
1340
|
"dst": "css/ag-theme-alpine.css"
|
|
1341
1341
|
},
|
|
1342
1342
|
{
|
|
1343
|
-
"src": "ag-theme-balham.css",
|
|
1343
|
+
"src": "../../../node_modules/ag-grid-community/styles/ag-theme-balham.css",
|
|
1344
1344
|
"dst": "css/ag-theme-balham.css"
|
|
1345
1345
|
},
|
|
1346
1346
|
{
|
|
1347
|
-
"src": "ag-theme-material.css",
|
|
1347
|
+
"src": "../../../node_modules/ag-grid-community/styles/ag-theme-material.css",
|
|
1348
1348
|
"dst": "css/ag-theme-material.css"
|
|
1349
1349
|
},
|
|
1350
1350
|
{
|
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;
|