@cdmx/wappler_ag_grid 1.9.1 → 1.9.3

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 +2 -2
  2. package/package.json +2 -2
package/dmx-ag-grid.js CHANGED
@@ -1502,7 +1502,7 @@ dmx.Component('ag-grid', {
1502
1502
  }
1503
1503
 
1504
1504
  if (options.enable_custom_action_btns) {
1505
- for (let i = 1; i <= 10; i++) {
1505
+ for (let i = 1; i <= 20; i++) {
1506
1506
  const buttonActionKey = `button${i}_action_btn`;
1507
1507
  const buttonTitleKey = `button${i}_action_title`;
1508
1508
  const buttonClassKey = `button${i}_action_btn_class`;
@@ -1561,7 +1561,7 @@ dmx.Component('ag-grid', {
1561
1561
  editable: options.cell_editable,
1562
1562
  floatingFilter: options.floating_filter
1563
1563
  },
1564
- selection: {
1564
+ rowSelection: {
1565
1565
  mode: options.row_selection,
1566
1566
  selectAll: "filtered",
1567
1567
  checkboxes: options.row_checkbox_event, // To enable checkboxes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cdmx/wappler_ag_grid",
3
- "version": "1.9.1",
3
+ "version": "1.9.3",
4
4
  "type": "module",
5
5
  "description": "App Connect module for AG Grid Table Generation.",
6
6
  "license": "MIT",
@@ -14,7 +14,7 @@
14
14
  "ag-grid"
15
15
  ],
16
16
  "dependencies": {
17
- "ag-grid-community": "~32.2.0",
17
+ "ag-grid-community": "~32.2.1",
18
18
  "exceljs": "4.4.x",
19
19
  "papaparse": "5.4.x"
20
20
  },