complexqa_frontend_core 1.17.6 → 1.17.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "complexqa_frontend_core",
3
- "version": "1.17.6",
3
+ "version": "1.17.7",
4
4
  "description": "core of web ",
5
5
  "type": "module",
6
6
  "exports": {
@@ -38,7 +38,10 @@ export class TableBaseConfig
38
38
  */
39
39
  static get_config(element_type, section, lang)
40
40
  {
41
- let response = this.config;
41
+ let response = {
42
+ ...this.config,
43
+ defaultColDef: { ...this.config.defaultColDef },
44
+ };
42
45
 
43
46
  response.getRowNodeId = this.#getRowNodeId(element_type);
44
47
 
@@ -108,30 +111,8 @@ export class TableBaseConfig
108
111
  wrapText : true,
109
112
  autoHeight: true,
110
113
  },
111
- sideBar : {
112
- toolPanels : [
113
- {
114
- id : 'columns',
115
- labelKey : 'columns',
116
- labelDefault : 'Columns',
117
- iconKey : 'menu',
118
- toolPanel : 'agColumnsToolPanel',
119
- toolPanelParams:
120
- {
121
- suppressValues: true,
122
- }
123
- },
124
- {
125
- id : 'filters',
126
- labelKey : 'filters',
127
- labelDefault: 'Filters',
128
- iconKey : 'menu',
129
- toolPanel : 'agFiltersToolPanel',
130
- }
131
- ],
132
- defaultToolPanel: '',
133
- hiddenByDefault : false
134
- },
114
+ // sideBar (Columns/Filters Tool Panel) — только ag-grid Enterprise.
115
+ // В Community: columnMenu + floating filters (см. defaultColDef.filter).
135
116
  suppressMenuHide : true,
136
117
  columnMenu : 'legacy',
137
118
  columnHoverHighlight : false,
@@ -140,9 +121,6 @@ export class TableBaseConfig
140
121
  rowMultiSelectWithClick : false,
141
122
  suppressRowClickSelection: true,
142
123
  enableRangeSelection : true,
143
- wrapText : true,
144
- autoHeight : true,
145
- resizable : true,
146
124
  /*headerHeight : '44',
147
125
  rowHeight : '44',*/
148
126
  groupIncludeFooter : false,