@adaptabletools/adaptable 15.4.3 → 16.0.0-canary.1
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/base.css +1 -1
- package/base.css.map +1 -1
- package/bundle.cjs.js +234 -228
- package/index.css +1 -1
- package/index.css.map +1 -1
- package/package.json +2 -2
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +8 -2
- package/src/AdaptableOptions/ActionColumnOptions.d.ts +82 -0
- package/src/AdaptableOptions/{ActionOptions.d.ts → ActionRowOptions.d.ts} +15 -90
- package/src/AdaptableOptions/AdaptableOptions.d.ts +32 -12
- package/src/AdaptableOptions/AdaptableQLOptions.d.ts +1 -12
- package/src/AdaptableOptions/AlertOptions.d.ts +9 -0
- package/src/AdaptableOptions/CalendarOptions.d.ts +11 -0
- package/src/AdaptableOptions/CellSummaryOptions.d.ts +10 -0
- package/src/AdaptableOptions/ColumnOptions.d.ts +0 -4
- package/src/AdaptableOptions/CustomSortOptions.d.ts +24 -0
- package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +5 -1
- package/src/AdaptableOptions/DataSetOptions.d.ts +41 -0
- package/src/AdaptableOptions/DataSetOptions.js +2 -0
- package/src/AdaptableOptions/EditOptions.d.ts +4 -4
- package/src/AdaptableOptions/EntitlementOptions.d.ts +0 -16
- package/src/AdaptableOptions/ExportOptions.d.ts +2 -4
- package/src/AdaptableOptions/ExpressionOptions.d.ts +7 -0
- package/src/AdaptableOptions/FinancePluginOptions.d.ts +1 -1
- package/src/AdaptableOptions/GroupingOptions.d.ts +50 -0
- package/src/AdaptableOptions/GroupingOptions.js +2 -0
- package/src/AdaptableOptions/MasterDetailPluginOptions.d.ts +9 -0
- package/src/AdaptableOptions/PredicateOptions.d.ts +4 -0
- package/src/AdaptableOptions/TeamSharingOptions.d.ts +0 -8
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +30 -1
- package/src/Api/ActionColumnApi.d.ts +10 -0
- package/src/Api/ActionColumnApi.js +2 -0
- package/src/Api/{ActionApi.d.ts → ActionRowApi.d.ts} +4 -15
- package/src/Api/ActionRowApi.js +2 -0
- package/src/Api/AdaptableApi.d.ts +11 -6
- package/src/Api/AlertApi.d.ts +2 -111
- package/src/Api/BulkUpdateApi.d.ts +0 -7
- package/src/Api/CalculatedColumnApi.d.ts +0 -31
- package/src/Api/CalendarApi.d.ts +1 -1
- package/src/Api/CellSummaryApi.d.ts +0 -7
- package/src/Api/ChartingApi.d.ts +0 -7
- package/src/Api/ColumnApi.d.ts +1 -131
- package/src/Api/ConfigApi.d.ts +1 -7
- package/src/Api/CustomSortApi.d.ts +0 -25
- package/src/Api/DashboardApi.d.ts +0 -16
- package/src/Api/DataChangeHistoryApi.d.ts +0 -7
- package/src/Api/DataSetApi.d.ts +1 -16
- package/src/Api/EventApi.d.ts +1 -9
- package/src/Api/Events/AdaptableStateChanged.d.ts +0 -8
- package/src/Api/Events/AdaptableStateReloaded.d.ts +0 -4
- package/src/Api/Events/BaseEventInfo.d.ts +9 -1
- package/src/Api/Events/LiveDataChanged.d.ts +3 -7
- package/src/Api/ExportApi.d.ts +7 -31
- package/src/Api/{QueryLanguageApi.d.ts → ExpressionApi.d.ts} +2 -2
- package/src/Api/ExpressionApi.js +2 -0
- package/src/Api/FilterApi.d.ts +1 -59
- package/src/Api/FlashingCellApi.d.ts +0 -15
- package/src/Api/FormatColumnApi.d.ts +1 -91
- package/src/Api/FreeTextColumnApi.d.ts +0 -39
- package/src/Api/GridApi.d.ts +0 -31
- package/src/Api/Implementation/ActionColumnApiImpl.d.ts +7 -0
- package/src/Api/Implementation/ActionColumnApiImpl.js +14 -0
- package/src/Api/Implementation/ActionRowApiImpl.d.ts +12 -0
- package/src/Api/Implementation/{ActionApiImpl.js → ActionRowApiImpl.js} +8 -15
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +6 -4
- package/src/Api/Implementation/AdaptableApiImpl.js +7 -5
- package/src/Api/Implementation/AlertApiImpl.d.ts +1 -43
- package/src/Api/Implementation/AlertApiImpl.js +4 -94
- package/src/Api/Implementation/ApiBase.d.ts +15 -5
- package/src/Api/Implementation/ApiBase.js +26 -8
- package/src/Api/Implementation/CalculatedColumnApiImpl.d.ts +0 -7
- package/src/Api/Implementation/CalculatedColumnApiImpl.js +0 -32
- package/src/Api/Implementation/CalendarApiImpl.d.ts +1 -0
- package/src/Api/Implementation/CalendarApiImpl.js +20 -17
- package/src/Api/Implementation/CellSummaryApiImpl.d.ts +0 -1
- package/src/Api/Implementation/CellSummaryApiImpl.js +3 -6
- package/src/Api/Implementation/ChartingApiImpl.d.ts +0 -1
- package/src/Api/Implementation/ChartingApiImpl.js +0 -5
- package/src/Api/Implementation/ColumnApiImpl.d.ts +0 -35
- package/src/Api/Implementation/ColumnApiImpl.js +1 -138
- package/src/Api/Implementation/ConfigApiImpl.js +2 -1
- package/src/Api/Implementation/CustomSortApiImpl.d.ts +1 -5
- package/src/Api/Implementation/CustomSortApiImpl.js +0 -16
- package/src/Api/Implementation/DashboardApiImpl.d.ts +0 -4
- package/src/Api/Implementation/DashboardApiImpl.js +2 -24
- package/src/Api/Implementation/DataChangeHistoryApiImpl.d.ts +0 -1
- package/src/Api/Implementation/DataChangeHistoryApiImpl.js +0 -5
- package/src/Api/Implementation/DataSetApiImpl.d.ts +1 -4
- package/src/Api/Implementation/DataSetApiImpl.js +1 -14
- package/src/Api/Implementation/ExportApiImpl.d.ts +4 -10
- package/src/Api/Implementation/ExportApiImpl.js +15 -34
- package/src/Api/Implementation/{QueryLanguageApiImpl.d.ts → ExpressionApiImpl.d.ts} +4 -4
- package/src/Api/Implementation/{QueryLanguageApiImpl.js → ExpressionApiImpl.js} +7 -5
- package/src/Api/Implementation/FilterApiImpl.d.ts +1 -17
- package/src/Api/Implementation/FilterApiImpl.js +0 -53
- package/src/Api/Implementation/FlashingCellApiImpl.d.ts +0 -3
- package/src/Api/Implementation/FlashingCellApiImpl.js +2 -13
- package/src/Api/Implementation/FormatColumnApiImpl.d.ts +2 -34
- package/src/Api/Implementation/FormatColumnApiImpl.js +0 -73
- package/src/Api/Implementation/FreeTextColumnApiImpl.d.ts +0 -8
- package/src/Api/Implementation/FreeTextColumnApiImpl.js +0 -29
- package/src/Api/Implementation/GridApiImpl.d.ts +0 -7
- package/src/Api/Implementation/GridApiImpl.js +3 -32
- package/src/Api/Implementation/LayoutApiImpl.d.ts +1 -6
- package/src/Api/Implementation/LayoutApiImpl.js +2 -27
- package/src/Api/Implementation/OptionsApiImpl.d.ts +10 -5
- package/src/Api/Implementation/OptionsApiImpl.js +19 -7
- package/src/Api/Implementation/PlusMinusApiImpl.d.ts +0 -1
- package/src/Api/Implementation/PlusMinusApiImpl.js +0 -5
- package/src/Api/Implementation/PredicateApiImpl.d.ts +1 -8
- package/src/Api/Implementation/PredicateApiImpl.js +2 -30
- package/src/Api/Implementation/QueryApiImpl.d.ts +0 -5
- package/src/Api/Implementation/QueryApiImpl.js +0 -21
- package/src/Api/Implementation/QuickSearchApiImpl.d.ts +0 -1
- package/src/Api/Implementation/QuickSearchApiImpl.js +0 -5
- package/src/Api/Implementation/ScheduleApiImpl.d.ts +1 -18
- package/src/Api/Implementation/ScheduleApiImpl.js +0 -69
- package/src/Api/Implementation/ScopeApiImpl.js +1 -1
- package/src/Api/Implementation/SettingsPanelApiImpl.d.ts +0 -2
- package/src/Api/Implementation/SettingsPanelApiImpl.js +0 -9
- package/src/Api/Implementation/ShortcutApiImpl.d.ts +1 -6
- package/src/Api/Implementation/ShortcutApiImpl.js +0 -21
- package/src/Api/Implementation/SmartEditApiImpl.d.ts +0 -1
- package/src/Api/Implementation/SmartEditApiImpl.js +0 -5
- package/src/Api/Implementation/StyledColumnApiImpl.d.ts +1 -5
- package/src/Api/Implementation/StyledColumnApiImpl.js +2 -17
- package/src/Api/Implementation/SystemStatusApiImpl.d.ts +0 -2
- package/src/Api/Implementation/SystemStatusApiImpl.js +0 -9
- package/src/Api/Implementation/TeamSharingApiImpl.d.ts +0 -5
- package/src/Api/Implementation/TeamSharingApiImpl.js +0 -21
- package/src/Api/Implementation/ThemeApiImpl.d.ts +0 -4
- package/src/Api/Implementation/ThemeApiImpl.js +2 -17
- package/src/Api/Implementation/ToolPanelApiImpl.js +2 -2
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +4 -2
- package/src/Api/Implementation/UserInterfaceApiImpl.js +17 -10
- package/src/Api/Internal/{ActionInternalApi.d.ts → ActionRowInternalApi.d.ts} +2 -2
- package/src/Api/Internal/{ActionInternalApi.js → ActionRowInternalApi.js} +12 -5
- package/src/Api/Internal/AdaptableInternalApi.d.ts +1 -10
- package/src/Api/Internal/AdaptableInternalApi.js +9 -20
- package/src/Api/Internal/AlertInternalApi.js +9 -6
- package/src/Api/Internal/CalculatedColumnInternalApi.js +2 -2
- package/src/Api/Internal/CustomSortInternalApi.d.ts +1 -1
- package/src/Api/Internal/CustomSortInternalApi.js +1 -1
- package/src/Api/Internal/DashboardInternalApi.js +2 -0
- package/src/Api/Internal/DataSetInternalApi.d.ts +1 -1
- package/src/Api/Internal/DataSetInternalApi.js +2 -1
- package/src/Api/Internal/ExportInternalApi.js +1 -1
- package/src/Api/Internal/{QueryLanguageInternalApi.d.ts → ExpressionnternalApi.d.ts} +1 -1
- package/src/Api/Internal/{QueryLanguageInternalApi.js → ExpressionnternalApi.js} +9 -5
- package/src/Api/Internal/FilterInternalApi.js +4 -1
- package/src/Api/Internal/FormatColumnInternalApi.js +1 -1
- package/src/Api/Internal/GridInternalApi.js +8 -0
- package/src/Api/Internal/LayoutInternalApi.js +6 -1
- package/src/Api/Internal/PredicateInternalApi.js +10 -0
- package/src/Api/Internal/QueryInternalApi.js +3 -1
- package/src/Api/Internal/SystemStatusInternalApi.js +4 -1
- package/src/Api/Internal/TeamSharingInternalApi.js +2 -0
- package/src/Api/LayoutApi.d.ts +3 -27
- package/src/Api/OptionsApi.d.ts +28 -10
- package/src/Api/PlusMinusApi.d.ts +0 -7
- package/src/Api/PredicateApi.d.ts +1 -32
- package/src/Api/QueryApi.d.ts +0 -23
- package/src/Api/QuickSearchApi.d.ts +0 -4
- package/src/Api/ScheduleApi.d.ts +0 -81
- package/src/Api/SettingsPanelApi.d.ts +0 -11
- package/src/Api/ShortcutApi.d.ts +0 -25
- package/src/Api/SmartEditApi.d.ts +0 -7
- package/src/Api/StyledColumnApi.d.ts +0 -21
- package/src/Api/SystemStatusApi.d.ts +0 -11
- package/src/Api/TeamSharingApi.d.ts +0 -23
- package/src/Api/ThemeApi.d.ts +0 -19
- package/src/Api/UserInterfaceApi.d.ts +4 -9
- package/src/PredefinedConfig/AlertState.d.ts +4 -1
- package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +3 -3
- package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +4 -1
- package/src/PredefinedConfig/Common/AggregationColumns.d.ts +3 -0
- package/src/PredefinedConfig/Common/BaseContext.d.ts +8 -0
- package/src/PredefinedConfig/Common/CellSummary.d.ts +1 -0
- package/src/PredefinedConfig/Common/DataChangedScope.d.ts +9 -0
- package/src/PredefinedConfig/Common/Entitlement.d.ts +1 -1
- package/src/PredefinedConfig/Common/Enums.d.ts +2 -1
- package/src/PredefinedConfig/Common/Enums.js +1 -0
- package/src/PredefinedConfig/LayoutState.d.ts +0 -6
- package/src/PredefinedConfig/SystemState.d.ts +1 -1
- package/src/PredefinedConfig/TeamSharingState.d.ts +1 -1
- package/src/PredefinedConfig/ThemeState.d.ts +3 -0
- package/src/Strategy/AdaptableModuleBase.js +3 -3
- package/src/Strategy/AlertModule.js +3 -3
- package/src/Strategy/CalculatedColumnModule.js +2 -2
- package/src/Strategy/CellSummaryModule.js +3 -0
- package/src/Strategy/DataSetModule.d.ts +1 -1
- package/src/Strategy/DataSetModule.js +1 -1
- package/src/Strategy/ExportModule.js +4 -0
- package/src/Strategy/FlashingCellModule.js +4 -4
- package/src/Strategy/FormatColumnModule.js +3 -3
- package/src/Strategy/QueryModule.js +1 -1
- package/src/Strategy/SmartEditModule.js +2 -0
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +25 -23
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +4 -0
- package/src/Utilities/Helpers/AdaptableHelper.js +12 -6
- package/src/Utilities/Helpers/FormatHelper.js +7 -0
- package/src/Utilities/ObjectFactory.d.ts +2 -2
- package/src/Utilities/ObjectFactory.js +7 -4
- package/src/Utilities/Services/AlertService.js +1 -1
- package/src/Utilities/Services/CalculatedColumnExpressionService.js +2 -2
- package/src/Utilities/Services/ChartingService.js +2 -0
- package/src/Utilities/Services/EntitlementService.js +2 -2
- package/src/Utilities/Services/MetamodelService.js +4 -0
- package/src/Utilities/Services/ModuleService.js +10 -10
- package/src/Utilities/Services/QueryLanguageService.js +16 -0
- package/src/Utilities/Services/ReportService.js +8 -6
- package/src/Utilities/Services/RowEditService.js +4 -2
- package/src/Utilities/Services/ValidationService.js +2 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +5 -5
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizardColumnsStep.js +1 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/FinanceForm/FinanceForm.js +1 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/GridOptionsForm.js +9 -9
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsActionColumnsForm.js +3 -3
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsSidebarForm.js +4 -4
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsStatusbarForm.js +3 -3
- package/src/View/AdaptableWizardView/Wizard.js +2 -2
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +1 -1
- package/src/View/CellSummary/CellSummaryStatusPanel.js +1 -1
- package/src/View/Components/AdaptableIconSelector/index.d.ts +6 -0
- package/src/View/Components/AdaptableIconSelector/index.js +18 -0
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +2 -2
- package/src/View/Components/AdaptableViewIcon/index.d.ts +10 -0
- package/src/View/Components/AdaptableViewIcon/index.js +18 -0
- package/src/View/Components/EntityRulesEditor/Utilities.js +3 -3
- package/src/View/Components/ExternalRenderer.js +14 -2
- package/src/View/Components/FilterForm/QuickFilterForm.js +4 -0
- package/src/View/Components/Popups/AdaptablePopupAlert.js +2 -0
- package/src/View/Components/RangesComponent.d.ts +4 -4
- package/src/View/Components/RangesComponent.js +13 -22
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +2 -0
- package/src/View/Components/ToolPanel/CustomToolPanelContent.js +11 -1
- package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +1 -1
- package/src/View/Dashboard/CustomDashboardButton.js +2 -0
- package/src/View/Dashboard/CustomToolbarWrapper.js +13 -1
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +11 -7
- package/src/View/DataChangeHistory/buildActionColumnButton.d.ts +2 -2
- package/src/View/DataChangeHistory/buildActionColumnButton.js +3 -2
- package/src/View/Export/ExportViewPanel.d.ts +1 -1
- package/src/View/Export/ExportViewPanel.js +4 -4
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +3 -1
- package/src/View/GridInfo/GridInfoPopup.d.ts +0 -1
- package/src/View/GridInfo/GridInfoPopup.js +1 -2
- package/src/View/GridInfo/GridOptionsComponent.js +1 -1
- package/src/View/Layout/LayoutViewPanel.js +1 -1
- package/src/View/Layout/PivotDetailsPopoup.js +2 -0
- package/src/View/Layout/SaveLayoutButton.js +1 -1
- package/src/View/Layout/Wizard/LayoutWizard.js +1 -1
- package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +1 -1
- package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +1 -1
- package/src/View/StyledColumn/Wizard/StyledColumnBadgeSection.js +2 -2
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnBadgePreview.js +8 -1
- package/src/agGrid/ActionColumnRenderer.d.ts +1 -1
- package/src/agGrid/ActionColumnRenderer.js +5 -1
- package/src/agGrid/Adaptable.d.ts +21 -10
- package/src/agGrid/Adaptable.js +164 -63
- package/src/agGrid/BadgeRenderer.js +10 -2
- package/src/agGrid/CheckboxRenderer.d.ts +1 -2
- package/src/agGrid/agGridHelper.js +4 -5
- package/src/agGrid/agGridMenuHelper.js +4 -0
- package/src/agGrid/attachAddaptableColumnTypes.d.ts +11 -11
- package/src/agGrid/editors/AdaptableDateEditor/index.js +2 -0
- package/src/agGrid/editors/AdaptableNumberEditor/index.js +2 -2
- package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +6 -3
- package/src/components/AdaptableIconComponent/index.js +6 -3
- package/src/components/ExpressionEditor/BaseEditorInput.js +2 -0
- package/src/components/ExpressionEditor/index.js +1 -1
- package/src/components/IconSelector/IconSelector.d.ts +2 -0
- package/src/components/IconSelector/IconSelector.js +21 -5
- package/src/components/Input/NumberInput.d.ts +10 -0
- package/src/components/Input/NumberInput.js +46 -0
- package/src/metamodel/adaptable.metamodel.d.ts +230 -145
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +14 -8
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/AdaptableOptions/GeneralOptions.d.ts +0 -159
- package/src/Api/Events/SearchChanged.d.ts +0 -12
- package/src/Api/Implementation/ActionApiImpl.d.ts +0 -14
- /package/src/AdaptableOptions/{ActionOptions.js → ActionColumnOptions.js} +0 -0
- /package/src/AdaptableOptions/{GeneralOptions.js → ActionRowOptions.js} +0 -0
- /package/src/{Api/ActionApi.js → AdaptableOptions/CalendarOptions.js} +0 -0
- /package/src/{Api/Events/SearchChanged.js → AdaptableOptions/CellSummaryOptions.js} +0 -0
- /package/src/{Api/QueryLanguageApi.js → AdaptableOptions/CustomSortOptions.js} +0 -0
|
@@ -54,35 +54,4 @@ export interface CalculatedColumnApi {
|
|
|
54
54
|
* @param columnId column ID of the aggregated CalculatedColumn
|
|
55
55
|
*/
|
|
56
56
|
refreshAggregatedCalculatedColumn(columnId: string): void;
|
|
57
|
-
/**
|
|
58
|
-
* TO BE REMOVED
|
|
59
|
-
*/
|
|
60
|
-
/**
|
|
61
|
-
* @deprecated use `openCalculatedColumnSettingsPanel` instead
|
|
62
|
-
*/
|
|
63
|
-
showCalculatedColumnPopup(): void;
|
|
64
|
-
/**
|
|
65
|
-
* @deprecated use `getCalculatedColumns()` instead
|
|
66
|
-
*/
|
|
67
|
-
getAllCalculatedColumn(): CalculatedColumn[];
|
|
68
|
-
/***
|
|
69
|
-
* @deprecated internal method, will be removed in next major release
|
|
70
|
-
*/
|
|
71
|
-
editCalculatedColumns(calcColumns: CalculatedColumn[]): CalculatedColumn[];
|
|
72
|
-
/**
|
|
73
|
-
* @deprecated internal method, will be removed in next major release
|
|
74
|
-
*/
|
|
75
|
-
getCalculatedColumnModuleReferences(calculatedColumn: CalculatedColumn): string[];
|
|
76
|
-
/**
|
|
77
|
-
* @deprecated internal method, will be removed in next major release
|
|
78
|
-
*/
|
|
79
|
-
getCalculatedColumnsReferencingColumnId(columnId: string): CalculatedColumn[];
|
|
80
|
-
/**
|
|
81
|
-
* @deprecated internal method, will be removed in next major release
|
|
82
|
-
*/
|
|
83
|
-
getReferencedColumnIdsForCalculatedColumn(calculatedColumn: CalculatedColumn): string[];
|
|
84
|
-
/**
|
|
85
|
-
* @deprecated internal method, will be removed in next major release
|
|
86
|
-
*/
|
|
87
|
-
getReferencedColumnIdsForCalculatedColumnId(calculatedColumnId: string): string[];
|
|
88
57
|
}
|
package/src/Api/CalendarApi.d.ts
CHANGED
|
@@ -27,11 +27,4 @@ export interface CellSummaryApi {
|
|
|
27
27
|
* Retrieves the value of the given Cell Summary Operation
|
|
28
28
|
*/
|
|
29
29
|
getCellSummaryOperationValue(operation: CellSummaryOperation | string): any;
|
|
30
|
-
/**
|
|
31
|
-
* TO BE REMOVED
|
|
32
|
-
*/
|
|
33
|
-
/**
|
|
34
|
-
* @deprecated use `openCellSummaryPopupSettingsPanel` instead
|
|
35
|
-
*/
|
|
36
|
-
showCellSummaryPopup(): void;
|
|
37
30
|
}
|
package/src/Api/ChartingApi.d.ts
CHANGED
|
@@ -90,11 +90,4 @@ export interface ChartingApi {
|
|
|
90
90
|
* @param chartDefinition Chart to add
|
|
91
91
|
*/
|
|
92
92
|
getOpenChartContainer(chartDefinition: ChartDefinition): ChartContainer | null;
|
|
93
|
-
/**
|
|
94
|
-
* TO BE REMOVED
|
|
95
|
-
*/
|
|
96
|
-
/**
|
|
97
|
-
* @deprecated use `getChartDefinitions()` instead
|
|
98
|
-
*/
|
|
99
|
-
getAllChartDefinitions(): ChartDefinition[];
|
|
100
93
|
}
|
package/src/Api/ColumnApi.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { AdaptableColumn, AdaptableColumnDataType, GridCell } from '../../types';
|
|
1
|
+
import { AdaptableColumn, AdaptableColumnDataType } from '../../types';
|
|
3
2
|
/**
|
|
4
3
|
* Provides run-time access to Adaptable Column related features
|
|
5
4
|
*/
|
|
@@ -243,133 +242,4 @@ export interface ColumnApi {
|
|
|
243
242
|
* @param columnId Column to Check
|
|
244
243
|
*/
|
|
245
244
|
getDefaultAggFunc(columnId: string): string;
|
|
246
|
-
/**
|
|
247
|
-
* TO BE REMOVED
|
|
248
|
-
*/
|
|
249
|
-
/**
|
|
250
|
-
* @deprecated internal method, will be removed in next major release
|
|
251
|
-
*/
|
|
252
|
-
getAgGridColumnType(columnId: string): string | string[];
|
|
253
|
-
/**
|
|
254
|
-
* @deprecated use `StyledColumnApi.hasPercentBarStyle()` or `StyledColumnApi.hasGradientStyle()` instead
|
|
255
|
-
*/
|
|
256
|
-
isStyledNumericColumn(column: AdaptableColumn): boolean;
|
|
257
|
-
/**
|
|
258
|
-
* @deprecated use `hasNumberDataType()` instead
|
|
259
|
-
*/
|
|
260
|
-
isNumericColumn(column: AdaptableColumn): boolean;
|
|
261
|
-
/**
|
|
262
|
-
* @deprecated use `hasBooleanDataType()` instead
|
|
263
|
-
*/
|
|
264
|
-
isBooleanColumn(column: AdaptableColumn): boolean;
|
|
265
|
-
/**
|
|
266
|
-
* @deprecated use `hasDateDataType()` instead
|
|
267
|
-
*/
|
|
268
|
-
isDateColumn(column: AdaptableColumn): boolean;
|
|
269
|
-
/**
|
|
270
|
-
* @deprecated use `getColumnDataTypeForColumnId()` instead
|
|
271
|
-
*/
|
|
272
|
-
getColumnDataTypeFromColumnId(columnId: string): AdaptableColumnDataType | undefined;
|
|
273
|
-
/**
|
|
274
|
-
* @deprecated use `getFriendlyNameForColumnId()` instead
|
|
275
|
-
*/
|
|
276
|
-
getFriendlyNameFromColumnId(columnId: string): string;
|
|
277
|
-
/**
|
|
278
|
-
* @deprecated use `getFriendlyNameForColumnId()` instead
|
|
279
|
-
*/
|
|
280
|
-
getFriendlyNameFromColumn(columnId: string, column: AdaptableColumn): string;
|
|
281
|
-
/**
|
|
282
|
-
* @deprecated use `getFriendlyNamesForColumnIds()` instead
|
|
283
|
-
*/
|
|
284
|
-
getFriendlyNamesFromColumnIds(columnIds: string[]): string[];
|
|
285
|
-
/***
|
|
286
|
-
* @deprecated use `getColumnWithFriendlyName()` instead
|
|
287
|
-
*/
|
|
288
|
-
getColumnFromFriendlyName(columnName: string): AdaptableColumn;
|
|
289
|
-
/**
|
|
290
|
-
* @deprecated use `getColumnIdForFriendlyName()` instead
|
|
291
|
-
*/
|
|
292
|
-
getColumnIdFromFriendlyName(friendlyName: string): string;
|
|
293
|
-
/**
|
|
294
|
-
* @deprecated use `getColumnIdsForFriendlyNames()` instead
|
|
295
|
-
*/
|
|
296
|
-
getColumnIdsFromFriendlyNames(friendlyNames: string[]): string[];
|
|
297
|
-
/**
|
|
298
|
-
* @deprecated use `getColumnsWithFriendlyNames()` instead
|
|
299
|
-
*/
|
|
300
|
-
getColumnsFromFriendlyNames(friendlyNames: string[]): AdaptableColumn[];
|
|
301
|
-
/**
|
|
302
|
-
* @deprecated use `getColumnWithColumnId()` instead
|
|
303
|
-
*/
|
|
304
|
-
getColumnFromId(columnId: string, logWarning?: boolean): AdaptableColumn | undefined;
|
|
305
|
-
/**
|
|
306
|
-
* @deprecated use `getColumnsWithColumnIds()` instead
|
|
307
|
-
*/
|
|
308
|
-
getColumnsFromIds(columnIds: string[]): AdaptableColumn[];
|
|
309
|
-
/**
|
|
310
|
-
* @deprecated use `isColumnInGrid()` instead
|
|
311
|
-
*/
|
|
312
|
-
doesColumnExist(columnId: string): boolean;
|
|
313
|
-
/**
|
|
314
|
-
* @deprecated internal method, will be removed in next major release
|
|
315
|
-
*/
|
|
316
|
-
getDistinctDisplayValuesForColumn(columnId: string): any[];
|
|
317
|
-
/**
|
|
318
|
-
* @deprecated internal method, will be removed in next major release
|
|
319
|
-
*/
|
|
320
|
-
getDistinctFilterDisplayValuesForColumn(columnId: string, filter: string, showFilteredRowsOnly: boolean): Promise<{
|
|
321
|
-
values: {
|
|
322
|
-
value: any;
|
|
323
|
-
label: string;
|
|
324
|
-
}[];
|
|
325
|
-
suppressClientSideFilter: boolean;
|
|
326
|
-
}>;
|
|
327
|
-
/**
|
|
328
|
-
* @deprecated internal method, will be removed in next major release
|
|
329
|
-
*/
|
|
330
|
-
getDistinctCustomSortDisplayValuesForColumn(columnId: string): Promise<any[]>;
|
|
331
|
-
/**
|
|
332
|
-
* @deprecated internal method, will be removed in next major release
|
|
333
|
-
*/
|
|
334
|
-
getDistinctBulkUpdateDisplayValuesForColumn(columnId: string, selectedGridCells: GridCell[]): Promise<any[]>;
|
|
335
|
-
/**
|
|
336
|
-
* @deprecated internal method, will be removed in next major release
|
|
337
|
-
*/
|
|
338
|
-
getDistinctVisibleDisplayValuesForColumn(columnId: string): any[];
|
|
339
|
-
/**
|
|
340
|
-
* @deprecated internal method, will be removed in next major release
|
|
341
|
-
*/
|
|
342
|
-
getDistinctRawValuesForColumn(columnId: string, skipRowNode?: IRowNode): any[];
|
|
343
|
-
/**
|
|
344
|
-
* @deprecated internal method, will be removed in next major release
|
|
345
|
-
*/
|
|
346
|
-
getUnsortedDistinctRawValuesForColumn(columnId: string, skipRowNode?: IRowNode): any[];
|
|
347
|
-
/**
|
|
348
|
-
* @deprecated internal method, will be removed in next major release
|
|
349
|
-
*/
|
|
350
|
-
getDistinctVisibleRawValuesForColumn(columnId: string): any[];
|
|
351
|
-
/**
|
|
352
|
-
* @deprecated internal method, will be removed in next major release
|
|
353
|
-
*/
|
|
354
|
-
getAllColumnFriendlyNames(): string[];
|
|
355
|
-
/**
|
|
356
|
-
* @deprecated internal method, will be removed in next major release
|
|
357
|
-
*/
|
|
358
|
-
getAgGridColumnFieldForAdaptableColumn(columnId: string): string;
|
|
359
|
-
/**
|
|
360
|
-
* @deprecated internal method, will be removed in next major release
|
|
361
|
-
*/
|
|
362
|
-
getAgGridColumnForAdaptableColumn(columnId: string): Column;
|
|
363
|
-
/**
|
|
364
|
-
* @deprecated internal method, will be removed in next major release
|
|
365
|
-
*/
|
|
366
|
-
usesAdaptableFilterForm(columnId: string): boolean;
|
|
367
|
-
/**
|
|
368
|
-
* @deprecated internal method, will be removed in next major release
|
|
369
|
-
*/
|
|
370
|
-
usesAdaptableQuickFilter(columnId: string): boolean;
|
|
371
|
-
/**
|
|
372
|
-
* @deprecated internal method, will be removed in next major release
|
|
373
|
-
*/
|
|
374
|
-
getTypesForColumn(columnId: string): string | string[];
|
|
375
245
|
}
|
package/src/Api/ConfigApi.d.ts
CHANGED
|
@@ -57,13 +57,7 @@ export interface ConfigApi {
|
|
|
57
57
|
*/
|
|
58
58
|
getAllState(): AdaptableState;
|
|
59
59
|
/**
|
|
60
|
-
* Retrieves
|
|
61
|
-
*
|
|
62
|
-
* @deprecated use `getPersistedState()` instead
|
|
63
|
-
*/
|
|
64
|
-
getAllUserState(): ConfigState[];
|
|
65
|
-
/**
|
|
66
|
-
* Retrieves the persisted state in Adaptable. This is the state that was last stored with the `StatusOptions.persistState()` function.
|
|
60
|
+
* Retrieves persisted state in AdapTable - the state that was last stored with `StatusOptions.persistState()` function
|
|
67
61
|
*/
|
|
68
62
|
getPersistedState(): AdaptablePersistentState;
|
|
69
63
|
/**
|
|
@@ -80,29 +80,4 @@ export interface CustomSortApi {
|
|
|
80
80
|
* Opens Settings Panel with Custom Sort section selected and visible
|
|
81
81
|
*/
|
|
82
82
|
openCustomSortSettingsPanel(): void;
|
|
83
|
-
/**
|
|
84
|
-
* TO BE REMOVED
|
|
85
|
-
*/
|
|
86
|
-
/**
|
|
87
|
-
* @deprecated use `getCustomSorts` instead
|
|
88
|
-
*/
|
|
89
|
-
getAllCustomSort(config?: {
|
|
90
|
-
includeLayoutNotAssociatedObjects?: boolean;
|
|
91
|
-
}): CustomSort[];
|
|
92
|
-
/**
|
|
93
|
-
* @deprecated use `getActiveCustomSorts()` instead
|
|
94
|
-
*/
|
|
95
|
-
getAllActiveCustomSort(): CustomSort[];
|
|
96
|
-
/**
|
|
97
|
-
* @deprecated use `getSuspendedCustomSorts()` instead
|
|
98
|
-
*/
|
|
99
|
-
getAllSuspendedCustomSort(): CustomSort[];
|
|
100
|
-
/**
|
|
101
|
-
* @deprecated use `getCustomSortForColumn` instead
|
|
102
|
-
*/
|
|
103
|
-
getCustomSortByColumn(columnId: string): CustomSort;
|
|
104
|
-
/**
|
|
105
|
-
* @deprecated use `openCustomSortSettingsPanel` instead
|
|
106
|
-
*/
|
|
107
|
-
showCustomSortPopup(): void;
|
|
108
83
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { DashboardState, DashboardTab } from '../PredefinedConfig/DashboardState';
|
|
2
2
|
import { AdaptableDashboardToolbar, AdaptableDashboardToolbars, AdaptableModuleButtons } from '../PredefinedConfig/Common/Types';
|
|
3
|
-
import { DashboardChangedInfo } from './Events/DashboardChanged';
|
|
4
3
|
import { AdaptableButton } from '../PredefinedConfig/Common/AdaptableButton';
|
|
5
4
|
import { CustomToolbar, DashboardButtonContext } from '../AdaptableOptions/DashboardOptions';
|
|
6
5
|
/**
|
|
@@ -138,19 +137,4 @@ export interface DashboardApi {
|
|
|
138
137
|
* Is Dashboard Visible
|
|
139
138
|
*/
|
|
140
139
|
isDashboardVisible(): boolean;
|
|
141
|
-
/**
|
|
142
|
-
* TO BE REMOVED
|
|
143
|
-
*/
|
|
144
|
-
/**
|
|
145
|
-
* @deprecated use `openDashboardSettingsPanel()` instead
|
|
146
|
-
*/
|
|
147
|
-
showDashboardPopup(): void;
|
|
148
|
-
/**
|
|
149
|
-
* @deprecated internal method, will be removed in next major release
|
|
150
|
-
*/
|
|
151
|
-
fireDashboardChangedEvent(trigger: string, oldState: DashboardState, newState: DashboardState): void;
|
|
152
|
-
/**
|
|
153
|
-
* @deprecated use instead the information which is passed in the `DashboardChanged` event payload
|
|
154
|
-
*/
|
|
155
|
-
hasCustomToolbarChanged(dashboardChangedInfo: DashboardChangedInfo, customToolbarName: string): 'hidden' | 'visible' | 'none';
|
|
156
140
|
}
|
|
@@ -35,11 +35,4 @@ export interface DataChangeHistoryApi {
|
|
|
35
35
|
* Opens Data Change History panel
|
|
36
36
|
*/
|
|
37
37
|
openDataChangeHistorySettingsPanel(): void;
|
|
38
|
-
/**
|
|
39
|
-
* TO BE REMOVED
|
|
40
|
-
*/
|
|
41
|
-
/**
|
|
42
|
-
* @deprecated use `openDataChangeHistorySettingsPanel()` instead
|
|
43
|
-
*/
|
|
44
|
-
showDataChangeHistoryPopup(): void;
|
|
45
38
|
}
|
package/src/Api/DataSetApi.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { DataSet } from '../types';
|
|
|
4
4
|
*/
|
|
5
5
|
export interface DataSetApi {
|
|
6
6
|
/**
|
|
7
|
-
* Retrieves the Data Sets from
|
|
7
|
+
* Retrieves the Data Sets from Data Set Options
|
|
8
8
|
* @returns data Sets
|
|
9
9
|
*/
|
|
10
10
|
getDataSets(): DataSet[];
|
|
@@ -32,19 +32,4 @@ export interface DataSetApi {
|
|
|
32
32
|
* Opens Settings Panel with Data Set section selected and visible
|
|
33
33
|
*/
|
|
34
34
|
openDataSetSettingsPanel(): void;
|
|
35
|
-
/**
|
|
36
|
-
* TO BE REMOVED
|
|
37
|
-
*/
|
|
38
|
-
/**
|
|
39
|
-
* @deprecated use `getDataSets()` instead
|
|
40
|
-
*/
|
|
41
|
-
getAllDataSets(): DataSet[];
|
|
42
|
-
/**
|
|
43
|
-
* @deprecated use `openDataSetSettingsPanel()` instead
|
|
44
|
-
*/
|
|
45
|
-
showDataSetPopup(): void;
|
|
46
|
-
/**
|
|
47
|
-
* @deprecated internal method, will be removed in next major release
|
|
48
|
-
*/
|
|
49
|
-
fireDataSetSelectedEvent(dataSet: DataSet): void;
|
|
50
35
|
}
|
package/src/Api/EventApi.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AdaptableFDC3EventInfo, SelectionChangedInfo, LiveDataChangedInfo, DashboardChangedInfo, ThemeChangedInfo, AlertFiredInfo, LayoutChangedInfo,
|
|
1
|
+
import { AdaptableFDC3EventInfo, SelectionChangedInfo, LiveDataChangedInfo, DashboardChangedInfo, ThemeChangedInfo, AlertFiredInfo, LayoutChangedInfo, AdaptableReadyInfo, CustomToolbarConfiguredInfo, CellChangedInfo, SystemStatusMessageDisplayedInfo, CheckboxColumnClickedInfo, AdaptableStateChangedInfo, FlashingCellDisplayedInfo, GridDataChangedInfo, TeamSharingEntityChangedInfo, ActionRowSubmittedInfo, DataSetSelectedInfo, AdaptableStateReloadedInfo, GridSortedInfo, QueryRunInfo, FilterAppliedInfo } from '../types';
|
|
2
2
|
import { ChartChangedInfo } from './Events/ChartChanged';
|
|
3
3
|
import { ThemeEditedInfo } from './Events/ThemeChanged';
|
|
4
4
|
/**
|
|
@@ -307,14 +307,6 @@ export interface EventApi {
|
|
|
307
307
|
* Unsubscribe from FDC3MessageSent
|
|
308
308
|
*/
|
|
309
309
|
off(eventName: 'FDC3MessageSent', callback: (eventInfo: AdaptableFDC3EventInfo) => void): void;
|
|
310
|
-
/**
|
|
311
|
-
* @deprecated - use `FilterApplied`, `QueryRun` or `GridSorted` instead
|
|
312
|
-
*/
|
|
313
|
-
on(eventName: 'SearchChanged', callback: (searchChangedInfo: SearchChangedInfo) => void): VoidFunction;
|
|
314
|
-
/**
|
|
315
|
-
* @deprecated - use `FilterApplied`, `QueryRun` or `GridSorted` instead
|
|
316
|
-
*/
|
|
317
|
-
off(eventName: 'SearchChanged', callback: (searchChangedInfo: SearchChangedInfo) => void): void;
|
|
318
310
|
emitSync(eventName: 'DashboardChanged', data?: any): any[];
|
|
319
311
|
emitSync(eventName: 'FlashingCellDisplayed', data?: any): any[];
|
|
320
312
|
emitSync(eventName: 'AdaptableDestroy'): any[];
|
|
@@ -13,14 +13,6 @@ export interface AdaptableStateChangedInfo extends BaseEventInfo {
|
|
|
13
13
|
* Time on user's computer when message was sent
|
|
14
14
|
*/
|
|
15
15
|
clientTimestamp: Date;
|
|
16
|
-
/**
|
|
17
|
-
* Name of current AdapTable user
|
|
18
|
-
*/
|
|
19
|
-
userName: string;
|
|
20
|
-
/**
|
|
21
|
-
* Current AdapTableId
|
|
22
|
-
*/
|
|
23
|
-
adaptableId: string;
|
|
24
16
|
/**
|
|
25
17
|
* Current Adaptable State Key
|
|
26
18
|
*/
|
|
@@ -4,10 +4,6 @@ import { BaseEventInfo } from './BaseEventInfo';
|
|
|
4
4
|
* Object returned by the `AdaptableStateReloaded` event
|
|
5
5
|
*/
|
|
6
6
|
export interface AdaptableStateReloadedInfo extends BaseEventInfo {
|
|
7
|
-
/**
|
|
8
|
-
* Current AdapTableId
|
|
9
|
-
*/
|
|
10
|
-
adaptableId: string;
|
|
11
7
|
/**
|
|
12
8
|
* Current Adaptable State Key
|
|
13
9
|
*/
|
|
@@ -4,7 +4,15 @@ import { AdaptableApi } from '../AdaptableApi';
|
|
|
4
4
|
*/
|
|
5
5
|
export interface BaseEventInfo {
|
|
6
6
|
/**
|
|
7
|
-
* Adaptable API object used for
|
|
7
|
+
* Adaptable API object used for programmatic access to AdapTable
|
|
8
8
|
*/
|
|
9
9
|
adaptableApi: AdaptableApi;
|
|
10
|
+
/**
|
|
11
|
+
* Name of current AdapTable user
|
|
12
|
+
*/
|
|
13
|
+
userName: string;
|
|
14
|
+
/**
|
|
15
|
+
* Id of the current AdapTable instance
|
|
16
|
+
*/
|
|
17
|
+
adaptableId: string;
|
|
10
18
|
}
|
|
@@ -18,19 +18,15 @@ export interface LiveDataChangedInfo extends BaseEventInfo {
|
|
|
18
18
|
liveReport?: any;
|
|
19
19
|
}
|
|
20
20
|
/**
|
|
21
|
-
* Defines which Adaptable Reports are 'Live' (i.e.
|
|
22
|
-
*
|
|
23
|
-
* When Adaptable creates a Live Report it will take care of updating the destination as the data in the Report changes (based on the throttle time you give it).
|
|
24
|
-
*
|
|
25
|
-
* Adaptable will fire the `LiveDataChanged` event each time a Live Report is stopped, started or updated.
|
|
21
|
+
* Defines which Adaptable Reports are 'Live' (i.e. will update the destination as data in Adaptable ticks or changes)
|
|
26
22
|
*/
|
|
27
23
|
export interface LiveReport {
|
|
28
24
|
/**
|
|
29
|
-
*
|
|
25
|
+
* For OpenFin this is the workbook name; for iPushpull the page name; for Glue42 the Spreadsheet name
|
|
30
26
|
*/
|
|
31
27
|
pageName: string;
|
|
32
28
|
/**
|
|
33
|
-
* The underlying
|
|
29
|
+
* The underlying Report
|
|
34
30
|
*/
|
|
35
31
|
report: Report;
|
|
36
32
|
/**
|
package/src/Api/ExportApi.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { AdaptableForm } from '../PredefinedConfig/Common/AdaptableForm';
|
|
2
2
|
import { ExportState, Report, ReportData, ReportSchedule, SystemReportNames } from '../PredefinedConfig/ExportState';
|
|
3
|
-
import {
|
|
4
|
-
import { CustomDestination, ServerReport, ExportFormContext } from '../AdaptableOptions/ExportOptions';
|
|
3
|
+
import { CustomDestination, ExternalReport, ExportFormContext } from '../AdaptableOptions/ExportOptions';
|
|
5
4
|
import { ExportDestination } from '../PredefinedConfig/Common/Enums';
|
|
6
5
|
import { AdaptableColumnBase } from '../types';
|
|
7
6
|
/**
|
|
@@ -44,14 +43,14 @@ export interface ExportApi {
|
|
|
44
43
|
*/
|
|
45
44
|
getCurrentReportName(): string;
|
|
46
45
|
/**
|
|
47
|
-
* Retrieves all Reports in State - System,
|
|
46
|
+
* Retrieves all Reports in State - System, External and User-created Reports
|
|
48
47
|
* @returns reports
|
|
49
48
|
*/
|
|
50
49
|
getReports(): Report[];
|
|
51
50
|
/**
|
|
52
|
-
* Returns all
|
|
51
|
+
* Returns all External Reports that have been provided to Export Options
|
|
53
52
|
*/
|
|
54
|
-
|
|
53
|
+
getExternalReports(): ExternalReport[];
|
|
55
54
|
/**
|
|
56
55
|
* Retrieves System Reports section of Export State
|
|
57
56
|
*/
|
|
@@ -136,40 +135,17 @@ export interface ExportApi {
|
|
|
136
135
|
* Is given Report user-generated
|
|
137
136
|
* @param report Report to Check
|
|
138
137
|
*/
|
|
139
|
-
|
|
138
|
+
isExternalReport(report: Report): boolean;
|
|
140
139
|
/**
|
|
141
|
-
* Runs the report function of the
|
|
140
|
+
* Runs the report function of the ExternalReport with the given reportName
|
|
142
141
|
* @param reportName custom report name
|
|
143
142
|
*/
|
|
144
|
-
|
|
143
|
+
runExternalReport(reportName: string): ReportData | undefined;
|
|
145
144
|
/**
|
|
146
145
|
* Returns the ReportData for the Report with the given name
|
|
147
146
|
* @param reportName - the name of the report
|
|
148
147
|
*/
|
|
149
148
|
getReportDataForReport(reportName: string): ReportData | undefined;
|
|
150
|
-
/**
|
|
151
|
-
* TO BE REMOVED
|
|
152
|
-
*/
|
|
153
|
-
/**
|
|
154
|
-
* @deprecated use `getReports()` instead
|
|
155
|
-
*/
|
|
156
|
-
getAllReports(): Report[];
|
|
157
|
-
/**
|
|
158
|
-
* @deprecated use `getServerReports()` instead
|
|
159
|
-
*/
|
|
160
|
-
getAllServerReports(): ServerReport[] | undefined;
|
|
161
|
-
/**
|
|
162
|
-
* @deprecated use `showExportSettingsPanel()` instead
|
|
163
|
-
*/
|
|
164
|
-
showExportPopup(): void;
|
|
165
|
-
/**
|
|
166
|
-
* @deprecated use `getCustomDestinations()` instead
|
|
167
|
-
*/
|
|
168
|
-
getAllCustomDestination(): CustomDestination[];
|
|
169
|
-
/**
|
|
170
|
-
* @deprecated internal method, will be removed in next major release
|
|
171
|
-
*/
|
|
172
|
-
isDataChangeInReport(cellDataChangedInfo: CellDataChangedInfo, report: Report): boolean;
|
|
173
149
|
/**
|
|
174
150
|
* Returns whether the given column is exportable
|
|
175
151
|
*/
|
|
@@ -2,9 +2,9 @@ import { AdaptableModule } from '../PredefinedConfig/Common/Types';
|
|
|
2
2
|
import { AdaptableQuery } from '../PredefinedConfig/Common/AdaptableQuery';
|
|
3
3
|
import { AdaptableColumnBase } from '../PredefinedConfig/Common/AdaptableColumn';
|
|
4
4
|
/**
|
|
5
|
-
* Functions related to AdapTableQL (the Adaptable Query Language)
|
|
5
|
+
* Functions related to Expressions in AdapTableQL (the Adaptable Query Language)
|
|
6
6
|
*/
|
|
7
|
-
export interface
|
|
7
|
+
export interface ExpressionApi {
|
|
8
8
|
/**
|
|
9
9
|
* Whether the given BooleanExpression is valid
|
|
10
10
|
* @param expression query to Check
|
package/src/Api/FilterApi.d.ts
CHANGED
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
import { AdaptableColumn, ColumnFilter
|
|
2
|
-
import * as Redux from 'redux';
|
|
1
|
+
import { AdaptableColumn, ColumnFilter } from '../types';
|
|
3
2
|
import { AdaptablePredicateDef, ColumnFilterDef } from '../PredefinedConfig/Common/AdaptablePredicate';
|
|
4
|
-
import { IRowNode } from '@ag-grid-community/core';
|
|
5
|
-
import { LayoutColumnFilterAction } from '../Redux/ActionsReducers/LayoutRedux';
|
|
6
3
|
/**
|
|
7
4
|
* Provides run-time access to Filter section of Adaptable State.
|
|
8
5
|
*/
|
|
@@ -122,59 +119,4 @@ export interface FilterApi {
|
|
|
122
119
|
* @param columnFilters Column Filters to use
|
|
123
120
|
*/
|
|
124
121
|
columnFiltersToString(columnFilters: ColumnFilter[]): string;
|
|
125
|
-
/**
|
|
126
|
-
* TO BE REMOVED
|
|
127
|
-
*/
|
|
128
|
-
/**
|
|
129
|
-
* @deprecated internal method, will be removed in next major release
|
|
130
|
-
*/
|
|
131
|
-
findPredicateDefByShortcut(shortcut: string, column: AdaptableColumn): AdaptablePredicateDef;
|
|
132
|
-
/**
|
|
133
|
-
* @deprecated use `clearColumnFilterForColumn()` instead
|
|
134
|
-
*/
|
|
135
|
-
clearColumnFilterByColumn(columnId: string): void;
|
|
136
|
-
/**
|
|
137
|
-
* @deprecated use `clearColumnFiltersForColumns()` instead
|
|
138
|
-
*/
|
|
139
|
-
clearColumnFilterByColumns(columns: string[]): void;
|
|
140
|
-
/**
|
|
141
|
-
* @deprecated use `setColumnFilters()` instead
|
|
142
|
-
*/
|
|
143
|
-
setColumnFilter(columnFilters: ColumnFilter[]): ColumnFilter[] | null;
|
|
144
|
-
/**
|
|
145
|
-
* @deprecated use `clearAndSetColumnFilters()` instead
|
|
146
|
-
*/
|
|
147
|
-
clearAndSetColumnFilter(columnFilters: ColumnFilter[]): void;
|
|
148
|
-
/**
|
|
149
|
-
* @deprecated use `getColumnFilterForColumn()` instead
|
|
150
|
-
*/
|
|
151
|
-
getAllColumnFilterForColumn(columnId: string): ColumnFilter[];
|
|
152
|
-
/**
|
|
153
|
-
* @deprecated use `getColumnFilterForColumn()` instead
|
|
154
|
-
*/
|
|
155
|
-
getColumnFilter(columnId: string): ColumnFilter | undefined;
|
|
156
|
-
/**
|
|
157
|
-
* @deprecated internal method, will be removed in next major release
|
|
158
|
-
*/
|
|
159
|
-
createValuesColumnFilterForCells(gridCells: GridCell[]): ColumnFilter | null;
|
|
160
|
-
/**
|
|
161
|
-
* @deprecated internal method, will be removed in next major release
|
|
162
|
-
*/
|
|
163
|
-
createEqualityColumnFilterForCell(gridCell: GridCell): ColumnFilter | null;
|
|
164
|
-
/**
|
|
165
|
-
* @deprecated internal method, will be removed in next major release
|
|
166
|
-
*/
|
|
167
|
-
evaluateColumnFilter(columnFilter: ColumnFilter, node: IRowNode): boolean;
|
|
168
|
-
/**
|
|
169
|
-
* @deprecated internal method, will be removed in next major release
|
|
170
|
-
*/
|
|
171
|
-
shouldNewColumnFilterTriggerGridFiltering(action: LayoutColumnFilterAction | Redux.Action): boolean;
|
|
172
|
-
/**
|
|
173
|
-
* @deprecated internal method, will be removed in next major release
|
|
174
|
-
*/
|
|
175
|
-
fireFilterAppliedEvent(): void;
|
|
176
|
-
/**
|
|
177
|
-
* @deprecated internal method, will be removed in next major release
|
|
178
|
-
*/
|
|
179
|
-
areColumnFiltersDifferent(filters1: ColumnFilter[], filters2: ColumnFilter[]): boolean;
|
|
180
122
|
}
|
|
@@ -97,19 +97,4 @@ export interface FlashingCellApi {
|
|
|
97
97
|
* @param flashingCellLookupCriteria lookup criteria
|
|
98
98
|
*/
|
|
99
99
|
findFlashingCellDefinitions(flashingCellLookupCriteria: AdaptableObjectLookupCriteria): FlashingCellDefinition[];
|
|
100
|
-
/**
|
|
101
|
-
* TO BE REMOVED
|
|
102
|
-
*/
|
|
103
|
-
/**
|
|
104
|
-
* @deprecated internal method, will be removed in next major release
|
|
105
|
-
*/
|
|
106
|
-
mergeFlashingCellDefinitionWithDefaults(flashingCellDefinition: FlashingCellDefinition): FlashingCellDefinition;
|
|
107
|
-
/**
|
|
108
|
-
* @deprecated use `clearAllFlashingCells()` instead
|
|
109
|
-
*/
|
|
110
|
-
clearGridFlashing(): void;
|
|
111
|
-
/**
|
|
112
|
-
* @deprecated use `isAnyFlashingCellActive()` instead
|
|
113
|
-
*/
|
|
114
|
-
areCellsCurrentlyFlashed(): boolean;
|
|
115
100
|
}
|