@cdmx/wappler_ag_grid 1.1.3 → 1.1.5

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
@@ -21,6 +21,8 @@ This option allows you to customize the look and feel of the grid to match the d
21
21
  You can override the default styles provided by ag-Grid with your own CSS rules by targeting the specific CSS variables and classes used by the grid.
22
22
  The overrides for the "Custom" theme can be applied in the ag-theme-custom.css file located in the public/css folder. This file serves as a centralized place for customizing the grid's appearance.
23
23
 
24
+ To use the "Custom" theme, copy "ag-theme-custom.css" to public/css/ag-theme-custom.css and include it in your layout file.
25
+
24
26
  ## AG Grid Options
25
27
  1. **Minimum Width**: The minimum width of the column. (Default: 150)
26
28
  2. **Resizable**: Specifies if the column can be resized. (Default: true)
@@ -1445,7 +1445,6 @@
1445
1445
  "attribute": "actions_column_min_width",
1446
1446
  "title": "Column Min Width",
1447
1447
  "type": "number",
1448
- "defaultValue": 80,
1449
1448
  "help": "Actions column min width in px"
1450
1449
  },
1451
1450
  {
@@ -2138,10 +2137,6 @@
2138
2137
  "src": "../../../node_modules/moment/min/moment.min.js",
2139
2138
  "dst": "js/moment.min.js"
2140
2139
  },
2141
- {
2142
- "src": "ag-theme-custom.css",
2143
- "dst": "css/ag-theme-custom.css"
2144
- },
2145
2140
  {
2146
2141
  "src": "switch-toggle-slider.css",
2147
2142
  "dst": "css/switch-toggle-slider.css"
@@ -2207,10 +2202,6 @@
2207
2202
  "src": "css/ag-theme-material.css",
2208
2203
  "type": "css"
2209
2204
  },
2210
- {
2211
- "src": "css/ag-theme-custom.css",
2212
- "type": "css"
2213
- },
2214
2205
  {
2215
2206
  "src": "css/switch-toggle-slider.css",
2216
2207
  "type": "css"
package/dmx-ag-grid.js CHANGED
@@ -75,7 +75,7 @@ dmx.Component('ag-grid', {
75
75
  row_status_event: {type: Boolean, default: false },
76
76
  enable_actions: {type: Boolean, default: false },
77
77
  actions_column_position: {type: String, default: 'right' },
78
- actions_column_min_width: {type: Number, default: 80 },
78
+ actions_column_min_width: {type: Number, default: null },
79
79
  actions_column_max_width: {type: Number, default: null },
80
80
  pin_actions: { type: Boolean, default: true },
81
81
  edit_action_btn: { type: Boolean, default: false },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cdmx/wappler_ag_grid",
3
- "version": "1.1.3",
3
+ "version": "1.1.5",
4
4
  "type": "module",
5
5
  "description": "App Connect module for AG Grid Table Generation.",
6
6
  "license": "MIT",