@adaptabletools/adaptable 12.0.0-canary.2 → 12.0.0-canary.5
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 +41 -14
- package/bundle.cjs.js +159 -142
- package/index.css +49 -14
- package/package.json +3 -3
- 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/AlertOptions.d.ts +5 -9
- package/src/AdaptableOptions/ColumnOptions.d.ts +4 -0
- package/src/AdaptableOptions/DashboardOptions.d.ts +1 -5
- package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +19 -4
- package/src/AdaptableOptions/EditOptions.d.ts +8 -62
- package/src/AdaptableOptions/FinancePluginOptions.d.ts +3 -3
- package/src/AdaptableOptions/GeneralOptions.d.ts +7 -0
- package/src/AdaptableOptions/LayoutOptions.d.ts +6 -1
- package/src/AdaptableOptions/SettingsPanelOptions.d.ts +2 -0
- package/src/AdaptableOptions/StateOptions.d.ts +10 -0
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +1 -5
- 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/AlertApi.d.ts +3 -3
- package/src/Api/ConfigApi.d.ts +1 -1
- package/src/Api/EventApi.d.ts +9 -9
- package/src/Api/Events/ActionRowSubmitted.d.ts +34 -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 +3 -3
- package/src/Api/Implementation/ApiBase.d.ts +2 -1
- package/src/Api/Implementation/ApiBase.js +3 -0
- package/src/Api/Implementation/ColumnApiImpl.js +2 -2
- package/src/Api/Implementation/ConfigApiImpl.d.ts +1 -1
- package/src/Api/Implementation/GridApiImpl.d.ts +0 -3
- package/src/Api/Implementation/GridApiImpl.js +0 -44
- package/src/Api/Implementation/InternalApiImpl.d.ts +3 -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/SmartEditApi.d.ts +1 -1
- package/src/Api/StatusBarApi.d.ts +10 -3
- package/src/Api/UserInterfaceApi.d.ts +1 -5
- package/src/PredefinedConfig/AlertState.d.ts +4 -4
- 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/FormContext.d.ts +3 -0
- 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 +10 -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/LayoutModule.d.ts +2 -17
- package/src/Strategy/LayoutModule.js +6 -3
- 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.d.ts +13 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +13 -10
- 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.d.ts +3 -3
- 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.d.ts +2 -2
- 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 +5 -5
- 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/Caption.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 +211 -101
- package/src/metamodel/adaptable.metamodel.js +1 -12874
- package/src/types.d.ts +7 -5
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/Api/Events/RowFormSubmitted.d.ts +0 -19
- 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;
|
|
@@ -31,7 +42,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
31
42
|
reference?: undefined;
|
|
32
43
|
})[];
|
|
33
44
|
};
|
|
34
|
-
|
|
45
|
+
ActionColumnContext: {
|
|
35
46
|
name: string;
|
|
36
47
|
kind: string;
|
|
37
48
|
description: 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,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
240
296
|
kind: string;
|
|
241
297
|
description: string;
|
|
242
298
|
};
|
|
299
|
+
AdaptableExternalIcon: {
|
|
300
|
+
name: string;
|
|
301
|
+
kind: string;
|
|
302
|
+
description: string;
|
|
303
|
+
};
|
|
243
304
|
AdaptableFDC3EventInfo: {
|
|
244
305
|
name: string;
|
|
245
306
|
kind: string;
|
|
@@ -342,28 +403,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
342
403
|
name: string;
|
|
343
404
|
kind: string;
|
|
344
405
|
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
|
-
})[];
|
|
406
|
+
};
|
|
407
|
+
AdaptableInternalIcon: {
|
|
408
|
+
name: string;
|
|
409
|
+
kind: string;
|
|
410
|
+
description: string;
|
|
367
411
|
};
|
|
368
412
|
AdaptableLoadStateFunction: {
|
|
369
413
|
name: string;
|
|
@@ -380,12 +424,21 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
380
424
|
description: string;
|
|
381
425
|
uiLabel: string;
|
|
382
426
|
isOptional: boolean;
|
|
427
|
+
reference: string;
|
|
383
428
|
} | {
|
|
384
429
|
name: string;
|
|
385
430
|
kind: string;
|
|
386
431
|
description: string;
|
|
387
432
|
uiLabel: string;
|
|
388
433
|
isOptional?: undefined;
|
|
434
|
+
reference?: undefined;
|
|
435
|
+
} | {
|
|
436
|
+
name: string;
|
|
437
|
+
kind: string;
|
|
438
|
+
description: string;
|
|
439
|
+
uiLabel: string;
|
|
440
|
+
isOptional: boolean;
|
|
441
|
+
reference?: undefined;
|
|
389
442
|
})[];
|
|
390
443
|
};
|
|
391
444
|
AdaptableMessageType: {
|
|
@@ -433,18 +486,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
433
486
|
description: string;
|
|
434
487
|
uiLabel: string;
|
|
435
488
|
isOptional: boolean;
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
489
|
+
reference: string;
|
|
490
|
+
gridInfo?: undefined;
|
|
491
|
+
defaultValue?: undefined;
|
|
439
492
|
} | {
|
|
440
493
|
name: string;
|
|
441
494
|
kind: string;
|
|
442
495
|
description: string;
|
|
443
496
|
uiLabel: string;
|
|
444
497
|
isOptional: boolean;
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
498
|
+
gridInfo: string;
|
|
499
|
+
defaultValue: string;
|
|
500
|
+
reference?: undefined;
|
|
448
501
|
} | {
|
|
449
502
|
name: string;
|
|
450
503
|
kind: string;
|
|
@@ -469,9 +522,9 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
469
522
|
description: string;
|
|
470
523
|
uiLabel: string;
|
|
471
524
|
isOptional: boolean;
|
|
525
|
+
reference?: undefined;
|
|
472
526
|
gridInfo?: undefined;
|
|
473
527
|
defaultValue?: undefined;
|
|
474
|
-
reference?: undefined;
|
|
475
528
|
} | {
|
|
476
529
|
name: string;
|
|
477
530
|
kind: string;
|
|
@@ -479,8 +532,8 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
479
532
|
uiLabel: string;
|
|
480
533
|
isOptional: boolean;
|
|
481
534
|
defaultValue: string;
|
|
482
|
-
gridInfo?: undefined;
|
|
483
535
|
reference?: undefined;
|
|
536
|
+
gridInfo?: undefined;
|
|
484
537
|
} | {
|
|
485
538
|
name: string;
|
|
486
539
|
kind: string;
|
|
@@ -668,6 +721,24 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
668
721
|
reference: string;
|
|
669
722
|
})[];
|
|
670
723
|
};
|
|
724
|
+
AdaptableStatusBar: {
|
|
725
|
+
name: string;
|
|
726
|
+
kind: string;
|
|
727
|
+
description: string;
|
|
728
|
+
properties: ({
|
|
729
|
+
name: string;
|
|
730
|
+
kind: string;
|
|
731
|
+
description: string;
|
|
732
|
+
uiLabel: string;
|
|
733
|
+
isOptional?: undefined;
|
|
734
|
+
} | {
|
|
735
|
+
name: string;
|
|
736
|
+
kind: string;
|
|
737
|
+
description: string;
|
|
738
|
+
uiLabel: string;
|
|
739
|
+
isOptional: boolean;
|
|
740
|
+
})[];
|
|
741
|
+
};
|
|
671
742
|
AdaptableStyle: {
|
|
672
743
|
name: string;
|
|
673
744
|
kind: string;
|
|
@@ -756,26 +827,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
756
827
|
reference?: undefined;
|
|
757
828
|
})[];
|
|
758
829
|
};
|
|
759
|
-
AlertButtonContext: {
|
|
760
|
-
name: string;
|
|
761
|
-
kind: string;
|
|
762
|
-
description: string;
|
|
763
|
-
properties: ({
|
|
764
|
-
name: string;
|
|
765
|
-
kind: string;
|
|
766
|
-
description: string;
|
|
767
|
-
uiLabel: string;
|
|
768
|
-
reference: string;
|
|
769
|
-
isOptional?: undefined;
|
|
770
|
-
} | {
|
|
771
|
-
name: string;
|
|
772
|
-
kind: string;
|
|
773
|
-
description: string;
|
|
774
|
-
uiLabel: string;
|
|
775
|
-
isOptional: boolean;
|
|
776
|
-
reference: string;
|
|
777
|
-
})[];
|
|
778
|
-
};
|
|
779
830
|
AlertDefinition: {
|
|
780
831
|
name: string;
|
|
781
832
|
kind: string;
|
|
@@ -820,6 +871,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
820
871
|
kind: string;
|
|
821
872
|
description: string;
|
|
822
873
|
};
|
|
874
|
+
AlertFormContext: {
|
|
875
|
+
name: string;
|
|
876
|
+
kind: string;
|
|
877
|
+
description: string;
|
|
878
|
+
properties: {
|
|
879
|
+
name: string;
|
|
880
|
+
kind: string;
|
|
881
|
+
description: string;
|
|
882
|
+
uiLabel: string;
|
|
883
|
+
reference: string;
|
|
884
|
+
}[];
|
|
885
|
+
};
|
|
823
886
|
AlertMessageContext: {
|
|
824
887
|
name: string;
|
|
825
888
|
kind: string;
|
|
@@ -1340,8 +1403,8 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1340
1403
|
description: string;
|
|
1341
1404
|
uiLabel: string;
|
|
1342
1405
|
isOptional: boolean;
|
|
1406
|
+
defaultValue: string;
|
|
1343
1407
|
gridInfo?: undefined;
|
|
1344
|
-
defaultValue?: undefined;
|
|
1345
1408
|
})[];
|
|
1346
1409
|
};
|
|
1347
1410
|
ColumnSort: {
|
|
@@ -1606,6 +1669,31 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1606
1669
|
kind: string;
|
|
1607
1670
|
description: string;
|
|
1608
1671
|
};
|
|
1672
|
+
CreateActionRowContext: {
|
|
1673
|
+
name: string;
|
|
1674
|
+
kind: string;
|
|
1675
|
+
description: string;
|
|
1676
|
+
properties: ({
|
|
1677
|
+
name: string;
|
|
1678
|
+
kind: string;
|
|
1679
|
+
description: string;
|
|
1680
|
+
uiLabel: string;
|
|
1681
|
+
isOptional: boolean;
|
|
1682
|
+
reference: string;
|
|
1683
|
+
} | {
|
|
1684
|
+
name: string;
|
|
1685
|
+
kind: string;
|
|
1686
|
+
description: string;
|
|
1687
|
+
uiLabel: string;
|
|
1688
|
+
isOptional?: undefined;
|
|
1689
|
+
reference?: undefined;
|
|
1690
|
+
})[];
|
|
1691
|
+
};
|
|
1692
|
+
CreatedActionRowInfo: {
|
|
1693
|
+
name: string;
|
|
1694
|
+
kind: string;
|
|
1695
|
+
description: string;
|
|
1696
|
+
};
|
|
1609
1697
|
CustomDestination: {
|
|
1610
1698
|
name: string;
|
|
1611
1699
|
kind: string;
|
|
@@ -1943,16 +2031,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1943
2031
|
description: string;
|
|
1944
2032
|
uiLabel: string;
|
|
1945
2033
|
isOptional: boolean;
|
|
1946
|
-
gridInfo
|
|
1947
|
-
defaultValue
|
|
2034
|
+
gridInfo: string;
|
|
2035
|
+
defaultValue: string;
|
|
1948
2036
|
} | {
|
|
1949
2037
|
name: string;
|
|
1950
2038
|
kind: string;
|
|
1951
2039
|
description: string;
|
|
1952
2040
|
uiLabel: string;
|
|
1953
2041
|
isOptional: boolean;
|
|
1954
|
-
gridInfo: string;
|
|
1955
2042
|
defaultValue: string;
|
|
2043
|
+
gridInfo?: undefined;
|
|
1956
2044
|
})[];
|
|
1957
2045
|
};
|
|
1958
2046
|
DataSet: {
|
|
@@ -1984,6 +2072,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1984
2072
|
uiLabel: string;
|
|
1985
2073
|
}[];
|
|
1986
2074
|
};
|
|
2075
|
+
DataSetFormContext: {
|
|
2076
|
+
name: string;
|
|
2077
|
+
kind: string;
|
|
2078
|
+
description: string;
|
|
2079
|
+
properties: {
|
|
2080
|
+
name: string;
|
|
2081
|
+
kind: string;
|
|
2082
|
+
description: string;
|
|
2083
|
+
uiLabel: string;
|
|
2084
|
+
reference: string;
|
|
2085
|
+
}[];
|
|
2086
|
+
};
|
|
1987
2087
|
DataUpdateConfig: {
|
|
1988
2088
|
name: string;
|
|
1989
2089
|
kind: string;
|
|
@@ -2021,12 +2121,12 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2021
2121
|
defaultValue: string;
|
|
2022
2122
|
}[];
|
|
2023
2123
|
};
|
|
2024
|
-
|
|
2124
|
+
DeletedActionRowInfo: {
|
|
2025
2125
|
name: string;
|
|
2026
2126
|
kind: string;
|
|
2027
2127
|
description: string;
|
|
2028
2128
|
};
|
|
2029
|
-
|
|
2129
|
+
EditActionRowContext: {
|
|
2030
2130
|
name: string;
|
|
2031
2131
|
kind: string;
|
|
2032
2132
|
description: string;
|
|
@@ -2035,28 +2135,45 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2035
2135
|
kind: string;
|
|
2036
2136
|
description: string;
|
|
2037
2137
|
uiLabel: string;
|
|
2038
|
-
|
|
2039
|
-
gridInfo: string;
|
|
2040
|
-
defaultValue: string;
|
|
2041
|
-
reference?: undefined;
|
|
2138
|
+
reference: string;
|
|
2042
2139
|
} | {
|
|
2043
2140
|
name: string;
|
|
2044
2141
|
kind: string;
|
|
2045
2142
|
description: string;
|
|
2046
2143
|
uiLabel: string;
|
|
2047
|
-
isOptional: boolean;
|
|
2048
|
-
gridInfo?: undefined;
|
|
2049
|
-
defaultValue?: undefined;
|
|
2050
2144
|
reference?: undefined;
|
|
2145
|
+
})[];
|
|
2146
|
+
};
|
|
2147
|
+
EditedActionRowInfo: {
|
|
2148
|
+
name: string;
|
|
2149
|
+
kind: string;
|
|
2150
|
+
description: string;
|
|
2151
|
+
};
|
|
2152
|
+
EditLookUpPermittedValues: {
|
|
2153
|
+
name: string;
|
|
2154
|
+
kind: string;
|
|
2155
|
+
description: string;
|
|
2156
|
+
};
|
|
2157
|
+
EditOptions: {
|
|
2158
|
+
name: string;
|
|
2159
|
+
kind: string;
|
|
2160
|
+
description: string;
|
|
2161
|
+
properties: ({
|
|
2162
|
+
name: string;
|
|
2163
|
+
kind: string;
|
|
2164
|
+
description: string;
|
|
2165
|
+
uiLabel: string;
|
|
2166
|
+
isOptional: boolean;
|
|
2167
|
+
gridInfo: string;
|
|
2168
|
+
defaultValue: string;
|
|
2051
2169
|
} | {
|
|
2052
2170
|
name: string;
|
|
2053
2171
|
kind: string;
|
|
2054
2172
|
description: string;
|
|
2055
2173
|
uiLabel: string;
|
|
2056
2174
|
isOptional: boolean;
|
|
2057
|
-
|
|
2175
|
+
defaultValue: string;
|
|
2058
2176
|
gridInfo?: undefined;
|
|
2059
|
-
defaultValue?: undefined;
|
|
2060
2177
|
})[];
|
|
2061
2178
|
};
|
|
2062
2179
|
EntitlementOptions: {
|
|
@@ -2555,6 +2672,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2555
2672
|
isOptional: boolean;
|
|
2556
2673
|
}[];
|
|
2557
2674
|
};
|
|
2675
|
+
FormContext: {
|
|
2676
|
+
name: string;
|
|
2677
|
+
kind: string;
|
|
2678
|
+
description: string;
|
|
2679
|
+
properties: {
|
|
2680
|
+
name: string;
|
|
2681
|
+
kind: string;
|
|
2682
|
+
description: string;
|
|
2683
|
+
uiLabel: string;
|
|
2684
|
+
reference: string;
|
|
2685
|
+
}[];
|
|
2686
|
+
};
|
|
2558
2687
|
FreeTextColumn: {
|
|
2559
2688
|
name: string;
|
|
2560
2689
|
kind: string;
|
|
@@ -3676,26 +3805,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3676
3805
|
reference: string;
|
|
3677
3806
|
})[];
|
|
3678
3807
|
};
|
|
3679
|
-
RowFormOptions: {
|
|
3680
|
-
name: string;
|
|
3681
|
-
kind: string;
|
|
3682
|
-
description: string;
|
|
3683
|
-
properties: ({
|
|
3684
|
-
name: string;
|
|
3685
|
-
kind: string;
|
|
3686
|
-
description: string;
|
|
3687
|
-
uiLabel: string;
|
|
3688
|
-
isOptional: boolean;
|
|
3689
|
-
defaultValue?: undefined;
|
|
3690
|
-
} | {
|
|
3691
|
-
name: string;
|
|
3692
|
-
kind: string;
|
|
3693
|
-
description: string;
|
|
3694
|
-
uiLabel: string;
|
|
3695
|
-
isOptional: boolean;
|
|
3696
|
-
defaultValue: string;
|
|
3697
|
-
})[];
|
|
3698
|
-
};
|
|
3699
3808
|
RowInfo: {
|
|
3700
3809
|
name: string;
|
|
3701
3810
|
kind: string;
|
|
@@ -3975,16 +4084,8 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3975
4084
|
description: string;
|
|
3976
4085
|
uiLabel: string;
|
|
3977
4086
|
isOptional: boolean;
|
|
4087
|
+
defaultValue: string;
|
|
3978
4088
|
reference?: undefined;
|
|
3979
|
-
defaultValue?: undefined;
|
|
3980
|
-
} | {
|
|
3981
|
-
name: string;
|
|
3982
|
-
kind: string;
|
|
3983
|
-
description: string;
|
|
3984
|
-
uiLabel: string;
|
|
3985
|
-
isOptional: boolean;
|
|
3986
|
-
reference: string;
|
|
3987
|
-
defaultValue?: undefined;
|
|
3988
4089
|
} | {
|
|
3989
4090
|
name: string;
|
|
3990
4091
|
kind: string;
|
|
@@ -3992,7 +4093,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3992
4093
|
uiLabel: string;
|
|
3993
4094
|
isOptional: boolean;
|
|
3994
4095
|
defaultValue: string;
|
|
3995
|
-
reference
|
|
4096
|
+
reference: string;
|
|
3996
4097
|
})[];
|
|
3997
4098
|
};
|
|
3998
4099
|
StatusBarState: {
|
|
@@ -4278,8 +4379,8 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4278
4379
|
description: string;
|
|
4279
4380
|
uiLabel: string;
|
|
4280
4381
|
isOptional: boolean;
|
|
4382
|
+
defaultValue: string;
|
|
4281
4383
|
reference: string;
|
|
4282
|
-
defaultValue?: undefined;
|
|
4283
4384
|
gridInfo?: undefined;
|
|
4284
4385
|
} | {
|
|
4285
4386
|
name: string;
|
|
@@ -4287,8 +4388,8 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4287
4388
|
description: string;
|
|
4288
4389
|
uiLabel: string;
|
|
4289
4390
|
isOptional: boolean;
|
|
4290
|
-
defaultValue
|
|
4291
|
-
reference
|
|
4391
|
+
defaultValue?: undefined;
|
|
4392
|
+
reference?: undefined;
|
|
4292
4393
|
gridInfo?: undefined;
|
|
4293
4394
|
} | {
|
|
4294
4395
|
name: string;
|
|
@@ -4296,7 +4397,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4296
4397
|
description: string;
|
|
4297
4398
|
uiLabel: string;
|
|
4298
4399
|
isOptional: boolean;
|
|
4299
|
-
reference
|
|
4400
|
+
reference: string;
|
|
4300
4401
|
defaultValue?: undefined;
|
|
4301
4402
|
gridInfo?: undefined;
|
|
4302
4403
|
} | {
|
|
@@ -4315,8 +4416,8 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4315
4416
|
uiLabel: string;
|
|
4316
4417
|
isOptional: boolean;
|
|
4317
4418
|
gridInfo: string;
|
|
4318
|
-
reference?: undefined;
|
|
4319
4419
|
defaultValue?: undefined;
|
|
4420
|
+
reference?: undefined;
|
|
4320
4421
|
})[];
|
|
4321
4422
|
};
|
|
4322
4423
|
UserMenuItem: {
|
|
@@ -4329,12 +4430,21 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4329
4430
|
description: string;
|
|
4330
4431
|
uiLabel: string;
|
|
4331
4432
|
isOptional: boolean;
|
|
4433
|
+
reference?: undefined;
|
|
4434
|
+
} | {
|
|
4435
|
+
name: string;
|
|
4436
|
+
kind: string;
|
|
4437
|
+
description: string;
|
|
4438
|
+
uiLabel: string;
|
|
4439
|
+
isOptional: boolean;
|
|
4440
|
+
reference: string;
|
|
4332
4441
|
} | {
|
|
4333
4442
|
name: string;
|
|
4334
4443
|
kind: string;
|
|
4335
4444
|
description: string;
|
|
4336
4445
|
uiLabel: string;
|
|
4337
4446
|
isOptional?: undefined;
|
|
4447
|
+
reference?: undefined;
|
|
4338
4448
|
})[];
|
|
4339
4449
|
};
|
|
4340
4450
|
ValidationResult: {
|