@adaptabletools/adaptable-cjs 18.1.6 → 18.1.8

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 (42) hide show
  1. package/package.json +1 -1
  2. package/src/AdaptableInterfaces/IAdaptable.d.ts +2 -2
  3. package/src/AdaptableOptions/AdaptableFrameworkComponent.d.ts +3 -4
  4. package/src/AdaptableOptions/ColumnFilterOptions.d.ts +3 -0
  5. package/src/AdaptableOptions/ExpressionOptions.d.ts +3 -0
  6. package/src/AdaptableOptions/GridFilterOptions.d.ts +4 -1
  7. package/src/AdaptableOptions/StateOptions.d.ts +1 -1
  8. package/src/Api/AdaptableApi.d.ts +1 -4
  9. package/src/Api/ColumnScopeApi.d.ts +1 -1
  10. package/src/Api/Events/SystemStatusMessageDisplayed.d.ts +1 -1
  11. package/src/Api/Implementation/GridApiImpl.js +1 -1
  12. package/src/Api/Internal/AlertInternalApi.d.ts +0 -3
  13. package/src/Api/Internal/AlertInternalApi.js +12 -39
  14. package/src/Api/Internal/CommentsInternalApi.js +0 -4
  15. package/src/Api/Internal/FormatColumnInternalApi.d.ts +2 -2
  16. package/src/Api/Internal/FormatColumnInternalApi.js +6 -6
  17. package/src/Api/Internal/GridInternalApi.js +2 -2
  18. package/src/Api/Internal/NoteInternalApi.js +0 -4
  19. package/src/Api/StatusBarApi.d.ts +5 -5
  20. package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
  21. package/src/PredefinedConfig/Common/Menu.d.ts +6 -0
  22. package/src/Strategy/CalculatedColumnModule.js +1 -1
  23. package/src/Strategy/ColumnFilterModule.js +13 -11
  24. package/src/Strategy/CommentModule.js +3 -0
  25. package/src/Strategy/NoteModule.js +3 -0
  26. package/src/Utilities/Helpers/FormatHelper.d.ts +23 -4
  27. package/src/Utilities/Helpers/FormatHelper.js +75 -16
  28. package/src/Utilities/Helpers/Helper.d.ts +6 -0
  29. package/src/Utilities/Helpers/Helper.js +35 -1
  30. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +5 -1
  31. package/src/agGrid/AdaptableAgGrid.d.ts +2 -2
  32. package/src/agGrid/AdaptableAgGrid.js +17 -24
  33. package/src/agGrid/editors/AdaptableDateEditor/index.d.ts +3 -0
  34. package/src/components/Select/Select.d.ts +1 -0
  35. package/src/components/Select/Select.js +8 -2
  36. package/src/components/icons/index.js +1 -1
  37. package/src/env.js +2 -2
  38. package/src/metamodel/adaptable.metamodel.d.ts +149 -0
  39. package/src/metamodel/adaptable.metamodel.js +1 -1
  40. package/src/parser/src/types.d.ts +25 -4
  41. package/src/types.d.ts +1 -1
  42. package/tsconfig.cjs.tsbuildinfo +1 -1
@@ -18,6 +18,9 @@ export declare function meanNumberArray(numericValues: number[]): number;
18
18
  export declare function medianNumberArray(numericValues: number[]): number;
19
19
  export declare function modeNumberArray(numbers: number[]): number;
20
20
  export declare function clamp(value: any, boundOne: number, boundTwo: number): number;
21
+ export declare function extractColsFromText(text: string): string[];
22
+ export declare function replaceAll(text: string, toReplace: string, replaceWith: string): string;
23
+ export declare function extractContextKeysFromText(text: string): string[];
21
24
  export declare const Helper: {
22
25
  objectExists: typeof objectExists;
23
26
  objectNotExists: typeof objectNotExists;
@@ -38,5 +41,8 @@ export declare const Helper: {
38
41
  medianNumberArray: typeof medianNumberArray;
39
42
  modeNumberArray: typeof modeNumberArray;
40
43
  clamp: typeof clamp;
44
+ extractColsFromText: typeof extractColsFromText;
45
+ replaceAll: typeof replaceAll;
46
+ extractContextKeysFromText: typeof extractContextKeysFromText;
41
47
  };
42
48
  export default Helper;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Helper = exports.clamp = exports.modeNumberArray = exports.medianNumberArray = exports.meanNumberArray = exports.standardDeviationNumberArray = exports.sumNumberArray = exports.roundNumberTo4dp = exports.roundNumber = exports.isInputNotNullOrEmpty = exports.isInputNullOrEmpty = exports.returnItemCount = exports.copyToClipboard = exports.createDownloadedFile = exports.convertArrayToCsv = exports.arrayToKeyMap = exports.cloneObject = exports.getStringRepresentionFromKey = exports.objectHasKeys = exports.objectNotExists = exports.objectExists = void 0;
3
+ exports.Helper = exports.extractContextKeysFromText = exports.replaceAll = exports.extractColsFromText = exports.clamp = exports.modeNumberArray = exports.medianNumberArray = exports.meanNumberArray = exports.standardDeviationNumberArray = exports.sumNumberArray = exports.roundNumberTo4dp = exports.roundNumber = exports.isInputNotNullOrEmpty = exports.isInputNullOrEmpty = exports.returnItemCount = exports.copyToClipboard = exports.createDownloadedFile = exports.convertArrayToCsv = exports.arrayToKeyMap = exports.cloneObject = exports.getStringRepresentionFromKey = exports.objectHasKeys = exports.objectNotExists = exports.objectExists = void 0;
4
4
  const StringExtensions_1 = require("../Extensions/StringExtensions");
5
5
  const AdaptableLogger_1 = require("../../agGrid/AdaptableLogger");
6
6
  function objectExists(item) {
@@ -250,6 +250,37 @@ function clamp(value, boundOne, boundTwo) {
250
250
  return value;
251
251
  }
252
252
  exports.clamp = clamp;
253
+ function extractColsFromText(text) {
254
+ // rowData.columnName => columnName
255
+ const regex = /\[rowData\.(.*?)\]/g;
256
+ let m;
257
+ const cols = [];
258
+ while ((m = regex.exec(text)) !== null) {
259
+ cols.push(m[1]);
260
+ }
261
+ return cols;
262
+ }
263
+ exports.extractColsFromText = extractColsFromText;
264
+ function replaceAll(text, toReplace, replaceWith) {
265
+ if (!text) {
266
+ return text;
267
+ }
268
+ // fails for []
269
+ toReplace = toReplace.replace('[', '\\[').replace(']', '\\]');
270
+ return text.replace(new RegExp(toReplace, 'g'), replaceWith);
271
+ }
272
+ exports.replaceAll = replaceAll;
273
+ function extractContextKeysFromText(text) {
274
+ // context.columnName => columnName
275
+ const regex = /\[context\.(.*?)\]/g;
276
+ let m;
277
+ const contextKeys = [];
278
+ while ((m = regex.exec(text)) !== null) {
279
+ contextKeys.push(m[1]);
280
+ }
281
+ return contextKeys;
282
+ }
283
+ exports.extractContextKeysFromText = extractContextKeysFromText;
253
284
  exports.Helper = {
254
285
  objectExists,
255
286
  objectNotExists,
@@ -270,5 +301,8 @@ exports.Helper = {
270
301
  medianNumberArray,
271
302
  modeNumberArray,
272
303
  clamp,
304
+ extractColsFromText,
305
+ replaceAll,
306
+ extractContextKeysFromText,
273
307
  };
274
308
  exports.default = exports.Helper;
@@ -21,6 +21,7 @@ const AdaptableContext_1 = require("../../AdaptableContext");
21
21
  const FormatHelper_1 = tslib_1.__importDefault(require("../../../Utilities/Helpers/FormatHelper"));
22
22
  const Toggle_1 = require("../../../components/Toggle");
23
23
  const GeneralConstants_1 = require("../../../Utilities/Constants/GeneralConstants");
24
+ const Textarea_1 = tslib_1.__importDefault(require("../../../components/Textarea"));
24
25
  const DOLLAR_OPTIONS = {
25
26
  FractionDigits: 2,
26
27
  FractionSeparator: '.',
@@ -376,7 +377,10 @@ const renderStringFormat = (data, _onChange, setFormatOption, scopedCustomFormat
376
377
  React.createElement(FormLayout_1.FormRow, { label: "Suffix" },
377
378
  React.createElement(Input_1.default, { "data-name": "suffix", value: (_b = data.DisplayFormat.Options.Suffix) !== null && _b !== void 0 ? _b : '', onChange: (e) => setFormatOption('Suffix', e.currentTarget.value) })),
378
379
  React.createElement(FormLayout_1.FormRow, { label: "Content" },
379
- React.createElement(Input_1.default, { "data-name": "content", value: (_c = data.DisplayFormat.Options.Content) !== null && _c !== void 0 ? _c : '', onChange: (e) => setFormatOption('Content', e.currentTarget.value) })),
380
+ React.createElement(Textarea_1.default, { minWidth: 300, rows: 3, placeholder: "use defaults", marginTop: 2, type: 'text', autoFocus: false, value: (_c = data.DisplayFormat.Options.Content) !== null && _c !== void 0 ? _c : '',
381
+ // placeholder="defaults to column name"
382
+ // onChange={(e: any) => onMessageHeaderChange(e)}
383
+ onChange: (e) => setFormatOption('Content', e.currentTarget.value) })),
380
384
  React.createElement(FormLayout_1.FormRow, { label: "Empty" },
381
385
  React.createElement(CheckBox_1.CheckBox, { "data-name": "empty-checkbox", checked: data.DisplayFormat.Options.Empty, onChange: (checked) => setFormatOption('Empty', checked) })))))),
382
386
  scopedCustomFormatters.length > 0 && (React.createElement(Tabs_1.Tabs, { marginTop: 2, keyboardNavigation: false },
@@ -243,7 +243,7 @@ export declare class AdaptableAgGrid implements IAdaptable {
243
243
  private getDistinctGridCellsForColumn;
244
244
  private addDistinctColumnValue;
245
245
  private getUniqueGridCells;
246
- getGridCellsForColumn(columnId: string, includeBlanks?: boolean, onlyVisibleRows?: boolean): GridCell[] | undefined;
246
+ getGridCellsForColumn(columnId: string, onlyVisibleRows?: boolean): GridCell[] | undefined;
247
247
  getRowNodesForPrimaryKeys(primaryKeyValues: any[]): any[];
248
248
  getRowNodeByIndex(index: number): IRowNode;
249
249
  getAgGridStatusPanels(): import("@ag-grid-community/core").StatusPanelDef[];
@@ -296,7 +296,7 @@ export declare class AdaptableAgGrid implements IAdaptable {
296
296
  getAllGridColumns(): Column<any>[];
297
297
  clearRowGroupColumns(): void;
298
298
  expandAllRowGroups(): void;
299
- closeAllRowGroups(): void;
299
+ collapseAllRowGroups(): void;
300
300
  expandRowGroupsForValues(columnValues: any[]): void;
301
301
  getExpandRowGroupsKeys(): any[];
302
302
  getAgGridColumnForColumnId(columnId: string): Column;
@@ -280,6 +280,7 @@ class AdaptableAgGrid {
280
280
  this.adaptableOptions = this.normalizeAdaptableOptions(this.adaptableOptions);
281
281
  const { showLoadingScreen, loadingScreenDelay, loadingScreenText, loadingScreenTitle } = this.adaptableOptions.userInterfaceOptions;
282
282
  if (showLoadingScreen) {
283
+ this.logger.info(`Show Loading Screen`);
283
284
  const portalElement = (0, Modal_1.ensurePortalElement)();
284
285
  if (portalElement) {
285
286
  this.unmountLoadingScreen = this.renderReactRoot((0, react_1.createElement)(AdaptableLoadingScreen_1.AdaptableLoadingScreen, {
@@ -289,6 +290,9 @@ class AdaptableAgGrid {
289
290
  loadingScreenTitle,
290
291
  }), portalElement);
291
292
  }
293
+ else {
294
+ this.logger.consoleError(`Adaptable failed to show the loading screen!`);
295
+ }
292
296
  }
293
297
  this.forPlugins((plugin) => plugin.afterInitOptions(this, this.adaptableOptions));
294
298
  this.api = new AdaptableApiImpl_1.AdaptableApiImpl(this);
@@ -354,6 +358,7 @@ class AdaptableAgGrid {
354
358
  this.logger.consoleError(`Adaptable failed to initialize AG Grid!`);
355
359
  return Promise.reject('Adaptable failed to initialize AG Grid!');
356
360
  }
361
+ this.logger.info(`Hide Loading Screen`);
357
362
  (_b = this.unmountLoadingScreen) === null || _b === void 0 ? void 0 : _b.call(this);
358
363
  perfInitAgGrid.end();
359
364
  // we need to intercept several AG Grid Api methods and trigger Adaptale state changes
@@ -2041,8 +2046,10 @@ class AdaptableAgGrid {
2041
2046
  let firstRowNode = this.getFirstDisplayedRowNode();
2042
2047
  if (firstRowNode === null || firstRowNode === void 0 ? void 0 : firstRowNode.group) {
2043
2048
  // all groups may be closed so it is safer to get first leaf node
2044
- // all groups must have at least one leafe node
2045
- firstRowNode = firstRowNode.allLeafChildren[0];
2049
+ // all groups should have at least one leafe node (though not necessarily if using SSRM)
2050
+ if (ArrayExtensions_1.default.IsNotNullOrEmpty(firstRowNode.allLeafChildren)) {
2051
+ firstRowNode = firstRowNode.allLeafChildren[0];
2052
+ }
2046
2053
  }
2047
2054
  return firstRowNode;
2048
2055
  }
@@ -2358,17 +2365,12 @@ class AdaptableAgGrid {
2358
2365
  }
2359
2366
  return uniqueVals.slice(0, this.api.columnFilterApi.internalApi.getFilterValuesMaxNumberOfItems(column));
2360
2367
  }
2361
- getGridCellsForColumn(columnId, includeBlanks = false, onlyVisibleRows = false) {
2368
+ getGridCellsForColumn(columnId, onlyVisibleRows = false) {
2362
2369
  let returnValues = [];
2363
2370
  const handler = (rowNode) => {
2364
- const gridCell = this.getGridCellFromRowNode(rowNode, columnId);
2365
- if (gridCell) {
2366
- if (gridCell.rawValue == undefined || gridCell.rawValue == null) {
2367
- if (includeBlanks) {
2368
- returnValues.push(gridCell);
2369
- }
2370
- }
2371
- else {
2371
+ if (!this.isGroupRowNode(rowNode)) {
2372
+ const gridCell = this.getGridCellFromRowNode(rowNode, columnId);
2373
+ if (gridCell && gridCell.rawValue !== undefined && gridCell.rawValue !== null) {
2372
2374
  returnValues.push(gridCell);
2373
2375
  }
2374
2376
  }
@@ -2832,20 +2834,10 @@ class AdaptableAgGrid {
2832
2834
  .removeRowGroupColumns(this.agGridAdapter.getAgGridApi().getRowGroupColumns());
2833
2835
  }
2834
2836
  expandAllRowGroups() {
2835
- this.agGridAdapter.getAgGridApi().forEachNode((node) => {
2836
- if (node.group) {
2837
- node.expanded = true;
2838
- }
2839
- });
2840
- this.agGridAdapter.getAgGridApi().onGroupExpandedOrCollapsed();
2837
+ this.agGridAdapter.getAgGridApi().expandAll();
2841
2838
  }
2842
- closeAllRowGroups() {
2843
- this.agGridAdapter.getAgGridApi().forEachNode((node) => {
2844
- if (node.group) {
2845
- node.expanded = false;
2846
- }
2847
- });
2848
- this.agGridAdapter.getAgGridApi().onGroupExpandedOrCollapsed();
2839
+ collapseAllRowGroups() {
2840
+ this.agGridAdapter.getAgGridApi().collapseAll();
2849
2841
  }
2850
2842
  expandRowGroupsForValues(columnValues) {
2851
2843
  if (ArrayExtensions_1.default.IsNotNullOrEmpty(columnValues)) {
@@ -3763,6 +3755,7 @@ class AdaptableAgGrid {
3763
3755
  // same grid column state as a previous,
3764
3756
  // so no need to update, as the layout has already been updated
3765
3757
  // for this grid column state
3758
+ console.log('same state as before');
3766
3759
  return;
3767
3760
  }
3768
3761
  this.previousAgGridLayoutState = stringifiedLayoutState;
@@ -1,6 +1,9 @@
1
1
  import * as React from 'react';
2
2
  import { ICellEditorComp, ICellEditorParams } from '@ag-grid-community/core';
3
3
  import { IAdaptable } from '../../../AdaptableInterfaces/IAdaptable';
4
+ /**
5
+ * Params used by the AdapTable Date Editor
6
+ */
4
7
  export interface AdaptableDateEditorParams extends ICellEditorParams {
5
8
  onValueChange?: (value: any) => void;
6
9
  }
@@ -28,5 +28,6 @@ export type SelectProps<SelectValue extends unknown, IsMulti extends boolean = f
28
28
  onInputChange?: (value: string) => void;
29
29
  size?: 'small' | 'normal';
30
30
  isCreatable?: boolean;
31
+ menuPortalTarget?: HTMLElement;
31
32
  };
32
33
  export declare const Select: <SelectValue extends unknown, IsMulti extends boolean = false>(props: SelectProps<SelectValue, IsMulti>) => JSX.Element;
@@ -73,6 +73,11 @@ const Select = function (props) {
73
73
  return (React.createElement(react_select_1.components.ValueContainer, Object.assign({}, inputProps, { innerProps: Object.assign({ 'data-name': 'value-container' }, inputProps.innerProps) })));
74
74
  };
75
75
  }, []);
76
+ const MenuComponent = React.useMemo(() => {
77
+ return (inputProps) => {
78
+ return (React.createElement(react_select_1.components.Menu, Object.assign({}, inputProps, { innerProps: Object.assign({ 'data-name': 'menu-container' }, inputProps.innerProps) })));
79
+ };
80
+ }, []);
76
81
  const SelectComponent = props.isCreatable ? creatable_1.default : react_select_1.default;
77
82
  const ClearIndicator = React.useMemo(() => {
78
83
  return (clearIndicatorProps) => {
@@ -88,16 +93,17 @@ const Select = function (props) {
88
93
  }, []);
89
94
  return (React.createElement(SelectComponent, { onInputChange: props.onInputChange, onFocus: props.onFocus, isLoading: props.isLoading, options: props.options, className: props.className, isDisabled: disabled, menuPlacement: (_g = props.menuPlacement) !== null && _g !== void 0 ? _g : 'auto', isSearchable: props.searchable, isMulti: props.isMulti, value: selectedOption, menuPosition: (_h = props.menuPosition) !== null && _h !== void 0 ? _h : 'absolute',
90
95
  // This needed so the menu is not clipped by overflow: hidden
91
- menuPortalTarget: document.body, isClearable: props.isClearable, onChange: (option) => {
96
+ menuPortalTarget: props.menuPortalTarget === undefined ? document.body : null, isClearable: props.isClearable, onChange: (option) => {
92
97
  if (props.isMulti) {
93
98
  props.onChange(option.map((x) => x === null || x === void 0 ? void 0 : x.value));
94
99
  }
95
100
  else {
96
101
  props.onChange(option === null || option === void 0 ? void 0 : option.value);
97
102
  }
98
- }, placeholder: props.placeholder, components: {
103
+ }, placeholder: props.placeholder, createOptionPosition: 'first', components: {
99
104
  SelectContainer,
100
105
  ValueContainer,
106
+ Menu: MenuComponent,
101
107
  SingleValue: (singleValueProps) => {
102
108
  return (React.createElement(react_select_1.components.SingleValue, Object.assign({}, singleValueProps), props.renderSingleValue
103
109
  ? props.renderSingleValue(selectedOption)
@@ -180,7 +180,7 @@ exports.allIcons = {
180
180
  cells: cell_summary_1.default,
181
181
  columns: column_chooser_1.default,
182
182
  copy: copy_1.default,
183
- 'chart-and-grid': calculated_column_1.default,
183
+ 'calculated-column': calculated_column_1.default,
184
184
  laptop: application_1.default,
185
185
  alert: alert_1.default,
186
186
  building: analysis_1.default,
package/src/env.js CHANGED
@@ -2,6 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.default = {
4
4
  INFINITE_TABLE_LICENSE_KEY: "StartDate=2021-06-29|EndDate=2030-01-01|Owner=Adaptable|Type=distribution|TS=1624971462479|C=137829811,1004007071,2756196225,1839832928,3994409405,636616862" || '',
5
- PUBLISH_TIMESTAMP: 1719402039268 || Date.now(),
6
- VERSION: "18.1.6" || '--current-version--',
5
+ PUBLISH_TIMESTAMP: 1720529578367 || Date.now(),
6
+ VERSION: "18.1.8" || '--current-version--',
7
7
  };
@@ -362,6 +362,11 @@ export declare const ADAPTABLE_METAMODEL: {
362
362
  kind: string;
363
363
  desc: string;
364
364
  };
365
+ AdaptableColumnMenuItemName: {
366
+ name: string;
367
+ kind: string;
368
+ desc: string;
369
+ };
365
370
  AdaptableColumnPredicate: {
366
371
  name: string;
367
372
  kind: string;
@@ -423,6 +428,11 @@ export declare const ADAPTABLE_METAMODEL: {
423
428
  kind: string;
424
429
  desc: string;
425
430
  };
431
+ AdaptableContextMenuItemName: {
432
+ name: string;
433
+ kind: string;
434
+ desc: string;
435
+ };
426
436
  AdaptableCoordinate: {
427
437
  name: string;
428
438
  kind: string;
@@ -453,6 +463,11 @@ export declare const ADAPTABLE_METAMODEL: {
453
463
  kind: string;
454
464
  desc: string;
455
465
  };
466
+ AdaptableDateEditorParams: {
467
+ name: string;
468
+ kind: string;
469
+ desc: string;
470
+ };
456
471
  AdaptableElementIcon: {
457
472
  name: string;
458
473
  kind: string;
@@ -487,6 +502,11 @@ export declare const ADAPTABLE_METAMODEL: {
487
502
  isOpt?: undefined;
488
503
  })[];
489
504
  };
505
+ AdaptableFieldContext: {
506
+ name: string;
507
+ kind: string;
508
+ desc: string;
509
+ };
490
510
  AdaptableFlashingCell: {
491
511
  name: string;
492
512
  kind: string;
@@ -1100,6 +1120,110 @@ export declare const ADAPTABLE_METAMODEL: {
1100
1120
  defVal: string;
1101
1121
  })[];
1102
1122
  };
1123
+ AggregatedExpressionFilterRowContext: {
1124
+ name: string;
1125
+ kind: string;
1126
+ desc: string;
1127
+ props: ({
1128
+ name: string;
1129
+ kind: string;
1130
+ desc: string;
1131
+ isOpt?: undefined;
1132
+ ref?: undefined;
1133
+ } | {
1134
+ name: string;
1135
+ kind: string;
1136
+ desc: string;
1137
+ isOpt: boolean;
1138
+ ref?: undefined;
1139
+ } | {
1140
+ name: string;
1141
+ kind: string;
1142
+ desc: string;
1143
+ ref: string;
1144
+ isOpt?: undefined;
1145
+ })[];
1146
+ };
1147
+ AggregatedExpressionFunction: {
1148
+ name: string;
1149
+ kind: string;
1150
+ desc: string;
1151
+ props: ({
1152
+ name: string;
1153
+ kind: string;
1154
+ desc: string;
1155
+ isOpt: boolean;
1156
+ } | {
1157
+ name: string;
1158
+ kind: string;
1159
+ desc: string;
1160
+ isOpt?: undefined;
1161
+ })[];
1162
+ };
1163
+ AggregatedExpressionPrepareRowValueContext: {
1164
+ name: string;
1165
+ kind: string;
1166
+ desc: string;
1167
+ props: ({
1168
+ name: string;
1169
+ kind: string;
1170
+ desc: string;
1171
+ isOpt?: undefined;
1172
+ ref?: undefined;
1173
+ } | {
1174
+ name: string;
1175
+ kind: string;
1176
+ desc: string;
1177
+ isOpt: boolean;
1178
+ ref?: undefined;
1179
+ } | {
1180
+ name: string;
1181
+ kind: string;
1182
+ desc: string;
1183
+ ref: string;
1184
+ isOpt?: undefined;
1185
+ })[];
1186
+ };
1187
+ AggregatedExpressionProcessAggValueContext: {
1188
+ name: string;
1189
+ kind: string;
1190
+ desc: string;
1191
+ props: ({
1192
+ name: string;
1193
+ kind: string;
1194
+ desc: string;
1195
+ isOpt?: undefined;
1196
+ } | {
1197
+ name: string;
1198
+ kind: string;
1199
+ desc: string;
1200
+ isOpt: boolean;
1201
+ })[];
1202
+ };
1203
+ AggregatedExpressionReducerContext: {
1204
+ name: string;
1205
+ kind: string;
1206
+ desc: string;
1207
+ props: ({
1208
+ name: string;
1209
+ kind: string;
1210
+ desc: string;
1211
+ isOpt?: undefined;
1212
+ ref?: undefined;
1213
+ } | {
1214
+ name: string;
1215
+ kind: string;
1216
+ desc: string;
1217
+ isOpt: boolean;
1218
+ ref?: undefined;
1219
+ } | {
1220
+ name: string;
1221
+ kind: string;
1222
+ desc: string;
1223
+ ref: string;
1224
+ isOpt?: undefined;
1225
+ })[];
1226
+ };
1103
1227
  AggregationColumns: {
1104
1228
  name: string;
1105
1229
  kind: string;
@@ -1369,6 +1493,11 @@ export declare const ADAPTABLE_METAMODEL: {
1369
1493
  kind: string;
1370
1494
  desc: string;
1371
1495
  };
1496
+ AST: {
1497
+ name: string;
1498
+ kind: string;
1499
+ desc: string;
1500
+ };
1372
1501
  AutoGenerateTagsForLayoutsContext: {
1373
1502
  name: string;
1374
1503
  kind: string;
@@ -2017,6 +2146,11 @@ export declare const ADAPTABLE_METAMODEL: {
2017
2146
  ref: string;
2018
2147
  })[];
2019
2148
  };
2149
+ ColumnValuesFilterPredicate: {
2150
+ name: string;
2151
+ kind: string;
2152
+ desc: string;
2153
+ };
2020
2154
  CommentableCellContext: {
2021
2155
  name: string;
2022
2156
  kind: string;
@@ -3590,6 +3724,11 @@ export declare const ADAPTABLE_METAMODEL: {
3590
3724
  kind: string;
3591
3725
  desc: string;
3592
3726
  };
3727
+ GridFilterEditors: {
3728
+ name: string;
3729
+ kind: string;
3730
+ desc: string;
3731
+ };
3593
3732
  GridFilterOptions: {
3594
3733
  name: string;
3595
3734
  kind: string;
@@ -5271,6 +5410,11 @@ export declare const ADAPTABLE_METAMODEL: {
5271
5410
  kind: string;
5272
5411
  desc: string;
5273
5412
  };
5413
+ Token: {
5414
+ name: string;
5415
+ kind: string;
5416
+ desc: string;
5417
+ };
5274
5418
  ToolPanelButtonContext: {
5275
5419
  name: string;
5276
5420
  kind: string;
@@ -5589,6 +5733,11 @@ export declare const ADAPTABLE_METAMODEL: {
5589
5733
  defVal: string;
5590
5734
  })[];
5591
5735
  };
5736
+ VueFrameworkComponent: {
5737
+ name: string;
5738
+ kind: string;
5739
+ desc: string;
5740
+ };
5592
5741
  WeightedAverageAggregation: {
5593
5742
  name: string;
5594
5743
  kind: string;