complexqa_frontend_core 1.17.7 → 1.17.8

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.7",
3
+ "version": "1.17.8",
4
4
  "description": "core of web ",
5
5
  "type": "module",
6
6
  "exports": {
@@ -20,7 +20,7 @@ function build_bug_listing_columns(locale, { include_select = true } = {})
20
20
 
21
21
  columns.push(createPrimaryKeyColumn(model, locale, { is_editable: false }));
22
22
  columns.push(createColumn(model, locale, 'bug_title', {
23
- width : '220',
23
+ width : '420',
24
24
  is_editable: true,
25
25
  is_required: true,
26
26
  }));
@@ -30,8 +30,8 @@ function build_bug_listing_columns(locale, { include_select = true } = {})
30
30
  columns.push(createColumn(model, locale, 'bug_type', { width: '150', is_editable: true, is_required: true }));
31
31
  columns.push(createColumn(model, locale, 'bug_resolution', { width: '150', is_editable: true, is_required: true, hide: true }));
32
32
  columns.push(createColumn(model, locale, 'assigned_to', { width: '220', is_editable: true, is_required: true }));
33
- columns.push(createColumn(model, locale, 'created_at', { width: '150', is_required: true }));
34
- columns.push(createColumn(model, locale, 'completed_at', { width: '150', is_required: true, hide: true }));
33
+ columns.push(createColumn(model, locale, 'created_at', { width: '170', is_required: true }));
34
+ columns.push(createColumn(model, locale, 'completed_at', { width: '170', is_required: true, hide: true }));
35
35
  columns.push(createGoToColumn(model, locale));
36
36
 
37
37
  return columns;
@@ -114,13 +114,13 @@ export class TableBaseConfig
114
114
  // sideBar (Columns/Filters Tool Panel) — только ag-grid Enterprise.
115
115
  // В Community: columnMenu + floating filters (см. defaultColDef.filter).
116
116
  suppressMenuHide : true,
117
- columnMenu : 'legacy',
117
+ columnMenu : 'new',
118
118
  columnHoverHighlight : false,
119
119
  enableBrowserTooltips : false,
120
120
  rowSelection : 'multiple',
121
121
  rowMultiSelectWithClick : false,
122
122
  suppressRowClickSelection: true,
123
- enableRangeSelection : true,
123
+ //enableRangeSelection : true,
124
124
  /*headerHeight : '44',
125
125
  rowHeight : '44',*/
126
126
  groupIncludeFooter : false,