@cdmx/wappler_ag_grid 0.7.4 → 0.7.6
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/app_connect/components.hjson +4 -4
- package/dmx-ag-grid.js +1 -1
- package/package.json +1 -1
|
@@ -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
|
@@ -701,7 +701,7 @@ dmx.Component('ag-grid', {
|
|
|
701
701
|
evaluateCondition(params.data[left], operator, right)
|
|
702
702
|
) {
|
|
703
703
|
if (area === 'text') {
|
|
704
|
-
return { color: customColor, fontStyle: font };
|
|
704
|
+
return { color: customColor, fontStyle: font, fontWeight: (font==='bold'?'bold':null) };
|
|
705
705
|
} else if (area === 'cell') {
|
|
706
706
|
return { backgroundColor: customColor, fontStyle: font };
|
|
707
707
|
}
|