@adaptabletools/adaptable 11.1.5 → 11.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 (50) hide show
  1. package/bundle.cjs.js +122 -122
  2. package/package.json +1 -1
  3. package/publishTimestamp.d.ts +1 -1
  4. package/publishTimestamp.js +1 -1
  5. package/src/AdaptableOptions/FinancePluginOptions.d.ts +139 -9
  6. package/src/AdaptableOptions/OpenFinPluginOptions.d.ts +3 -3
  7. package/src/AdaptableOptions/SmartEdit.d.ts +2 -2
  8. package/src/Api/AdaptableApi.d.ts +4 -1
  9. package/src/Api/EventApi.d.ts +1 -1
  10. package/src/Api/Implementation/ColumnApiImpl.js +4 -1
  11. package/src/Api/Implementation/FormatColumnApiImpl.d.ts +1 -1
  12. package/src/Api/Implementation/FormatColumnApiImpl.js +11 -7
  13. package/src/Api/Implementation/GridApiImpl.js +0 -4
  14. package/src/Api/Implementation/ScopeApiImpl.d.ts +2 -0
  15. package/src/Api/Implementation/ScopeApiImpl.js +12 -0
  16. package/src/Api/ScopeApi.d.ts +10 -0
  17. package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +8 -0
  18. package/src/PredefinedConfig/Common/FDC3Context.d.ts +144 -3
  19. package/src/PredefinedConfig/Common/Menu.d.ts +4 -0
  20. package/src/Redux/Store/AdaptableStore.js +11 -1
  21. package/src/Strategy/SmartEditModule.js +1 -1
  22. package/src/Utilities/Helpers/FormatHelper.js +6 -0
  23. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +1 -1
  24. package/src/View/Components/Selectors/ColumnSelector.js +1 -1
  25. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +5 -1
  26. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.d.ts +1 -1
  27. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +15 -2
  28. package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +2 -1
  29. package/src/agGrid/Adaptable.js +3 -3
  30. package/src/agGrid/agGridMenuHelper.js +1 -0
  31. package/src/components/icons/analysis.d.ts +3 -0
  32. package/src/components/icons/analysis.js +8 -0
  33. package/src/components/icons/call.d.ts +3 -0
  34. package/src/components/icons/call.js +7 -0
  35. package/src/components/icons/chat.d.ts +3 -0
  36. package/src/components/icons/chat.js +8 -0
  37. package/src/components/icons/index.js +14 -0
  38. package/src/components/icons/instrument.d.ts +3 -0
  39. package/src/components/icons/instrument.js +8 -0
  40. package/src/components/icons/news.d.ts +3 -0
  41. package/src/components/icons/news.js +8 -0
  42. package/src/components/icons/person.d.ts +3 -0
  43. package/src/components/icons/person.js +7 -0
  44. package/src/components/icons/quote.d.ts +3 -0
  45. package/src/components/icons/quote.js +7 -0
  46. package/src/metamodel/adaptable.metamodel.d.ts +112 -5
  47. package/src/metamodel/adaptable.metamodel.js +212 -21
  48. package/src/types.d.ts +2 -2
  49. package/version.d.ts +1 -1
  50. package/version.js +1 -1
@@ -307,7 +307,11 @@ const renderStringFormat = (data, _onChange, setFormatOption) => {
307
307
  React.createElement(Radio_1.default, { marginLeft: 2, checked: data.DisplayFormat.Options.Case == 'Upper', onChange: (checked) => setFormatOption('Case', 'Upper') }, "Upper"),
308
308
  React.createElement(Radio_1.default, { marginLeft: 2, checked: data.DisplayFormat.Options.Case == 'Sentence', onChange: (checked) => setFormatOption('Case', 'Sentence') }, "Sentence"),
309
309
  React.createElement(Radio_1.default, { marginLeft: 2, checked: data.DisplayFormat.Options.Case == undefined, onChange: (checked) => setFormatOption('Case', undefined) }, "None"),
310
- React.createElement(CheckBox_1.CheckBox, { marginLeft: 5, checked: data.DisplayFormat.Options.Trim, onChange: (checked) => setFormatOption('Trim', checked) }, "Trim")))))),
310
+ React.createElement(CheckBox_1.CheckBox, { marginLeft: 5, checked: data.DisplayFormat.Options.Trim, onChange: (checked) => setFormatOption('Trim', checked) }, "Trim")),
311
+ React.createElement(FormLayout_1.FormRow, { label: "Prefix" },
312
+ React.createElement(Input_1.default, { value: data.DisplayFormat.Options.Prefix, onChange: (e) => setFormatOption('Prefix', e.currentTarget.value) })),
313
+ React.createElement(FormLayout_1.FormRow, { label: "Suffix" },
314
+ React.createElement(Input_1.default, { value: data.DisplayFormat.Options.Suffix, onChange: (e) => setFormatOption('Suffix', e.currentTarget.value) })))))),
311
315
  React.createElement(Tabs_1.Tabs, { marginTop: 2, keyboardNavigation: false },
312
316
  React.createElement(Tabs_1.Tabs.Tab, null, "Example"),
313
317
  React.createElement(Tabs_1.Tabs.Content, null,
@@ -1,7 +1,7 @@
1
1
  /// <reference types="react" />
2
2
  import { FormatColumn } from '../../../PredefinedConfig/FormatColumnState';
3
3
  import { AdaptableApi } from '../../../Api/AdaptableApi';
4
- export declare const isFormatColumnStyleValid: (data: FormatColumn, api: AdaptableApi) => true | "No format applied";
4
+ export declare const isFormatColumnStyleValid: (data: FormatColumn, api: AdaptableApi) => true | "No format applied" | "Invalid Cell Range" | "Invalid Column Comparison Range";
5
5
  declare type FormatColumnStyleWizardSectionProps = {
6
6
  onChange: (data: FormatColumn) => void;
7
7
  };
@@ -17,6 +17,7 @@ const ColorPicker_1 = require("../../ColorPicker");
17
17
  const UIHelper_1 = tslib_1.__importStar(require("../../UIHelper"));
18
18
  const StyleVisualItem_1 = require("../../Components/StyleVisualItem");
19
19
  exports.isFormatColumnStyleValid = (data, api) => {
20
+ var _a, _b, _c, _d, _e;
20
21
  if (!data.ColumnStyle &&
21
22
  data.Style &&
22
23
  UIHelper_1.default.IsEmptyStyle(data.Style) &&
@@ -26,6 +27,17 @@ exports.isFormatColumnStyleValid = (data, api) => {
26
27
  !api.scopeApi.isSingleBooleanColumnScope(data.Scope)) {
27
28
  return 'No format applied';
28
29
  }
30
+ if ((_c = (_b = (_a = data.ColumnStyle) === null || _a === void 0 ? void 0 : _a.PercentBarStyle) === null || _b === void 0 ? void 0 : _b.CellRanges) === null || _c === void 0 ? void 0 : _c.length) {
31
+ if (data.ColumnStyle.PercentBarStyle.CellRanges.some((cellRange) => cellRange.Min == undefined || cellRange.Max == undefined)) {
32
+ return 'Invalid Cell Range';
33
+ }
34
+ }
35
+ if ((_e = (_d = data.ColumnStyle) === null || _d === void 0 ? void 0 : _d.PercentBarStyle) === null || _e === void 0 ? void 0 : _e.ColumnComparison) {
36
+ if (data.ColumnStyle.PercentBarStyle.ColumnComparison.MinValue == undefined ||
37
+ data.ColumnStyle.PercentBarStyle.ColumnComparison.MaxValue == undefined) {
38
+ return 'Invalid Column Comparison Range';
39
+ }
40
+ }
29
41
  return true;
30
42
  };
31
43
  const toStyle = (style) => {
@@ -95,7 +107,8 @@ function FormatColumnStyleWizardSection(props) {
95
107
  var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7;
96
108
  const { data, api } = OnePageAdaptableWizard_1.useOnePageWizardContext();
97
109
  const singleNumericColumn = api.scopeApi.isSingleNumericColumnScope(data.Scope);
98
- const singleBooleanColumn = api.scopeApi.isSingleBooleanColumnScope(data.Scope);
110
+ const onlyBooleanColumnsInScope = api.scopeApi.areAllBooleanColumnsInScope(data.Scope) ||
111
+ api.scopeApi.scopeHasOnlyBooleanDataType(data.Scope);
99
112
  const onPercentBarCellTextCellValueChanged = (checked) => {
100
113
  var _a;
101
114
  let percentBarStyle = (_a = data.ColumnStyle) === null || _a === void 0 ? void 0 : _a.PercentBarStyle;
@@ -259,7 +272,7 @@ function FormatColumnStyleWizardSection(props) {
259
272
  }
260
273
  };
261
274
  return (React.createElement(React.Fragment, null,
262
- singleBooleanColumn && (React.createElement(Tabs_1.Tabs, null,
275
+ onlyBooleanColumnsInScope && (React.createElement(Tabs_1.Tabs, null,
263
276
  React.createElement(Tabs_1.Tabs.Tab, null, "CheckBox Column"),
264
277
  React.createElement(Tabs_1.Tabs.Content, null,
265
278
  React.createElement(HelpBlock_1.default, { fontSize: 2 }, "Shows each cell in the Column as a Checkbox"),
@@ -62,7 +62,8 @@ const adjustDisplayFormat = (formatColumn, api) => {
62
62
  const adjustFormatColumn = (formatColumn, api) => {
63
63
  formatColumn = adjustDisplayFormat(formatColumn, api);
64
64
  if (!api.scopeApi.isSingleNumericColumnScope(formatColumn.Scope) &&
65
- !api.scopeApi.isSingleBooleanColumnScope(formatColumn.Scope)) {
65
+ !(api.scopeApi.areAllBooleanColumnsInScope(formatColumn.Scope) ||
66
+ api.scopeApi.scopeHasOnlyBooleanDataType(formatColumn.Scope))) {
66
67
  // when people change the scope and select more than one (numeric) column
67
68
  // we have to discard any column style we might have
68
69
  delete formatColumn.ColumnStyle;
@@ -3357,9 +3357,9 @@ class Adaptable {
3357
3357
  }
3358
3358
  getFormatColumnComparisonChanges(dataChangedScope, cellDataChangedInfos) {
3359
3359
  this.api.formatColumnApi.getAllFormatColumn().forEach((fc) => {
3360
- let columnComparision = this.api.formatColumnApi.getColumnComparisonForFormatColumn(fc);
3361
- if (columnComparision) {
3362
- let affectedColumnIds = this.api.formatColumnApi.getColumnIdsFromColumnComparison(columnComparision);
3360
+ let columnComparison = this.api.formatColumnApi.getColumnComparisonForFormatColumn(fc);
3361
+ if (columnComparison) {
3362
+ let affectedColumnIds = this.api.formatColumnApi.getColumnIdsFromColumnComparison(columnComparison);
3363
3363
  if (ArrayExtensions_1.ArrayExtensions.IsNotNullOrEmpty(affectedColumnIds)) {
3364
3364
  cellDataChangedInfos.forEach((cellDataChangedInfo) => {
3365
3365
  if (affectedColumnIds.includes(cellDataChangedInfo.column.columnId)) {
@@ -249,6 +249,7 @@ class agGridMenuHelper {
249
249
  rowNode: params.node,
250
250
  isGroupedNode: params.node ? params.node.group : false,
251
251
  isSingleSelectedColumn: isSingleSelectedColumn,
252
+ isSingleSelectedCell: isSelectedCell && (selectedCellInfo === null || selectedCellInfo === void 0 ? void 0 : selectedCellInfo.gridCells.length) == 1,
252
253
  primaryKeyValue: clickedCell ? clickedCell.primaryKeyValue : undefined,
253
254
  adaptableApi: this.adaptable.api,
254
255
  selectedCellInfo: selectedCellInfo,
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const _default: (props: any) => JSX.Element;
3
+ export default _default;
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ const React = tslib_1.__importStar(require("react"));
5
+ const DefaultIcon_1 = tslib_1.__importDefault(require("./DefaultIcon"));
6
+ exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props),
7
+ React.createElement("path", { d: "M6.5 10h-2v7h2v-7zm6 0h-2v7h2v-7zm8.5 9H2v2h19v-2zm-2.5-9h-2v7h2v-7zm-7-6.74L16.71 6H6.29l5.21-2.74m0-2.26L2 6v2h19V6l-9.5-5z" }),
8
+ ' '));
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const _default: (props: any) => JSX.Element;
3
+ export default _default;
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ const React = tslib_1.__importStar(require("react"));
5
+ const DefaultIcon_1 = tslib_1.__importDefault(require("./DefaultIcon"));
6
+ exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props),
7
+ React.createElement("path", { d: "M6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51m9.86 12.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1z" })));
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const _default: (props: any) => JSX.Element;
3
+ export default _default;
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ const React = tslib_1.__importStar(require("react"));
5
+ const DefaultIcon_1 = tslib_1.__importDefault(require("./DefaultIcon"));
6
+ exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props),
7
+ React.createElement("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z" }),
8
+ ' '));
@@ -13,14 +13,17 @@ const triangle_down_1 = tslib_1.__importDefault(require("./triangle-down"));
13
13
  const check_1 = tslib_1.__importDefault(require("./check"));
14
14
  const attach_file_1 = tslib_1.__importDefault(require("./attach-file"));
15
15
  const plus_1 = tslib_1.__importDefault(require("./plus"));
16
+ const person_1 = tslib_1.__importDefault(require("./person"));
16
17
  const clear_1 = tslib_1.__importDefault(require("./clear"));
17
18
  const clone_1 = tslib_1.__importDefault(require("./clone"));
19
+ const chat_1 = tslib_1.__importDefault(require("./chat"));
18
20
  const query_1 = tslib_1.__importDefault(require("./query"));
19
21
  const info_1 = tslib_1.__importDefault(require("./info"));
20
22
  const alert_1 = tslib_1.__importDefault(require("./alert"));
21
23
  const list_1 = tslib_1.__importDefault(require("./list"));
22
24
  const smart_edit_1 = tslib_1.__importDefault(require("./smart-edit"));
23
25
  const home_1 = tslib_1.__importDefault(require("./home"));
26
+ const call_1 = tslib_1.__importDefault(require("./call"));
24
27
  const justify_1 = tslib_1.__importDefault(require("./justify"));
25
28
  const error_1 = tslib_1.__importDefault(require("./error"));
26
29
  const export_1 = tslib_1.__importDefault(require("./export"));
@@ -129,16 +132,26 @@ const regex_1 = tslib_1.__importDefault(require("./regex"));
129
132
  const track_changes_1 = tslib_1.__importDefault(require("./track-changes"));
130
133
  const menu_1 = tslib_1.__importDefault(require("./menu"));
131
134
  const LoggingHelper_1 = require("../../Utilities/Helpers/LoggingHelper");
135
+ const quote_1 = tslib_1.__importDefault(require("./quote"));
136
+ const news_1 = tslib_1.__importDefault(require("./news"));
137
+ const instrument_1 = tslib_1.__importDefault(require("./instrument"));
138
+ const analysis_1 = tslib_1.__importDefault(require("./analysis"));
132
139
  const allIcons = {
133
140
  // toolbars
134
141
  application: application_1.default,
135
142
  alert: alert_1.default,
143
+ analysis: analysis_1.default,
136
144
  'bulk-update': bulk_update_1.default,
137
145
  chart: chart_1.default,
138
146
  'cell-summary': cell_summary_1.default,
139
147
  'column-chooser': column_chooser_1.default,
140
148
  'column-add': column_add_1.default,
141
149
  'column-filter': column_filter_1.default,
150
+ person: person_1.default,
151
+ quote: quote_1.default,
152
+ call: call_1.default,
153
+ instrument: instrument_1.default,
154
+ news: news_1.default,
142
155
  'data-source': data_source_1.default,
143
156
  export: export_1.default,
144
157
  campaign: campaign_1.default,
@@ -153,6 +166,7 @@ const allIcons = {
153
166
  calendar: calendar_1.default,
154
167
  'cell-validation': cell_validation_1.default,
155
168
  'conditional-style': conditional_style_1.default,
169
+ chat: chat_1.default,
156
170
  'column-info': column_info_1.default,
157
171
  'custom-sort': custom_sort_1.default,
158
172
  dashboard: dashboard_1.default,
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const _default: (props: any) => JSX.Element;
3
+ export default _default;
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ const React = tslib_1.__importStar(require("react"));
5
+ const DefaultIcon_1 = tslib_1.__importDefault(require("./DefaultIcon"));
6
+ exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props),
7
+ React.createElement("path", { d: "M15.82,7.22l-1,0.4c-0.21-0.16-0.43-0.29-0.67-0.39L14,6.17C13.98,6.07,13.9,6,13.8,6h-1.6c-0.1,0-0.18,0.07-0.19,0.17 l-0.15,1.06c-0.24,0.1-0.47,0.23-0.67,0.39l-1-0.4c-0.09-0.03-0.2,0-0.24,0.09l-0.8,1.38c-0.05,0.09-0.03,0.2,0.05,0.26l0.85,0.66 C10.02,9.73,10,9.87,10,10c0,0.13,0.01,0.26,0.03,0.39l-0.84,0.66c-0.08,0.06-0.1,0.17-0.05,0.25l0.8,1.39 c0.05,0.09,0.15,0.12,0.25,0.09l0.99-0.4c0.21,0.16,0.43,0.29,0.68,0.39L12,13.83c0.02,0.1,0.1,0.17,0.2,0.17h1.6 c0.1,0,0.18-0.07,0.2-0.17l0.15-1.06c0.24-0.1,0.47-0.23,0.67-0.39l0.99,0.4c0.09,0.04,0.2,0,0.24-0.09l0.8-1.39 c0.05-0.09,0.03-0.19-0.05-0.25l-0.83-0.66C15.99,10.26,16,10.13,16,10c0-0.14-0.01-0.27-0.03-0.39l0.85-0.66 c0.08-0.06,0.1-0.17,0.05-0.26l-0.8-1.38C16.02,7.22,15.91,7.19,15.82,7.22z M13,11.43c-0.79,0-1.43-0.64-1.43-1.43 S12.21,8.57,13,8.57s1.43,0.64,1.43,1.43S13.79,11.43,13,11.43z" }),
8
+ React.createElement("path", { d: "M19.94,9.06c-0.43-3.27-3.23-5.86-6.53-6.05C13.27,3,13.14,3,13,3C9.47,3,6.57,5.61,6.08,9l-1.93,3.48 C3.74,13.14,4.22,14,5,14h1v2c0,1.1,0.9,2,2,2h1v3h7v-4.68C18.62,15.07,20.35,12.24,19.94,9.06z M14.89,14.63L14,15.05V19h-3v-3H8 v-4H6.7l1.33-2.33C8.21,7.06,10.35,5,13,5c2.76,0,5,2.24,5,5C18,12.09,16.71,13.88,14.89,14.63z" })));
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const _default: (props: any) => JSX.Element;
3
+ export default _default;
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ const React = tslib_1.__importStar(require("react"));
5
+ const DefaultIcon_1 = tslib_1.__importDefault(require("./DefaultIcon"));
6
+ exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props),
7
+ React.createElement("path", { d: "M16,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V8L16,3z M19,19H5V5h10v4h4V19z M7,17h10v-2H7V17z M12,7H7 v2h5V7z M7,13h10v-2H7V13z" }),
8
+ ' '));
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const _default: (props: any) => JSX.Element;
3
+ export default _default;
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ const React = tslib_1.__importStar(require("react"));
5
+ const DefaultIcon_1 = tslib_1.__importDefault(require("./DefaultIcon"));
6
+ exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props),
7
+ React.createElement("path", { d: "M12 6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0 10c2.7 0 5.8 1.29 6 2H6c.23-.72 3.31-2 6-2m0-12C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 10c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z" })));
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const _default: (props: any) => JSX.Element;
3
+ export default _default;
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ const React = tslib_1.__importStar(require("react"));
5
+ const DefaultIcon_1 = tslib_1.__importDefault(require("./DefaultIcon"));
6
+ exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props),
7
+ React.createElement("path", { d: "M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M6,20V4h7v4h5v12H6z M11,19h2v-1h1 c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1h-3v-1h4v-2h-2V9h-2v1h-1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h3v1H9v2h2V19z" })));
@@ -1297,6 +1297,26 @@ export declare const ADAPTABLE_METAMODEL: {
1297
1297
  isOptional: boolean;
1298
1298
  }[];
1299
1299
  };
1300
+ ContactColumn: {
1301
+ name: string;
1302
+ kind: string;
1303
+ description: string;
1304
+ properties: ({
1305
+ name: string;
1306
+ kind: string;
1307
+ description: string;
1308
+ uiLabel: string;
1309
+ isOptional: boolean;
1310
+ reference?: undefined;
1311
+ } | {
1312
+ name: string;
1313
+ kind: string;
1314
+ description: string;
1315
+ uiLabel: string;
1316
+ isOptional: boolean;
1317
+ reference: string;
1318
+ })[];
1319
+ };
1300
1320
  ContainerOptions: {
1301
1321
  name: string;
1302
1322
  kind: string;
@@ -1329,6 +1349,26 @@ export declare const ADAPTABLE_METAMODEL: {
1329
1349
  reference?: undefined;
1330
1350
  })[];
1331
1351
  };
1352
+ CountryColumn: {
1353
+ name: string;
1354
+ kind: string;
1355
+ description: string;
1356
+ properties: ({
1357
+ name: string;
1358
+ kind: string;
1359
+ description: string;
1360
+ uiLabel: string;
1361
+ isOptional: boolean;
1362
+ reference: string;
1363
+ } | {
1364
+ name: string;
1365
+ kind: string;
1366
+ description: string;
1367
+ uiLabel: string;
1368
+ isOptional: boolean;
1369
+ reference?: undefined;
1370
+ })[];
1371
+ };
1332
1372
  CustomDestination: {
1333
1373
  name: string;
1334
1374
  kind: string;
@@ -2548,24 +2588,33 @@ export declare const ADAPTABLE_METAMODEL: {
2548
2588
  description: string;
2549
2589
  uiLabel: string;
2550
2590
  isOptional: boolean;
2591
+ reference?: undefined;
2551
2592
  } | {
2552
2593
  name: string;
2553
2594
  kind: string;
2554
2595
  description: string;
2555
2596
  uiLabel: string;
2556
- isOptional?: undefined;
2597
+ isOptional: boolean;
2598
+ reference: string;
2557
2599
  })[];
2558
2600
  };
2559
2601
  InstrumentContext: {
2560
2602
  name: string;
2561
2603
  kind: string;
2562
2604
  description: string;
2563
- properties: {
2605
+ properties: ({
2564
2606
  name: string;
2565
2607
  kind: string;
2566
2608
  description: string;
2567
2609
  uiLabel: string;
2568
- }[];
2610
+ isOptional: boolean;
2611
+ } | {
2612
+ name: string;
2613
+ kind: string;
2614
+ description: string;
2615
+ uiLabel: string;
2616
+ isOptional?: undefined;
2617
+ })[];
2569
2618
  };
2570
2619
  IPushPullApi: {
2571
2620
  name: string;
@@ -2845,14 +2894,14 @@ export declare const ADAPTABLE_METAMODEL: {
2845
2894
  description: string;
2846
2895
  uiLabel: string;
2847
2896
  isOptional: boolean;
2848
- defaultValue?: undefined;
2897
+ defaultValue: string;
2849
2898
  } | {
2850
2899
  name: string;
2851
2900
  kind: string;
2852
2901
  description: string;
2853
2902
  uiLabel: string;
2854
2903
  isOptional: boolean;
2855
- defaultValue: string;
2904
+ defaultValue?: undefined;
2856
2905
  })[];
2857
2906
  };
2858
2907
  OpenFinReport: {
@@ -2889,6 +2938,26 @@ export declare const ADAPTABLE_METAMODEL: {
2889
2938
  kind: string;
2890
2939
  description: string;
2891
2940
  };
2941
+ OrganizationColumn: {
2942
+ name: string;
2943
+ kind: string;
2944
+ description: string;
2945
+ properties: ({
2946
+ name: string;
2947
+ kind: string;
2948
+ description: string;
2949
+ uiLabel: string;
2950
+ isOptional: boolean;
2951
+ reference?: undefined;
2952
+ } | {
2953
+ name: string;
2954
+ kind: string;
2955
+ description: string;
2956
+ uiLabel: string;
2957
+ isOptional: boolean;
2958
+ reference: string;
2959
+ })[];
2960
+ };
2892
2961
  PercentBarStyle: {
2893
2962
  name: string;
2894
2963
  kind: string;
@@ -2992,6 +3061,44 @@ export declare const ADAPTABLE_METAMODEL: {
2992
3061
  isOptional: boolean;
2993
3062
  }[];
2994
3063
  };
3064
+ PositionColumn: {
3065
+ name: string;
3066
+ kind: string;
3067
+ description: string;
3068
+ properties: ({
3069
+ name: string;
3070
+ kind: string;
3071
+ description: string;
3072
+ uiLabel: string;
3073
+ isOptional?: undefined;
3074
+ reference?: undefined;
3075
+ } | {
3076
+ name: string;
3077
+ kind: string;
3078
+ description: string;
3079
+ uiLabel: string;
3080
+ isOptional: boolean;
3081
+ reference: string;
3082
+ })[];
3083
+ };
3084
+ PositionContext: {
3085
+ name: string;
3086
+ kind: string;
3087
+ description: string;
3088
+ properties: ({
3089
+ name: string;
3090
+ kind: string;
3091
+ description: string;
3092
+ uiLabel: string;
3093
+ isOptional?: undefined;
3094
+ } | {
3095
+ name: string;
3096
+ kind: string;
3097
+ description: string;
3098
+ uiLabel: string;
3099
+ isOptional: boolean;
3100
+ })[];
3101
+ };
2995
3102
  PredefinedConfig: {
2996
3103
  name: string;
2997
3104
  kind: string;