@adaptabletools/adaptable 18.0.11 → 18.1.0-canary.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/agGrid.d.ts +4 -3
- package/agGrid.js +4 -3
- package/base.css +7 -2
- package/base.css.map +1 -1
- package/index.css +11 -2
- package/index.css.map +1 -1
- package/package.json +2 -2
- package/src/AdaptableOptions/ActionColumnOptions.d.ts +1 -1
- package/src/AdaptableOptions/ColumnFilterOptions.d.ts +27 -1
- package/src/AdaptableOptions/ExportOptions.d.ts +20 -7
- package/src/AdaptableOptions/ExpressionOptions.d.ts +12 -2
- package/src/AdaptableOptions/Fdc3Options.d.ts +48 -43
- package/src/Api/ColumnApi.d.ts +1 -1
- package/src/Api/Events/Fdc3MessageInfo.d.ts +5 -7
- package/src/Api/ExpressionApi.d.ts +2 -2
- package/src/Api/Fdc3Api.d.ts +14 -19
- package/src/Api/Implementation/ConfigApiImpl.js +3 -0
- package/src/Api/Implementation/Fdc3ApiImpl.d.ts +14 -16
- package/src/Api/Implementation/Fdc3ApiImpl.js +36 -12
- package/src/Api/Internal/AlertInternalApi.d.ts +17 -2
- package/src/Api/Internal/AlertInternalApi.js +196 -25
- package/src/Api/Internal/ColumnFilterInternalApi.d.ts +2 -0
- package/src/Api/Internal/ColumnFilterInternalApi.js +20 -0
- package/src/Api/Internal/ExportInternalApi.d.ts +3 -3
- package/src/Api/Internal/ExportInternalApi.js +31 -17
- package/src/Api/Internal/ExpressionInternalApi.d.ts +5 -1
- package/src/Api/Internal/ExpressionInternalApi.js +79 -0
- package/src/Api/Internal/Fdc3InternalApi.d.ts +8 -10
- package/src/Api/Internal/Fdc3InternalApi.js +6 -10
- package/src/PredefinedConfig/Common/AdaptableField.d.ts +18 -0
- package/src/PredefinedConfig/Common/AdaptableField.js +1 -0
- package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +18 -1
- package/src/PredefinedConfig/Common/Fdc3Context.d.ts +7 -226
- package/src/PredefinedConfig/Common/Fdc3Context.js +43 -31
- package/src/PredefinedConfig/Common/Fdc3Intent.d.ts +6 -89
- package/src/PredefinedConfig/Common/Fdc3Intent.js +26 -73
- package/src/PredefinedConfig/Common/RowSummary.d.ts +2 -1
- package/src/PredefinedConfig/StyledColumnState.d.ts +1 -1
- package/src/Redux/ActionsReducers/FormatColumnRedux.js +0 -3
- package/src/Strategy/AdaptableModuleBase.js +1 -3
- package/src/Strategy/AlertModule.d.ts +1 -1
- package/src/Strategy/AlertModule.js +8 -8
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +3 -1
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +1 -1
- package/src/Utilities/Services/Fdc3Service.d.ts +1 -1
- package/src/Utilities/Services/Fdc3Service.js +2 -2
- package/src/Utilities/Services/QueryLanguageService.d.ts +8 -4
- package/src/Utilities/Services/QueryLanguageService.js +105 -6
- package/src/Utilities/Services/ReportService.js +8 -5
- package/src/Utilities/Services/RowSummaryService.js +3 -1
- package/src/Utilities/divideBy100.d.ts +1 -0
- package/src/Utilities/divideBy100.js +30 -0
- package/src/Utilities/times100.d.ts +1 -0
- package/src/Utilities/times100.js +23 -0
- package/src/View/Alert/Wizard/AlertMessageWizardSection.js +1 -1
- package/src/View/Alert/Wizard/AlertNotificationWizardSection.js +2 -2
- package/src/View/Alert/Wizard/AlertScopeWizardSection.js +2 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +1 -1
- package/src/View/Components/EntityRulesEditor/index.d.ts +1 -0
- package/src/View/Components/EntityRulesEditor/index.js +11 -7
- package/src/View/Components/ExpressionWizard.js +1 -1
- package/src/View/Components/FilterForm/QuickFilterValues.js +28 -4
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +6 -2
- package/src/View/Components/Selectors/FieldSelector.d.ts +13 -0
- package/src/View/Components/Selectors/FieldSelector.js +21 -0
- package/src/View/Components/Selectors/PermittedValuesSelector.js +8 -4
- package/src/View/Export/Wizard/ReportRowsWizardSection.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.js +1 -1
- package/src/View/GridFilter/GridFilterExpressionEditor.js +1 -1
- package/src/View/Layout/Wizard/sections/GridFilterSection.js +4 -2
- package/src/View/Layout/Wizard/sections/RowSummarySection.js +7 -1
- package/src/View/NamedQuery/Wizard/NamedQueryExpressionWizardSection.js +1 -1
- package/src/View/Wizard/OnePageAdaptableWizard.js +3 -2
- package/src/agGrid/AdaptableAgGrid.d.ts +1 -2
- package/src/agGrid/AdaptableAgGrid.js +66 -38
- package/src/agGrid/AgGridAdapter.d.ts +2 -0
- package/src/agGrid/AgGridAdapter.js +10 -1
- package/src/agGrid/AgGridColumnAdapter.d.ts +3 -0
- package/src/agGrid/AgGridColumnAdapter.js +22 -0
- package/src/agGrid/AgGridMenuAdapter.js +1 -1
- package/src/agGrid/editors/AdaptableDateEditor/InternalAdaptableDateEditor.d.ts +0 -1
- package/src/agGrid/editors/AdaptableDateEditor/InternalAdaptableDateEditor.js +0 -2
- package/src/agGrid/editors/AdaptableDateEditor/index.d.ts +4 -16
- package/src/agGrid/editors/AdaptableDateEditor/index.js +5 -18
- package/src/agGrid/editors/AdaptableNumberEditor/InternalAdaptableNumberEditor.js +6 -1
- package/src/agGrid/editors/AdaptableNumberEditor/index.d.ts +4 -3
- package/src/agGrid/editors/AdaptableNumberEditor/index.js +5 -2
- package/src/agGrid/editors/AdaptablePercentageEditor/InternalAdaptablePercentageEditor.d.ts +23 -0
- package/src/agGrid/editors/AdaptablePercentageEditor/InternalAdaptablePercentageEditor.js +80 -0
- package/src/agGrid/editors/AdaptablePercentageEditor/index.d.ts +47 -0
- package/src/agGrid/editors/AdaptablePercentageEditor/index.js +148 -0
- package/src/agGrid/weightedAverage.js +3 -2
- package/src/components/Accordion.js +1 -1
- package/src/components/Datepicker/DatepickerContext.d.ts +0 -2
- package/src/components/Datepicker/index.js +3 -4
- package/src/components/ExpressionEditor/DataTableEditor.d.ts +17 -0
- package/src/components/ExpressionEditor/DataTableEditor.js +63 -0
- package/src/components/ExpressionEditor/EditorInput.js +22 -9
- package/src/components/ExpressionEditor/NamedQueryEditor.d.ts +5 -0
- package/src/components/ExpressionEditor/NamedQueryEditor.js +30 -0
- package/src/components/ExpressionEditor/QueryBuilder/QueryBuilder.d.ts +10 -0
- package/src/components/ExpressionEditor/QueryBuilder/QueryBuilder.js +7 -4
- package/src/components/ExpressionEditor/QueryBuilder/QueryBuilderInputs.d.ts +3 -2
- package/src/components/ExpressionEditor/QueryBuilder/QueryBuilderInputs.js +71 -13
- package/src/components/ExpressionEditor/QueryBuilder/QueryPredicateBuilder.js +30 -22
- package/src/components/ExpressionEditor/QueryBuilder/utils.d.ts +9 -1
- package/src/components/ExpressionEditor/QueryBuilder/utils.js +41 -3
- package/src/components/ExpressionEditor/index.d.ts +3 -1
- package/src/components/ExpressionEditor/index.js +66 -91
- package/src/components/Input/NumberInput.d.ts +2 -1
- package/src/components/Input/NumberInput.js +7 -4
- package/src/components/OverlayTrigger/index.js +10 -6
- package/src/components/icons/column-outline.d.ts +3 -0
- package/src/components/icons/column-outline.js +4 -0
- package/src/components/icons/index.js +5 -1
- package/src/components/icons/sync.d.ts +3 -0
- package/src/components/icons/sync.js +4 -0
- package/src/env.js +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +78 -200
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/parser/src/predicate/mapExpressionToQlPredicate.d.ts +1 -0
- package/src/parser/src/predicate/mapExpressionToQlPredicate.js +11 -2
- package/src/parser/src/predicate/mapQlPredicateToExpression.js +4 -1
- package/src/parser/src/types.d.ts +101 -1
- package/src/types.d.ts +9 -7
- package/tsconfig.esm.tsbuildinfo +1 -1
|
@@ -2,6 +2,9 @@ import { isBooleanAdaptableQlFunction } from '../../../Utilities/ExpressionFunct
|
|
|
2
2
|
import { getAST } from '../index';
|
|
3
3
|
import { isAST_Function } from '../types';
|
|
4
4
|
import { isQlLogicalOperator } from './types';
|
|
5
|
+
export const isArgumentColumnOrField = (arg) => {
|
|
6
|
+
return arg && typeof arg === 'string' && (arg.includes('[') || arg.includes('FIELD'));
|
|
7
|
+
};
|
|
5
8
|
function mapAstToQlPredicate(ast) {
|
|
6
9
|
const operator = getOperatorFromAST(ast);
|
|
7
10
|
if (!isAST_Function(ast)) {
|
|
@@ -17,6 +20,11 @@ function mapAstToQlPredicate(ast) {
|
|
|
17
20
|
if (arg.type === 'COL') {
|
|
18
21
|
return [`[${arg.args[0]}]`];
|
|
19
22
|
}
|
|
23
|
+
// special case for FIELD
|
|
24
|
+
if (arg.type === 'FIELD') {
|
|
25
|
+
// we are keeping the expression to know we are dealing with a field
|
|
26
|
+
return `FIELD('${arg.args[0]}')`;
|
|
27
|
+
}
|
|
20
28
|
if (arg.type === 'DATE') {
|
|
21
29
|
return `DATE("${arg.args[0]}")`;
|
|
22
30
|
}
|
|
@@ -35,9 +43,10 @@ function mapAstToQlPredicate(ast) {
|
|
|
35
43
|
.filter((arg) => arg !== null && arg !== undefined)
|
|
36
44
|
.flat();
|
|
37
45
|
if (!isQlLogicalOperator(operator)) {
|
|
38
|
-
|
|
46
|
+
// this throws
|
|
47
|
+
if (!isArgumentColumnOrField(args[0])) {
|
|
39
48
|
throw {
|
|
40
|
-
errorMessage: 'First Argument must be an Adaptable Column!',
|
|
49
|
+
errorMessage: 'First Argument must be an Adaptable Column or Field!',
|
|
41
50
|
};
|
|
42
51
|
}
|
|
43
52
|
}
|
|
@@ -24,6 +24,9 @@ export function mapQlPredicateToExpression(predicate) {
|
|
|
24
24
|
if (arg.includes('[')) {
|
|
25
25
|
return arg;
|
|
26
26
|
}
|
|
27
|
+
if (arg.includes('FIELD')) {
|
|
28
|
+
return arg;
|
|
29
|
+
}
|
|
27
30
|
if (arg.includes('DATE')) {
|
|
28
31
|
return arg;
|
|
29
32
|
}
|
|
@@ -32,7 +35,7 @@ export function mapQlPredicateToExpression(predicate) {
|
|
|
32
35
|
}
|
|
33
36
|
return `"${arg}"`;
|
|
34
37
|
}
|
|
35
|
-
if (typeof arg === 'object' && 'operator' in arg) {
|
|
38
|
+
if (arg && typeof arg === 'object' && 'operator' in arg) {
|
|
36
39
|
if (isQlLogicalOperator(arg.operator)) {
|
|
37
40
|
return `(${mapQlPredicateToExpression(arg)})`;
|
|
38
41
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IRowNode } from '@ag-grid-community/core';
|
|
2
|
-
import { BaseContext } from '../../../types';
|
|
2
|
+
import { AdaptableApi, BaseContext } from '../../../types';
|
|
3
3
|
export type AST = AST_Expression[];
|
|
4
4
|
export type PredicateType = 'VALUE_REF' | 'INFIX' | 'UNARY' | 'FUNCTION' | 'CONDITIONAL';
|
|
5
5
|
/**
|
|
@@ -129,3 +129,103 @@ args: any[],
|
|
|
129
129
|
*/
|
|
130
130
|
context: ExpressionContext) => any;
|
|
131
131
|
export declare const isAST_Function: (node: AST_Expression) => node is AST_Function;
|
|
132
|
+
export interface AggregatedScalarExpressionReducerContext extends BaseContext {
|
|
133
|
+
/**
|
|
134
|
+
* Current row node
|
|
135
|
+
*/
|
|
136
|
+
rowNode: IRowNode;
|
|
137
|
+
/**
|
|
138
|
+
* Adaptable API
|
|
139
|
+
*/
|
|
140
|
+
adaptableApi: AdaptableApi;
|
|
141
|
+
/**
|
|
142
|
+
* Arguments passed to the function
|
|
143
|
+
* Column arguments are transformed to their values, e.g. [colId] -> args = [value-of-colId]
|
|
144
|
+
*/
|
|
145
|
+
args: any[];
|
|
146
|
+
/**
|
|
147
|
+
* Column Id of the column being aggregated
|
|
148
|
+
*/
|
|
149
|
+
aggColumnId: string;
|
|
150
|
+
/**
|
|
151
|
+
* Helper function to get the value of a column
|
|
152
|
+
* @param colId column id
|
|
153
|
+
* @returns
|
|
154
|
+
*/
|
|
155
|
+
getValueForColId: (colId: string) => any;
|
|
156
|
+
}
|
|
157
|
+
export interface AggregatedScalarExpressionProcessReducerValueContext extends BaseContext {
|
|
158
|
+
/**
|
|
159
|
+
* Arguments passed to the function
|
|
160
|
+
*/
|
|
161
|
+
args: any[];
|
|
162
|
+
}
|
|
163
|
+
export interface AggregatedScalarExpressionPrepareRowValueContext extends BaseContext {
|
|
164
|
+
/**
|
|
165
|
+
* Arguments passed to the function
|
|
166
|
+
*/
|
|
167
|
+
args: any[];
|
|
168
|
+
aggColumnId: string;
|
|
169
|
+
getValueForColId: (colId: string) => any;
|
|
170
|
+
}
|
|
171
|
+
export interface AggregatedScalarExpressionRowFilterContext extends BaseContext {
|
|
172
|
+
/**
|
|
173
|
+
* Column Id of the column being aggregated
|
|
174
|
+
* Usualy the first Col argument, e.g. [colId]
|
|
175
|
+
*/
|
|
176
|
+
aggColumnId: string;
|
|
177
|
+
/**
|
|
178
|
+
* Utility function to get the value of a column
|
|
179
|
+
* @param colId column id
|
|
180
|
+
* @returns
|
|
181
|
+
*/
|
|
182
|
+
getValueForColId: (colId: string) => any;
|
|
183
|
+
}
|
|
184
|
+
export interface AggregatedScalarExpressionFunction {
|
|
185
|
+
/**
|
|
186
|
+
* Expression description.
|
|
187
|
+
*/
|
|
188
|
+
description?: string;
|
|
189
|
+
/**
|
|
190
|
+
* Examples how this function ca be used.
|
|
191
|
+
*/
|
|
192
|
+
signatures?: string[];
|
|
193
|
+
/**
|
|
194
|
+
* How the function can be used.
|
|
195
|
+
*/
|
|
196
|
+
examples?: string[];
|
|
197
|
+
/**
|
|
198
|
+
* Initial Value for the aggregation
|
|
199
|
+
*/
|
|
200
|
+
initialValue: any;
|
|
201
|
+
/**
|
|
202
|
+
* Reducer function which is called for each value in the Column Data.
|
|
203
|
+
* @param accumulator - the value returned by the previous call to the reducer function, or the initialValue if this is the first call. You return the new accumulator value from this function.
|
|
204
|
+
* @param currentValue - the current value being processed in the Column Data
|
|
205
|
+
* @param index - index of the current value in the Column Data
|
|
206
|
+
* @param context - context object with the current row node, adaptableApi, aggColumnId and other possible custom arguments
|
|
207
|
+
*/
|
|
208
|
+
reducer: (accumulator: any, currentValue: any, index: number, context: AggregatedScalarExpressionReducerContext) => any;
|
|
209
|
+
/**
|
|
210
|
+
* If specified, this function is called after the reducer has processed all values.
|
|
211
|
+
* Can be used to change the result of the reducer based on the values array (e.g. average).
|
|
212
|
+
* @param aggregatedValue - result of the reducer
|
|
213
|
+
* @param dataArray - array of values. If aggregation was grouped, this will be the array of values for the group.
|
|
214
|
+
* @param context - context object with the args
|
|
215
|
+
*/
|
|
216
|
+
processReducerValue?: (aggregatedValue: any, dataArray: any[], context: AggregatedScalarExpressionProcessReducerValueContext) => number | string | Date;
|
|
217
|
+
/**
|
|
218
|
+
* If specified, this function is be called for each row.
|
|
219
|
+
* This can be used when each row has a different value (e.g. percentage).
|
|
220
|
+
* @param rowNode - current row node
|
|
221
|
+
* @param context - context object with the args, aggColumnId, getValueForColId
|
|
222
|
+
* @returns return value for each individual row
|
|
223
|
+
*/
|
|
224
|
+
prepareRowValue?: (rowNode: IRowNode, aggregatedValue: any, context: AggregatedScalarExpressionPrepareRowValueContext) => number | string | Date;
|
|
225
|
+
/**
|
|
226
|
+
* If specified, this function filters the rows that are included in the aggregation.
|
|
227
|
+
* @param rowNode - current row node
|
|
228
|
+
* @param context - context object with the aggColumnId, getValueForColId
|
|
229
|
+
*/
|
|
230
|
+
rowFilter?: (rowNode: IRowNode, context: AggregatedScalarExpressionRowFilterContext) => boolean;
|
|
231
|
+
}
|
package/src/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type { ExpressionFunction, ExpressionFunctionDocBlock, ExpressionFunctionHandler, ExpressionContext, ExpressionFunctionMap, ExpressionCategory, ExpressionFunctionInputType, AST, AST_Function, AST_Expression, Token, } from './../src/parser/src/types';
|
|
1
|
+
export type { ExpressionFunction, ExpressionFunctionDocBlock, ExpressionFunctionHandler, ExpressionContext, ExpressionFunctionMap, ExpressionCategory, ExpressionFunctionInputType, AggregatedScalarExpressionFunction, AggregatedScalarExpressionReducerContext, AST, AST_Function, AST_Expression, Token, } from './../src/parser/src/types';
|
|
2
2
|
export type { AgGridConfig } from './AdaptableInterfaces/IAdaptable';
|
|
3
3
|
export type { AdaptableConfig } from './View/AdaptableWizardView/AdaptableConfigurationDialog/AdaptableConfig';
|
|
4
4
|
export type { AdaptableNoCodeWizardOptions, IAdaptableNoCodeWizard, } from './AdaptableInterfaces/AdaptableNoCodeWizard';
|
|
@@ -17,7 +17,10 @@ export type { DashboardOptions, CustomToolbar, DashboardButtonContext, CustomToo
|
|
|
17
17
|
export type { EditOptions, ServerValidationResult, SmartEditCustomOperation, SmartEditOperation, SmartEditOperationContext, ServerValidationContext, CellEditableContext, } from './AdaptableOptions/EditOptions';
|
|
18
18
|
export type { ActionRowOptions, ActionRowButtonOptions, ActionRowFormOptions, ActionRowParamContext, ActionRowParamFieldContext, CreateActionRowFormContext, EditActionRowFormContext, ActionRowFormContext, ActionRowType, ActionRowButtonType, ActionRowButtonConfigurationContext, ActionRowButtonsContext, SetPrimaryKeyValueContext, ActionRowFormColumnContext, } from './AdaptableOptions/ActionRowOptions';
|
|
19
19
|
export type { ActionColumnContext, ActionColumn, ActionColumnSettings, ActionColumnOptions, } from './AdaptableOptions/ActionColumnOptions';
|
|
20
|
-
export type {
|
|
20
|
+
export type { AdaptableNumberCellEditorParams } from './agGrid/editors/AdaptableNumberEditor';
|
|
21
|
+
export type { AdaptableDateEditorParams } from './agGrid/editors/AdaptableDateEditor';
|
|
22
|
+
export type { AdaptablePercentageCellEditorParams } from './agGrid/editors/AdaptablePercentageEditor';
|
|
23
|
+
export type { ExportOptions, SystemExportDestination, SystemExportDestinations, CustomDestination, ExternalReport, PreProcessExportContext, AdaptableReportColumn, DataFormatType, ExportFormContext, ReportContext, ExportableColumnContext, ReportFileNameContext, DataFormatTypeContext, DataFormatDataType, } from './AdaptableOptions/ExportOptions';
|
|
21
24
|
export type { DataImportValidationError, DataImportOptions, DataImportFileHandler, HandleImportedDataContext, DataImportValidateContext, GetPrimaryKeyValueContext, PreprocessRowDataContext, HandleImportedDataResolution, } from './AdaptableOptions/DataImportOptions';
|
|
22
25
|
export type { DataSetOptions, DataSet, DataSetFormContext, } from './AdaptableOptions/DataSetOptions';
|
|
23
26
|
export type { CellSummaryOptions } from './AdaptableOptions/CellSummaryOptions';
|
|
@@ -32,7 +35,7 @@ export type { OpenFinPluginOptions } from './AdaptableOptions/OpenFinPluginOptio
|
|
|
32
35
|
export type { InteropioPluginOptions } from './AdaptableOptions/InteropioPluginOptions';
|
|
33
36
|
export type { MasterDetailPluginOptions, DetailInitContext, } from './AdaptableOptions/MasterDetailPluginOptions';
|
|
34
37
|
export type { DateInputOptions } from './AdaptableOptions/DateInputOptions';
|
|
35
|
-
export type { ColumnFilterOptions, QuickFilterOptions, FilterFormOptions, ValuesFilterOptions, ColumnFilterContext, } from './AdaptableOptions/ColumnFilterOptions';
|
|
38
|
+
export type { ColumnFilterOptions, QuickFilterOptions, FilterFormOptions, ValuesFilterOptions, ColumnFilterContext, ColumnValuesFilterPredicate, ColumnFilterPredicateContext, } from './AdaptableOptions/ColumnFilterOptions';
|
|
36
39
|
export type { GridFilterOptions, GridFilterEditors, GridFilterEditor, } from './AdaptableOptions/GridFilterOptions';
|
|
37
40
|
export type { QuickSearchOptions, QuickSearchContext } from './AdaptableOptions/QuickSearchOptions';
|
|
38
41
|
export type { FormatColumnOptions, CustomDisplayFormatter, CustomDisplayFormatterContext, } from './AdaptableOptions/FormatColumnOptions';
|
|
@@ -50,7 +53,7 @@ export type { ContextMenuOptions, AdaptableSystemContextMenuItem, CustomContextM
|
|
|
50
53
|
export type { ColumnMenuOptions, CustomColumnMenuContext, CustomColumnMenuItem, UserColumnMenuItem, AdaptableSystemColumnMenuItem, AgGridColumnMenuItemType, } from './AdaptableOptions/ColumnMenuOptions';
|
|
51
54
|
export type { CustomSettingsPanel, SettingsPanelOptions, } from './AdaptableOptions/SettingsPanelOptions';
|
|
52
55
|
export type { EntitlementOptions, EntitlementContext, DefaultAccessLevelContext, } from './AdaptableOptions/EntitlementOptions';
|
|
53
|
-
export type { EvaluateExpressionExternallyContext, ExpressionOptions, ModuleExpressionFunctions, ModuleExpressionFunctionsMap, GlobalExpressionFunctionsContext, ModuleExpressionFunctionsContext, CustomQueryVariableContext, QueryableColumnContext, } from './AdaptableOptions/ExpressionOptions';
|
|
56
|
+
export type { EvaluateExpressionExternallyContext, ExpressionOptions, ModuleExpressionFunctions, ModuleExpressionFunctionsMap, GlobalExpressionFunctionsContext, ModuleExpressionFunctionsContext, CustomQueryVariableContext, QueryableColumnContext, AdaptableFieldContext, } from './AdaptableOptions/ExpressionOptions';
|
|
54
57
|
export type { PredicateOptions, SystemPredicatesContext, } from './AdaptableOptions/PredicateOptions';
|
|
55
58
|
export type { CalendarOptions } from './AdaptableOptions/CalendarOptions';
|
|
56
59
|
export type { DataChangeHistoryOptions, DataChangeHistoryButton, DataChangeHistoryContext, AdaptableDataChangeHistoryAction, } from './AdaptableOptions/DataChangeHistoryOptions';
|
|
@@ -65,7 +68,7 @@ export type { CalendarApi } from './Api/CalendarApi';
|
|
|
65
68
|
export type { CalculatedColumnApi } from './Api/CalculatedColumnApi';
|
|
66
69
|
export type { CellSummaryApi } from './Api/CellSummaryApi';
|
|
67
70
|
export type { ChartingApi } from './Api/ChartingApi';
|
|
68
|
-
export type { ColumnApi } from './Api/ColumnApi';
|
|
71
|
+
export type { ColumnApi, ColumnConfig } from './Api/ColumnApi';
|
|
69
72
|
export type { ColumnFilterApi } from './Api/ColumnFilterApi';
|
|
70
73
|
export type { CommentApi } from './Api/CommentApi';
|
|
71
74
|
export type { ConfigApi } from './Api/ConfigApi';
|
|
@@ -149,6 +152,7 @@ export type { FlashingCellDefinition, FlashingCellState, SystemFlashingCellPredi
|
|
|
149
152
|
export type { AdaptableAlert, AdaptableAlertType, AdaptableGenericAlert, AdaptableCellChangedAlert, AdaptableRowChangedAlert, AdaptableAlertBase, } from './PredefinedConfig/Common/AdaptableAlert';
|
|
150
153
|
export type { AdaptableFlashingCell } from './PredefinedConfig/Common/AdaptableFlashingCell';
|
|
151
154
|
export type { AdaptableColumn, AdaptableColumnBase, AdaptableColumnDataType, AdaptableColumnGroup, } from './PredefinedConfig/Common/AdaptableColumn';
|
|
155
|
+
export type { AdaptableField } from './PredefinedConfig/Common/AdaptableField';
|
|
152
156
|
export type { AdaptableComparerFunction } from './PredefinedConfig/Common/AdaptableComparerFunction';
|
|
153
157
|
export type { SystemStatusMessageInfo } from './PredefinedConfig/Common/SystemStatusMessageInfo';
|
|
154
158
|
export type { AlternativeModuleName } from './PredefinedConfig/Common/AlternativeModuleName';
|
|
@@ -206,8 +210,6 @@ export type { SharedEntity, AdaptableSharedEntity, CustomSharedEntity, TeamShari
|
|
|
206
210
|
export type { AdaptableTheme, ThemeState } from './PredefinedConfig/ThemeState';
|
|
207
211
|
export type { ToolPanelState, AdaptableToolPanelDefinition, ToolPanelVisibilityMode, } from './PredefinedConfig/ToolPanelState';
|
|
208
212
|
export type { AdaptableFrameworkComponent, AngularFrameworkComponent, ReactFrameworkComponent, CustomRenderFunction, CustomRenderContext, CustomWindowConfig, } from './AdaptableOptions/AdaptableFrameworkComponent';
|
|
209
|
-
export type { Fdc3StandardContextType, Fdc3CustomContextType, InstrumentContext, InstrumentListContext, PositionContext, PortfolioContext, ContactContext, ContactListContext, CountryContext, OrganizationContext, Fdc3ContextType, Fdc3Context, ChartContextType, ChartContext, ChatInitSettingsContext, ChatInitSettingsContextType, ContactContextType, ContactListContextType, CurrencyContext, EmailContext, CountryContextType, CurrencyContextType, EmailContextType, InstrumentContextType, InstrumentListContextType, NothingContextType, OrganizationContextType, PortfolioContextType, PositionContextType, NothingContext, Fdc3CustomContext, ValuationContext, ValuationContextType, TimeRangeContextType, TimeRangeContext, } from './PredefinedConfig/Common/Fdc3Context';
|
|
210
|
-
export type { Fdc3IntentType, Fdc3StandardIntentType, Fdc3CustomIntentType, CompatibleContext, } from './PredefinedConfig/Common/Fdc3Intent';
|
|
211
213
|
export type { Fdc3Options, GridDataContextMapping, ActionColumnDefaultConfiguration, ResolveContextDataContext, RaiseIntentConfig, BroadcastConfig, HandleFdc3IntentContext, HandleFdc3Context, Fdc3ButtonContext, Fdc3AdaptableButton, HandleFdc3IntentResolutionContext, UIControlConfig, Fdc3IntentOptions, Fdc3ContextOptions, RaiseIntentConfiguration, BroadcastConfiguration, FDC3ActionColumn, } from './AdaptableOptions/Fdc3Options';
|
|
212
214
|
export type { CommentState, CommentThread, AdaptableComment, } from './PredefinedConfig/CommentState';
|
|
213
215
|
export type { UpgradeConfig } from '../agGrid';
|