@adaptabletools/adaptable 11.0.0-canary.3 → 11.0.0-canary.7
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 +5 -4
- package/agGrid.js +9 -7
- package/base.css +135 -69
- package/bundle.cjs.js +104 -99
- package/index.css +136 -69
- package/package.json +3 -3
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/AdaptableNoCodeWizard.d.ts +7 -5
- package/src/AdaptableInterfaces/IAdaptable.d.ts +1 -0
- package/src/AdaptableOptions/AdaptableFrameworkComponent.d.ts +1 -3
- package/src/AdaptableOptions/AdaptableOptions.d.ts +14 -7
- package/src/AdaptableOptions/{QueryLanguageOptions.d.ts → AdaptableQLOptions.d.ts} +34 -9
- package/src/AdaptableOptions/{QueryLanguageOptions.js → AdaptableQLOptions.js} +0 -0
- 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/FilterOptions.d.ts +1 -1
- package/src/AdaptableOptions/GeneralOptions.d.ts +0 -7
- package/src/AdaptableOptions/NotificationsOptions.d.ts +1 -78
- package/src/AdaptableOptions/SearchOptions.d.ts +0 -9
- package/src/AdaptableOptions/StateOptions.d.ts +9 -8
- package/src/AdaptableOptions/TeamSharingOptions.d.ts +2 -2
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +0 -2
- 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/CalculatedColumnApi.d.ts +2 -9
- 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 +13 -2
- 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 +5 -2
- package/src/Api/Implementation/ApiBase.js +8 -2
- package/src/Api/Implementation/CalculatedColumnApiImpl.js +3 -4
- package/src/Api/Implementation/ColumnApiImpl.d.ts +0 -1
- package/src/Api/Implementation/ColumnApiImpl.js +0 -5
- package/src/Api/Implementation/FreeTextColumnApiImpl.d.ts +0 -5
- package/src/Api/Implementation/FreeTextColumnApiImpl.js +0 -9
- package/src/Api/Implementation/GridApiImpl.d.ts +4 -1
- package/src/Api/Implementation/GridApiImpl.js +27 -4
- package/src/Api/Implementation/InternalApiImpl.d.ts +2 -3
- package/src/Api/Implementation/InternalApiImpl.js +7 -6
- package/src/Api/Implementation/LayoutApiImpl.d.ts +2 -0
- package/src/Api/Implementation/LayoutApiImpl.js +11 -0
- package/src/Api/Implementation/QueryApiImpl.js +4 -1
- package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +4 -1
- package/src/Api/Implementation/QueryLanguageApiImpl.js +20 -8
- package/src/Api/Implementation/SettingsPanelApiImpl.d.ts +7 -0
- package/src/Api/Implementation/SettingsPanelApiImpl.js +15 -0
- package/src/Api/InternalApi.d.ts +2 -3
- 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/QueryApi.d.ts +2 -2
- package/src/Api/QueryLanguageApi.d.ts +23 -10
- package/src/Api/SettingsPanelApi.d.ts +16 -0
- package/src/Api/SettingsPanelApi.js +2 -0
- package/src/Api/UserInterfaceApi.d.ts +5 -2
- package/src/PredefinedConfig/AlertState.d.ts +8 -6
- package/src/PredefinedConfig/CalculatedColumnState.d.ts +8 -4
- package/src/PredefinedConfig/Common/AdaptableQuery.d.ts +7 -5
- package/src/PredefinedConfig/Common/AdaptableQuery.js +2 -6
- package/src/PredefinedConfig/Common/CellHighlightInfo.d.ts +1 -12
- 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/SpecialColumnSettings.d.ts +1 -1
- package/src/PredefinedConfig/Common/Types.d.ts +3 -1
- package/src/PredefinedConfig/Common/Types.js +1 -0
- package/src/PredefinedConfig/CustomSortState.d.ts +0 -1
- package/src/PredefinedConfig/FlashingCellState.d.ts +3 -1
- 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/Selection/GridCellRange.d.ts +3 -1
- 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/AdaptableReduxMerger.js +1 -1
- package/src/Redux/Store/AdaptableStore.js +34 -8
- package/src/Strategy/AlertModule.js +16 -6
- package/src/Strategy/CalculatedColumnModule.js +4 -4
- package/src/Strategy/ChartingModule.d.ts +3 -3
- package/src/Strategy/ChartingModule.js +2 -2
- package/src/Strategy/ConditionalStyleModule.js +4 -0
- package/src/Strategy/FlashingCellModule.js +4 -4
- package/src/Strategy/FreeTextColumnModule.d.ts +2 -2
- package/src/Strategy/FreeTextColumnModule.js +11 -0
- package/src/Strategy/LayoutModule.js +1 -6
- package/src/Strategy/{SetingsPanelModule.d.ts → SettingsPanelModule.d.ts} +0 -0
- package/src/Strategy/{SetingsPanelModule.js → SettingsPanelModule.js} +0 -0
- package/src/Strategy/ToolPanelModule.js +5 -3
- package/src/Strategy/Utilities/getAlertPreviewViewItems.js +1 -1
- package/src/Strategy/Utilities/getExpressionViewItems.d.ts +2 -2
- package/src/Strategy/Utilities/getExpressionViewItems.js +2 -1
- package/src/Strategy/Utilities/getFormatColumnSettingsViewItems.js +1 -1
- package/src/Strategy/Utilities/getRuleViewItems.d.ts +0 -1
- package/src/Strategy/Utilities/getRuleViewItems.js +1 -3
- package/src/Utilities/Constants/DocumentationLinkConstants.d.ts +2 -1
- package/src/Utilities/Constants/DocumentationLinkConstants.js +3 -2
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +23 -17
- 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 +24 -0
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +339 -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.d.ts +2 -2
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +8 -8
- package/src/Utilities/ExpressionFunctions/groupingMap.d.ts +35 -0
- package/src/Utilities/ExpressionFunctions/groupingMap.js +105 -0
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +2 -2
- package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.d.ts +33 -0
- package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.js +154 -0
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +13 -4
- package/src/Utilities/Helpers/AdaptableHelper.js +3 -1
- package/src/Utilities/Helpers/CalendarHelper.js +220 -55
- package/src/Utilities/Interface/MessagePopups.d.ts +6 -2
- package/src/Utilities/ObjectFactory.js +1 -0
- package/src/Utilities/Services/AlertService.js +8 -4
- package/src/Utilities/Services/CalculatedColumnExpressionService.d.ts +7 -3
- package/src/Utilities/Services/CalculatedColumnExpressionService.js +143 -18
- package/src/Utilities/Services/DataService.js +6 -1
- package/src/Utilities/Services/Interface/IAdaptableService.d.ts +1 -1
- package/src/Utilities/Services/Interface/ICalculatedColumnExpressionService.d.ts +6 -3
- package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +9 -3
- package/src/Utilities/Services/LicenseService.js +1 -1
- package/src/Utilities/Services/QueryLanguageService.d.ts +11 -4
- package/src/Utilities/Services/QueryLanguageService.js +92 -28
- package/src/Utilities/Services/ReportService.js +6 -2
- 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 +10 -5
- 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/AlertDisplayWizardSection.d.ts +1 -0
- package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +2 -2
- package/src/View/Alert/Wizard/AlertWizard.js +2 -2
- package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +2 -2
- package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +3 -2
- package/src/View/Alert/Wizard/isValidAlertRules.js +3 -3
- package/src/View/CalculatedColumn/CalculatedColumnSharedEntity.js +3 -3
- package/src/View/CalculatedColumn/CalculatedColumnSummary.js +2 -4
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +43 -12
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +1 -2
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +2 -2
- package/src/View/CellSummary/CellSummaryViewPanel.js +1 -2
- 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/AdaptableObjectList/AdaptableObjectList.js +5 -2
- package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
- package/src/View/Components/EntityRulesEditor/index.js +11 -12
- package/src/View/Components/FilterForm/FilterForm.js +0 -2
- package/src/View/Components/FilterForm/QuickFilterForm.js +6 -5
- package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +1 -1
- package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +1 -1
- package/src/View/Components/Panels/PanelWithImage.d.ts +2 -2
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.d.ts +0 -3
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +45 -88
- 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/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/AdaptablePopupAlert.d.ts +1 -0
- package/src/View/Components/Popups/AdaptablePopupAlert.js +1 -1
- 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/ToolPanel/CustomToolPanelContent.js +5 -1
- package/src/View/Components/ToolPanel/ToolPanelPopup.js +3 -1
- package/src/View/Components/ToolPanel/ToolPanelWrapper.js +1 -1
- package/src/View/Components/ValueSelector/index.js +1 -1
- 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 +7 -0
- package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +3 -1
- package/src/View/CustomSort/Wizard/CustomSortWizard.js +1 -1
- package/src/View/Dashboard/CustomToolbarWrapper.js +5 -1
- package/src/View/Dashboard/Dashboard.js +2 -3
- package/src/View/Dashboard/DashboardPopup.js +3 -1
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +2 -1
- 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 +2 -2
- package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +1 -1
- package/src/View/FreeTextColumn/FreeTextColumnSummary.js +1 -2
- package/src/View/GridInfo/AdaptableOptionsComponent.js +4 -1
- package/src/View/Layout/Wizard/LayoutEditor/index.js +6 -2
- package/src/View/Layout/Wizard/LayoutEditorWizard.js +7 -1
- package/src/View/License/LicenseWatermark.js +1 -1
- package/src/View/Query/ExpandedQueryPopup.js +9 -2
- package/src/View/Query/QueryViewPanel.js +3 -1
- package/src/View/Query/Wizard/NamedQueryWizard.js +3 -3
- package/src/View/QuickSearch/QuickSearchPopup.js +3 -3
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.js +12 -2
- package/src/View/SpecialColumnSettingsWizardStep.js +1 -2
- package/src/View/UIHelper.js +4 -1
- package/src/View/Wizard/AdaptableWizard.js +12 -3
- package/src/View/Wizard/OnePageAdaptableWizard.js +5 -1
- package/src/agGrid/Adaptable.d.ts +3 -3
- package/src/agGrid/Adaptable.js +117 -77
- package/src/agGrid/agGridHelper.js +4 -9
- package/src/agGrid/agGridMenuHelper.js +4 -8
- package/src/agGrid/editors/AdaptableDateEditor/index.js +1 -1
- package/src/agGrid/editors/AdaptableNumberEditor/index.js +1 -1
- package/src/components/AdaptableFormComponent/AdaptableFormComponent.d.ts +4 -2
- package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +4 -4
- 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/Datepicker/index.d.ts +1 -1
- package/src/components/Dropdown/index.js +8 -1
- package/src/components/ExpressionEditor/EditorInput.d.ts +1 -1
- package/src/components/ExpressionEditor/EditorInput.js +5 -2
- package/src/components/ExpressionEditor/EditorInputReactive.d.ts +1 -1
- package/src/components/ExpressionEditor/EditorInputReactive.js +4 -2
- package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +5 -2
- package/src/components/ExpressionEditor/editorButtonsAggregatedScalar.d.ts +2 -0
- package/src/components/ExpressionEditor/editorButtonsAggregatedScalar.js +45 -0
- package/src/components/ExpressionEditor/editorButtonsReactive.js +8 -13
- package/src/components/ExpressionEditor/index.d.ts +2 -1
- package/src/components/ExpressionEditor/index.js +20 -6
- package/src/components/Input/index.d.ts +1 -1
- package/src/components/List/ListGroupItem/index.d.ts +1 -1
- package/src/components/Logo/index.js +8 -7
- package/src/components/PopupWithFooter.d.ts +1 -1
- package/src/components/SizedContainer/index.js +7 -1
- package/src/components/Textarea/index.d.ts +1 -1
- package/src/components/WindowModal/WindowModal.js +4 -1
- package/src/metamodel/adaptable.metamodel.d.ts +114 -59
- package/src/metamodel/adaptable.metamodel.js +373 -242
- package/src/types.d.ts +9 -6
- package/themes/dark.css +4 -4
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -152,6 +152,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
152
152
|
}
|
|
153
153
|
]
|
|
154
154
|
},
|
|
155
|
+
"AdaptableAlertQuery": {
|
|
156
|
+
"name": "AdaptableAlertQuery",
|
|
157
|
+
"kind": "TypeAlias",
|
|
158
|
+
"description": "Alert Query which may be either a Boolean, Observable or AggregatedBoolean Expression"
|
|
159
|
+
},
|
|
155
160
|
"AdaptableApi": {
|
|
156
161
|
"name": "AdaptableApi",
|
|
157
162
|
"kind": "Interface",
|
|
@@ -296,13 +301,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
296
301
|
"uiLabel": "Grid Api",
|
|
297
302
|
"reference": "GridApi"
|
|
298
303
|
},
|
|
299
|
-
{
|
|
300
|
-
"name": "internalApi",
|
|
301
|
-
"kind": "REFERENCE",
|
|
302
|
-
"description": "Api methods used *internally* within AdapTable.",
|
|
303
|
-
"uiLabel": "Internal Api",
|
|
304
|
-
"reference": "unknown"
|
|
305
|
-
},
|
|
306
304
|
{
|
|
307
305
|
"name": "layoutApi",
|
|
308
306
|
"kind": "REFERENCE",
|
|
@@ -366,6 +364,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
366
364
|
"uiLabel": "Scope Api",
|
|
367
365
|
"reference": "ScopeApi"
|
|
368
366
|
},
|
|
367
|
+
{
|
|
368
|
+
"name": "settingsPanelApi",
|
|
369
|
+
"kind": "REFERENCE",
|
|
370
|
+
"description": "Provides access to the Settings Panel",
|
|
371
|
+
"uiLabel": "Settings Panel Api",
|
|
372
|
+
"reference": "SettingsPanelApi"
|
|
373
|
+
},
|
|
369
374
|
{
|
|
370
375
|
"name": "shortcutApi",
|
|
371
376
|
"kind": "REFERENCE",
|
|
@@ -474,6 +479,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
474
479
|
}
|
|
475
480
|
]
|
|
476
481
|
},
|
|
482
|
+
"AdaptableCalculatedColumnQuery": {
|
|
483
|
+
"name": "AdaptableCalculatedColumnQuery",
|
|
484
|
+
"kind": "TypeAlias",
|
|
485
|
+
"description": "Calculated Column Query which may be a Scalar or an AggregatedScalar Expression"
|
|
486
|
+
},
|
|
477
487
|
"AdaptableColumn": {
|
|
478
488
|
"name": "AdaptableColumn",
|
|
479
489
|
"kind": "Interface",
|
|
@@ -922,6 +932,14 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
922
932
|
"gridInfo": "item",
|
|
923
933
|
"defaultValue": "'adaptable_id'"
|
|
924
934
|
},
|
|
935
|
+
{
|
|
936
|
+
"name": "adaptableQLOptions",
|
|
937
|
+
"kind": "REFERENCE",
|
|
938
|
+
"description": "Options for managing AdapTableQL",
|
|
939
|
+
"uiLabel": "Adaptable QL Options",
|
|
940
|
+
"isOptional": true,
|
|
941
|
+
"reference": "unknown"
|
|
942
|
+
},
|
|
925
943
|
{
|
|
926
944
|
"name": "adaptableStateKey",
|
|
927
945
|
"kind": "string",
|
|
@@ -931,6 +949,15 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
931
949
|
"gridInfo": "item",
|
|
932
950
|
"defaultValue": "`adaptableId` value"
|
|
933
951
|
},
|
|
952
|
+
{
|
|
953
|
+
"name": "alertOptions",
|
|
954
|
+
"kind": "REFERENCE",
|
|
955
|
+
"description": "Options for managing Alerts in AdapTable",
|
|
956
|
+
"uiLabel": "Alert Options",
|
|
957
|
+
"isOptional": true,
|
|
958
|
+
"gridInfo": "container",
|
|
959
|
+
"reference": "AlertOptions"
|
|
960
|
+
},
|
|
934
961
|
{
|
|
935
962
|
"name": "autogeneratePrimaryKey",
|
|
936
963
|
"kind": "boolean",
|
|
@@ -1030,7 +1057,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1030
1057
|
{
|
|
1031
1058
|
"name": "gridOptions",
|
|
1032
1059
|
"kind": "REFERENCE",
|
|
1033
|
-
"description": "The AG Grid object which AdapTable interacts with. Note: if using React or Angular
|
|
1060
|
+
"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
1061
|
"uiLabel": "Grid Options",
|
|
1035
1062
|
"isOptional": true,
|
|
1036
1063
|
"defaultValue": "n/a (Mandatory)",
|
|
@@ -1061,6 +1088,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1061
1088
|
"gridInfo": "container",
|
|
1062
1089
|
"reference": "MenuOptions"
|
|
1063
1090
|
},
|
|
1091
|
+
{
|
|
1092
|
+
"name": "modules",
|
|
1093
|
+
"kind": "unknown",
|
|
1094
|
+
"description": "AG Grid Modules that should be provided - needs to be provided separately",
|
|
1095
|
+
"uiLabel": "Modules",
|
|
1096
|
+
"isOptional": true
|
|
1097
|
+
},
|
|
1064
1098
|
{
|
|
1065
1099
|
"name": "notificationsOptions",
|
|
1066
1100
|
"kind": "REFERENCE",
|
|
@@ -1093,15 +1127,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1093
1127
|
"gridInfo": "item",
|
|
1094
1128
|
"defaultValue": "n/a (Mandatory)"
|
|
1095
1129
|
},
|
|
1096
|
-
{
|
|
1097
|
-
"name": "queryLanguageOptions",
|
|
1098
|
-
"kind": "REFERENCE",
|
|
1099
|
-
"description": "Options for managing queries in AdapTableQL",
|
|
1100
|
-
"uiLabel": "Query Language Options",
|
|
1101
|
-
"isOptional": true,
|
|
1102
|
-
"gridInfo": "container",
|
|
1103
|
-
"reference": "QueryLanguageOptions"
|
|
1104
|
-
},
|
|
1105
1130
|
{
|
|
1106
1131
|
"name": "searchOptions",
|
|
1107
1132
|
"kind": "REFERENCE",
|
|
@@ -1782,7 +1807,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1782
1807
|
"kind": "REFERENCE",
|
|
1783
1808
|
"description": "When Alert should be triggered",
|
|
1784
1809
|
"uiLabel": "Rule",
|
|
1785
|
-
"reference": "
|
|
1810
|
+
"reference": "AlertRule"
|
|
1786
1811
|
},
|
|
1787
1812
|
{
|
|
1788
1813
|
"name": "Scope",
|
|
@@ -1812,6 +1837,61 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1812
1837
|
"kind": "TypeAlias",
|
|
1813
1838
|
"description": "Form to show in an Alert"
|
|
1814
1839
|
},
|
|
1840
|
+
"AlertOptions": {
|
|
1841
|
+
"name": "AlertOptions",
|
|
1842
|
+
"kind": "Interface",
|
|
1843
|
+
"description": "Options related to Alerts in Adaptable.",
|
|
1844
|
+
"properties": [
|
|
1845
|
+
{
|
|
1846
|
+
"name": "actionHandlers",
|
|
1847
|
+
"kind": "unknown",
|
|
1848
|
+
"description": "onClick Handlers for Alert Buttons (defined in Alert State)",
|
|
1849
|
+
"uiLabel": "Action Handlers",
|
|
1850
|
+
"isOptional": true
|
|
1851
|
+
},
|
|
1852
|
+
{
|
|
1853
|
+
"name": "alertForms",
|
|
1854
|
+
"kind": "unknown",
|
|
1855
|
+
"description": "Full definitions of Alert Forms - the names of which are provided in Alert State",
|
|
1856
|
+
"uiLabel": "Alert Forms",
|
|
1857
|
+
"isOptional": true
|
|
1858
|
+
},
|
|
1859
|
+
{
|
|
1860
|
+
"name": "alertMessageText",
|
|
1861
|
+
"kind": "unknown",
|
|
1862
|
+
"description": "Function providing Message to display in Alert; if empty, AdapTable provides dynamically",
|
|
1863
|
+
"uiLabel": "Alert Message Text",
|
|
1864
|
+
"isOptional": true
|
|
1865
|
+
},
|
|
1866
|
+
{
|
|
1867
|
+
"name": "cellHighlightDuration",
|
|
1868
|
+
"kind": "number",
|
|
1869
|
+
"description": "How long (in ms) a cell will be highlighted",
|
|
1870
|
+
"uiLabel": "Cell Highlight Duration",
|
|
1871
|
+
"isOptional": true,
|
|
1872
|
+
"gridInfo": "item",
|
|
1873
|
+
"defaultValue": "3000"
|
|
1874
|
+
},
|
|
1875
|
+
{
|
|
1876
|
+
"name": "dataChangeDetectionPolicy",
|
|
1877
|
+
"kind": "unknown",
|
|
1878
|
+
"description": "Whether Alert rule is evaluated against the `rawValue` or `formattedValue` of the changed cell data",
|
|
1879
|
+
"uiLabel": "Data Change Detection Policy",
|
|
1880
|
+
"isOptional": true,
|
|
1881
|
+
"gridInfo": "item",
|
|
1882
|
+
"defaultValue": "'rawValue'"
|
|
1883
|
+
},
|
|
1884
|
+
{
|
|
1885
|
+
"name": "maxAlertsInStore",
|
|
1886
|
+
"kind": "number",
|
|
1887
|
+
"description": "How many alerts held in State at any one time; when limit is breached, oldest alert will be removed",
|
|
1888
|
+
"uiLabel": "Max Alerts In Store",
|
|
1889
|
+
"isOptional": true,
|
|
1890
|
+
"gridInfo": "item",
|
|
1891
|
+
"defaultValue": "20"
|
|
1892
|
+
}
|
|
1893
|
+
]
|
|
1894
|
+
},
|
|
1815
1895
|
"AlertProperties": {
|
|
1816
1896
|
"name": "AlertProperties",
|
|
1817
1897
|
"kind": "Interface",
|
|
@@ -1855,9 +1935,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1855
1935
|
{
|
|
1856
1936
|
"name": "PreventEdit",
|
|
1857
1937
|
"kind": "boolean",
|
|
1858
|
-
"description": "Automatically prevent any cell edit which triggered the Alert (i.e. validation)
|
|
1938
|
+
"description": "Automatically prevent any cell edit which triggered the Alert (i.e. validation)",
|
|
1859
1939
|
"uiLabel": "Prevent Edit",
|
|
1860
|
-
"isOptional": true
|
|
1940
|
+
"isOptional": true,
|
|
1941
|
+
"defaultValue": "false"
|
|
1861
1942
|
},
|
|
1862
1943
|
{
|
|
1863
1944
|
"name": "ShowInDiv",
|
|
@@ -1868,6 +1949,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1868
1949
|
}
|
|
1869
1950
|
]
|
|
1870
1951
|
},
|
|
1952
|
+
"AlertRule": {
|
|
1953
|
+
"name": "AlertRule",
|
|
1954
|
+
"kind": "TypeAlias",
|
|
1955
|
+
"description": "The Alert Rule defined by either an AdaptablePredicate or an AdaptableQuery"
|
|
1956
|
+
},
|
|
1871
1957
|
"AlertState": {
|
|
1872
1958
|
"name": "AlertState",
|
|
1873
1959
|
"kind": "Interface",
|
|
@@ -1878,8 +1964,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1878
1964
|
"kind": "unknown",
|
|
1879
1965
|
"description": "Alert Definitions - will trigger Alerts when rule is met",
|
|
1880
1966
|
"uiLabel": "Alert Definitions",
|
|
1881
|
-
"isOptional": true
|
|
1882
|
-
"defaultValue": "null"
|
|
1967
|
+
"isOptional": true
|
|
1883
1968
|
}
|
|
1884
1969
|
]
|
|
1885
1970
|
},
|
|
@@ -2085,10 +2170,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2085
2170
|
{
|
|
2086
2171
|
"name": "Query",
|
|
2087
2172
|
"kind": "REFERENCE",
|
|
2088
|
-
"description": "Scalar
|
|
2173
|
+
"description": "Scalar/AggregatedScalar Query used by AdapTableQL to evaluate Column's value",
|
|
2089
2174
|
"uiLabel": "Query",
|
|
2090
2175
|
"isOptional": true,
|
|
2091
|
-
"reference": "
|
|
2176
|
+
"reference": "AdaptableCalculatedColumnQuery"
|
|
2092
2177
|
}
|
|
2093
2178
|
]
|
|
2094
2179
|
},
|
|
@@ -2115,12 +2200,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2115
2200
|
"description": "Edits given Calculated Column",
|
|
2116
2201
|
"uiLabel": "Edit Calculated Column"
|
|
2117
2202
|
},
|
|
2118
|
-
{
|
|
2119
|
-
"name": "editCalculatedColumnExpression",
|
|
2120
|
-
"kind": "function",
|
|
2121
|
-
"description": "Replaces Expression in given Calculated Column with new value",
|
|
2122
|
-
"uiLabel": "Edit Calculated Column Expression"
|
|
2123
|
-
},
|
|
2124
2203
|
{
|
|
2125
2204
|
"name": "editCalculatedColumns",
|
|
2126
2205
|
"kind": "function",
|
|
@@ -2136,7 +2215,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2136
2215
|
{
|
|
2137
2216
|
"name": "getCalculatedColumnById",
|
|
2138
2217
|
"kind": "function",
|
|
2139
|
-
"description": "Retrieves Calculated
|
|
2218
|
+
"description": "Retrieves Calculated Column by the unique identifier of the Adaptable Object in the CalculatedColumnState",
|
|
2140
2219
|
"uiLabel": "Get Calculated Column By Id"
|
|
2141
2220
|
},
|
|
2142
2221
|
{
|
|
@@ -2215,8 +2294,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2215
2294
|
"kind": "unknown",
|
|
2216
2295
|
"description": "Collection of Calculated Columns",
|
|
2217
2296
|
"uiLabel": "Calculated Columns",
|
|
2218
|
-
"isOptional": true
|
|
2219
|
-
"defaultValue": "empty"
|
|
2297
|
+
"isOptional": true
|
|
2220
2298
|
}
|
|
2221
2299
|
]
|
|
2222
2300
|
},
|
|
@@ -2245,6 +2323,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2245
2323
|
"description": "Id of Column containing Cell",
|
|
2246
2324
|
"uiLabel": "Column Id"
|
|
2247
2325
|
},
|
|
2326
|
+
{
|
|
2327
|
+
"name": "highlightStyle",
|
|
2328
|
+
"kind": "REFERENCE",
|
|
2329
|
+
"description": "Adaptable Style to use in the Cell Highlight",
|
|
2330
|
+
"uiLabel": "Highlight Style",
|
|
2331
|
+
"reference": "AdaptableStyle"
|
|
2332
|
+
},
|
|
2248
2333
|
{
|
|
2249
2334
|
"name": "primaryKeyValue",
|
|
2250
2335
|
"kind": "unknown",
|
|
@@ -2586,12 +2671,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2586
2671
|
"description": "Returns all Groupable Columns",
|
|
2587
2672
|
"uiLabel": "Get Groupable Columns"
|
|
2588
2673
|
},
|
|
2589
|
-
{
|
|
2590
|
-
"name": "getNumericArrayColumns",
|
|
2591
|
-
"kind": "function",
|
|
2592
|
-
"description": "Returns all numeric array Columns",
|
|
2593
|
-
"uiLabel": "Get Numeric Array Columns"
|
|
2594
|
-
},
|
|
2595
2674
|
{
|
|
2596
2675
|
"name": "getNumericColumns",
|
|
2597
2676
|
"kind": "function",
|
|
@@ -3240,7 +3319,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3240
3319
|
{
|
|
3241
3320
|
"name": "agGridContainerWaitTimeout",
|
|
3242
3321
|
"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
|
|
3322
|
+
"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
3323
|
"uiLabel": "Ag Grid Container Wait Timeout",
|
|
3245
3324
|
"isOptional": true,
|
|
3246
3325
|
"gridInfo": "item",
|
|
@@ -3257,7 +3336,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3257
3336
|
},
|
|
3258
3337
|
{
|
|
3259
3338
|
"name": "modalContainer",
|
|
3260
|
-
"kind": "
|
|
3339
|
+
"kind": "unknown",
|
|
3261
3340
|
"description": "Name of div where modals appear (if null, will be centre of page)",
|
|
3262
3341
|
"uiLabel": "Modal Container",
|
|
3263
3342
|
"isOptional": true,
|
|
@@ -3520,8 +3599,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3520
3599
|
"kind": "unknown",
|
|
3521
3600
|
"description": "Collection of Custom Sort objects.",
|
|
3522
3601
|
"uiLabel": "Custom Sorts",
|
|
3523
|
-
"isOptional": true
|
|
3524
|
-
"defaultValue": "[]"
|
|
3602
|
+
"isOptional": true
|
|
3525
3603
|
}
|
|
3526
3604
|
]
|
|
3527
3605
|
},
|
|
@@ -5043,17 +5121,104 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5043
5121
|
"kind": "TypeAlias",
|
|
5044
5122
|
"description": "The javascript function which is invoked by an AdapTableQL Function"
|
|
5045
5123
|
},
|
|
5124
|
+
"ExpressionOptions": {
|
|
5125
|
+
"name": "ExpressionOptions",
|
|
5126
|
+
"kind": "Interface",
|
|
5127
|
+
"description": "Options for managing Expressions using AdapTableQL",
|
|
5128
|
+
"properties": [
|
|
5129
|
+
{
|
|
5130
|
+
"name": "defaultAggregatedBooleanFunctions",
|
|
5131
|
+
"kind": "REFERENCE",
|
|
5132
|
+
"description": "Aggregated Boolean Expression Functions available in AdapTableQL",
|
|
5133
|
+
"uiLabel": "Default Aggregated Boolean Functions",
|
|
5134
|
+
"isOptional": true,
|
|
5135
|
+
"gridInfo": "item",
|
|
5136
|
+
"defaultValue": "null (sets all)",
|
|
5137
|
+
"reference": "unknown"
|
|
5138
|
+
},
|
|
5139
|
+
{
|
|
5140
|
+
"name": "defaultAggregatedScalarFunctions",
|
|
5141
|
+
"kind": "REFERENCE",
|
|
5142
|
+
"description": "Aggregated Scalar Expression Functions available in AdapTableQL",
|
|
5143
|
+
"uiLabel": "Default Aggregated Scalar Functions",
|
|
5144
|
+
"isOptional": true,
|
|
5145
|
+
"gridInfo": "item",
|
|
5146
|
+
"defaultValue": "null (sets all)",
|
|
5147
|
+
"reference": "unknown"
|
|
5148
|
+
},
|
|
5149
|
+
{
|
|
5150
|
+
"name": "defaultBooleanFunctions",
|
|
5151
|
+
"kind": "REFERENCE",
|
|
5152
|
+
"description": "Boolean Expression Functions available in AdapTableQL",
|
|
5153
|
+
"uiLabel": "Default Boolean Functions",
|
|
5154
|
+
"isOptional": true,
|
|
5155
|
+
"gridInfo": "item",
|
|
5156
|
+
"defaultValue": "null (sets all)",
|
|
5157
|
+
"reference": "unknown"
|
|
5158
|
+
},
|
|
5159
|
+
{
|
|
5160
|
+
"name": "defaultObservableFunctions",
|
|
5161
|
+
"kind": "REFERENCE",
|
|
5162
|
+
"description": "Observable Expression Functions available in AdapTableQL",
|
|
5163
|
+
"uiLabel": "Default Observable Functions",
|
|
5164
|
+
"isOptional": true,
|
|
5165
|
+
"gridInfo": "item",
|
|
5166
|
+
"defaultValue": "null (sets all)",
|
|
5167
|
+
"reference": "unknown"
|
|
5168
|
+
},
|
|
5169
|
+
{
|
|
5170
|
+
"name": "defaultScalarFunctions",
|
|
5171
|
+
"kind": "REFERENCE",
|
|
5172
|
+
"description": "Scalar Expression Functions available in AdapTableQL",
|
|
5173
|
+
"uiLabel": "Default Scalar Functions",
|
|
5174
|
+
"isOptional": true,
|
|
5175
|
+
"gridInfo": "item",
|
|
5176
|
+
"defaultValue": "null (sets all)",
|
|
5177
|
+
"reference": "unknown"
|
|
5178
|
+
},
|
|
5179
|
+
{
|
|
5180
|
+
"name": "maxTimeframeSize",
|
|
5181
|
+
"kind": "number",
|
|
5182
|
+
"description": "Maximum time (in milliseconds) to hold a Data Change event in a trailing timeframe (see observableExpressionFunctions); value is capped at 86400000 (~24 hours) for performance reasons",
|
|
5183
|
+
"uiLabel": "Max Timeframe Size",
|
|
5184
|
+
"isOptional": true,
|
|
5185
|
+
"gridInfo": "item",
|
|
5186
|
+
"defaultValue": "28800000 (~8 hours)"
|
|
5187
|
+
},
|
|
5188
|
+
{
|
|
5189
|
+
"name": "moduleExpressionFunctions",
|
|
5190
|
+
"kind": "unknown",
|
|
5191
|
+
"description": "Module specific ExpressionFunctions; if not defined, it falls back to the defined default values",
|
|
5192
|
+
"uiLabel": "Module Expression Functions",
|
|
5193
|
+
"isOptional": true,
|
|
5194
|
+
"gridInfo": "item",
|
|
5195
|
+
"defaultValue": "undefined (defaults to default values)"
|
|
5196
|
+
},
|
|
5197
|
+
{
|
|
5198
|
+
"name": "performExpressionValidation",
|
|
5199
|
+
"kind": "boolean",
|
|
5200
|
+
"description": "Validate Expressions before they can be run or saved",
|
|
5201
|
+
"uiLabel": "Perform Expression Validation",
|
|
5202
|
+
"isOptional": true,
|
|
5203
|
+
"gridInfo": "item",
|
|
5204
|
+
"defaultValue": "true"
|
|
5205
|
+
},
|
|
5206
|
+
{
|
|
5207
|
+
"name": "queryableColumns",
|
|
5208
|
+
"kind": "unknown",
|
|
5209
|
+
"description": "Columns that can be included in AdapTableQL Expressions; leave unset to include **ALL**, provide empty array to set **NONE**",
|
|
5210
|
+
"uiLabel": "Queryable Columns",
|
|
5211
|
+
"isOptional": true,
|
|
5212
|
+
"gridInfo": "item",
|
|
5213
|
+
"defaultValue": "undefined"
|
|
5214
|
+
}
|
|
5215
|
+
]
|
|
5216
|
+
},
|
|
5046
5217
|
"FDC3Context": {
|
|
5047
5218
|
"name": "FDC3Context",
|
|
5048
5219
|
"kind": "Interface",
|
|
5049
5220
|
"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
5221
|
"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
5222
|
{
|
|
5058
5223
|
"name": "id",
|
|
5059
5224
|
"kind": "unknown",
|
|
@@ -5410,7 +5575,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5410
5575
|
{
|
|
5411
5576
|
"name": "useAgGridFilterFormStyle",
|
|
5412
5577
|
"kind": "boolean",
|
|
5413
|
-
"description": "Styles Adaptable Filter Form to match AG Grid's
|
|
5578
|
+
"description": "Styles Adaptable Filter Form to match AG Grid's styling (if using Balham theme)",
|
|
5414
5579
|
"uiLabel": "Use Ag Grid Filter Form Style",
|
|
5415
5580
|
"isOptional": true,
|
|
5416
5581
|
"gridInfo": "item",
|
|
@@ -5426,9 +5591,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5426
5591
|
{
|
|
5427
5592
|
"name": "suppressFilterSearchBar",
|
|
5428
5593
|
"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
|
|
5594
|
+
"description": "Prevents AdapTable from filtering the list of values client-side; When true, values is called each time the search bar is changed",
|
|
5430
5595
|
"uiLabel": "Suppress Filter Search Bar",
|
|
5431
|
-
"isOptional": true
|
|
5596
|
+
"isOptional": true,
|
|
5597
|
+
"defaultValue": "false"
|
|
5432
5598
|
}
|
|
5433
5599
|
]
|
|
5434
5600
|
},
|
|
@@ -5723,8 +5889,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5723
5889
|
"kind": "unknown",
|
|
5724
5890
|
"description": "Flashing Cell Definitions - will colour cells/rows when rule is met",
|
|
5725
5891
|
"uiLabel": "Flashing Cell Definitions",
|
|
5726
|
-
"isOptional": true
|
|
5727
|
-
"defaultValue": "null"
|
|
5892
|
+
"isOptional": true
|
|
5728
5893
|
}
|
|
5729
5894
|
]
|
|
5730
5895
|
},
|
|
@@ -6011,7 +6176,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6011
6176
|
"kind": "unknown",
|
|
6012
6177
|
"description": "Whether Column is String, Number, Boolean or Date",
|
|
6013
6178
|
"uiLabel": "Data Type",
|
|
6014
|
-
"isOptional": true,
|
|
6015
6179
|
"defaultValue": "'String'"
|
|
6016
6180
|
},
|
|
6017
6181
|
{
|
|
@@ -6082,12 +6246,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6082
6246
|
"description": "Checks if a User Edit was in a Free Text Column",
|
|
6083
6247
|
"uiLabel": "Check Free Text Column For Data Change"
|
|
6084
6248
|
},
|
|
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
6249
|
{
|
|
6092
6250
|
"name": "deleteFreeTextColumn",
|
|
6093
6251
|
"kind": "function",
|
|
@@ -6198,15 +6356,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6198
6356
|
"gridInfo": "item",
|
|
6199
6357
|
"defaultValue": "true"
|
|
6200
6358
|
},
|
|
6201
|
-
{
|
|
6202
|
-
"name": "caseSensitiveTextComparisons",
|
|
6203
|
-
"kind": "boolean",
|
|
6204
|
-
"description": "Perform case-sensitive text comparisons in all search and filter operations: QuickSearch, Filters, Query, Predicates",
|
|
6205
|
-
"uiLabel": "Case Sensitive Text Comparisons",
|
|
6206
|
-
"isOptional": true,
|
|
6207
|
-
"gridInfo": "item",
|
|
6208
|
-
"defaultValue": "false"
|
|
6209
|
-
},
|
|
6210
6359
|
{
|
|
6211
6360
|
"name": "cellSummaryOperations",
|
|
6212
6361
|
"kind": "unknown",
|
|
@@ -6906,9 +7055,21 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6906
7055
|
{
|
|
6907
7056
|
"name": "selectCellRange",
|
|
6908
7057
|
"kind": "function",
|
|
6909
|
-
"description": "Selects a group of cells in a given range",
|
|
7058
|
+
"description": "Selects a group of cells in a given range - provide either primary keys or row indexes",
|
|
6910
7059
|
"uiLabel": "Select Cell Range"
|
|
6911
7060
|
},
|
|
7061
|
+
{
|
|
7062
|
+
"name": "selectColumn",
|
|
7063
|
+
"kind": "function",
|
|
7064
|
+
"description": "Selects a Column in AG Grid",
|
|
7065
|
+
"uiLabel": "Select Column"
|
|
7066
|
+
},
|
|
7067
|
+
{
|
|
7068
|
+
"name": "selectColumns",
|
|
7069
|
+
"kind": "function",
|
|
7070
|
+
"description": "Selects Columns in AG Grid",
|
|
7071
|
+
"uiLabel": "Select Columns"
|
|
7072
|
+
},
|
|
6912
7073
|
{
|
|
6913
7074
|
"name": "selectNode",
|
|
6914
7075
|
"kind": "function",
|
|
@@ -7067,9 +7228,15 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7067
7228
|
{
|
|
7068
7229
|
"name": "dataRows",
|
|
7069
7230
|
"kind": "unknown",
|
|
7070
|
-
"description": "
|
|
7231
|
+
"description": "Data rows that have been added, updated, or deleted",
|
|
7071
7232
|
"uiLabel": "Data Rows"
|
|
7072
7233
|
},
|
|
7234
|
+
{
|
|
7235
|
+
"name": "rowNodes",
|
|
7236
|
+
"kind": "unknown",
|
|
7237
|
+
"description": "AG Grid Row Nodes that were affected by the Change",
|
|
7238
|
+
"uiLabel": "Row Nodes"
|
|
7239
|
+
},
|
|
7073
7240
|
{
|
|
7074
7241
|
"name": "rowTrigger",
|
|
7075
7242
|
"kind": "unknown",
|
|
@@ -7196,19 +7363,19 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7196
7363
|
{
|
|
7197
7364
|
"name": "id",
|
|
7198
7365
|
"kind": "unknown",
|
|
7199
|
-
"description": "The instrument data
|
|
7366
|
+
"description": "The instrument data",
|
|
7200
7367
|
"uiLabel": "Id"
|
|
7201
7368
|
},
|
|
7202
7369
|
{
|
|
7203
7370
|
"name": "name",
|
|
7204
7371
|
"kind": "string",
|
|
7205
|
-
"description": "Free text name of
|
|
7372
|
+
"description": "Free text name of instrument",
|
|
7206
7373
|
"uiLabel": "Name"
|
|
7207
7374
|
},
|
|
7208
7375
|
{
|
|
7209
7376
|
"name": "type",
|
|
7210
7377
|
"kind": "unknown",
|
|
7211
|
-
"description": "
|
|
7378
|
+
"description": "Context type is always 'instrument'",
|
|
7212
7379
|
"uiLabel": "Type"
|
|
7213
7380
|
}
|
|
7214
7381
|
]
|
|
@@ -7749,6 +7916,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7749
7916
|
"description": "Whether this Layout should be auto saved (based on Layout State and Layout Options)",
|
|
7750
7917
|
"uiLabel": "Should Auto Save Layout"
|
|
7751
7918
|
},
|
|
7919
|
+
{
|
|
7920
|
+
"name": "showChangeColumnCaption",
|
|
7921
|
+
"kind": "function",
|
|
7922
|
+
"description": "Opens change column caption popup",
|
|
7923
|
+
"uiLabel": "Show Change Column Caption"
|
|
7924
|
+
},
|
|
7752
7925
|
{
|
|
7753
7926
|
"name": "showLayoutPopup",
|
|
7754
7927
|
"kind": "function",
|
|
@@ -7846,16 +8019,14 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7846
8019
|
"kind": "string",
|
|
7847
8020
|
"description": "Layout which will be loaded when AdapTable starts - must match `Name` property in Layout",
|
|
7848
8021
|
"uiLabel": "Current Layout",
|
|
7849
|
-
"isOptional": true
|
|
7850
|
-
"defaultValue": "''"
|
|
8022
|
+
"isOptional": true
|
|
7851
8023
|
},
|
|
7852
8024
|
{
|
|
7853
8025
|
"name": "Layouts",
|
|
7854
8026
|
"kind": "unknown",
|
|
7855
8027
|
"description": "Collection of Layout objects - listed in Layout toolbar and Tool Panel",
|
|
7856
8028
|
"uiLabel": "Layouts",
|
|
7857
|
-
"isOptional": true
|
|
7858
|
-
"defaultValue": "null"
|
|
8029
|
+
"isOptional": true
|
|
7859
8030
|
}
|
|
7860
8031
|
]
|
|
7861
8032
|
},
|
|
@@ -7998,38 +8169,8 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7998
8169
|
"NotificationsOptions": {
|
|
7999
8170
|
"name": "NotificationsOptions",
|
|
8000
8171
|
"kind": "Interface",
|
|
8001
|
-
"description": "Options related to
|
|
8172
|
+
"description": "Options related to System Status Messages and Notifications in Adaptable.",
|
|
8002
8173
|
"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
8174
|
{
|
|
8034
8175
|
"name": "closeWhenClicked",
|
|
8035
8176
|
"kind": "boolean",
|
|
@@ -8039,15 +8180,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8039
8180
|
"gridInfo": "item",
|
|
8040
8181
|
"defaultValue": "false"
|
|
8041
8182
|
},
|
|
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
8183
|
{
|
|
8052
8184
|
"name": "duration",
|
|
8053
8185
|
"kind": "unknown",
|
|
@@ -8066,15 +8198,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8066
8198
|
"gridInfo": "item",
|
|
8067
8199
|
"defaultValue": "false"
|
|
8068
8200
|
},
|
|
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
8201
|
{
|
|
8079
8202
|
"name": "maxNotifications",
|
|
8080
8203
|
"kind": "number",
|
|
@@ -8230,6 +8353,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8230
8353
|
"description": "Clears any objects in internal OpenFin state created by AdapTable",
|
|
8231
8354
|
"uiLabel": "Clear Open Fin Internal State"
|
|
8232
8355
|
},
|
|
8356
|
+
{
|
|
8357
|
+
"name": "getAlertOptions",
|
|
8358
|
+
"kind": "function",
|
|
8359
|
+
"description": "Gets the Alert section from Adaptable Options",
|
|
8360
|
+
"uiLabel": "Get Alert Options"
|
|
8361
|
+
},
|
|
8233
8362
|
{
|
|
8234
8363
|
"name": "getCurrentLiveOpenFinReport",
|
|
8235
8364
|
"kind": "function",
|
|
@@ -8426,7 +8555,57 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8426
8555
|
"PluginsApi": {
|
|
8427
8556
|
"name": "PluginsApi",
|
|
8428
8557
|
"kind": "Interface",
|
|
8429
|
-
"description": "API methods dealing with AdapTable plugins"
|
|
8558
|
+
"description": "API methods dealing with AdapTable plugins",
|
|
8559
|
+
"properties": [
|
|
8560
|
+
{
|
|
8561
|
+
"name": "getFinancePluginApi",
|
|
8562
|
+
"kind": "function",
|
|
8563
|
+
"description": "Returns Finance API class in Adaptable API",
|
|
8564
|
+
"uiLabel": "Get Finance Plugin Api"
|
|
8565
|
+
},
|
|
8566
|
+
{
|
|
8567
|
+
"name": "getGlue42PluginApi",
|
|
8568
|
+
"kind": "function",
|
|
8569
|
+
"description": "Returns Glue42 API class in Adaptable API",
|
|
8570
|
+
"uiLabel": "Get Glue42Plugin Api"
|
|
8571
|
+
},
|
|
8572
|
+
{
|
|
8573
|
+
"name": "getipushpullPluginApi",
|
|
8574
|
+
"kind": "function",
|
|
8575
|
+
"description": "Returns ipushpull API class in Adaptable API",
|
|
8576
|
+
"uiLabel": "Getipushpull Plugin Api"
|
|
8577
|
+
},
|
|
8578
|
+
{
|
|
8579
|
+
"name": "getOpenFinPluginApi",
|
|
8580
|
+
"kind": "function",
|
|
8581
|
+
"description": "Returns OpenFin API class in Adaptable API",
|
|
8582
|
+
"uiLabel": "Get Open Fin Plugin Api"
|
|
8583
|
+
},
|
|
8584
|
+
{
|
|
8585
|
+
"name": "getPluginsState",
|
|
8586
|
+
"kind": "function",
|
|
8587
|
+
"description": "Retrieves the Plugin State (internal only)",
|
|
8588
|
+
"uiLabel": "Get Plugins State"
|
|
8589
|
+
},
|
|
8590
|
+
{
|
|
8591
|
+
"name": "getPluginState",
|
|
8592
|
+
"kind": "function",
|
|
8593
|
+
"description": "Gets the State for a given Plugin",
|
|
8594
|
+
"uiLabel": "Get Plugin State"
|
|
8595
|
+
},
|
|
8596
|
+
{
|
|
8597
|
+
"name": "registerPlugin",
|
|
8598
|
+
"kind": "function",
|
|
8599
|
+
"description": "Registers a Plugin (internal method)",
|
|
8600
|
+
"uiLabel": "Register Plugin"
|
|
8601
|
+
},
|
|
8602
|
+
{
|
|
8603
|
+
"name": "setPluginState",
|
|
8604
|
+
"kind": "function",
|
|
8605
|
+
"description": "Sets the initial state for a given plugin (internal method)",
|
|
8606
|
+
"uiLabel": "Set Plugin State"
|
|
8607
|
+
}
|
|
8608
|
+
]
|
|
8430
8609
|
},
|
|
8431
8610
|
"PlusMinusApi": {
|
|
8432
8611
|
"name": "PlusMinusApi",
|
|
@@ -8557,7 +8736,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8557
8736
|
{
|
|
8558
8737
|
"name": "Alert",
|
|
8559
8738
|
"kind": "REFERENCE",
|
|
8560
|
-
"description": "
|
|
8739
|
+
"description": "Collection of `AlertDefinitions` which will fire Alerts when the rule is met",
|
|
8561
8740
|
"uiLabel": "Alert",
|
|
8562
8741
|
"isOptional": true,
|
|
8563
8742
|
"reference": "AlertState"
|
|
@@ -8626,6 +8805,14 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8626
8805
|
"isOptional": true,
|
|
8627
8806
|
"reference": "FilterState"
|
|
8628
8807
|
},
|
|
8808
|
+
{
|
|
8809
|
+
"name": "FlashingCell",
|
|
8810
|
+
"kind": "REFERENCE",
|
|
8811
|
+
"description": "* Objects which define which cells flash in response to data changes",
|
|
8812
|
+
"uiLabel": "Flashing Cell",
|
|
8813
|
+
"isOptional": true,
|
|
8814
|
+
"reference": "FlashingCellState"
|
|
8815
|
+
},
|
|
8629
8816
|
{
|
|
8630
8817
|
"name": "FormatColumn",
|
|
8631
8818
|
"kind": "REFERENCE",
|
|
@@ -8847,7 +9034,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8847
9034
|
{
|
|
8848
9035
|
"name": "getCurrentQuery",
|
|
8849
9036
|
"kind": "function",
|
|
8850
|
-
"description": "
|
|
9037
|
+
"description": "Returns the Current Query",
|
|
8851
9038
|
"uiLabel": "Get Current Query"
|
|
8852
9039
|
},
|
|
8853
9040
|
{
|
|
@@ -8905,6 +9092,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8905
9092
|
"kind": "Interface",
|
|
8906
9093
|
"description": "Manages AdapTableQL (Query Language)",
|
|
8907
9094
|
"properties": [
|
|
9095
|
+
{
|
|
9096
|
+
"name": "getAdaptableQueryExpression",
|
|
9097
|
+
"kind": "function",
|
|
9098
|
+
"description": "Returns the Expression string of the given AdaptableQuery, which may be either a Boolean, an AggregatedBoolean, a Scalar, an AggregatedScalar or an ObservableExpression expression",
|
|
9099
|
+
"uiLabel": "Get Adaptable Query Expression"
|
|
9100
|
+
},
|
|
8908
9101
|
{
|
|
8909
9102
|
"name": "getASTForExpression",
|
|
8910
9103
|
"kind": "function",
|
|
@@ -8914,7 +9107,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8914
9107
|
{
|
|
8915
9108
|
"name": "getColumnsFromExpression",
|
|
8916
9109
|
"kind": "function",
|
|
8917
|
-
"description": "Returns all Columns referenced in a
|
|
9110
|
+
"description": "Returns all Columns referenced in a QueryExpression",
|
|
8918
9111
|
"uiLabel": "Get Columns From Expression"
|
|
8919
9112
|
},
|
|
8920
9113
|
{
|
|
@@ -8930,10 +9123,16 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8930
9123
|
"uiLabel": "Get Queryable Column Ids"
|
|
8931
9124
|
},
|
|
8932
9125
|
{
|
|
8933
|
-
"name": "
|
|
9126
|
+
"name": "isValidAggregatedBooleanExpression",
|
|
9127
|
+
"kind": "function",
|
|
9128
|
+
"description": "Whether the given AggregatedBooleanExpression is valid",
|
|
9129
|
+
"uiLabel": "Is Valid Aggregated Boolean Expression"
|
|
9130
|
+
},
|
|
9131
|
+
{
|
|
9132
|
+
"name": "isValidAggregatedScalarExpression",
|
|
8934
9133
|
"kind": "function",
|
|
8935
|
-
"description": "Whether the given
|
|
8936
|
-
"uiLabel": "Is Valid
|
|
9134
|
+
"description": "Whether the given AggregatedScalarExpression is valid",
|
|
9135
|
+
"uiLabel": "Is Valid Aggregated Scalar Expression"
|
|
8937
9136
|
},
|
|
8938
9137
|
{
|
|
8939
9138
|
"name": "isValidBooleanExpression",
|
|
@@ -8949,89 +9148,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8949
9148
|
}
|
|
8950
9149
|
]
|
|
8951
9150
|
},
|
|
8952
|
-
"QueryLanguageOptions": {
|
|
8953
|
-
"name": "QueryLanguageOptions",
|
|
8954
|
-
"kind": "Interface",
|
|
8955
|
-
"description": "Options for managing Expressions using AdapTableQL",
|
|
8956
|
-
"properties": [
|
|
8957
|
-
{
|
|
8958
|
-
"name": "defaultAggregationFunctions",
|
|
8959
|
-
"kind": "REFERENCE",
|
|
8960
|
-
"description": "Aggregation Expression Functions available in AdapTableQL",
|
|
8961
|
-
"uiLabel": "Default Aggregation Functions",
|
|
8962
|
-
"isOptional": true,
|
|
8963
|
-
"gridInfo": "item",
|
|
8964
|
-
"defaultValue": "null (sets all)",
|
|
8965
|
-
"reference": "unknown"
|
|
8966
|
-
},
|
|
8967
|
-
{
|
|
8968
|
-
"name": "defaultBooleanFunctions",
|
|
8969
|
-
"kind": "REFERENCE",
|
|
8970
|
-
"description": "Boolean Expression Functions available in AdapTableQL",
|
|
8971
|
-
"uiLabel": "Default Boolean Functions",
|
|
8972
|
-
"isOptional": true,
|
|
8973
|
-
"gridInfo": "item",
|
|
8974
|
-
"defaultValue": "null (sets all)",
|
|
8975
|
-
"reference": "unknown"
|
|
8976
|
-
},
|
|
8977
|
-
{
|
|
8978
|
-
"name": "defaultObservableFunctions",
|
|
8979
|
-
"kind": "REFERENCE",
|
|
8980
|
-
"description": "Observable Expression Functions available in AdapTableQL",
|
|
8981
|
-
"uiLabel": "Default Observable Functions",
|
|
8982
|
-
"isOptional": true,
|
|
8983
|
-
"gridInfo": "item",
|
|
8984
|
-
"defaultValue": "null (sets all)",
|
|
8985
|
-
"reference": "unknown"
|
|
8986
|
-
},
|
|
8987
|
-
{
|
|
8988
|
-
"name": "defaultScalarFunctions",
|
|
8989
|
-
"kind": "REFERENCE",
|
|
8990
|
-
"description": "Scalar Expression Functions available in AdapTableQL",
|
|
8991
|
-
"uiLabel": "Default Scalar Functions",
|
|
8992
|
-
"isOptional": true,
|
|
8993
|
-
"gridInfo": "item",
|
|
8994
|
-
"defaultValue": "null (sets all)",
|
|
8995
|
-
"reference": "unknown"
|
|
8996
|
-
},
|
|
8997
|
-
{
|
|
8998
|
-
"name": "maxTimeframeSize",
|
|
8999
|
-
"kind": "number",
|
|
9000
|
-
"description": "Maximum time (in milliseconds) to hold a Data Change event in a trailing timeframe (see observableExpressionFunctions); value is capped at 86400000 (~24 hours) for performance reasons",
|
|
9001
|
-
"uiLabel": "Max Timeframe Size",
|
|
9002
|
-
"isOptional": true,
|
|
9003
|
-
"gridInfo": "item",
|
|
9004
|
-
"defaultValue": "28800000 (~8 hours)"
|
|
9005
|
-
},
|
|
9006
|
-
{
|
|
9007
|
-
"name": "moduleExpressionFunctions",
|
|
9008
|
-
"kind": "unknown",
|
|
9009
|
-
"description": "Module specific ExpressionFunctions; if not defined, it falls back to the defined default values",
|
|
9010
|
-
"uiLabel": "Module Expression Functions",
|
|
9011
|
-
"isOptional": true,
|
|
9012
|
-
"gridInfo": "item",
|
|
9013
|
-
"defaultValue": "undefined (defaults to default values)"
|
|
9014
|
-
},
|
|
9015
|
-
{
|
|
9016
|
-
"name": "performExpressionValidation",
|
|
9017
|
-
"kind": "boolean",
|
|
9018
|
-
"description": "Validate Expressions before they can be run or saved",
|
|
9019
|
-
"uiLabel": "Perform Expression Validation",
|
|
9020
|
-
"isOptional": true,
|
|
9021
|
-
"gridInfo": "item",
|
|
9022
|
-
"defaultValue": "true"
|
|
9023
|
-
},
|
|
9024
|
-
{
|
|
9025
|
-
"name": "queryableColumns",
|
|
9026
|
-
"kind": "unknown",
|
|
9027
|
-
"description": "Columns that can be included in AdapTableQL Expressions; leave unset to include **ALL**, provide empty array to set **NONE**",
|
|
9028
|
-
"uiLabel": "Queryable Columns",
|
|
9029
|
-
"isOptional": true,
|
|
9030
|
-
"gridInfo": "item",
|
|
9031
|
-
"defaultValue": "undefined"
|
|
9032
|
-
}
|
|
9033
|
-
]
|
|
9034
|
-
},
|
|
9035
9151
|
"QueryState": {
|
|
9036
9152
|
"name": "QueryState",
|
|
9037
9153
|
"kind": "Interface",
|
|
@@ -9802,16 +9918,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
9802
9918
|
"isOptional": true,
|
|
9803
9919
|
"gridInfo": "item",
|
|
9804
9920
|
"defaultValue": "'Search'"
|
|
9805
|
-
},
|
|
9806
|
-
{
|
|
9807
|
-
"name": "serverSearchOptions",
|
|
9808
|
-
"kind": "REFERENCE",
|
|
9809
|
-
"description": "Which searching and filtering options, if any, should take place on server",
|
|
9810
|
-
"uiLabel": "Server Search Options",
|
|
9811
|
-
"isOptional": true,
|
|
9812
|
-
"gridInfo": "item",
|
|
9813
|
-
"defaultValue": "undefined",
|
|
9814
|
-
"reference": "unknown"
|
|
9815
9921
|
}
|
|
9816
9922
|
]
|
|
9817
9923
|
},
|
|
@@ -9868,6 +9974,25 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
9868
9974
|
}
|
|
9869
9975
|
]
|
|
9870
9976
|
},
|
|
9977
|
+
"SettingsPanelApi": {
|
|
9978
|
+
"name": "SettingsPanelApi",
|
|
9979
|
+
"kind": "Interface",
|
|
9980
|
+
"description": "Provides run-time access to the Settings Panel",
|
|
9981
|
+
"properties": [
|
|
9982
|
+
{
|
|
9983
|
+
"name": "showCustomSettingsPanel",
|
|
9984
|
+
"kind": "function",
|
|
9985
|
+
"description": "Opens Settings Panel with the Custom Settings Panel, provided by name, displayed",
|
|
9986
|
+
"uiLabel": "Show Custom Settings Panel"
|
|
9987
|
+
},
|
|
9988
|
+
{
|
|
9989
|
+
"name": "showSettingsPanel",
|
|
9990
|
+
"kind": "function",
|
|
9991
|
+
"description": "Opens Settings Panel and displays specified Module (if provided) or first available one",
|
|
9992
|
+
"uiLabel": "Show Settings Panel"
|
|
9993
|
+
}
|
|
9994
|
+
]
|
|
9995
|
+
},
|
|
9871
9996
|
"SharedEntity": {
|
|
9872
9997
|
"name": "SharedEntity",
|
|
9873
9998
|
"kind": "Interface",
|
|
@@ -10107,7 +10232,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10107
10232
|
"SpecialColumnSettings": {
|
|
10108
10233
|
"name": "SpecialColumnSettings",
|
|
10109
10234
|
"kind": "Interface",
|
|
10110
|
-
"description": "Base Settings for
|
|
10235
|
+
"description": "Base Settings for Calculated Columns and FreeText Columns",
|
|
10111
10236
|
"properties": [
|
|
10112
10237
|
{
|
|
10113
10238
|
"name": "Aggregatable",
|
|
@@ -10192,19 +10317,19 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10192
10317
|
"StateOptions": {
|
|
10193
10318
|
"name": "StateOptions",
|
|
10194
10319
|
"kind": "Interface",
|
|
10195
|
-
"description": "Options related to
|
|
10320
|
+
"description": "Options related to Adaptable State hydration/dehydration - allows users to intercept state persistence and state loading with custom functionality",
|
|
10196
10321
|
"properties": [
|
|
10197
10322
|
{
|
|
10198
10323
|
"name": "applyState",
|
|
10199
10324
|
"kind": "unknown",
|
|
10200
|
-
"description": "Allows hooking into
|
|
10325
|
+
"description": "Allows hooking into Adaptable State hydration",
|
|
10201
10326
|
"uiLabel": "Apply State",
|
|
10202
10327
|
"isOptional": true
|
|
10203
10328
|
},
|
|
10204
10329
|
{
|
|
10205
10330
|
"name": "clearState",
|
|
10206
10331
|
"kind": "REFERENCE",
|
|
10207
|
-
"description": "Allows clearing of remote
|
|
10332
|
+
"description": "Allows clearing of remote Adaptable State",
|
|
10208
10333
|
"uiLabel": "Clear State",
|
|
10209
10334
|
"isOptional": true,
|
|
10210
10335
|
"reference": "unknown"
|
|
@@ -10212,7 +10337,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10212
10337
|
{
|
|
10213
10338
|
"name": "debounceStateDelay",
|
|
10214
10339
|
"kind": "number",
|
|
10215
|
-
"description": "Delay (in ms) to debounce saveState/persistState calls enabling grouping multiple sequential calls in single one (e.g. elevator doors)",
|
|
10340
|
+
"description": "Delay (in ms) to debounce `saveState` / `persistState` calls enabling grouping multiple sequential calls in single one (e.g. elevator doors)",
|
|
10216
10341
|
"uiLabel": "Debounce State Delay",
|
|
10217
10342
|
"isOptional": true,
|
|
10218
10343
|
"defaultValue": "400"
|
|
@@ -10220,7 +10345,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10220
10345
|
{
|
|
10221
10346
|
"name": "loadState",
|
|
10222
10347
|
"kind": "REFERENCE",
|
|
10223
|
-
"description": "Allows the customization of
|
|
10348
|
+
"description": "Allows the customization of Adaptable State loading",
|
|
10224
10349
|
"uiLabel": "Load State",
|
|
10225
10350
|
"isOptional": true,
|
|
10226
10351
|
"reference": "AdaptableLoadStateFunction"
|
|
@@ -10228,7 +10353,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10228
10353
|
{
|
|
10229
10354
|
"name": "persistState",
|
|
10230
10355
|
"kind": "REFERENCE",
|
|
10231
|
-
"description": "Allows the customization of state persistence
|
|
10356
|
+
"description": "Allows the customization of state persistence",
|
|
10232
10357
|
"uiLabel": "Persist State",
|
|
10233
10358
|
"isOptional": true,
|
|
10234
10359
|
"reference": "AdaptablePersistStateFunction"
|
|
@@ -10236,7 +10361,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10236
10361
|
{
|
|
10237
10362
|
"name": "saveState",
|
|
10238
10363
|
"kind": "REFERENCE",
|
|
10239
|
-
"description": "Allows the customization of the
|
|
10364
|
+
"description": "Allows the customization of the Adaptable State that is going to be persisted",
|
|
10240
10365
|
"uiLabel": "Save State",
|
|
10241
10366
|
"isOptional": true,
|
|
10242
10367
|
"reference": "unknown"
|
|
@@ -10321,7 +10446,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10321
10446
|
"SystemStatusMessageDisplayedInfo": {
|
|
10322
10447
|
"name": "SystemStatusMessageDisplayedInfo",
|
|
10323
10448
|
"kind": "Interface",
|
|
10324
|
-
"description": "Object returned by the SystemStatusMessageDisplayed
|
|
10449
|
+
"description": "Object returned by the `SystemStatusMessageDisplayed` event",
|
|
10325
10450
|
"properties": [
|
|
10326
10451
|
{
|
|
10327
10452
|
"name": "systemStatusMessageInfo",
|
|
@@ -10445,14 +10570,14 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10445
10570
|
{
|
|
10446
10571
|
"name": "getSharedEntities",
|
|
10447
10572
|
"kind": "unknown",
|
|
10448
|
-
"description": "
|
|
10573
|
+
"description": "Async function which retrieves available Shared Entities that user can download and merge automatically with Adaptable State",
|
|
10449
10574
|
"uiLabel": "Get Shared Entities",
|
|
10450
10575
|
"defaultValue": "null"
|
|
10451
10576
|
},
|
|
10452
10577
|
{
|
|
10453
10578
|
"name": "setSharedEntities",
|
|
10454
10579
|
"kind": "unknown",
|
|
10455
|
-
"description": "
|
|
10580
|
+
"description": "Async function which uploads Shared Entities so they can be downloaded by other members of the team",
|
|
10456
10581
|
"uiLabel": "Set Shared Entities",
|
|
10457
10582
|
"defaultValue": "null"
|
|
10458
10583
|
},
|
|
@@ -10844,6 +10969,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10844
10969
|
"description": "Retrieves `permittedValues` property from User Interface Options",
|
|
10845
10970
|
"uiLabel": "Get All Permitted Values Items"
|
|
10846
10971
|
},
|
|
10972
|
+
{
|
|
10973
|
+
"name": "getBulkUpdatePermittedValuesForColumn",
|
|
10974
|
+
"kind": "function",
|
|
10975
|
+
"description": "Retrieves Permitted values for Bulk Update Module",
|
|
10976
|
+
"uiLabel": "Get Bulk Update Permitted Values For Column"
|
|
10977
|
+
},
|
|
10847
10978
|
{
|
|
10848
10979
|
"name": "getColorPalette",
|
|
10849
10980
|
"kind": "function",
|
|
@@ -10853,7 +10984,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10853
10984
|
{
|
|
10854
10985
|
"name": "getCustomSortPermittedValuesForColumn",
|
|
10855
10986
|
"kind": "function",
|
|
10856
|
-
"description": "Retrieves Permitted values for Custom
|
|
10987
|
+
"description": "Retrieves Permitted values for Custom Sort Module",
|
|
10857
10988
|
"uiLabel": "Get Custom Sort Permitted Values For Column"
|
|
10858
10989
|
},
|
|
10859
10990
|
{
|
|
@@ -10877,7 +11008,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10877
11008
|
{
|
|
10878
11009
|
"name": "getFilterPermittedValuesForColumn",
|
|
10879
11010
|
"kind": "function",
|
|
10880
|
-
"description": "Retrieves Permitted values for filtering by column values in Floating Filter and
|
|
11011
|
+
"description": "Retrieves Permitted values for filtering by column values in Floating Filter and Quick Filter Bar",
|
|
10881
11012
|
"uiLabel": "Get Filter Permitted Values For Column"
|
|
10882
11013
|
},
|
|
10883
11014
|
{
|
|
@@ -10985,7 +11116,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10985
11116
|
"description": "Which sections to show in the Grid Info Screen",
|
|
10986
11117
|
"uiLabel": "Grid Info Sections",
|
|
10987
11118
|
"isOptional": true,
|
|
10988
|
-
"defaultValue": "['GridSummary', 'AdaptableOptions'
|
|
11119
|
+
"defaultValue": "['GridSummary', 'AdaptableOptions', 'ColumnInfo']",
|
|
10989
11120
|
"reference": "unknown"
|
|
10990
11121
|
},
|
|
10991
11122
|
{
|