@adaptabletools/adaptable 12.0.0-canary.3 → 12.0.0-canary.4
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 +127 -127
- 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/DataChangeHistoryOptions.d.ts +15 -2
- package/src/AdaptableOptions/EditOptions.d.ts +1 -80
- package/src/AdaptableOptions/FinancePluginOptions.d.ts +3 -3
- 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 +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/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/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/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 +33 -31
- 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 +4 -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/GeneralConstants.js +2 -1
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +13 -13
- package/src/Utilities/ExpressionFunctions/dateUtils.js +2 -1
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +20 -10
- package/src/Utilities/Helpers/AdaptableHelper.js +4 -3
- package/src/Utilities/Helpers/DateHelper.js +10 -5
- 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/IRowEditService.d.ts +3 -3
- 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 +2 -1
- 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 +10 -10
- 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 +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 +28 -26
- 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.d.ts +145 -111
- package/src/metamodel/adaptable.metamodel.js +195 -172
- package/src/types.d.ts +6 -4
- 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
|
@@ -7,6 +7,37 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7
7
|
"kind": "TypeAlias",
|
|
8
8
|
"description": "Defines Access Level for an Entitlement - can be `ReadOnly`, `Hidden` or `Full`"
|
|
9
9
|
},
|
|
10
|
+
"ActionApi": {
|
|
11
|
+
"name": "ActionApi",
|
|
12
|
+
"kind": "Interface",
|
|
13
|
+
"description": "A large range of column-related functions in AdapTable",
|
|
14
|
+
"properties": [
|
|
15
|
+
{
|
|
16
|
+
"name": "displayCloneActionRow",
|
|
17
|
+
"kind": "function",
|
|
18
|
+
"description": "Open create dialog for cloning an existing row",
|
|
19
|
+
"uiLabel": "Display Clone Action Row"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"name": "displayCreateActionRow",
|
|
23
|
+
"kind": "function",
|
|
24
|
+
"description": "Open create dialog for a new row",
|
|
25
|
+
"uiLabel": "Display Create Action Row"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "displayEditActionRow",
|
|
29
|
+
"kind": "function",
|
|
30
|
+
"description": "Open edit dialog for row with the given primary key value",
|
|
31
|
+
"uiLabel": "Display Edit Action Row"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "getAllActionColumn",
|
|
35
|
+
"kind": "function",
|
|
36
|
+
"description": "Retrieves any Action Columns (provided in User Interface Options)",
|
|
37
|
+
"uiLabel": "Get All Action Column"
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
},
|
|
10
41
|
"ActionColumn": {
|
|
11
42
|
"name": "ActionColumn",
|
|
12
43
|
"kind": "Interface",
|
|
@@ -146,6 +177,14 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
146
177
|
"isOptional": true,
|
|
147
178
|
"defaultValue": "'pinnedLeft'"
|
|
148
179
|
},
|
|
180
|
+
{
|
|
181
|
+
"name": "actionRowFormOptions",
|
|
182
|
+
"kind": "REFERENCE",
|
|
183
|
+
"description": "Options for managing the Form which the Action Row displays",
|
|
184
|
+
"uiLabel": "Action Row Form Options",
|
|
185
|
+
"isOptional": true,
|
|
186
|
+
"reference": "ActionRowFormOptions"
|
|
187
|
+
},
|
|
149
188
|
{
|
|
150
189
|
"name": "autoHandleActionRowButtons",
|
|
151
190
|
"kind": "boolean",
|
|
@@ -164,6 +203,67 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
164
203
|
}
|
|
165
204
|
]
|
|
166
205
|
},
|
|
206
|
+
"ActionRowContext": {
|
|
207
|
+
"name": "ActionRowContext",
|
|
208
|
+
"kind": "TypeAlias",
|
|
209
|
+
"description": "Context passed into a Row Form - can be `CreateActionRowContext` or `EditActionRowContext`"
|
|
210
|
+
},
|
|
211
|
+
"ActionRowFormOptions": {
|
|
212
|
+
"name": "ActionRowFormOptions",
|
|
213
|
+
"kind": "Interface",
|
|
214
|
+
"description": "Options for editing (create/update/delete) row entries in the grid",
|
|
215
|
+
"properties": [
|
|
216
|
+
{
|
|
217
|
+
"name": "formButtons",
|
|
218
|
+
"kind": "unknown",
|
|
219
|
+
"description": "Custom form buttons provider. If provided, the custom implementation is responsible for firing the 'ActionRowSubmitted' and/or invoking the 'onFormSubmit' callback (if necessary).",
|
|
220
|
+
"uiLabel": "Form Buttons",
|
|
221
|
+
"isOptional": true
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"name": "formDescription",
|
|
225
|
+
"kind": "unknown",
|
|
226
|
+
"description": "Custom form description provider",
|
|
227
|
+
"uiLabel": "Form Description",
|
|
228
|
+
"isOptional": true,
|
|
229
|
+
"defaultValue": "undefined"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"name": "formFieldLabel",
|
|
233
|
+
"kind": "unknown",
|
|
234
|
+
"description": "Custom form field label provider",
|
|
235
|
+
"uiLabel": "Form Field Label",
|
|
236
|
+
"isOptional": true,
|
|
237
|
+
"defaultValue": "undefined"
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"name": "formTitle",
|
|
241
|
+
"kind": "unknown",
|
|
242
|
+
"description": "Custom form title provider",
|
|
243
|
+
"uiLabel": "Form Title",
|
|
244
|
+
"isOptional": true,
|
|
245
|
+
"defaultValue": "'Create New Row'/'Edit Row'"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"name": "onFormSubmit",
|
|
249
|
+
"kind": "unknown",
|
|
250
|
+
"description": "Function which is invoked when the form in an Action Row is submitted via a standard button (provided by AdapTable). This is not invoked when custom form buttons are provided!",
|
|
251
|
+
"uiLabel": "On Form Submit",
|
|
252
|
+
"isOptional": true,
|
|
253
|
+
"defaultValue": "undefined"
|
|
254
|
+
}
|
|
255
|
+
]
|
|
256
|
+
},
|
|
257
|
+
"ActionRowSubmittedInfo": {
|
|
258
|
+
"name": "ActionRowSubmittedInfo",
|
|
259
|
+
"kind": "TypeAlias",
|
|
260
|
+
"description": "Info passed into ActionRowSubmitted Event - can be `CreatedActionRowInfo` or `EditedActionRowInfo` or `DeletedActionRowInfo`"
|
|
261
|
+
},
|
|
262
|
+
"ActionRowType": {
|
|
263
|
+
"name": "ActionRowType",
|
|
264
|
+
"kind": "TypeAlias",
|
|
265
|
+
"description": "Type of Action Row - Created, Edited or Deleted"
|
|
266
|
+
},
|
|
167
267
|
"AdaptableAlert": {
|
|
168
268
|
"name": "AdaptableAlert",
|
|
169
269
|
"kind": "TypeAlias",
|
|
@@ -211,6 +311,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
211
311
|
"kind": "Interface",
|
|
212
312
|
"description": "The `AdaptableApi` provides developers with run-time access to AdapTable.",
|
|
213
313
|
"properties": [
|
|
314
|
+
{
|
|
315
|
+
"name": "actionApi",
|
|
316
|
+
"kind": "REFERENCE",
|
|
317
|
+
"description": "Provides access to Action Rows and Columns",
|
|
318
|
+
"uiLabel": "Action Api",
|
|
319
|
+
"reference": "ActionApi"
|
|
320
|
+
},
|
|
214
321
|
{
|
|
215
322
|
"name": "alertApi",
|
|
216
323
|
"kind": "REFERENCE",
|
|
@@ -778,6 +885,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
778
885
|
"kind": "TypeAlias",
|
|
779
886
|
"description": "List of all the Toolbars that Adaptable provides"
|
|
780
887
|
},
|
|
888
|
+
"AdaptableExternalIcon": {
|
|
889
|
+
"name": "AdaptableExternalIcon",
|
|
890
|
+
"kind": "Interface",
|
|
891
|
+
"description": "Defines an icon from an external source"
|
|
892
|
+
},
|
|
781
893
|
"AdaptableFDC3EventInfo": {
|
|
782
894
|
"name": "AdaptableFDC3EventInfo",
|
|
783
895
|
"kind": "Interface",
|
|
@@ -933,31 +1045,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
933
1045
|
},
|
|
934
1046
|
"AdaptableIcon": {
|
|
935
1047
|
"name": "AdaptableIcon",
|
|
1048
|
+
"kind": "TypeAlias",
|
|
1049
|
+
"description": "Defines an icon to be used in AdapTable (e.g. in Dashboard Header, Buttons, Menu, etc.)"
|
|
1050
|
+
},
|
|
1051
|
+
"AdaptableInternalIcon": {
|
|
1052
|
+
"name": "AdaptableInternalIcon",
|
|
936
1053
|
"kind": "Interface",
|
|
937
|
-
"description": "Defines an icon
|
|
938
|
-
"properties": [
|
|
939
|
-
{
|
|
940
|
-
"name": "cssProperties",
|
|
941
|
-
"kind": "REFERENCE",
|
|
942
|
-
"description": "CSS Properties",
|
|
943
|
-
"uiLabel": "Css Properties",
|
|
944
|
-
"isOptional": true,
|
|
945
|
-
"reference": "unknown"
|
|
946
|
-
},
|
|
947
|
-
{
|
|
948
|
-
"name": "src",
|
|
949
|
-
"kind": "string",
|
|
950
|
-
"description": "url specifying where icon can be found (mandatory)",
|
|
951
|
-
"uiLabel": "Src"
|
|
952
|
-
},
|
|
953
|
-
{
|
|
954
|
-
"name": "style",
|
|
955
|
-
"kind": "unknown",
|
|
956
|
-
"description": "The style for the icon - has height and width properties",
|
|
957
|
-
"uiLabel": "Style",
|
|
958
|
-
"isOptional": true
|
|
959
|
-
}
|
|
960
|
-
]
|
|
1054
|
+
"description": "Defines an icon from the internal AdapTable icon set"
|
|
961
1055
|
},
|
|
962
1056
|
"AdaptableLoadStateFunction": {
|
|
963
1057
|
"name": "AdaptableLoadStateFunction",
|
|
@@ -971,10 +1065,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
971
1065
|
"properties": [
|
|
972
1066
|
{
|
|
973
1067
|
"name": "icon",
|
|
974
|
-
"kind": "
|
|
1068
|
+
"kind": "REFERENCE",
|
|
975
1069
|
"description": "Icon to display in Menu Item",
|
|
976
1070
|
"uiLabel": "Icon",
|
|
977
|
-
"isOptional": true
|
|
1071
|
+
"isOptional": true,
|
|
1072
|
+
"reference": "AdaptableIcon"
|
|
978
1073
|
},
|
|
979
1074
|
{
|
|
980
1075
|
"name": "isVisible",
|
|
@@ -1074,6 +1169,14 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1074
1169
|
"kind": "Interface",
|
|
1075
1170
|
"description": "Group of property options enabling developers to set up AdapTable at design time to fit precise requirements - provides AG Grid, Predefined Config and other information required to ensure a full, rich user experience",
|
|
1076
1171
|
"properties": [
|
|
1172
|
+
{
|
|
1173
|
+
"name": "actionOptions",
|
|
1174
|
+
"kind": "REFERENCE",
|
|
1175
|
+
"description": "Options for managing Action Columns and Action Rows",
|
|
1176
|
+
"uiLabel": "Action Options",
|
|
1177
|
+
"isOptional": true,
|
|
1178
|
+
"reference": "ActionOptions"
|
|
1179
|
+
},
|
|
1077
1180
|
{
|
|
1078
1181
|
"name": "adaptableId",
|
|
1079
1182
|
"kind": "string",
|
|
@@ -1637,6 +1740,26 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1637
1740
|
}
|
|
1638
1741
|
]
|
|
1639
1742
|
},
|
|
1743
|
+
"AdaptableStatusBar": {
|
|
1744
|
+
"name": "AdaptableStatusBar",
|
|
1745
|
+
"kind": "Interface",
|
|
1746
|
+
"description": "Defines an Adaptable Status Bar",
|
|
1747
|
+
"properties": [
|
|
1748
|
+
{
|
|
1749
|
+
"name": "Key",
|
|
1750
|
+
"kind": "string",
|
|
1751
|
+
"description": "Key of Status Bar Panel defined in AG Grid GridOptions - ensure keys are the same (Note: AG Grid statusPanel has a lowercase 'key')",
|
|
1752
|
+
"uiLabel": "Key"
|
|
1753
|
+
},
|
|
1754
|
+
{
|
|
1755
|
+
"name": "StatusBarPanels",
|
|
1756
|
+
"kind": "unknown",
|
|
1757
|
+
"description": "Module Status Panels to render inside Adaptable Status Bar",
|
|
1758
|
+
"uiLabel": "Status Bar Panels",
|
|
1759
|
+
"isOptional": true
|
|
1760
|
+
}
|
|
1761
|
+
]
|
|
1762
|
+
},
|
|
1640
1763
|
"AdaptableStyle": {
|
|
1641
1764
|
"name": "AdaptableStyle",
|
|
1642
1765
|
"kind": "Interface",
|
|
@@ -4158,13 +4281,8 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4158
4281
|
"kind": "TypeAlias",
|
|
4159
4282
|
"description": "All available Country Intents"
|
|
4160
4283
|
},
|
|
4161
|
-
"
|
|
4162
|
-
"name": "
|
|
4163
|
-
"kind": "Interface",
|
|
4164
|
-
"description": "Info passed into RowFormSubmitted Event for Created Rows"
|
|
4165
|
-
},
|
|
4166
|
-
"CreateRowFormContext": {
|
|
4167
|
-
"name": "CreateRowFormContext",
|
|
4284
|
+
"CreateActionRowContext": {
|
|
4285
|
+
"name": "CreateActionRowContext",
|
|
4168
4286
|
"kind": "Interface",
|
|
4169
4287
|
"description": "Context used in a Create Row Form",
|
|
4170
4288
|
"properties": [
|
|
@@ -4184,6 +4302,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4184
4302
|
}
|
|
4185
4303
|
]
|
|
4186
4304
|
},
|
|
4305
|
+
"CreatedActionRowInfo": {
|
|
4306
|
+
"name": "CreatedActionRowInfo",
|
|
4307
|
+
"kind": "Interface",
|
|
4308
|
+
"description": "Info passed into ActionRowSubmitted Event for Created Rows"
|
|
4309
|
+
},
|
|
4187
4310
|
"CustomDestination": {
|
|
4188
4311
|
"name": "CustomDestination",
|
|
4189
4312
|
"kind": "Interface",
|
|
@@ -4979,13 +5102,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4979
5102
|
"kind": "Interface",
|
|
4980
5103
|
"description": "Options to manage the 'Data Change History Module', which provides an overview of all previous changes, giving the possibility to undo specific changes",
|
|
4981
5104
|
"properties": [
|
|
4982
|
-
{
|
|
4983
|
-
"name": "actionColumnButton",
|
|
4984
|
-
"kind": "unknown",
|
|
4985
|
-
"description": "Action button definition. Can be used to implement undo functionality.",
|
|
4986
|
-
"uiLabel": "Action Column Button",
|
|
4987
|
-
"isOptional": true
|
|
4988
|
-
},
|
|
4989
5105
|
{
|
|
4990
5106
|
"name": "activeByDefault",
|
|
4991
5107
|
"kind": "boolean",
|
|
@@ -4995,6 +5111,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4995
5111
|
"gridInfo": "item",
|
|
4996
5112
|
"defaultValue": "false"
|
|
4997
5113
|
},
|
|
5114
|
+
{
|
|
5115
|
+
"name": "changeHistoryButton",
|
|
5116
|
+
"kind": "unknown",
|
|
5117
|
+
"description": "Action button definition. Can be used to implement undo functionality.",
|
|
5118
|
+
"uiLabel": "Change History Button",
|
|
5119
|
+
"isOptional": true
|
|
5120
|
+
},
|
|
4998
5121
|
{
|
|
4999
5122
|
"name": "showDataChange",
|
|
5000
5123
|
"kind": "unknown",
|
|
@@ -5192,15 +5315,35 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5192
5315
|
}
|
|
5193
5316
|
]
|
|
5194
5317
|
},
|
|
5195
|
-
"
|
|
5196
|
-
"name": "
|
|
5318
|
+
"DeletedActionRowInfo": {
|
|
5319
|
+
"name": "DeletedActionRowInfo",
|
|
5320
|
+
"kind": "Interface",
|
|
5321
|
+
"description": "Info passed into ActionRowSubmitted Event for Deleted Rows"
|
|
5322
|
+
},
|
|
5323
|
+
"EditActionRowContext": {
|
|
5324
|
+
"name": "EditActionRowContext",
|
|
5197
5325
|
"kind": "Interface",
|
|
5198
|
-
"description": "
|
|
5326
|
+
"description": "Context used in an Edit Row Form",
|
|
5327
|
+
"properties": [
|
|
5328
|
+
{
|
|
5329
|
+
"name": "rowNode",
|
|
5330
|
+
"kind": "REFERENCE",
|
|
5331
|
+
"description": "The RowNode being edited",
|
|
5332
|
+
"uiLabel": "Row Node",
|
|
5333
|
+
"reference": "unknown"
|
|
5334
|
+
},
|
|
5335
|
+
{
|
|
5336
|
+
"name": "type",
|
|
5337
|
+
"kind": "unknown",
|
|
5338
|
+
"description": "Type of the Context",
|
|
5339
|
+
"uiLabel": "Type"
|
|
5340
|
+
}
|
|
5341
|
+
]
|
|
5199
5342
|
},
|
|
5200
|
-
"
|
|
5201
|
-
"name": "
|
|
5343
|
+
"EditedActionRowInfo": {
|
|
5344
|
+
"name": "EditedActionRowInfo",
|
|
5202
5345
|
"kind": "Interface",
|
|
5203
|
-
"description": "Info passed into
|
|
5346
|
+
"description": "Info passed into ActionRowSubmitted Event for Edited Rows"
|
|
5204
5347
|
},
|
|
5205
5348
|
"EditLookUpPermittedValues": {
|
|
5206
5349
|
"name": "EditLookUpPermittedValues",
|
|
@@ -5228,14 +5371,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5228
5371
|
"uiLabel": "Is Cell Editable",
|
|
5229
5372
|
"isOptional": true
|
|
5230
5373
|
},
|
|
5231
|
-
{
|
|
5232
|
-
"name": "rowFormOptions",
|
|
5233
|
-
"kind": "REFERENCE",
|
|
5234
|
-
"description": "Options for editing (create/update/delete) row entries in the grid.",
|
|
5235
|
-
"uiLabel": "Row Form Options",
|
|
5236
|
-
"isOptional": true,
|
|
5237
|
-
"reference": "RowFormOptions"
|
|
5238
|
-
},
|
|
5239
5374
|
{
|
|
5240
5375
|
"name": "smartEditCustomOperations",
|
|
5241
5376
|
"kind": "unknown",
|
|
@@ -5252,26 +5387,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5252
5387
|
}
|
|
5253
5388
|
]
|
|
5254
5389
|
},
|
|
5255
|
-
"EditRowFormContext": {
|
|
5256
|
-
"name": "EditRowFormContext",
|
|
5257
|
-
"kind": "Interface",
|
|
5258
|
-
"description": "Context used in an Edit Row Form",
|
|
5259
|
-
"properties": [
|
|
5260
|
-
{
|
|
5261
|
-
"name": "rowNode",
|
|
5262
|
-
"kind": "REFERENCE",
|
|
5263
|
-
"description": "The RowNode being edited",
|
|
5264
|
-
"uiLabel": "Row Node",
|
|
5265
|
-
"reference": "unknown"
|
|
5266
|
-
},
|
|
5267
|
-
{
|
|
5268
|
-
"name": "type",
|
|
5269
|
-
"kind": "unknown",
|
|
5270
|
-
"description": "Type of the Context",
|
|
5271
|
-
"uiLabel": "Type"
|
|
5272
|
-
}
|
|
5273
|
-
]
|
|
5274
|
-
},
|
|
5275
5390
|
"EntitlementOptions": {
|
|
5276
5391
|
"name": "EntitlementOptions",
|
|
5277
5392
|
"kind": "Interface",
|
|
@@ -5346,7 +5461,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5346
5461
|
{
|
|
5347
5462
|
"name": "off",
|
|
5348
5463
|
"kind": "function",
|
|
5349
|
-
"description": "Unsubscribe from
|
|
5464
|
+
"description": "Unsubscribe from ActionRowSubmitted",
|
|
5350
5465
|
"uiLabel": "Off"
|
|
5351
5466
|
},
|
|
5352
5467
|
{
|
|
@@ -5454,7 +5569,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5454
5569
|
{
|
|
5455
5570
|
"name": "on",
|
|
5456
5571
|
"kind": "function",
|
|
5457
|
-
"description": "Event fired when
|
|
5572
|
+
"description": "Event fired when an Action Row is submitted",
|
|
5458
5573
|
"uiLabel": "On"
|
|
5459
5574
|
},
|
|
5460
5575
|
{
|
|
@@ -6040,7 +6155,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6040
6155
|
{
|
|
6041
6156
|
"name": "getIconForIntent",
|
|
6042
6157
|
"kind": "unknown",
|
|
6043
|
-
"description": "Returns
|
|
6158
|
+
"description": "Returns a custom icon to display in the Raise Intent Context Menu Item;",
|
|
6044
6159
|
"uiLabel": "Get Icon For Intent",
|
|
6045
6160
|
"isOptional": true
|
|
6046
6161
|
},
|
|
@@ -8058,24 +8173,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8058
8173
|
"description": "Loads grid with given data",
|
|
8059
8174
|
"uiLabel": "Load Grid Data"
|
|
8060
8175
|
},
|
|
8061
|
-
{
|
|
8062
|
-
"name": "openCloneRowForm",
|
|
8063
|
-
"kind": "function",
|
|
8064
|
-
"description": "Open create dialog for cloning an existing row",
|
|
8065
|
-
"uiLabel": "Open Clone Row Form"
|
|
8066
|
-
},
|
|
8067
|
-
{
|
|
8068
|
-
"name": "openCreateRowForm",
|
|
8069
|
-
"kind": "function",
|
|
8070
|
-
"description": "Open create dialog for a new row",
|
|
8071
|
-
"uiLabel": "Open Create Row Form"
|
|
8072
|
-
},
|
|
8073
|
-
{
|
|
8074
|
-
"name": "openEditRowForm",
|
|
8075
|
-
"kind": "function",
|
|
8076
|
-
"description": "Open edit dialog for row with the given primary key value",
|
|
8077
|
-
"uiLabel": "Open Edit Row Form"
|
|
8078
|
-
},
|
|
8079
8176
|
{
|
|
8080
8177
|
"name": "redrawGrid",
|
|
8081
8178
|
"kind": "function",
|
|
@@ -10857,67 +10954,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10857
10954
|
}
|
|
10858
10955
|
]
|
|
10859
10956
|
},
|
|
10860
|
-
"RowFormContext": {
|
|
10861
|
-
"name": "RowFormContext",
|
|
10862
|
-
"kind": "TypeAlias",
|
|
10863
|
-
"description": "Context passed into a Row Form - can be `CreateRowFormContext` or `EditRowFormContext`"
|
|
10864
|
-
},
|
|
10865
|
-
"RowFormOptions": {
|
|
10866
|
-
"name": "RowFormOptions",
|
|
10867
|
-
"kind": "Interface",
|
|
10868
|
-
"description": "Options for editing (create/update/delete) row entries in the grid",
|
|
10869
|
-
"properties": [
|
|
10870
|
-
{
|
|
10871
|
-
"name": "formButtons",
|
|
10872
|
-
"kind": "unknown",
|
|
10873
|
-
"description": "Custom form buttons provider. If provided, the custom implementation is responsible for firing the 'RowFormSubmitted' and/or invoking the 'onFormSubmit' callback (if necessary).",
|
|
10874
|
-
"uiLabel": "Form Buttons",
|
|
10875
|
-
"isOptional": true
|
|
10876
|
-
},
|
|
10877
|
-
{
|
|
10878
|
-
"name": "formDescription",
|
|
10879
|
-
"kind": "unknown",
|
|
10880
|
-
"description": "Custom form description provider",
|
|
10881
|
-
"uiLabel": "Form Description",
|
|
10882
|
-
"isOptional": true,
|
|
10883
|
-
"defaultValue": "undefined"
|
|
10884
|
-
},
|
|
10885
|
-
{
|
|
10886
|
-
"name": "formFieldLabel",
|
|
10887
|
-
"kind": "unknown",
|
|
10888
|
-
"description": "Custom form field label provider",
|
|
10889
|
-
"uiLabel": "Form Field Label",
|
|
10890
|
-
"isOptional": true,
|
|
10891
|
-
"defaultValue": "undefined"
|
|
10892
|
-
},
|
|
10893
|
-
{
|
|
10894
|
-
"name": "formTitle",
|
|
10895
|
-
"kind": "unknown",
|
|
10896
|
-
"description": "Custom form title provider",
|
|
10897
|
-
"uiLabel": "Form Title",
|
|
10898
|
-
"isOptional": true,
|
|
10899
|
-
"defaultValue": "'Create New Row'/'Edit Row'"
|
|
10900
|
-
},
|
|
10901
|
-
{
|
|
10902
|
-
"name": "onFormSubmit",
|
|
10903
|
-
"kind": "unknown",
|
|
10904
|
-
"description": "Function which is invoked when a row form is submitted via a standard button (provided by AdapTable). This is not invoked when custom form buttons are provided!",
|
|
10905
|
-
"uiLabel": "On Form Submit",
|
|
10906
|
-
"isOptional": true,
|
|
10907
|
-
"defaultValue": "undefined"
|
|
10908
|
-
}
|
|
10909
|
-
]
|
|
10910
|
-
},
|
|
10911
|
-
"RowFormSubmittedInfo": {
|
|
10912
|
-
"name": "RowFormSubmittedInfo",
|
|
10913
|
-
"kind": "TypeAlias",
|
|
10914
|
-
"description": "Info passed into RowFormSubmitted Event - can be `CreatedRowFormInfo` or `EditedRowFormInfo` or `DeletedRowFormInfo`"
|
|
10915
|
-
},
|
|
10916
|
-
"RowFormType": {
|
|
10917
|
-
"name": "RowFormType",
|
|
10918
|
-
"kind": "TypeAlias",
|
|
10919
|
-
"description": "Type of Row Form - Created, Edited or Deleted"
|
|
10920
|
-
},
|
|
10921
10957
|
"RowInfo": {
|
|
10922
10958
|
"name": "RowInfo",
|
|
10923
10959
|
"kind": "Interface",
|
|
@@ -12639,12 +12675,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
12639
12675
|
"description": "Retrieves any Object Tags (provided in User Interface Options)",
|
|
12640
12676
|
"uiLabel": "Get Adaptable Object Tags"
|
|
12641
12677
|
},
|
|
12642
|
-
{
|
|
12643
|
-
"name": "getAllActionColumn",
|
|
12644
|
-
"kind": "function",
|
|
12645
|
-
"description": "Retrieves any Action Columns (provided in User Interface Options)",
|
|
12646
|
-
"uiLabel": "Get All Action Column"
|
|
12647
|
-
},
|
|
12648
12678
|
{
|
|
12649
12679
|
"name": "getAllEditLookUpItems",
|
|
12650
12680
|
"kind": "function",
|
|
@@ -12724,14 +12754,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
12724
12754
|
"kind": "Interface",
|
|
12725
12755
|
"description": "Options for managing the User Interface of AdapTable",
|
|
12726
12756
|
"properties": [
|
|
12727
|
-
{
|
|
12728
|
-
"name": "actionOptions",
|
|
12729
|
-
"kind": "REFERENCE",
|
|
12730
|
-
"description": "Options for creating Action Columns and Buttons",
|
|
12731
|
-
"uiLabel": "Action Options",
|
|
12732
|
-
"isOptional": true,
|
|
12733
|
-
"reference": "ActionOptions"
|
|
12734
|
-
},
|
|
12735
12757
|
{
|
|
12736
12758
|
"name": "applicationIcon",
|
|
12737
12759
|
"kind": "REFERENCE",
|
|
@@ -12888,10 +12910,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
12888
12910
|
},
|
|
12889
12911
|
{
|
|
12890
12912
|
"name": "icon",
|
|
12891
|
-
"kind": "
|
|
12913
|
+
"kind": "REFERENCE",
|
|
12892
12914
|
"description": "Optional icon to display",
|
|
12893
12915
|
"uiLabel": "Icon",
|
|
12894
|
-
"isOptional": true
|
|
12916
|
+
"isOptional": true,
|
|
12917
|
+
"reference": "AdaptableIcon"
|
|
12895
12918
|
},
|
|
12896
12919
|
{
|
|
12897
12920
|
"name": "label",
|
package/src/types.d.ts
CHANGED
|
@@ -12,7 +12,8 @@ export type { FlashingCellOptions } from './AdaptableOptions/FlashingCellOptions
|
|
|
12
12
|
export type { TOAST_POSITIONS, NotificationsOptions, } from './AdaptableOptions/NotificationsOptions';
|
|
13
13
|
export type { AlertOptions, ActionHandler, AlertForm, AlertFormContext, AlertMessageContext, } from './AdaptableOptions/AlertOptions';
|
|
14
14
|
export type { DashboardOptions, CustomToolbar, DashboardButtonContext, CustomToolbarButtonContext, } from './AdaptableOptions/DashboardOptions';
|
|
15
|
-
export type { EditOptions,
|
|
15
|
+
export type { EditOptions, ValidationResult, SmartEditCustomOperation, SmartEditOperation, SmartEditOperationContext, } from './AdaptableOptions/EditOptions';
|
|
16
|
+
export type { ActionRowFormOptions, ActionRowParamContext, FormFieldLabelContext, CreateActionRowContext, EditActionRowContext, ActionColumnContext, ActionColumn, ActionColumnSettings, ActionOptions, ActionRowContext, } from './AdaptableOptions/ActionOptions';
|
|
16
17
|
export type { ExportOptions, SystemExportDestination, SystemExportDestinations, CustomDestination, CustomReport, DataFormatType, ExportFormContext, ReportContext, } from './AdaptableOptions/ExportOptions';
|
|
17
18
|
export type { GeneralOptions, ColumnValuesComparer, DataSet, DataSetFormContext, } from './AdaptableOptions/GeneralOptions';
|
|
18
19
|
export type { Glue42PluginOptions } from './AdaptableOptions/Glue42PluginOptions';
|
|
@@ -31,7 +32,7 @@ export type { FilterActionOnDataChange } from './PredefinedConfig/Common/FilterA
|
|
|
31
32
|
export type { ConfigState } from './PredefinedConfig/ConfigState';
|
|
32
33
|
export type { TeamSharingOptions } from './AdaptableOptions/TeamSharingOptions';
|
|
33
34
|
export type { ToolPanelOptions, CustomToolPanel, ToolPanelButtonContext, CustomToolPanelButtonContext, } from './AdaptableOptions/ToolPanelOptions';
|
|
34
|
-
export type { UserInterfaceOptions, CellValuesList, BasePermittedValues, PermittedValues, EditLookUpPermittedValues, FilterPermittedValues, CustomSortPermittedValues, BulkUpdatePermittedValues, EditLookUpContext, PermittedValuesContext, FilterPermittedValuesContext, BulkUpdatePermittedValuesContext, GridInfoSections, GridInfoSection, ObjectTagsContext, CustomDisplayFormatter,
|
|
35
|
+
export type { UserInterfaceOptions, CellValuesList, BasePermittedValues, PermittedValues, EditLookUpPermittedValues, FilterPermittedValues, CustomSortPermittedValues, BulkUpdatePermittedValues, EditLookUpContext, PermittedValuesContext, FilterPermittedValuesContext, BulkUpdatePermittedValuesContext, GridInfoSections, GridInfoSection, ObjectTagsContext, CustomDisplayFormatter, } from './AdaptableOptions/UserInterfaceOptions';
|
|
35
36
|
export type { MenuOptions } from './AdaptableOptions/MenuOptions';
|
|
36
37
|
export type { CustomSettingsPanel, SettingsPanelOptions, } from './AdaptableOptions/SettingsPanelOptions';
|
|
37
38
|
export type { EntitlementOptions, EntitlementContext } from './AdaptableOptions/EntitlementOptions';
|
|
@@ -44,6 +45,7 @@ export type { BulkUpdateApi } from './Api/BulkUpdateApi';
|
|
|
44
45
|
export type { CalculatedColumnApi } from './Api/CalculatedColumnApi';
|
|
45
46
|
export type { CellSummaryApi } from './Api/CellSummaryApi';
|
|
46
47
|
export type { ColumnApi } from './Api/ColumnApi';
|
|
48
|
+
export type { ActionApi } from './Api/ActionApi';
|
|
47
49
|
export type { ConditionalStyleApi } from './Api/ConditionalStyleApi';
|
|
48
50
|
export type { ConfigApi } from './Api/ConfigApi';
|
|
49
51
|
export type { CustomSortApi } from './Api/CustomSortApi';
|
|
@@ -90,7 +92,7 @@ export type { LayoutChangedInfo } from './Api/Events/LayoutChanged';
|
|
|
90
92
|
export type { CheckboxColumnClickedInfo } from './Api/Events/ChexboxColumnClicked';
|
|
91
93
|
export type { CustomToolbarConfiguredInfo } from './Api/Events/CustomToolbarConfigured';
|
|
92
94
|
export type { LiveDataChangedInfo, LiveReport } from './Api/Events/LiveDataChanged';
|
|
93
|
-
export type {
|
|
95
|
+
export type { ActionRowSubmittedInfo, ActionRowType, CreatedActionRowInfo, EditedActionRowInfo, DeletedActionRowInfo, } from './Api/Events/ActionRowSubmitted';
|
|
94
96
|
export type { AdaptableSearchState, AdaptableSortState, SearchChangedInfo, } from './Api/Events/SearchChanged';
|
|
95
97
|
export type { DataSetChangedInfo } from './Api/Events/DataSetChanged';
|
|
96
98
|
export type { SelectionChangedInfo } from './Api/Events/SelectionChanged';
|
|
@@ -119,7 +121,7 @@ export type { AdaptablePredicate, AdaptablePredicateDef, ModuleScope, PredicateD
|
|
|
119
121
|
export type { FDC3Context, InstrumentContext, InstrumentListContext, PositionContext, PortfolioContext, ContactContext, ContactListContext, CountryContext, OrganizationContext, AdaptableFDC3EventInfo, ContextType, CustomFDC3Context, } from './PredefinedConfig/Common/FDC3Context';
|
|
120
122
|
export type { AdaptableScope } from './PredefinedConfig/Common/AdaptableScope';
|
|
121
123
|
export type { AdaptableStyle } from './PredefinedConfig/Common/AdaptableStyle';
|
|
122
|
-
export type { AdaptableIcon } from './PredefinedConfig/Common/AdaptableIcon';
|
|
124
|
+
export type { AdaptableIcon, AdaptableInternalIcon, AdaptableExternalIcon, AdaptableInternalIconName, } from './PredefinedConfig/Common/AdaptableIcon';
|
|
123
125
|
export type { CellHighlightInfo } from './PredefinedConfig/Common/CellHighlightInfo';
|
|
124
126
|
export type { RowHighlightInfo } from './PredefinedConfig/Common/RowHighlightInfo';
|
|
125
127
|
export type { RowsHighlightInfo } from './PredefinedConfig/Common/RowsHighlightInfo';
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "12.0.0-canary.
|
|
1
|
+
declare const _default: "12.0.0-canary.4";
|
|
2
2
|
export default _default;
|
package/version.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.default = '12.0.0-canary.
|
|
3
|
+
exports.default = '12.0.0-canary.4'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import { BaseEventInfo } from './BaseEventInfo';
|
|
2
|
-
import { AdaptableFormData } from '../../PredefinedConfig/Common/AdaptableForm';
|
|
3
|
-
import { RowNode } from '@ag-grid-community/all-modules';
|
|
4
|
-
/**
|
|
5
|
-
* Info passed into RowFormSubmitted Event - can be `CreatedRowFormInfo` or `EditedRowFormInfo` or `DeletedRowFormInfo`
|
|
6
|
-
*/
|
|
7
|
-
export declare type RowFormSubmittedInfo = CreatedRowFormInfo | EditedRowFormInfo | DeletedRowFormInfo;
|
|
8
|
-
/**
|
|
9
|
-
* Type of Row Form - Created, Edited or Deleted
|
|
10
|
-
*/
|
|
11
|
-
export declare type RowFormType = 'rowCreated' | 'rowEdited' | 'rowDeleted';
|
|
12
|
-
/**
|
|
13
|
-
* Info passed into RowFormSubmitted Event for Created Rows
|
|
14
|
-
*/
|
|
15
|
-
export interface CreatedRowFormInfo extends BaseEventInfo {
|
|
16
|
-
type: 'rowCreated';
|
|
17
|
-
formData: AdaptableFormData;
|
|
18
|
-
clonedRowNode?: RowNode;
|
|
19
|
-
}
|
|
20
|
-
/**
|
|
21
|
-
* Info passed into RowFormSubmitted Event for Edited Rows
|
|
22
|
-
*/
|
|
23
|
-
export interface EditedRowFormInfo extends BaseEventInfo {
|
|
24
|
-
type: 'rowEdited';
|
|
25
|
-
formData: AdaptableFormData;
|
|
26
|
-
rowNode: RowNode;
|
|
27
|
-
}
|
|
28
|
-
/**
|
|
29
|
-
* Info passed into RowFormSubmitted Event for Deleted Rows
|
|
30
|
-
*/
|
|
31
|
-
export interface DeletedRowFormInfo extends BaseEventInfo {
|
|
32
|
-
type: 'rowDeleted';
|
|
33
|
-
rowNode: RowNode;
|
|
34
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ApplicationIcon = void 0;
|
|
4
|
-
const tslib_1 = require("tslib");
|
|
5
|
-
const React = tslib_1.__importStar(require("react"));
|
|
6
|
-
exports.ApplicationIcon = ({ icon, className }) => {
|
|
7
|
-
if (!icon) {
|
|
8
|
-
return null;
|
|
9
|
-
}
|
|
10
|
-
let width = icon.style && icon.style.width ? icon.style.width : 'var(--ab-cmp-simple-button__width)';
|
|
11
|
-
let height = icon.style && icon.style.height ? icon.style.height : 'var(--ab-cmp-simple-button__height)';
|
|
12
|
-
return React.createElement("img", { className: className, src: icon.src, style: { width: width, height: height } });
|
|
13
|
-
};
|