@adaptabletools/adaptable 18.0.17 → 18.1.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.
Files changed (136) hide show
  1. package/agGrid.d.ts +4 -3
  2. package/agGrid.js +4 -3
  3. package/base.css +7 -2
  4. package/base.css.map +1 -1
  5. package/index.css +11 -2
  6. package/index.css.map +1 -1
  7. package/package.json +2 -2
  8. package/src/AdaptableInterfaces/IAdaptable.d.ts +3 -4
  9. package/src/AdaptableOptions/ActionColumnOptions.d.ts +1 -1
  10. package/src/AdaptableOptions/ColumnFilterOptions.d.ts +52 -11
  11. package/src/AdaptableOptions/ExportOptions.d.ts +20 -7
  12. package/src/AdaptableOptions/ExpressionOptions.d.ts +12 -2
  13. package/src/AdaptableOptions/Fdc3Options.d.ts +48 -43
  14. package/src/Api/ColumnApi.d.ts +5 -0
  15. package/src/Api/Events/Fdc3MessageInfo.d.ts +5 -7
  16. package/src/Api/ExpressionApi.d.ts +2 -2
  17. package/src/Api/Fdc3Api.d.ts +14 -19
  18. package/src/Api/Implementation/ColumnApiImpl.d.ts +1 -0
  19. package/src/Api/Implementation/ColumnApiImpl.js +3 -0
  20. package/src/Api/Implementation/ConfigApiImpl.js +3 -0
  21. package/src/Api/Implementation/Fdc3ApiImpl.d.ts +14 -16
  22. package/src/Api/Implementation/Fdc3ApiImpl.js +36 -12
  23. package/src/Api/Internal/AlertInternalApi.d.ts +17 -2
  24. package/src/Api/Internal/AlertInternalApi.js +196 -25
  25. package/src/Api/Internal/ColumnFilterInternalApi.d.ts +2 -0
  26. package/src/Api/Internal/ColumnFilterInternalApi.js +20 -0
  27. package/src/Api/Internal/ExportInternalApi.d.ts +3 -3
  28. package/src/Api/Internal/ExportInternalApi.js +31 -17
  29. package/src/Api/Internal/ExpressionInternalApi.d.ts +5 -1
  30. package/src/Api/Internal/ExpressionInternalApi.js +79 -0
  31. package/src/Api/Internal/Fdc3InternalApi.d.ts +8 -10
  32. package/src/Api/Internal/Fdc3InternalApi.js +6 -10
  33. package/src/Api/Internal/GridInternalApi.d.ts +29 -13
  34. package/src/Api/Internal/GridInternalApi.js +129 -39
  35. package/src/PredefinedConfig/Common/AdaptableField.d.ts +18 -0
  36. package/src/PredefinedConfig/Common/AdaptableField.js +1 -0
  37. package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
  38. package/src/PredefinedConfig/Common/AdaptablePredicate.js +22 -1
  39. package/src/PredefinedConfig/Common/Fdc3Context.d.ts +7 -226
  40. package/src/PredefinedConfig/Common/Fdc3Context.js +43 -31
  41. package/src/PredefinedConfig/Common/Fdc3Intent.d.ts +6 -89
  42. package/src/PredefinedConfig/Common/Fdc3Intent.js +26 -73
  43. package/src/PredefinedConfig/Common/RowSummary.d.ts +2 -1
  44. package/src/PredefinedConfig/StyledColumnState.d.ts +1 -1
  45. package/src/Redux/ActionsReducers/FormatColumnRedux.js +0 -3
  46. package/src/Strategy/AdaptableModuleBase.js +1 -3
  47. package/src/Strategy/AlertModule.d.ts +1 -1
  48. package/src/Strategy/AlertModule.js +8 -8
  49. package/src/Utilities/Constants/DocumentationLinkConstants.js +4 -4
  50. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +3 -1
  51. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +1 -1
  52. package/src/Utilities/Services/Fdc3Service.d.ts +1 -1
  53. package/src/Utilities/Services/Fdc3Service.js +2 -2
  54. package/src/Utilities/Services/QueryLanguageService.d.ts +8 -4
  55. package/src/Utilities/Services/QueryLanguageService.js +105 -6
  56. package/src/Utilities/Services/ReportService.js +8 -5
  57. package/src/Utilities/Services/RowSummaryService.js +3 -1
  58. package/src/Utilities/divideBy100.d.ts +1 -0
  59. package/src/Utilities/divideBy100.js +30 -0
  60. package/src/Utilities/times100.d.ts +1 -0
  61. package/src/Utilities/times100.js +23 -0
  62. package/src/View/Alert/Wizard/AlertMessageWizardSection.js +1 -1
  63. package/src/View/Alert/Wizard/AlertNotificationWizardSection.js +2 -2
  64. package/src/View/Alert/Wizard/AlertScopeWizardSection.js +2 -1
  65. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +1 -1
  66. package/src/View/CalculatedColumn/Wizard/CalculatedColumnTypeSection.js +5 -5
  67. package/src/View/Components/EntityRulesEditor/index.d.ts +1 -0
  68. package/src/View/Components/EntityRulesEditor/index.js +11 -7
  69. package/src/View/Components/ExpressionWizard.js +1 -1
  70. package/src/View/Components/FilterForm/FilterForm.js +2 -2
  71. package/src/View/Components/FilterForm/ListBoxFilterForm.js +2 -1
  72. package/src/View/Components/FilterForm/QuickFilterValues.d.ts +1 -1
  73. package/src/View/Components/FilterForm/QuickFilterValues.js +5 -5
  74. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +6 -2
  75. package/src/View/Components/Selectors/FieldSelector.d.ts +13 -0
  76. package/src/View/Components/Selectors/FieldSelector.js +21 -0
  77. package/src/View/Components/Selectors/PermittedValuesSelector.js +9 -5
  78. package/src/View/Export/Wizard/ReportRowsWizardSection.js +1 -1
  79. package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.js +1 -1
  80. package/src/View/GridFilter/GridFilterExpressionEditor.js +1 -1
  81. package/src/View/Layout/Wizard/sections/GridFilterSection.js +4 -2
  82. package/src/View/Layout/Wizard/sections/RowSummarySection.js +7 -1
  83. package/src/View/NamedQuery/Wizard/NamedQueryExpressionWizardSection.js +1 -1
  84. package/src/View/Wizard/OnePageAdaptableWizard.js +3 -2
  85. package/src/agGrid/AdaptableAgGrid.d.ts +4 -6
  86. package/src/agGrid/AdaptableAgGrid.js +68 -49
  87. package/src/agGrid/AgGridColumnAdapter.d.ts +3 -0
  88. package/src/agGrid/AgGridColumnAdapter.js +22 -0
  89. package/src/agGrid/AgGridMenuAdapter.js +1 -1
  90. package/src/agGrid/FilterWrapper.js +12 -7
  91. package/src/agGrid/defaultAdaptableOptions.js +2 -2
  92. package/src/agGrid/editors/AdaptableDateEditor/InternalAdaptableDateEditor.d.ts +0 -1
  93. package/src/agGrid/editors/AdaptableDateEditor/InternalAdaptableDateEditor.js +0 -2
  94. package/src/agGrid/editors/AdaptableDateEditor/index.d.ts +4 -16
  95. package/src/agGrid/editors/AdaptableDateEditor/index.js +5 -18
  96. package/src/agGrid/editors/AdaptableNumberEditor/InternalAdaptableNumberEditor.js +6 -1
  97. package/src/agGrid/editors/AdaptableNumberEditor/index.d.ts +4 -3
  98. package/src/agGrid/editors/AdaptableNumberEditor/index.js +5 -2
  99. package/src/agGrid/editors/AdaptablePercentageEditor/InternalAdaptablePercentageEditor.d.ts +23 -0
  100. package/src/agGrid/editors/AdaptablePercentageEditor/InternalAdaptablePercentageEditor.js +80 -0
  101. package/src/agGrid/editors/AdaptablePercentageEditor/index.d.ts +47 -0
  102. package/src/agGrid/editors/AdaptablePercentageEditor/index.js +148 -0
  103. package/src/components/Accordion.js +1 -1
  104. package/src/components/Datepicker/DatepickerContext.d.ts +0 -2
  105. package/src/components/Datepicker/index.js +3 -4
  106. package/src/components/ExpressionEditor/DataTableEditor.d.ts +17 -0
  107. package/src/components/ExpressionEditor/DataTableEditor.js +63 -0
  108. package/src/components/ExpressionEditor/EditorInput.js +22 -9
  109. package/src/components/ExpressionEditor/NamedQueryEditor.d.ts +5 -0
  110. package/src/components/ExpressionEditor/NamedQueryEditor.js +30 -0
  111. package/src/components/ExpressionEditor/QueryBuilder/QueryBuilder.d.ts +10 -0
  112. package/src/components/ExpressionEditor/QueryBuilder/QueryBuilder.js +7 -4
  113. package/src/components/ExpressionEditor/QueryBuilder/QueryBuilderInputs.d.ts +3 -2
  114. package/src/components/ExpressionEditor/QueryBuilder/QueryBuilderInputs.js +71 -13
  115. package/src/components/ExpressionEditor/QueryBuilder/QueryPredicateBuilder.js +30 -22
  116. package/src/components/ExpressionEditor/QueryBuilder/utils.d.ts +9 -1
  117. package/src/components/ExpressionEditor/QueryBuilder/utils.js +41 -3
  118. package/src/components/ExpressionEditor/index.d.ts +3 -1
  119. package/src/components/ExpressionEditor/index.js +67 -94
  120. package/src/components/Input/NumberInput.d.ts +2 -1
  121. package/src/components/Input/NumberInput.js +7 -4
  122. package/src/components/OverlayTrigger/index.js +10 -6
  123. package/src/components/icons/column-outline.d.ts +3 -0
  124. package/src/components/icons/column-outline.js +4 -0
  125. package/src/components/icons/index.js +5 -1
  126. package/src/components/icons/sync.d.ts +3 -0
  127. package/src/components/icons/sync.js +4 -0
  128. package/src/env.js +2 -2
  129. package/src/metamodel/adaptable.metamodel.d.ts +121 -200
  130. package/src/metamodel/adaptable.metamodel.js +1 -1
  131. package/src/parser/src/predicate/mapExpressionToQlPredicate.d.ts +1 -0
  132. package/src/parser/src/predicate/mapExpressionToQlPredicate.js +12 -2
  133. package/src/parser/src/predicate/mapQlPredicateToExpression.js +4 -1
  134. package/src/parser/src/types.d.ts +101 -1
  135. package/src/types.d.ts +8 -6
  136. package/tsconfig.esm.tsbuildinfo +1 -1
@@ -1,2 +1,3 @@
1
1
  import { QlPredicateError, QlPredicate } from './types';
2
+ export declare const isArgumentColumnOrField: (arg: unknown) => boolean;
2
3
  export declare function mapExpressionToQlPredicate(expression: string): QlPredicate | QlPredicateError;
@@ -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
- if (!args[0] || typeof args[0] !== 'string' || !args[0].includes('[')) {
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
  }
@@ -65,6 +74,7 @@ export function mapExpressionToQlPredicate(expression) {
65
74
  if (!operator || !isBooleanAdaptableQlFunction(operator)) {
66
75
  return { errorMessage: `Only boolean functions are supported!` };
67
76
  }
77
+ const inputs = astRootNode.args;
68
78
  const qlPredicate = mapAstToQlPredicate(astRootNode);
69
79
  if (!isQlLogicalOperator(qlPredicate.operator)) {
70
80
  return {
@@ -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 { ExportOptions, SystemExportDestination, SystemExportDestinations, CustomDestination, ExternalReport, PreProcessExportContext, AdaptableReportColumn, DataFormatType, ExportFormContext, ReportContext, ExportableColumnContext, ReportFileNameContext, } from './AdaptableOptions/ExportOptions';
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, ValuesFilterPredicateOptions, ColumnFilterContext, ColumnValuesFilterPredicate, IsRowFilterableContext, ValuesFilterPredicateContext, } 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';
@@ -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';