@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
|
@@ -1,15 +1,13 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { AdaptableApi } from '../Api/AdaptableApi';
|
|
3
2
|
import { AdaptableColumn } from '../PredefinedConfig/Common/AdaptableColumn';
|
|
4
3
|
import { AdaptableMenuItem } from '../PredefinedConfig/Common/Menu';
|
|
5
4
|
import { PlusMinusNudge } from '../PredefinedConfig/PlusMinusState';
|
|
6
5
|
import { GridCell } from '../PredefinedConfig/Selection/GridCell';
|
|
7
6
|
import { TeamSharingImportInfo } from '../PredefinedConfig/TeamSharingState';
|
|
8
|
-
import * as PlusMinusRedux from '../Redux/ActionsReducers/PlusMinusRedux';
|
|
9
7
|
import { AdaptableModuleBase } from './AdaptableModuleBase';
|
|
10
8
|
import { IPlusMinusModule } from './Interface/IPlusMinusModule';
|
|
11
9
|
import { AdaptableObject } from '../PredefinedConfig/Common/AdaptableObject';
|
|
12
|
-
import { AdaptableObjectView } from './Interface/IModule';
|
|
10
|
+
import { AdaptableModuleView, AdaptableObjectView } from './Interface/IModule';
|
|
13
11
|
export declare class PlusMinusModule extends AdaptableModuleBase implements IPlusMinusModule {
|
|
14
12
|
private shouldHandleKeyDown;
|
|
15
13
|
private adaptable;
|
|
@@ -30,11 +28,6 @@ export declare class PlusMinusModule extends AdaptableModuleBase implements IPlu
|
|
|
30
28
|
getTeamSharingAction(): TeamSharingImportInfo<PlusMinusNudge>;
|
|
31
29
|
toView(plusMinus: PlusMinusNudge): AdaptableObjectView;
|
|
32
30
|
toViewAll(): AdaptableObjectView[];
|
|
33
|
-
getViewProperties():
|
|
34
|
-
getDeleteAction: (plusMinusNudge: PlusMinusNudge) => PlusMinusRedux.PlusMinusNudgeDeleteAction;
|
|
35
|
-
getSuspendAction: (plusMinusNudge: PlusMinusNudge) => PlusMinusRedux.PlusMinusNudgeSuspendAction;
|
|
36
|
-
getUnSuspendAction: (plusMinusNudge: PlusMinusNudge) => PlusMinusRedux.PlusMinusNudgeUnSuspendAction;
|
|
37
|
-
getEditWizard(): import("react").FunctionComponent<import("../View/PlusMinus/Wizard/PlusMinusWizard").PlusMinusWizardProps>;
|
|
38
|
-
};
|
|
31
|
+
getViewProperties(): AdaptableModuleView;
|
|
39
32
|
canBeAssociatedWithLayouts(): boolean;
|
|
40
33
|
}
|
|
@@ -1,12 +1,7 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { AdaptableModuleBase } from './AdaptableModuleBase';
|
|
3
|
-
import { IModule } from './Interface/IModule';
|
|
2
|
+
import { AdaptableModuleView, IModule } from './Interface/IModule';
|
|
4
3
|
import { AdaptableApi } from '../Api/AdaptableApi';
|
|
5
4
|
export declare class QuickSearchModule extends AdaptableModuleBase implements IModule {
|
|
6
5
|
constructor(api: AdaptableApi);
|
|
7
|
-
getViewProperties():
|
|
8
|
-
getStatusBarPanelProps(): {
|
|
9
|
-
content: import("react").FunctionComponent<{}>;
|
|
10
|
-
};
|
|
11
|
-
};
|
|
6
|
+
getViewProperties(): AdaptableModuleView;
|
|
12
7
|
}
|
|
@@ -1,9 +1,7 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { AdaptableModuleBase } from './AdaptableModuleBase';
|
|
3
|
-
import { AdaptableObjectView } from './Interface/IModule';
|
|
2
|
+
import { AdaptableModuleView, AdaptableObjectView } from './Interface/IModule';
|
|
4
3
|
import { AdaptableApi } from '../Api/AdaptableApi';
|
|
5
4
|
import { BaseSchedule } from '../PredefinedConfig/Common/Schedule';
|
|
6
|
-
import * as ScheduleRedux from '../Redux/ActionsReducers/ScheduleRedux';
|
|
7
5
|
import { IScheduleModule } from './Interface/IScheduleModule';
|
|
8
6
|
export declare class ScheduleModule extends AdaptableModuleBase implements IScheduleModule {
|
|
9
7
|
private scheduleJobs;
|
|
@@ -19,15 +17,6 @@ export declare class ScheduleModule extends AdaptableModuleBase implements ISche
|
|
|
19
17
|
}): BaseSchedule[];
|
|
20
18
|
toView(schedule: BaseSchedule): AdaptableObjectView;
|
|
21
19
|
toViewAll(): AdaptableObjectView[];
|
|
22
|
-
getViewProperties():
|
|
23
|
-
abObjectTypes: {
|
|
24
|
-
name: string;
|
|
25
|
-
accessLevel: import("../types").AccessLevel;
|
|
26
|
-
}[];
|
|
27
|
-
getDeleteAction: (schedule: BaseSchedule) => ScheduleRedux.Glue42ScheduleDeleteAction | ScheduleRedux.OpenFinScheduleDeleteAction | ScheduleRedux.IPushPullScheduleDeleteAction | ScheduleRedux.ReminderScheduleDeleteAction | ScheduleRedux.ReportScheduleDeleteAction;
|
|
28
|
-
getSuspendAction: (schedule: BaseSchedule) => ScheduleRedux.Glue42ScheduleSuspendAction | ScheduleRedux.OpenFinScheduleSuspendAction | ScheduleRedux.IPushPullScheduleSuspendAction | ScheduleRedux.ReminderScheduleSuspendAction | ScheduleRedux.ReportScheduleSuspendAction;
|
|
29
|
-
getUnSuspendAction: (schedule: BaseSchedule) => ScheduleRedux.Glue42ScheduleUnSuspendAction | ScheduleRedux.OpenFinScheduleUnSuspendAction | ScheduleRedux.IPushPullScheduleUnSuspendAction | ScheduleRedux.ReminderScheduleUnSuspendAction | ScheduleRedux.ReportScheduleUnSuspendAction;
|
|
30
|
-
getEditWizard(): import("react").FunctionComponent<import("../View/Schedule/Wizard/ScheduleWizard").ScheduleWizardProps>;
|
|
31
|
-
};
|
|
20
|
+
getViewProperties(): AdaptableModuleView;
|
|
32
21
|
canBeAssociatedWithLayouts(): boolean;
|
|
33
22
|
}
|
|
@@ -1,12 +1,10 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { AdaptableModuleBase } from './AdaptableModuleBase';
|
|
3
|
-
import * as ShortcutRedux from '../Redux/ActionsReducers/ShortcutRedux';
|
|
4
2
|
import { Shortcut } from '../PredefinedConfig/ShortcutState';
|
|
5
3
|
import { TeamSharingImportInfo } from '../PredefinedConfig/TeamSharingState';
|
|
6
4
|
import { IShortcutModule } from './Interface/IShortcutModule';
|
|
7
5
|
import { AdaptableApi } from '../Api/AdaptableApi';
|
|
8
6
|
import { AdaptableObject } from '../PredefinedConfig/Common/AdaptableObject';
|
|
9
|
-
import { AdaptableObjectView } from './Interface/IModule';
|
|
7
|
+
import { AdaptableModuleView, AdaptableObjectView } from './Interface/IModule';
|
|
10
8
|
export declare class ShortcutModule extends AdaptableModuleBase implements IShortcutModule {
|
|
11
9
|
private shouldHandleKeyDown;
|
|
12
10
|
private adaptable;
|
|
@@ -22,11 +20,6 @@ export declare class ShortcutModule extends AdaptableModuleBase implements IShor
|
|
|
22
20
|
private calculateShortcut;
|
|
23
21
|
toView(shortcut: Shortcut): AdaptableObjectView;
|
|
24
22
|
toViewAll(): AdaptableObjectView[];
|
|
25
|
-
getViewProperties():
|
|
26
|
-
getDeleteAction: (shortcut: Shortcut) => ShortcutRedux.ShortcutDeleteAction;
|
|
27
|
-
getSuspendAction: (shortcut: Shortcut) => ShortcutRedux.ShortcutDeleteAction;
|
|
28
|
-
getUnSuspendAction: (shortcut: Shortcut) => ShortcutRedux.ShortcutDeleteAction;
|
|
29
|
-
getEditWizard(): import("react").FunctionComponent<import("../View/Shortcut/Wizard/ShortcutWizard").ShortcutWizardProps>;
|
|
30
|
-
};
|
|
23
|
+
getViewProperties(): AdaptableModuleView;
|
|
31
24
|
canBeAssociatedWithLayouts(): boolean;
|
|
32
25
|
}
|
|
@@ -9,7 +9,7 @@ class StatusBarModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
|
9
9
|
super(ModuleConstants.StatusBarModuleId, 'Status Bar', 'statusbar', 'StatusBarPopup', 'Configure AdapTable Status Bar', api);
|
|
10
10
|
}
|
|
11
11
|
syncStateWithOptions(agGridAdaptablePanels) {
|
|
12
|
-
const statusPanelsState = this.api.statusBarApi.
|
|
12
|
+
const statusPanelsState = this.api.statusBarApi.getAdaptableStatusBars();
|
|
13
13
|
/**
|
|
14
14
|
* Grid config determines how many adaptable status panels are rendered.
|
|
15
15
|
* This dictates the state.
|
|
@@ -27,7 +27,7 @@ class StatusBarModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
|
27
27
|
}
|
|
28
28
|
return statusPanelState;
|
|
29
29
|
});
|
|
30
|
-
this.api.statusBarApi.
|
|
30
|
+
this.api.statusBarApi.setStatusBarPanels(newStatusPanelsState);
|
|
31
31
|
}
|
|
32
32
|
isModuleAvailable() {
|
|
33
33
|
return super.isModuleAvailable() && this.api.statusBarApi.getAgGridStatusPanels().length > 0;
|
|
@@ -1,16 +1,11 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { AdaptableModuleBase } from './AdaptableModuleBase';
|
|
3
2
|
import { AdaptableMenuItem, ContextMenuContext } from '../PredefinedConfig/Common/Menu';
|
|
4
3
|
import { AdaptableColumn } from '../PredefinedConfig/Common/AdaptableColumn';
|
|
5
|
-
import { IModule } from './Interface/IModule';
|
|
4
|
+
import { AdaptableModuleView, IModule } from './Interface/IModule';
|
|
6
5
|
import { AdaptableApi } from '../Api/AdaptableApi';
|
|
7
6
|
export declare class SystemStatusModule extends AdaptableModuleBase implements IModule {
|
|
8
7
|
constructor(api: AdaptableApi);
|
|
9
8
|
addColumnMenuItems(column: AdaptableColumn): AdaptableMenuItem[] | undefined;
|
|
10
9
|
addContextMenuItems(menuContext: ContextMenuContext): AdaptableMenuItem[] | undefined;
|
|
11
|
-
getViewProperties():
|
|
12
|
-
getStatusBarPanelProps: () => {
|
|
13
|
-
content: import("react").FunctionComponent<{}>;
|
|
14
|
-
};
|
|
15
|
-
};
|
|
10
|
+
getViewProperties(): AdaptableModuleView;
|
|
16
11
|
}
|
|
@@ -1,16 +1,10 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { AdaptableModuleBase } from './AdaptableModuleBase';
|
|
3
|
-
import { IModule } from './Interface/IModule';
|
|
2
|
+
import { AdaptableModuleView, IModule } from './Interface/IModule';
|
|
4
3
|
import { AdaptableApi } from '../Api/AdaptableApi';
|
|
5
4
|
import { AdaptableObject } from '../PredefinedConfig/Common/AdaptableObject';
|
|
6
5
|
export declare class ThemeModule extends AdaptableModuleBase implements IModule {
|
|
7
6
|
constructor(api: AdaptableApi);
|
|
8
7
|
getModuleAdaptableObjects(): AdaptableObject[];
|
|
9
8
|
hasNamedQueryReferences(): boolean;
|
|
10
|
-
getViewProperties():
|
|
11
|
-
getStatusBarPanelProps: () => {
|
|
12
|
-
content: string;
|
|
13
|
-
popover: import("react").FunctionComponent<{}>;
|
|
14
|
-
};
|
|
15
|
-
};
|
|
9
|
+
getViewProperties(): AdaptableModuleView;
|
|
16
10
|
}
|
|
@@ -7,9 +7,10 @@ const BehaviourView = (props) => {
|
|
|
7
7
|
const adaptable = AdaptableContext_1.useAdaptable();
|
|
8
8
|
return AlertBehaviourWizardSection_1.renderAlertBehaviourSummary(props.data, adaptable.api, true);
|
|
9
9
|
};
|
|
10
|
-
|
|
10
|
+
const getAlertBehaviourViewItems = (api) => {
|
|
11
11
|
return {
|
|
12
12
|
name: api.internalApi.getCorrectEnglishVariant('Behaviour'),
|
|
13
13
|
view: BehaviourView,
|
|
14
14
|
};
|
|
15
15
|
};
|
|
16
|
+
exports.getAlertBehaviourViewItems = getAlertBehaviourViewItems;
|
|
@@ -5,7 +5,7 @@ const tslib_1 = require("tslib");
|
|
|
5
5
|
const React = tslib_1.__importStar(require("react"));
|
|
6
6
|
const Tag_1 = require("../../components/Tag");
|
|
7
7
|
const AlertDisplayWizardSection_1 = require("../../View/Alert/Wizard/AlertDisplayWizardSection");
|
|
8
|
-
|
|
8
|
+
const getAlertPreviewViewItems = (alert, api) => {
|
|
9
9
|
return {
|
|
10
10
|
name: 'Type and Display',
|
|
11
11
|
view: () => {
|
|
@@ -17,3 +17,4 @@ exports.getAlertPreviewViewItems = (alert, api) => {
|
|
|
17
17
|
},
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
|
+
exports.getAlertPreviewViewItems = getAlertPreviewViewItems;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getCustomSortColumnViewItems = void 0;
|
|
4
|
-
|
|
4
|
+
const getCustomSortColumnViewItems = (customSort, api) => {
|
|
5
5
|
return {
|
|
6
6
|
name: 'Column',
|
|
7
7
|
values: [api.columnApi.getFriendlyNameFromColumnId(customSort.ColumnId)],
|
|
8
8
|
};
|
|
9
9
|
};
|
|
10
|
+
exports.getCustomSortColumnViewItems = getCustomSortColumnViewItems;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getCustomSortSortOrderViewItems = void 0;
|
|
4
|
-
|
|
4
|
+
const getCustomSortSortOrderViewItems = (customSort) => {
|
|
5
5
|
return {
|
|
6
6
|
name: 'Sort Order',
|
|
7
7
|
values: customSort.SortedValues,
|
|
8
8
|
};
|
|
9
9
|
};
|
|
10
|
+
exports.getCustomSortSortOrderViewItems = getCustomSortSortOrderViewItems;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getExportColumnsViewItems = void 0;
|
|
4
|
-
|
|
4
|
+
const getExportColumnsViewItems = (report, api) => {
|
|
5
5
|
return {
|
|
6
6
|
name: 'Columns',
|
|
7
7
|
values: [...api.internalApi.getReportService().GetReportColumnScopeShortDescription(report)],
|
|
8
8
|
};
|
|
9
9
|
};
|
|
10
|
+
exports.getExportColumnsViewItems = getExportColumnsViewItems;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getExportRowsViewItems = void 0;
|
|
4
|
-
|
|
4
|
+
const getExportRowsViewItems = (report, api) => {
|
|
5
5
|
var _a;
|
|
6
6
|
const values = [];
|
|
7
7
|
switch (report.ReportRowScope) {
|
|
@@ -24,3 +24,4 @@ exports.getExportRowsViewItems = (report, api) => {
|
|
|
24
24
|
],
|
|
25
25
|
};
|
|
26
26
|
};
|
|
27
|
+
exports.getExportRowsViewItems = getExportRowsViewItems;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getExpressionViewItems = void 0;
|
|
4
|
-
|
|
4
|
+
const getExpressionViewItems = (query) => {
|
|
5
5
|
var _a;
|
|
6
6
|
return {
|
|
7
7
|
name: 'Expression',
|
|
8
8
|
values: [(_a = query === null || query === void 0 ? void 0 : query.ScalarExpression) !== null && _a !== void 0 ? _a : query === null || query === void 0 ? void 0 : query.AggregatedScalarExpression],
|
|
9
9
|
};
|
|
10
10
|
};
|
|
11
|
+
exports.getExpressionViewItems = getExpressionViewItems;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getFlashingCellDurationViewItems = void 0;
|
|
4
|
-
|
|
4
|
+
const getFlashingCellDurationViewItems = (flashingCell) => {
|
|
5
5
|
return {
|
|
6
6
|
name: 'Duration',
|
|
7
7
|
values: [flashingCell.FlashDuration],
|
|
8
8
|
};
|
|
9
9
|
};
|
|
10
|
+
exports.getFlashingCellDurationViewItems = getFlashingCellDurationViewItems;
|
|
@@ -1,6 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const getFlashingCellStyleViewItems: () =>
|
|
3
|
-
name: string;
|
|
4
|
-
label: string;
|
|
5
|
-
view: import("react").FunctionComponent<import("../../View/FlashingCell/FlashingCellStyle").FlashingCellStyleProps>;
|
|
6
|
-
};
|
|
1
|
+
import { AdaptableObjectItemView } from '../Interface/IModule';
|
|
2
|
+
export declare const getFlashingCellStyleViewItems: () => AdaptableObjectItemView;
|
|
@@ -2,10 +2,11 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getFlashingCellStyleViewItems = void 0;
|
|
4
4
|
const FlashingCellStyle_1 = require("../../View/FlashingCell/FlashingCellStyle");
|
|
5
|
-
|
|
5
|
+
const getFlashingCellStyleViewItems = () => {
|
|
6
6
|
return {
|
|
7
7
|
name: 'Flash Styles',
|
|
8
8
|
label: 'Change Style',
|
|
9
9
|
view: FlashingCellStyle_1.FlashingCellStyle,
|
|
10
10
|
};
|
|
11
11
|
};
|
|
12
|
+
exports.getFlashingCellStyleViewItems = getFlashingCellStyleViewItems;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getFlashingTargetViewItems = void 0;
|
|
4
|
-
|
|
4
|
+
const getFlashingTargetViewItems = (flashingCell) => {
|
|
5
5
|
return {
|
|
6
6
|
name: 'Target',
|
|
7
7
|
values: Array.isArray(flashingCell.FlashTarget)
|
|
@@ -9,3 +9,4 @@ exports.getFlashingTargetViewItems = (flashingCell) => {
|
|
|
9
9
|
: [flashingCell.FlashTarget],
|
|
10
10
|
};
|
|
11
11
|
};
|
|
12
|
+
exports.getFlashingTargetViewItems = getFlashingTargetViewItems;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getFormatColumnSettingsViewItems = void 0;
|
|
4
|
-
|
|
4
|
+
const getFormatColumnSettingsViewItems = (calculatedColumn) => {
|
|
5
5
|
var _a;
|
|
6
6
|
const values = [
|
|
7
7
|
`Cell alignment: ${(_a = calculatedColumn.CellAlignment) !== null && _a !== void 0 ? _a : 'default'}`,
|
|
@@ -13,3 +13,4 @@ exports.getFormatColumnSettingsViewItems = (calculatedColumn) => {
|
|
|
13
13
|
values,
|
|
14
14
|
};
|
|
15
15
|
};
|
|
16
|
+
exports.getFormatColumnSettingsViewItems = getFormatColumnSettingsViewItems;
|
|
@@ -5,6 +5,7 @@ const tslib_1 = require("tslib");
|
|
|
5
5
|
const React = tslib_1.__importStar(require("react"));
|
|
6
6
|
const rebass_1 = require("rebass");
|
|
7
7
|
const FormatColumnStyleWizardSection_1 = require("../../View/FormatColumn/Wizard/FormatColumnStyleWizardSection");
|
|
8
|
-
|
|
8
|
+
const getFormatColumnStyleViewItems = (formatColumn, api) => {
|
|
9
9
|
return React.createElement(rebass_1.Box, { mt: 2 }, FormatColumnStyleWizardSection_1.renderFormatColumnStyleSummary(formatColumn, api));
|
|
10
10
|
};
|
|
11
|
+
exports.getFormatColumnStyleViewItems = getFormatColumnStyleViewItems;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getObjectTagsViewItems = void 0;
|
|
4
|
-
|
|
4
|
+
const getObjectTagsViewItems = (object, api) => {
|
|
5
5
|
var _a;
|
|
6
6
|
if (!api.internalApi.shouldDisplayTagSections()) {
|
|
7
7
|
return;
|
|
@@ -11,3 +11,4 @@ exports.getObjectTagsViewItems = (object, api) => {
|
|
|
11
11
|
values: (_a = object === null || object === void 0 ? void 0 : object.Tags) === null || _a === void 0 ? void 0 : _a.map((tag) => api.internalApi.getLabelForTag(tag)),
|
|
12
12
|
};
|
|
13
13
|
};
|
|
14
|
+
exports.getObjectTagsViewItems = getObjectTagsViewItems;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getRuleViewItems = void 0;
|
|
4
|
-
|
|
4
|
+
const getRuleViewItems = (rule, api) => {
|
|
5
5
|
return {
|
|
6
6
|
name: 'Condition',
|
|
7
7
|
values: [
|
|
@@ -11,3 +11,4 @@ exports.getRuleViewItems = (rule, api) => {
|
|
|
11
11
|
],
|
|
12
12
|
};
|
|
13
13
|
};
|
|
14
|
+
exports.getRuleViewItems = getRuleViewItems;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getScopeViewItems = void 0;
|
|
4
|
-
|
|
4
|
+
const getScopeViewItems = (scope, api) => {
|
|
5
5
|
let values = [];
|
|
6
6
|
if ('ColumnIds' in scope && Array.isArray(scope.ColumnIds)) {
|
|
7
7
|
values = scope.ColumnIds;
|
|
@@ -19,3 +19,4 @@ exports.getScopeViewItems = (scope, api) => {
|
|
|
19
19
|
values,
|
|
20
20
|
};
|
|
21
21
|
};
|
|
22
|
+
exports.getScopeViewItems = getScopeViewItems;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getShortcutSettingsViewItems = void 0;
|
|
4
|
-
|
|
4
|
+
const getShortcutSettingsViewItems = (shortcut) => {
|
|
5
5
|
var _a, _b;
|
|
6
6
|
const values = [
|
|
7
7
|
`Shortcut Key: ${shortcut.ShortcutKey || 'Not selected'}`,
|
|
@@ -13,3 +13,4 @@ exports.getShortcutSettingsViewItems = (shortcut) => {
|
|
|
13
13
|
values,
|
|
14
14
|
};
|
|
15
15
|
};
|
|
16
|
+
exports.getShortcutSettingsViewItems = getShortcutSettingsViewItems;
|
|
@@ -7,9 +7,10 @@ const StylePreview_1 = require("../../components/StylePreview");
|
|
|
7
7
|
const StyleComponent = (props) => {
|
|
8
8
|
return React.createElement(StylePreview_1.StylePreview, { styleObject: props.data.Style });
|
|
9
9
|
};
|
|
10
|
-
|
|
10
|
+
const getStyleViewItems = () => {
|
|
11
11
|
return {
|
|
12
12
|
name: 'Style',
|
|
13
13
|
view: StyleComponent,
|
|
14
14
|
};
|
|
15
15
|
};
|
|
16
|
+
exports.getStyleViewItems = getStyleViewItems;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.LicenseDocsLink = exports.PrimaryKeyDocsLink = exports.PredicateDocsLink = exports.AggregatedScalarQueryDocsLink = exports.AggregatedBooleanQueryDocsLink = exports.ObservableQueryDocsLink = exports.ScalarQueryDocsLink = exports.BooleanQueryDocsLink = exports.ExpressionEditorDocsLink = exports.HOST_URL_DOCS = void 0;
|
|
3
|
+
exports.AdaptableOptionsDocsLink = exports.LicenseDocsLink = exports.PrimaryKeyDocsLink = exports.PredicateDocsLink = exports.AggregatedScalarQueryDocsLink = exports.AggregatedBooleanQueryDocsLink = exports.ObservableQueryDocsLink = exports.ScalarQueryDocsLink = exports.BooleanQueryDocsLink = exports.ExpressionEditorDocsLink = exports.HOST_URL_DOCS = void 0;
|
|
4
4
|
exports.HOST_URL_DOCS = 'https://docs.adaptabletools.com';
|
|
5
5
|
//export const HOST_URL_DOCS = 'http://localhost:3000';
|
|
6
6
|
exports.ExpressionEditorDocsLink = `${exports.HOST_URL_DOCS}/guide/ui-expression-editor`;
|
|
@@ -12,3 +12,4 @@ exports.AggregatedScalarQueryDocsLink = `${exports.HOST_URL_DOCS}/guide/adaptabl
|
|
|
12
12
|
exports.PredicateDocsLink = `${exports.HOST_URL_DOCS}/guide/adaptable-ql-predicate`;
|
|
13
13
|
exports.PrimaryKeyDocsLink = `${exports.HOST_URL_DOCS}/guide/dev-guide-tutorial-primary-key`;
|
|
14
14
|
exports.LicenseDocsLink = `${exports.HOST_URL_DOCS}/guide/licensing`;
|
|
15
|
+
exports.AdaptableOptionsDocsLink = `${exports.HOST_URL_DOCS}/guide/reference-options-overview`;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.VISUAL_DATA_REPORT = exports.SYSTEM_THEMES = exports.SMART_EDIT_MATH_OPERATION_STATE_PROPERTY = exports.SMART_EDIT_VALUE_STATE_PROPERTY = exports.QUICK_SEARCH_STYLE_STATE_PROPERTY = exports.QUICK_SEARCH_TEXT_STATE_PROPERTY = exports.CURRENT_THEME_STATE_PROPERTY = exports.FLASHING_CELL_DEFAULT_DURATION_STATE_PROPERTY = exports.FLASHING_CELL_DEFAULT_DOWN_COLOR_STATE_PROPERTY = exports.FLASHING_CELL_DEFAULT_UP_COLOR_STATE_PROPERTY = exports.CURRENT_REPORT_STATE_PROPERTY = exports.CURRENT_LAYOUT_STATE_PROPERTY = exports.SUMMARY_OPERATION_STATE_PROPERTY = exports.ALERT_DEFAULT_SHOW_POPUP = exports.ALERT_DEFAULT_MESSAGE_TYPE = exports.PLUS_MINUS_DEFAULT_NUDGE_VALUE = exports.DEFAULT_LIVE_REPORT_THROTTLE_TIME = exports.THEME_DEFAULT_CURRENT_THEME = exports.SYSTEM_DEFAULT_SYSTEM_STATUS_TYPE = exports.CELL_SUMMARY_DEFAULT_OPERATION = exports.QUICK_SEARCH_DEBOUNCE_TIME = exports.QUICK_SEARCH_DEFAULT_FORE_COLOR = exports.QUICK_SEARCH_DEFAULT_BACK_COLOR = exports.SYSTEM_STATUS_DEFAULT_MAX_MESSAGES_IN_STORE = exports.ADAPTABLE_ROW_ACTION_BUTTONS_FRIENDLY_NAME = exports.ADAPTABLE_ROW_ACTION_BUTTONS = exports.AG_GRID_PIVOT_COLUMN = exports.AG_GRID_GROUPED_COLUMN = exports.HALF_SECOND = exports.AB_SPECIAL_COLUMN = exports.EMPTY_ARRAY = exports.EMPTY_STRING = exports.FILTER_THROTTLE = exports.FILTER_NEVER = exports.FILTER_ALWAYS = exports.ALL_COLUMN_VALUES = exports.READ_ONLY_STYLE = exports.MENU_PREFIX = exports.AGGRID_TOOLPANEL_COLUMNS = exports.AGGRID_TOOLPANEL_FILTERS = exports.ADAPTABLE_TOOLPANEL_COMPONENT = exports.ADAPTABLE_TOOLPANEL_ID = exports.ADAPTABLE = exports.ADAPTABLE_ID = exports.USER_NAME = exports.DARK_THEME = exports.LIGHT_THEME = exports.DEFAULT_LAYOUT = exports.MISSING_COLUMN = exports.AUTOGENERATED_PK_COLUMN = void 0;
|
|
4
|
+
exports.THEME_STYLE = exports.SELECTED_ROWS_REPORT = exports.SELECTED_CELLS_REPORT = exports.CURRENT_DATA_REPORT = exports.ALL_DATA_REPORT = void 0;
|
|
4
5
|
const Enums_1 = require("../../PredefinedConfig/Common/Enums");
|
|
5
6
|
const UIHelper_1 = require("../../View/UIHelper");
|
|
6
7
|
exports.AUTOGENERATED_PK_COLUMN = '__ADAPTABLE_PK__';
|
|
@@ -12,6 +12,7 @@ const aggregatedBooleanExpressionFunctions_1 = require("../ExpressionFunctions/a
|
|
|
12
12
|
const AdaptablePredicate_1 = require("../../PredefinedConfig/Common/AdaptablePredicate");
|
|
13
13
|
const Enums_1 = require("../../PredefinedConfig/Common/Enums");
|
|
14
14
|
const aggregatedScalarExpressionFunctions_1 = require("../ExpressionFunctions/aggregatedScalarExpressionFunctions");
|
|
15
|
+
// change type to DeepRequired<AdaptableOptions> to check which properties have no default values defined
|
|
15
16
|
exports.DefaultAdaptableOptions = {
|
|
16
17
|
adaptableId: GeneralConstants.ADAPTABLE_ID,
|
|
17
18
|
adaptableStateKey: undefined,
|
|
@@ -28,6 +29,7 @@ exports.DefaultAdaptableOptions = {
|
|
|
28
29
|
statusbarHighlightDuration: 2000,
|
|
29
30
|
dataChangeDetectionPolicy: 'rawValue',
|
|
30
31
|
actionHandlers: undefined,
|
|
32
|
+
alertMessageText: undefined,
|
|
31
33
|
},
|
|
32
34
|
notificationsOptions: {
|
|
33
35
|
maxNotifications: 3,
|
|
@@ -68,7 +70,7 @@ exports.DefaultAdaptableOptions = {
|
|
|
68
70
|
moduleExpressionFunctions: undefined,
|
|
69
71
|
queryableColumns: undefined,
|
|
70
72
|
performExpressionValidation: true,
|
|
71
|
-
maxTimeframeSize: 28800000,
|
|
73
|
+
maxTimeframeSize: 28800000, // 8 hours
|
|
72
74
|
},
|
|
73
75
|
},
|
|
74
76
|
containerOptions: {
|
|
@@ -80,6 +82,7 @@ exports.DefaultAdaptableOptions = {
|
|
|
80
82
|
alertContainer: undefined,
|
|
81
83
|
},
|
|
82
84
|
columnOptions: {
|
|
85
|
+
columnFriendlyName: undefined,
|
|
83
86
|
columnTypes: GeneralConstants_1.EMPTY_ARRAY,
|
|
84
87
|
showMissingColumnsWarning: true,
|
|
85
88
|
autoOrderGroupedColumns: true,
|
|
@@ -92,11 +95,13 @@ exports.DefaultAdaptableOptions = {
|
|
|
92
95
|
customToolbars: undefined,
|
|
93
96
|
buttonsLocation: 'right',
|
|
94
97
|
},
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
98
|
+
actionOptions: {
|
|
99
|
+
actionColumns: undefined,
|
|
100
|
+
actionRowButtons: undefined,
|
|
101
|
+
actionRowButtonsPosition: 'pinnedLeft',
|
|
102
|
+
autoHandleActionRowButtons: false,
|
|
103
|
+
setPrimaryKeyValue: undefined,
|
|
104
|
+
actionRowFormOptions: {
|
|
100
105
|
formTitle: undefined,
|
|
101
106
|
formDescription: undefined,
|
|
102
107
|
formFieldLabel: undefined,
|
|
@@ -104,6 +109,12 @@ exports.DefaultAdaptableOptions = {
|
|
|
104
109
|
onFormSubmit: undefined,
|
|
105
110
|
},
|
|
106
111
|
},
|
|
112
|
+
editOptions: {
|
|
113
|
+
validateOnServer: undefined,
|
|
114
|
+
displayServerValidationMessages: true,
|
|
115
|
+
isCellEditable: undefined,
|
|
116
|
+
smartEditCustomOperations: undefined,
|
|
117
|
+
},
|
|
107
118
|
entitlementOptions: {
|
|
108
119
|
defaultAccessLevel: 'Full',
|
|
109
120
|
moduleEntitlements: undefined,
|
|
@@ -150,6 +161,8 @@ exports.DefaultAdaptableOptions = {
|
|
|
150
161
|
maxColumnsToDisplay: 10,
|
|
151
162
|
},
|
|
152
163
|
layoutTagOptions: {
|
|
164
|
+
autoGenerateTagsForLayouts: false,
|
|
165
|
+
isObjectAvailableInLayout: undefined,
|
|
153
166
|
autoCheckTagsForLayouts: false,
|
|
154
167
|
},
|
|
155
168
|
},
|
|
@@ -204,6 +217,7 @@ exports.DefaultAdaptableOptions = {
|
|
|
204
217
|
saveState: (state) => state,
|
|
205
218
|
loadState: undefined,
|
|
206
219
|
persistState: undefined,
|
|
220
|
+
clearState: undefined,
|
|
207
221
|
},
|
|
208
222
|
teamSharingOptions: {
|
|
209
223
|
enableTeamSharing: false,
|
|
@@ -223,13 +237,6 @@ exports.DefaultAdaptableOptions = {
|
|
|
223
237
|
showOutsideDays: true,
|
|
224
238
|
datepickerButtons: ['close', 'today'],
|
|
225
239
|
},
|
|
226
|
-
actionOptions: {
|
|
227
|
-
actionColumns: undefined,
|
|
228
|
-
actionRowButtons: undefined,
|
|
229
|
-
actionRowButtonsPosition: 'pinnedLeft',
|
|
230
|
-
autoHandleActionRowButtons: false,
|
|
231
|
-
setPrimaryKeyValue: undefined,
|
|
232
|
-
},
|
|
233
240
|
colorPalette: UIHelper_1.default.getDefaultColors(),
|
|
234
241
|
editableCellStyle: undefined,
|
|
235
242
|
readOnlyCellStyle: undefined,
|
|
@@ -249,6 +256,7 @@ exports.DefaultAdaptableOptions = {
|
|
|
249
256
|
dataChangeHistoryOptions: {
|
|
250
257
|
activeByDefault: false,
|
|
251
258
|
showDataChange: undefined,
|
|
259
|
+
changeHistoryButton: undefined,
|
|
252
260
|
},
|
|
253
261
|
settingsPanelOptions: {
|
|
254
262
|
popupType: 'window',
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.normalizeDateParams = void 0;
|
|
4
|
-
|
|
4
|
+
const normalizeDateParams = (args) => {
|
|
5
5
|
let [first, second] = args;
|
|
6
6
|
if (typeof first === 'string') {
|
|
7
7
|
first = new Date(first);
|
|
@@ -11,3 +11,4 @@ exports.normalizeDateParams = (args) => {
|
|
|
11
11
|
}
|
|
12
12
|
return [first, second];
|
|
13
13
|
};
|
|
14
|
+
exports.normalizeDateParams = normalizeDateParams;
|