@cdmx/wappler_ag_grid 0.2.6 → 0.2.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
@@ -15,4 +15,5 @@ This Custom Module provides the below features:
15
15
  12. Theme selection
16
16
  13. Row Click Event Handling
17
17
  14. Options to enable checkboxes for IDs for bulk select Operations
18
- 15. Options to enable Toggle Sliders for status fields
18
+ 15. Options to enable Toggle Sliders for status fields
19
+ 16. Added Action Buttons feature
package/dmx-ag-grid.js CHANGED
@@ -286,7 +286,7 @@ dmx.Component('ag-grid', {
286
286
  function getValueGetter(key, dataChanges) {
287
287
  return function (params) {
288
288
  const value = params.data[key];
289
- const matchingChange = dataChanges.find((change) => change.field === key && change.value === String(originalValue));
289
+ const matchingChange = dataChanges.find((change) => change.field === key && change.value === String(value));
290
290
  if (matchingChange) {
291
291
  return matchingChange.new_value;
292
292
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cdmx/wappler_ag_grid",
3
- "version": "0.2.6",
3
+ "version": "0.2.7",
4
4
  "type": "module",
5
5
  "description": "App Connect module for AG Grid Table Generation",
6
6
  "license": "MIT",