@adaptabletools/adaptable-cjs 20.3.0-canary.2 → 20.3.0
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/AdaptableOptions/ColumnOptions.d.ts +38 -154
- package/src/AdaptableState/Common/CustomWindowConfig.d.ts +11 -11
- package/src/AdaptableState/Common/ProgressIndicatorConfig.d.ts +1 -4
- package/src/AdaptableState/Common/RowScope.d.ts +1 -1
- package/src/AdaptableState/FormatColumnState.d.ts +8 -8
- package/src/Api/Internal/ColumnInternalApi.js +2 -2
- package/src/Api/Internal/FormatColumnInternalApi.d.ts +4 -2
- package/src/Api/Internal/FormatColumnInternalApi.js +32 -3
- package/src/Strategy/FormatColumnModule.js +2 -0
- package/src/Strategy/Utilities/FormatColumn/getFormatColumnSettingsTargetItems.d.ts +5 -0
- package/src/Strategy/Utilities/FormatColumn/getFormatColumnSettingsTargetItems.js +16 -0
- package/src/Utilities/ObjectFactory.js +1 -0
- package/src/Utilities/getScopeViewItems.js +6 -2
- package/src/View/Components/NewScopeComponent.js +5 -1
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.js +4 -0
- package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +0 -39
- package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +24 -23
- package/src/View/FormatColumn/Wizard/FormatColumnTargetWizardSection.d.ts +8 -0
- package/src/View/FormatColumn/Wizard/FormatColumnTargetWizardSection.js +37 -0
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +18 -4
- package/src/agGrid/AdaptableAgGrid.js +5 -2
- package/src/agGrid/AgGridColumnAdapter.d.ts +1 -1
- package/src/agGrid/AgGridColumnAdapter.js +5 -4
- package/src/agGrid/AgGridExportAdapter.js +1 -1
- package/src/env.js +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +102 -1
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +1 -1
- package/tsconfig.cjs.tsbuildinfo +1 -1
|
@@ -6,11 +6,7 @@ const React = tslib_1.__importStar(require("react"));
|
|
|
6
6
|
const NewScopeComponent_1 = require("../../Components/NewScopeComponent");
|
|
7
7
|
const OnePageAdaptableWizard_1 = require("../../Wizard/OnePageAdaptableWizard");
|
|
8
8
|
const constants_1 = require("./constants");
|
|
9
|
-
const Tabs_1 = require("../../../components/Tabs");
|
|
10
9
|
const rebass_1 = require("rebass");
|
|
11
|
-
const FormLayout_1 = tslib_1.__importStar(require("../../../components/FormLayout"));
|
|
12
|
-
const CheckBox_1 = require("../../../components/CheckBox");
|
|
13
|
-
const HelpBlock_1 = tslib_1.__importDefault(require("../../../components/HelpBlock"));
|
|
14
10
|
const renderFormatColumnScopeSummary = (data) => {
|
|
15
11
|
return (0, NewScopeComponent_1.renderScopeSummary)(data.Scope, {
|
|
16
12
|
scopeWholeRow: 'Matching rows will be formatted',
|
|
@@ -21,42 +17,7 @@ const renderFormatColumnScopeSummary = (data) => {
|
|
|
21
17
|
exports.renderFormatColumnScopeSummary = renderFormatColumnScopeSummary;
|
|
22
18
|
const FormatColumnScopeWizardSection = (props) => {
|
|
23
19
|
const { data, api } = (0, OnePageAdaptableWizard_1.useOnePageAdaptableWizardContext)();
|
|
24
|
-
const currentTargets = data.Target?.length ? data.Target : ['cell'];
|
|
25
|
-
const handleTargetChange = (target, checked) => {
|
|
26
|
-
let newTargets;
|
|
27
|
-
if (checked) {
|
|
28
|
-
// Add the target if it's not already included
|
|
29
|
-
newTargets = [...new Set([...currentTargets, target])];
|
|
30
|
-
}
|
|
31
|
-
else {
|
|
32
|
-
// Remove the target
|
|
33
|
-
newTargets = currentTargets.filter((t) => t !== target);
|
|
34
|
-
}
|
|
35
|
-
// If all checkboxes are unchecked, default to ['cell']
|
|
36
|
-
if (newTargets.length === 0) {
|
|
37
|
-
newTargets = ['cell'];
|
|
38
|
-
}
|
|
39
|
-
// Update the formatColumn object
|
|
40
|
-
props.onChange({
|
|
41
|
-
...data,
|
|
42
|
-
Target: newTargets,
|
|
43
|
-
});
|
|
44
|
-
};
|
|
45
20
|
return (React.createElement(React.Fragment, null,
|
|
46
|
-
React.createElement(Tabs_1.Tabs, { mb: 3 },
|
|
47
|
-
React.createElement(Tabs_1.Tabs.Tab, null, "Target"),
|
|
48
|
-
React.createElement(Tabs_1.Tabs.Content, null,
|
|
49
|
-
React.createElement(rebass_1.Flex, { flexDirection: "column" },
|
|
50
|
-
React.createElement(FormLayout_1.default, { width: "100%" },
|
|
51
|
-
React.createElement(FormLayout_1.FormRow, { label: "Target Column Elements: ", tooltip: "The visual elements where formatting will be applied" },
|
|
52
|
-
React.createElement(CheckBox_1.CheckBox, { "data-name": "target-cell", checked: currentTargets.includes('cell'), onChange: (target) => {
|
|
53
|
-
handleTargetChange('cell', target);
|
|
54
|
-
}, ml: 2 }, "Data Cells"),
|
|
55
|
-
React.createElement(CheckBox_1.CheckBox, { "data-name": "target-column-header", checked: currentTargets.includes('columnHeader'), onChange: (target) => {
|
|
56
|
-
handleTargetChange('columnHeader', target);
|
|
57
|
-
}, ml: 4 }, "Column Headers"))),
|
|
58
|
-
React.createElement(HelpBlock_1.default, { fontSize: 2 }, 'At least one target element must be selected (defaults to Data Cells).' +
|
|
59
|
-
' Conditional formatting rules only apply to Data Cells, not to Headers.')))),
|
|
60
21
|
React.createElement(rebass_1.Box, { "data-name": 'scope-heading', style: {
|
|
61
22
|
borderRadius: `var(--ab__border-radius)`,
|
|
62
23
|
}, padding: 2, backgroundColor: `var(--ab-color-primarylight)` }, "Scope"),
|
|
@@ -88,29 +88,30 @@ const FormatColumnSettingsWizardSection = (props) => {
|
|
|
88
88
|
React.createElement(Tabs_1.Tabs.Content, null,
|
|
89
89
|
React.createElement(rebass_1.Flex, { flexDirection: "row" },
|
|
90
90
|
React.createElement(FormLayout_1.default, null,
|
|
91
|
-
React.createElement(
|
|
92
|
-
React.createElement(
|
|
93
|
-
React.createElement(
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
React.createElement(
|
|
104
|
-
React.createElement(
|
|
105
|
-
|
|
106
|
-
React.createElement(
|
|
107
|
-
React.createElement(
|
|
108
|
-
|
|
109
|
-
React.createElement(
|
|
110
|
-
React.createElement(
|
|
111
|
-
|
|
112
|
-
React.createElement(
|
|
113
|
-
React.createElement(
|
|
91
|
+
data.Target === 'cell' && (React.createElement(React.Fragment, null,
|
|
92
|
+
React.createElement(FormLayout_1.FormRow, { label: "Cell Alignment" },
|
|
93
|
+
React.createElement(ToggleGroup_1.ToggleGroup, null,
|
|
94
|
+
React.createElement(Toggle_1.Toggle, { icon: "align-left", pressed: data.CellAlignment === 'Left', onPressedChange: (pressed) => pressed
|
|
95
|
+
? onCellAlignmentSelectChanged('Left')
|
|
96
|
+
: onCellAlignmentSelectChanged(null) }),
|
|
97
|
+
React.createElement(Toggle_1.Toggle, { icon: "align-center", pressed: data.CellAlignment === 'Center', onPressedChange: (pressed) => pressed
|
|
98
|
+
? onCellAlignmentSelectChanged('Center')
|
|
99
|
+
: onCellAlignmentSelectChanged(null) }),
|
|
100
|
+
React.createElement(Toggle_1.Toggle, { icon: "align-right", pressed: data.CellAlignment === 'Right', onPressedChange: (pressed) => pressed
|
|
101
|
+
? onCellAlignmentSelectChanged('Right')
|
|
102
|
+
: onCellAlignmentSelectChanged(null) }))),
|
|
103
|
+
React.createElement(FormLayout_1.FormRow, { label: "Exclude Data Rows:" },
|
|
104
|
+
React.createElement(rebass_1.Flex, { alignItems: "center", marginLeft: 2 },
|
|
105
|
+
React.createElement(CheckBox_1.CheckBox, { "data-name": "exclude-data-rows-checkbox", checked: data.RowScope?.ExcludeDataRows, onChange: onExcludeDataRowsChanged, mr: 2 }))),
|
|
106
|
+
React.createElement(FormLayout_1.FormRow, { label: "Exclude Group Rows:" },
|
|
107
|
+
React.createElement(rebass_1.Flex, { alignItems: "center", marginLeft: 2 },
|
|
108
|
+
React.createElement(CheckBox_1.CheckBox, { "data-name": "exclude-grouped-rows-checkbox", checked: data.RowScope?.ExcludeGroupRows, onChange: onExcludeGroupedRowsChanged, mr: 2 }))),
|
|
109
|
+
React.createElement(FormLayout_1.FormRow, { label: "Exclude Row Summaries:" },
|
|
110
|
+
React.createElement(rebass_1.Flex, { alignItems: "center", marginLeft: 2 },
|
|
111
|
+
React.createElement(CheckBox_1.CheckBox, { "data-name": "exclude-summary-rows-checkbox", checked: data.RowScope?.ExcludeSummaryRows, onChange: onExcludeSummaryRowsChanged, mr: 2 }))),
|
|
112
|
+
React.createElement(FormLayout_1.FormRow, { label: "Exclude Total Rows:" },
|
|
113
|
+
React.createElement(rebass_1.Flex, { alignItems: "center", marginLeft: 2 },
|
|
114
|
+
React.createElement(CheckBox_1.CheckBox, { "data-name": "exclude-total-rows-checkbox", checked: data.RowScope?.ExcludeTotalRows, onChange: onExcludeTotalRowsChanged, mr: 2 }))))),
|
|
114
115
|
React.createElement(FormLayout_1.FormRow, { label: "Apply on Column Group:" },
|
|
115
116
|
React.createElement(Radio_1.RadioGroup, { value: data.ColumnGroupScope || 'Both', name: "columnGroupScope", orientation: "horizontal", onRadioChange: (columnGroupScope) => {
|
|
116
117
|
props.onChange({
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { FormatColumn } from '../../../AdaptableState/FormatColumnState';
|
|
3
|
+
type FormatColumnScopeWizardSectionProps = {
|
|
4
|
+
onChange: (data: FormatColumn) => void;
|
|
5
|
+
};
|
|
6
|
+
export declare const renderFormatColumnTargetSummary: (data: FormatColumn) => "Column Header" | "Column Cells";
|
|
7
|
+
export declare const FormatColumnTargetWizardSection: (props: FormatColumnScopeWizardSectionProps) => React.JSX.Element;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FormatColumnTargetWizardSection = exports.renderFormatColumnTargetSummary = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const React = tslib_1.__importStar(require("react"));
|
|
6
|
+
const OnePageAdaptableWizard_1 = require("../../Wizard/OnePageAdaptableWizard");
|
|
7
|
+
const Tabs_1 = require("../../../components/Tabs");
|
|
8
|
+
const rebass_1 = require("rebass");
|
|
9
|
+
const TypeRadio_1 = require("../../Wizard/TypeRadio");
|
|
10
|
+
const renderFormatColumnTargetSummary = (data) => {
|
|
11
|
+
if (!data.Target || data.Target === 'cell') {
|
|
12
|
+
return 'Column Cells';
|
|
13
|
+
}
|
|
14
|
+
if (data.Target === 'columnHeader') {
|
|
15
|
+
return 'Column Header';
|
|
16
|
+
}
|
|
17
|
+
};
|
|
18
|
+
exports.renderFormatColumnTargetSummary = renderFormatColumnTargetSummary;
|
|
19
|
+
const FormatColumnTargetWizardSection = (props) => {
|
|
20
|
+
const { data, api } = (0, OnePageAdaptableWizard_1.useOnePageAdaptableWizardContext)();
|
|
21
|
+
const currentTarget = data.Target ? data.Target : 'cell';
|
|
22
|
+
const handleTargetChange = (target) => {
|
|
23
|
+
// Update the formatColumn object
|
|
24
|
+
props.onChange({
|
|
25
|
+
...data,
|
|
26
|
+
Target: target,
|
|
27
|
+
});
|
|
28
|
+
};
|
|
29
|
+
return (React.createElement(React.Fragment, null,
|
|
30
|
+
React.createElement(Tabs_1.Tabs, { mb: 3 },
|
|
31
|
+
React.createElement(Tabs_1.Tabs.Tab, null, "Target"),
|
|
32
|
+
React.createElement(Tabs_1.Tabs.Content, null,
|
|
33
|
+
React.createElement(rebass_1.Flex, { flexDirection: "column" },
|
|
34
|
+
React.createElement(TypeRadio_1.TypeRadio, { "data-name": "target-column-cell", text: 'Column Cells', description: "Column Cells are styled and formatted", checked: currentTarget === 'cell', onClick: () => handleTargetChange('cell') }),
|
|
35
|
+
React.createElement(TypeRadio_1.TypeRadio, { "data-name": "target-column-header", text: 'Column Header', description: "The Column Header is styled (Note: Conditions are not available for Column Headers)", checked: currentTarget === 'columnHeader', onClick: () => handleTargetChange('columnHeader') }))))));
|
|
36
|
+
};
|
|
37
|
+
exports.FormatColumnTargetWizardSection = FormatColumnTargetWizardSection;
|
|
@@ -21,9 +21,14 @@ const Utilities_1 = require("../../Components/EntityRulesEditor/Utilities");
|
|
|
21
21
|
const FormatColumnRuleWizardSection_1 = require("./FormatColumnRuleWizardSection");
|
|
22
22
|
const constants_1 = require("./constants");
|
|
23
23
|
const ObjectExtensions_1 = require("../../../Utilities/Extensions/ObjectExtensions");
|
|
24
|
-
const
|
|
25
|
-
|
|
26
|
-
const
|
|
24
|
+
const FormatColumnTargetWizardSection_1 = require("./FormatColumnTargetWizardSection");
|
|
25
|
+
const adjustDisplayFormat = (fc, api) => {
|
|
26
|
+
const formatColumn = { ...fc };
|
|
27
|
+
let formatDataType = (0, FormatColumnFormatWizardSection_1.getFormatDisplayTypeForScope)(formatColumn.Scope, api);
|
|
28
|
+
if (formatColumn.Target === 'columnHeader') {
|
|
29
|
+
// Column Headers are always text
|
|
30
|
+
formatDataType = 'text';
|
|
31
|
+
}
|
|
27
32
|
if (!formatDataType && formatColumn.DisplayFormat) {
|
|
28
33
|
formatColumn.DisplayFormat = undefined;
|
|
29
34
|
}
|
|
@@ -92,7 +97,7 @@ function FormatColumnWizard(props) {
|
|
|
92
97
|
};
|
|
93
98
|
return (React.createElement(OnePageAdaptableWizard_1.OnePageAdaptableWizard, { defaultCurrentSectionName: props.defaultCurrentSectionName, moduleInfo: props.moduleInfo, data: formatColumn, onHide: props.onCloseWizard, onFinish: handleFinish, sections: [
|
|
94
99
|
{
|
|
95
|
-
title: 'Scope
|
|
100
|
+
title: 'Scope',
|
|
96
101
|
details: 'Select which Columns will be formatted',
|
|
97
102
|
isValid: NewScopeComponent_1.isScopeValid,
|
|
98
103
|
renderSummary: FormatColumnScopeWizardSection_1.renderFormatColumnScopeSummary,
|
|
@@ -101,6 +106,15 @@ function FormatColumnWizard(props) {
|
|
|
101
106
|
React.createElement(FormatColumnScopeWizardSection_1.FormatColumnScopeWizardSection, { onChange: setFormatColumn })));
|
|
102
107
|
},
|
|
103
108
|
},
|
|
109
|
+
{
|
|
110
|
+
title: 'Target',
|
|
111
|
+
details: 'Select which Columns Elements will be formatted',
|
|
112
|
+
renderSummary: FormatColumnTargetWizardSection_1.renderFormatColumnTargetSummary,
|
|
113
|
+
render: () => {
|
|
114
|
+
return (React.createElement(rebass_1.Flex, { flexDirection: "column", style: { height: '100%' }, padding: 2 },
|
|
115
|
+
React.createElement(FormatColumnTargetWizardSection_1.FormatColumnTargetWizardSection, { onChange: setFormatColumn })));
|
|
116
|
+
},
|
|
117
|
+
},
|
|
104
118
|
{
|
|
105
119
|
isValid: (abObject, api, context) => {
|
|
106
120
|
if (!abObject.Rule) {
|
|
@@ -644,12 +644,15 @@ You need to define at least one Layout!`);
|
|
|
644
644
|
*/
|
|
645
645
|
this.agGridOptionsService.setGridOptionsProperty(gridOptions, 'defaultColDef', (original_defaultColDef) => {
|
|
646
646
|
if (original_defaultColDef?.headerValueGetter) {
|
|
647
|
-
this.logger.warn(`defaultColDef.headerValueGetter and overrides the Adaptable custom header mechanism! We recommend using a ColumnOptions.
|
|
647
|
+
this.logger.warn(`defaultColDef.headerValueGetter and overrides the Adaptable custom header mechanism! We recommend using a ColumnOptions.columnHeader instead!`);
|
|
648
648
|
return original_defaultColDef;
|
|
649
649
|
}
|
|
650
|
+
// #customize_header
|
|
650
651
|
const defaultColDef = { ...original_defaultColDef };
|
|
651
652
|
defaultColDef.headerValueGetter = (0, adaptableOverrideCheck_1.tagProvidedByAdaptable)((params) => {
|
|
652
|
-
|
|
653
|
+
const columnHeaderName = this.api.columnApi.internalApi.getColumnHeaderName(params);
|
|
654
|
+
const formattedHeaderName = this.api.formatColumnApi.internalApi.formatColumnHeaderName(columnHeaderName, params);
|
|
655
|
+
return formattedHeaderName;
|
|
653
656
|
});
|
|
654
657
|
return defaultColDef;
|
|
655
658
|
});
|
|
@@ -29,7 +29,7 @@ export declare class AgGridColumnAdapter {
|
|
|
29
29
|
private setupColumnAllowedAggFuncs;
|
|
30
30
|
private setupColumnType;
|
|
31
31
|
private setupColumnCellDataType;
|
|
32
|
-
setupColumnHeader({ col
|
|
32
|
+
setupColumnHeader({ col }: ColumnSetupInfo): void;
|
|
33
33
|
private setupColumnFilter;
|
|
34
34
|
setupColumnFloatingFilterTemporarily(initialGridOptions: GridOptions): void;
|
|
35
35
|
private setupColumnFloatingFilter;
|
|
@@ -139,8 +139,8 @@ class AgGridColumnAdapter {
|
|
|
139
139
|
this.setupColumnCellClass(colSetupInfo);
|
|
140
140
|
this.setupColumnHeaderStyle(colSetupInfo);
|
|
141
141
|
this.setupColumnHeaderClass(colSetupInfo);
|
|
142
|
-
this.setupColumnTooltipValueGetter(colSetupInfo);
|
|
143
142
|
this.setupColumnValueGetter(colSetupInfo);
|
|
143
|
+
this.setupColumnTooltipValueGetter(colSetupInfo);
|
|
144
144
|
this.setupColumnFilter(colSetupInfo);
|
|
145
145
|
this.setupColumnFloatingFilter(colSetupInfo);
|
|
146
146
|
this.setupColumnValueFormatter(colSetupInfo);
|
|
@@ -508,10 +508,11 @@ class AgGridColumnAdapter {
|
|
|
508
508
|
return original_cellDataType ?? true;
|
|
509
509
|
});
|
|
510
510
|
}
|
|
511
|
-
setupColumnHeader({ col
|
|
511
|
+
setupColumnHeader({ col }) {
|
|
512
512
|
this.setColDefProperty(col, 'headerValueGetter', (original_headerValueGetter) => {
|
|
513
|
+
// see #customize_header
|
|
513
514
|
if (!(0, adaptableOverrideCheck_1.isProvidedByAdaptable)(original_headerValueGetter)) {
|
|
514
|
-
this.adaptableApi.logWarn(`colDef.headerValueGetter is defined for column '${col.getColId()}', and overrides the Adaptable custom header mechanism! We recommend using a ColumnOptions.
|
|
515
|
+
this.adaptableApi.logWarn(`colDef.headerValueGetter is defined for column '${col.getColId()}', and overrides the Adaptable custom header mechanism! We recommend using a ColumnOptions.columnHeader instead!`);
|
|
515
516
|
}
|
|
516
517
|
return original_headerValueGetter;
|
|
517
518
|
});
|
|
@@ -602,7 +603,7 @@ class AgGridColumnAdapter {
|
|
|
602
603
|
}
|
|
603
604
|
setupColumnValueFormatter({ col, abColumn }) {
|
|
604
605
|
this.setColDefProperty(col, 'valueFormatter', (userPropertyValue) => {
|
|
605
|
-
const activeFormatColumnsWithDisplayFormat = this.adaptableApi.formatColumnApi.internalApi.getFormatColumnsWithDisplayFormatForColumn(abColumn);
|
|
606
|
+
const activeFormatColumnsWithDisplayFormat = this.adaptableApi.formatColumnApi.internalApi.getFormatColumnsWithDisplayFormatForColumn(abColumn, { target: 'cell' });
|
|
606
607
|
if (!activeFormatColumnsWithDisplayFormat.length) {
|
|
607
608
|
return;
|
|
608
609
|
}
|
|
@@ -481,7 +481,7 @@ class AgGridExportAdapter {
|
|
|
481
481
|
return memoizedFormatColumns;
|
|
482
482
|
}
|
|
483
483
|
const abColumn = getAdaptableColumnWithColumnId(columnId);
|
|
484
|
-
const formatColumns = this.adaptableApi.formatColumnApi.internalApi.getFormatColumnsWithDisplayFormatForColumn(abColumn);
|
|
484
|
+
const formatColumns = this.adaptableApi.formatColumnApi.internalApi.getFormatColumnsWithDisplayFormatForColumn(abColumn, { target: 'cell' });
|
|
485
485
|
formatColumnsWithDisplayFormatMemo[columnId] = formatColumns;
|
|
486
486
|
return formatColumns;
|
|
487
487
|
};
|
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.3.0
|
|
5
|
+
PUBLISH_TIMESTAMP: 1753107549084 || Date.now(),
|
|
6
|
+
VERSION: "20.3.0" || '--current-version--',
|
|
7
7
|
};
|
|
@@ -1480,6 +1480,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1480
1480
|
desc: string;
|
|
1481
1481
|
}[];
|
|
1482
1482
|
};
|
|
1483
|
+
AutoGroupColumnHeaderContext: {
|
|
1484
|
+
name: string;
|
|
1485
|
+
kind: string;
|
|
1486
|
+
desc: string;
|
|
1487
|
+
props: {
|
|
1488
|
+
name: string;
|
|
1489
|
+
kind: string;
|
|
1490
|
+
desc: string;
|
|
1491
|
+
}[];
|
|
1492
|
+
};
|
|
1483
1493
|
BadgeStyle: {
|
|
1484
1494
|
name: string;
|
|
1485
1495
|
kind: string;
|
|
@@ -2015,6 +2025,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2015
2025
|
kind: string;
|
|
2016
2026
|
desc: string;
|
|
2017
2027
|
};
|
|
2028
|
+
ColumnHeaderContext: {
|
|
2029
|
+
name: string;
|
|
2030
|
+
kind: string;
|
|
2031
|
+
desc: string;
|
|
2032
|
+
};
|
|
2018
2033
|
ColumnMenuContext: {
|
|
2019
2034
|
name: string;
|
|
2020
2035
|
kind: string;
|
|
@@ -3670,7 +3685,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3670
3685
|
desc: string;
|
|
3671
3686
|
isOpt: boolean;
|
|
3672
3687
|
defVal: string;
|
|
3673
|
-
ref
|
|
3688
|
+
ref: string;
|
|
3674
3689
|
})[];
|
|
3675
3690
|
};
|
|
3676
3691
|
FormatColumnOptions: {
|
|
@@ -4526,6 +4541,46 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4526
4541
|
kind: string;
|
|
4527
4542
|
desc: string;
|
|
4528
4543
|
};
|
|
4544
|
+
PivotAggregationTotalHeaderContext: {
|
|
4545
|
+
name: string;
|
|
4546
|
+
kind: string;
|
|
4547
|
+
desc: string;
|
|
4548
|
+
props: {
|
|
4549
|
+
name: string;
|
|
4550
|
+
kind: string;
|
|
4551
|
+
desc: string;
|
|
4552
|
+
}[];
|
|
4553
|
+
};
|
|
4554
|
+
PivotColumnGroupHeaderContext: {
|
|
4555
|
+
name: string;
|
|
4556
|
+
kind: string;
|
|
4557
|
+
desc: string;
|
|
4558
|
+
props: {
|
|
4559
|
+
name: string;
|
|
4560
|
+
kind: string;
|
|
4561
|
+
desc: string;
|
|
4562
|
+
}[];
|
|
4563
|
+
};
|
|
4564
|
+
PivotColumnTotalHeaderContext: {
|
|
4565
|
+
name: string;
|
|
4566
|
+
kind: string;
|
|
4567
|
+
desc: string;
|
|
4568
|
+
props: {
|
|
4569
|
+
name: string;
|
|
4570
|
+
kind: string;
|
|
4571
|
+
desc: string;
|
|
4572
|
+
}[];
|
|
4573
|
+
};
|
|
4574
|
+
PivotGrandTotalHeaderContext: {
|
|
4575
|
+
name: string;
|
|
4576
|
+
kind: string;
|
|
4577
|
+
desc: string;
|
|
4578
|
+
props: {
|
|
4579
|
+
name: string;
|
|
4580
|
+
kind: string;
|
|
4581
|
+
desc: string;
|
|
4582
|
+
}[];
|
|
4583
|
+
};
|
|
4529
4584
|
PivotLayout: {
|
|
4530
4585
|
name: string;
|
|
4531
4586
|
kind: string;
|
|
@@ -4566,6 +4621,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4566
4621
|
ref: string;
|
|
4567
4622
|
})[];
|
|
4568
4623
|
};
|
|
4624
|
+
PivotResultColumnHeaderContext: {
|
|
4625
|
+
name: string;
|
|
4626
|
+
kind: string;
|
|
4627
|
+
desc: string;
|
|
4628
|
+
props: {
|
|
4629
|
+
name: string;
|
|
4630
|
+
kind: string;
|
|
4631
|
+
desc: string;
|
|
4632
|
+
}[];
|
|
4633
|
+
};
|
|
4569
4634
|
PivotTotalPosition: {
|
|
4570
4635
|
name: string;
|
|
4571
4636
|
kind: string;
|
|
@@ -5054,6 +5119,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
5054
5119
|
kind: string;
|
|
5055
5120
|
desc: string;
|
|
5056
5121
|
};
|
|
5122
|
+
RowGroupColumnHeaderContext: {
|
|
5123
|
+
name: string;
|
|
5124
|
+
kind: string;
|
|
5125
|
+
desc: string;
|
|
5126
|
+
props: {
|
|
5127
|
+
name: string;
|
|
5128
|
+
kind: string;
|
|
5129
|
+
desc: string;
|
|
5130
|
+
}[];
|
|
5131
|
+
};
|
|
5057
5132
|
RowGroupValues: {
|
|
5058
5133
|
name: string;
|
|
5059
5134
|
kind: string;
|
|
@@ -5668,6 +5743,32 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
5668
5743
|
kind: string;
|
|
5669
5744
|
desc: string;
|
|
5670
5745
|
};
|
|
5746
|
+
TableColumnGroupHeaderContext: {
|
|
5747
|
+
name: string;
|
|
5748
|
+
kind: string;
|
|
5749
|
+
desc: string;
|
|
5750
|
+
props: {
|
|
5751
|
+
name: string;
|
|
5752
|
+
kind: string;
|
|
5753
|
+
desc: string;
|
|
5754
|
+
}[];
|
|
5755
|
+
};
|
|
5756
|
+
TableColumnHeaderContext: {
|
|
5757
|
+
name: string;
|
|
5758
|
+
kind: string;
|
|
5759
|
+
desc: string;
|
|
5760
|
+
props: ({
|
|
5761
|
+
name: string;
|
|
5762
|
+
kind: string;
|
|
5763
|
+
desc: string;
|
|
5764
|
+
isOpt: boolean;
|
|
5765
|
+
} | {
|
|
5766
|
+
name: string;
|
|
5767
|
+
kind: string;
|
|
5768
|
+
desc: string;
|
|
5769
|
+
isOpt?: undefined;
|
|
5770
|
+
})[];
|
|
5771
|
+
};
|
|
5671
5772
|
TableLayout: {
|
|
5672
5773
|
name: string;
|
|
5673
5774
|
kind: string;
|