@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
@@ -61,6 +61,8 @@ const OverlayTrigger = React.forwardRef((givenProps, ref) => {
61
61
  // overlay - target
62
62
  ['TopLeft', 'BottomLeft'],
63
63
  ['TopRight', 'BottomRight'],
64
+ ['TopCenter', 'BottomCenter'],
65
+ ['BottomCenter', 'TopCenter'],
64
66
  ['TopRight', 'BottomCenter'],
65
67
  ['TopRight', 'BottomLeft'],
66
68
  ['TopRight', 'BottomLeft'],
@@ -68,6 +70,11 @@ const OverlayTrigger = React.forwardRef((givenProps, ref) => {
68
70
  ['BottomRight', 'TopRight'],
69
71
  ['BottomRight', 'TopCenter'],
70
72
  ['BottomRight', 'TopLeft'],
73
+ ['TopRight', 'CenterLeft'],
74
+ ['TopRight', 'TopLeft'],
75
+ ['TopLeft', 'TopRight'],
76
+ ['CenterRight', 'CenterLeft'],
77
+ ['CenterLeft', 'CenterRight'],
71
78
  ], constrainTo, target: targetProp } = props, domProps = __rest(props, ["visible", "showTriangle", "showEvent", "hideEvent", "render", "targetOffset", "preventPortalEventPropagation", "defaultZIndex", "anchor", "hideDelay", "opacityTransitionDuration", "onVisibleChange", "alignPosition", "constrainTo", "target"]);
72
79
  const { showOverlay, clearAll: clearAllOverlays, hideOverlay, portal, } = useOverlay({
73
80
  portalContainer: portalElement,
@@ -179,19 +186,16 @@ const OverlayTrigger = React.forwardRef((givenProps, ref) => {
179
186
  hideOverlay('overlay-trigger');
180
187
  }
181
188
  } }), props.render({ targetWidth: targetWidth })));
182
- let preparedConstrinTo;
189
+ let preparedConstrainTo;
183
190
  if (constrainTo) {
184
- preparedConstrinTo = getConstrainElement(targetRef.current, constrainTo);
185
- }
186
- else {
187
- preparedConstrinTo = adaptable === null || adaptable === void 0 ? void 0 : adaptable.getAgGridContainerElement();
191
+ preparedConstrainTo = getConstrainElement(targetRef.current, constrainTo);
188
192
  }
189
193
  // show only if visible or if it was visible and now it is invisible
190
194
  const alignToRect = getRect(target, targetOffset !== null && targetOffset !== void 0 ? targetOffset : 0);
191
195
  const showOverlayOptions = {
192
196
  id: 'overlay-trigger',
193
197
  alignPosition,
194
- constrainTo: (_b = (_a = preparedConstrinTo === null || preparedConstrinTo === void 0 ? void 0 : preparedConstrinTo.getBoundingClientRect) === null || _a === void 0 ? void 0 : _a.call(preparedConstrinTo)) !== null && _b !== void 0 ? _b : true,
198
+ constrainTo: (_b = (_a = preparedConstrainTo === null || preparedConstrainTo === void 0 ? void 0 : preparedConstrainTo.getBoundingClientRect) === null || _a === void 0 ? void 0 : _a.call(preparedConstrainTo)) !== null && _b !== void 0 ? _b : true,
195
199
  alignTo: alignToRect,
196
200
  };
197
201
  showOverlay(() => overlayContent, showOverlayOptions);
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const _default: (props: any) => JSX.Element;
3
+ export default _default;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import DefaultIcon from './DefaultIcon';
3
+ export default (props) => (React.createElement(DefaultIcon, Object.assign({}, props, { viewBox: "0 -960 960 960" }),
4
+ React.createElement("path", { d: "M121-280v-400q0-33 23.5-56.5T201-760h559q33 0 56.5 23.5T840-680v400q0 33-23.5 56.5T760-200H201q-33 0-56.5-23.5T121-280Zm79 0h133v-400H200v400Zm213 0h133v-400H413v400Zm213 0h133v-400H626v400Z" })));
@@ -52,6 +52,7 @@ import ColumnChooser from './column-chooser';
52
52
  import ColumnAdd from './column-add';
53
53
  import CellValidation from './cell-validation';
54
54
  import ColumnFilter from './column-filter';
55
+ import ColumnOutline from './column-outline';
55
56
  import SystemStatus from './system-status';
56
57
  import DataSet from './data-set';
57
58
  import DataObject from './data-object';
@@ -167,6 +168,7 @@ import SelectFwd from './select-fwd';
167
168
  import Copy from './copy';
168
169
  import ExpandAll from './expand-all';
169
170
  import CollapseAll from './collapse-all';
171
+ import Sync from './sync';
170
172
  import { IconComponent } from '../Icon';
171
173
  import { AdaptableLogger } from '../../agGrid/AdaptableLogger';
172
174
  export const allIcons = {
@@ -188,7 +190,7 @@ export const allIcons = {
188
190
  news: News,
189
191
  brush: Brush,
190
192
  'data-set': DataSet,
191
- 'excel': Excel,
193
+ excel: Excel,
192
194
  json: DataObject,
193
195
  export: Export,
194
196
  broadcast: Campaign,
@@ -197,6 +199,7 @@ export const allIcons = {
197
199
  calendar: Calendar,
198
200
  chat: Chat,
199
201
  'filter-list': ColumnFilter,
202
+ 'column-outline': ColumnOutline,
200
203
  'grid-filter': GridFilter,
201
204
  'grid-info': GridInfo,
202
205
  filter: Filter,
@@ -337,6 +340,7 @@ export const allIcons = {
337
340
  rows: Rows,
338
341
  'expand-all': ExpandAll,
339
342
  'collapse-all': CollapseAll,
343
+ sync: Sync,
340
344
  };
341
345
  Object.keys(allIcons).forEach((name) => {
342
346
  const ReactCmp = allIcons[name];
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const _default: (props: any) => JSX.Element;
3
+ export default _default;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import DefaultIcon from './DefaultIcon';
3
+ export default (props) => (React.createElement(DefaultIcon, Object.assign({}, props, { viewBox: "0 -960 960 960" }),
4
+ React.createElement("path", { d: "M280-120 80-320l200-200 57 56-104 104h607v80H233l104 104-57 56Zm400-320-57-56 104-104H120v-80h607L623-784l57-56 200 200-200 200Z" })));
package/src/env.js CHANGED
@@ -1,5 +1,5 @@
1
1
  export default {
2
2
  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" || '',
3
- PUBLISH_TIMESTAMP: 1717077872080 || Date.now(),
4
- VERSION: "18.0.17" || '--current-version--',
3
+ PUBLISH_TIMESTAMP: 1717151599246 || Date.now(),
4
+ VERSION: "18.1.0-canary.1" || '--current-version--',
5
5
  };
@@ -463,6 +463,30 @@ export declare const ADAPTABLE_METAMODEL: {
463
463
  desc: string;
464
464
  }[];
465
465
  };
466
+ AdaptableField: {
467
+ name: string;
468
+ kind: string;
469
+ desc: string;
470
+ props: ({
471
+ name: string;
472
+ kind: string;
473
+ desc: string;
474
+ ref: string;
475
+ isOpt?: undefined;
476
+ } | {
477
+ name: string;
478
+ kind: string;
479
+ desc: string;
480
+ isOpt: boolean;
481
+ ref?: undefined;
482
+ } | {
483
+ name: string;
484
+ kind: string;
485
+ desc: string;
486
+ ref?: undefined;
487
+ isOpt?: undefined;
488
+ })[];
489
+ };
466
490
  AdaptableFlashingCell: {
467
491
  name: string;
468
492
  kind: string;
@@ -622,6 +646,17 @@ export declare const ADAPTABLE_METAMODEL: {
622
646
  kind: string;
623
647
  desc: string;
624
648
  };
649
+ AdaptableNumberCellEditorParams: {
650
+ name: string;
651
+ kind: string;
652
+ desc: string;
653
+ props: {
654
+ name: string;
655
+ kind: string;
656
+ desc: string;
657
+ defVal: string;
658
+ }[];
659
+ };
625
660
  AdaptableObject: {
626
661
  name: string;
627
662
  kind: string;
@@ -787,6 +822,11 @@ export declare const ADAPTABLE_METAMODEL: {
787
822
  ref?: undefined;
788
823
  })[];
789
824
  };
825
+ AdaptablePercentageCellEditorParams: {
826
+ name: string;
827
+ kind: string;
828
+ desc: string;
829
+ };
790
830
  AdaptablePersistentState: {
791
831
  name: string;
792
832
  kind: string;
@@ -1684,16 +1724,6 @@ export declare const ADAPTABLE_METAMODEL: {
1684
1724
  defVal?: undefined;
1685
1725
  })[];
1686
1726
  };
1687
- ChartContext: {
1688
- name: string;
1689
- kind: string;
1690
- desc: string;
1691
- };
1692
- ChartContextType: {
1693
- name: string;
1694
- kind: string;
1695
- desc: string;
1696
- };
1697
1727
  ChartDefinition: {
1698
1728
  name: string;
1699
1729
  kind: string;
@@ -1764,16 +1794,6 @@ export declare const ADAPTABLE_METAMODEL: {
1764
1794
  isOpt: boolean;
1765
1795
  }[];
1766
1796
  };
1767
- ChatInitSettingsContext: {
1768
- name: string;
1769
- kind: string;
1770
- desc: string;
1771
- };
1772
- ChatInitSettingsContextType: {
1773
- name: string;
1774
- kind: string;
1775
- desc: string;
1776
- };
1777
1797
  ColumnComparison: {
1778
1798
  name: string;
1779
1799
  kind: string;
@@ -1871,6 +1891,15 @@ export declare const ADAPTABLE_METAMODEL: {
1871
1891
  gridInfo?: undefined;
1872
1892
  noCode?: undefined;
1873
1893
  defVal?: undefined;
1894
+ } | {
1895
+ name: string;
1896
+ kind: string;
1897
+ desc: string;
1898
+ isOpt: boolean;
1899
+ gridInfo?: undefined;
1900
+ noCode?: undefined;
1901
+ defVal?: undefined;
1902
+ ref?: undefined;
1874
1903
  } | {
1875
1904
  name: string;
1876
1905
  kind: string;
@@ -2051,11 +2080,6 @@ export declare const ADAPTABLE_METAMODEL: {
2051
2080
  ref: string;
2052
2081
  })[];
2053
2082
  };
2054
- CompatibleContext: {
2055
- name: string;
2056
- kind: string;
2057
- desc: string;
2058
- };
2059
2083
  ConfigState: {
2060
2084
  name: string;
2061
2085
  kind: string;
@@ -2067,26 +2091,6 @@ export declare const ADAPTABLE_METAMODEL: {
2067
2091
  isOpt: boolean;
2068
2092
  }[];
2069
2093
  };
2070
- ContactContext: {
2071
- name: string;
2072
- kind: string;
2073
- desc: string;
2074
- };
2075
- ContactContextType: {
2076
- name: string;
2077
- kind: string;
2078
- desc: string;
2079
- };
2080
- ContactListContext: {
2081
- name: string;
2082
- kind: string;
2083
- desc: string;
2084
- };
2085
- ContactListContextType: {
2086
- name: string;
2087
- kind: string;
2088
- desc: string;
2089
- };
2090
2094
  ContainerOptions: {
2091
2095
  name: string;
2092
2096
  kind: string;
@@ -2127,16 +2131,6 @@ export declare const ADAPTABLE_METAMODEL: {
2127
2131
  isOpt: boolean;
2128
2132
  }[];
2129
2133
  };
2130
- CountryContext: {
2131
- name: string;
2132
- kind: string;
2133
- desc: string;
2134
- };
2135
- CountryContextType: {
2136
- name: string;
2137
- kind: string;
2138
- desc: string;
2139
- };
2140
2134
  CreateActionRowFormContext: {
2141
2135
  name: string;
2142
2136
  kind: string;
@@ -2153,16 +2147,6 @@ export declare const ADAPTABLE_METAMODEL: {
2153
2147
  isOpt?: undefined;
2154
2148
  })[];
2155
2149
  };
2156
- CurrencyContext: {
2157
- name: string;
2158
- kind: string;
2159
- desc: string;
2160
- };
2161
- CurrencyContextType: {
2162
- name: string;
2163
- kind: string;
2164
- desc: string;
2165
- };
2166
2150
  CustomColumnMenuContext: {
2167
2151
  name: string;
2168
2152
  kind: string;
@@ -2635,11 +2619,27 @@ export declare const ADAPTABLE_METAMODEL: {
2635
2619
  noCode?: undefined;
2636
2620
  })[];
2637
2621
  };
2622
+ DataFormatDataType: {
2623
+ name: string;
2624
+ kind: string;
2625
+ desc: string;
2626
+ };
2638
2627
  DataFormatType: {
2639
2628
  name: string;
2640
2629
  kind: string;
2641
2630
  desc: string;
2642
2631
  };
2632
+ DataFormatTypeContext: {
2633
+ name: string;
2634
+ kind: string;
2635
+ desc: string;
2636
+ props: {
2637
+ name: string;
2638
+ kind: string;
2639
+ desc: string;
2640
+ ref: string;
2641
+ }[];
2642
+ };
2643
2643
  DataImportFileHandler: {
2644
2644
  name: string;
2645
2645
  kind: string;
@@ -2832,16 +2832,6 @@ export declare const ADAPTABLE_METAMODEL: {
2832
2832
  defVal?: undefined;
2833
2833
  })[];
2834
2834
  };
2835
- EmailContext: {
2836
- name: string;
2837
- kind: string;
2838
- desc: string;
2839
- };
2840
- EmailContextType: {
2841
- name: string;
2842
- kind: string;
2843
- desc: string;
2844
- };
2845
2835
  Entitlement: {
2846
2836
  name: string;
2847
2837
  kind: string;
@@ -3069,17 +3059,17 @@ export declare const ADAPTABLE_METAMODEL: {
3069
3059
  kind: string;
3070
3060
  desc: string;
3071
3061
  isOpt: boolean;
3072
- gridInfo: string;
3073
- defVal: string;
3062
+ gridInfo?: undefined;
3074
3063
  noCode?: undefined;
3064
+ defVal?: undefined;
3075
3065
  } | {
3076
3066
  name: string;
3077
3067
  kind: string;
3078
3068
  desc: string;
3079
3069
  isOpt: boolean;
3080
- gridInfo?: undefined;
3070
+ gridInfo: string;
3071
+ defVal: string;
3081
3072
  noCode?: undefined;
3082
- defVal?: undefined;
3083
3073
  } | {
3084
3074
  name: string;
3085
3075
  kind: string;
@@ -3201,11 +3191,6 @@ export declare const ADAPTABLE_METAMODEL: {
3201
3191
  isOpt?: undefined;
3202
3192
  })[];
3203
3193
  };
3204
- Fdc3Context: {
3205
- name: string;
3206
- kind: string;
3207
- desc: string;
3208
- };
3209
3194
  Fdc3ContextOptions: {
3210
3195
  name: string;
3211
3196
  kind: string;
@@ -3224,26 +3209,6 @@ export declare const ADAPTABLE_METAMODEL: {
3224
3209
  ref?: undefined;
3225
3210
  })[];
3226
3211
  };
3227
- Fdc3ContextType: {
3228
- name: string;
3229
- kind: string;
3230
- desc: string;
3231
- };
3232
- Fdc3CustomContext: {
3233
- name: string;
3234
- kind: string;
3235
- desc: string;
3236
- };
3237
- Fdc3CustomContextType: {
3238
- name: string;
3239
- kind: string;
3240
- desc: string;
3241
- };
3242
- Fdc3CustomIntentType: {
3243
- name: string;
3244
- kind: string;
3245
- desc: string;
3246
- };
3247
3212
  Fdc3IntentOptions: {
3248
3213
  name: string;
3249
3214
  kind: string;
@@ -3262,11 +3227,6 @@ export declare const ADAPTABLE_METAMODEL: {
3262
3227
  ref: string;
3263
3228
  })[];
3264
3229
  };
3265
- Fdc3IntentType: {
3266
- name: string;
3267
- kind: string;
3268
- desc: string;
3269
- };
3270
3230
  Fdc3Options: {
3271
3231
  name: string;
3272
3232
  kind: string;
@@ -3294,16 +3254,6 @@ export declare const ADAPTABLE_METAMODEL: {
3294
3254
  defVal?: undefined;
3295
3255
  })[];
3296
3256
  };
3297
- Fdc3StandardContextType: {
3298
- name: string;
3299
- kind: string;
3300
- desc: string;
3301
- };
3302
- Fdc3StandardIntentType: {
3303
- name: string;
3304
- kind: string;
3305
- desc: string;
3306
- };
3307
3257
  FilterActionOnDataChange: {
3308
3258
  name: string;
3309
3259
  kind: string;
@@ -3766,26 +3716,6 @@ export declare const ADAPTABLE_METAMODEL: {
3766
3716
  kind: string;
3767
3717
  desc: string;
3768
3718
  };
3769
- InstrumentContext: {
3770
- name: string;
3771
- kind: string;
3772
- desc: string;
3773
- };
3774
- InstrumentContextType: {
3775
- name: string;
3776
- kind: string;
3777
- desc: string;
3778
- };
3779
- InstrumentListContext: {
3780
- name: string;
3781
- kind: string;
3782
- desc: string;
3783
- };
3784
- InstrumentListContextType: {
3785
- name: string;
3786
- kind: string;
3787
- desc: string;
3788
- };
3789
3719
  InteropioPluginOptions: {
3790
3720
  name: string;
3791
3721
  kind: string;
@@ -3857,6 +3787,11 @@ export declare const ADAPTABLE_METAMODEL: {
3857
3787
  kind: string;
3858
3788
  desc: string;
3859
3789
  };
3790
+ IsRowFilterableContext: {
3791
+ name: string;
3792
+ kind: string;
3793
+ desc: string;
3794
+ };
3860
3795
  Layout: {
3861
3796
  name: string;
3862
3797
  kind: string;
@@ -4088,16 +4023,6 @@ export declare const ADAPTABLE_METAMODEL: {
4088
4023
  ref: string;
4089
4024
  }[];
4090
4025
  };
4091
- NothingContext: {
4092
- name: string;
4093
- kind: string;
4094
- desc: string;
4095
- };
4096
- NothingContextType: {
4097
- name: string;
4098
- kind: string;
4099
- desc: string;
4100
- };
4101
4026
  NotificationsOptions: {
4102
4027
  name: string;
4103
4028
  kind: string;
@@ -4220,16 +4145,6 @@ export declare const ADAPTABLE_METAMODEL: {
4220
4145
  kind: string;
4221
4146
  desc: string;
4222
4147
  };
4223
- OrganizationContext: {
4224
- name: string;
4225
- kind: string;
4226
- desc: string;
4227
- };
4228
- OrganizationContextType: {
4229
- name: string;
4230
- kind: string;
4231
- desc: string;
4232
- };
4233
4148
  PercentBarStyle: {
4234
4149
  name: string;
4235
4150
  kind: string;
@@ -4322,26 +4237,6 @@ export declare const ADAPTABLE_METAMODEL: {
4322
4237
  isOpt: boolean;
4323
4238
  }[];
4324
4239
  };
4325
- PortfolioContext: {
4326
- name: string;
4327
- kind: string;
4328
- desc: string;
4329
- };
4330
- PortfolioContextType: {
4331
- name: string;
4332
- kind: string;
4333
- desc: string;
4334
- };
4335
- PositionContext: {
4336
- name: string;
4337
- kind: string;
4338
- desc: string;
4339
- };
4340
- PositionContextType: {
4341
- name: string;
4342
- kind: string;
4343
- desc: string;
4344
- };
4345
4240
  PredefinedConfig: {
4346
4241
  name: string;
4347
4242
  kind: string;
@@ -4590,8 +4485,8 @@ export declare const ADAPTABLE_METAMODEL: {
4590
4485
  name: string;
4591
4486
  kind: string;
4592
4487
  desc: string;
4488
+ ref: string;
4593
4489
  isOpt?: undefined;
4594
- ref?: undefined;
4595
4490
  })[];
4596
4491
  };
4597
4492
  RaiseIntentConfiguration: {
@@ -5326,16 +5221,6 @@ export declare const ADAPTABLE_METAMODEL: {
5326
5221
  isOpt: boolean;
5327
5222
  }[];
5328
5223
  };
5329
- TimeRangeContext: {
5330
- name: string;
5331
- kind: string;
5332
- desc: string;
5333
- };
5334
- TimeRangeContextType: {
5335
- name: string;
5336
- kind: string;
5337
- desc: string;
5338
- };
5339
5224
  TOAST_POSITIONS: {
5340
5225
  name: string;
5341
5226
  kind: string;
@@ -5583,16 +5468,6 @@ export declare const ADAPTABLE_METAMODEL: {
5583
5468
  isOpt?: undefined;
5584
5469
  })[];
5585
5470
  };
5586
- ValuationContext: {
5587
- name: string;
5588
- kind: string;
5589
- desc: string;
5590
- };
5591
- ValuationContextType: {
5592
- name: string;
5593
- kind: string;
5594
- desc: string;
5595
- };
5596
5471
  ValuesFilterOptions: {
5597
5472
  name: string;
5598
5473
  kind: string;
@@ -5605,6 +5480,7 @@ export declare const ADAPTABLE_METAMODEL: {
5605
5480
  noCode: string;
5606
5481
  defVal: string;
5607
5482
  gridInfo?: undefined;
5483
+ ref?: undefined;
5608
5484
  } | {
5609
5485
  name: string;
5610
5486
  kind: string;
@@ -5613,6 +5489,7 @@ export declare const ADAPTABLE_METAMODEL: {
5613
5489
  gridInfo: string;
5614
5490
  noCode: string;
5615
5491
  defVal: string;
5492
+ ref?: undefined;
5616
5493
  } | {
5617
5494
  name: string;
5618
5495
  kind: string;
@@ -5621,6 +5498,50 @@ export declare const ADAPTABLE_METAMODEL: {
5621
5498
  gridInfo: string;
5622
5499
  defVal: string;
5623
5500
  noCode?: undefined;
5501
+ ref?: undefined;
5502
+ } | {
5503
+ name: string;
5504
+ kind: string;
5505
+ desc: string;
5506
+ isOpt: boolean;
5507
+ ref: string;
5508
+ noCode?: undefined;
5509
+ defVal?: undefined;
5510
+ gridInfo?: undefined;
5511
+ })[];
5512
+ };
5513
+ ValuesFilterPredicateContext: {
5514
+ name: string;
5515
+ kind: string;
5516
+ desc: string;
5517
+ props: ({
5518
+ name: string;
5519
+ kind: string;
5520
+ desc: string;
5521
+ ref?: undefined;
5522
+ } | {
5523
+ name: string;
5524
+ kind: string;
5525
+ desc: string;
5526
+ ref: string;
5527
+ })[];
5528
+ };
5529
+ ValuesFilterPredicateOptions: {
5530
+ name: string;
5531
+ kind: string;
5532
+ desc: string;
5533
+ props: ({
5534
+ name: string;
5535
+ kind: string;
5536
+ desc: string;
5537
+ isOpt?: undefined;
5538
+ defVal?: undefined;
5539
+ } | {
5540
+ name: string;
5541
+ kind: string;
5542
+ desc: string;
5543
+ isOpt: boolean;
5544
+ defVal: string;
5624
5545
  })[];
5625
5546
  };
5626
5547
  WeightedAverageAggregation: {