@adaptabletools/adaptable-cjs 22.0.0-canary.2 → 22.0.0-canary.4

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 (131) hide show
  1. package/index.css +64 -26
  2. package/index.css.map +1 -1
  3. package/package.json +1 -1
  4. package/src/AdaptableInterfaces/IAdaptable.d.ts +2 -2
  5. package/src/AdaptableOptions/ActionColumnOptions.d.ts +2 -2
  6. package/src/AdaptableOptions/CustomSortOptions.d.ts +5 -0
  7. package/src/AdaptableOptions/DashboardOptions.d.ts +1 -2
  8. package/src/AdaptableOptions/ToolPanelOptions.d.ts +1 -2
  9. package/src/AdaptableState/AlertState.d.ts +2 -2
  10. package/src/AdaptableState/ChartingState.d.ts +3 -3
  11. package/src/AdaptableState/Common/AdaptableAlert.d.ts +2 -2
  12. package/src/AdaptableState/Common/AdaptableButton.d.ts +2 -2
  13. package/src/AdaptableState/Common/AdaptableFlashingCell.d.ts +2 -2
  14. package/src/AdaptableState/Common/AdaptableObject.d.ts +25 -2
  15. package/src/AdaptableState/Common/AdaptableStyle.d.ts +8 -0
  16. package/src/AdaptableState/Common/RowSummary.d.ts +1 -1
  17. package/src/AdaptableState/Common/Schedule.d.ts +3 -4
  18. package/src/AdaptableState/Common/SystemStatusMessageInfo.d.ts +2 -2
  19. package/src/AdaptableState/CustomSortState.d.ts +2 -2
  20. package/src/AdaptableState/DashboardState.d.ts +2 -2
  21. package/src/AdaptableState/ExportState.d.ts +2 -2
  22. package/src/AdaptableState/FlashingCellState.d.ts +2 -2
  23. package/src/AdaptableState/FormatColumnState.d.ts +2 -10
  24. package/src/AdaptableState/LayoutState.d.ts +8 -3
  25. package/src/AdaptableState/NamedQueryState.d.ts +2 -2
  26. package/src/AdaptableState/PlusMinusState.d.ts +2 -2
  27. package/src/AdaptableState/ShortcutState.d.ts +2 -2
  28. package/src/AdaptableState/StyledColumnState.d.ts +1 -1
  29. package/src/AdaptableState/ThemeState.d.ts +2 -2
  30. package/src/Api/CustomSortApi.d.ts +6 -3
  31. package/src/Api/DataSetApi.d.ts +1 -1
  32. package/src/Api/GridApi.d.ts +3 -3
  33. package/src/Api/Implementation/CustomSortApiImpl.d.ts +5 -1
  34. package/src/Api/Implementation/CustomSortApiImpl.js +2 -2
  35. package/src/Api/Implementation/GridApiImpl.d.ts +9 -9
  36. package/src/Api/Implementation/GridApiImpl.js +16 -16
  37. package/src/Api/Implementation/LayoutHelpers.js +7 -0
  38. package/src/Api/Implementation/ScheduleApiImpl.js +1 -0
  39. package/src/Api/Internal/ColumnInternalApi.js +1 -1
  40. package/src/Api/Internal/FormatColumnInternalApi.d.ts +0 -10
  41. package/src/Api/Internal/FormatColumnInternalApi.js +1 -19
  42. package/src/Redux/ActionsReducers/LayoutRedux.d.ts +1 -1
  43. package/src/Redux/ActionsReducers/NoteRedux.js +1 -1
  44. package/src/Strategy/AlertModule.js +4 -0
  45. package/src/Strategy/CustomSortModule.js +4 -0
  46. package/src/Strategy/FlashingCellModule.js +5 -0
  47. package/src/Strategy/FormatColumnModule.js +4 -0
  48. package/src/Strategy/LayoutModule.js +4 -4
  49. package/src/Strategy/PlusMinusModule.js +4 -0
  50. package/src/Strategy/ScheduleModule.js +4 -0
  51. package/src/Strategy/ShortcutModule.js +4 -0
  52. package/src/Strategy/Utilities/FormatColumn/getFormatColumnSettingsViewItems.js +0 -3
  53. package/src/Utilities/Constants/DocumentationLinkConstants.d.ts +2 -2
  54. package/src/Utilities/Constants/DocumentationLinkConstants.js +2 -2
  55. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +3 -3
  56. package/src/Utilities/Extensions/StringExtensions.d.ts +2 -0
  57. package/src/Utilities/Extensions/StringExtensions.js +17 -0
  58. package/src/Utilities/Helpers/FormatHelper.js +9 -2
  59. package/src/Utilities/Helpers/StyleHelper.js +14 -0
  60. package/src/Utilities/ObjectFactory.js +16 -3
  61. package/src/Utilities/Services/AnnotationsService.js +1 -1
  62. package/src/Utilities/Services/ModuleService.js +3 -3
  63. package/src/View/AdaptablePopover/index.d.ts +1 -0
  64. package/src/View/AdaptablePopover/index.js +1 -1
  65. package/src/View/Alert/ActiveAlertsPanel.js +8 -0
  66. package/src/View/Alert/AlertViewPanel.js +13 -9
  67. package/src/View/Alert/Utilities/getAlertButtonStyle.d.ts +1 -0
  68. package/src/View/Alert/Utilities/getAlertButtonStyle.js +8 -0
  69. package/src/View/Alert/Utilities/getDefaultAlertDefinition.d.ts +2 -1
  70. package/src/View/Alert/Wizard/AlertTypeWizardSection.d.ts +5 -2
  71. package/src/View/Alert/Wizard/AlertTypeWizardSection.js +48 -12
  72. package/src/View/Alert/Wizard/AlertWizard.js +12 -8
  73. package/src/View/BulkUpdate/BulkUpdateViewPanel.js +23 -11
  74. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +2 -2
  75. package/src/View/CellSummary/CellSummaryViewPanel.js +15 -17
  76. package/src/View/Components/AdaptableDateInput/index.js +1 -1
  77. package/src/View/Components/Buttons/ButtonApply.js +1 -1
  78. package/src/View/Components/Buttons/ButtonClear.d.ts +1 -0
  79. package/src/View/Components/Buttons/EntityListActionButtons.d.ts +1 -2
  80. package/src/View/Components/Buttons/SuspendToggleButton/SuspendToggleButton.d.ts +1 -2
  81. package/src/View/Components/Selectors/BulkUpdateValueSelector.js +18 -17
  82. package/src/View/Components/StyleComponent.js +20 -1
  83. package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.d.ts +2 -1
  84. package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +39 -13
  85. package/src/View/CustomSort/Wizard/CustomSortWizard.js +4 -4
  86. package/src/View/Dashboard/DashboardPopup.js +4 -5
  87. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +1 -0
  88. package/src/View/Export/ExportDestinationPicker.js +1 -1
  89. package/src/View/Export/ExportStatusBar.js +4 -2
  90. package/src/View/Export/ExportViewPanel.js +25 -18
  91. package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.d.ts +2 -1
  92. package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +36 -15
  93. package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +13 -9
  94. package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +46 -51
  95. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +2 -2
  96. package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +22 -11
  97. package/src/View/GridInfo/GridInfoPopup/GridInfoPopup.js +57 -65
  98. package/src/View/Layout/Wizard/sections/PivotColumnsSection.js +8 -0
  99. package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.js +32 -9
  100. package/src/View/PlusMinus/Wizard/PlusMinusWizard.js +20 -15
  101. package/src/View/QuickSearch/QuickSearchPopup.js +4 -1
  102. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsIPushPull.js +12 -1
  103. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsOpenFin.js +12 -1
  104. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.js +14 -4
  105. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReport.js +12 -1
  106. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/isSettingsValid.d.ts +2 -1
  107. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/isSettingsValid.js +10 -1
  108. package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.d.ts +2 -1
  109. package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +25 -4
  110. package/src/View/Shortcut/Wizard/ShortcutWizard.js +18 -14
  111. package/src/View/UIHelper.d.ts +2 -0
  112. package/src/View/UIHelper.js +16 -0
  113. package/src/agGrid/AdaptableAgGrid.d.ts +2 -2
  114. package/src/agGrid/AdaptableAgGrid.js +5 -5
  115. package/src/agGrid/AgGridColumnAdapter.js +3 -18
  116. package/src/components/Dashboard/DashboardToolbar.js +1 -1
  117. package/src/components/ExpressionEditor/EditorInput.js +19 -3
  118. package/src/components/Tree/TreeDropdown/index.js +1 -1
  119. package/src/env.js +2 -2
  120. package/src/layout-manager/src/LayoutManagerModel.d.ts +1 -0
  121. package/src/layout-manager/src/index.js +25 -7
  122. package/src/layout-manager/src/normalizeLayoutModel.js +3 -0
  123. package/src/metamodel/adaptable.metamodel.d.ts +39 -7
  124. package/src/metamodel/adaptable.metamodel.js +1 -1
  125. package/src/migration/AdaptableUpgradeHelper.js +3 -1
  126. package/src/migration/VersionUpgrade22.d.ts +21 -0
  127. package/src/migration/VersionUpgrade22.js +191 -0
  128. package/src/types.d.ts +2 -3
  129. package/tsconfig.cjs.tsbuildinfo +1 -1
  130. package/src/AdaptableState/Common/SuspendableObject.d.ts +0 -10
  131. package/src/AdaptableState/Common/SuspendableObject.js +0 -2
@@ -12,5 +12,5 @@ function DashboardToolbar(props) {
12
12
  React.createElement(Flex_1.Flex, { className: "ab-Dashboard__toolbar-title twa:items-center twa:justify-center twa:px-2 twa:pb-1 twa:opacity-70", flexDirection: "row" },
13
13
  React.createElement("span", { className: "twa:text-2" }, props.title),
14
14
  props.showConfigure && (React.createElement(SimpleButton_1.default, { "aria-label": `Configure ${props.title}`, icon: "spanner", variant: "text", tone: "none", "data-name": "configure", iconSize: 16, className: "twa:ml-1", tooltip: props.tooltip || `Configure ${props.title}`, onClick: () => props.onConfigure() })),
15
- props.showClose && (React.createElement(SimpleButton_1.default, { "aria-label": `Close ${props.title}`, style: { alignSelf: 'flex-end' }, disabled: props.accessLevel == 'ReadOnly', "data-name": "close", icon: "close", variant: "text", tone: "none", iconSize: 16, className: "twa:ml-1", tooltip: props.tooltip || `Close ${props.title} Toolbar`, onClick: () => props.onClose() })))));
15
+ props.showClose && (React.createElement(SimpleButton_1.default, { "aria-label": `Close ${props.title}`, style: { alignSelf: 'flex-end' }, disabled: props.accessLevel == 'ReadOnly', "data-name": "close", icon: "close", variant: "text", tone: "none", iconSize: 16, className: "twa:ml-1", tooltip: props.tooltip || `Close ${props.title} Toolbar`, onClick: () => props.onClose?.() })))));
16
16
  }
@@ -6,7 +6,6 @@ const react_1 = require("react");
6
6
  const BaseEditorInput_1 = require("./BaseEditorInput");
7
7
  const editorButtonsSearch_1 = require("./editorButtonsSearch");
8
8
  const EditorContext_1 = require("./EditorContext");
9
- const StringExtensions_1 = tslib_1.__importDefault(require("../../Utilities/Extensions/StringExtensions"));
10
9
  const editorButtonsAggregatedScalar_1 = require("./editorButtonsAggregatedScalar");
11
10
  const aggregatedScalarExpressionFunctions_1 = require("../../Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions");
12
11
  const editorButtonsCumulativeAggregatedScalar_1 = require("./editorButtonsCumulativeAggregatedScalar");
@@ -52,8 +51,25 @@ function EditorInput(props) {
52
51
  };
53
52
  }, [props.type]);
54
53
  const { setSelectedFunction } = (0, EditorContext_1.useExpressionEditor)();
55
- const queryName = `${StringExtensions_1.default.CapitaliseFirstLetter(props.type)}Query`;
56
- return (React.createElement(BaseEditorInput_1.BaseEditorInput, { type: 'main', value: props.value, placeholder: `Create ${queryName}`, onChange: props.onChange, onSelectedFunctionChange: setSelectedFunction, expressionFunctions: expressionFunctions, editorButtons: props.type === 'aggregatedScalar'
54
+ let queryName;
55
+ switch (props.type) {
56
+ case 'boolean':
57
+ queryName = 'Create an Expression that returns true / false';
58
+ break;
59
+ case 'scalar':
60
+ queryName = "Create an Expression that returns a single value of any type";
61
+ break;
62
+ case 'aggregatedScalar':
63
+ queryName = "Create an Expression that evaluates multiple rows and returns a value of any type";
64
+ break;
65
+ case 'cumulativeAggregatedScalar':
66
+ queryName = "Create a Cumulative Expression";
67
+ break;
68
+ case 'quantileAggregatedScalar':
69
+ queryName = "Create a Quantile Expression";
70
+ break;
71
+ }
72
+ return (React.createElement(BaseEditorInput_1.BaseEditorInput, { type: 'main', value: props.value, placeholder: queryName, onChange: props.onChange, onSelectedFunctionChange: setSelectedFunction, expressionFunctions: expressionFunctions, editorButtons: props.type === 'aggregatedScalar'
57
73
  ? editorButtonsAggregatedScalar_1.editorButtonsAggregatedScalar
58
74
  : props.type === 'cumulativeAggregatedScalar'
59
75
  ? editorButtonsCumulativeAggregatedScalar_1.editorButtonsCumulativeAggregatedScalar
@@ -254,7 +254,7 @@ function TreeDropdown(props) {
254
254
  } }, children));
255
255
  } },
256
256
  React.createElement(FieldWrap_1.default, { style: props.fieldStyle, className: "twa:w-full" },
257
- React.createElement(Input_1.default, { type: "text", readOnly: true, "data-name": "Select Values", placeholder: props.placeholder ?? 'Select a value', className: `twa:w-full ${props.clearable ? 'twa:pr-0' : ''}`, value: props.toDisplayValue ? props.toDisplayValue(value) : toDisplayValueDefault(value), onFocus: () => {
257
+ React.createElement(Input_1.default, { type: "text", readOnly: true, "data-name": "Select Values", "aria-expanded": visible, placeholder: props.placeholder ?? 'Select a value', className: `twa:w-full ${props.clearable ? 'twa:pr-0' : ''}`, value: props.toDisplayValue ? props.toDisplayValue(value) : toDisplayValueDefault(value), onFocus: () => {
258
258
  if (!visible) {
259
259
  setVisible(true);
260
260
  }
package/src/env.js CHANGED
@@ -2,6 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.default = {
4
4
  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" || '',
5
- PUBLISH_TIMESTAMP: 1769449948892 || Date.now(),
6
- VERSION: "22.0.0-canary.2" || '--current-version--',
5
+ PUBLISH_TIMESTAMP: 1770224017085 || Date.now(),
6
+ VERSION: "22.0.0-canary.4" || '--current-version--',
7
7
  };
@@ -172,5 +172,6 @@ export interface PivotLayoutModel extends BaseLayoutModel {
172
172
  * Display automatically calculated Totals within EACH Pivot Column Group, in the position specified
173
173
  */
174
174
  PivotColumnTotal?: 'before' | 'after' | boolean;
175
+ PivotResultColumns?: string[] | boolean;
175
176
  }
176
177
  export type LayoutModel = TableLayoutModel | PivotLayoutModel;
@@ -169,7 +169,7 @@ class LayoutManager extends LMEmitter_1.LMEmitter {
169
169
  this.setupEvents();
170
170
  this.indexColumns();
171
171
  this.setupPivotTotals();
172
- globalThis.layoutManager = this;
172
+ // (globalThis as any).layoutManager = this;
173
173
  }
174
174
  destroy() {
175
175
  if (this.destroyed) {
@@ -347,10 +347,11 @@ class LayoutManager extends LMEmitter_1.LMEmitter {
347
347
  const columnState = this.gridApi
348
348
  .getColumnState()
349
349
  .filter((col) => !pivotResultColumnsSet.has(col.colId));
350
- let PivotColumns = this.gridApi.getPivotColumns().map((col) => col.getColId());
350
+ const PivotColumns = this.gridApi.getPivotColumns().map((col) => col.getColId());
351
351
  const layout = this.getUndecidedLayoutModelFromGrid(columnState);
352
352
  let ColumnSizing = layout.ColumnSizing || {};
353
353
  let ColumnVisibility = { ...layout.ColumnVisibility };
354
+ const storePivotResultColumns = !!prevLayout?.PivotResultColumns;
354
355
  //let's also include the column widths of the pivotResult columns
355
356
  pivotResultColumns.forEach((col) => {
356
357
  const colId = col.getColId();
@@ -404,6 +405,13 @@ class LayoutManager extends LMEmitter_1.LMEmitter {
404
405
  GrandTotalRow: layout.GrandTotalRow,
405
406
  PivotExpandLevel: prevLayout?.PivotExpandLevel ?? -1,
406
407
  };
408
+ if (storePivotResultColumns) {
409
+ // Get pivot result columns in display order (not creation order)
410
+ const displayedPivotResultColumns = this.gridApi
411
+ .getAllDisplayedColumns()
412
+ .filter((col) => pivotResultColumnsSet.has(col.getColId()));
413
+ pivotLayout.PivotResultColumns = displayedPivotResultColumns.map((col) => col.getColId());
414
+ }
407
415
  if (layout.SuppressAggFuncInHeader) {
408
416
  pivotLayout.SuppressAggFuncInHeader = layout.SuppressAggFuncInHeader;
409
417
  }
@@ -427,20 +435,20 @@ class LayoutManager extends LMEmitter_1.LMEmitter {
427
435
  let TableColumns = columnState.map((c) => c.colId);
428
436
  // .filter((colId) => colId !== 'ag-Grid-SelectionColumn');
429
437
  let ColumnSorts = [];
430
- let RowGroupedColumns = [];
438
+ const RowGroupedColumns = [];
431
439
  let RowGroupValues = undefined;
432
440
  let ColumnGroupValues = undefined;
433
441
  let TableAggregationColumns = [];
434
- let ColumnPinning = {};
442
+ const ColumnPinning = {};
435
443
  const gridState = this.gridApi.getState();
436
444
  const prevLayout = this.currentLayout;
437
445
  const prevAggColumns = prevLayout?.TableAggregationColumns ?? prevLayout?.PivotAggregationColumns;
438
- let ColumnSizing = { ...prevLayout?.ColumnSizing };
446
+ const ColumnSizing = { ...prevLayout?.ColumnSizing };
439
447
  const prevAggColumnsMap = prevAggColumns?.reduce((acc, agg) => {
440
448
  acc[agg.ColumnId] = agg;
441
449
  return acc;
442
450
  }, {});
443
- let ColumnVisibility = columnState.reduce((acc, colState) => {
451
+ const ColumnVisibility = columnState.reduce((acc, colState) => {
444
452
  const colId = colState.colId;
445
453
  // normally we take the initial width from this object
446
454
  let initialWidth = this.initialColumnWidths[colId];
@@ -1242,7 +1250,7 @@ class LayoutManager extends LMEmitter_1.LMEmitter {
1242
1250
  }
1243
1251
  }
1244
1252
  computeColumnStateForPivotLayout(layout) {
1245
- let columnState = {};
1253
+ const columnState = {};
1246
1254
  const pivotColumnsToIndexes = (layout.PivotColumns || []).reduce((acc, colId, index) => {
1247
1255
  acc[colId] = index;
1248
1256
  return acc;
@@ -1273,6 +1281,12 @@ class LayoutManager extends LMEmitter_1.LMEmitter {
1273
1281
  this.computeColumnSorts(layout, columnState);
1274
1282
  this.computePinnedColumns(layout, columnState);
1275
1283
  this.computePivotAggregations(layout, columnState);
1284
+ // Add pivot result columns to the state for ordering (will be applied with applyOrder: true later)
1285
+ if (Array.isArray(layout.PivotResultColumns)) {
1286
+ layout.PivotResultColumns.forEach((colId) => {
1287
+ columnState.state.push({ colId });
1288
+ });
1289
+ }
1276
1290
  return columnState;
1277
1291
  }
1278
1292
  computePivotAggregations(layout, columnState) {
@@ -1513,6 +1527,10 @@ class LayoutManager extends LMEmitter_1.LMEmitter {
1513
1527
  });
1514
1528
  // now recompute and apply the last one
1515
1529
  this.computePivotAggregations(layout, columnState);
1530
+ // Apply order only on the final call when PivotResultColumns is specified
1531
+ if (Array.isArray(layout.PivotResultColumns)) {
1532
+ columnState.applyOrder = true;
1533
+ }
1516
1534
  this.gridApi.applyColumnState(columnState);
1517
1535
  // let's also include the column widths of the pivotResult columns
1518
1536
  // we can't simply include those in the columnState because the columnState will also apply order
@@ -138,6 +138,9 @@ function normalizePivotLayoutModel(layout) {
138
138
  if (!layout.ColumnPinning) {
139
139
  layout.ColumnPinning = {};
140
140
  }
141
+ if (!layout.PivotResultColumns) {
142
+ layout.PivotResultColumns = false;
143
+ }
141
144
  if (!layout.ColumnSizing) {
142
145
  layout.ColumnSizing = {};
143
146
  }
@@ -1000,12 +1000,19 @@ export declare const ADAPTABLE_METAMODEL: {
1000
1000
  name: string;
1001
1001
  kind: string;
1002
1002
  desc: string;
1003
- props: {
1003
+ props: ({
1004
1004
  name: string;
1005
1005
  kind: string;
1006
1006
  desc: string;
1007
1007
  isOpt: boolean;
1008
- }[];
1008
+ ref: string;
1009
+ } | {
1010
+ name: string;
1011
+ kind: string;
1012
+ desc: string;
1013
+ isOpt: boolean;
1014
+ ref?: undefined;
1015
+ })[];
1009
1016
  };
1010
1017
  AdaptableSystemColumnMenuItem: {
1011
1018
  name: string;
@@ -1712,11 +1719,6 @@ export declare const ADAPTABLE_METAMODEL: {
1712
1719
  kind: string;
1713
1720
  desc: string;
1714
1721
  };
1715
- CellAlignment: {
1716
- name: string;
1717
- kind: string;
1718
- desc: string;
1719
- };
1720
1722
  CellColorRange: {
1721
1723
  name: string;
1722
1724
  kind: string;
@@ -2155,12 +2157,20 @@ export declare const ADAPTABLE_METAMODEL: {
2155
2157
  name: string;
2156
2158
  kind: string;
2157
2159
  desc: string;
2160
+ isOpt?: undefined;
2161
+ ref?: undefined;
2162
+ } | {
2163
+ name: string;
2164
+ kind: string;
2165
+ desc: string;
2166
+ isOpt: boolean;
2158
2167
  ref?: undefined;
2159
2168
  } | {
2160
2169
  name: string;
2161
2170
  kind: string;
2162
2171
  desc: string;
2163
2172
  ref: string;
2173
+ isOpt?: undefined;
2164
2174
  })[];
2165
2175
  };
2166
2176
  CommandHandler: {
@@ -4066,6 +4076,18 @@ export declare const ADAPTABLE_METAMODEL: {
4066
4076
  kind: string;
4067
4077
  desc: string;
4068
4078
  };
4079
+ Identifiable: {
4080
+ name: string;
4081
+ kind: string;
4082
+ desc: string;
4083
+ props: {
4084
+ name: string;
4085
+ kind: string;
4086
+ desc: string;
4087
+ isOpt: boolean;
4088
+ ref: string;
4089
+ }[];
4090
+ };
4069
4091
  InFilterValue: {
4070
4092
  name: string;
4071
4093
  kind: string;
@@ -4455,6 +4477,16 @@ export declare const ADAPTABLE_METAMODEL: {
4455
4477
  kind: string;
4456
4478
  desc: string;
4457
4479
  };
4480
+ NamedObject: {
4481
+ name: string;
4482
+ kind: string;
4483
+ desc: string;
4484
+ props: {
4485
+ name: string;
4486
+ kind: string;
4487
+ desc: string;
4488
+ }[];
4489
+ };
4458
4490
  NamedQuery: {
4459
4491
  name: string;
4460
4492
  kind: string;