@adaptabletools/adaptable 22.0.0-canary.6 → 22.0.0-canary.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 (150) hide show
  1. package/index.css +63 -74
  2. package/index.css.map +1 -1
  3. package/package.json +1 -1
  4. package/src/AdaptableInterfaces/IAdaptable.d.ts +6 -6
  5. package/src/AdaptableOptions/ContainerOptions.d.ts +55 -15
  6. package/src/AdaptableState/AdaptableState.d.ts +2 -0
  7. package/src/AdaptableState/AlertState.d.ts +1 -2
  8. package/src/AdaptableState/Common/AdaptableColumnContext.d.ts +9 -0
  9. package/src/AdaptableState/Common/AdaptableObject.d.ts +4 -0
  10. package/src/AdaptableState/Common/AdaptableRowContext.d.ts +11 -0
  11. package/src/AdaptableState/Common/AdaptableRowContext.js +1 -0
  12. package/src/AdaptableState/Common/BaseContext.d.ts +2 -0
  13. package/src/AdaptableState/Common/DataUpdateConfig.d.ts +7 -0
  14. package/src/AdaptableState/Common/NamedObject.d.ts +10 -0
  15. package/src/AdaptableState/Common/NamedObject.js +1 -0
  16. package/src/AdaptableState/Common/RowSummary.d.ts +1 -1
  17. package/src/AdaptableState/Common/Schedule.d.ts +2 -2
  18. package/src/AdaptableState/Common/SuspendableObject.d.ts +10 -0
  19. package/src/AdaptableState/Common/SuspendableObject.js +1 -0
  20. package/src/AdaptableState/Common/TransposeConfig.d.ts +11 -9
  21. package/src/AdaptableState/CustomSortState.d.ts +1 -1
  22. package/src/AdaptableState/FormatColumnState.d.ts +1 -1
  23. package/src/AdaptableState/InitialState.d.ts +9 -0
  24. package/src/AdaptableState/LayoutState.d.ts +2 -3
  25. package/src/AdaptableState/PlusMinusState.d.ts +1 -1
  26. package/src/AdaptableState/ShortcutState.d.ts +1 -1
  27. package/src/AdaptableState/StyledColumnState.d.ts +1 -1
  28. package/src/AdaptableState/UserInterfaceState.d.ts +14 -0
  29. package/src/AdaptableState/UserInterfaceState.js +1 -0
  30. package/src/Api/AlertApi.d.ts +6 -0
  31. package/src/Api/CustomSortApi.d.ts +6 -0
  32. package/src/Api/FlashingCellApi.d.ts +6 -0
  33. package/src/Api/FormatColumnApi.d.ts +10 -4
  34. package/src/Api/GridApi.d.ts +5 -9
  35. package/src/Api/Implementation/AlertApiImpl.d.ts +1 -0
  36. package/src/Api/Implementation/AlertApiImpl.js +5 -6
  37. package/src/Api/Implementation/ChartingApiImpl.js +2 -2
  38. package/src/Api/Implementation/CustomSortApiImpl.d.ts +1 -0
  39. package/src/Api/Implementation/CustomSortApiImpl.js +3 -0
  40. package/src/Api/Implementation/FlashingCellApiImpl.d.ts +1 -0
  41. package/src/Api/Implementation/FlashingCellApiImpl.js +3 -0
  42. package/src/Api/Implementation/FormatColumnApiImpl.d.ts +6 -5
  43. package/src/Api/Implementation/FormatColumnApiImpl.js +6 -5
  44. package/src/Api/Implementation/GridApiImpl.d.ts +2 -6
  45. package/src/Api/Implementation/GridApiImpl.js +9 -9
  46. package/src/Api/Implementation/LayoutApiImpl.d.ts +1 -0
  47. package/src/Api/Implementation/LayoutApiImpl.js +4 -1
  48. package/src/Api/Implementation/NamedQueryApiImpl.js +2 -2
  49. package/src/Api/Implementation/PlusMinusApiImpl.d.ts +1 -0
  50. package/src/Api/Implementation/PlusMinusApiImpl.js +3 -0
  51. package/src/Api/Implementation/ScheduleApiImpl.d.ts +1 -0
  52. package/src/Api/Implementation/ScheduleApiImpl.js +3 -0
  53. package/src/Api/Implementation/ShortcutApiImpl.d.ts +1 -0
  54. package/src/Api/Implementation/ShortcutApiImpl.js +3 -0
  55. package/src/Api/Implementation/SystemStatusApiImpl.js +6 -9
  56. package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +5 -0
  57. package/src/Api/Implementation/UserInterfaceApiImpl.js +13 -0
  58. package/src/Api/Internal/CalculatedColumnInternalApi.js +2 -2
  59. package/src/Api/Internal/FreeTextColumnInternalApi.js +2 -2
  60. package/src/Api/Internal/LayoutInternalApi.js +1 -1
  61. package/src/Api/Internal/NamedQueryInternalApi.js +4 -4
  62. package/src/Api/LayoutApi.d.ts +6 -0
  63. package/src/Api/PlusMinusApi.d.ts +6 -0
  64. package/src/Api/ScheduleApi.d.ts +6 -0
  65. package/src/Api/ShortcutApi.d.ts +6 -0
  66. package/src/Api/UserInterfaceApi.d.ts +17 -0
  67. package/src/Redux/ActionsReducers/FormatColumnRedux.d.ts +8 -0
  68. package/src/Redux/ActionsReducers/FormatColumnRedux.js +15 -0
  69. package/src/Redux/ActionsReducers/UserInterfaceRedux.d.ts +11 -0
  70. package/src/Redux/ActionsReducers/UserInterfaceRedux.js +21 -0
  71. package/src/Redux/Store/AdaptableStore.js +45 -16
  72. package/src/Strategy/BulkUpdateModule.js +8 -8
  73. package/src/Strategy/PlusMinusModule.js +1 -1
  74. package/src/Strategy/QuickSearchModule.js +1 -1
  75. package/src/Strategy/SettingsPanelModule.js +11 -7
  76. package/src/Strategy/SmartEditModule.js +10 -10
  77. package/src/Utilities/Services/DataService.js +1 -1
  78. package/src/Utilities/Services/Fdc3Service.js +4 -4
  79. package/src/Utilities/Services/ModuleService.js +1 -3
  80. package/src/Utilities/Services/ThemeService.js +2 -6
  81. package/src/Utilities/Services/ValidationService.js +1 -1
  82. package/src/Utilities/logDeprecation.js +3 -4
  83. package/src/Utilities/resolveContainerElement.d.ts +23 -0
  84. package/src/Utilities/resolveContainerElement.js +44 -0
  85. package/src/View/Alert/Wizard/isValidAlertRules.js +1 -1
  86. package/src/View/CalculatedColumn/Wizard/CalculatedColumnDefinitionWizardSection.js +2 -2
  87. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +2 -2
  88. package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +1 -1
  89. package/src/View/Charting/ChartingWizard/AgChargingWizard/SettingsSection.js +2 -2
  90. package/src/View/Charting/ChartingWizard/ExternalChartingWizard/SettingsSection.js +2 -2
  91. package/src/View/Components/CellPopup/index.js +1 -1
  92. package/src/View/Components/ColumnFilter/components/ColumnFilterInput.js +1 -1
  93. package/src/View/Components/EntityRulesEditor/Utilities.js +5 -5
  94. package/src/View/Components/NewScopeComponent.js +3 -3
  95. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +2 -1
  96. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupBody.js +1 -1
  97. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.d.ts +1 -1
  98. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +1 -8
  99. package/src/View/Components/Popups/AdaptablePopupConfirmation.js +1 -1
  100. package/src/View/Components/Popups/WindowPopups/WindowPopups.js +36 -1
  101. package/src/View/Components/WizardSummaryPage.js +1 -1
  102. package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +3 -3
  103. package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +1 -1
  104. package/src/View/Dashboard/CustomToolbar.js +1 -1
  105. package/src/View/DataChangeHistory/DataChangeHistoryViewPanel.js +1 -1
  106. package/src/View/FlashingCell/Wizard/isValidFlashingCellRules.js +1 -1
  107. package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.d.ts +1 -1
  108. package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +3 -3
  109. package/src/View/Layout/LayoutViewPanel.js +1 -1
  110. package/src/View/Layout/TransposedPopup.js +144 -138
  111. package/src/View/Layout/Wizard/sections/AggregationsSection.js +1 -1
  112. package/src/View/Layout/Wizard/sections/FilterSection.js +1 -1
  113. package/src/View/Layout/Wizard/sections/GridFilterSection.js +1 -1
  114. package/src/View/Layout/Wizard/sections/PivotAggregationsSection.js +3 -3
  115. package/src/View/Layout/Wizard/sections/RowSummarySection.js +1 -1
  116. package/src/View/NamedQuery/Wizard/NamedQueryExpressionWizardSection.js +2 -2
  117. package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.js +5 -5
  118. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.js +1 -1
  119. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/isSettingsValid.d.ts +1 -1
  120. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/isSettingsValid.js +11 -11
  121. package/src/View/StateManagement/handleExportState.js +1 -1
  122. package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.js +1 -1
  123. package/src/View/UIHelper.d.ts +2 -1
  124. package/src/View/UIHelper.js +8 -14
  125. package/src/agGrid/Adaptable.js +11 -11
  126. package/src/agGrid/AdaptableAgGrid.d.ts +12 -8
  127. package/src/agGrid/AdaptableAgGrid.js +150 -82
  128. package/src/agGrid/AgGridAdapter.js +8 -8
  129. package/src/agGrid/AgGridColumnAdapter.js +1 -1
  130. package/src/agGrid/AgGridExportAdapter.js +5 -5
  131. package/src/agGrid/AgGridFloatingFilterAdapter.js +1 -1
  132. package/src/agGrid/AgGridMenuAdapter.js +9 -1
  133. package/src/agGrid/AgGridThemeAdapter.js +2 -2
  134. package/src/components/CheckBox/index.js +1 -1
  135. package/src/components/Dropdown/Arrows.js +1 -1
  136. package/src/components/ExpressionEditor/DataTableEditor.js +3 -3
  137. package/src/components/FormLayout/index.js +1 -1
  138. package/src/components/OverlayTrigger/index.js +1 -1
  139. package/src/components/Select/Select.js +1 -1
  140. package/src/components/Tree/TreeDropdown/index.js +1 -1
  141. package/src/env.js +2 -2
  142. package/src/metamodel/adaptable.metamodel.d.ts +62 -0
  143. package/src/metamodel/adaptable.metamodel.js +1 -1
  144. package/src/migration/AdaptableUpgradeHelper.js +2 -2
  145. package/src/migration/VersionUpgrade17.js +4 -4
  146. package/src/migration/VersionUpgrade20.js +4 -4
  147. package/src/types.d.ts +5 -2
  148. package/themes/dark.css +30 -29
  149. package/themes/light.css +4 -2
  150. package/tsconfig.esm.tsbuildinfo +1 -1
@@ -656,7 +656,7 @@ export class AgGridColumnAdapter {
656
656
  if (typeof original_filter !== 'boolean' &&
657
657
  typeof original_filter?.handler !== 'function' &&
658
658
  !pivotMode) {
659
- this.adaptableApi.consoleError(`Column '${colId}' has a custom filter defined in colDef.filter, but Adaptable Filtering accepts only the TRUE/FALSE values!`);
659
+ this.adaptableApi.consoleError(`Column "${colId}" has a custom filter in colDef.filter, but Adaptable filtering only accepts boolean (true/false) values for this property.`);
660
660
  return false;
661
661
  }
662
662
  return {
@@ -66,7 +66,7 @@ export class AgGridExportAdapter {
66
66
  try {
67
67
  if (showProgressIndicator) {
68
68
  this.adaptableApi.userInterfaceApi.showProgressIndicator({
69
- text: `${report.Name} Export in progress...`,
69
+ text: `Exporting ${report.Name}...`,
70
70
  });
71
71
  // waitForTimeout required to give the ProgressIndicator rendering a head-start (see rAF in ProgressIndicator implementation)
72
72
  // see #raf_progress_indicator
@@ -120,7 +120,7 @@ export class AgGridExportAdapter {
120
120
  };
121
121
  }
122
122
  catch (error) {
123
- this.logger.consoleError(`Error exporting ${report.Name} in ${format} format to ${config.destination}`, error.stack);
123
+ this.logger.consoleError(`Export failed: report="${report.Name}", format="${format}", destination="${config.destination}".`, error.stack);
124
124
  }
125
125
  finally {
126
126
  /**
@@ -142,7 +142,7 @@ export class AgGridExportAdapter {
142
142
  const exportContext = this.buildExportProcessContext(config);
143
143
  let exportParams = this.buildExportParams(exportContext);
144
144
  if (typeof config?.customExportParams === 'function') {
145
- this.logger.info(`Custom export params for ${config.report.Name} in ${config.format} format`);
145
+ this.logger.info(`Applying custom export params: report="${config.report.Name}", format="${config.format}".`);
146
146
  exportParams = config.customExportParams(exportParams);
147
147
  }
148
148
  exportContext.exportedColumnIds = exportParams.columnKeys;
@@ -508,7 +508,7 @@ export class AgGridExportAdapter {
508
508
  const columnId = column.getId();
509
509
  const adaptableColumn = getAdaptableColumnWithColumnId(columnId);
510
510
  if (!adaptableColumn) {
511
- this.logger.warn(`Export Styling: Column with id ${columnId} not found in Adaptable`);
511
+ this.logger.warn(`Export styling: column "${columnId}" not found in Adaptable.`);
512
512
  return;
513
513
  }
514
514
  let headerClassParams = {
@@ -571,7 +571,7 @@ export class AgGridExportAdapter {
571
571
  const columnId = column.getId();
572
572
  const adaptableColumn = getAdaptableColumnWithColumnId(columnId);
573
573
  if (!adaptableColumn) {
574
- this.logger.warn(`Export Styling: Column with id ${columnId} not found in Adaptable`);
574
+ this.logger.warn(`Export styling: column "${columnId}" not found in Adaptable.`);
575
575
  return;
576
576
  }
577
577
  const isDateCellExportedAsFormattedValue = this.isDateCellExportedAsFormattedValue(adaptableColumn, exportContext);
@@ -54,7 +54,7 @@ export const AgGridFloatingFilterAdapterFactory = (adaptable) => {
54
54
  // Find and update header cell
55
55
  const headerCell = findParentWithClass(filterContainer, 'ag-header-cell', stopClasses);
56
56
  if (headerCell?.classList.contains('ag-floating-filter')) {
57
- headerCell.style.padding = 'var(--ab-space-1)';
57
+ headerCell.style.padding = 'var(--ab-base-space)';
58
58
  }
59
59
  }
60
60
  return class AgGridFloatingFilterAdapter {
@@ -17,12 +17,16 @@ export class AgGridMenuAdapter {
17
17
  this._adaptableInstance = null;
18
18
  }
19
19
  buildColumnMenu(params, originalGetMainMenuItems) {
20
- const columnMenuOptions = this.adaptableOptions.columnMenuOptions;
21
20
  const agGridMenuItems = (params.defaultItems ? [...params.defaultItems] : []);
22
21
  if (!params.column) {
23
22
  // return only AG Grid context if the Adaptable column is not found (should not happen)
24
23
  return agGridMenuItems;
25
24
  }
25
+ // If Adaptable UI is hidden, return only AG Grid default items
26
+ if (!this.adaptableApi.userInterfaceApi.isAdaptableUIVisible()) {
27
+ return agGridMenuItems;
28
+ }
29
+ const columnMenuOptions = this.adaptableOptions.columnMenuOptions;
26
30
  const adaptableColumn = this.adaptableApi.columnApi.getColumnWithColumnId(params.column?.getColId());
27
31
  const menuContext = this.createColumnMenuContextObject(adaptableColumn, params.column);
28
32
  /**
@@ -60,6 +64,10 @@ export class AgGridMenuAdapter {
60
64
  if (!params.column) {
61
65
  return [];
62
66
  }
67
+ // If Adaptable UI is hidden, return only AG Grid default items
68
+ if (!this.adaptableApi.userInterfaceApi.isAdaptableUIVisible()) {
69
+ return (params.defaultItems ? [...params.defaultItems] : []);
70
+ }
63
71
  // we do this in order to refresh the internal state of selected cells (technically query the AG Grid cellRanges)
64
72
  // (right-click selected the current cell, but this was not reflected in the internal state of the selected cells)
65
73
  this._adaptableInstance.refreshSelectedCellsState();
@@ -101,9 +101,9 @@ export class AgGridThemeAdapter {
101
101
  }
102
102
  }
103
103
  else {
104
- this.logger.warn('No AgGrid container found, defaulting to ag-theme-balham for the light theme');
104
+ this.logger.warn('AG Grid container not found. Defaulting to ag-theme-balham for the light theme.');
105
105
  }
106
- this.logger.warn('No ag-theme- class found on the grid container, defaulting to ag-theme-balham');
106
+ this.logger.warn('No ag-theme-* class found on the grid container. Defaulting to ag-theme-balham.');
107
107
  // fallback to the default light theme
108
108
  return 'ag-theme-balham';
109
109
  }
@@ -5,7 +5,7 @@ import clsx from 'clsx';
5
5
  const Square = (props) => {
6
6
  return React.createElement("div", { className: `ab-CheckBox__square ab-CheckBox__square--${props.type}` });
7
7
  };
8
- const CheckBox = ({ children, checked, onChange, value, name, disabled, readOnly, variant = 'default', gapDistance = 'var(--ab-space-1)', childrenPosition = 'end', as = 'label', ...props }) => {
8
+ const CheckBox = ({ children, checked, onChange, value, name, disabled, readOnly, variant = 'default', gapDistance = 'var(--ab-base-space)', childrenPosition = 'end', as = 'label', ...props }) => {
9
9
  const [stateChecked, setStateChecked] = useState(false);
10
10
  const computedChecked = checked !== undefined ? checked : stateChecked;
11
11
  const onInputChange = (event) => {
@@ -8,7 +8,7 @@ const Arrows = () => {
8
8
  // background: 'var(--ab-color-defaultbackground)',
9
9
  fill: 'var(--ab-cmp-dropdown__fill)',
10
10
  top: '50%',
11
- right: 'var(--ab-space-1)',
11
+ right: 'var(--ab-base-space)',
12
12
  transform: 'translate3d(0px, -50%, 0px)',
13
13
  cursor: 'pointer',
14
14
  } },
@@ -35,11 +35,11 @@ export const DataTableEditor = ({ fields, dataFormatter, data: initialData, type
35
35
  hasFriendlyNames && (React.createElement(CheckBox, { checked: showColumnIds, onChange: (checked) => setShowValues(checked), style: {
36
36
  float: 'right',
37
37
  margin: 0,
38
- paddingTop: 'var(--ab-space-1)',
39
- paddingBottom: 'var(--ab-space-1)',
38
+ paddingTop: 'var(--ab-base-space)',
39
+ paddingBottom: 'var(--ab-base-space)',
40
40
  } }, labels?.showIds ?? 'Show Column IDs')),
41
41
  React.createElement(AdaptableFormControlTextClear, { value: searchInputValue, OnTextChange: setSearchInputValue, placeholder: labels?.filterPlaceholder ?? 'Filter columns...', style: { flex: 1, marginBottom: 3 } })),
42
- React.createElement(FormLayout, { className: "ab-ExpressionEditor__columns", gridColumnGap: "var(--ab-space-1)", gridRowGap: "var(--ab-space-1)", sizes: ['auto', '1fr'], style: { alignItems: 'stretch', overflow: 'auto' } }, fields
42
+ React.createElement(FormLayout, { className: "ab-ExpressionEditor__columns", gridColumnGap: "var(--ab-base-space)", gridRowGap: "var(--ab-base-space)", sizes: ['auto', '1fr'], style: { alignItems: 'stretch', overflow: 'auto' } }, fields
43
43
  .filter((field) => {
44
44
  if (!searchInputValue) {
45
45
  return true;
@@ -14,7 +14,7 @@ const defaultColumns = {
14
14
  };
15
15
  const PLACEHOLDER = React.createElement("div", null);
16
16
  const FormLayout = (props) => {
17
- let { placeholder = PLACEHOLDER, columns = ['label', 'children'], defaultComponent = Box, sizes = ['auto', '1fr'], gridColumnGap = 'var(--ab-space-2)', gridRowGap = 'var(--ab-space-2)', style, childrenToColumns = true, ...boxProps } = props;
17
+ let { placeholder = PLACEHOLDER, columns = ['label', 'children'], defaultComponent = Box, sizes = ['auto', '1fr'], gridColumnGap = 'calc(var(--ab-base-space) * 2)', gridRowGap = 'calc(var(--ab-base-space) * 2)', style, childrenToColumns = true, ...boxProps } = props;
18
18
  columns = columns.map((c) => {
19
19
  if (typeof c === 'string' || typeof c === 'number') {
20
20
  c = {
@@ -152,7 +152,7 @@ const OverlayTrigger = React.forwardRef((givenProps, ref) => {
152
152
  target = targetProp(target);
153
153
  }
154
154
  if (!target) {
155
- adaptable.logger.warn('No OverlayTrigger target - make sure you render a child inside the OverlayTrigger, which will be the overlay target');
155
+ adaptable.logger.warn('OverlayTrigger target not found. Ensure a child element is rendered inside the OverlayTrigger component.');
156
156
  return;
157
157
  }
158
158
  targetRef.current = target;
@@ -699,7 +699,7 @@ export const Select = function (props) {
699
699
  valueContainer: (baseStyle) => {
700
700
  return {
701
701
  ...baseStyle,
702
- padding: props.size === 'small' ? `0 var(--ab-space-1)` : baseStyle.padding,
702
+ padding: props.size === 'small' ? `0 var(--ab-base-space)` : baseStyle.padding,
703
703
  ...props.styles?.valueContainer,
704
704
  };
705
705
  },
@@ -221,7 +221,7 @@ export function TreeDropdown(props) {
221
221
  };
222
222
  if (!hasChildren) {
223
223
  // @ts-ignore - don't leave any space for the > expand icon, as there are no children
224
- treeListStyle['--infinite-group-row-column-nesting'] = 'var(--ab-space-2)';
224
+ treeListStyle['--infinite-group-row-column-nesting'] = 'calc(var(--ab-base-space) * 2)';
225
225
  }
226
226
  const treeList = (React.createElement(TreeList, { primaryKey: props.primaryKey ?? 'id', treeFilterFunction: filterFunction, columnHeaderHeight: 30, onReady: ({ api }) => {
227
227
  setTreeListApi(api);
package/src/env.js CHANGED
@@ -1,5 +1,5 @@
1
1
  export default {
2
2
  NEXT_PUBLIC_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: 1770400478241 || Date.now(),
4
- VERSION: "22.0.0-canary.6" || '--current-version--',
3
+ PUBLISH_TIMESTAMP: 1770905030327 || Date.now(),
4
+ VERSION: "22.0.0-canary.8" || '--current-version--',
5
5
  };
@@ -314,6 +314,16 @@ export declare const ADAPTABLE_METAMODEL: {
314
314
  isOpt: boolean;
315
315
  }[];
316
316
  };
317
+ AdaptableColumnsContext: {
318
+ name: string;
319
+ kind: string;
320
+ desc: string;
321
+ props: {
322
+ name: string;
323
+ kind: string;
324
+ desc: string;
325
+ }[];
326
+ };
317
327
  AdaptableColumnSummary: {
318
328
  name: string;
319
329
  kind: string;
@@ -364,6 +374,11 @@ export declare const ADAPTABLE_METAMODEL: {
364
374
  ref: string;
365
375
  }[];
366
376
  };
377
+ AdaptableContainerValue: {
378
+ name: string;
379
+ kind: string;
380
+ desc: string;
381
+ };
367
382
  AdaptableContextMenuItem: {
368
383
  name: string;
369
384
  kind: string;
@@ -384,6 +399,16 @@ export declare const ADAPTABLE_METAMODEL: {
384
399
  desc: string;
385
400
  }[];
386
401
  };
402
+ AdaptableCSSSelector: {
403
+ name: string;
404
+ kind: string;
405
+ desc: string;
406
+ props: {
407
+ name: string;
408
+ kind: string;
409
+ desc: string;
410
+ }[];
411
+ };
387
412
  AdaptableCustomIcon: {
388
413
  name: string;
389
414
  kind: string;
@@ -889,6 +914,16 @@ export declare const ADAPTABLE_METAMODEL: {
889
914
  desc: string;
890
915
  }[];
891
916
  };
917
+ AdaptableRowContext: {
918
+ name: string;
919
+ kind: string;
920
+ desc: string;
921
+ props: {
922
+ name: string;
923
+ kind: string;
924
+ desc: string;
925
+ }[];
926
+ };
892
927
  AdaptableSaveStateFunction: {
893
928
  name: string;
894
929
  kind: string;
@@ -2244,6 +2279,11 @@ export declare const ADAPTABLE_METAMODEL: {
2244
2279
  ref: string;
2245
2280
  })[];
2246
2281
  };
2282
+ ContainerContext: {
2283
+ name: string;
2284
+ kind: string;
2285
+ desc: string;
2286
+ };
2247
2287
  ContainerOptions: {
2248
2288
  name: string;
2249
2289
  kind: string;
@@ -4148,6 +4188,16 @@ export declare const ADAPTABLE_METAMODEL: {
4148
4188
  isOpt?: undefined;
4149
4189
  })[];
4150
4190
  };
4191
+ InitContainerContext: {
4192
+ name: string;
4193
+ kind: string;
4194
+ desc: string;
4195
+ props: {
4196
+ name: string;
4197
+ kind: string;
4198
+ desc: string;
4199
+ }[];
4200
+ };
4151
4201
  InitialState: {
4152
4202
  name: string;
4153
4203
  kind: string;
@@ -6310,6 +6360,18 @@ export declare const ADAPTABLE_METAMODEL: {
6310
6360
  noCode?: undefined;
6311
6361
  })[];
6312
6362
  };
6363
+ UserInterfaceState: {
6364
+ name: string;
6365
+ kind: string;
6366
+ desc: string;
6367
+ props: {
6368
+ name: string;
6369
+ kind: string;
6370
+ desc: string;
6371
+ isOpt: boolean;
6372
+ defVal: string;
6373
+ }[];
6374
+ };
6313
6375
  UserMenuItem: {
6314
6376
  name: string;
6315
6377
  kind: string;