@adaptabletools/adaptable 11.0.0-canary.2 → 11.0.0-canary.6
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/agGrid.d.ts +1 -1
- package/agGrid.js +3 -3
- package/base.css +138 -68
- package/bundle.cjs.js +131 -127
- package/index.css +140 -68
- package/package.json +33 -33
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/AdaptableNoCodeWizard.d.ts +7 -5
- package/src/AdaptableOptions/AdaptableFrameworkComponent.d.ts +1 -3
- package/src/AdaptableOptions/AdaptableOptions.d.ts +11 -2
- package/src/AdaptableOptions/AlertOptions.d.ts +82 -0
- package/src/AdaptableOptions/AlertOptions.js +2 -0
- package/src/AdaptableOptions/ContainerOptions.d.ts +2 -2
- package/src/AdaptableOptions/EntitlementOptions.d.ts +1 -1
- package/src/AdaptableOptions/FilterOptions.d.ts +1 -1
- package/src/AdaptableOptions/NotificationsOptions.d.ts +1 -78
- package/src/AdaptableOptions/QueryLanguageOptions.d.ts +3 -7
- package/src/AdaptableOptions/StateOptions.d.ts +2 -1
- package/src/AdaptableOptions/TeamSharingOptions.d.ts +2 -2
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +0 -3
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +3 -3
- package/src/Api/AdaptableApi.d.ts +6 -0
- package/src/Api/AlertApi.d.ts +2 -3
- package/src/Api/ColumnApi.d.ts +0 -4
- package/src/Api/EventApi.d.ts +8 -3
- package/src/Api/Events/GridDataChanged.d.ts +4 -2
- package/src/Api/Events/SystemStatusMessageDisplayed.d.ts +1 -1
- package/src/Api/FreeTextColumnApi.d.ts +0 -12
- package/src/Api/GridApi.d.ts +5 -4
- package/src/Api/IPushPullApi.d.ts +1 -1
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -1
- package/src/Api/Implementation/AdaptableApiImpl.js +2 -0
- package/src/Api/Implementation/AlertApiImpl.d.ts +1 -2
- package/src/Api/Implementation/AlertApiImpl.js +19 -10
- package/src/Api/Implementation/ApiBase.d.ts +2 -0
- package/src/Api/Implementation/ApiBase.js +3 -0
- package/src/Api/Implementation/ColumnApiImpl.d.ts +0 -1
- package/src/Api/Implementation/ColumnApiImpl.js +0 -5
- package/src/Api/Implementation/DashboardApiImpl.js +1 -1
- package/src/Api/Implementation/FlashingCellApiImpl.js +2 -4
- package/src/Api/Implementation/FreeTextColumnApiImpl.d.ts +0 -5
- package/src/Api/Implementation/FreeTextColumnApiImpl.js +0 -9
- package/src/Api/Implementation/GridApiImpl.d.ts +5 -4
- package/src/Api/Implementation/GridApiImpl.js +4 -0
- package/src/Api/Implementation/InternalApiImpl.js +2 -2
- package/src/Api/Implementation/LayoutApiImpl.d.ts +2 -0
- package/src/Api/Implementation/LayoutApiImpl.js +12 -1
- package/src/Api/Implementation/QueryApiImpl.js +4 -1
- package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +1 -1
- package/src/Api/Implementation/QueryLanguageApiImpl.js +6 -7
- package/src/Api/Implementation/SettingsPanelApiImpl.d.ts +7 -0
- package/src/Api/Implementation/SettingsPanelApiImpl.js +15 -0
- package/src/Api/LayoutApi.d.ts +7 -0
- package/src/Api/OpenFinApi.d.ts +5 -0
- package/src/Api/PluginsApi.d.ts +29 -0
- package/src/Api/QueryLanguageApi.d.ts +10 -10
- package/src/Api/SettingsPanelApi.d.ts +17 -0
- package/src/Api/SettingsPanelApi.js +2 -0
- package/src/Api/UserInterfaceApi.d.ts +5 -2
- package/src/PredefinedConfig/AlertState.d.ts +4 -6
- package/src/PredefinedConfig/CalculatedColumnState.d.ts +0 -1
- package/src/PredefinedConfig/Common/AdaptableQuery.d.ts +7 -4
- package/src/PredefinedConfig/Common/AdaptableQuery.js +3 -3
- package/src/PredefinedConfig/Common/CellHighlightInfo.d.ts +1 -12
- package/src/PredefinedConfig/Common/DataChangedInfo.d.ts +1 -1
- package/src/PredefinedConfig/Common/Enums.d.ts +0 -1
- package/src/PredefinedConfig/Common/Enums.js +0 -2
- package/src/PredefinedConfig/Common/FDC3Context.d.ts +4 -12
- package/src/PredefinedConfig/Common/RowHighlightInfo.d.ts +15 -0
- package/src/PredefinedConfig/Common/RowHighlightInfo.js +2 -0
- package/src/PredefinedConfig/Common/Types.d.ts +1 -1
- package/src/PredefinedConfig/CustomSortState.d.ts +0 -1
- package/src/PredefinedConfig/FlashingCellState.d.ts +5 -2
- package/src/PredefinedConfig/FreeTextColumnState.d.ts +1 -1
- package/src/PredefinedConfig/LayoutState.d.ts +0 -2
- package/src/PredefinedConfig/PredefinedConfig.d.ts +5 -2
- package/src/PredefinedConfig/SystemState.d.ts +2 -1
- package/src/Redux/ActionsReducers/ApplicationRedux.js +9 -3
- package/src/Redux/ActionsReducers/FlashingCellRedux.js +4 -8
- package/src/Redux/ActionsReducers/GridRedux.js +3 -1
- package/src/Redux/ActionsReducers/PopupRedux.js +13 -3
- package/src/Redux/ActionsReducers/QuickSearchRedux.js +3 -1
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +6 -5
- package/src/Redux/ActionsReducers/SystemRedux.js +16 -14
- package/src/Redux/ActionsReducers/ThemeRedux.js +3 -1
- package/src/Redux/Store/AdaptableReduxLocalStorageEngine.js +1 -1
- package/src/Redux/Store/AdaptableReduxMerger.js +5 -5
- package/src/Redux/Store/AdaptableStore.js +18 -6
- package/src/Strategy/AlertModule.js +14 -4
- package/src/Strategy/ConditionalStyleModule.js +4 -0
- package/src/Strategy/DataChangeHistoryModule.js +1 -1
- package/src/Strategy/FlashingCellModule.d.ts +1 -1
- package/src/Strategy/FlashingCellModule.js +34 -18
- package/src/Strategy/FreeTextColumnModule.d.ts +2 -2
- package/src/Strategy/FreeTextColumnModule.js +10 -0
- package/src/Strategy/LayoutModule.js +1 -6
- package/src/Strategy/TeamSharingModule.js +1 -1
- package/src/Strategy/ToolPanelModule.js +5 -3
- package/src/Strategy/Utilities/getFlashingTargetViewItems.d.ts +1 -1
- package/src/Strategy/Utilities/getFlashingTargetViewItems.js +3 -1
- package/src/Strategy/Utilities/getFormatColumnSettingsViewItems.js +1 -1
- package/src/Strategy/Utilities/getRuleViewItems.d.ts +0 -1
- package/src/Strategy/Utilities/getRuleViewItems.js +0 -1
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +8 -6
- package/src/Utilities/ExpressionFunctions/{aggregationExpressionFunctions.d.ts → aggregatedBooleanExpressionFunctions.d.ts} +1 -1
- package/src/Utilities/ExpressionFunctions/{aggregationExpressionFunctions.js → aggregatedBooleanExpressionFunctions.js} +4 -4
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +7 -0
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +42 -0
- package/src/Utilities/ExpressionFunctions/dateUtils.d.ts +1 -0
- package/src/Utilities/ExpressionFunctions/dateUtils.js +13 -0
- package/src/Utilities/ExpressionFunctions/deepMap.d.ts +35 -0
- package/src/Utilities/ExpressionFunctions/deepMap.js +283 -0
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +1 -1
- package/src/Utilities/ExpressionFunctions/groupingMap.d.ts +36 -0
- package/src/Utilities/ExpressionFunctions/groupingMap.js +104 -0
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +2 -3
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +13 -4
- package/src/Utilities/Extensions/StringExtensions.js +1 -1
- package/src/Utilities/Helpers/AdaptableHelper.js +3 -2
- package/src/Utilities/Helpers/CalendarHelper.js +220 -55
- package/src/Utilities/Interface/MessagePopups.d.ts +6 -2
- package/src/Utilities/ObjectFactory.js +5 -2
- package/src/Utilities/Services/AlertService.js +3 -3
- package/src/Utilities/Services/DataService.js +6 -1
- package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +2 -2
- package/src/Utilities/Services/LicenseService.js +1 -1
- package/src/Utilities/Services/QueryLanguageService.d.ts +2 -2
- package/src/Utilities/Services/QueryLanguageService.js +21 -16
- package/src/Utilities/Services/ReportService.js +7 -3
- package/src/Utilities/Services/TeamSharingService.js +5 -3
- package/src/View/AdaptablePopover/index.js +6 -1
- package/src/View/AdaptableView.js +1 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +5 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +5 -2
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/index.js +4 -1
- package/src/View/AdaptableWizardView/helper.js +5 -3
- package/src/View/Alert/Wizard/AlertButtonsEditor.d.ts +1 -1
- package/src/View/Alert/Wizard/AlertButtonsEditor.js +5 -1
- package/src/View/Alert/Wizard/AlertRulesWizardSection.d.ts +1 -1
- package/src/View/Alert/Wizard/AlertWizard.js +2 -2
- package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.d.ts +2 -3
- package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +3 -5
- package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +3 -2
- package/src/View/Alert/Wizard/isValidAlertRules.js +3 -3
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +17 -6
- package/src/View/CellSummary/CellSummaryViewPanel.js +1 -2
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +5 -2
- package/src/View/Components/EntityRulesEditor/index.js +9 -9
- package/src/View/Components/FilterForm/FilterForm.js +0 -2
- package/src/View/Components/FilterForm/QuickFilterForm.js +8 -7
- package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +1 -1
- package/src/View/Components/ModuleValueSelector/index.js +1 -1
- package/src/View/Components/Panels/PanelWithImage.d.ts +1 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.d.ts +0 -3
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +45 -87
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.d.ts +11 -0
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +78 -0
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.d.ts +3 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +19 -6
- package/src/View/Components/Popups/AdaptablePopup/Navigation.d.ts +1 -3
- package/src/View/Components/Popups/AdaptablePopup/Navigation.js +5 -13
- package/src/View/Components/Popups/AdaptablePopup/TopBar.js +5 -4
- package/src/View/Components/Popups/AdaptablePopup/useMenuItems.d.ts +2 -0
- package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +44 -0
- package/src/View/Components/Popups/AdaptablePopupConfirmation.js +3 -1
- package/src/View/Components/Popups/AdaptablePopupPrompt.d.ts +5 -12
- package/src/View/Components/Popups/AdaptablePopupPrompt.js +38 -37
- package/src/View/Components/Popups/AdaptablePopupTeamSharing.js +4 -1
- package/src/View/Components/ScopeComponent.js +4 -1
- package/src/View/Components/SharedProps/ModuleViewPopupProps.d.ts +1 -1
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +1 -1
- package/src/View/Components/ToolPanel/CustomToolPanelContent.js +6 -2
- package/src/View/Components/ToolPanel/ToolPanelPopup.js +7 -5
- package/src/View/Components/ToolPanel/ToolPanelWrapper.js +1 -1
- package/src/View/Components/ValueSelector/index.d.ts +2 -1
- package/src/View/Components/ValueSelector/index.js +5 -5
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleRuleWizardSection.js +2 -2
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.d.ts +8 -0
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.js +27 -0
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.js +17 -5
- package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +3 -1
- package/src/View/CustomSort/Wizard/CustomSortWizard.js +17 -5
- package/src/View/Dashboard/CustomToolbarWrapper.js +5 -1
- package/src/View/Dashboard/Dashboard.js +5 -5
- package/src/View/Dashboard/DashboardPopup.js +8 -6
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +2 -1
- package/src/View/Export/Wizard/NewReportWizard.js +13 -3
- package/src/View/Export/Wizard/ReportColumnTypeWizard.js +3 -1
- package/src/View/Export/Wizard/ReportRowTypeWizard.js +3 -1
- package/src/View/Filter/FilterViewPanel.d.ts +1 -4
- package/src/View/Filter/FilterViewPanel.js +1 -3
- package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +17 -26
- package/src/View/FlashingCell/Wizard/FlashingCellScopeWizardSection.js +19 -2
- package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +20 -5
- package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +2 -2
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +2 -2
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +11 -6
- package/src/View/FreeTextColumn/FreeTextColumnSummary.js +1 -2
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +12 -5
- package/src/View/GridInfo/AdaptableOptionsComponent.js +4 -1
- package/src/View/Layout/Wizard/LayoutEditor/index.js +5 -1
- package/src/View/Layout/Wizard/LayoutEditorWizard.js +7 -1
- package/src/View/PlusMinus/Wizard/PlusMinusWizard.js +8 -2
- package/src/View/Query/ExpandedQueryPopup.js +9 -2
- package/src/View/Query/QueryViewPanel.js +15 -10
- package/src/View/Query/Wizard/NamedQueryWizard.js +6 -4
- package/src/View/QuickSearch/QuickSearchPopup.js +3 -3
- package/src/View/QuickSearch/useQuickSearchDebounced.js +1 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.js +12 -2
- package/src/View/Schedule/Wizard/ScheduleWizard.js +14 -14
- package/src/View/SpecialColumnSettingsWizardStep.js +1 -1
- package/src/View/UIHelper.js +4 -1
- package/src/View/Wizard/AdaptableWizard.js +13 -4
- package/src/View/Wizard/Interface/IAdaptableWizard.d.ts +2 -0
- package/src/View/Wizard/OnePageAdaptableWizard.js +6 -2
- package/src/agGrid/Adaptable.d.ts +2 -5
- package/src/agGrid/Adaptable.js +127 -75
- package/src/agGrid/agGridHelper.js +3 -8
- package/src/agGrid/agGridMenuHelper.js +5 -9
- package/src/agGrid/editors/AdaptableDateEditor/index.js +1 -1
- package/src/agGrid/editors/AdaptableNumberEditor/index.js +1 -1
- package/src/components/ApplicationIcon.d.ts +1 -0
- package/src/components/ApplicationIcon.js +2 -2
- package/src/components/Dashboard/Dashboard.js +4 -1
- package/src/components/Dashboard/DashboardManager.d.ts +5 -3
- package/src/components/Dashboard/DashboardManager.js +33 -27
- package/src/components/Dropdown/index.js +8 -1
- package/src/components/DropdownButton/renderItem.js +1 -1
- package/src/components/ExpressionEditor/EditorInputReactive.d.ts +1 -1
- package/src/components/ExpressionEditor/EditorInputReactive.js +4 -2
- package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +4 -1
- package/src/components/ExpressionEditor/index.d.ts +1 -1
- package/src/components/ExpressionEditor/index.js +12 -5
- package/src/components/FormLayout/index.js +1 -1
- package/src/components/OverlayTrigger/Overlay.js +1 -1
- package/src/components/SizedContainer/index.js +7 -1
- package/src/components/WindowModal/WindowModal.js +4 -1
- package/src/metamodel/adaptable.metamodel.d.ts +75 -24
- package/src/metamodel/adaptable.metamodel.js +223 -115
- package/src/types.d.ts +6 -3
- package/themes/dark.css +4 -4
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -296,13 +296,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
296
296
|
"uiLabel": "Grid Api",
|
|
297
297
|
"reference": "GridApi"
|
|
298
298
|
},
|
|
299
|
-
{
|
|
300
|
-
"name": "internalApi",
|
|
301
|
-
"kind": "REFERENCE",
|
|
302
|
-
"description": "Api methods used *internally* within AdapTable.",
|
|
303
|
-
"uiLabel": "Internal Api",
|
|
304
|
-
"reference": "unknown"
|
|
305
|
-
},
|
|
306
299
|
{
|
|
307
300
|
"name": "layoutApi",
|
|
308
301
|
"kind": "REFERENCE",
|
|
@@ -366,6 +359,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
366
359
|
"uiLabel": "Scope Api",
|
|
367
360
|
"reference": "ScopeApi"
|
|
368
361
|
},
|
|
362
|
+
{
|
|
363
|
+
"name": "settingsPanelApi",
|
|
364
|
+
"kind": "REFERENCE",
|
|
365
|
+
"description": "Provides access to the Settings Panel",
|
|
366
|
+
"uiLabel": "Settings Panel Api",
|
|
367
|
+
"reference": "SettingsPanelApi"
|
|
368
|
+
},
|
|
369
369
|
{
|
|
370
370
|
"name": "shortcutApi",
|
|
371
371
|
"kind": "REFERENCE",
|
|
@@ -931,6 +931,15 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
931
931
|
"gridInfo": "item",
|
|
932
932
|
"defaultValue": "`adaptableId` value"
|
|
933
933
|
},
|
|
934
|
+
{
|
|
935
|
+
"name": "alertOptions",
|
|
936
|
+
"kind": "REFERENCE",
|
|
937
|
+
"description": "Options for managing Alerts in AdapTable",
|
|
938
|
+
"uiLabel": "Alert Options",
|
|
939
|
+
"isOptional": true,
|
|
940
|
+
"gridInfo": "container",
|
|
941
|
+
"reference": "AlertOptions"
|
|
942
|
+
},
|
|
934
943
|
{
|
|
935
944
|
"name": "autogeneratePrimaryKey",
|
|
936
945
|
"kind": "boolean",
|
|
@@ -1030,7 +1039,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1030
1039
|
{
|
|
1031
1040
|
"name": "gridOptions",
|
|
1032
1041
|
"kind": "REFERENCE",
|
|
1033
|
-
"description": "The AG Grid object which AdapTable interacts with. Note: if using React or Angular
|
|
1042
|
+
"description": "The AG Grid object which AdapTable interacts with. Note: if using AdapTable React or AdapTable Angular, no need to populate this property as AdapTable wires it up differently",
|
|
1034
1043
|
"uiLabel": "Grid Options",
|
|
1035
1044
|
"isOptional": true,
|
|
1036
1045
|
"defaultValue": "n/a (Mandatory)",
|
|
@@ -1061,6 +1070,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1061
1070
|
"gridInfo": "container",
|
|
1062
1071
|
"reference": "MenuOptions"
|
|
1063
1072
|
},
|
|
1073
|
+
{
|
|
1074
|
+
"name": "modules",
|
|
1075
|
+
"kind": "unknown",
|
|
1076
|
+
"description": "AG Grid Modules that should be provided - needs to be provided separately",
|
|
1077
|
+
"uiLabel": "Modules",
|
|
1078
|
+
"isOptional": true
|
|
1079
|
+
},
|
|
1064
1080
|
{
|
|
1065
1081
|
"name": "notificationsOptions",
|
|
1066
1082
|
"kind": "REFERENCE",
|
|
@@ -1812,6 +1828,61 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1812
1828
|
"kind": "TypeAlias",
|
|
1813
1829
|
"description": "Form to show in an Alert"
|
|
1814
1830
|
},
|
|
1831
|
+
"AlertOptions": {
|
|
1832
|
+
"name": "AlertOptions",
|
|
1833
|
+
"kind": "Interface",
|
|
1834
|
+
"description": "Options related to Alerts in Adaptable.",
|
|
1835
|
+
"properties": [
|
|
1836
|
+
{
|
|
1837
|
+
"name": "actionHandlers",
|
|
1838
|
+
"kind": "unknown",
|
|
1839
|
+
"description": "onClick Handlers for Alert Buttons (defined in Alert State)",
|
|
1840
|
+
"uiLabel": "Action Handlers",
|
|
1841
|
+
"isOptional": true
|
|
1842
|
+
},
|
|
1843
|
+
{
|
|
1844
|
+
"name": "alertForms",
|
|
1845
|
+
"kind": "unknown",
|
|
1846
|
+
"description": "Full definitions of Alert Forms - the names of which are provided in Alert State",
|
|
1847
|
+
"uiLabel": "Alert Forms",
|
|
1848
|
+
"isOptional": true
|
|
1849
|
+
},
|
|
1850
|
+
{
|
|
1851
|
+
"name": "alertMessageText",
|
|
1852
|
+
"kind": "unknown",
|
|
1853
|
+
"description": "Function providing Message to display in Alert; if empty, AdapTable provides dynamically",
|
|
1854
|
+
"uiLabel": "Alert Message Text",
|
|
1855
|
+
"isOptional": true
|
|
1856
|
+
},
|
|
1857
|
+
{
|
|
1858
|
+
"name": "cellHighlightDuration",
|
|
1859
|
+
"kind": "number",
|
|
1860
|
+
"description": "How long (in ms) a cell will be highlighted",
|
|
1861
|
+
"uiLabel": "Cell Highlight Duration",
|
|
1862
|
+
"isOptional": true,
|
|
1863
|
+
"gridInfo": "item",
|
|
1864
|
+
"defaultValue": "3000"
|
|
1865
|
+
},
|
|
1866
|
+
{
|
|
1867
|
+
"name": "dataChangeDetectionPolicy",
|
|
1868
|
+
"kind": "unknown",
|
|
1869
|
+
"description": "Whether Alert rule is evaluated against the `rawValue` or `formattedValue` of the changed cell data",
|
|
1870
|
+
"uiLabel": "Data Change Detection Policy",
|
|
1871
|
+
"isOptional": true,
|
|
1872
|
+
"gridInfo": "item",
|
|
1873
|
+
"defaultValue": "'rawValue'"
|
|
1874
|
+
},
|
|
1875
|
+
{
|
|
1876
|
+
"name": "maxAlertsInStore",
|
|
1877
|
+
"kind": "number",
|
|
1878
|
+
"description": "How many alerts held in State at any one time; when limit is breached, oldest alert will be removed",
|
|
1879
|
+
"uiLabel": "Max Alerts In Store",
|
|
1880
|
+
"isOptional": true,
|
|
1881
|
+
"gridInfo": "item",
|
|
1882
|
+
"defaultValue": "20"
|
|
1883
|
+
}
|
|
1884
|
+
]
|
|
1885
|
+
},
|
|
1815
1886
|
"AlertProperties": {
|
|
1816
1887
|
"name": "AlertProperties",
|
|
1817
1888
|
"kind": "Interface",
|
|
@@ -1855,9 +1926,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1855
1926
|
{
|
|
1856
1927
|
"name": "PreventEdit",
|
|
1857
1928
|
"kind": "boolean",
|
|
1858
|
-
"description": "Automatically prevent any cell edit which triggered the Alert (i.e. validation)
|
|
1929
|
+
"description": "Automatically prevent any cell edit which triggered the Alert (i.e. validation)",
|
|
1859
1930
|
"uiLabel": "Prevent Edit",
|
|
1860
|
-
"isOptional": true
|
|
1931
|
+
"isOptional": true,
|
|
1932
|
+
"defaultValue": "false"
|
|
1861
1933
|
},
|
|
1862
1934
|
{
|
|
1863
1935
|
"name": "ShowInDiv",
|
|
@@ -1878,8 +1950,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1878
1950
|
"kind": "unknown",
|
|
1879
1951
|
"description": "Alert Definitions - will trigger Alerts when rule is met",
|
|
1880
1952
|
"uiLabel": "Alert Definitions",
|
|
1881
|
-
"isOptional": true
|
|
1882
|
-
"defaultValue": "null"
|
|
1953
|
+
"isOptional": true
|
|
1883
1954
|
}
|
|
1884
1955
|
]
|
|
1885
1956
|
},
|
|
@@ -2215,8 +2286,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2215
2286
|
"kind": "unknown",
|
|
2216
2287
|
"description": "Collection of Calculated Columns",
|
|
2217
2288
|
"uiLabel": "Calculated Columns",
|
|
2218
|
-
"isOptional": true
|
|
2219
|
-
"defaultValue": "empty"
|
|
2289
|
+
"isOptional": true
|
|
2220
2290
|
}
|
|
2221
2291
|
]
|
|
2222
2292
|
},
|
|
@@ -2245,6 +2315,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2245
2315
|
"description": "Id of Column containing Cell",
|
|
2246
2316
|
"uiLabel": "Column Id"
|
|
2247
2317
|
},
|
|
2318
|
+
{
|
|
2319
|
+
"name": "highlightStyle",
|
|
2320
|
+
"kind": "REFERENCE",
|
|
2321
|
+
"description": "Adaptable Style to use in the Cell Highlight",
|
|
2322
|
+
"uiLabel": "Highlight Style",
|
|
2323
|
+
"reference": "AdaptableStyle"
|
|
2324
|
+
},
|
|
2248
2325
|
{
|
|
2249
2326
|
"name": "primaryKeyValue",
|
|
2250
2327
|
"kind": "unknown",
|
|
@@ -2586,12 +2663,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2586
2663
|
"description": "Returns all Groupable Columns",
|
|
2587
2664
|
"uiLabel": "Get Groupable Columns"
|
|
2588
2665
|
},
|
|
2589
|
-
{
|
|
2590
|
-
"name": "getNumericArrayColumns",
|
|
2591
|
-
"kind": "function",
|
|
2592
|
-
"description": "Returns all numeric array Columns",
|
|
2593
|
-
"uiLabel": "Get Numeric Array Columns"
|
|
2594
|
-
},
|
|
2595
2666
|
{
|
|
2596
2667
|
"name": "getNumericColumns",
|
|
2597
2668
|
"kind": "function",
|
|
@@ -3240,7 +3311,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3240
3311
|
{
|
|
3241
3312
|
"name": "agGridContainerWaitTimeout",
|
|
3242
3313
|
"kind": "number",
|
|
3243
|
-
"description": "how long AdapTable waits for AG Grid before giving up connecting to it; useful when AG Grid is instantiated separately (eg: by React or Angular
|
|
3314
|
+
"description": "how long AdapTable waits for AG Grid before giving up connecting to it; useful when AG Grid is instantiated separately (eg: by AdapTable React or AdapTable Angular)",
|
|
3244
3315
|
"uiLabel": "Ag Grid Container Wait Timeout",
|
|
3245
3316
|
"isOptional": true,
|
|
3246
3317
|
"gridInfo": "item",
|
|
@@ -3257,7 +3328,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3257
3328
|
},
|
|
3258
3329
|
{
|
|
3259
3330
|
"name": "modalContainer",
|
|
3260
|
-
"kind": "
|
|
3331
|
+
"kind": "unknown",
|
|
3261
3332
|
"description": "Name of div where modals appear (if null, will be centre of page)",
|
|
3262
3333
|
"uiLabel": "Modal Container",
|
|
3263
3334
|
"isOptional": true,
|
|
@@ -3520,8 +3591,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3520
3591
|
"kind": "unknown",
|
|
3521
3592
|
"description": "Collection of Custom Sort objects.",
|
|
3522
3593
|
"uiLabel": "Custom Sorts",
|
|
3523
|
-
"isOptional": true
|
|
3524
|
-
"defaultValue": "[]"
|
|
3594
|
+
"isOptional": true
|
|
3525
3595
|
}
|
|
3526
3596
|
]
|
|
3527
3597
|
},
|
|
@@ -4443,7 +4513,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4443
4513
|
{
|
|
4444
4514
|
"name": "defaultAccessLevel",
|
|
4445
4515
|
"kind": "unknown",
|
|
4446
|
-
"description": "AccessLevel to use when an Entitlement is not explicitly set;
|
|
4516
|
+
"description": "AccessLevel to use when an Entitlement is not explicitly set; can be hardcoded value or a function to invoke",
|
|
4447
4517
|
"uiLabel": "Default Access Level",
|
|
4448
4518
|
"isOptional": true,
|
|
4449
4519
|
"gridInfo": "item",
|
|
@@ -5048,12 +5118,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5048
5118
|
"kind": "Interface",
|
|
5049
5119
|
"description": "General-purpose context type, as defined by [FDC3](https://fdc3.finos.org/docs/1.0/context-intro). A context object is a well-understood datum that is streamable between FDC3 participants. As a result it has a field describing what type it is, and data indicating its identity. Use this as a base to derive your own with any custom properties or metadata.",
|
|
5050
5120
|
"properties": [
|
|
5051
|
-
{
|
|
5052
|
-
"name": "(indexer)",
|
|
5053
|
-
"kind": "indexType",
|
|
5054
|
-
"description": "Custom properties and metadata. This can be extended in specific context object.",
|
|
5055
|
-
"uiLabel": "(indexer)"
|
|
5056
|
-
},
|
|
5057
5121
|
{
|
|
5058
5122
|
"name": "id",
|
|
5059
5123
|
"kind": "unknown",
|
|
@@ -5410,7 +5474,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5410
5474
|
{
|
|
5411
5475
|
"name": "useAgGridFilterFormStyle",
|
|
5412
5476
|
"kind": "boolean",
|
|
5413
|
-
"description": "Styles Adaptable Filter Form to match AG Grid's
|
|
5477
|
+
"description": "Styles Adaptable Filter Form to match AG Grid's styling (if using Balham theme)",
|
|
5414
5478
|
"uiLabel": "Use Ag Grid Filter Form Style",
|
|
5415
5479
|
"isOptional": true,
|
|
5416
5480
|
"gridInfo": "item",
|
|
@@ -5426,9 +5490,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5426
5490
|
{
|
|
5427
5491
|
"name": "suppressFilterSearchBar",
|
|
5428
5492
|
"kind": "boolean",
|
|
5429
|
-
"description": "Prevents AdapTable from filtering the list of values client-side; When true, values is called each time the search bar is changed
|
|
5493
|
+
"description": "Prevents AdapTable from filtering the list of values client-side; When true, values is called each time the search bar is changed",
|
|
5430
5494
|
"uiLabel": "Suppress Filter Search Bar",
|
|
5431
|
-
"isOptional": true
|
|
5495
|
+
"isOptional": true,
|
|
5496
|
+
"defaultValue": "false"
|
|
5432
5497
|
}
|
|
5433
5498
|
]
|
|
5434
5499
|
},
|
|
@@ -5723,8 +5788,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5723
5788
|
"kind": "unknown",
|
|
5724
5789
|
"description": "Flashing Cell Definitions - will colour cells/rows when rule is met",
|
|
5725
5790
|
"uiLabel": "Flashing Cell Definitions",
|
|
5726
|
-
"isOptional": true
|
|
5727
|
-
"defaultValue": "null"
|
|
5791
|
+
"isOptional": true
|
|
5728
5792
|
}
|
|
5729
5793
|
]
|
|
5730
5794
|
},
|
|
@@ -6011,7 +6075,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6011
6075
|
"kind": "unknown",
|
|
6012
6076
|
"description": "Whether Column is String, Number, Boolean or Date",
|
|
6013
6077
|
"uiLabel": "Data Type",
|
|
6014
|
-
"isOptional": true,
|
|
6015
6078
|
"defaultValue": "'String'"
|
|
6016
6079
|
},
|
|
6017
6080
|
{
|
|
@@ -6082,12 +6145,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6082
6145
|
"description": "Checks if a User Edit was in a Free Text Column",
|
|
6083
6146
|
"uiLabel": "Check Free Text Column For Data Change"
|
|
6084
6147
|
},
|
|
6085
|
-
{
|
|
6086
|
-
"name": "createFreeTextColumn",
|
|
6087
|
-
"kind": "function",
|
|
6088
|
-
"description": "Creates new FreeTextColumn and adds it to Adaptable State",
|
|
6089
|
-
"uiLabel": "Create Free Text Column"
|
|
6090
|
-
},
|
|
6091
6148
|
{
|
|
6092
6149
|
"name": "deleteFreeTextColumn",
|
|
6093
6150
|
"kind": "function",
|
|
@@ -7067,9 +7124,15 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7067
7124
|
{
|
|
7068
7125
|
"name": "dataRows",
|
|
7069
7126
|
"kind": "unknown",
|
|
7070
|
-
"description": "
|
|
7127
|
+
"description": "Data rows that have been added, updated, or deleted",
|
|
7071
7128
|
"uiLabel": "Data Rows"
|
|
7072
7129
|
},
|
|
7130
|
+
{
|
|
7131
|
+
"name": "rowNodes",
|
|
7132
|
+
"kind": "unknown",
|
|
7133
|
+
"description": "AG Grid Row Nodes that were affected by the Change",
|
|
7134
|
+
"uiLabel": "Row Nodes"
|
|
7135
|
+
},
|
|
7073
7136
|
{
|
|
7074
7137
|
"name": "rowTrigger",
|
|
7075
7138
|
"kind": "unknown",
|
|
@@ -7196,19 +7259,19 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7196
7259
|
{
|
|
7197
7260
|
"name": "id",
|
|
7198
7261
|
"kind": "unknown",
|
|
7199
|
-
"description": "The instrument data
|
|
7262
|
+
"description": "The instrument data",
|
|
7200
7263
|
"uiLabel": "Id"
|
|
7201
7264
|
},
|
|
7202
7265
|
{
|
|
7203
7266
|
"name": "name",
|
|
7204
7267
|
"kind": "string",
|
|
7205
|
-
"description": "Free text name of
|
|
7268
|
+
"description": "Free text name of instrument",
|
|
7206
7269
|
"uiLabel": "Name"
|
|
7207
7270
|
},
|
|
7208
7271
|
{
|
|
7209
7272
|
"name": "type",
|
|
7210
7273
|
"kind": "unknown",
|
|
7211
|
-
"description": "
|
|
7274
|
+
"description": "Context type is always 'instrument'",
|
|
7212
7275
|
"uiLabel": "Type"
|
|
7213
7276
|
}
|
|
7214
7277
|
]
|
|
@@ -7749,6 +7812,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7749
7812
|
"description": "Whether this Layout should be auto saved (based on Layout State and Layout Options)",
|
|
7750
7813
|
"uiLabel": "Should Auto Save Layout"
|
|
7751
7814
|
},
|
|
7815
|
+
{
|
|
7816
|
+
"name": "showChangeColumnCaption",
|
|
7817
|
+
"kind": "function",
|
|
7818
|
+
"description": "Opens change column caption popup",
|
|
7819
|
+
"uiLabel": "Show Change Column Caption"
|
|
7820
|
+
},
|
|
7752
7821
|
{
|
|
7753
7822
|
"name": "showLayoutPopup",
|
|
7754
7823
|
"kind": "function",
|
|
@@ -7846,16 +7915,14 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7846
7915
|
"kind": "string",
|
|
7847
7916
|
"description": "Layout which will be loaded when AdapTable starts - must match `Name` property in Layout",
|
|
7848
7917
|
"uiLabel": "Current Layout",
|
|
7849
|
-
"isOptional": true
|
|
7850
|
-
"defaultValue": "''"
|
|
7918
|
+
"isOptional": true
|
|
7851
7919
|
},
|
|
7852
7920
|
{
|
|
7853
7921
|
"name": "Layouts",
|
|
7854
7922
|
"kind": "unknown",
|
|
7855
7923
|
"description": "Collection of Layout objects - listed in Layout toolbar and Tool Panel",
|
|
7856
7924
|
"uiLabel": "Layouts",
|
|
7857
|
-
"isOptional": true
|
|
7858
|
-
"defaultValue": "null"
|
|
7925
|
+
"isOptional": true
|
|
7859
7926
|
}
|
|
7860
7927
|
]
|
|
7861
7928
|
},
|
|
@@ -7998,38 +8065,8 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7998
8065
|
"NotificationsOptions": {
|
|
7999
8066
|
"name": "NotificationsOptions",
|
|
8000
8067
|
"kind": "Interface",
|
|
8001
|
-
"description": "Options related to
|
|
8068
|
+
"description": "Options related to System Status Messages and Notifications in Adaptable.",
|
|
8002
8069
|
"properties": [
|
|
8003
|
-
{
|
|
8004
|
-
"name": "actionHandlers",
|
|
8005
|
-
"kind": "unknown",
|
|
8006
|
-
"description": "onClick Handlers for Alert Buttons (defined in Alert State)",
|
|
8007
|
-
"uiLabel": "Action Handlers",
|
|
8008
|
-
"isOptional": true
|
|
8009
|
-
},
|
|
8010
|
-
{
|
|
8011
|
-
"name": "alertForms",
|
|
8012
|
-
"kind": "unknown",
|
|
8013
|
-
"description": "Full definitions of Alert Forms - the names of which are provided in Alert State",
|
|
8014
|
-
"uiLabel": "Alert Forms",
|
|
8015
|
-
"isOptional": true
|
|
8016
|
-
},
|
|
8017
|
-
{
|
|
8018
|
-
"name": "alertMessageText",
|
|
8019
|
-
"kind": "unknown",
|
|
8020
|
-
"description": "Function providing Message to display in Alert; if empty, AdapTable provides dynamically",
|
|
8021
|
-
"uiLabel": "Alert Message Text",
|
|
8022
|
-
"isOptional": true
|
|
8023
|
-
},
|
|
8024
|
-
{
|
|
8025
|
-
"name": "cellHighlightDuration",
|
|
8026
|
-
"kind": "number",
|
|
8027
|
-
"description": "How long (in ms) a cell will be highlighted",
|
|
8028
|
-
"uiLabel": "Cell Highlight Duration",
|
|
8029
|
-
"isOptional": true,
|
|
8030
|
-
"gridInfo": "item",
|
|
8031
|
-
"defaultValue": "3000"
|
|
8032
|
-
},
|
|
8033
8070
|
{
|
|
8034
8071
|
"name": "closeWhenClicked",
|
|
8035
8072
|
"kind": "boolean",
|
|
@@ -8039,15 +8076,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8039
8076
|
"gridInfo": "item",
|
|
8040
8077
|
"defaultValue": "false"
|
|
8041
8078
|
},
|
|
8042
|
-
{
|
|
8043
|
-
"name": "dataChangeDetectionPolicy",
|
|
8044
|
-
"kind": "unknown",
|
|
8045
|
-
"description": "Whether Alert rule is evaluated against the `rawValue` or `formattedValue` of the changed cell data",
|
|
8046
|
-
"uiLabel": "Data Change Detection Policy",
|
|
8047
|
-
"isOptional": true,
|
|
8048
|
-
"gridInfo": "item",
|
|
8049
|
-
"defaultValue": "'rawValue'"
|
|
8050
|
-
},
|
|
8051
8079
|
{
|
|
8052
8080
|
"name": "duration",
|
|
8053
8081
|
"kind": "unknown",
|
|
@@ -8066,15 +8094,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8066
8094
|
"gridInfo": "item",
|
|
8067
8095
|
"defaultValue": "false"
|
|
8068
8096
|
},
|
|
8069
|
-
{
|
|
8070
|
-
"name": "maxAlertsInStore",
|
|
8071
|
-
"kind": "number",
|
|
8072
|
-
"description": "How many alerts held in State at any one time; when limit is breached, oldest alert will be removed",
|
|
8073
|
-
"uiLabel": "Max Alerts In Store",
|
|
8074
|
-
"isOptional": true,
|
|
8075
|
-
"gridInfo": "item",
|
|
8076
|
-
"defaultValue": "20"
|
|
8077
|
-
},
|
|
8078
8097
|
{
|
|
8079
8098
|
"name": "maxNotifications",
|
|
8080
8099
|
"kind": "number",
|
|
@@ -8230,6 +8249,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8230
8249
|
"description": "Clears any objects in internal OpenFin state created by AdapTable",
|
|
8231
8250
|
"uiLabel": "Clear Open Fin Internal State"
|
|
8232
8251
|
},
|
|
8252
|
+
{
|
|
8253
|
+
"name": "getAlertOptions",
|
|
8254
|
+
"kind": "function",
|
|
8255
|
+
"description": "Gets the Alert section from Adaptable Options",
|
|
8256
|
+
"uiLabel": "Get Alert Options"
|
|
8257
|
+
},
|
|
8233
8258
|
{
|
|
8234
8259
|
"name": "getCurrentLiveOpenFinReport",
|
|
8235
8260
|
"kind": "function",
|
|
@@ -8426,7 +8451,57 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8426
8451
|
"PluginsApi": {
|
|
8427
8452
|
"name": "PluginsApi",
|
|
8428
8453
|
"kind": "Interface",
|
|
8429
|
-
"description": "API methods dealing with AdapTable plugins"
|
|
8454
|
+
"description": "API methods dealing with AdapTable plugins",
|
|
8455
|
+
"properties": [
|
|
8456
|
+
{
|
|
8457
|
+
"name": "getFinancePluginApi",
|
|
8458
|
+
"kind": "function",
|
|
8459
|
+
"description": "Returns Finance API class in Adaptable API",
|
|
8460
|
+
"uiLabel": "Get Finance Plugin Api"
|
|
8461
|
+
},
|
|
8462
|
+
{
|
|
8463
|
+
"name": "getGlue42PluginApi",
|
|
8464
|
+
"kind": "function",
|
|
8465
|
+
"description": "Returns Glue42 API class in Adaptable API",
|
|
8466
|
+
"uiLabel": "Get Glue42Plugin Api"
|
|
8467
|
+
},
|
|
8468
|
+
{
|
|
8469
|
+
"name": "getipushpullPluginApi",
|
|
8470
|
+
"kind": "function",
|
|
8471
|
+
"description": "Returns ipushpull API class in Adaptable API",
|
|
8472
|
+
"uiLabel": "Getipushpull Plugin Api"
|
|
8473
|
+
},
|
|
8474
|
+
{
|
|
8475
|
+
"name": "getOpenFinPluginApi",
|
|
8476
|
+
"kind": "function",
|
|
8477
|
+
"description": "Returns OpenFin API class in Adaptable API",
|
|
8478
|
+
"uiLabel": "Get Open Fin Plugin Api"
|
|
8479
|
+
},
|
|
8480
|
+
{
|
|
8481
|
+
"name": "getPluginsState",
|
|
8482
|
+
"kind": "function",
|
|
8483
|
+
"description": "Retrieves the Plugin State (internal only)",
|
|
8484
|
+
"uiLabel": "Get Plugins State"
|
|
8485
|
+
},
|
|
8486
|
+
{
|
|
8487
|
+
"name": "getPluginState",
|
|
8488
|
+
"kind": "function",
|
|
8489
|
+
"description": "Gets the State for a given Plugin",
|
|
8490
|
+
"uiLabel": "Get Plugin State"
|
|
8491
|
+
},
|
|
8492
|
+
{
|
|
8493
|
+
"name": "registerPlugin",
|
|
8494
|
+
"kind": "function",
|
|
8495
|
+
"description": "Registers a Plugin (internal method)",
|
|
8496
|
+
"uiLabel": "Register Plugin"
|
|
8497
|
+
},
|
|
8498
|
+
{
|
|
8499
|
+
"name": "setPluginState",
|
|
8500
|
+
"kind": "function",
|
|
8501
|
+
"description": "Sets the initial state for a given plugin (internal method)",
|
|
8502
|
+
"uiLabel": "Set Plugin State"
|
|
8503
|
+
}
|
|
8504
|
+
]
|
|
8430
8505
|
},
|
|
8431
8506
|
"PlusMinusApi": {
|
|
8432
8507
|
"name": "PlusMinusApi",
|
|
@@ -8557,7 +8632,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8557
8632
|
{
|
|
8558
8633
|
"name": "Alert",
|
|
8559
8634
|
"kind": "REFERENCE",
|
|
8560
|
-
"description": "
|
|
8635
|
+
"description": "Collection of `AlertDefinitions` which will fire Alerts when the rule is met",
|
|
8561
8636
|
"uiLabel": "Alert",
|
|
8562
8637
|
"isOptional": true,
|
|
8563
8638
|
"reference": "AlertState"
|
|
@@ -8626,6 +8701,14 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8626
8701
|
"isOptional": true,
|
|
8627
8702
|
"reference": "FilterState"
|
|
8628
8703
|
},
|
|
8704
|
+
{
|
|
8705
|
+
"name": "FlashingCell",
|
|
8706
|
+
"kind": "REFERENCE",
|
|
8707
|
+
"description": "* Objects which define which cells flash in response to data changes",
|
|
8708
|
+
"uiLabel": "Flashing Cell",
|
|
8709
|
+
"isOptional": true,
|
|
8710
|
+
"reference": "FlashingCellState"
|
|
8711
|
+
},
|
|
8629
8712
|
{
|
|
8630
8713
|
"name": "FormatColumn",
|
|
8631
8714
|
"kind": "REFERENCE",
|
|
@@ -8914,7 +8997,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8914
8997
|
{
|
|
8915
8998
|
"name": "getColumnsFromExpression",
|
|
8916
8999
|
"kind": "function",
|
|
8917
|
-
"description": "Returns all Columns referenced in a
|
|
9000
|
+
"description": "Returns all Columns referenced in a QueryExpression",
|
|
8918
9001
|
"uiLabel": "Get Columns From Expression"
|
|
8919
9002
|
},
|
|
8920
9003
|
{
|
|
@@ -8930,10 +9013,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8930
9013
|
"uiLabel": "Get Queryable Column Ids"
|
|
8931
9014
|
},
|
|
8932
9015
|
{
|
|
8933
|
-
"name": "
|
|
9016
|
+
"name": "isValidAggregatedBooleanExpression",
|
|
8934
9017
|
"kind": "function",
|
|
8935
|
-
"description": "Whether the given
|
|
8936
|
-
"uiLabel": "Is Valid
|
|
9018
|
+
"description": "Whether the given AggregatedBooleanExpression is valid",
|
|
9019
|
+
"uiLabel": "Is Valid Aggregated Boolean Expression"
|
|
8937
9020
|
},
|
|
8938
9021
|
{
|
|
8939
9022
|
"name": "isValidBooleanExpression",
|
|
@@ -8955,10 +9038,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8955
9038
|
"description": "Options for managing Expressions using AdapTableQL",
|
|
8956
9039
|
"properties": [
|
|
8957
9040
|
{
|
|
8958
|
-
"name": "
|
|
9041
|
+
"name": "defaultAggregatedBooleanFunctions",
|
|
8959
9042
|
"kind": "REFERENCE",
|
|
8960
|
-
"description": "
|
|
8961
|
-
"uiLabel": "Default
|
|
9043
|
+
"description": "Aggregated Boolean Expression Functions available in AdapTableQL",
|
|
9044
|
+
"uiLabel": "Default Aggregated Boolean Functions",
|
|
8962
9045
|
"isOptional": true,
|
|
8963
9046
|
"gridInfo": "item",
|
|
8964
9047
|
"defaultValue": "null (sets all)",
|
|
@@ -9868,6 +9951,25 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
9868
9951
|
}
|
|
9869
9952
|
]
|
|
9870
9953
|
},
|
|
9954
|
+
"SettingsPanelApi": {
|
|
9955
|
+
"name": "SettingsPanelApi",
|
|
9956
|
+
"kind": "Interface",
|
|
9957
|
+
"description": "Provides run-time access to the Settings Panel",
|
|
9958
|
+
"properties": [
|
|
9959
|
+
{
|
|
9960
|
+
"name": "showCustomSettingsPanel",
|
|
9961
|
+
"kind": "function",
|
|
9962
|
+
"description": "Opens a the settings panel to the custom module",
|
|
9963
|
+
"uiLabel": "Show Custom Settings Panel"
|
|
9964
|
+
},
|
|
9965
|
+
{
|
|
9966
|
+
"name": "showSettingsPanel",
|
|
9967
|
+
"kind": "function",
|
|
9968
|
+
"description": "Opens settings panel to specified module, when not specified it opens the first available module",
|
|
9969
|
+
"uiLabel": "Show Settings Panel"
|
|
9970
|
+
}
|
|
9971
|
+
]
|
|
9972
|
+
},
|
|
9871
9973
|
"SharedEntity": {
|
|
9872
9974
|
"name": "SharedEntity",
|
|
9873
9975
|
"kind": "Interface",
|
|
@@ -10321,7 +10423,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10321
10423
|
"SystemStatusMessageDisplayedInfo": {
|
|
10322
10424
|
"name": "SystemStatusMessageDisplayedInfo",
|
|
10323
10425
|
"kind": "Interface",
|
|
10324
|
-
"description": "Object returned by the SystemStatusMessageDisplayed
|
|
10426
|
+
"description": "Object returned by the `SystemStatusMessageDisplayed` event",
|
|
10325
10427
|
"properties": [
|
|
10326
10428
|
{
|
|
10327
10429
|
"name": "systemStatusMessageInfo",
|
|
@@ -10445,14 +10547,14 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10445
10547
|
{
|
|
10446
10548
|
"name": "getSharedEntities",
|
|
10447
10549
|
"kind": "unknown",
|
|
10448
|
-
"description": "
|
|
10550
|
+
"description": "Async function which retrieves available Shared Entities that user can download and merge automatically with Adaptable State",
|
|
10449
10551
|
"uiLabel": "Get Shared Entities",
|
|
10450
10552
|
"defaultValue": "null"
|
|
10451
10553
|
},
|
|
10452
10554
|
{
|
|
10453
10555
|
"name": "setSharedEntities",
|
|
10454
10556
|
"kind": "unknown",
|
|
10455
|
-
"description": "
|
|
10557
|
+
"description": "Async function which uploads Shared Entities so they can be downloaded by other members of the team",
|
|
10456
10558
|
"uiLabel": "Set Shared Entities",
|
|
10457
10559
|
"defaultValue": "null"
|
|
10458
10560
|
},
|
|
@@ -10844,6 +10946,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10844
10946
|
"description": "Retrieves `permittedValues` property from User Interface Options",
|
|
10845
10947
|
"uiLabel": "Get All Permitted Values Items"
|
|
10846
10948
|
},
|
|
10949
|
+
{
|
|
10950
|
+
"name": "getBulkUpdatePermittedValuesForColumn",
|
|
10951
|
+
"kind": "function",
|
|
10952
|
+
"description": "Retrieves Permitted values for Bulk Update Module",
|
|
10953
|
+
"uiLabel": "Get Bulk Update Permitted Values For Column"
|
|
10954
|
+
},
|
|
10847
10955
|
{
|
|
10848
10956
|
"name": "getColorPalette",
|
|
10849
10957
|
"kind": "function",
|
|
@@ -10853,7 +10961,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10853
10961
|
{
|
|
10854
10962
|
"name": "getCustomSortPermittedValuesForColumn",
|
|
10855
10963
|
"kind": "function",
|
|
10856
|
-
"description": "Retrieves Permitted values for Custom
|
|
10964
|
+
"description": "Retrieves Permitted values for Custom Sort Module",
|
|
10857
10965
|
"uiLabel": "Get Custom Sort Permitted Values For Column"
|
|
10858
10966
|
},
|
|
10859
10967
|
{
|
|
@@ -10877,7 +10985,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10877
10985
|
{
|
|
10878
10986
|
"name": "getFilterPermittedValuesForColumn",
|
|
10879
10987
|
"kind": "function",
|
|
10880
|
-
"description": "Retrieves Permitted values for filtering by column values in Floating Filter and
|
|
10988
|
+
"description": "Retrieves Permitted values for filtering by column values in Floating Filter and Quick Filter Bar",
|
|
10881
10989
|
"uiLabel": "Get Filter Permitted Values For Column"
|
|
10882
10990
|
},
|
|
10883
10991
|
{
|
|
@@ -10985,7 +11093,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10985
11093
|
"description": "Which sections to show in the Grid Info Screen",
|
|
10986
11094
|
"uiLabel": "Grid Info Sections",
|
|
10987
11095
|
"isOptional": true,
|
|
10988
|
-
"defaultValue": "['GridSummary', 'AdaptableOptions'
|
|
11096
|
+
"defaultValue": "['GridSummary', 'AdaptableOptions', 'ColumnInfo']",
|
|
10989
11097
|
"reference": "unknown"
|
|
10990
11098
|
},
|
|
10991
11099
|
{
|