@adaptabletools/adaptable-cjs 18.0.0-canary.2 → 18.0.0-canary.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/agGrid.d.ts +4 -21
- package/agGrid.js +5 -21
- package/base.css +22 -8
- package/base.css.map +1 -1
- package/index.css +101 -75
- package/index.css.map +1 -1
- package/package.json +4 -5
- package/src/AdaptableInterfaces/IAdaptable.d.ts +59 -108
- package/src/AdaptableOptions/AdaptableOptions.d.ts +7 -7
- package/src/AdaptableOptions/ColumnFilterOptions.d.ts +11 -4
- package/src/AdaptableOptions/ColumnOptions.d.ts +9 -4
- package/src/AdaptableOptions/CommentOptions.d.ts +33 -0
- package/src/AdaptableOptions/GroupingOptions.d.ts +0 -7
- package/src/AdaptableOptions/MenuOptions.d.ts +6 -54
- package/src/AdaptableOptions/MenuOptions.js +72 -75
- package/src/AdaptableOptions/{NotesOptions.d.ts → NoteOptions.d.ts} +7 -4
- package/src/AdaptableOptions/StateOptions.d.ts +6 -0
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +17 -0
- package/src/Api/AdaptableApi.d.ts +9 -4
- package/src/Api/BulkUpdateApi.d.ts +0 -5
- package/src/Api/ColumnApi.d.ts +4 -0
- package/src/Api/CommentApi.d.ts +13 -14
- package/src/Api/ConfigApi.d.ts +4 -5
- package/src/Api/EventApi.d.ts +7 -9
- package/src/Api/Events/AdaptableReady.d.ts +3 -3
- package/src/Api/Events/CommentChanged.d.ts +11 -0
- package/src/Api/Events/GridDataChanged.d.ts +4 -4
- package/src/Api/GridApi.d.ts +23 -13
- package/src/Api/Implementation/ActionColumnApiImpl.d.ts +2 -0
- package/src/Api/Implementation/ActionColumnApiImpl.js +30 -0
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +3 -2
- package/src/Api/Implementation/AdaptableApiImpl.js +5 -2
- package/src/Api/Implementation/ApiBase.d.ts +5 -3
- package/src/Api/Implementation/ApiBase.js +8 -2
- package/src/Api/Implementation/BulkUpdateApiImpl.d.ts +0 -1
- package/src/Api/Implementation/BulkUpdateApiImpl.js +0 -4
- package/src/Api/Implementation/CellSummaryApiImpl.d.ts +0 -5
- package/src/Api/Implementation/CellSummaryApiImpl.js +2 -23
- package/src/Api/Implementation/ColumnApiImpl.d.ts +1 -0
- package/src/Api/Implementation/ColumnApiImpl.js +10 -0
- package/src/Api/Implementation/CommentsApiImpl.d.ts +5 -2
- package/src/Api/Implementation/CommentsApiImpl.js +7 -1
- package/src/Api/Implementation/ConfigApiImpl.d.ts +2 -2
- package/src/Api/Implementation/ConfigApiImpl.js +24 -13
- package/src/Api/Implementation/GridApiImpl.d.ts +6 -3
- package/src/Api/Implementation/GridApiImpl.js +51 -14
- package/src/Api/Implementation/LayoutApiImpl.d.ts +3 -0
- package/src/Api/Implementation/LayoutApiImpl.js +18 -0
- package/src/Api/Implementation/NoteApiImpl.d.ts +18 -0
- package/src/Api/Implementation/NoteApiImpl.js +45 -0
- package/src/Api/Implementation/OptionsApiImpl.d.ts +4 -4
- package/src/Api/Implementation/OptionsApiImpl.js +4 -4
- package/src/Api/Implementation/ScopeApiImpl.d.ts +2 -0
- package/src/Api/Implementation/ScopeApiImpl.js +20 -7
- package/src/Api/Implementation/StatusBarApiImpl.d.ts +0 -1
- package/src/Api/Implementation/StatusBarApiImpl.js +0 -3
- package/src/Api/Implementation/ToolPanelApiImpl.js +6 -6
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +0 -3
- package/src/Api/Implementation/UserInterfaceApiImpl.js +0 -8
- package/src/Api/Internal/ActionRowInternalApi.d.ts +6 -1
- package/src/Api/Internal/ActionRowInternalApi.js +119 -1
- package/src/Api/Internal/AdaptableInternalApi.d.ts +6 -7
- package/src/Api/Internal/AdaptableInternalApi.js +21 -19
- package/src/Api/Internal/CalculatedColumnInternalApi.d.ts +2 -0
- package/src/Api/Internal/CalculatedColumnInternalApi.js +72 -0
- package/src/Api/Internal/ColumnFilterInternalApi.d.ts +2 -0
- package/src/Api/Internal/ColumnFilterInternalApi.js +23 -1
- package/src/Api/Internal/ColumnInternalApi.d.ts +4 -1
- package/src/Api/Internal/ColumnInternalApi.js +12 -0
- package/src/Api/Internal/CommentsInternalApi.d.ts +4 -0
- package/src/Api/Internal/CommentsInternalApi.js +18 -0
- package/src/Api/Internal/CustomSortInternalApi.d.ts +3 -2
- package/src/Api/Internal/CustomSortInternalApi.js +32 -1
- package/src/Api/Internal/DataSetInternalApi.js +1 -1
- package/src/Api/Internal/ExportInternalApi.d.ts +2 -1
- package/src/Api/Internal/ExportInternalApi.js +4 -1
- package/src/Api/Internal/Fdc3InternalApi.js +2 -2
- package/src/Api/Internal/FormatColumnInternalApi.js +3 -2
- package/src/Api/Internal/FreeTextColumnInternalApi.d.ts +2 -0
- package/src/Api/Internal/FreeTextColumnInternalApi.js +61 -0
- package/src/Api/Internal/GridFilterInternalApi.d.ts +5 -0
- package/src/Api/Internal/GridFilterInternalApi.js +7 -1
- package/src/Api/Internal/GridInternalApi.d.ts +23 -3
- package/src/Api/Internal/GridInternalApi.js +141 -7
- package/src/Api/Internal/LayoutInternalApi.d.ts +1 -0
- package/src/Api/Internal/LayoutInternalApi.js +16 -0
- package/src/Api/Internal/NoteInternalApi.d.ts +4 -0
- package/src/Api/Internal/NoteInternalApi.js +18 -0
- package/src/Api/Internal/TeamSharingInternalApi.js +1 -1
- package/src/Api/InteropioPluginApi.d.ts +2 -2
- package/src/Api/LayoutApi.d.ts +15 -0
- package/src/Api/NoteApi.d.ts +48 -0
- package/src/Api/OptionsApi.d.ts +8 -8
- package/src/Api/ScopeApi.d.ts +10 -0
- package/src/Api/UserInterfaceApi.d.ts +0 -11
- package/src/EnvVars.d.ts +3 -0
- package/src/EnvVars.js +8 -0
- package/src/PredefinedConfig/AdaptableState.d.ts +2 -2
- package/src/PredefinedConfig/CommentState.d.ts +27 -23
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +4 -0
- package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptableScope.d.ts +4 -1
- package/src/PredefinedConfig/Common/AggregationColumns.d.ts +1 -0
- package/src/PredefinedConfig/Common/AggregationColumns.js +5 -1
- package/src/PredefinedConfig/Common/DataUpdateConfig.d.ts +4 -0
- package/src/PredefinedConfig/Common/Enums.d.ts +2 -1
- package/src/PredefinedConfig/Common/Enums.js +1 -0
- package/src/PredefinedConfig/Common/Menu.d.ts +15 -1
- package/src/PredefinedConfig/Common/Menu.js +98 -0
- package/src/PredefinedConfig/Common/RowSummary.d.ts +21 -0
- package/src/PredefinedConfig/Common/RowSummary.js +20 -0
- package/src/PredefinedConfig/Common/TransposeConfig.d.ts +30 -0
- package/src/PredefinedConfig/Common/Types.d.ts +4 -4
- package/src/PredefinedConfig/Common/Types.js +4 -1
- package/src/PredefinedConfig/LayoutState.d.ts +5 -0
- package/src/PredefinedConfig/{NotesState.d.ts → NoteState.d.ts} +12 -22
- package/src/PredefinedConfig/PredefinedConfig.d.ts +3 -3
- package/src/PredefinedConfig/Selection/GridCell.d.ts +13 -0
- package/src/PredefinedConfig/SystemState.d.ts +9 -3
- package/src/Redux/ActionsReducers/LayoutRedux.d.ts +9 -0
- package/src/Redux/ActionsReducers/LayoutRedux.js +34 -11
- package/src/Redux/ActionsReducers/NoteRedux.d.ts +38 -0
- package/src/Redux/ActionsReducers/NoteRedux.js +89 -0
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +6 -1
- package/src/Redux/ActionsReducers/SystemRedux.js +19 -6
- package/src/Redux/Store/AdaptableStore.d.ts +4 -6
- package/src/Redux/Store/AdaptableStore.js +66 -76
- package/src/Redux/Store/Interface/IAdaptableStore.d.ts +8 -2
- package/src/Strategy/AdaptableModuleBase.d.ts +8 -8
- package/src/Strategy/AdaptableModuleBase.js +13 -15
- package/src/Strategy/AlertModule.d.ts +1 -2
- package/src/Strategy/AlertModule.js +3 -56
- package/src/Strategy/BulkUpdateModule.js +1 -1
- package/src/Strategy/CalculatedColumnModule.d.ts +2 -3
- package/src/Strategy/CalculatedColumnModule.js +6 -26
- package/src/Strategy/CellSummaryModule.d.ts +8 -6
- package/src/Strategy/CellSummaryModule.js +78 -23
- package/src/Strategy/ChartingModule.d.ts +0 -1
- package/src/Strategy/ChartingModule.js +2 -22
- package/src/Strategy/ColumnFilterModule.d.ts +2 -3
- package/src/Strategy/ColumnFilterModule.js +44 -103
- package/src/Strategy/ColumnInfoModule.js +2 -0
- package/src/Strategy/{CommentsModule.d.ts → CommentModule.d.ts} +2 -5
- package/src/Strategy/{CommentsModule.js → CommentModule.js} +19 -25
- package/src/Strategy/CustomSortModule.js +3 -2
- package/src/Strategy/DashboardModule.d.ts +1 -2
- package/src/Strategy/DashboardModule.js +9 -15
- package/src/Strategy/DataChangeHistoryModule.d.ts +1 -0
- package/src/Strategy/DataChangeHistoryModule.js +3 -1
- package/src/Strategy/DataImportModule.d.ts +1 -1
- package/src/Strategy/DataImportModule.js +5 -5
- package/src/Strategy/DataSetModule.d.ts +1 -1
- package/src/Strategy/DataSetModule.js +1 -1
- package/src/Strategy/ExportModule.d.ts +1 -0
- package/src/Strategy/ExportModule.js +17 -2
- package/src/Strategy/Fdc3Module.js +3 -0
- package/src/Strategy/FlashingCellModule.d.ts +1 -2
- package/src/Strategy/FlashingCellModule.js +6 -19
- package/src/Strategy/FormatColumnModule.d.ts +0 -2
- package/src/Strategy/FormatColumnModule.js +6 -51
- package/src/Strategy/FreeTextColumnModule.d.ts +0 -1
- package/src/Strategy/FreeTextColumnModule.js +1 -31
- package/src/Strategy/GridFilterModule.d.ts +0 -1
- package/src/Strategy/GridFilterModule.js +0 -37
- package/src/Strategy/GridInfoModule.js +2 -0
- package/src/Strategy/Interface/IModule.d.ts +0 -1
- package/src/Strategy/LayoutModule.d.ts +9 -3
- package/src/Strategy/LayoutModule.js +148 -62
- package/src/Strategy/NamedQueryModule.d.ts +0 -1
- package/src/Strategy/NamedQueryModule.js +0 -19
- package/src/Strategy/{NotesModule.d.ts → NoteModule.d.ts} +2 -1
- package/src/Strategy/NoteModule.js +62 -0
- package/src/Strategy/PlusMinusModule.d.ts +1 -1
- package/src/Strategy/PlusMinusModule.js +2 -2
- package/src/Strategy/ScheduleModule.d.ts +1 -1
- package/src/Strategy/ScheduleModule.js +1 -1
- package/src/Strategy/SettingsPanelModule.js +3 -3
- package/src/Strategy/ShortcutModule.d.ts +1 -1
- package/src/Strategy/ShortcutModule.js +1 -1
- package/src/Strategy/SmartEditModule.js +1 -1
- package/src/Strategy/StyledColumnModule.d.ts +1 -1
- package/src/Strategy/StyledColumnModule.js +26 -26
- package/src/Strategy/SystemStatusModule.js +2 -2
- package/src/Strategy/TeamSharingModule.d.ts +1 -0
- package/src/Strategy/TeamSharingModule.js +5 -5
- package/src/Strategy/ToolPanelModule.d.ts +0 -1
- package/src/Strategy/ToolPanelModule.js +0 -23
- package/src/Strategy/Utilities/getScopeViewItems.js +3 -0
- package/src/Utilities/Constants/DocumentationLinkConstants.js +1 -1
- package/src/Utilities/Constants/GeneralConstants.d.ts +1 -0
- package/src/Utilities/Constants/GeneralConstants.js +3 -2
- package/src/Utilities/Constants/ModuleConstants.d.ts +6 -6
- package/src/Utilities/Constants/ModuleConstants.js +7 -7
- package/src/Utilities/Defaults/DefaultSettingsPanel.js +7 -6
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +3 -2
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +430 -1
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +3 -3
- package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.js +1 -1
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.d.ts +1 -1
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +15 -0
- package/src/Utilities/Extensions/ArrayExtensions.d.ts +2 -0
- package/src/Utilities/Extensions/ArrayExtensions.js +6 -1
- package/src/Utilities/Helpers/AdaptableHelper.d.ts +3 -4
- package/src/Utilities/Helpers/AdaptableHelper.js +20 -60
- package/src/Utilities/Helpers/Helper.d.ts +2 -0
- package/src/Utilities/Helpers/Helper.js +6 -1
- package/src/Utilities/MenuItem.d.ts +7 -4
- package/src/Utilities/MenuItem.js +6 -3
- package/src/Utilities/ObjectFactory.d.ts +3 -3
- package/src/Utilities/ObjectFactory.js +4 -24
- package/src/Utilities/Services/AggregatedScalarLiveValue.d.ts +4 -2
- package/src/Utilities/Services/AggregatedScalarLiveValue.js +26 -19
- package/src/Utilities/Services/CellPopupService.js +2 -3
- package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +1 -1
- package/src/Utilities/Services/Interface/IReportService.d.ts +1 -4
- package/src/Utilities/Services/LicenseService/index.d.ts +3 -0
- package/src/Utilities/Services/LicenseService/index.js +1 -186
- package/src/Utilities/Services/MetamodelService.d.ts +1 -1
- package/src/Utilities/Services/MetamodelService.js +6 -3
- package/src/Utilities/Services/ModuleService.js +4 -0
- package/src/Utilities/Services/QueryLanguageService.d.ts +1 -1
- package/src/Utilities/Services/QueryLanguageService.js +4 -3
- package/src/Utilities/Services/ReportService.d.ts +7 -5
- package/src/Utilities/Services/ReportService.js +238 -22
- package/src/Utilities/Services/RowEditService.d.ts +3 -2
- package/src/Utilities/Services/RowEditService.js +3 -1
- package/src/Utilities/adaptableQlUtils.d.ts +2 -0
- package/src/Utilities/adaptableQlUtils.js +18 -0
- package/src/Utilities/license/decode.js +1 -70
- package/src/Utilities/license/hashing.js +1 -47
- package/src/View/AdaptableView.js +1 -3
- package/src/View/AdaptableViewFactory.js +2 -2
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +2 -2
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsStatusbarForm.js +1 -1
- package/src/View/BulkUpdate/BulkUpdatePopup.js +1 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +3 -3
- package/src/View/CalculatedColumn/utils.d.ts +1 -1
- package/src/View/CellSummary/CellSummaryPopup.js +1 -1
- package/src/View/Comments/CommentsEditor.js +24 -11
- package/src/View/Comments/CommentsPopup.js +20 -11
- package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
- package/src/View/Components/AdaptableInput/AdaptableDateInlineInput.d.ts +5 -0
- package/src/View/Components/AdaptableInput/AdaptableDateInlineInput.js +46 -0
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +5 -2
- package/src/View/Components/CellPopup/index.d.ts +1 -0
- package/src/View/Components/CellPopup/index.js +5 -2
- package/src/View/Components/FilterForm/FilterForm.js +20 -12
- package/src/View/Components/FilterForm/QuickFilterForm.js +15 -8
- package/src/View/Components/FilterForm/QuickFilterValues.js +39 -23
- package/src/View/Components/NewScopeComponent.js +34 -1
- package/src/View/Components/Popups/AdaptableLoadingScreen.d.ts +6 -5
- package/src/View/Components/Popups/AdaptableLoadingScreen.js +19 -9
- package/src/View/Components/Popups/AdaptableToaster.js +1 -1
- package/src/View/Components/Popups/GridCellPopup/GridCellPopup.js +7 -7
- package/src/View/Components/Popups/WindowPopups/windowFactory.d.ts +1 -0
- package/src/View/Components/Popups/WindowPopups/windowFactory.js +4 -1
- package/src/View/Components/Selectors/PermittedValuesSelector.js +2 -2
- package/src/View/Components/ValueSelector/index.d.ts +1 -0
- package/src/View/Components/ValueSelector/index.js +2 -2
- package/src/View/CustomSort/CustomSortSummary.js +1 -1
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +8 -9
- package/src/View/FreeTextColumn/FreeTextColumnSummary.js +1 -1
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +3 -1
- package/src/View/GridFilter/GridFilterViewPanel.js +9 -5
- package/src/View/GridFilter/useGridFilterExpressionEditor.js +1 -1
- package/src/View/GridInfo/GridInfoPopup/GridInfoPopup.js +2 -3
- package/src/View/Layout/LayoutViewPanel.js +2 -1
- package/src/View/Layout/TransposedPopup.d.ts +3 -0
- package/src/View/Layout/TransposedPopup.js +200 -0
- package/src/View/Layout/Wizard/LayoutWizard.js +36 -3
- package/src/View/Layout/Wizard/sections/ColumnsSection.js +1 -1
- package/src/View/Layout/Wizard/sections/RowSummarySection.d.ts +9 -0
- package/src/View/Layout/Wizard/sections/RowSummarySection.js +181 -0
- package/src/View/License/LicenseWatermark.js +1 -66
- package/src/View/Note/NotePopup.d.ts +2 -0
- package/src/View/{Notes/NotesPopup.js → Note/NotePopup.js} +19 -19
- package/src/View/SpecialColumnSettingsWizardStep.js +4 -4
- package/src/View/Theme/ThemeSelector.js +2 -2
- package/src/agGrid/ActionColumnRenderer.js +7 -6
- package/src/agGrid/Adaptable.d.ts +3 -455
- package/src/agGrid/Adaptable.js +7 -5291
- package/src/agGrid/AdaptableAgGrid.d.ts +354 -0
- package/src/agGrid/AdaptableAgGrid.js +3972 -0
- package/src/agGrid/AdaptableLogger.js +78 -13
- package/src/agGrid/AgGridAdapter.d.ts +64 -0
- package/src/agGrid/AgGridAdapter.js +590 -0
- package/src/agGrid/AgGridColumnAdapter.d.ts +56 -0
- package/src/agGrid/AgGridColumnAdapter.js +836 -0
- package/src/agGrid/AgGridMenuAdapter.d.ts +28 -0
- package/src/agGrid/AgGridMenuAdapter.js +282 -0
- package/src/agGrid/AgGridOptionsService.d.ts +15 -0
- package/src/agGrid/AgGridOptionsService.js +80 -0
- package/src/agGrid/BadgeRenderer.js +1 -1
- package/src/agGrid/CheckboxRenderer.js +1 -1
- package/src/agGrid/FilterWrapper.d.ts +2 -2
- package/src/agGrid/FilterWrapper.js +1 -1
- package/src/agGrid/attachAddaptableColumnTypes.d.ts +12 -12
- package/src/agGrid/defaultAdaptableOptions.d.ts +3 -0
- package/src/{Utilities/Defaults/DefaultAdaptableOptions.js → agGrid/defaultAdaptableOptions.js} +74 -18
- package/src/agGrid/editors/AdaptableDateEditor/index.d.ts +1 -1
- package/src/agGrid/editors/AdaptableDateEditor/index.js +3 -3
- package/src/agGrid/editors/AdaptableNumberEditor/index.d.ts +2 -2
- package/src/agGrid/editors/AdaptableNumberEditor/index.js +2 -2
- package/src/agGrid/weightedAverage.d.ts +0 -2
- package/src/agGrid/weightedAverage.js +1 -56
- package/src/components/ColorPicker/ColorPicker.d.ts +1 -1
- package/src/components/Datepicker/index.d.ts +1 -1
- package/src/components/Datepicker/index.js +10 -2
- package/src/components/ExpressionEditor/QueryBuilder/QueryPredicateBuilder.js +2 -1
- package/src/components/ExpressionEditor/QueryBuilder/utils.d.ts +0 -1
- package/src/components/ExpressionEditor/QueryBuilder/utils.js +3 -17
- package/src/components/InfiniteTable/index.js +2 -2
- package/src/components/Input/index.d.ts +1 -2
- package/src/components/List/ListGroupItem/index.d.ts +1 -1
- package/src/components/Modal/index.d.ts +1 -0
- package/src/components/Modal/index.js +6 -4
- package/src/components/Select/Select.d.ts +3 -1
- package/src/components/Select/Select.js +4 -2
- package/src/components/Textarea/index.d.ts +2 -2
- package/src/components/icons/index.js +2 -0
- package/src/components/icons/note.js +2 -2
- package/src/components/icons/rows.d.ts +3 -0
- package/src/components/icons/rows.js +7 -0
- package/src/env.js +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +179 -25
- package/src/metamodel/adaptable.metamodel.js +1 -9316
- package/src/migration/AdaptableUpgradeHelper.d.ts +38 -0
- package/src/migration/AdaptableUpgradeHelper.js +52 -0
- package/src/migration/VersionUpgrade.d.ts +8 -0
- package/src/migration/VersionUpgrade.js +15 -0
- package/src/migration/VersionUpgrade17.d.ts +18 -0
- package/src/migration/VersionUpgrade17.js +347 -0
- package/src/migration/VersionUpgrade18.d.ts +5 -0
- package/src/migration/VersionUpgrade18.js +10 -0
- package/src/parser/src/parser.js +117 -1257
- package/src/parser/src/predicate/mapExpressionToQlPredicate.js +1 -1
- package/src/parser/src/predicate/mapQlPredicateToExpression.js +2 -1
- package/src/parser/src/types.d.ts +7 -2
- package/src/types.d.ts +26 -19
- package/tsconfig.cjs.tsbuildinfo +1 -1
- package/src/AdaptableOptions/CommentsOptions.d.ts +0 -28
- package/src/Api/Events/CommentsChangedInfo.d.ts +0 -5
- package/src/Api/Implementation/NotesApiImpl.d.ts +0 -16
- package/src/Api/Implementation/NotesApiImpl.js +0 -44
- package/src/Api/NotesApi.d.ts +0 -48
- package/src/PredefinedConfig/CellAddress.d.ts +0 -13
- package/src/PredefinedConfig/CellAddress.js +0 -5
- package/src/Redux/ActionsReducers/NotesRedux.d.ts +0 -39
- package/src/Redux/ActionsReducers/NotesRedux.js +0 -87
- package/src/Strategy/NotesModule.js +0 -62
- package/src/Utilities/Defaults/DefaultAdaptableOptions.d.ts +0 -2
- package/src/Utilities/Services/Interface/IRowEditService.d.ts +0 -3
- package/src/View/Components/ScopeComponent.d.ts +0 -24
- package/src/View/Components/ScopeComponent.js +0 -138
- package/src/View/Export/Wizard/ReportScopeWizard.d.ts +0 -17
- package/src/View/Export/Wizard/ReportScopeWizard.js +0 -52
- package/src/View/Notes/NotesPopup.d.ts +0 -2
- package/src/agGrid/agGridHelper.d.ts +0 -57
- package/src/agGrid/agGridHelper.js +0 -691
- package/src/agGrid/agGridMenuHelper.d.ts +0 -46
- package/src/agGrid/agGridMenuHelper.js +0 -673
- /package/src/AdaptableOptions/{CommentsOptions.js → CommentOptions.js} +0 -0
- /package/src/AdaptableOptions/{NotesOptions.js → NoteOptions.js} +0 -0
- /package/src/Api/Events/{CommentsChangedInfo.js → CommentChanged.js} +0 -0
- /package/src/Api/{NotesApi.js → NoteApi.js} +0 -0
- /package/src/PredefinedConfig/{NotesState.js → Common/TransposeConfig.js} +0 -0
- /package/src/{Utilities/Services/Interface/IRowEditService.js → PredefinedConfig/NoteState.js} +0 -0
- /package/src/View/{Notes → Note}/NoteEditor.d.ts +0 -0
- /package/src/View/{Notes → Note}/NoteEditor.js +0 -0
package/src/Api/EventApi.d.ts
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
import { ActionRowSubmittedInfo, AdaptableReadyInfo, AdaptableStateChangedInfo, AdaptableStateReloadedInfo, AlertFiredInfo, CellChangedInfo, CellSelectionChangedInfo, ChartChangedInfo, ColumnFilterAppliedInfo, CustomToolbarConfiguredInfo, DashboardChangedInfo, DataImportedInfo, DataSetSelectedInfo, Fdc3MessageInfo, FlashingCellDisplayedInfo, GridDataChangedInfo, GridFilterAppliedInfo, GridSortedInfo, LayoutChangedInfo, LiveDataChangedInfo, RowSelectionChangedInfo, ScheduleTriggeredInfo, SystemStatusMessageDisplayedInfo, TeamSharingEntityChangedInfo, ThemeChangedInfo, ThemeEditedInfo } from '../types';
|
|
2
|
-
import { CalculatedColumnChangedInfo } from './Events/CalculatedColumnChanged';
|
|
3
|
-
import { CommentsChangedInfo } from './Events/CommentsChangedInfo';
|
|
1
|
+
import { ActionRowSubmittedInfo, AdaptableReadyInfo, AdaptableStateChangedInfo, AdaptableStateReloadedInfo, AlertFiredInfo, CalculatedColumnChangedInfo, CellChangedInfo, CellSelectionChangedInfo, ChartChangedInfo, ColumnFilterAppliedInfo, CommentChangedInfo, CustomToolbarConfiguredInfo, DashboardChangedInfo, DataImportedInfo, DataSetSelectedInfo, Fdc3MessageInfo, FlashingCellDisplayedInfo, GridDataChangedInfo, GridFilterAppliedInfo, GridSortedInfo, LayoutChangedInfo, LiveDataChangedInfo, RowSelectionChangedInfo, ScheduleTriggeredInfo, SystemStatusMessageDisplayedInfo, TeamSharingEntityChangedInfo, ThemeChangedInfo, ThemeEditedInfo } from '../types';
|
|
4
2
|
/**
|
|
5
3
|
* Responsible for publishing the many Events that AdapTable fires
|
|
6
4
|
*/
|
|
@@ -297,17 +295,17 @@ export interface EventApi {
|
|
|
297
295
|
*/
|
|
298
296
|
off(eventName: 'ChartChanged', callback: (chartChangedInfo: ChartChangedInfo) => void): void;
|
|
299
297
|
/**
|
|
300
|
-
* Event fired when
|
|
301
|
-
* @param eventName
|
|
298
|
+
* Event fired when a Comment is Changed
|
|
299
|
+
* @param eventName CommentChanged
|
|
302
300
|
* @param callback
|
|
303
301
|
*/
|
|
304
|
-
on(eventName: '
|
|
302
|
+
on(eventName: 'CommentChanged', callback: (commentChangedInfo: CommentChangedInfo) => void): () => void;
|
|
305
303
|
/**
|
|
306
|
-
* Unsubscribe from
|
|
304
|
+
* Unsubscribe from CommentChanged
|
|
307
305
|
* @param eventName
|
|
308
306
|
* @param callback
|
|
309
307
|
*/
|
|
310
|
-
off(eventName: '
|
|
308
|
+
off(eventName: 'CommentChanged', callback: (commentChangedInfo: CommentChangedInfo) => void): void;
|
|
311
309
|
/**
|
|
312
310
|
* Fired when Adaptable is up and running - has no arguments.
|
|
313
311
|
* @param eventName - AdaptableReady
|
|
@@ -352,6 +350,6 @@ export interface EventApi {
|
|
|
352
350
|
emitSync(eventName: 'DashboardChanged', data?: any): any[];
|
|
353
351
|
emitSync(eventName: 'FlashingCellDisplayed', data?: any): any[];
|
|
354
352
|
emitSync(eventName: 'AdaptableDestroy'): any[];
|
|
355
|
-
emit(eventName: 'ActionRowSubmitted' | 'AdaptableReady' | 'AlertFired' | 'AdaptableStateChanged' | 'AdaptableStateReloaded' | 'CellChanged' | 'ChartChanged' | 'CheckboxColumnClicked' | 'CustomToolbarConfigured' | 'DashboardChanged' | 'DataImported' | 'DataSetSelected' | 'ColumnFilterApplied' | 'Fdc3Message' | 'GridDataChanged' | 'GridSorted' | 'LayoutChanged' | 'CalculatedColumnChanged' | 'LiveDataChanged' | 'ScheduleTriggered' | 'SearchChanged' | 'CellSelectionChanged' | 'RowSelectionChanged' | 'SystemStatusMessageDisplayed' | 'TeamSharingEntityChanged' | 'ThemeChanged' | 'ThemeEdited' | 'GridFilterApplied' | '
|
|
353
|
+
emit(eventName: 'ActionRowSubmitted' | 'AdaptableReady' | 'AlertFired' | 'AdaptableStateChanged' | 'AdaptableStateReloaded' | 'CellChanged' | 'ChartChanged' | 'CheckboxColumnClicked' | 'CustomToolbarConfigured' | 'DashboardChanged' | 'DataImported' | 'DataSetSelected' | 'ColumnFilterApplied' | 'Fdc3Message' | 'GridDataChanged' | 'GridSorted' | 'LayoutChanged' | 'CalculatedColumnChanged' | 'LiveDataChanged' | 'ScheduleTriggered' | 'SearchChanged' | 'CellSelectionChanged' | 'RowSelectionChanged' | 'SystemStatusMessageDisplayed' | 'TeamSharingEntityChanged' | 'ThemeChanged' | 'ThemeEdited' | 'GridFilterApplied' | 'CommentChanged', data?: any): Promise<any>;
|
|
356
354
|
destroy(): void;
|
|
357
355
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { GridApi } from '@ag-grid-community/core';
|
|
2
2
|
import { BaseEventInfo } from './BaseEventInfo';
|
|
3
3
|
/**
|
|
4
4
|
* Object returned by `AdaptableReady` event - fired when AdapTable has loaded
|
|
5
5
|
*/
|
|
6
6
|
export interface AdaptableReadyInfo<TData = any> extends BaseEventInfo {
|
|
7
7
|
/**
|
|
8
|
-
* Underlying AG Grid
|
|
8
|
+
* Underlying AG Grid API
|
|
9
9
|
*/
|
|
10
|
-
|
|
10
|
+
agGridApi: GridApi<TData>;
|
|
11
11
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { CommentThread } from '../../types';
|
|
2
|
+
import { BaseEventInfo } from './BaseEventInfo';
|
|
3
|
+
/**
|
|
4
|
+
* Event fired when a Comment has changed
|
|
5
|
+
*/
|
|
6
|
+
export interface CommentChangedInfo extends BaseEventInfo {
|
|
7
|
+
/**
|
|
8
|
+
* All current Comment Threads
|
|
9
|
+
*/
|
|
10
|
+
commentThreads: CommentThread[];
|
|
11
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { IRowNode } from '@ag-grid-community/core';
|
|
2
2
|
import { BaseEventInfo } from './BaseEventInfo';
|
|
3
|
+
export type GridDataChangeTrigger = 'Add' | 'Edit' | 'Delete' | 'Load';
|
|
3
4
|
/**
|
|
4
5
|
* EventInfo returned by GridDataChanged event
|
|
5
|
-
*/
|
|
6
|
-
export interface GridDataChangedInfo<TData = any> extends BaseEventInfo {
|
|
6
|
+
*/ export interface GridDataChangedInfo<TData = any> extends BaseEventInfo {
|
|
7
7
|
/**
|
|
8
8
|
* Timestamp of change occurrence (in milliseconds)
|
|
9
9
|
*/
|
|
@@ -13,9 +13,9 @@ export interface GridDataChangedInfo<TData = any> extends BaseEventInfo {
|
|
|
13
13
|
*/
|
|
14
14
|
dataRows: TData[];
|
|
15
15
|
/**
|
|
16
|
-
* Trigger for row change:
|
|
16
|
+
* Trigger for row change: Load, Add, Edit, or Delete
|
|
17
17
|
*/
|
|
18
|
-
rowTrigger:
|
|
18
|
+
rowTrigger: GridDataChangeTrigger;
|
|
19
19
|
/**
|
|
20
20
|
* Row Nodes that were affected by this change
|
|
21
21
|
*/
|
package/src/Api/GridApi.d.ts
CHANGED
|
@@ -7,9 +7,10 @@ import { DataUpdateConfig } from '../PredefinedConfig/Common/DataUpdateConfig';
|
|
|
7
7
|
import { CellDataChangedInfo } from '../PredefinedConfig/Common/CellDataChangedInfo';
|
|
8
8
|
import { CellHighlightInfo } from '../PredefinedConfig/Common/CellHighlightInfo';
|
|
9
9
|
import { RowHighlightInfo } from '../PredefinedConfig/Common/RowHighlightInfo';
|
|
10
|
-
import {
|
|
10
|
+
import { IRowNode, RowModelType } from '@ag-grid-community/core';
|
|
11
11
|
import { GridCellRange } from '../PredefinedConfig/Selection/GridCellRange';
|
|
12
12
|
import { RowsHighlightInfo } from '../PredefinedConfig/Common/RowsHighlightInfo';
|
|
13
|
+
import { TransposeConfig } from '../PredefinedConfig/Common/TransposeConfig';
|
|
13
14
|
/**
|
|
14
15
|
* Provides access to important properites of AdapTable e.g. sorting, selected cells etc.
|
|
15
16
|
*/
|
|
@@ -27,15 +28,22 @@ export interface GridApi {
|
|
|
27
28
|
*/
|
|
28
29
|
getFilteredData(): any[];
|
|
29
30
|
/**
|
|
30
|
-
*
|
|
31
|
-
|
|
31
|
+
* Retrieves visible data from the grid (filtered and sorted)
|
|
32
|
+
*/
|
|
33
|
+
getVisibleData(): any[];
|
|
34
|
+
/**
|
|
35
|
+
* @deprecated use `loadGridData()` instead
|
|
32
36
|
*/
|
|
33
37
|
resetGridData(data: any[]): void;
|
|
34
38
|
/**
|
|
35
|
-
*
|
|
36
|
-
* @param dataany data suitable as AG Grid data source
|
|
39
|
+
* @deprecated use `loadGridData()` instead
|
|
37
40
|
*/
|
|
38
41
|
setInitialGridData(data: any): void;
|
|
42
|
+
/**
|
|
43
|
+
* Loads data into grid and fire a `GridDataChanged.trigger='Load'` event
|
|
44
|
+
* @param data data to load
|
|
45
|
+
*/
|
|
46
|
+
loadGridData(data: any): void;
|
|
39
47
|
/**
|
|
40
48
|
* Updates AdapTable (and AG Grid) with rows that have changed
|
|
41
49
|
* @param dataRows rows which have been updated - send whole row and AdapTable take cares of the rest
|
|
@@ -86,10 +94,6 @@ export interface GridApi {
|
|
|
86
94
|
* Returns all current Selected Rows in AdapTable
|
|
87
95
|
*/
|
|
88
96
|
getSelectedRowInfo(): SelectedRowInfo;
|
|
89
|
-
/**
|
|
90
|
-
* Returns Ag Grid instance (passed into Adaptable Options at start-up)
|
|
91
|
-
*/
|
|
92
|
-
getAgGridInstance(): GridOptions;
|
|
93
97
|
/**
|
|
94
98
|
* Returns Column Sort information in AdapTable
|
|
95
99
|
*/
|
|
@@ -469,10 +473,6 @@ export interface GridApi {
|
|
|
469
473
|
* Returns number of rows in Data Source
|
|
470
474
|
*/
|
|
471
475
|
getRowCount(): number;
|
|
472
|
-
/**
|
|
473
|
-
* Returns number of visible rows in Data Source
|
|
474
|
-
*/
|
|
475
|
-
getVisibleRowCount(): number;
|
|
476
476
|
/**
|
|
477
477
|
* Returns number of columns in Data Source
|
|
478
478
|
*/
|
|
@@ -515,4 +515,14 @@ export interface GridApi {
|
|
|
515
515
|
* Returns AG Grid Row Model Type
|
|
516
516
|
*/
|
|
517
517
|
getAgGridRowModelType(): RowModelType;
|
|
518
|
+
/**
|
|
519
|
+
* Returns number of visible rows in Data Source
|
|
520
|
+
*
|
|
521
|
+
* @deprecated use `getRowCount()` instead
|
|
522
|
+
*/
|
|
523
|
+
getVisibleRowCount(): number;
|
|
524
|
+
/**
|
|
525
|
+
* Opens a window with a transposed view of Grid
|
|
526
|
+
*/
|
|
527
|
+
showTransposedView(transposeConfig?: TransposeConfig): void;
|
|
518
528
|
}
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { ActionColumn, ActionColumnApi } from '../../../types';
|
|
2
2
|
import { ApiBase } from './ApiBase';
|
|
3
3
|
import { IAdaptable } from '../../AdaptableInterfaces/IAdaptable';
|
|
4
|
+
import { ColDef } from '@ag-grid-community/core';
|
|
4
5
|
export declare class ActionColumnApiImpl extends ApiBase implements ActionColumnApi {
|
|
5
6
|
constructor(adaptable: IAdaptable);
|
|
6
7
|
getActionColumns(): ActionColumn[];
|
|
8
|
+
getColDefsForActionColumns(): ColDef[];
|
|
7
9
|
}
|
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ActionColumnApiImpl = void 0;
|
|
4
4
|
const ApiBase_1 = require("./ApiBase");
|
|
5
|
+
const ActionColumnRenderer_1 = require("../../agGrid/ActionColumnRenderer");
|
|
6
|
+
const GeneralConstants_1 = require("../../Utilities/Constants/GeneralConstants");
|
|
5
7
|
class ActionColumnApiImpl extends ApiBase_1.ApiBase {
|
|
6
8
|
constructor(adaptable) {
|
|
7
9
|
super(adaptable);
|
|
@@ -10,5 +12,33 @@ class ActionColumnApiImpl extends ApiBase_1.ApiBase {
|
|
|
10
12
|
var _a;
|
|
11
13
|
return (_a = this.getActionColumnOptions().actionColumns) !== null && _a !== void 0 ? _a : [];
|
|
12
14
|
}
|
|
15
|
+
getColDefsForActionColumns() {
|
|
16
|
+
const defaultSpecialColumnSettings = this.getGridApi().internalApi.deriveSpecialColumnSettingsFromAgGridDefaultColDef();
|
|
17
|
+
const defaultActionColumnSettings = Object.assign(Object.assign({}, defaultSpecialColumnSettings), { resizable: true, suppressMenu: false, suppressMovable: false });
|
|
18
|
+
return this.getActionColumnApi()
|
|
19
|
+
.getActionColumns()
|
|
20
|
+
.map((actionColumn) => {
|
|
21
|
+
const actionColumnSettings = Object.assign(Object.assign({}, defaultActionColumnSettings), actionColumn.actionColumnSettings);
|
|
22
|
+
const newColDef = {
|
|
23
|
+
headerName: actionColumn.friendlyName ? actionColumn.friendlyName : actionColumn.columnId,
|
|
24
|
+
colId: actionColumn.columnId,
|
|
25
|
+
hide: false,
|
|
26
|
+
editable: false,
|
|
27
|
+
width: actionColumnSettings.width,
|
|
28
|
+
resizable: actionColumnSettings.resizable,
|
|
29
|
+
suppressHeaderMenuButton: actionColumnSettings.suppressMenu,
|
|
30
|
+
suppressMovable: actionColumnSettings.suppressMovable,
|
|
31
|
+
filter: false,
|
|
32
|
+
sortable: false,
|
|
33
|
+
enableRowGroup: false,
|
|
34
|
+
cellRenderer: this.getAdaptableApi().internalApi.getAdaptableInstance().variant === 'react'
|
|
35
|
+
? ActionColumnRenderer_1.ReactActionColumnRenderer
|
|
36
|
+
: ActionColumnRenderer_1.ActionColumnRenderer,
|
|
37
|
+
type: [GeneralConstants_1.AB_SPECIAL_COLUMN, 'abColDefObject'],
|
|
38
|
+
};
|
|
39
|
+
this.getAdaptableApi().logInfo('Setting up Action Column: ' + actionColumn.columnId);
|
|
40
|
+
return newColDef;
|
|
41
|
+
});
|
|
42
|
+
}
|
|
13
43
|
}
|
|
14
44
|
exports.ActionColumnApiImpl = ActionColumnApiImpl;
|
|
@@ -40,7 +40,7 @@ import { StatusBarApi } from '../StatusBarApi';
|
|
|
40
40
|
import { StyledColumnApi } from '../StyledColumnApi';
|
|
41
41
|
import { ActionColumnApi } from '../ActionColumnApi';
|
|
42
42
|
import { ActionRowApi } from '../ActionRowApi';
|
|
43
|
-
import {
|
|
43
|
+
import { NoteApi } from '../NoteApi';
|
|
44
44
|
import { Fdc3Api } from '../Fdc3Api';
|
|
45
45
|
import { GridFilterApi } from '../GridFilterApi';
|
|
46
46
|
import { ColumnFilterApi } from '../ColumnFilterApi';
|
|
@@ -90,7 +90,7 @@ export declare class AdaptableApiImpl implements AdaptableApi {
|
|
|
90
90
|
dataChangeHistoryApi: DataChangeHistoryApi;
|
|
91
91
|
chartingApi: ChartingApi;
|
|
92
92
|
statusBarApi: StatusBarApi;
|
|
93
|
-
|
|
93
|
+
noteApi: NoteApi;
|
|
94
94
|
fdc3Api: Fdc3Api;
|
|
95
95
|
dataImportApi: DataImportApi;
|
|
96
96
|
gridFilterApi: GridFilterApi;
|
|
@@ -98,6 +98,7 @@ export declare class AdaptableApiImpl implements AdaptableApi {
|
|
|
98
98
|
commentApi: CommentApi;
|
|
99
99
|
private destroyed;
|
|
100
100
|
constructor(adaptable: IAdaptable);
|
|
101
|
+
get agGridApi(): import("@ag-grid-community/core/dist/esm/es6/gridApi").GridApi<any>;
|
|
101
102
|
/**
|
|
102
103
|
* This is only meant to be called by the Adaptable instance.
|
|
103
104
|
*/
|
|
@@ -43,7 +43,7 @@ const StyledColumnApiImpl_1 = require("./StyledColumnApiImpl");
|
|
|
43
43
|
const CalendarApiImpl_1 = require("./CalendarApiImpl");
|
|
44
44
|
const EntitlementApiImpl_1 = require("./EntitlementApiImpl");
|
|
45
45
|
const OptionsApiImpl_1 = require("./OptionsApiImpl");
|
|
46
|
-
const
|
|
46
|
+
const NoteApiImpl_1 = require("./NoteApiImpl");
|
|
47
47
|
const Fdc3ApiImpl_1 = require("./Fdc3ApiImpl");
|
|
48
48
|
const DataImportApiImpl_1 = require("./DataImportApiImpl");
|
|
49
49
|
const GridFilterApiImpl_1 = require("./GridFilterApiImpl");
|
|
@@ -97,7 +97,7 @@ class AdaptableApiImpl {
|
|
|
97
97
|
this.dataChangeHistoryApi = new DataChangeHistoryApiImpl_1.DataChangeHistoryApiImpl(adaptable);
|
|
98
98
|
this.chartingApi = new ChartingApiImpl_1.ChartingApiImpl(adaptable);
|
|
99
99
|
this.statusBarApi = new StatusBarApiImpl_1.StatusBarApiImpl(adaptable);
|
|
100
|
-
this.
|
|
100
|
+
this.noteApi = new NoteApiImpl_1.NoteApiImpl(adaptable);
|
|
101
101
|
this.fdc3Api = new Fdc3ApiImpl_1.Fdc3ApiImpl(adaptable);
|
|
102
102
|
this.dataImportApi = new DataImportApiImpl_1.DataImportApiImpl(adaptable);
|
|
103
103
|
this.gridFilterApi = new GridFilterApiImpl_1.GridFilterApiImpl(adaptable);
|
|
@@ -106,6 +106,9 @@ class AdaptableApiImpl {
|
|
|
106
106
|
// adaptable internal api
|
|
107
107
|
this.internalApi = new AdaptableInternalApi_1.AdaptableInternalApi(adaptable);
|
|
108
108
|
}
|
|
109
|
+
get agGridApi() {
|
|
110
|
+
return this.adaptable.agGridAdapter.getAgGridApi();
|
|
111
|
+
}
|
|
109
112
|
/**
|
|
110
113
|
* This is only meant to be called by the Adaptable instance.
|
|
111
114
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Action } from 'redux';
|
|
2
|
-
import { IAdaptable } from '../../AdaptableInterfaces/IAdaptable';
|
|
2
|
+
import { AdaptableVariant, IAdaptable } from '../../AdaptableInterfaces/IAdaptable';
|
|
3
3
|
import { AdaptableState } from '../../PredefinedConfig/AdaptableState';
|
|
4
4
|
import { AdaptableModule } from '../../PredefinedConfig/Common/Types';
|
|
5
5
|
import { AdaptableObject } from '../../PredefinedConfig/Common/AdaptableObject';
|
|
@@ -7,7 +7,7 @@ import { ModuleInfo } from '../../Strategy/Interface/IModule';
|
|
|
7
7
|
import { AdaptableOptions } from '../../AdaptableOptions/AdaptableOptions';
|
|
8
8
|
import { AdaptableApi } from '../AdaptableApi';
|
|
9
9
|
import { ExportOptions } from '../../AdaptableOptions/ExportOptions';
|
|
10
|
-
import { ActionColumnApi, ActionColumnOptions, ActionRowApi, ActionRowOptions, AlertApi, AlertOptions, ApplicationApi, BulkUpdateApi, CalculatedColumnApi, CalendarApi, CalendarOptions, CellSummaryApi, CellSummaryOptions, ChartingApi, ChartingOptions, ColumnApi, ColumnFilterApi, ColumnFilterOptions, ColumnOptions, ConfigApi, ContainerOptions, CustomSortApi, CustomSortOptions, DashboardApi, DashboardOptions, DataChangeHistoryApi, DataChangeHistoryOptions, DataSetApi, DataSetOptions, EditOptions, EntitlementApi, EntitlementOptions, EventApi, ExportApi, ExpressionApi, ExpressionOptions, Fdc3Api, Fdc3Options, FlashingCellApi, FlashingCellOptions, FormatColumnApi, FormatColumnOptions, FreeTextColumnApi, GridApi, GridFilterApi, GroupingOptions, LayoutApi, LayoutAssociatedObject, LayoutOptions, MenuOptions, NamedQueryApi,
|
|
10
|
+
import { ActionColumnApi, ActionColumnOptions, ActionRowApi, ActionRowOptions, AlertApi, AlertOptions, ApplicationApi, BulkUpdateApi, CalculatedColumnApi, CalendarApi, CalendarOptions, CellSummaryApi, CellSummaryOptions, ChartingApi, ChartingOptions, ColumnApi, ColumnFilterApi, ColumnFilterOptions, ColumnOptions, CommentOptions, ConfigApi, ContainerOptions, CustomSortApi, CustomSortOptions, DashboardApi, DashboardOptions, DataChangeHistoryApi, DataChangeHistoryOptions, DataSetApi, DataSetOptions, EditOptions, EntitlementApi, EntitlementOptions, EventApi, ExportApi, ExpressionApi, ExpressionOptions, Fdc3Api, Fdc3Options, FlashingCellApi, FlashingCellOptions, FormatColumnApi, FormatColumnOptions, FreeTextColumnApi, GridApi, GridFilterApi, GroupingOptions, LayoutApi, LayoutAssociatedObject, LayoutOptions, MenuOptions, NamedQueryApi, NoteOptions, NotificationsOptions, PluginsApi, PlusMinusApi, PredicateApi, PredicateOptions, QuickSearchApi, QuickSearchOptions, ScheduleApi, ScopeApi, SettingsPanelApi, SettingsPanelOptions, ShortcutApi, SmartEditApi, StateOptions, StatusBarApi, StyledColumnApi, SystemStatusApi, TeamSharingApi, TeamSharingOptions, ThemeApi, ToolPanelApi, ToolPanelOptions, UserInterfaceApi, UserInterfaceOptions } from '../../types';
|
|
11
11
|
import { ModuleParams } from '../../View/Components/SharedProps/ModuleViewPopupProps';
|
|
12
12
|
export declare abstract class ApiBase {
|
|
13
13
|
protected adaptable: IAdaptable;
|
|
@@ -20,6 +20,7 @@ export declare abstract class ApiBase {
|
|
|
20
20
|
protected logSuccess(message: string, ...optionalParams: any[]): void;
|
|
21
21
|
protected logWarn(message: string, ...optionalParams: any[]): void;
|
|
22
22
|
protected logError(message: string, ...optionalParams: any[]): void;
|
|
23
|
+
protected getAdaptableVariant(): AdaptableVariant;
|
|
23
24
|
/**
|
|
24
25
|
* Base api helper method which ensure that Adaptable Object being used in the function is not null or undefined
|
|
25
26
|
*
|
|
@@ -52,7 +53,8 @@ export declare abstract class ApiBase {
|
|
|
52
53
|
protected getActionColumnOptions(): ActionColumnOptions;
|
|
53
54
|
protected getActionRowOptions(): ActionRowOptions;
|
|
54
55
|
protected getColumnOptions(): ColumnOptions;
|
|
55
|
-
protected
|
|
56
|
+
protected getCommentOptions(): CommentOptions;
|
|
57
|
+
protected getNoteOptions(): NoteOptions;
|
|
56
58
|
protected getCustomSortOptions(): CustomSortOptions;
|
|
57
59
|
protected getDataSetOptions(): DataSetOptions;
|
|
58
60
|
protected getCalendarOptions(): CalendarOptions;
|
|
@@ -25,6 +25,9 @@ class ApiBase {
|
|
|
25
25
|
logError(message, ...optionalParams) {
|
|
26
26
|
this.adaptable.logger.error(message, ...optionalParams);
|
|
27
27
|
}
|
|
28
|
+
getAdaptableVariant() {
|
|
29
|
+
return this.adaptable.variant;
|
|
30
|
+
}
|
|
28
31
|
/**
|
|
29
32
|
* Base api helper method which ensure that Adaptable Object being used in the function is not null or undefined
|
|
30
33
|
*
|
|
@@ -102,8 +105,11 @@ class ApiBase {
|
|
|
102
105
|
getColumnOptions() {
|
|
103
106
|
return this.getOptions().columnOptions;
|
|
104
107
|
}
|
|
105
|
-
|
|
106
|
-
return this.getOptions().
|
|
108
|
+
getCommentOptions() {
|
|
109
|
+
return this.getOptions().commentOptions;
|
|
110
|
+
}
|
|
111
|
+
getNoteOptions() {
|
|
112
|
+
return this.getOptions().noteOptions;
|
|
107
113
|
}
|
|
108
114
|
getCustomSortOptions() {
|
|
109
115
|
return this.getOptions().customSortOptions;
|
|
@@ -5,7 +5,6 @@ const tslib_1 = require("tslib");
|
|
|
5
5
|
const ApiBase_1 = require("./ApiBase");
|
|
6
6
|
const ModuleConstants = tslib_1.__importStar(require("../../Utilities/Constants/ModuleConstants"));
|
|
7
7
|
const BulkUpdateRedux = tslib_1.__importStar(require("../../Redux/ActionsReducers/BulkUpdateRedux"));
|
|
8
|
-
const SystemRedux = tslib_1.__importStar(require("../../Redux/ActionsReducers/SystemRedux"));
|
|
9
8
|
class BulkUpdateApiImpl extends ApiBase_1.ApiBase {
|
|
10
9
|
getBulkUpdateValue() {
|
|
11
10
|
return this.getAdaptableState().System.BulkUpdateValue;
|
|
@@ -19,8 +18,5 @@ class BulkUpdateApiImpl extends ApiBase_1.ApiBase {
|
|
|
19
18
|
applyBulkUpdate(cellUpdateRequests) {
|
|
20
19
|
this.dispatchAction(BulkUpdateRedux.BulkUpdateApply(cellUpdateRequests));
|
|
21
20
|
}
|
|
22
|
-
setBulkUpdateValue(bulkUpdateValue) {
|
|
23
|
-
this.dispatchAction(SystemRedux.BulkUpdateChangeValue(bulkUpdateValue));
|
|
24
|
-
}
|
|
25
21
|
}
|
|
26
22
|
exports.BulkUpdateApiImpl = BulkUpdateApiImpl;
|
|
@@ -9,9 +9,4 @@ export declare class CellSummaryApiImpl extends ApiBase implements CellSummaryAp
|
|
|
9
9
|
setCurrentCellSummaryOperation(operation: SummaryOperation | string): void;
|
|
10
10
|
getCellSummaryOperationValue(operation: SummaryOperation | string): any;
|
|
11
11
|
getCurrentCellSummaryOperationValue(): any;
|
|
12
|
-
/**
|
|
13
|
-
* Weighted average is availabe only if the current layout has at leat a Weighted Average aggregation defined.
|
|
14
|
-
*/
|
|
15
|
-
private isWeightedAverageCellSummaryAvailable;
|
|
16
|
-
private getWeightedAverageCellSummaryOperation;
|
|
17
12
|
}
|
|
@@ -6,7 +6,6 @@ const ApiBase_1 = require("./ApiBase");
|
|
|
6
6
|
const ModuleConstants = tslib_1.__importStar(require("../../Utilities/Constants/ModuleConstants"));
|
|
7
7
|
const SystemRedux = tslib_1.__importStar(require("../../Redux/ActionsReducers/SystemRedux"));
|
|
8
8
|
const Enums_1 = require("../../PredefinedConfig/Common/Enums");
|
|
9
|
-
const weightedAverage_1 = require("../../agGrid/weightedAverage");
|
|
10
9
|
class CellSummaryApiImpl extends ApiBase_1.ApiBase {
|
|
11
10
|
openCellSummaryPopupSettingsPanel() {
|
|
12
11
|
this.showModulePopup(ModuleConstants.CellSummaryModuleId);
|
|
@@ -17,12 +16,6 @@ class CellSummaryApiImpl extends ApiBase_1.ApiBase {
|
|
|
17
16
|
getCellSummaryOperationDefinitions() {
|
|
18
17
|
var _a;
|
|
19
18
|
let cellSummaryOperations = (_a = this.getCellSummaryOptions().cellSummaryOperations) !== null && _a !== void 0 ? _a : [];
|
|
20
|
-
if (this.isWeightedAverageCellSummaryAvailable()) {
|
|
21
|
-
cellSummaryOperations = [
|
|
22
|
-
...cellSummaryOperations,
|
|
23
|
-
this.getWeightedAverageCellSummaryOperation(),
|
|
24
|
-
];
|
|
25
|
-
}
|
|
26
19
|
return cellSummaryOperations;
|
|
27
20
|
}
|
|
28
21
|
setCurrentCellSummaryOperation(operation) {
|
|
@@ -54,6 +47,8 @@ class CellSummaryApiImpl extends ApiBase_1.ApiBase {
|
|
|
54
47
|
return cellSummary.Std_Deviation;
|
|
55
48
|
case Enums_1.SummaryOperation.Only:
|
|
56
49
|
return cellSummary.Only;
|
|
50
|
+
case Enums_1.SummaryOperation.Weighted_Average:
|
|
51
|
+
return cellSummary.Weighted_Average;
|
|
57
52
|
default:
|
|
58
53
|
return cellSummary[operation];
|
|
59
54
|
}
|
|
@@ -65,21 +60,5 @@ class CellSummaryApiImpl extends ApiBase_1.ApiBase {
|
|
|
65
60
|
: cellSummaryOperation.operationName;
|
|
66
61
|
return this.getCellSummaryOperationValue(summaryOperation);
|
|
67
62
|
}
|
|
68
|
-
/**
|
|
69
|
-
* Weighted average is availabe only if the current layout has at leat a Weighted Average aggregation defined.
|
|
70
|
-
*/
|
|
71
|
-
isWeightedAverageCellSummaryAvailable() {
|
|
72
|
-
const currentLayout = this.getAdaptableApi().layoutApi.getCurrentLayout();
|
|
73
|
-
if (currentLayout.AggregationColumns == undefined) {
|
|
74
|
-
return false;
|
|
75
|
-
}
|
|
76
|
-
return Object.values(currentLayout.AggregationColumns).some((aggCol) => typeof aggCol === 'object' && aggCol.type === 'weightedAverage');
|
|
77
|
-
}
|
|
78
|
-
getWeightedAverageCellSummaryOperation() {
|
|
79
|
-
return {
|
|
80
|
-
operationName: 'Weighted Avg',
|
|
81
|
-
operationFunction: weightedAverage_1.cellSummaryWeightedAverage,
|
|
82
|
-
};
|
|
83
|
-
}
|
|
84
63
|
}
|
|
85
64
|
exports.CellSummaryApiImpl = CellSummaryApiImpl;
|
|
@@ -7,6 +7,7 @@ const GeneralConstants = tslib_1.__importStar(require("../../Utilities/Constants
|
|
|
7
7
|
const ModuleConstants = tslib_1.__importStar(require("../../Utilities/Constants/ModuleConstants"));
|
|
8
8
|
const ArrayExtensions_1 = tslib_1.__importDefault(require("../../Utilities/Extensions/ArrayExtensions"));
|
|
9
9
|
const ColumnInternalApi_1 = require("../Internal/ColumnInternalApi");
|
|
10
|
+
const ObjectFactory_1 = require("../../Utilities/ObjectFactory");
|
|
10
11
|
class ColumnApiImpl extends ApiBase_1.ApiBase {
|
|
11
12
|
constructor(adaptable) {
|
|
12
13
|
super(adaptable);
|
|
@@ -337,5 +338,14 @@ class ColumnApiImpl extends ApiBase_1.ApiBase {
|
|
|
337
338
|
openColumnInfoSettingsPanel() {
|
|
338
339
|
this.showModulePopup(ModuleConstants.ColumnInfoModuleId);
|
|
339
340
|
}
|
|
341
|
+
getColumnTypes() {
|
|
342
|
+
const columnTypes = this.getOptions().columnOptions.columnTypes;
|
|
343
|
+
if (typeof columnTypes === 'function') {
|
|
344
|
+
return columnTypes((0, ObjectFactory_1.createBaseContext)(this.getAdaptableApi()));
|
|
345
|
+
}
|
|
346
|
+
else {
|
|
347
|
+
return columnTypes;
|
|
348
|
+
}
|
|
349
|
+
}
|
|
340
350
|
}
|
|
341
351
|
exports.ColumnApiImpl = ColumnApiImpl;
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import { ApiBase } from './ApiBase';
|
|
2
|
-
import { CellAddress } from '../../
|
|
3
|
-
import { CommentThread, AdaptableComment } from '../../types';
|
|
2
|
+
import { CommentThread, AdaptableComment, CellAddress } from '../../types';
|
|
4
3
|
import { CommentApi } from '../CommentApi';
|
|
4
|
+
import { CommentsInternalApi } from '../Internal/CommentsInternalApi';
|
|
5
|
+
import { IAdaptable } from '../../AdaptableInterfaces/IAdaptable';
|
|
5
6
|
export declare class CommentsApiImpl extends ApiBase implements CommentApi {
|
|
7
|
+
internalApi: CommentsInternalApi;
|
|
8
|
+
constructor(adaptable: IAdaptable);
|
|
6
9
|
getComments(address: CellAddress): AdaptableComment[];
|
|
7
10
|
getCommentThread(address: CellAddress): CommentThread | undefined;
|
|
8
11
|
getCommentThreads(): CommentThread[];
|
|
@@ -6,7 +6,12 @@ const CommentRedux = tslib_1.__importStar(require("../../Redux/ActionsReducers/C
|
|
|
6
6
|
const ApiBase_1 = require("./ApiBase");
|
|
7
7
|
const ObjectFactory_1 = tslib_1.__importDefault(require("../../Utilities/ObjectFactory"));
|
|
8
8
|
const AdaptableHelper_1 = tslib_1.__importDefault(require("../../Utilities/Helpers/AdaptableHelper"));
|
|
9
|
+
const CommentsInternalApi_1 = require("../Internal/CommentsInternalApi");
|
|
9
10
|
class CommentsApiImpl extends ApiBase_1.ApiBase {
|
|
11
|
+
constructor(adaptable) {
|
|
12
|
+
super(adaptable);
|
|
13
|
+
this.internalApi = new CommentsInternalApi_1.CommentsInternalApi(adaptable);
|
|
14
|
+
}
|
|
10
15
|
getComments(address) {
|
|
11
16
|
return CommentRedux.GetCommentsSelector(this.getAdaptableState().Comment, address);
|
|
12
17
|
}
|
|
@@ -14,7 +19,8 @@ class CommentsApiImpl extends ApiBase_1.ApiBase {
|
|
|
14
19
|
return CommentRedux.GetCellCommentSelector(this.getAdaptableState().Comment, address);
|
|
15
20
|
}
|
|
16
21
|
getCommentThreads() {
|
|
17
|
-
|
|
22
|
+
var _a;
|
|
23
|
+
return (_a = this.getAdaptableState().Comment.CommentThreads) !== null && _a !== void 0 ? _a : [];
|
|
18
24
|
}
|
|
19
25
|
editComment(comment, address) {
|
|
20
26
|
this.dispatchAction(CommentRedux.CommentsEdit({ comment, cellAddress: address }));
|
|
@@ -20,7 +20,7 @@ import { AdaptableModule, AdaptableStateKey } from '../../PredefinedConfig/Commo
|
|
|
20
20
|
import { AdaptableOptions, AdaptableSearchState, AdaptableSortState, NamedQueryState, ScheduleState } from '../../types';
|
|
21
21
|
import { PredefinedConfig } from '../../PredefinedConfig/PredefinedConfig';
|
|
22
22
|
import { ChartingState } from '../../PredefinedConfig/ChartingState';
|
|
23
|
-
import {
|
|
23
|
+
import { NoteState } from '../../PredefinedConfig/NoteState';
|
|
24
24
|
export declare class ConfigApiImpl extends ApiBase implements ConfigApi {
|
|
25
25
|
configInit(): void;
|
|
26
26
|
copyAllStateToClipboard(): void;
|
|
@@ -48,7 +48,7 @@ export declare class ConfigApiImpl extends ApiBase implements ConfigApi {
|
|
|
48
48
|
getApplicationState(returnJson?: boolean): ApplicationState;
|
|
49
49
|
getCalculatedColumnState(returnJson?: boolean): CalculatedColumnState;
|
|
50
50
|
getChartingState(returnJson?: boolean): ChartingState;
|
|
51
|
-
|
|
51
|
+
getNoteState(returnJson?: boolean): NoteState;
|
|
52
52
|
getCustomSortState(returnJson?: boolean): CustomSortState;
|
|
53
53
|
getDashboardState(returnJson?: boolean): DashboardState;
|
|
54
54
|
getExportState(returnJson?: boolean): ExportState;
|
|
@@ -12,7 +12,7 @@ const AlertRedux = tslib_1.__importStar(require("../../Redux/ActionsReducers/Ale
|
|
|
12
12
|
const BulkUpdateRedux = tslib_1.__importStar(require("../../Redux/ActionsReducers/BulkUpdateRedux"));
|
|
13
13
|
const CalculatedColumnRedux = tslib_1.__importStar(require("../../Redux/ActionsReducers/CalculatedColumnRedux"));
|
|
14
14
|
const ChartingRedux = tslib_1.__importStar(require("../../Redux/ActionsReducers/ChartingRedux"));
|
|
15
|
-
const
|
|
15
|
+
const NoteRedux = tslib_1.__importStar(require("../../Redux/ActionsReducers/NoteRedux"));
|
|
16
16
|
const CustomSortRedux = tslib_1.__importStar(require("../../Redux/ActionsReducers/CustomSortRedux"));
|
|
17
17
|
const ExportRedux = tslib_1.__importStar(require("../../Redux/ActionsReducers/ExportRedux"));
|
|
18
18
|
const FormatColumnRedux = tslib_1.__importStar(require("../../Redux/ActionsReducers/FormatColumnRedux"));
|
|
@@ -121,7 +121,6 @@ class ConfigApiImpl extends ApiBase_1.ApiBase {
|
|
|
121
121
|
setAdaptableStateKey(adaptableStateKey, config) {
|
|
122
122
|
return new Promise((resolve, reject) => {
|
|
123
123
|
this.adaptable.api.internalApi.executeWithProgressIndicator(`Initialising...`, () => {
|
|
124
|
-
this.adaptable.adaptableOptions.adaptableStateKey = adaptableStateKey;
|
|
125
124
|
const flushCurrentState = !config || config.flushCurrentState !== false;
|
|
126
125
|
// make sure we persist any "pending" changes to state - since stateOptions.debounceStateDelay can cause
|
|
127
126
|
// the state to be persisted with a delay, which we dont want in this case
|
|
@@ -129,22 +128,34 @@ class ConfigApiImpl extends ApiBase_1.ApiBase {
|
|
|
129
128
|
? this.adaptable.adaptableStore.saveStateNow(this.adaptable)
|
|
130
129
|
: Promise.resolve(true);
|
|
131
130
|
flushStatePromise.then(() => {
|
|
131
|
+
this.adaptable.adaptableOptions.adaptableStateKey = adaptableStateKey;
|
|
132
132
|
let predefinedConfig = config === null || config === void 0 ? void 0 : config.predefinedConfig;
|
|
133
133
|
if (predefinedConfig) {
|
|
134
134
|
predefinedConfig = (0, AdaptableHelper_1.initPredefinedConfigWithUuids)(predefinedConfig);
|
|
135
135
|
}
|
|
136
|
-
const promise = this.adaptable.adaptableStore.loadStore(
|
|
136
|
+
const promise = this.adaptable.adaptableStore.loadStore({
|
|
137
|
+
adaptable: this.adaptable,
|
|
138
|
+
adaptableStateKey,
|
|
139
|
+
predefinedConfig,
|
|
140
|
+
postLoadHook: (state) => {
|
|
141
|
+
return this.adaptable.normalizeAdaptableState(state, this.adaptable.agGridAdapter.getLiveGridOptions());
|
|
142
|
+
},
|
|
143
|
+
});
|
|
137
144
|
promise
|
|
138
145
|
.then(() => {
|
|
139
|
-
this.adaptable.
|
|
146
|
+
this.adaptable.updateColumnModelAndRefreshGrid({ skipColDefsRefresh: true });
|
|
147
|
+
this.adaptable.setLayout();
|
|
140
148
|
this.adaptable.api.userInterfaceApi.hideLoadingScreen();
|
|
141
149
|
})
|
|
142
150
|
.then(() => {
|
|
143
151
|
// resolve main(result) promise
|
|
144
152
|
resolve();
|
|
145
|
-
}, () => {
|
|
153
|
+
}, (error) => {
|
|
146
154
|
// reject main(result) promise
|
|
147
|
-
reject();
|
|
155
|
+
reject(error);
|
|
156
|
+
})
|
|
157
|
+
.catch((e) => {
|
|
158
|
+
this.logError('Error setting Adaptable State Key', e);
|
|
148
159
|
});
|
|
149
160
|
});
|
|
150
161
|
});
|
|
@@ -174,10 +185,10 @@ class ConfigApiImpl extends ApiBase_1.ApiBase {
|
|
|
174
185
|
return returnJson
|
|
175
186
|
? JSON.stringify(this.getAdaptableState().Charting)
|
|
176
187
|
: this.getAdaptableState().Charting;
|
|
177
|
-
case '
|
|
188
|
+
case 'Note':
|
|
178
189
|
return returnJson
|
|
179
|
-
? JSON.stringify(this.getAdaptableState().
|
|
180
|
-
: this.getAdaptableState().
|
|
190
|
+
? JSON.stringify(this.getAdaptableState().Note)
|
|
191
|
+
: this.getAdaptableState().Note;
|
|
181
192
|
case 'CustomSort':
|
|
182
193
|
return returnJson
|
|
183
194
|
? JSON.stringify(this.getAdaptableState().CustomSort)
|
|
@@ -254,8 +265,8 @@ class ConfigApiImpl extends ApiBase_1.ApiBase {
|
|
|
254
265
|
getChartingState(returnJson = false) {
|
|
255
266
|
return this.getUserStateByStateKey('Charting', returnJson);
|
|
256
267
|
}
|
|
257
|
-
|
|
258
|
-
return this.getUserStateByStateKey('
|
|
268
|
+
getNoteState(returnJson = false) {
|
|
269
|
+
return this.getUserStateByStateKey('Note', returnJson);
|
|
259
270
|
}
|
|
260
271
|
getCustomSortState(returnJson = false) {
|
|
261
272
|
return this.getUserStateByStateKey('CustomSort', returnJson);
|
|
@@ -310,8 +321,8 @@ class ConfigApiImpl extends ApiBase_1.ApiBase {
|
|
|
310
321
|
case 'Charting':
|
|
311
322
|
this.dispatchAction(ChartingRedux.ChartingReady(this.getChartingState()));
|
|
312
323
|
break;
|
|
313
|
-
case '
|
|
314
|
-
this.dispatchAction(
|
|
324
|
+
case 'Note':
|
|
325
|
+
this.dispatchAction(NoteRedux.NoteReady(this.getNoteState()));
|
|
315
326
|
break;
|
|
316
327
|
case 'CustomSort':
|
|
317
328
|
this.dispatchAction(CustomSortRedux.CustomSortReady(this.getCustomSortState()));
|