@adaptabletools/adaptable 22.0.0-canary.2 → 22.0.0-canary.4
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/index.css +64 -26
- package/index.css.map +1 -1
- package/package.json +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +2 -2
- package/src/AdaptableOptions/ActionColumnOptions.d.ts +2 -2
- package/src/AdaptableOptions/CustomSortOptions.d.ts +5 -0
- package/src/AdaptableOptions/DashboardOptions.d.ts +1 -2
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +1 -2
- package/src/AdaptableState/AlertState.d.ts +2 -2
- package/src/AdaptableState/ChartingState.d.ts +3 -3
- package/src/AdaptableState/Common/AdaptableAlert.d.ts +2 -2
- package/src/AdaptableState/Common/AdaptableButton.d.ts +2 -2
- package/src/AdaptableState/Common/AdaptableFlashingCell.d.ts +2 -2
- package/src/AdaptableState/Common/AdaptableObject.d.ts +25 -2
- package/src/AdaptableState/Common/AdaptableStyle.d.ts +8 -0
- package/src/AdaptableState/Common/RowSummary.d.ts +1 -1
- package/src/AdaptableState/Common/Schedule.d.ts +3 -4
- package/src/AdaptableState/Common/SystemStatusMessageInfo.d.ts +2 -2
- package/src/AdaptableState/CustomSortState.d.ts +2 -2
- package/src/AdaptableState/DashboardState.d.ts +2 -2
- package/src/AdaptableState/ExportState.d.ts +2 -2
- package/src/AdaptableState/FlashingCellState.d.ts +2 -2
- package/src/AdaptableState/FormatColumnState.d.ts +2 -10
- package/src/AdaptableState/LayoutState.d.ts +8 -3
- package/src/AdaptableState/NamedQueryState.d.ts +2 -2
- package/src/AdaptableState/PlusMinusState.d.ts +2 -2
- package/src/AdaptableState/ShortcutState.d.ts +2 -2
- package/src/AdaptableState/StyledColumnState.d.ts +1 -1
- package/src/AdaptableState/ThemeState.d.ts +2 -2
- package/src/Api/CustomSortApi.d.ts +6 -3
- package/src/Api/DataSetApi.d.ts +1 -1
- package/src/Api/GridApi.d.ts +3 -3
- package/src/Api/Implementation/CustomSortApiImpl.d.ts +5 -1
- package/src/Api/Implementation/CustomSortApiImpl.js +2 -2
- package/src/Api/Implementation/GridApiImpl.d.ts +9 -9
- package/src/Api/Implementation/GridApiImpl.js +16 -16
- package/src/Api/Implementation/LayoutHelpers.js +7 -0
- package/src/Api/Implementation/ScheduleApiImpl.js +1 -0
- package/src/Api/Internal/ColumnInternalApi.js +1 -1
- package/src/Api/Internal/FormatColumnInternalApi.d.ts +0 -10
- package/src/Api/Internal/FormatColumnInternalApi.js +1 -19
- package/src/Redux/ActionsReducers/LayoutRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/NoteRedux.js +1 -1
- package/src/Strategy/AlertModule.js +4 -0
- package/src/Strategy/CustomSortModule.js +4 -0
- package/src/Strategy/FlashingCellModule.js +5 -0
- package/src/Strategy/FormatColumnModule.js +4 -0
- package/src/Strategy/LayoutModule.js +4 -4
- package/src/Strategy/PlusMinusModule.js +4 -0
- package/src/Strategy/ScheduleModule.js +4 -0
- package/src/Strategy/ShortcutModule.js +4 -0
- package/src/Strategy/Utilities/FormatColumn/getFormatColumnSettingsViewItems.js +0 -3
- package/src/Utilities/Constants/DocumentationLinkConstants.d.ts +2 -2
- package/src/Utilities/Constants/DocumentationLinkConstants.js +2 -2
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +3 -3
- package/src/Utilities/Extensions/StringExtensions.d.ts +2 -0
- package/src/Utilities/Extensions/StringExtensions.js +16 -0
- package/src/Utilities/Helpers/FormatHelper.js +9 -2
- package/src/Utilities/Helpers/StyleHelper.js +14 -0
- package/src/Utilities/ObjectFactory.js +16 -3
- package/src/Utilities/Services/AnnotationsService.js +1 -1
- package/src/Utilities/Services/ModuleService.js +3 -3
- package/src/View/AdaptablePopover/index.d.ts +1 -0
- package/src/View/AdaptablePopover/index.js +1 -1
- package/src/View/Alert/ActiveAlertsPanel.js +8 -0
- package/src/View/Alert/AlertViewPanel.js +13 -9
- package/src/View/Alert/Utilities/getAlertButtonStyle.d.ts +1 -0
- package/src/View/Alert/Utilities/getAlertButtonStyle.js +8 -0
- package/src/View/Alert/Utilities/getDefaultAlertDefinition.d.ts +2 -1
- package/src/View/Alert/Wizard/AlertTypeWizardSection.d.ts +5 -2
- package/src/View/Alert/Wizard/AlertTypeWizardSection.js +47 -12
- package/src/View/Alert/Wizard/AlertWizard.js +14 -10
- package/src/View/BulkUpdate/BulkUpdateViewPanel.js +23 -11
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +2 -2
- package/src/View/CellSummary/CellSummaryViewPanel.js +15 -17
- package/src/View/Components/AdaptableDateInput/index.js +1 -1
- package/src/View/Components/Buttons/ButtonApply.js +1 -1
- package/src/View/Components/Buttons/ButtonClear.d.ts +1 -0
- package/src/View/Components/Buttons/EntityListActionButtons.d.ts +1 -2
- package/src/View/Components/Buttons/SuspendToggleButton/SuspendToggleButton.d.ts +1 -2
- package/src/View/Components/Selectors/BulkUpdateValueSelector.js +19 -18
- package/src/View/Components/StyleComponent.js +20 -1
- package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.d.ts +2 -1
- package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +40 -14
- package/src/View/CustomSort/Wizard/CustomSortWizard.js +4 -4
- package/src/View/Dashboard/DashboardPopup.js +4 -5
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +1 -0
- package/src/View/Export/ExportDestinationPicker.js +1 -1
- package/src/View/Export/ExportStatusBar.js +4 -2
- package/src/View/Export/ExportViewPanel.js +25 -18
- package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.d.ts +2 -1
- package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +34 -14
- package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +14 -10
- package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +46 -51
- package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +2 -2
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +20 -9
- package/src/View/GridInfo/GridInfoPopup/GridInfoPopup.js +57 -65
- package/src/View/Layout/Wizard/sections/PivotColumnsSection.js +8 -0
- package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.js +32 -9
- package/src/View/PlusMinus/Wizard/PlusMinusWizard.js +20 -15
- package/src/View/QuickSearch/QuickSearchPopup.js +4 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsIPushPull.js +12 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsOpenFin.js +12 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.js +14 -4
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReport.js +12 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/isSettingsValid.d.ts +2 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/isSettingsValid.js +10 -1
- package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.d.ts +2 -1
- package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +25 -4
- package/src/View/Shortcut/Wizard/ShortcutWizard.js +18 -14
- package/src/View/UIHelper.d.ts +2 -0
- package/src/View/UIHelper.js +15 -0
- package/src/agGrid/AdaptableAgGrid.d.ts +2 -2
- package/src/agGrid/AdaptableAgGrid.js +5 -5
- package/src/agGrid/AgGridColumnAdapter.js +3 -18
- package/src/components/Dashboard/DashboardToolbar.js +1 -1
- package/src/components/ExpressionEditor/EditorInput.js +19 -3
- package/src/components/Tree/TreeDropdown/index.js +1 -1
- package/src/env.js +2 -2
- package/src/layout-manager/src/LayoutManagerModel.d.ts +1 -0
- package/src/layout-manager/src/index.js +25 -7
- package/src/layout-manager/src/normalizeLayoutModel.js +3 -0
- package/src/metamodel/adaptable.metamodel.d.ts +39 -7
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/migration/AdaptableUpgradeHelper.js +3 -1
- package/src/migration/VersionUpgrade22.d.ts +21 -0
- package/src/migration/VersionUpgrade22.js +187 -0
- package/src/types.d.ts +2 -3
- package/tsconfig.esm.tsbuildinfo +1 -1
- package/src/AdaptableState/Common/SuspendableObject.d.ts +0 -10
- package/src/AdaptableState/Common/SuspendableObject.js +0 -1
|
@@ -3,6 +3,7 @@ import { VersionUpgrade18 } from './VersionUpgrade18';
|
|
|
3
3
|
import { ADAPTABLE_VERSION } from '../EnvVars';
|
|
4
4
|
import { VersionUpgrade20 } from './VersionUpgrade20';
|
|
5
5
|
import { VersionUpgrade21 } from './VersionUpgrade21';
|
|
6
|
+
import { VersionUpgrade22 } from './VersionUpgrade22';
|
|
6
7
|
export class AdaptableUpgradeHelper {
|
|
7
8
|
currentMajorVersion;
|
|
8
9
|
versionUpgrades;
|
|
@@ -15,6 +16,7 @@ export class AdaptableUpgradeHelper {
|
|
|
15
16
|
this.versionUpgrades.set(18, new VersionUpgrade18(this.logger));
|
|
16
17
|
this.versionUpgrades.set(20, new VersionUpgrade20(this.logger));
|
|
17
18
|
this.versionUpgrades.set(21, new VersionUpgrade21(this.logger));
|
|
19
|
+
this.versionUpgrades.set(22, new VersionUpgrade22(this.logger));
|
|
18
20
|
}
|
|
19
21
|
static migrateAdaptableState(state, config) {
|
|
20
22
|
const upgradeHelper = new AdaptableUpgradeHelper(config.logger);
|
|
@@ -41,7 +43,7 @@ export class AdaptableUpgradeHelper {
|
|
|
41
43
|
}
|
|
42
44
|
getCurrentMajorVersion(version) {
|
|
43
45
|
// is good enough for now, we just need to make sure we don't forget to update it
|
|
44
|
-
return parseInt(version.split('.')[0]) ||
|
|
46
|
+
return parseInt(version.split('.')[0]) || 22;
|
|
45
47
|
}
|
|
46
48
|
getConsoleLogger() {
|
|
47
49
|
return {
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { VersionUpgrade } from './VersionUpgrade';
|
|
2
|
+
import { AdaptableState } from '../AdaptableState/AdaptableState';
|
|
3
|
+
export declare class VersionUpgrade22 extends VersionUpgrade {
|
|
4
|
+
migrateState(state: AdaptableState): AdaptableState;
|
|
5
|
+
private migrateNamedObjectState;
|
|
6
|
+
private migrateFormatColumnState;
|
|
7
|
+
private patchCustomSortName;
|
|
8
|
+
private patchFlashingCellName;
|
|
9
|
+
private patchFormatColumnName;
|
|
10
|
+
private patchPlusMinusNudgeName;
|
|
11
|
+
private patchShortcutName;
|
|
12
|
+
private patchAlertName;
|
|
13
|
+
private patchScheduleName;
|
|
14
|
+
private scopeToString;
|
|
15
|
+
private hashStrings;
|
|
16
|
+
/**
|
|
17
|
+
* Stringifies an object after removing metadata properties (Uuid, Source, AdaptableVersion)
|
|
18
|
+
* to ensure deterministic hashing regardless of generated values.
|
|
19
|
+
*/
|
|
20
|
+
private stringifyWithoutMetadata;
|
|
21
|
+
}
|
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
import { VersionUpgrade } from './VersionUpgrade';
|
|
2
|
+
import { removeAdaptableObjectPrimitivesInlineDeep } from '../Utilities/Helpers/AdaptableHelper';
|
|
3
|
+
export class VersionUpgrade22 extends VersionUpgrade {
|
|
4
|
+
migrateState(state) {
|
|
5
|
+
this.migrateFormatColumnState(state);
|
|
6
|
+
this.migrateNamedObjectState(state);
|
|
7
|
+
return state;
|
|
8
|
+
}
|
|
9
|
+
migrateNamedObjectState(state) {
|
|
10
|
+
this.patchCustomSortName(state.CustomSort);
|
|
11
|
+
this.patchFlashingCellName(state.FlashingCell);
|
|
12
|
+
this.patchFormatColumnName(state.FormatColumn);
|
|
13
|
+
this.patchPlusMinusNudgeName(state.PlusMinus);
|
|
14
|
+
this.patchShortcutName(state.Shortcut);
|
|
15
|
+
this.patchAlertName(state.Alert);
|
|
16
|
+
this.patchScheduleName(state.Schedule);
|
|
17
|
+
}
|
|
18
|
+
// We have moved CellAlignment (renamed Alignment) from independent property into Style
|
|
19
|
+
migrateFormatColumnState(state) {
|
|
20
|
+
const formatColumnState = state.FormatColumn;
|
|
21
|
+
if (formatColumnState && formatColumnState.FormatColumns) {
|
|
22
|
+
formatColumnState.FormatColumns = formatColumnState.FormatColumns.map((formatColumn) => {
|
|
23
|
+
//@ts-ignore
|
|
24
|
+
if (formatColumn.CellAlignment) {
|
|
25
|
+
formatColumn.Style = {
|
|
26
|
+
...formatColumn.Style,
|
|
27
|
+
//@ts-ignore
|
|
28
|
+
Alignment: formatColumn.CellAlignment,
|
|
29
|
+
};
|
|
30
|
+
//@ts-ignore
|
|
31
|
+
delete formatColumn.CellAlignment;
|
|
32
|
+
}
|
|
33
|
+
return formatColumn;
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
return state;
|
|
37
|
+
}
|
|
38
|
+
patchCustomSortName(customSortState) {
|
|
39
|
+
if (!customSortState) {
|
|
40
|
+
return;
|
|
41
|
+
}
|
|
42
|
+
customSortState.CustomSorts?.forEach((customSort) => {
|
|
43
|
+
if (!customSort.Name) {
|
|
44
|
+
const sortedValues = (customSort.SortedValues || []).join();
|
|
45
|
+
customSort.Name = `CustomSort-${customSort.ColumnId}-${this.hashStrings(['CustomSort', customSort.ColumnId, sortedValues])}`;
|
|
46
|
+
}
|
|
47
|
+
});
|
|
48
|
+
}
|
|
49
|
+
patchFlashingCellName(flashingCellState) {
|
|
50
|
+
if (!flashingCellState) {
|
|
51
|
+
return;
|
|
52
|
+
}
|
|
53
|
+
flashingCellState.FlashingCellDefinitions?.forEach((flashingCell) => {
|
|
54
|
+
if (!flashingCell.Name) {
|
|
55
|
+
const scopeStr = this.scopeToString(flashingCell.Scope);
|
|
56
|
+
const ruleStr = flashingCell.Rule?.BooleanExpression || '';
|
|
57
|
+
flashingCell.Name = `FlashingCell-${this.hashStrings(['FlashingCell', scopeStr, ruleStr])}`;
|
|
58
|
+
}
|
|
59
|
+
});
|
|
60
|
+
}
|
|
61
|
+
patchFormatColumnName(formatColumnState) {
|
|
62
|
+
if (!formatColumnState) {
|
|
63
|
+
return;
|
|
64
|
+
}
|
|
65
|
+
formatColumnState.FormatColumns?.forEach((formatColumn) => {
|
|
66
|
+
if (!formatColumn.Name) {
|
|
67
|
+
const scopeStr = this.scopeToString(formatColumn.Scope);
|
|
68
|
+
const styleStr = this.stringifyWithoutMetadata(formatColumn.Style);
|
|
69
|
+
formatColumn.Name = `FormatColumn-${this.hashStrings(['FormatColumn', scopeStr, styleStr])}`;
|
|
70
|
+
}
|
|
71
|
+
});
|
|
72
|
+
}
|
|
73
|
+
patchPlusMinusNudgeName(plusMinusState) {
|
|
74
|
+
if (!plusMinusState) {
|
|
75
|
+
return;
|
|
76
|
+
}
|
|
77
|
+
plusMinusState.PlusMinusNudges?.forEach((nudge) => {
|
|
78
|
+
if (!nudge.Name) {
|
|
79
|
+
const scopeStr = this.scopeToString(nudge.Scope);
|
|
80
|
+
const nudgeValue = String(nudge.NudgeValue ?? '');
|
|
81
|
+
nudge.Name = `PlusMinus-${this.hashStrings(['PlusMinus', scopeStr, nudgeValue])}`;
|
|
82
|
+
}
|
|
83
|
+
});
|
|
84
|
+
}
|
|
85
|
+
patchShortcutName(shortcutState) {
|
|
86
|
+
if (!shortcutState) {
|
|
87
|
+
return;
|
|
88
|
+
}
|
|
89
|
+
shortcutState.Shortcuts?.forEach((shortcut) => {
|
|
90
|
+
if (!shortcut.Name) {
|
|
91
|
+
const key = shortcut.ShortcutKey || '';
|
|
92
|
+
const operation = shortcut.ShortcutOperation || '';
|
|
93
|
+
const value = String(shortcut.ShortcutValue ?? '');
|
|
94
|
+
shortcut.Name = `Shortcut-${key}-${this.hashStrings(['Shortcut', key, operation, value])}`;
|
|
95
|
+
}
|
|
96
|
+
});
|
|
97
|
+
}
|
|
98
|
+
patchAlertName(alertState) {
|
|
99
|
+
if (!alertState) {
|
|
100
|
+
return;
|
|
101
|
+
}
|
|
102
|
+
alertState.AlertDefinitions?.forEach((alert) => {
|
|
103
|
+
if (!alert.Name) {
|
|
104
|
+
const scopeStr = this.scopeToString(alert.Scope);
|
|
105
|
+
const messageType = alert.MessageType || '';
|
|
106
|
+
const ruleStr = this.stringifyWithoutMetadata(alert.Rule);
|
|
107
|
+
alert.Name = `Alert-${messageType}-${this.hashStrings(['Alert', scopeStr, messageType, ruleStr])}`;
|
|
108
|
+
}
|
|
109
|
+
});
|
|
110
|
+
}
|
|
111
|
+
patchScheduleName(scheduleState) {
|
|
112
|
+
if (!scheduleState) {
|
|
113
|
+
return;
|
|
114
|
+
}
|
|
115
|
+
// Patch Reminder Schedules
|
|
116
|
+
scheduleState.Reminders?.forEach((reminder) => {
|
|
117
|
+
if (!reminder.Name) {
|
|
118
|
+
const header = reminder.Header || '';
|
|
119
|
+
const message = reminder.Message || '';
|
|
120
|
+
reminder.Name = `Reminder-${this.hashStrings(['Reminder', header, message])}`;
|
|
121
|
+
}
|
|
122
|
+
});
|
|
123
|
+
// Patch Report Schedules
|
|
124
|
+
scheduleState.ReportSchedules?.forEach((report) => {
|
|
125
|
+
if (!report.Name) {
|
|
126
|
+
const reportName = report.ReportName || '';
|
|
127
|
+
const format = report.ReportFormat || '';
|
|
128
|
+
report.Name = `ReportSchedule-${this.hashStrings(['ReportSchedule', reportName, format])}`;
|
|
129
|
+
}
|
|
130
|
+
});
|
|
131
|
+
// Patch IPushPull Schedules
|
|
132
|
+
scheduleState.IPushPullSchedules?.forEach((ipp) => {
|
|
133
|
+
if (!ipp.Name) {
|
|
134
|
+
const reportName = ipp.IPushPullReport?.ReportName || '';
|
|
135
|
+
const folder = ipp.IPushPullReport?.Folder || '';
|
|
136
|
+
const page = ipp.IPushPullReport?.Page || '';
|
|
137
|
+
ipp.Name = `IPushPullSchedule-${this.hashStrings(['IPushPullSchedule', reportName, folder, page])}`;
|
|
138
|
+
}
|
|
139
|
+
});
|
|
140
|
+
// Patch OpenFin Schedules
|
|
141
|
+
scheduleState.OpenFinSchedules?.forEach((openfin) => {
|
|
142
|
+
if (!openfin.Name) {
|
|
143
|
+
const reportName = openfin.OpenFinReport?.ReportName || '';
|
|
144
|
+
openfin.Name = `OpenFinSchedule-${this.hashStrings(['OpenFinSchedule', reportName])}`;
|
|
145
|
+
}
|
|
146
|
+
});
|
|
147
|
+
}
|
|
148
|
+
scopeToString(scope) {
|
|
149
|
+
if (!scope) {
|
|
150
|
+
return '';
|
|
151
|
+
}
|
|
152
|
+
if ('All' in scope && scope.All) {
|
|
153
|
+
return 'All';
|
|
154
|
+
}
|
|
155
|
+
if ('ColumnIds' in scope && scope.ColumnIds) {
|
|
156
|
+
return scope.ColumnIds.join(',');
|
|
157
|
+
}
|
|
158
|
+
if ('DataTypes' in scope && scope.DataTypes) {
|
|
159
|
+
return scope.DataTypes.join(',');
|
|
160
|
+
}
|
|
161
|
+
if ('ColumnTypes' in scope && scope.ColumnTypes) {
|
|
162
|
+
return scope.ColumnTypes.join(',');
|
|
163
|
+
}
|
|
164
|
+
return '';
|
|
165
|
+
}
|
|
166
|
+
hashStrings(strings) {
|
|
167
|
+
let hash = 0;
|
|
168
|
+
for (const str of strings) {
|
|
169
|
+
for (let i = 0; i < str.length; i++) {
|
|
170
|
+
hash = (hash * 31 + str.charCodeAt(i)) % 9000;
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
return hash + 1000;
|
|
174
|
+
}
|
|
175
|
+
/**
|
|
176
|
+
* Stringifies an object after removing metadata properties (Uuid, Source, AdaptableVersion)
|
|
177
|
+
* to ensure deterministic hashing regardless of generated values.
|
|
178
|
+
*/
|
|
179
|
+
stringifyWithoutMetadata(obj) {
|
|
180
|
+
if (!obj) {
|
|
181
|
+
return '';
|
|
182
|
+
}
|
|
183
|
+
const cloned = structuredClone(obj);
|
|
184
|
+
removeAdaptableObjectPrimitivesInlineDeep(cloned);
|
|
185
|
+
return JSON.stringify(cloned);
|
|
186
|
+
}
|
|
187
|
+
}
|
package/src/types.d.ts
CHANGED
|
@@ -157,8 +157,7 @@ export type { SystemStatusMessageInfo } from './AdaptableState/Common/SystemStat
|
|
|
157
157
|
export type { AlternativeModuleName } from './AdaptableState/Common/AlternativeModuleName';
|
|
158
158
|
export type { AdaptableFormat, DateFormatterOptions, NumberFormatterOptions, StringFormatterOptions, } from './AdaptableState/Common/AdaptableFormat';
|
|
159
159
|
export type { AdaptableMessageType } from './AdaptableState/Common/AdaptableMessageType';
|
|
160
|
-
export type { AdaptableObject, AdaptableObjectTag, AdaptableObjectLookupCriteria, AdaptableVersion, } from './AdaptableState/Common/AdaptableObject';
|
|
161
|
-
export type { SuspendableObject } from './AdaptableState/Common/SuspendableObject';
|
|
160
|
+
export type { Identifiable, AdaptableObject, AdaptableObjectTag, AdaptableObjectLookupCriteria, AdaptableVersion, SuspendableObject, NamedObject, } from './AdaptableState/Common/AdaptableObject';
|
|
162
161
|
export type { AdaptableQuery, AdaptableAggregatedBooleanQuery, AdaptableAggregatedScalarQuery, AdaptableBooleanQuery, AdaptableObservableQuery, AdaptableScalarQuery, } from './AdaptableState/Common/AdaptableQuery';
|
|
163
162
|
export type { AdaptablePredicate, AdaptableColumnPredicate, AdaptablePredicateDef, PredicateModuleScope, PredicateDefHandlerContext, PredicateDefInput, PredicateDefToStringParams, ColumnFilterDef, } from './AdaptableState/Common/AdaptablePredicate';
|
|
164
163
|
export type { ColumnScope } from './AdaptableState/Common/ColumnScope';
|
|
@@ -188,7 +187,7 @@ export type { DashboardState, DashboardTab, AdaptableCoordinate, } from './Adapt
|
|
|
188
187
|
export type { ExportState, Report, ReportData, ReportColumn, ReportSchedule, SystemReportName, SystemReportNames, SystemReportFormat, ReportRowScope, ReportColumnScope, ReportNameType, ReportFormatType, } from './AdaptableState/ExportState';
|
|
189
188
|
export type { ColumnFilter, ColumnFilterPredicate, SystemFilterPredicateIds, SystemFilterPredicateId, PredicatesOperator, } from './AdaptableState/Common/ColumnFilter';
|
|
190
189
|
export type { GridFilter } from './AdaptableState/Common/GridFilter';
|
|
191
|
-
export type { FormatColumn, FormatColumnState, FormatColumnRule, FormatColumnPredicate, SystemFormatColumnPredicateId, SystemFormatColumnPredicateIds,
|
|
190
|
+
export type { FormatColumn, FormatColumnState, FormatColumnRule, FormatColumnPredicate, SystemFormatColumnPredicateId, SystemFormatColumnPredicateIds, ColumnGroupScope, FormatColumnTarget, FormatColumnConfig, } from './AdaptableState/FormatColumnState';
|
|
192
191
|
export type { StyledColumn, StyledColumnState, PercentBarStyle, GradientStyle, CellColorRange, ColumnComparison, CellTextOptions, CellTextOption, NumericStyledColumn, RangeValueType, SparklineStyle, BadgeStyle, BadgeStyleDefinition, BadgeStylePredicate, SystemBadgeStylePredicateId, SystemBadgeStylePredicateIds, } from './AdaptableState/StyledColumnState';
|
|
193
192
|
export type { FreeTextColumn, FreeTextColumnState, FreeTextStoredValue, FreeTextColumnSettings, } from './AdaptableState/FreeTextColumnState';
|
|
194
193
|
export type { StatusBarState, AdaptableStatusBar } from './AdaptableState/StatusBarState';
|