@adaptabletools/adaptable 11.1.7 → 11.1.10
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.
- package/base.css +16 -0
- package/bundle.cjs.js +106 -106
- package/index.css +20 -0
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +2 -1
- package/src/AdaptableOptions/AdaptableOptions.d.ts +1 -1
- package/src/AdaptableOptions/AlertOptions.d.ts +9 -2
- package/src/AdaptableOptions/FinancePluginOptions.d.ts +57 -16
- package/src/AdaptableOptions/GeneralOptions.d.ts +7 -0
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +7 -0
- package/src/Api/AdaptableApi.d.ts +5 -0
- package/src/Api/CellSummaryApi.d.ts +8 -0
- package/src/Api/ColumnApi.d.ts +6 -1
- package/src/Api/ConfigApi.d.ts +8 -2
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -0
- package/src/Api/Implementation/AdaptableApiImpl.js +2 -0
- package/src/Api/Implementation/AlertApiImpl.js +32 -15
- package/src/Api/Implementation/CellSummaryApiImpl.d.ts +2 -0
- package/src/Api/Implementation/CellSummaryApiImpl.js +34 -0
- package/src/Api/Implementation/ColumnApiImpl.d.ts +2 -1
- package/src/Api/Implementation/ColumnApiImpl.js +7 -3
- package/src/Api/Implementation/ConfigApiImpl.d.ts +2 -2
- package/src/Api/Implementation/ConfigApiImpl.js +8 -29
- package/src/Api/Implementation/GridApiImpl.js +0 -4
- package/src/Api/Implementation/InternalApiImpl.d.ts +2 -1
- package/src/Api/Implementation/InternalApiImpl.js +29 -7
- package/src/Api/Implementation/LayoutApiImpl.d.ts +5 -4
- package/src/Api/Implementation/LayoutApiImpl.js +13 -7
- package/src/Api/Implementation/QueryApiImpl.d.ts +1 -0
- package/src/Api/Implementation/QueryApiImpl.js +12 -0
- package/src/Api/Implementation/StatusBarApiImpl.d.ts +8 -0
- package/src/Api/Implementation/StatusBarApiImpl.js +17 -0
- package/src/Api/InternalApi.d.ts +2 -1
- package/src/Api/LayoutApi.d.ts +16 -9
- package/src/Api/QueryApi.d.ts +6 -0
- package/src/Api/StatusBarApi.d.ts +10 -0
- package/src/Api/StatusBarApi.js +2 -0
- package/src/PredefinedConfig/AdaptableState.d.ts +20 -8
- package/src/PredefinedConfig/Common/FDC3Context.d.ts +61 -29
- package/src/PredefinedConfig/Common/Types.d.ts +6 -3
- package/src/PredefinedConfig/Common/Types.js +32 -1
- package/src/PredefinedConfig/FlashingCellState.d.ts +1 -1
- package/src/PredefinedConfig/FormatColumnState.d.ts +1 -1
- package/src/PredefinedConfig/GridState.d.ts +1 -1
- package/src/PredefinedConfig/PredefinedConfig.d.ts +5 -0
- package/src/PredefinedConfig/StatusBarState.d.ts +27 -0
- package/src/PredefinedConfig/StatusBarState.js +7 -0
- package/src/PredefinedConfig/ToolPanelState.d.ts +1 -1
- package/src/Redux/ActionsReducers/GridRedux.d.ts +2 -2
- package/src/Redux/ActionsReducers/GridRedux.js +4 -4
- package/src/Redux/ActionsReducers/StatusBarRedux.d.ts +22 -0
- package/src/Redux/ActionsReducers/StatusBarRedux.js +31 -0
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +8 -3
- package/src/Redux/ActionsReducers/SystemRedux.js +22 -5
- package/src/Redux/Store/AdaptableReduxMerger.js +2 -2
- package/src/Redux/Store/AdaptableStore.js +24 -10
- package/src/Strategy/AlertModule.d.ts +3 -0
- package/src/Strategy/AlertModule.js +6 -0
- package/src/Strategy/CellSummaryModule.d.ts +6 -0
- package/src/Strategy/CellSummaryModule.js +14 -0
- package/src/Strategy/DataChangeHistoryModule.d.ts +7 -0
- package/src/Strategy/DataChangeHistoryModule.js +11 -0
- package/src/Strategy/ExportModule.d.ts +1 -0
- package/src/Strategy/ExportModule.js +1 -0
- package/src/Strategy/FilterModule.d.ts +6 -0
- package/src/Strategy/FilterModule.js +21 -0
- package/src/Strategy/Interface/IModule.d.ts +21 -10
- package/src/Strategy/LayoutModule.d.ts +7 -0
- package/src/Strategy/LayoutModule.js +14 -1
- package/src/Strategy/QueryModule.d.ts +8 -0
- package/src/Strategy/QueryModule.js +18 -0
- package/src/Strategy/QuickSearchModule.d.ts +6 -0
- package/src/Strategy/QuickSearchModule.js +10 -0
- package/src/Strategy/StatusBarModule.d.ts +8 -0
- package/src/Strategy/StatusBarModule.js +39 -0
- package/src/Strategy/SystemStatusModule.d.ts +6 -0
- package/src/Strategy/SystemStatusModule.js +10 -0
- package/src/Strategy/ThemeModule.d.ts +7 -0
- package/src/Strategy/ThemeModule.js +12 -0
- package/src/Strategy/Utilities/getAlertBehaviourViewItems.js +1 -1
- package/src/Utilities/Constants/GeneralConstants.d.ts +1 -0
- package/src/Utilities/Constants/GeneralConstants.js +2 -1
- package/src/Utilities/Constants/ModuleConstants.d.ts +1 -0
- package/src/Utilities/Constants/ModuleConstants.js +2 -1
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +4 -1
- package/src/Utilities/Defaults/DefaultSettingsPanel.js +1 -0
- package/src/Utilities/Services/ModuleService.js +6 -6
- package/src/View/AdaptablePopover/index.d.ts +1 -0
- package/src/View/AdaptablePopover/index.js +5 -2
- package/src/View/AdaptableViewFactory.js +2 -2
- package/src/View/Alert/AlertStatusSubPanel.d.ts +2 -0
- package/src/View/Alert/AlertStatusSubPanel.js +56 -0
- package/src/View/Alert/AlertViewPanel.js +6 -7
- package/src/View/Alert/AlertsPanel.d.ts +1 -1
- package/src/View/Alert/AlertsPanel.js +2 -1
- package/src/View/Alert/Utilities/getAlertButtonStyle.d.ts +5 -0
- package/src/View/Alert/Utilities/getAlertButtonStyle.js +15 -0
- package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +18 -7
- package/src/View/Alert/Wizard/AlertButtonsEditor.js +1 -8
- package/src/View/Alert/Wizard/AlertWizard.js +3 -2
- package/src/View/CellSummary/CellSummaryStatusBarSubPanelPopover.d.ts +2 -0
- package/src/View/CellSummary/CellSummaryStatusBarSubPanelPopover.js +15 -0
- package/src/View/CellSummary/CellSummaryStatusPanel.d.ts +2 -0
- package/src/View/CellSummary/CellSummaryStatusPanel.js +36 -0
- package/src/View/CellSummary/CellSummaryViewPanel.js +2 -20
- package/src/View/ColorPicker.d.ts +1 -1
- package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
- package/src/View/Components/AdaptableInput/index.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
- package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +1 -1
- package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +1 -1
- package/src/View/Components/Forms/AdaptableFormControlTextClear.js +1 -1
- package/src/View/Components/Panels/PanelWithImage.d.ts +6 -6
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +5 -4
- package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +1 -1
- package/src/View/Components/RangesComponent.js +6 -2
- package/src/View/Components/StyleComponent.js +18 -6
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +1 -1
- package/src/View/Components/ToolPanel/ToolPanelPopup.js +3 -3
- package/src/View/Dashboard/DashboardPopup.js +2 -2
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +5 -13
- package/src/View/DataChangeHistory/DataChangeHistoryStatusBarContent.d.ts +2 -0
- package/src/View/DataChangeHistory/DataChangeHistoryStatusBarContent.js +9 -0
- package/src/View/DataChangeHistory/DataChangeHistoryViewPanel.d.ts +4 -16
- package/src/View/DataChangeHistory/DataChangeHistoryViewPanel.js +32 -40
- package/src/View/Filter/ActiveFiltersPanel.d.ts +0 -2
- package/src/View/Filter/FilterStatusBarSubPanelPopover.d.ts +2 -0
- package/src/View/Filter/FilterStatusBarSubPanelPopover.js +18 -0
- package/src/View/Filter/FilterViewPanel.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +1 -1
- package/src/View/GridInfo/GridInfoPopup.js +4 -1
- package/src/View/Layout/EditCurrentLayoutButton.d.ts +2 -0
- package/src/View/Layout/EditCurrentLayoutButton.js +14 -0
- package/src/View/Layout/LayoutPopup.d.ts +1 -1
- package/src/View/Layout/LayoutPopup.js +3 -3
- package/src/View/Layout/LayoutRadioSelector.d.ts +1 -0
- package/src/View/Layout/LayoutRadioSelector.js +2 -2
- package/src/View/Layout/LayoutStatusBarSubPanelPopover.d.ts +2 -0
- package/src/View/Layout/LayoutStatusBarSubPanelPopover.js +29 -0
- package/src/View/Layout/Wizard/LayoutEditor/ColumnLabels.js +2 -1
- package/src/View/Layout/Wizard/LayoutEditor/index.js +1 -1
- package/src/View/Layout/Wizard/LayoutEditorWizard.js +2 -1
- package/src/View/Query/EditCurrentQueryButton.d.ts +2 -0
- package/src/View/Query/EditCurrentQueryButton.js +15 -0
- package/src/View/Query/QueryViewPanel.d.ts +0 -1
- package/src/View/Query/QueryViewPanel.js +2 -11
- package/src/View/QuickSearch/QuickSearchPopup.js +1 -1
- package/src/View/QuickSearch/QuickSearchStatusBarContent.d.ts +2 -0
- package/src/View/QuickSearch/QuickSearchStatusBarContent.js +16 -0
- package/src/View/StateManagement/StateManagementPopup.js +9 -7
- package/src/View/StateManagement/StateManagementViewPanel.js +1 -2
- package/src/View/StateManagement/components/ExportDropdown.d.ts +1 -1
- package/src/View/StateManagement/components/ExportDropdown.js +3 -7
- package/src/View/StateManagement/handleExportState.d.ts +1 -1
- package/src/View/StatusBar/AdaptableStatusBar.d.ts +3 -0
- package/src/View/StatusBar/AdaptableStatusBar.js +44 -0
- package/src/View/StatusBar/StatusBarPanel.d.ts +42 -0
- package/src/View/StatusBar/StatusBarPanel.js +45 -0
- package/src/View/StatusBar/StatusBarPopup.d.ts +3 -0
- package/src/View/StatusBar/StatusBarPopup.js +43 -0
- package/src/View/SystemStatus/SystemStatusStatusBarContent.d.ts +2 -0
- package/src/View/SystemStatus/SystemStatusStatusBarContent.js +15 -0
- package/src/View/SystemStatus/SystemStatusViewPanel.js +3 -7
- package/src/View/SystemStatus/Utilities/getStatusItemStyle.d.ts +5 -0
- package/src/View/SystemStatus/Utilities/getStatusItemStyle.js +16 -0
- package/src/View/Theme/ThemeStatusPanelPopover.d.ts +2 -0
- package/src/View/Theme/ThemeStatusPanelPopover.js +36 -0
- package/src/agGrid/Adaptable.d.ts +2 -0
- package/src/agGrid/Adaptable.js +30 -3
- package/src/agGrid/agGridHelper.js +2 -0
- package/src/agGrid/agGridMenuHelper.js +2 -2
- package/src/agGrid/createAgStatusPanelComponent.d.ts +21 -0
- package/src/agGrid/createAgStatusPanelComponent.js +31 -0
- package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +1 -1
- package/src/components/Dashboard/DashboardManager.js +9 -162
- package/src/components/Datepicker/index.d.ts +1 -1
- package/src/components/DragAndDropContext/DragAndDropContext.d.ts +7 -0
- package/src/components/DragAndDropContext/DragAndDropContext.js +14 -0
- package/src/components/DragAndDropContext/ModuleManager.d.ts +17 -0
- package/src/components/DragAndDropContext/ModuleManager.js +81 -0
- package/src/components/DragAndDropContext/TabList.d.ts +29 -0
- package/src/components/DragAndDropContext/TabList.js +72 -0
- package/src/components/DragAndDropContext/UnusedPanel.d.ts +6 -0
- package/src/components/DragAndDropContext/UnusedPanel.js +46 -0
- package/src/components/DragAndDropContext/types.d.ts +8 -0
- package/src/components/DragAndDropContext/types.js +2 -0
- package/src/components/FormLayout/index.d.ts +1 -0
- package/src/components/Input/index.d.ts +1 -1
- package/src/components/List/ListGroupItem/index.d.ts +1 -1
- package/src/components/PopupWithFooter.d.ts +1 -1
- package/src/components/SimpleButton/index.js +3 -0
- package/src/components/Textarea/index.d.ts +1 -1
- package/src/components/icons/DefaultIcon.d.ts +2 -1
- package/src/components/icons/DefaultIcon.js +2 -2
- package/src/components/icons/index.js +2 -0
- package/src/components/icons/statusbar.d.ts +3 -0
- package/src/components/icons/statusbar.js +8 -0
- package/src/metamodel/adaptable.metamodel.d.ts +236 -0
- package/src/metamodel/adaptable.metamodel.js +466 -47
- package/src/types.d.ts +5 -4
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -211,6 +211,38 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
211
211
|
uiLabel: string;
|
|
212
212
|
}[];
|
|
213
213
|
};
|
|
214
|
+
AdaptableDashboardToolbar: {
|
|
215
|
+
name: string;
|
|
216
|
+
kind: string;
|
|
217
|
+
description: string;
|
|
218
|
+
};
|
|
219
|
+
AdaptableFDC3EventInfo: {
|
|
220
|
+
name: string;
|
|
221
|
+
kind: string;
|
|
222
|
+
description: string;
|
|
223
|
+
properties: ({
|
|
224
|
+
name: string;
|
|
225
|
+
kind: string;
|
|
226
|
+
description: string;
|
|
227
|
+
uiLabel: string;
|
|
228
|
+
reference: string;
|
|
229
|
+
isOptional?: undefined;
|
|
230
|
+
} | {
|
|
231
|
+
name: string;
|
|
232
|
+
kind: string;
|
|
233
|
+
description: string;
|
|
234
|
+
uiLabel: string;
|
|
235
|
+
reference?: undefined;
|
|
236
|
+
isOptional?: undefined;
|
|
237
|
+
} | {
|
|
238
|
+
name: string;
|
|
239
|
+
kind: string;
|
|
240
|
+
description: string;
|
|
241
|
+
uiLabel: string;
|
|
242
|
+
isOptional: boolean;
|
|
243
|
+
reference: string;
|
|
244
|
+
})[];
|
|
245
|
+
};
|
|
214
246
|
AdaptableFlashingCell: {
|
|
215
247
|
name: string;
|
|
216
248
|
kind: string;
|
|
@@ -422,6 +454,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
422
454
|
reference?: undefined;
|
|
423
455
|
})[];
|
|
424
456
|
};
|
|
457
|
+
AdaptablePersistentState: {
|
|
458
|
+
name: string;
|
|
459
|
+
kind: string;
|
|
460
|
+
description: string;
|
|
461
|
+
};
|
|
425
462
|
AdaptablePersistStateFunction: {
|
|
426
463
|
name: string;
|
|
427
464
|
kind: string;
|
|
@@ -1317,6 +1354,52 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1317
1354
|
reference: string;
|
|
1318
1355
|
})[];
|
|
1319
1356
|
};
|
|
1357
|
+
ContactContext: {
|
|
1358
|
+
name: string;
|
|
1359
|
+
kind: string;
|
|
1360
|
+
description: string;
|
|
1361
|
+
properties: ({
|
|
1362
|
+
name: string;
|
|
1363
|
+
kind: string;
|
|
1364
|
+
description: string;
|
|
1365
|
+
uiLabel: string;
|
|
1366
|
+
isOptional: boolean;
|
|
1367
|
+
} | {
|
|
1368
|
+
name: string;
|
|
1369
|
+
kind: string;
|
|
1370
|
+
description: string;
|
|
1371
|
+
uiLabel: string;
|
|
1372
|
+
isOptional?: undefined;
|
|
1373
|
+
})[];
|
|
1374
|
+
};
|
|
1375
|
+
ContactIntent: {
|
|
1376
|
+
name: string;
|
|
1377
|
+
kind: string;
|
|
1378
|
+
description: string;
|
|
1379
|
+
};
|
|
1380
|
+
ContactIntents: {
|
|
1381
|
+
name: string;
|
|
1382
|
+
kind: string;
|
|
1383
|
+
description: string;
|
|
1384
|
+
};
|
|
1385
|
+
ContactListContext: {
|
|
1386
|
+
name: string;
|
|
1387
|
+
kind: string;
|
|
1388
|
+
description: string;
|
|
1389
|
+
properties: ({
|
|
1390
|
+
name: string;
|
|
1391
|
+
kind: string;
|
|
1392
|
+
description: string;
|
|
1393
|
+
uiLabel: string;
|
|
1394
|
+
isOptional: boolean;
|
|
1395
|
+
} | {
|
|
1396
|
+
name: string;
|
|
1397
|
+
kind: string;
|
|
1398
|
+
description: string;
|
|
1399
|
+
uiLabel: string;
|
|
1400
|
+
isOptional?: undefined;
|
|
1401
|
+
})[];
|
|
1402
|
+
};
|
|
1320
1403
|
ContainerOptions: {
|
|
1321
1404
|
name: string;
|
|
1322
1405
|
kind: string;
|
|
@@ -1369,6 +1452,34 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1369
1452
|
reference?: undefined;
|
|
1370
1453
|
})[];
|
|
1371
1454
|
};
|
|
1455
|
+
CountryContext: {
|
|
1456
|
+
name: string;
|
|
1457
|
+
kind: string;
|
|
1458
|
+
description: string;
|
|
1459
|
+
properties: ({
|
|
1460
|
+
name: string;
|
|
1461
|
+
kind: string;
|
|
1462
|
+
description: string;
|
|
1463
|
+
uiLabel: string;
|
|
1464
|
+
isOptional: boolean;
|
|
1465
|
+
} | {
|
|
1466
|
+
name: string;
|
|
1467
|
+
kind: string;
|
|
1468
|
+
description: string;
|
|
1469
|
+
uiLabel: string;
|
|
1470
|
+
isOptional?: undefined;
|
|
1471
|
+
})[];
|
|
1472
|
+
};
|
|
1473
|
+
CountryIntent: {
|
|
1474
|
+
name: string;
|
|
1475
|
+
kind: string;
|
|
1476
|
+
description: string;
|
|
1477
|
+
};
|
|
1478
|
+
CountryIntents: {
|
|
1479
|
+
name: string;
|
|
1480
|
+
kind: string;
|
|
1481
|
+
description: string;
|
|
1482
|
+
};
|
|
1372
1483
|
CustomDestination: {
|
|
1373
1484
|
name: string;
|
|
1374
1485
|
kind: string;
|
|
@@ -1997,6 +2108,24 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1997
2108
|
reference?: undefined;
|
|
1998
2109
|
})[];
|
|
1999
2110
|
};
|
|
2111
|
+
FDC3Column: {
|
|
2112
|
+
name: string;
|
|
2113
|
+
kind: string;
|
|
2114
|
+
description: string;
|
|
2115
|
+
properties: ({
|
|
2116
|
+
name: string;
|
|
2117
|
+
kind: string;
|
|
2118
|
+
description: string;
|
|
2119
|
+
uiLabel: string;
|
|
2120
|
+
isOptional: boolean;
|
|
2121
|
+
} | {
|
|
2122
|
+
name: string;
|
|
2123
|
+
kind: string;
|
|
2124
|
+
description: string;
|
|
2125
|
+
uiLabel: string;
|
|
2126
|
+
isOptional?: undefined;
|
|
2127
|
+
})[];
|
|
2128
|
+
};
|
|
2000
2129
|
FDC3Context: {
|
|
2001
2130
|
name: string;
|
|
2002
2131
|
kind: string;
|
|
@@ -2007,14 +2136,21 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2007
2136
|
description: string;
|
|
2008
2137
|
uiLabel: string;
|
|
2009
2138
|
isOptional: boolean;
|
|
2139
|
+
reference?: undefined;
|
|
2010
2140
|
} | {
|
|
2011
2141
|
name: string;
|
|
2012
2142
|
kind: string;
|
|
2013
2143
|
description: string;
|
|
2014
2144
|
uiLabel: string;
|
|
2145
|
+
reference: string;
|
|
2015
2146
|
isOptional?: undefined;
|
|
2016
2147
|
})[];
|
|
2017
2148
|
};
|
|
2149
|
+
FDC3Intent: {
|
|
2150
|
+
name: string;
|
|
2151
|
+
kind: string;
|
|
2152
|
+
description: string;
|
|
2153
|
+
};
|
|
2018
2154
|
FilterActionOnDataChange: {
|
|
2019
2155
|
name: string;
|
|
2020
2156
|
kind: string;
|
|
@@ -2616,6 +2752,34 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2616
2752
|
isOptional?: undefined;
|
|
2617
2753
|
})[];
|
|
2618
2754
|
};
|
|
2755
|
+
InstrumentIntent: {
|
|
2756
|
+
name: string;
|
|
2757
|
+
kind: string;
|
|
2758
|
+
description: string;
|
|
2759
|
+
};
|
|
2760
|
+
InstrumentIntents: {
|
|
2761
|
+
name: string;
|
|
2762
|
+
kind: string;
|
|
2763
|
+
description: string;
|
|
2764
|
+
};
|
|
2765
|
+
InstrumentListContext: {
|
|
2766
|
+
name: string;
|
|
2767
|
+
kind: string;
|
|
2768
|
+
description: string;
|
|
2769
|
+
properties: ({
|
|
2770
|
+
name: string;
|
|
2771
|
+
kind: string;
|
|
2772
|
+
description: string;
|
|
2773
|
+
uiLabel: string;
|
|
2774
|
+
isOptional: boolean;
|
|
2775
|
+
} | {
|
|
2776
|
+
name: string;
|
|
2777
|
+
kind: string;
|
|
2778
|
+
description: string;
|
|
2779
|
+
uiLabel: string;
|
|
2780
|
+
isOptional?: undefined;
|
|
2781
|
+
})[];
|
|
2782
|
+
};
|
|
2619
2783
|
IPushPullApi: {
|
|
2620
2784
|
name: string;
|
|
2621
2785
|
kind: string;
|
|
@@ -2958,6 +3122,29 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2958
3122
|
reference: string;
|
|
2959
3123
|
})[];
|
|
2960
3124
|
};
|
|
3125
|
+
OrganizationContext: {
|
|
3126
|
+
name: string;
|
|
3127
|
+
kind: string;
|
|
3128
|
+
description: string;
|
|
3129
|
+
properties: ({
|
|
3130
|
+
name: string;
|
|
3131
|
+
kind: string;
|
|
3132
|
+
description: string;
|
|
3133
|
+
uiLabel: string;
|
|
3134
|
+
isOptional: boolean;
|
|
3135
|
+
} | {
|
|
3136
|
+
name: string;
|
|
3137
|
+
kind: string;
|
|
3138
|
+
description: string;
|
|
3139
|
+
uiLabel: string;
|
|
3140
|
+
isOptional?: undefined;
|
|
3141
|
+
})[];
|
|
3142
|
+
};
|
|
3143
|
+
OrganizationIntent: {
|
|
3144
|
+
name: string;
|
|
3145
|
+
kind: string;
|
|
3146
|
+
description: string;
|
|
3147
|
+
};
|
|
2961
3148
|
PercentBarStyle: {
|
|
2962
3149
|
name: string;
|
|
2963
3150
|
kind: string;
|
|
@@ -3061,6 +3248,24 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3061
3248
|
isOptional: boolean;
|
|
3062
3249
|
}[];
|
|
3063
3250
|
};
|
|
3251
|
+
PortfolioContext: {
|
|
3252
|
+
name: string;
|
|
3253
|
+
kind: string;
|
|
3254
|
+
description: string;
|
|
3255
|
+
properties: ({
|
|
3256
|
+
name: string;
|
|
3257
|
+
kind: string;
|
|
3258
|
+
description: string;
|
|
3259
|
+
uiLabel: string;
|
|
3260
|
+
isOptional: boolean;
|
|
3261
|
+
} | {
|
|
3262
|
+
name: string;
|
|
3263
|
+
kind: string;
|
|
3264
|
+
description: string;
|
|
3265
|
+
uiLabel: string;
|
|
3266
|
+
isOptional?: undefined;
|
|
3267
|
+
})[];
|
|
3268
|
+
};
|
|
3064
3269
|
PositionColumn: {
|
|
3065
3270
|
name: string;
|
|
3066
3271
|
kind: string;
|
|
@@ -3091,14 +3296,33 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3091
3296
|
description: string;
|
|
3092
3297
|
uiLabel: string;
|
|
3093
3298
|
isOptional?: undefined;
|
|
3299
|
+
reference?: undefined;
|
|
3094
3300
|
} | {
|
|
3095
3301
|
name: string;
|
|
3096
3302
|
kind: string;
|
|
3097
3303
|
description: string;
|
|
3098
3304
|
uiLabel: string;
|
|
3099
3305
|
isOptional: boolean;
|
|
3306
|
+
reference?: undefined;
|
|
3307
|
+
} | {
|
|
3308
|
+
name: string;
|
|
3309
|
+
kind: string;
|
|
3310
|
+
description: string;
|
|
3311
|
+
uiLabel: string;
|
|
3312
|
+
reference: string;
|
|
3313
|
+
isOptional?: undefined;
|
|
3100
3314
|
})[];
|
|
3101
3315
|
};
|
|
3316
|
+
PositionIntent: {
|
|
3317
|
+
name: string;
|
|
3318
|
+
kind: string;
|
|
3319
|
+
description: string;
|
|
3320
|
+
};
|
|
3321
|
+
PositionIntents: {
|
|
3322
|
+
name: string;
|
|
3323
|
+
kind: string;
|
|
3324
|
+
description: string;
|
|
3325
|
+
};
|
|
3102
3326
|
PredefinedConfig: {
|
|
3103
3327
|
name: string;
|
|
3104
3328
|
kind: string;
|
|
@@ -3206,6 +3430,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3206
3430
|
reference: string;
|
|
3207
3431
|
})[];
|
|
3208
3432
|
};
|
|
3433
|
+
RaiseFDC3IntentContext: {
|
|
3434
|
+
name: string;
|
|
3435
|
+
kind: string;
|
|
3436
|
+
description: string;
|
|
3437
|
+
properties: {
|
|
3438
|
+
name: string;
|
|
3439
|
+
kind: string;
|
|
3440
|
+
description: string;
|
|
3441
|
+
uiLabel: string;
|
|
3442
|
+
reference: string;
|
|
3443
|
+
}[];
|
|
3444
|
+
};
|
|
3209
3445
|
ReactFrameworkComponent: {
|
|
3210
3446
|
name: string;
|
|
3211
3447
|
kind: string;
|