@adaptabletools/adaptable-cjs 20.2.1 → 20.2.2
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 +1 -1
- package/src/AdaptableState/Common/AdaptableColumn.d.ts +4 -0
- package/src/AdaptableState/LayoutState.d.ts +16 -2
- package/src/AdaptableState/QuickSearchState.d.ts +5 -5
- package/src/Api/Implementation/ColumnApiImpl.js +1 -0
- package/src/Api/Implementation/LayoutHelpers.d.ts +3 -0
- package/src/Api/Implementation/LayoutHelpers.js +80 -41
- package/src/Api/Implementation/QuickSearchApiImpl.d.ts +2 -2
- package/src/Api/Implementation/QuickSearchApiImpl.js +4 -4
- package/src/Api/Internal/FormatColumnInternalApi.d.ts +1 -1
- package/src/Api/Internal/FormatColumnInternalApi.js +4 -4
- package/src/Api/QuickSearchApi.d.ts +2 -2
- package/src/Redux/ActionsReducers/QuickSearchRedux.d.ts +4 -4
- package/src/Redux/ActionsReducers/QuickSearchRedux.js +9 -9
- package/src/Redux/Store/AdaptableStore.js +1 -1
- package/src/View/Components/StyleComponent.d.ts +1 -0
- package/src/View/Components/StyleComponent.js +2 -1
- package/src/View/Layout/Wizard/sections/ColumnsSection.js +27 -8
- package/src/View/Layout/Wizard/sections/RowGroupingSection.js +2 -2
- package/src/View/QuickSearch/QuickSearchPopup.d.ts +1 -1
- package/src/View/QuickSearch/QuickSearchPopup.js +7 -4
- package/src/agGrid/AdaptableAgGrid.js +19 -8
- package/src/agGrid/AgGridAdapter.js +6 -1
- package/src/agGrid/AgGridColumnAdapter.js +10 -8
- package/src/env.js +2 -2
- package/src/layout-manager/src/LayoutManagerModel.d.ts +17 -4
- package/src/layout-manager/src/index.d.ts +1 -1
- package/src/layout-manager/src/index.js +61 -18
- package/src/metamodel/adaptable.metamodel.d.ts +10 -0
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +1 -1
- package/tsconfig.cjs.tsbuildinfo +1 -1
|
@@ -453,7 +453,7 @@ class AdaptableAgGrid {
|
|
|
453
453
|
this.updateColumnModelAndRefreshGrid();
|
|
454
454
|
}
|
|
455
455
|
const layoutModelForApply = (0, LayoutHelpers_1.layoutStateToLayoutModel)(currentLayout);
|
|
456
|
-
this.layoutManager.applyRowGroupValues(layoutModelForApply.RowGroupValues);
|
|
456
|
+
this.layoutManager.applyRowGroupValues(layoutModelForApply.RowGroupValues, layoutModelForApply.RowGroupedColumns);
|
|
457
457
|
this.layoutManager.applyColumnGroupCollapseExpandState(layoutModelForApply);
|
|
458
458
|
this.autoSizeLayoutIfNeeded();
|
|
459
459
|
this.ModuleService.createModuleUIItems();
|
|
@@ -2018,7 +2018,7 @@ You need to define at least one Layout!`);
|
|
|
2018
2018
|
layout = this.api.layoutApi.getCurrentLayout();
|
|
2019
2019
|
}
|
|
2020
2020
|
const layoutModel = (0, LayoutHelpers_1.layoutStateToLayoutModel)(layout);
|
|
2021
|
-
this.layoutManager.applyRowGroupValues(layoutModel.RowGroupValues);
|
|
2021
|
+
this.layoutManager.applyRowGroupValues(layoutModel.RowGroupValues, layoutModel.RowGroupedColumns);
|
|
2022
2022
|
}
|
|
2023
2023
|
isGroupRowNode(rowNode) {
|
|
2024
2024
|
if (!rowNode) {
|
|
@@ -3111,12 +3111,23 @@ You need to define at least one Layout!`);
|
|
|
3111
3111
|
(0, LayoutHelpers_1.checkForDuplicateColumns)(layout);
|
|
3112
3112
|
const isLayoutSwitch = this._prevLayout && layout.Name != this._prevLayout.Name;
|
|
3113
3113
|
let shouldUpdateExpandState = isLayoutSwitch;
|
|
3114
|
-
if (!isLayoutSwitch &&
|
|
3115
|
-
|
|
3116
|
-
|
|
3117
|
-
|
|
3118
|
-
|
|
3119
|
-
|
|
3114
|
+
if (!isLayoutSwitch && this._prevLayout) {
|
|
3115
|
+
if (layout.RowGroupValues?.RowGroupDefaultBehavior &&
|
|
3116
|
+
this._prevLayout?.RowGroupValues?.RowGroupDefaultBehavior !=
|
|
3117
|
+
layout.RowGroupValues?.RowGroupDefaultBehavior) {
|
|
3118
|
+
shouldUpdateExpandState = true;
|
|
3119
|
+
}
|
|
3120
|
+
else {
|
|
3121
|
+
const prevLayoutExceptionGroupKeys = (0, LayoutHelpers_1.getLayoutRowGroupValuesExceptionGroupKeys)(this._prevLayout)
|
|
3122
|
+
.flat()
|
|
3123
|
+
.join(',');
|
|
3124
|
+
const currentLayoutExceptionGroupKeys = (0, LayoutHelpers_1.getLayoutRowGroupValuesExceptionGroupKeys)(layout)
|
|
3125
|
+
.flat()
|
|
3126
|
+
.join(',');
|
|
3127
|
+
if (prevLayoutExceptionGroupKeys !== currentLayoutExceptionGroupKeys) {
|
|
3128
|
+
shouldUpdateExpandState = true;
|
|
3129
|
+
}
|
|
3130
|
+
}
|
|
3120
3131
|
}
|
|
3121
3132
|
this._prevLayout = layout;
|
|
3122
3133
|
const perfSetLayout = this.logger.beginPerf(`setLayout(${layout.Name})`);
|
|
@@ -429,6 +429,7 @@ class AgGridAdapter {
|
|
|
429
429
|
const isFdc3MainActionColumn = this.adaptableApi.fdc3Api.internalApi.isFdc3MainActionColumn(colId);
|
|
430
430
|
let friendlyName;
|
|
431
431
|
const isGeneratedRowGroupColumn = columnApi.isAutoRowGroupColumn(ColumnId);
|
|
432
|
+
const isGeneratedSelectionColumn = columnApi.isSelectionColumn(ColumnId);
|
|
432
433
|
const isGeneratedPivotResultColumn = columnApi.isPivotResultColumn(ColumnId) && !agGridColumn.isPrimary();
|
|
433
434
|
const colExists = columnApi.doesColumnExist(ColumnId) ||
|
|
434
435
|
isGeneratedRowGroupColumn ||
|
|
@@ -468,7 +469,7 @@ class AgGridAdapter {
|
|
|
468
469
|
colDef.lockVisible === true &&
|
|
469
470
|
colDef.suppressColumnsToolPanel === true &&
|
|
470
471
|
colDef.suppressFiltersToolPanel === true;
|
|
471
|
-
const isGenerated = isGeneratedRowGroupColumn || isGeneratedPivotResultColumn;
|
|
472
|
+
const isGenerated = isGeneratedRowGroupColumn || isGeneratedPivotResultColumn || isGeneratedSelectionColumn;
|
|
472
473
|
const abColumn = {
|
|
473
474
|
Uuid: (0, Uuid_1.createUuid)(),
|
|
474
475
|
isTreeColumn,
|
|
@@ -495,6 +496,7 @@ class AgGridAdapter {
|
|
|
495
496
|
hideable: this.isColumnHideable(colDef),
|
|
496
497
|
isGrouped: isGenerated ? false : this.isColumnRowGrouped(colDef),
|
|
497
498
|
isGeneratedRowGroupColumn,
|
|
499
|
+
isGeneratedSelectionColumn,
|
|
498
500
|
isGeneratedPivotResultColumn,
|
|
499
501
|
isFixed: this.isColumnFixed(colDef),
|
|
500
502
|
pinned: this.getColumnPinnedPosition(colDef),
|
|
@@ -680,6 +682,9 @@ class AgGridAdapter {
|
|
|
680
682
|
this.adaptableApi.columnApi.isAutoRowGroupColumn(colDef.colId)) {
|
|
681
683
|
return false;
|
|
682
684
|
}
|
|
685
|
+
if (this.adaptableApi.columnApi.isSelectionColumn(colDef.colId)) {
|
|
686
|
+
return false;
|
|
687
|
+
}
|
|
683
688
|
if (colDef.lockVisible != null && colDef.lockVisible == true) {
|
|
684
689
|
return false;
|
|
685
690
|
}
|
|
@@ -93,12 +93,16 @@ class AgGridColumnAdapter {
|
|
|
93
93
|
}
|
|
94
94
|
shouldSkipColumn(colId) {
|
|
95
95
|
/**
|
|
96
|
-
* This skips columns
|
|
97
|
-
* that ag grid will implement in the future
|
|
96
|
+
* This skips special columns that ag grid will likely implement in the future
|
|
98
97
|
*
|
|
99
|
-
* BUT DOES NOT SKIP GROUP COLUMNS!!!
|
|
98
|
+
* BUT DOES NOT SKIP GROUP COLUMNS or SELECTION COLUMNS!!!
|
|
99
|
+
*
|
|
100
|
+
* It's probably here for historical reasons - previously it used to skip the selection column
|
|
101
|
+
* but now it's not skipping it anymore
|
|
100
102
|
*/
|
|
101
|
-
return colId.startsWith('ag-Grid-') &&
|
|
103
|
+
return (colId.startsWith('ag-Grid-') &&
|
|
104
|
+
!this.adaptableApi.columnApi.isAutoRowGroupColumn(colId) &&
|
|
105
|
+
!this.adaptableApi.columnApi.isSelectionColumn(colId));
|
|
102
106
|
}
|
|
103
107
|
setupColumns() {
|
|
104
108
|
const pivotMode = this.agGridApi.isPivotMode();
|
|
@@ -158,10 +162,8 @@ class AgGridColumnAdapter {
|
|
|
158
162
|
setupColumnCellClass({ col, colId, abColumn }) {
|
|
159
163
|
this.setColDefProperty(col, 'cellClass', (userCellClass) => {
|
|
160
164
|
const formatColumns = this.adaptableApi.formatColumnApi.internalApi.getFormatColumnWithStyleClassNameForColumn(abColumn);
|
|
161
|
-
const quickSearchStyleClassName = this.adaptableApi.quickSearchApi.getQuickSearchStyle().ClassName;
|
|
162
165
|
const quickSearchTextMatchStyle = this.getQuickSearchTextMatchStyle();
|
|
163
166
|
const quickSearchCurrentTextMatchStyle = this.getQuickSearchCurrentTextMatchStyle();
|
|
164
|
-
const hasQuickSearchStyleClassName = StringExtensions_1.default.IsNotNullOrEmpty(quickSearchStyleClassName);
|
|
165
167
|
const cellClass = (params) => {
|
|
166
168
|
const gridCell = this.adaptableApi.gridApi.getGridCellFromRowNode(params.node, abColumn.columnId);
|
|
167
169
|
if (!gridCell.column) {
|
|
@@ -188,7 +190,7 @@ class AgGridColumnAdapter {
|
|
|
188
190
|
!hasStyledColumn && formatColumns.length
|
|
189
191
|
? this.getFormatColumnCellClass(formatColumns, abColumn, params)
|
|
190
192
|
: null,
|
|
191
|
-
isQuickSearchActive && hasQuickSearchStyleClassName ? quickSearchStyleClassName : null,
|
|
193
|
+
// isQuickSearchActive && hasQuickSearchStyleClassName ? quickSearchStyleClassName : null,
|
|
192
194
|
isQuickSearchActive && (quickSearchTextMatchStyle || quickSearchCurrentTextMatchStyle)
|
|
193
195
|
? 'ab-QuickSearchFind'
|
|
194
196
|
: null,
|
|
@@ -853,7 +855,7 @@ class AgGridColumnAdapter {
|
|
|
853
855
|
return classNames;
|
|
854
856
|
}
|
|
855
857
|
getQuickSearchCellStyle() {
|
|
856
|
-
const quickSearchStyle = this.adaptableApi.quickSearchApi.
|
|
858
|
+
const quickSearchStyle = this.adaptableApi.quickSearchApi.getQuickSearchCellMatchStyle();
|
|
857
859
|
if (!quickSearchStyle || StringExtensions_1.default.IsNotNullOrEmpty(quickSearchStyle.ClassName)) {
|
|
858
860
|
return undefined;
|
|
859
861
|
}
|
package/src/env.js
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.default = {
|
|
4
4
|
NEXT_PUBLIC_INFINITE_TABLE_LICENSE_KEY: "StartDate=2021-06-29|EndDate=2030-01-01|Owner=Adaptable|Type=distribution|TS=1624971462479|C=137829811,1004007071,2756196225,1839832928,3994409405,636616862" || '',
|
|
5
|
-
PUBLISH_TIMESTAMP:
|
|
6
|
-
VERSION: "20.2.
|
|
5
|
+
PUBLISH_TIMESTAMP: 1750863018496 || Date.now(),
|
|
6
|
+
VERSION: "20.2.2" || '--current-version--',
|
|
7
7
|
};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { XOR } from '../../Utilities/Extensions/TypeExtensions';
|
|
1
2
|
/**
|
|
2
3
|
* Defines how a Column is sorted
|
|
3
4
|
*/
|
|
@@ -64,15 +65,27 @@ export interface BaseLayoutModel {
|
|
|
64
65
|
*/
|
|
65
66
|
RowGroupValues?: {
|
|
66
67
|
RowGroupDisplay: 'always-expanded';
|
|
67
|
-
} | {
|
|
68
|
+
} | ({
|
|
68
69
|
RowGroupDisplay: 'expanded';
|
|
70
|
+
} & XOR<{
|
|
69
71
|
Values: any[][];
|
|
70
|
-
}
|
|
72
|
+
}, {
|
|
73
|
+
GroupKeys: {
|
|
74
|
+
RowGroupedColumns: string[];
|
|
75
|
+
Values?: any[][];
|
|
76
|
+
}[];
|
|
77
|
+
}>) | {
|
|
71
78
|
RowGroupDisplay: 'always-collapsed';
|
|
72
|
-
} | {
|
|
79
|
+
} | ({
|
|
73
80
|
RowGroupDisplay: 'collapsed';
|
|
81
|
+
} & XOR<{
|
|
74
82
|
Values: any[][];
|
|
75
|
-
}
|
|
83
|
+
}, {
|
|
84
|
+
GroupKeys: {
|
|
85
|
+
RowGroupedColumns: string[];
|
|
86
|
+
Values?: any[][];
|
|
87
|
+
}[];
|
|
88
|
+
}>);
|
|
76
89
|
/**
|
|
77
90
|
* Behaviour for Expanding / Collapsing Column Groups
|
|
78
91
|
*/
|
|
@@ -62,7 +62,7 @@ export declare class LayoutManager<DATA_TYPE = any> extends LMEmitter {
|
|
|
62
62
|
private applyLayout;
|
|
63
63
|
private applyTableLayout;
|
|
64
64
|
private getRowGroupNodePathsAs;
|
|
65
|
-
applyRowGroupValues(RowGroupValues: TableLayoutModel['RowGroupValues']): void;
|
|
65
|
+
applyRowGroupValues(RowGroupValues: TableLayoutModel['RowGroupValues'], rowGroupedColumns: string[]): void;
|
|
66
66
|
private computeColumnStateForPivotLayout;
|
|
67
67
|
private computePivotAggregations;
|
|
68
68
|
private computeColumnStateForTableLayout;
|
|
@@ -235,7 +235,7 @@ class LayoutManager extends LMEmitter_1.LMEmitter {
|
|
|
235
235
|
// but we want to suspend the listener
|
|
236
236
|
// as it would re-trigger another change
|
|
237
237
|
const unsupress = this.suspendAgGridListener();
|
|
238
|
-
this.applyRowGroupValues(layout.RowGroupValues);
|
|
238
|
+
this.applyRowGroupValues(layout.RowGroupValues, layout.RowGroupedColumns);
|
|
239
239
|
unsupress();
|
|
240
240
|
}
|
|
241
241
|
if ((!prevLayout?.RowGroupedColumns || !prevLayout?.RowGroupedColumns.length) &&
|
|
@@ -247,7 +247,7 @@ class LayoutManager extends LMEmitter_1.LMEmitter {
|
|
|
247
247
|
// but we want to suspend the listener
|
|
248
248
|
// as it would re-trigger another change
|
|
249
249
|
const unsupress = this.suspendAgGridListener();
|
|
250
|
-
this.applyRowGroupValues(layout.RowGroupValues);
|
|
250
|
+
this.applyRowGroupValues(layout.RowGroupValues, layout.RowGroupedColumns);
|
|
251
251
|
unsupress();
|
|
252
252
|
}
|
|
253
253
|
if (!shouldSkipTriggerChange) {
|
|
@@ -334,9 +334,8 @@ class LayoutManager extends LMEmitter_1.LMEmitter {
|
|
|
334
334
|
return this.gridApi.getGridOption('treeData');
|
|
335
335
|
}
|
|
336
336
|
getUndecidedLayoutModelFromGrid(columnState) {
|
|
337
|
-
let TableColumns = columnState
|
|
338
|
-
|
|
339
|
-
.filter((colId) => colId !== 'ag-Grid-SelectionColumn');
|
|
337
|
+
let TableColumns = columnState.map((c) => c.colId);
|
|
338
|
+
// .filter((colId) => colId !== 'ag-Grid-SelectionColumn');
|
|
340
339
|
let ColumnWidths = {};
|
|
341
340
|
let ColumnSorts = [];
|
|
342
341
|
let RowGroupedColumns = [];
|
|
@@ -499,10 +498,26 @@ class LayoutManager extends LMEmitter_1.LMEmitter {
|
|
|
499
498
|
: this.getRowGroupNodePathsAs({
|
|
500
499
|
expanded: true,
|
|
501
500
|
});
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
501
|
+
if (Array.isArray(currentRowGroupValues.GroupKeys)) {
|
|
502
|
+
RowGroupValues = {
|
|
503
|
+
RowGroupDisplay: 'collapsed',
|
|
504
|
+
GroupKeys: currentRowGroupValues.GroupKeys.map((item) => {
|
|
505
|
+
if ((item.RowGroupedColumns || []).join(',') === (RowGroupedColumns || []).join(',')) {
|
|
506
|
+
return {
|
|
507
|
+
RowGroupedColumns: item.RowGroupedColumns,
|
|
508
|
+
Values: ExpandedValues,
|
|
509
|
+
};
|
|
510
|
+
}
|
|
511
|
+
return item;
|
|
512
|
+
}),
|
|
513
|
+
};
|
|
514
|
+
}
|
|
515
|
+
else {
|
|
516
|
+
RowGroupValues = {
|
|
517
|
+
RowGroupDisplay: 'collapsed',
|
|
518
|
+
Values: ExpandedValues,
|
|
519
|
+
};
|
|
520
|
+
}
|
|
506
521
|
}
|
|
507
522
|
else if (currentRowGroupValues.RowGroupDisplay === 'expanded') {
|
|
508
523
|
const CollapsedValues = isGroupingNew
|
|
@@ -510,10 +525,26 @@ class LayoutManager extends LMEmitter_1.LMEmitter {
|
|
|
510
525
|
: this.getRowGroupNodePathsAs({
|
|
511
526
|
expanded: false,
|
|
512
527
|
});
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
528
|
+
if (Array.isArray(currentRowGroupValues.GroupKeys)) {
|
|
529
|
+
RowGroupValues = {
|
|
530
|
+
RowGroupDisplay: 'expanded',
|
|
531
|
+
GroupKeys: currentRowGroupValues.GroupKeys.map((item) => {
|
|
532
|
+
if ((item.RowGroupedColumns || []).join(',') === (RowGroupedColumns || []).join(',')) {
|
|
533
|
+
return {
|
|
534
|
+
RowGroupedColumns: item.RowGroupedColumns,
|
|
535
|
+
Values: CollapsedValues,
|
|
536
|
+
};
|
|
537
|
+
}
|
|
538
|
+
return item;
|
|
539
|
+
}),
|
|
540
|
+
};
|
|
541
|
+
}
|
|
542
|
+
else {
|
|
543
|
+
RowGroupValues = {
|
|
544
|
+
RowGroupDisplay: 'expanded',
|
|
545
|
+
Values: CollapsedValues,
|
|
546
|
+
};
|
|
547
|
+
}
|
|
517
548
|
}
|
|
518
549
|
}
|
|
519
550
|
}
|
|
@@ -900,7 +931,7 @@ class LayoutManager extends LMEmitter_1.LMEmitter {
|
|
|
900
931
|
this.gridApi.applyColumnState(this.computeColumnStateForTableLayout(layout));
|
|
901
932
|
// but also let's not forget to apply the row group values
|
|
902
933
|
if (hasGroupedColumns && layout.RowGroupValues && !options?.skipApplyRowGroupsExpandedState) {
|
|
903
|
-
this.applyRowGroupValues(layout.RowGroupValues);
|
|
934
|
+
this.applyRowGroupValues(layout.RowGroupValues, layout.RowGroupedColumns);
|
|
904
935
|
}
|
|
905
936
|
this.applyColumnGroupCollapseExpandState(layout);
|
|
906
937
|
});
|
|
@@ -924,7 +955,7 @@ class LayoutManager extends LMEmitter_1.LMEmitter {
|
|
|
924
955
|
});
|
|
925
956
|
return result;
|
|
926
957
|
}
|
|
927
|
-
applyRowGroupValues(RowGroupValues) {
|
|
958
|
+
applyRowGroupValues(RowGroupValues, rowGroupedColumns) {
|
|
928
959
|
if (!RowGroupValues) {
|
|
929
960
|
return;
|
|
930
961
|
}
|
|
@@ -937,9 +968,21 @@ class LayoutManager extends LMEmitter_1.LMEmitter {
|
|
|
937
968
|
return;
|
|
938
969
|
}
|
|
939
970
|
const defaultExpanded = RowGroupValues.RowGroupDisplay === 'expanded';
|
|
940
|
-
|
|
971
|
+
let currentRowGroupedValues = RowGroupValues.Values;
|
|
972
|
+
if (RowGroupValues.GroupKeys) {
|
|
973
|
+
const matchingRowGroupColumnValues = RowGroupValues.GroupKeys.find((item) => {
|
|
974
|
+
return (item.RowGroupedColumns || []).join(',') === (rowGroupedColumns || []).join(',');
|
|
975
|
+
});
|
|
976
|
+
if (matchingRowGroupColumnValues) {
|
|
977
|
+
currentRowGroupedValues = matchingRowGroupColumnValues.Values;
|
|
978
|
+
}
|
|
979
|
+
else {
|
|
980
|
+
currentRowGroupedValues = [];
|
|
981
|
+
}
|
|
982
|
+
}
|
|
983
|
+
if (currentRowGroupedValues) {
|
|
941
984
|
const deepMap = new infinite_react_1.DeepMap();
|
|
942
|
-
|
|
985
|
+
currentRowGroupedValues.forEach((rowGroupValue) => {
|
|
943
986
|
deepMap.set(rowGroupValue, true);
|
|
944
987
|
});
|
|
945
988
|
this.gridApi.forEachNode((node) => {
|
|
@@ -1231,7 +1274,7 @@ class LayoutManager extends LMEmitter_1.LMEmitter {
|
|
|
1231
1274
|
const hasGroupedColumns = layout.PivotGroupedColumns && layout.PivotGroupedColumns.length;
|
|
1232
1275
|
// but also let's not forget to apply the row group values
|
|
1233
1276
|
if (hasGroupedColumns && layout.RowGroupValues && !options?.skipApplyRowGroupsExpandedState) {
|
|
1234
|
-
this.applyRowGroupValues(layout.RowGroupValues);
|
|
1277
|
+
this.applyRowGroupValues(layout.RowGroupValues, layout.PivotGroupedColumns);
|
|
1235
1278
|
}
|
|
1236
1279
|
}
|
|
1237
1280
|
applyPivotTotals(layout) {
|
|
@@ -2005,6 +2005,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2005
2005
|
kind: string;
|
|
2006
2006
|
desc: string;
|
|
2007
2007
|
};
|
|
2008
|
+
ColumnGroupValues: {
|
|
2009
|
+
name: string;
|
|
2010
|
+
kind: string;
|
|
2011
|
+
desc: string;
|
|
2012
|
+
};
|
|
2013
|
+
ColumnGroupValuesWithExceptionKeys: {
|
|
2014
|
+
name: string;
|
|
2015
|
+
kind: string;
|
|
2016
|
+
desc: string;
|
|
2017
|
+
};
|
|
2008
2018
|
ColumnMenuContext: {
|
|
2009
2019
|
name: string;
|
|
2010
2020
|
kind: string;
|