@adaptabletools/adaptable 12.0.0-canary.3 → 12.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/base.css +26 -0
- package/bundle.cjs.js +102 -99
- package/index.css +34 -0
- package/package.json +2 -2
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableOptions/ActionOptions.d.ts +181 -1
- package/src/AdaptableOptions/AdaptableOptions.d.ts +5 -0
- package/src/AdaptableOptions/ColumnOptions.d.ts +4 -0
- package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +17 -2
- package/src/AdaptableOptions/EditOptions.d.ts +7 -80
- package/src/AdaptableOptions/FinancePluginOptions.d.ts +3 -3
- package/src/AdaptableOptions/LayoutOptions.d.ts +11 -6
- package/src/AdaptableOptions/SettingsPanelOptions.d.ts +2 -0
- package/src/AdaptableOptions/StateOptions.d.ts +10 -0
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +2 -112
- package/src/Api/ActionApi.d.ts +24 -0
- package/src/Api/{Events/RowFormSubmitted.js → ActionApi.js} +0 -0
- package/src/Api/AdaptableApi.d.ts +5 -0
- package/src/Api/ConfigApi.d.ts +1 -1
- package/src/Api/EventApi.d.ts +9 -9
- package/src/Api/Events/ActionRowSubmitted.d.ts +58 -0
- package/src/Api/Events/ActionRowSubmitted.js +2 -0
- package/src/Api/GridApi.d.ts +0 -14
- package/src/Api/Implementation/ActionApiImpl.d.ts +8 -0
- package/src/Api/Implementation/ActionApiImpl.js +56 -0
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -0
- package/src/Api/Implementation/AdaptableApiImpl.js +2 -0
- package/src/Api/Implementation/AlertApiImpl.d.ts +2 -4
- package/src/Api/Implementation/AlertApiImpl.js +2 -3
- package/src/Api/Implementation/ApiBase.d.ts +13 -1
- package/src/Api/Implementation/ApiBase.js +10 -0
- package/src/Api/Implementation/ColumnApiImpl.js +2 -2
- package/src/Api/Implementation/ConditionalStyleApiImpl.d.ts +2 -4
- package/src/Api/Implementation/ConditionalStyleApiImpl.js +2 -3
- package/src/Api/Implementation/ConfigApiImpl.d.ts +1 -1
- package/src/Api/Implementation/CustomSortApiImpl.d.ts +2 -4
- package/src/Api/Implementation/CustomSortApiImpl.js +2 -3
- package/src/Api/Implementation/FlashingCellApiImpl.d.ts +2 -4
- package/src/Api/Implementation/FlashingCellApiImpl.js +2 -3
- package/src/Api/Implementation/FormatColumnApiImpl.d.ts +2 -4
- package/src/Api/Implementation/FormatColumnApiImpl.js +2 -3
- package/src/Api/Implementation/GridApiImpl.d.ts +0 -3
- package/src/Api/Implementation/GridApiImpl.js +0 -44
- package/src/Api/Implementation/InternalApiImpl.d.ts +1 -1
- package/src/Api/Implementation/InternalApiImpl.js +5 -4
- package/src/Api/Implementation/LayoutApiImpl.d.ts +0 -2
- package/src/Api/Implementation/LayoutApiImpl.js +0 -6
- package/src/Api/Implementation/PlusMinusApiImpl.d.ts +2 -4
- package/src/Api/Implementation/PlusMinusApiImpl.js +2 -3
- package/src/Api/Implementation/ScheduleApiImpl.d.ts +6 -16
- package/src/Api/Implementation/ScheduleApiImpl.js +10 -16
- package/src/Api/Implementation/ShortcutApiImpl.d.ts +2 -4
- package/src/Api/Implementation/ShortcutApiImpl.js +2 -3
- package/src/Api/Implementation/SmartEditApiImpl.d.ts +1 -1
- package/src/Api/Implementation/SmartEditApiImpl.js +2 -1
- package/src/Api/Implementation/StatusBarApiImpl.d.ts +4 -3
- package/src/Api/Implementation/StatusBarApiImpl.js +2 -2
- package/src/Api/Implementation/TeamSharingApiImpl.js +2 -1
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +1 -2
- package/src/Api/Implementation/UserInterfaceApiImpl.js +0 -4
- package/src/Api/InternalApi.d.ts +1 -1
- package/src/Api/LayoutApi.d.ts +1 -6
- package/src/Api/SmartEditApi.d.ts +1 -1
- package/src/Api/StatusBarApi.d.ts +10 -3
- package/src/Api/UserInterfaceApi.d.ts +1 -5
- package/src/PredefinedConfig/Common/AdaptableAlert.js +4 -2
- package/src/PredefinedConfig/Common/AdaptableColumn.js +2 -1
- package/src/PredefinedConfig/Common/AdaptableForm.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +24 -18
- package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +2 -4
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +38 -36
- package/src/PredefinedConfig/Common/AdaptableQuery.js +2 -1
- package/src/PredefinedConfig/Common/Menu.d.ts +3 -3
- package/src/PredefinedConfig/Common/Types.d.ts +1 -1
- package/src/PredefinedConfig/StatusBarState.d.ts +5 -2
- package/src/PredefinedConfig/Uuid.js +2 -1
- package/src/Redux/ActionsReducers/AlertRedux.js +16 -8
- package/src/Redux/ActionsReducers/ApplicationRedux.js +8 -4
- package/src/Redux/ActionsReducers/BulkUpdateRedux.js +6 -3
- package/src/Redux/ActionsReducers/CalculatedColumnRedux.js +10 -5
- package/src/Redux/ActionsReducers/CellSummaryRedux.js +2 -1
- package/src/Redux/ActionsReducers/ConditionalStyleRedux.js +14 -7
- package/src/Redux/ActionsReducers/CustomSortRedux.js +14 -7
- package/src/Redux/ActionsReducers/DashboardRedux.js +24 -12
- package/src/Redux/ActionsReducers/ExportRedux.js +16 -8
- package/src/Redux/ActionsReducers/FlashingCellRedux.js +16 -8
- package/src/Redux/ActionsReducers/FormatColumnRedux.js +14 -7
- package/src/Redux/ActionsReducers/FreeTextColumnRedux.js +14 -7
- package/src/Redux/ActionsReducers/GridRedux.js +38 -19
- package/src/Redux/ActionsReducers/LayoutRedux.js +30 -15
- package/src/Redux/ActionsReducers/PluginsRedux.js +4 -2
- package/src/Redux/ActionsReducers/PlusMinusRedux.js +16 -8
- package/src/Redux/ActionsReducers/PopupRedux.js +37 -19
- package/src/Redux/ActionsReducers/QueryRedux.js +12 -6
- package/src/Redux/ActionsReducers/QuickSearchRedux.js +8 -4
- package/src/Redux/ActionsReducers/ScheduleRedux.js +58 -29
- package/src/Redux/ActionsReducers/ShortcutRedux.js +14 -7
- package/src/Redux/ActionsReducers/SmartEditRedux.js +6 -3
- package/src/Redux/ActionsReducers/StatusBarRedux.js +10 -5
- package/src/Redux/ActionsReducers/SystemRedux.js +103 -51
- package/src/Redux/ActionsReducers/SystemStatusRedux.js +4 -2
- package/src/Redux/ActionsReducers/TeamSharingRedux.js +22 -11
- package/src/Redux/ActionsReducers/ThemeRedux.js +10 -5
- package/src/Redux/ActionsReducers/ToolPanelRedux.js +16 -8
- package/src/Redux/DeadRedux.js +16 -8
- package/src/Redux/Store/AdaptableReduxMerger.js +2 -1
- package/src/Redux/Store/AdaptableStore.js +7 -2
- package/src/Strategy/AlertModule.d.ts +2 -18
- package/src/Strategy/AlertModule.js +2 -1
- package/src/Strategy/ConditionalStyleModule.d.ts +2 -10
- package/src/Strategy/DashboardModule.js +3 -1
- package/src/Strategy/DataChangeHistoryModule.d.ts +2 -8
- package/src/Strategy/DataSetModule.d.ts +2 -13
- package/src/Strategy/ExportModule.d.ts +2 -13
- package/src/Strategy/ExportModule.js +1 -1
- package/src/Strategy/FilterModule.d.ts +2 -14
- package/src/Strategy/FilterModule.js +1 -1
- package/src/Strategy/FlashingCellModule.d.ts +2 -9
- package/src/Strategy/GridInfoModule.js +6 -2
- package/src/Strategy/Interface/IModule.d.ts +2 -1
- package/src/Strategy/LayoutModule.d.ts +3 -17
- package/src/Strategy/LayoutModule.js +57 -4
- package/src/Strategy/PlusMinusModule.d.ts +2 -9
- package/src/Strategy/QuickSearchModule.d.ts +2 -7
- package/src/Strategy/ScheduleModule.d.ts +2 -13
- package/src/Strategy/ShortcutModule.d.ts +2 -9
- package/src/Strategy/StatusBarModule.js +2 -2
- package/src/Strategy/SystemStatusModule.d.ts +2 -7
- package/src/Strategy/ThemeModule.d.ts +2 -8
- package/src/Strategy/Utilities/getAlertBehaviourViewItems.js +2 -1
- package/src/Strategy/Utilities/getAlertPreviewViewItems.js +2 -1
- package/src/Strategy/Utilities/getCustomSortColumnViewItems.js +2 -1
- package/src/Strategy/Utilities/getCustomSortSortOrderViewItems.js +2 -1
- package/src/Strategy/Utilities/getExportColumnsViewItems.js +2 -1
- package/src/Strategy/Utilities/getExportRowsViewItems.js +2 -1
- package/src/Strategy/Utilities/getExpressionViewItems.js +2 -1
- package/src/Strategy/Utilities/getFlashingCellDurationViewItems.js +2 -1
- package/src/Strategy/Utilities/getFlashingCellStyleViewItems.d.ts +2 -6
- package/src/Strategy/Utilities/getFlashingCellStyleViewItems.js +2 -1
- package/src/Strategy/Utilities/getFlashingTargetViewItems.js +2 -1
- package/src/Strategy/Utilities/getFormatColumnSettingsViewItems.js +2 -1
- package/src/Strategy/Utilities/getFormatColumnStyleViewItems.js +2 -1
- package/src/Strategy/Utilities/getObjectTagsViewItems.js +2 -1
- package/src/Strategy/Utilities/getRuleViewItems.js +2 -1
- package/src/Strategy/Utilities/getScopeViewItems.js +2 -1
- package/src/Strategy/Utilities/getShortcutSettingsViewItems.js +2 -1
- package/src/Strategy/Utilities/getStyleViewItems.js +2 -1
- package/src/Utilities/Constants/DocumentationLinkConstants.d.ts +1 -0
- package/src/Utilities/Constants/DocumentationLinkConstants.js +2 -1
- package/src/Utilities/Constants/GeneralConstants.js +2 -1
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +21 -13
- package/src/Utilities/ExpressionFunctions/dateUtils.js +2 -1
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +20 -10
- package/src/Utilities/Extensions/TypeExtensions.d.ts +30 -0
- package/src/Utilities/Helpers/AdaptableHelper.d.ts +1 -3
- package/src/Utilities/Helpers/AdaptableHelper.js +6 -16
- package/src/Utilities/Helpers/DateHelper.d.ts +27 -0
- package/src/Utilities/Helpers/DateHelper.js +43 -6
- package/src/Utilities/Helpers/Helper.js +2 -1
- package/src/Utilities/Helpers/LoggingHelper.js +2 -1
- package/src/Utilities/Helpers/StyleHelper.js +8 -4
- package/src/Utilities/MenuItem.d.ts +4 -3
- package/src/Utilities/MenuItem.js +9 -3
- package/src/Utilities/ObjectFactory.js +1 -0
- package/src/Utilities/Services/Interface/IMetamodelService.d.ts +1 -0
- package/src/Utilities/Services/Interface/IRowEditService.d.ts +3 -3
- package/src/Utilities/Services/MetamodelService.d.ts +7 -1
- package/src/Utilities/Services/MetamodelService.js +82 -6
- package/src/Utilities/Services/ModuleService.js +3 -1
- package/src/Utilities/Services/RowEditService.d.ts +6 -6
- package/src/Utilities/Services/RowEditService.js +24 -25
- package/src/Utilities/isAdaptableObject.js +2 -1
- package/src/Utilities/isMacLike.js +2 -1
- package/src/Utilities/license/decode.js +1 -1
- package/src/Utilities/reorder.js +2 -1
- package/src/Utilities/runIfNotResolvedIn.js +2 -1
- package/src/Utilities/waitForCondition.d.ts +1 -1
- package/src/Utilities/waitForCondition.js +2 -1
- package/src/View/AdaptableContext.js +2 -1
- package/src/View/AdaptableView.js +2 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +12 -9
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizardColumnsStep.js +2 -1
- package/src/View/AdaptableWizardView/Utils.js +2 -1
- package/src/View/AdaptableWizardView/Wizard.js +4 -2
- package/src/View/AdaptableWizardView/helper.js +6 -3
- package/src/View/Alert/ActiveAlertsPanel.js +2 -1
- package/src/View/Alert/AlertEmptyView.js +2 -1
- package/src/View/Alert/AlertStatusSubPanel.js +2 -1
- package/src/View/Alert/Utilities/getAlertButtonStyle.js +2 -1
- package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +4 -2
- package/src/View/Alert/Wizard/AlertButtonsEditor.js +2 -1
- package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +6 -3
- package/src/View/Alert/Wizard/AlertRulesWizardSection.js +4 -2
- package/src/View/Alert/Wizard/AlertScopeWizardSection.js +2 -1
- package/src/View/Alert/Wizard/AlertWizard.js +2 -1
- package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +2 -1
- package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +4 -2
- package/src/View/Alert/Wizard/isValidAlertRules.js +2 -1
- package/src/View/CalculatedColumn/CalculatedColumnSummary.d.ts +1 -1
- package/src/View/CalculatedColumn/Utilities/getCalculatedColumnSettingTags.js +2 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +6 -3
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +6 -3
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +2 -1
- package/src/View/CellSummary/CellSummaryPopover.js +2 -1
- package/src/View/CellSummary/CellSummaryStatusBarSubPanelPopover.js +2 -1
- package/src/View/CellSummary/CellSummaryStatusPanel.js +2 -1
- package/src/View/ColorPicker.d.ts +5 -1
- package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
- package/src/View/Components/AdaptableDateInput/index.js +11 -11
- package/src/View/Components/AdaptableInput/index.d.ts +2 -2
- package/src/View/Components/AdaptableObjectList/AdaptableObjectCompactList.js +4 -2
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +4 -2
- package/src/View/Components/Buttons/ButtonClone.js +2 -1
- package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonEdit.js +2 -1
- package/src/View/Components/Buttons/ButtonNew.js +2 -1
- package/src/View/Components/ColumnSelector/index.js +2 -1
- package/src/View/Components/EntityRulesEditor/index.js +6 -3
- package/src/View/Components/ExpressionWizard.js +2 -1
- package/src/View/Components/ExternalRenderer.js +2 -1
- package/src/View/Components/FilterForm/FilterForm.js +2 -1
- package/src/View/Components/FilterForm/ListBoxFilterForm.js +2 -1
- package/src/View/Components/FilterForm/ListBoxMenu.js +2 -2
- package/src/View/Components/FilterForm/QuickFilterForm.js +5 -3
- package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +1 -1
- package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.js +2 -1
- package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +1 -2
- package/src/View/Components/ListBox/DualListBoxEditor.js +2 -1
- package/src/View/Components/ModuleValueSelector/index.js +2 -1
- package/src/View/Components/NewScopeComponent.js +6 -3
- package/src/View/Components/Panels/PanelFooter.js +2 -1
- package/src/View/Components/Panels/PanelWithImage.d.ts +1 -429
- package/src/View/Components/Panels/PanelWithImage.js +2 -0
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +2 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupBody.js +2 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +2 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +2 -1
- package/src/View/Components/Popups/AdaptablePopup/CustomSettingsPanelView.js +2 -1
- package/src/View/Components/Popups/AdaptablePopup/Navigation.js +5 -5
- package/src/View/Components/Popups/AdaptablePopup/PopupContext.js +2 -1
- package/src/View/Components/Popups/AdaptablePopup/PopupPanel.js +2 -1
- package/src/View/Components/Popups/AdaptablePopup/TopBar.js +6 -5
- package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +2 -1
- package/src/View/Components/Popups/AdaptablePopupAlert.js +4 -4
- package/src/View/Components/Popups/AdaptablePopupPrompt.js +2 -1
- package/src/View/Components/Popups/AdaptablePopupTeamSharing.js +2 -1
- package/src/View/Components/Popups/AdaptableToaster.js +2 -1
- package/src/View/Components/Popups/FormPopups/FormPopups.js +4 -2
- package/src/View/Components/Popups/Utilities.js +8 -4
- package/src/View/Components/Popups/WindowPopups/WindowPopups.js +2 -1
- package/src/View/Components/Selectors/ColumnSelector.js +2 -1
- package/src/View/Components/TagValueSelector/index.js +4 -2
- package/src/View/Components/ToolPanel/AdaptableToolPanel.d.ts +1 -1
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +5 -1
- package/src/View/Components/ToolPanel/CustomToolPanelContent.js +2 -1
- package/src/View/Components/ToolPanel/ToolPanelPopup.d.ts +1 -1
- package/src/View/Components/ToolPanel/ToolPanelPopup.js +1 -1
- package/src/View/Components/ToolPanel/ToolPanelWrapper.js +2 -1
- package/src/View/Components/WizardSummaryPage.js +2 -1
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleScopeWizardSection.js +2 -1
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.js +4 -2
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleStyleWizardSection.js +2 -1
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.js +2 -1
- package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +6 -3
- package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +6 -3
- package/src/View/CustomSort/Wizard/CustomSortWizard.js +2 -1
- package/src/View/Dashboard/CustomDashboardButton.js +2 -1
- package/src/View/Dashboard/CustomToolbarWrapper.js +2 -1
- package/src/View/Dashboard/Dashboard.d.ts +1 -1
- package/src/View/Dashboard/Dashboard.js +4 -3
- package/src/View/Dashboard/DashboardPopup.js +1 -1
- package/src/View/Dashboard/ModuleToolbarWrapper.js +2 -1
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.d.ts +7 -0
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +6 -6
- package/src/View/DataChangeHistory/DataChangeHistoryStatusBarContent.js +2 -1
- package/src/View/DataChangeHistory/DataChangeHistoryViewPanel.js +2 -1
- package/src/View/DataChangeHistory/buildActionColumnButton.js +13 -9
- package/src/View/DataSet/DataSetSelector.js +2 -1
- package/src/View/DataSet/DataSetStatusPanelPopover.js +2 -1
- package/src/View/DataSet/DataSetViewPanel.d.ts +1 -1
- package/src/View/Export/ExportSelector.js +2 -1
- package/src/View/Export/ExportViewPanel.d.ts +1 -1
- package/src/View/Export/ReportExportDropdown.js +2 -1
- package/src/View/Export/Wizard/NewReportWizard.js +4 -2
- package/src/View/Export/Wizard/ReportColumnsWizardSection.js +6 -3
- package/src/View/Export/Wizard/ReportNameWizardSection.js +6 -3
- package/src/View/Export/Wizard/ReportRowsWizardSection.js +6 -3
- package/src/View/Filter/ActiveFiltersPanel.js +2 -1
- package/src/View/Filter/FilterStatusBarSubPanelPopover.js +2 -1
- package/src/View/Filter/FilterSummary.d.ts +1 -1
- package/src/View/Filter/FilterViewPanel.d.ts +1 -1
- package/src/View/FlashingCell/FlashingCellStyle.js +2 -1
- package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +4 -2
- package/src/View/FlashingCell/Wizard/FlashingCellScopeWizardSection.js +2 -1
- package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +10 -5
- package/src/View/FlashingCell/Wizard/FlashingCellStyleWizardSection.js +6 -3
- package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +2 -1
- package/src/View/FlashingCell/Wizard/isValidFlashingCellRules.js +2 -1
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +8 -4
- package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +4 -2
- package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +4 -2
- package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +4 -2
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +6 -3
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +2 -1
- package/src/View/GridInfo/AdaptableObjectsSummary.js +2 -1
- package/src/View/GridInfo/AdaptableOptionsComponent.js +2 -1
- package/src/View/GridInfo/GridInfoPopup.js +6 -4
- package/src/View/KeyHint.js +2 -1
- package/src/View/Layout/EditCurrentLayoutButton.js +2 -1
- package/src/View/Layout/LayoutCloneButton.js +2 -1
- package/src/View/Layout/LayoutEditorStandalonePopup.js +2 -1
- package/src/View/Layout/LayoutPopup.d.ts +1 -1
- package/src/View/Layout/LayoutRadioSelector.js +2 -1
- package/src/View/Layout/LayoutStatusBarSubPanelPopover.js +2 -1
- package/src/View/Layout/LayoutViewPanel.d.ts +1 -1
- package/src/View/Layout/Wizard/LayoutEditor/ColumnLabels.js +2 -1
- package/src/View/Layout/Wizard/LayoutEditor/ColumnList.js +2 -1
- package/src/View/Layout/Wizard/LayoutEditor/ColumnSortList.js +2 -1
- package/src/View/Layout/Wizard/LayoutEditor/PivotList.js +2 -1
- package/src/View/Layout/Wizard/LayoutEditor/RowGroupsList.js +2 -1
- package/src/View/Layout/Wizard/LayoutEditor/getItemStyle.js +2 -1
- package/src/View/Layout/Wizard/LayoutEditor/reducer.js +4 -2
- package/src/View/Layout/Wizard/LayoutEditor/utils.js +2 -1
- package/src/View/License/LicenseWatermark.js +1 -1
- package/src/View/PlusMinus/Wizard/PlusMinusScopeWizardSection.js +2 -1
- package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.js +6 -3
- package/src/View/PlusMinus/Wizard/PlusMinusWizard.js +2 -1
- package/src/View/Query/EditCurrentQueryButton.js +2 -1
- package/src/View/Query/ExpandedQueryPopup.js +2 -1
- package/src/View/Query/QueryViewPanel.d.ts +1 -1
- package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +6 -3
- package/src/View/Query/Wizard/NamedQuerySettingsWizardSection.js +6 -3
- package/src/View/QuickSearch/QuickSearchStatusBarContent.js +2 -1
- package/src/View/QuickSearch/QuickSearchViewPanel.d.ts +1 -1
- package/src/View/QuickSearch/useQuickSearchDebounced.js +2 -1
- package/src/View/Schedule/Wizard/ScheduleScheduleSummary.js +2 -1
- package/src/View/Schedule/Wizard/ScheduleScheduleWizard.js +4 -2
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsGlue42.js +2 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsIPushPull.js +2 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsOpenFin.js +2 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.js +2 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReport.js +2 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.js +4 -2
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +2 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/isSettingsValid.js +2 -1
- package/src/View/Schedule/Wizard/ScheduleWizard.js +2 -1
- package/src/View/Shortcut/Wizard/ShortcutScopeWizardSection.js +2 -1
- package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +6 -3
- package/src/View/Shortcut/Wizard/ShortcutWizard.js +2 -1
- package/src/View/SpecialColumnSettingsWizardStep.js +2 -1
- package/src/View/StateManagement/StateManagementPopup.js +2 -1
- package/src/View/StateManagement/StateManagementViewPanel.js +2 -1
- package/src/View/StateManagement/components/ClearButton.js +2 -1
- package/src/View/StateManagement/components/ExportDropdown.js +2 -1
- package/src/View/StateManagement/components/LoadButton.js +2 -1
- package/src/View/StateManagement/handleExportState.js +2 -1
- package/src/View/StatusBar/AdaptableStatusBar.js +2 -1
- package/src/View/StatusBar/StatusBarPanel.js +2 -1
- package/src/View/StatusBar/StatusBarPopup.js +5 -4
- package/src/View/SystemStatus/SystemStatusStatusBarContent.js +2 -1
- package/src/View/SystemStatus/SystemStatusViewPanel.d.ts +1 -1
- package/src/View/SystemStatus/Utilities/getStatusItemStyle.js +2 -1
- package/src/View/Theme/ThemeStatusPanelPopover.js +2 -1
- package/src/View/UIHelper.d.ts +2 -0
- package/src/View/UIHelper.js +12 -11
- package/src/View/Wizard/AdaptableWizard.js +2 -1
- package/src/View/Wizard/ObjectTagsWizardSection.js +4 -2
- package/src/View/Wizard/OnePageAdaptableWizard.js +10 -5
- package/src/View/Wizard/OnePageWizards.js +8 -4
- package/src/View/Wizard/useKeyboardNavigation.js +2 -1
- package/src/View/renderWithAdaptableContext.js +2 -1
- package/src/agGrid/ActionColumnRenderer.d.ts +1 -1
- package/src/agGrid/ActionColumnRenderer.js +1 -1
- package/src/agGrid/Adaptable.js +31 -28
- package/src/agGrid/CheckboxRenderer.js +2 -1
- package/src/agGrid/FilterWrapper.js +2 -1
- package/src/agGrid/FloatingFilterWrapper.js +2 -1
- package/src/agGrid/PercentBarRenderer.js +2 -1
- package/src/agGrid/agGridHelper.js +3 -1
- package/src/agGrid/agGridMenuHelper.js +13 -10
- package/src/agGrid/createAgStatusPanelComponent.js +2 -1
- package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +8 -5
- package/src/components/AdaptableIconComponent/index.d.ts +10 -0
- package/src/components/AdaptableIconComponent/index.js +40 -0
- package/src/components/CheckBox/index.js +2 -1
- package/src/components/CodeBlock/index.js +2 -1
- package/src/components/Dashboard/DashboardManager.js +1 -1
- package/src/components/Datepicker/DatepickerContext.js +2 -1
- package/src/components/Datepicker/index.d.ts +1 -1
- package/src/components/DragAndDropContext/ModuleManager.d.ts +1 -0
- package/src/components/DragAndDropContext/ModuleManager.js +5 -4
- package/src/components/DragAndDropContext/UnusedPanel.d.ts +3 -2
- package/src/components/DragAndDropContext/UnusedPanel.js +14 -12
- package/src/components/EllipsisContainer/index.js +4 -2
- package/src/components/ExpressionEditor/EditorContext.js +2 -1
- package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +2 -1
- package/src/components/ExpressionEditor/NamedQueryContext.js +3 -1
- package/src/components/FileDroppable/index.js +2 -1
- package/src/components/FormLayout/index.js +2 -1
- package/src/components/Input/index.d.ts +1 -1
- package/src/components/List/ListGroupItem/index.d.ts +2 -4
- package/src/components/Loader/Loader.js +4 -2
- package/src/components/Logo/index.js +2 -1
- package/src/components/Modal/Backdrop.js +2 -1
- package/src/components/Modal/index.js +2 -1
- package/src/components/OverlayTrigger/Overlay.js +2 -1
- package/src/components/OverlayTrigger/index.js +2 -1
- package/src/components/OverlayTrigger/utils.js +6 -3
- package/src/components/PopupWithFooter.d.ts +1 -1
- package/src/components/ProgressIndicator/ProgressIndicator.js +2 -1
- package/src/components/Radio/index.js +4 -2
- package/src/components/ResizeObserver/getResizeObserverObject.js +2 -1
- package/src/components/ResizeObserver/index.js +6 -3
- package/src/components/SelectList.js +2 -1
- package/src/components/SelectableList/index.js +2 -1
- package/src/components/SimpleButton/index.d.ts +2 -1
- package/src/components/SimpleButton/index.js +19 -6
- package/src/components/StylePreview.js +2 -1
- package/src/components/Tabs/index.js +6 -3
- package/src/components/Textarea/index.d.ts +5 -1
- package/src/components/ToggleButton/index.js +2 -1
- package/src/components/WindowModal/WindowModal.js +2 -1
- package/src/components/WindowModal/useStacking.js +2 -1
- package/src/components/icons/DefaultIcon.js +2 -1
- package/src/components/icons/index.d.ts +3 -1
- package/src/components/icons/index.js +10 -2
- package/src/components/utils/useContainerScrollObserver/index.js +2 -1
- package/src/components/utils/useGlobalEvent.js +2 -1
- package/src/components/utils/useLatest.js +2 -1
- package/src/components/utils/useRerender.js +2 -1
- package/src/components/utils/uuid.js +2 -1
- package/src/metamodel/adaptable-metamodel-model.d.ts +1 -1
- package/src/metamodel/adaptable.metamodel.d.ts +219 -112
- package/src/metamodel/adaptable.metamodel.js +1 -12958
- package/src/types.d.ts +8 -5
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/Api/Events/RowFormSubmitted.d.ts +0 -34
- package/src/components/ApplicationIcon.d.ts +0 -6
- package/src/components/ApplicationIcon.js +0 -13
|
@@ -4,6 +4,17 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4
4
|
kind: string;
|
|
5
5
|
description: string;
|
|
6
6
|
};
|
|
7
|
+
ActionApi: {
|
|
8
|
+
name: string;
|
|
9
|
+
kind: string;
|
|
10
|
+
description: string;
|
|
11
|
+
properties: {
|
|
12
|
+
name: string;
|
|
13
|
+
kind: string;
|
|
14
|
+
description: string;
|
|
15
|
+
uiLabel: string;
|
|
16
|
+
}[];
|
|
17
|
+
};
|
|
7
18
|
ActionColumn: {
|
|
8
19
|
name: string;
|
|
9
20
|
kind: string;
|
|
@@ -85,6 +96,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
85
96
|
uiLabel: string;
|
|
86
97
|
isOptional: boolean;
|
|
87
98
|
defaultValue?: undefined;
|
|
99
|
+
reference?: undefined;
|
|
88
100
|
} | {
|
|
89
101
|
name: string;
|
|
90
102
|
kind: string;
|
|
@@ -92,8 +104,52 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
92
104
|
uiLabel: string;
|
|
93
105
|
isOptional: boolean;
|
|
94
106
|
defaultValue: string;
|
|
107
|
+
reference?: undefined;
|
|
108
|
+
} | {
|
|
109
|
+
name: string;
|
|
110
|
+
kind: string;
|
|
111
|
+
description: string;
|
|
112
|
+
uiLabel: string;
|
|
113
|
+
isOptional: boolean;
|
|
114
|
+
reference: string;
|
|
115
|
+
defaultValue?: undefined;
|
|
95
116
|
})[];
|
|
96
117
|
};
|
|
118
|
+
ActionRowContext: {
|
|
119
|
+
name: string;
|
|
120
|
+
kind: string;
|
|
121
|
+
description: string;
|
|
122
|
+
};
|
|
123
|
+
ActionRowFormOptions: {
|
|
124
|
+
name: string;
|
|
125
|
+
kind: string;
|
|
126
|
+
description: string;
|
|
127
|
+
properties: ({
|
|
128
|
+
name: string;
|
|
129
|
+
kind: string;
|
|
130
|
+
description: string;
|
|
131
|
+
uiLabel: string;
|
|
132
|
+
isOptional: boolean;
|
|
133
|
+
defaultValue?: undefined;
|
|
134
|
+
} | {
|
|
135
|
+
name: string;
|
|
136
|
+
kind: string;
|
|
137
|
+
description: string;
|
|
138
|
+
uiLabel: string;
|
|
139
|
+
isOptional: boolean;
|
|
140
|
+
defaultValue: string;
|
|
141
|
+
})[];
|
|
142
|
+
};
|
|
143
|
+
ActionRowSubmittedInfo: {
|
|
144
|
+
name: string;
|
|
145
|
+
kind: string;
|
|
146
|
+
description: string;
|
|
147
|
+
};
|
|
148
|
+
ActionRowType: {
|
|
149
|
+
name: string;
|
|
150
|
+
kind: string;
|
|
151
|
+
description: string;
|
|
152
|
+
};
|
|
97
153
|
AdaptableAlert: {
|
|
98
154
|
name: string;
|
|
99
155
|
kind: string;
|
|
@@ -240,6 +296,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
240
296
|
kind: string;
|
|
241
297
|
description: string;
|
|
242
298
|
};
|
|
299
|
+
AdaptableDataChangeHistoryAction: {
|
|
300
|
+
name: string;
|
|
301
|
+
kind: string;
|
|
302
|
+
description: string;
|
|
303
|
+
};
|
|
304
|
+
AdaptableExternalIcon: {
|
|
305
|
+
name: string;
|
|
306
|
+
kind: string;
|
|
307
|
+
description: string;
|
|
308
|
+
};
|
|
243
309
|
AdaptableFDC3EventInfo: {
|
|
244
310
|
name: string;
|
|
245
311
|
kind: string;
|
|
@@ -342,28 +408,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
342
408
|
name: string;
|
|
343
409
|
kind: string;
|
|
344
410
|
description: string;
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
isOptional: boolean;
|
|
351
|
-
reference: string;
|
|
352
|
-
} | {
|
|
353
|
-
name: string;
|
|
354
|
-
kind: string;
|
|
355
|
-
description: string;
|
|
356
|
-
uiLabel: string;
|
|
357
|
-
isOptional?: undefined;
|
|
358
|
-
reference?: undefined;
|
|
359
|
-
} | {
|
|
360
|
-
name: string;
|
|
361
|
-
kind: string;
|
|
362
|
-
description: string;
|
|
363
|
-
uiLabel: string;
|
|
364
|
-
isOptional: boolean;
|
|
365
|
-
reference?: undefined;
|
|
366
|
-
})[];
|
|
411
|
+
};
|
|
412
|
+
AdaptableInternalIcon: {
|
|
413
|
+
name: string;
|
|
414
|
+
kind: string;
|
|
415
|
+
description: string;
|
|
367
416
|
};
|
|
368
417
|
AdaptableLoadStateFunction: {
|
|
369
418
|
name: string;
|
|
@@ -380,12 +429,21 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
380
429
|
description: string;
|
|
381
430
|
uiLabel: string;
|
|
382
431
|
isOptional: boolean;
|
|
432
|
+
reference: string;
|
|
383
433
|
} | {
|
|
384
434
|
name: string;
|
|
385
435
|
kind: string;
|
|
386
436
|
description: string;
|
|
387
437
|
uiLabel: string;
|
|
388
438
|
isOptional?: undefined;
|
|
439
|
+
reference?: undefined;
|
|
440
|
+
} | {
|
|
441
|
+
name: string;
|
|
442
|
+
kind: string;
|
|
443
|
+
description: string;
|
|
444
|
+
uiLabel: string;
|
|
445
|
+
isOptional: boolean;
|
|
446
|
+
reference?: undefined;
|
|
389
447
|
})[];
|
|
390
448
|
};
|
|
391
449
|
AdaptableMessageType: {
|
|
@@ -433,18 +491,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
433
491
|
description: string;
|
|
434
492
|
uiLabel: string;
|
|
435
493
|
isOptional: boolean;
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
494
|
+
reference: string;
|
|
495
|
+
gridInfo?: undefined;
|
|
496
|
+
defaultValue?: undefined;
|
|
439
497
|
} | {
|
|
440
498
|
name: string;
|
|
441
499
|
kind: string;
|
|
442
500
|
description: string;
|
|
443
501
|
uiLabel: string;
|
|
444
502
|
isOptional: boolean;
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
503
|
+
gridInfo: string;
|
|
504
|
+
defaultValue: string;
|
|
505
|
+
reference?: undefined;
|
|
448
506
|
} | {
|
|
449
507
|
name: string;
|
|
450
508
|
kind: string;
|
|
@@ -469,9 +527,9 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
469
527
|
description: string;
|
|
470
528
|
uiLabel: string;
|
|
471
529
|
isOptional: boolean;
|
|
530
|
+
reference?: undefined;
|
|
472
531
|
gridInfo?: undefined;
|
|
473
532
|
defaultValue?: undefined;
|
|
474
|
-
reference?: undefined;
|
|
475
533
|
} | {
|
|
476
534
|
name: string;
|
|
477
535
|
kind: string;
|
|
@@ -479,8 +537,8 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
479
537
|
uiLabel: string;
|
|
480
538
|
isOptional: boolean;
|
|
481
539
|
defaultValue: string;
|
|
482
|
-
gridInfo?: undefined;
|
|
483
540
|
reference?: undefined;
|
|
541
|
+
gridInfo?: undefined;
|
|
484
542
|
} | {
|
|
485
543
|
name: string;
|
|
486
544
|
kind: string;
|
|
@@ -668,6 +726,24 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
668
726
|
reference: string;
|
|
669
727
|
})[];
|
|
670
728
|
};
|
|
729
|
+
AdaptableStatusBar: {
|
|
730
|
+
name: string;
|
|
731
|
+
kind: string;
|
|
732
|
+
description: string;
|
|
733
|
+
properties: ({
|
|
734
|
+
name: string;
|
|
735
|
+
kind: string;
|
|
736
|
+
description: string;
|
|
737
|
+
uiLabel: string;
|
|
738
|
+
isOptional?: undefined;
|
|
739
|
+
} | {
|
|
740
|
+
name: string;
|
|
741
|
+
kind: string;
|
|
742
|
+
description: string;
|
|
743
|
+
uiLabel: string;
|
|
744
|
+
isOptional: boolean;
|
|
745
|
+
})[];
|
|
746
|
+
};
|
|
671
747
|
AdaptableStyle: {
|
|
672
748
|
name: string;
|
|
673
749
|
kind: string;
|
|
@@ -1332,8 +1408,8 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1332
1408
|
description: string;
|
|
1333
1409
|
uiLabel: string;
|
|
1334
1410
|
isOptional: boolean;
|
|
1411
|
+
defaultValue: string;
|
|
1335
1412
|
gridInfo?: undefined;
|
|
1336
|
-
defaultValue?: undefined;
|
|
1337
1413
|
})[];
|
|
1338
1414
|
};
|
|
1339
1415
|
ColumnSort: {
|
|
@@ -1598,12 +1674,27 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1598
1674
|
kind: string;
|
|
1599
1675
|
description: string;
|
|
1600
1676
|
};
|
|
1601
|
-
|
|
1677
|
+
CreateActionRowContext: {
|
|
1602
1678
|
name: string;
|
|
1603
1679
|
kind: string;
|
|
1604
1680
|
description: string;
|
|
1681
|
+
properties: ({
|
|
1682
|
+
name: string;
|
|
1683
|
+
kind: string;
|
|
1684
|
+
description: string;
|
|
1685
|
+
uiLabel: string;
|
|
1686
|
+
isOptional: boolean;
|
|
1687
|
+
reference: string;
|
|
1688
|
+
} | {
|
|
1689
|
+
name: string;
|
|
1690
|
+
kind: string;
|
|
1691
|
+
description: string;
|
|
1692
|
+
uiLabel: string;
|
|
1693
|
+
isOptional?: undefined;
|
|
1694
|
+
reference?: undefined;
|
|
1695
|
+
})[];
|
|
1605
1696
|
};
|
|
1606
|
-
|
|
1697
|
+
CreatedActionRowInfo: {
|
|
1607
1698
|
name: string;
|
|
1608
1699
|
kind: string;
|
|
1609
1700
|
description: string;
|
|
@@ -1614,6 +1705,13 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1614
1705
|
uiLabel: string;
|
|
1615
1706
|
isOptional: boolean;
|
|
1616
1707
|
reference: string;
|
|
1708
|
+
} | {
|
|
1709
|
+
name: string;
|
|
1710
|
+
kind: string;
|
|
1711
|
+
description: string;
|
|
1712
|
+
uiLabel: string;
|
|
1713
|
+
reference: string;
|
|
1714
|
+
isOptional?: undefined;
|
|
1617
1715
|
} | {
|
|
1618
1716
|
name: string;
|
|
1619
1717
|
kind: string;
|
|
@@ -1950,6 +2048,29 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1950
2048
|
uiLabel: string;
|
|
1951
2049
|
}[];
|
|
1952
2050
|
};
|
|
2051
|
+
DataChangeHistoryButton: {
|
|
2052
|
+
name: string;
|
|
2053
|
+
kind: string;
|
|
2054
|
+
description: string;
|
|
2055
|
+
};
|
|
2056
|
+
DataChangeHistoryContext: {
|
|
2057
|
+
name: string;
|
|
2058
|
+
kind: string;
|
|
2059
|
+
description: string;
|
|
2060
|
+
properties: ({
|
|
2061
|
+
name: string;
|
|
2062
|
+
kind: string;
|
|
2063
|
+
description: string;
|
|
2064
|
+
uiLabel: string;
|
|
2065
|
+
reference: string;
|
|
2066
|
+
} | {
|
|
2067
|
+
name: string;
|
|
2068
|
+
kind: string;
|
|
2069
|
+
description: string;
|
|
2070
|
+
uiLabel: string;
|
|
2071
|
+
reference?: undefined;
|
|
2072
|
+
})[];
|
|
2073
|
+
};
|
|
1953
2074
|
DataChangeHistoryOptions: {
|
|
1954
2075
|
name: string;
|
|
1955
2076
|
kind: string;
|
|
@@ -1960,16 +2081,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1960
2081
|
description: string;
|
|
1961
2082
|
uiLabel: string;
|
|
1962
2083
|
isOptional: boolean;
|
|
1963
|
-
gridInfo
|
|
1964
|
-
defaultValue
|
|
2084
|
+
gridInfo: string;
|
|
2085
|
+
defaultValue: string;
|
|
1965
2086
|
} | {
|
|
1966
2087
|
name: string;
|
|
1967
2088
|
kind: string;
|
|
1968
2089
|
description: string;
|
|
1969
2090
|
uiLabel: string;
|
|
1970
2091
|
isOptional: boolean;
|
|
1971
|
-
gridInfo: string;
|
|
1972
2092
|
defaultValue: string;
|
|
2093
|
+
gridInfo?: undefined;
|
|
1973
2094
|
})[];
|
|
1974
2095
|
};
|
|
1975
2096
|
DataSet: {
|
|
@@ -2050,22 +2171,25 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2050
2171
|
defaultValue: string;
|
|
2051
2172
|
}[];
|
|
2052
2173
|
};
|
|
2053
|
-
|
|
2054
|
-
name: string;
|
|
2055
|
-
kind: string;
|
|
2056
|
-
description: string;
|
|
2057
|
-
};
|
|
2058
|
-
EditedRowFormInfo: {
|
|
2059
|
-
name: string;
|
|
2060
|
-
kind: string;
|
|
2061
|
-
description: string;
|
|
2062
|
-
};
|
|
2063
|
-
EditLookUpPermittedValues: {
|
|
2174
|
+
DeletedActionRowInfo: {
|
|
2064
2175
|
name: string;
|
|
2065
2176
|
kind: string;
|
|
2066
2177
|
description: string;
|
|
2178
|
+
properties: ({
|
|
2179
|
+
name: string;
|
|
2180
|
+
kind: string;
|
|
2181
|
+
description: string;
|
|
2182
|
+
uiLabel: string;
|
|
2183
|
+
reference: string;
|
|
2184
|
+
} | {
|
|
2185
|
+
name: string;
|
|
2186
|
+
kind: string;
|
|
2187
|
+
description: string;
|
|
2188
|
+
uiLabel: string;
|
|
2189
|
+
reference?: undefined;
|
|
2190
|
+
})[];
|
|
2067
2191
|
};
|
|
2068
|
-
|
|
2192
|
+
EditActionRowContext: {
|
|
2069
2193
|
name: string;
|
|
2070
2194
|
kind: string;
|
|
2071
2195
|
description: string;
|
|
@@ -2074,31 +2198,39 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2074
2198
|
kind: string;
|
|
2075
2199
|
description: string;
|
|
2076
2200
|
uiLabel: string;
|
|
2077
|
-
|
|
2078
|
-
gridInfo: string;
|
|
2079
|
-
defaultValue: string;
|
|
2080
|
-
reference?: undefined;
|
|
2201
|
+
reference: string;
|
|
2081
2202
|
} | {
|
|
2082
2203
|
name: string;
|
|
2083
2204
|
kind: string;
|
|
2084
2205
|
description: string;
|
|
2085
2206
|
uiLabel: string;
|
|
2086
|
-
isOptional: boolean;
|
|
2087
|
-
gridInfo?: undefined;
|
|
2088
|
-
defaultValue?: undefined;
|
|
2089
2207
|
reference?: undefined;
|
|
2090
|
-
}
|
|
2208
|
+
})[];
|
|
2209
|
+
};
|
|
2210
|
+
EditedActionRowInfo: {
|
|
2211
|
+
name: string;
|
|
2212
|
+
kind: string;
|
|
2213
|
+
description: string;
|
|
2214
|
+
properties: ({
|
|
2091
2215
|
name: string;
|
|
2092
2216
|
kind: string;
|
|
2093
2217
|
description: string;
|
|
2094
2218
|
uiLabel: string;
|
|
2095
|
-
isOptional: boolean;
|
|
2096
2219
|
reference: string;
|
|
2097
|
-
|
|
2098
|
-
|
|
2220
|
+
} | {
|
|
2221
|
+
name: string;
|
|
2222
|
+
kind: string;
|
|
2223
|
+
description: string;
|
|
2224
|
+
uiLabel: string;
|
|
2225
|
+
reference?: undefined;
|
|
2099
2226
|
})[];
|
|
2100
2227
|
};
|
|
2101
|
-
|
|
2228
|
+
EditLookUpPermittedValues: {
|
|
2229
|
+
name: string;
|
|
2230
|
+
kind: string;
|
|
2231
|
+
description: string;
|
|
2232
|
+
};
|
|
2233
|
+
EditOptions: {
|
|
2102
2234
|
name: string;
|
|
2103
2235
|
kind: string;
|
|
2104
2236
|
description: string;
|
|
@@ -2107,13 +2239,17 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2107
2239
|
kind: string;
|
|
2108
2240
|
description: string;
|
|
2109
2241
|
uiLabel: string;
|
|
2110
|
-
|
|
2242
|
+
isOptional: boolean;
|
|
2243
|
+
gridInfo: string;
|
|
2244
|
+
defaultValue: string;
|
|
2111
2245
|
} | {
|
|
2112
2246
|
name: string;
|
|
2113
2247
|
kind: string;
|
|
2114
2248
|
description: string;
|
|
2115
2249
|
uiLabel: string;
|
|
2116
|
-
|
|
2250
|
+
isOptional: boolean;
|
|
2251
|
+
defaultValue: string;
|
|
2252
|
+
gridInfo?: undefined;
|
|
2117
2253
|
})[];
|
|
2118
2254
|
};
|
|
2119
2255
|
EntitlementOptions: {
|
|
@@ -3069,6 +3205,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3069
3205
|
kind: string;
|
|
3070
3206
|
description: string;
|
|
3071
3207
|
};
|
|
3208
|
+
LayoutAssociatedObjectLoadConfig: {
|
|
3209
|
+
name: string;
|
|
3210
|
+
kind: string;
|
|
3211
|
+
description: string;
|
|
3212
|
+
};
|
|
3072
3213
|
LayoutAvailableContext: {
|
|
3073
3214
|
name: string;
|
|
3074
3215
|
kind: string;
|
|
@@ -3745,41 +3886,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3745
3886
|
reference: string;
|
|
3746
3887
|
})[];
|
|
3747
3888
|
};
|
|
3748
|
-
RowFormContext: {
|
|
3749
|
-
name: string;
|
|
3750
|
-
kind: string;
|
|
3751
|
-
description: string;
|
|
3752
|
-
};
|
|
3753
|
-
RowFormOptions: {
|
|
3754
|
-
name: string;
|
|
3755
|
-
kind: string;
|
|
3756
|
-
description: string;
|
|
3757
|
-
properties: ({
|
|
3758
|
-
name: string;
|
|
3759
|
-
kind: string;
|
|
3760
|
-
description: string;
|
|
3761
|
-
uiLabel: string;
|
|
3762
|
-
isOptional: boolean;
|
|
3763
|
-
defaultValue?: undefined;
|
|
3764
|
-
} | {
|
|
3765
|
-
name: string;
|
|
3766
|
-
kind: string;
|
|
3767
|
-
description: string;
|
|
3768
|
-
uiLabel: string;
|
|
3769
|
-
isOptional: boolean;
|
|
3770
|
-
defaultValue: string;
|
|
3771
|
-
})[];
|
|
3772
|
-
};
|
|
3773
|
-
RowFormSubmittedInfo: {
|
|
3774
|
-
name: string;
|
|
3775
|
-
kind: string;
|
|
3776
|
-
description: string;
|
|
3777
|
-
};
|
|
3778
|
-
RowFormType: {
|
|
3779
|
-
name: string;
|
|
3780
|
-
kind: string;
|
|
3781
|
-
description: string;
|
|
3782
|
-
};
|
|
3783
3889
|
RowInfo: {
|
|
3784
3890
|
name: string;
|
|
3785
3891
|
kind: string;
|
|
@@ -4059,16 +4165,8 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4059
4165
|
description: string;
|
|
4060
4166
|
uiLabel: string;
|
|
4061
4167
|
isOptional: boolean;
|
|
4168
|
+
defaultValue: string;
|
|
4062
4169
|
reference?: undefined;
|
|
4063
|
-
defaultValue?: undefined;
|
|
4064
|
-
} | {
|
|
4065
|
-
name: string;
|
|
4066
|
-
kind: string;
|
|
4067
|
-
description: string;
|
|
4068
|
-
uiLabel: string;
|
|
4069
|
-
isOptional: boolean;
|
|
4070
|
-
reference: string;
|
|
4071
|
-
defaultValue?: undefined;
|
|
4072
4170
|
} | {
|
|
4073
4171
|
name: string;
|
|
4074
4172
|
kind: string;
|
|
@@ -4076,7 +4174,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4076
4174
|
uiLabel: string;
|
|
4077
4175
|
isOptional: boolean;
|
|
4078
4176
|
defaultValue: string;
|
|
4079
|
-
reference
|
|
4177
|
+
reference: string;
|
|
4080
4178
|
})[];
|
|
4081
4179
|
};
|
|
4082
4180
|
StatusBarState: {
|
|
@@ -4362,8 +4460,8 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4362
4460
|
description: string;
|
|
4363
4461
|
uiLabel: string;
|
|
4364
4462
|
isOptional: boolean;
|
|
4463
|
+
defaultValue: string;
|
|
4365
4464
|
reference: string;
|
|
4366
|
-
defaultValue?: undefined;
|
|
4367
4465
|
gridInfo?: undefined;
|
|
4368
4466
|
} | {
|
|
4369
4467
|
name: string;
|
|
@@ -4371,8 +4469,8 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4371
4469
|
description: string;
|
|
4372
4470
|
uiLabel: string;
|
|
4373
4471
|
isOptional: boolean;
|
|
4374
|
-
defaultValue
|
|
4375
|
-
reference
|
|
4472
|
+
defaultValue?: undefined;
|
|
4473
|
+
reference?: undefined;
|
|
4376
4474
|
gridInfo?: undefined;
|
|
4377
4475
|
} | {
|
|
4378
4476
|
name: string;
|
|
@@ -4380,7 +4478,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4380
4478
|
description: string;
|
|
4381
4479
|
uiLabel: string;
|
|
4382
4480
|
isOptional: boolean;
|
|
4383
|
-
reference
|
|
4481
|
+
reference: string;
|
|
4384
4482
|
defaultValue?: undefined;
|
|
4385
4483
|
gridInfo?: undefined;
|
|
4386
4484
|
} | {
|
|
@@ -4399,8 +4497,8 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4399
4497
|
uiLabel: string;
|
|
4400
4498
|
isOptional: boolean;
|
|
4401
4499
|
gridInfo: string;
|
|
4402
|
-
reference?: undefined;
|
|
4403
4500
|
defaultValue?: undefined;
|
|
4501
|
+
reference?: undefined;
|
|
4404
4502
|
})[];
|
|
4405
4503
|
};
|
|
4406
4504
|
UserMenuItem: {
|
|
@@ -4413,12 +4511,21 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4413
4511
|
description: string;
|
|
4414
4512
|
uiLabel: string;
|
|
4415
4513
|
isOptional: boolean;
|
|
4514
|
+
reference?: undefined;
|
|
4515
|
+
} | {
|
|
4516
|
+
name: string;
|
|
4517
|
+
kind: string;
|
|
4518
|
+
description: string;
|
|
4519
|
+
uiLabel: string;
|
|
4520
|
+
isOptional: boolean;
|
|
4521
|
+
reference: string;
|
|
4416
4522
|
} | {
|
|
4417
4523
|
name: string;
|
|
4418
4524
|
kind: string;
|
|
4419
4525
|
description: string;
|
|
4420
4526
|
uiLabel: string;
|
|
4421
4527
|
isOptional?: undefined;
|
|
4528
|
+
reference?: undefined;
|
|
4422
4529
|
})[];
|
|
4423
4530
|
};
|
|
4424
4531
|
ValidationResult: {
|