ag-grid-community 32.3.2 → 33.0.0
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/README.md +27 -50
- package/dist/ag-grid-community.js +55097 -49364
- package/dist/ag-grid-community.min.js +1 -1
- package/dist/ag-grid-community.min.noStyle.js +1 -1
- package/dist/ag-grid-community.noStyle.js +54255 -48477
- package/dist/package/main.cjs.js +38771 -41341
- package/dist/package/main.cjs.min.js +162 -147
- package/dist/package/main.esm.min.mjs +170 -155
- package/dist/package/main.esm.mjs +39092 -41662
- package/dist/package/package.json +18 -13
- package/dist/types/package.json +118 -0
- package/dist/types/src/alignedGrids/alignedGridsModule.d.ts +6 -0
- package/dist/types/src/alignedGrids/alignedGridsService.d.ts +22 -0
- package/dist/types/src/allCommunityModule.d.ts +5 -0
- package/dist/types/src/api/apiFunctionService.d.ts +16 -0
- package/dist/types/src/api/apiModule.d.ts +10 -0
- package/dist/types/src/api/coreApi.d.ts +9 -0
- package/dist/types/src/api/gridApi.d.ts +908 -0
- package/dist/types/src/api/gridApiFunctions.d.ts +3 -0
- package/dist/types/src/api/rowApi.d.ts +14 -0
- package/dist/types/src/api/rowModelApiUtils.d.ts +7 -0
- package/dist/types/src/api/sharedApiModule.d.ts +10 -0
- package/dist/types/src/baseUrl.d.ts +1 -0
- package/dist/types/src/clientSideRowModel/abstractClientSideNodeManager.d.ts +62 -0
- package/dist/types/src/clientSideRowModel/changedRowNodes.d.ts +13 -0
- package/dist/types/src/clientSideRowModel/clientSideNodeManager.d.ts +5 -0
- package/dist/types/src/clientSideRowModel/clientSideRowModel.d.ts +141 -0
- package/dist/types/src/clientSideRowModel/clientSideRowModelApi.d.ts +16 -0
- package/dist/types/src/clientSideRowModel/clientSideRowModelModule.d.ts +10 -0
- package/dist/types/src/clientSideRowModel/filterStage.d.ts +19 -0
- package/dist/types/src/clientSideRowModel/sortStage.d.ts +14 -0
- package/dist/types/src/columnAutosize/columnAutosizeApi.d.ts +7 -0
- package/dist/types/src/columnAutosize/columnAutosizeModule.d.ts +7 -0
- package/dist/types/src/columnAutosize/columnAutosizeService.d.ts +33 -0
- package/dist/types/src/columnMove/column-moving.css-GENERATED.d.ts +1 -0
- package/dist/types/src/columnMove/columnAnimationService.d.ts +21 -0
- package/dist/types/src/columnMove/columnDrag/bodyDropPivotTarget.d.ts +22 -0
- package/dist/types/src/columnMove/columnDrag/bodyDropTarget.d.ts +32 -0
- package/dist/types/src/columnMove/columnDrag/moveColumnFeature.d.ts +48 -0
- package/dist/types/src/columnMove/columnMoveApi.d.ts +5 -0
- package/dist/types/src/columnMove/columnMoveModule.d.ts +6 -0
- package/dist/types/src/columnMove/columnMoveService.d.ts +21 -0
- package/dist/types/src/columnMove/columnMoveUtils.d.ts +5 -0
- package/dist/types/src/columnMove/internalColumnMoveUtils.d.ts +40 -0
- package/dist/types/src/columnResize/columnResizeApi.d.ts +8 -0
- package/dist/types/src/columnResize/columnResizeModule.d.ts +6 -0
- package/dist/types/src/columnResize/columnResizeService.d.ts +33 -0
- package/dist/types/src/columnResize/groupResizeFeature.d.ts +40 -0
- package/dist/types/src/columnResize/resizeFeature.d.ts +21 -0
- package/dist/types/src/columns/baseColsService.d.ts +43 -0
- package/dist/types/src/columns/columnApi.d.ts +26 -0
- package/dist/types/src/columns/columnDefFactory.d.ts +16 -0
- package/dist/types/src/columns/columnEventUtils.d.ts +7 -0
- package/dist/types/src/columns/columnFactoryUtils.d.ts +16 -0
- package/dist/types/src/columns/columnFlexService.d.ts +18 -0
- package/dist/types/src/columns/columnGroups/columnGroupApi.d.ts +20 -0
- package/dist/types/src/columns/columnGroups/columnGroupModule.d.ts +7 -0
- package/dist/types/src/columns/columnGroups/columnGroupService.d.ts +51 -0
- package/dist/types/src/columns/columnHover/columnHoverApi.d.ts +3 -0
- package/dist/types/src/columns/columnHover/columnHoverModule.d.ts +7 -0
- package/dist/types/src/columns/columnHover/columnHoverService.d.ts +18 -0
- package/dist/types/src/columns/columnHover/hoverFeature.d.ts +8 -0
- package/dist/types/src/columns/columnModel.d.ts +57 -0
- package/dist/types/src/columns/columnModule.d.ts +14 -0
- package/dist/types/src/columns/columnNameService.d.ts +19 -0
- package/dist/types/src/columns/columnStateUtils.d.ts +59 -0
- package/dist/types/src/columns/columnUtils.d.ts +22 -0
- package/dist/types/src/columns/columnViewportService.d.ts +37 -0
- package/dist/types/src/columns/dataTypeService.d.ts +47 -0
- package/dist/types/src/columns/selectionColService.d.ts +21 -0
- package/dist/types/src/columns/visibleColsService.d.ts +52 -0
- package/dist/types/src/components/framework/agComponentUtils.d.ts +7 -0
- package/dist/types/src/components/framework/cellRendererFunctionModule.d.ts +5 -0
- package/dist/types/src/components/framework/frameworkComponentWrapper.d.ts +26 -0
- package/dist/types/src/components/framework/registry.d.ts +25 -0
- package/dist/types/src/components/framework/userCompUtils.d.ts +52 -0
- package/dist/types/src/components/framework/userComponentFactory.d.ts +30 -0
- package/dist/types/src/constants/direction.d.ts +2 -0
- package/dist/types/src/constants/keyCode.d.ts +24 -0
- package/dist/types/src/context/beanStub.d.ts +83 -0
- package/dist/types/src/context/context.d.ts +251 -0
- package/dist/types/src/csvExport/csvCreator.d.ts +21 -0
- package/dist/types/src/csvExport/csvExportApi.d.ts +4 -0
- package/dist/types/src/csvExport/csvExportModule.d.ts +6 -0
- package/dist/types/src/csvExport/csvSerializingSession.d.ts +26 -0
- package/dist/types/src/ctrlsService.d.ts +55 -0
- package/dist/types/src/dragAndDrop/dragAndDropImageComponent.css-GENERATED.d.ts +1 -0
- package/dist/types/src/dragAndDrop/dragAndDropImageComponent.d.ts +25 -0
- package/dist/types/src/dragAndDrop/dragAndDropService.d.ts +153 -0
- package/dist/types/src/dragAndDrop/dragApi.d.ts +5 -0
- package/dist/types/src/dragAndDrop/dragModule.d.ts +24 -0
- package/dist/types/src/dragAndDrop/dragService.d.ts +53 -0
- package/dist/types/src/dragAndDrop/horizontalResizeService.d.ts +20 -0
- package/dist/types/src/dragAndDrop/rowDragComp.d.ts +24 -0
- package/dist/types/src/dragAndDrop/rowDragFeature.d.ts +55 -0
- package/dist/types/src/dragAndDrop/rowDragService.d.ts +14 -0
- package/dist/types/src/edit/cell-editing.css-GENERATED.d.ts +1 -0
- package/dist/types/src/edit/cellEditors/dateStringCellEditor.d.ts +6 -0
- package/dist/types/src/edit/cellEditors/selectCellEditor.d.ts +20 -0
- package/dist/types/src/edit/editApi.d.ts +12 -0
- package/dist/types/src/edit/editModule.d.ts +38 -0
- package/dist/types/src/edit/editService.d.ts +32 -0
- package/dist/types/src/edit/rowEditService.d.ts +9 -0
- package/dist/types/src/entities/agColumn.d.ts +149 -0
- package/dist/types/src/entities/agColumnGroup.d.ts +57 -0
- package/dist/types/src/entities/agProvidedColumnGroup.d.ts +42 -0
- package/dist/types/src/entities/colDef.d.ts +864 -0
- package/dist/types/src/entities/gridOptions.d.ts +2260 -0
- package/dist/types/src/entities/positionUtils.d.ts +13 -0
- package/dist/types/src/entities/rowNode.d.ts +305 -0
- package/dist/types/src/entities/rowNodeUtils.d.ts +5 -0
- package/dist/types/src/environment.d.ts +32 -0
- package/dist/types/src/eventService.d.ts +18 -0
- package/dist/types/src/eventTypes.d.ts +8 -0
- package/dist/types/src/events.d.ts +890 -0
- package/dist/types/src/export/baseCreator.d.ts +13 -0
- package/dist/types/src/export/baseGridSerializingSession.d.ts +37 -0
- package/dist/types/src/export/downloader.d.ts +1 -0
- package/dist/types/src/export/exportModule.d.ts +5 -0
- package/dist/types/src/export/gridSerializer.d.ts +27 -0
- package/dist/types/src/export/iGridSerializer.d.ts +37 -0
- package/dist/types/src/filter/column-filters.css-GENERATED.d.ts +1 -0
- package/dist/types/src/filter/columnFilterApi.d.ts +11 -0
- package/dist/types/src/filter/columnFilterService.d.ts +81 -0
- package/dist/types/src/filter/filterManager.d.ts +82 -0
- package/dist/types/src/filter/filterMenuFactory.d.ts +23 -0
- package/dist/types/src/filter/filterModule.d.ts +45 -0
- package/dist/types/src/filter/filterValueService.d.ts +10 -0
- package/dist/types/src/filter/filterWrapperComp.d.ts +21 -0
- package/dist/types/src/filter/floating/floatingFilter.d.ts +76 -0
- package/dist/types/src/filter/floating/floatingFilterMapper.d.ts +3 -0
- package/dist/types/src/filter/floating/provided/floatingFilterTextInputService.d.ts +20 -0
- package/dist/types/src/filter/floating/provided/readOnlyFloatingFilter.d.ts +11 -0
- package/dist/types/src/filter/floating/provided/simpleFloatingFilter.d.ts +25 -0
- package/dist/types/src/filter/floating/provided/textInputFloatingFilter.d.ts +24 -0
- package/dist/types/src/filter/provided/date/dateCompWrapper.d.ts +25 -0
- package/dist/types/src/filter/provided/date/dateFilter.d.ts +43 -0
- package/dist/types/src/filter/provided/date/dateFilterModelFormatter.d.ts +14 -0
- package/dist/types/src/filter/provided/date/dateFloatingFilter.d.ts +24 -0
- package/dist/types/src/filter/provided/date/defaultDateComponent.d.ts +23 -0
- package/dist/types/src/filter/provided/number/numberFilter.d.ts +32 -0
- package/dist/types/src/filter/provided/number/numberFloatingFilter.d.ts +12 -0
- package/dist/types/src/filter/provided/optionsFactory.d.ts +13 -0
- package/dist/types/src/filter/provided/providedFilter.d.ts +84 -0
- package/dist/types/src/filter/provided/simpleFilter.d.ts +106 -0
- package/dist/types/src/filter/provided/simpleFilterModelFormatter.d.ts +16 -0
- package/dist/types/src/filter/provided/simpleFilterUtils.d.ts +7 -0
- package/dist/types/src/filter/provided/text/textFilter.d.ts +33 -0
- package/dist/types/src/filter/provided/text/textFloatingFilter.d.ts +11 -0
- package/dist/types/src/filter/quickFilterService.d.ts +28 -0
- package/dist/types/src/focusService.d.ts +72 -0
- package/dist/types/src/grid.d.ts +54 -0
- package/dist/types/src/gridBodyComp/abstractFakeScrollComp.d.ts +21 -0
- package/dist/types/src/gridBodyComp/centerWidthFeature.d.ts +8 -0
- package/dist/types/src/gridBodyComp/fakeHScrollComp.d.ts +23 -0
- package/dist/types/src/gridBodyComp/fakeVScrollComp.d.ts +11 -0
- package/dist/types/src/gridBodyComp/gridBodyComp.d.ts +15 -0
- package/dist/types/src/gridBodyComp/gridBodyCtrl.d.ts +81 -0
- package/dist/types/src/gridBodyComp/gridBodyScrollFeature.d.ts +71 -0
- package/dist/types/src/gridBodyComp/mouseEventUtils.d.ts +12 -0
- package/dist/types/src/gridBodyComp/rowContainer/rowContainerComp.d.ts +20 -0
- package/dist/types/src/gridBodyComp/rowContainer/rowContainerCtrl.d.ts +71 -0
- package/dist/types/src/gridBodyComp/rowContainer/rowContainerEventsFeature.d.ts +26 -0
- package/dist/types/src/gridBodyComp/rowContainer/setHeightFeature.d.ts +8 -0
- package/dist/types/src/gridBodyComp/rowContainer/setPinnedWidthFeature.d.ts +9 -0
- package/dist/types/src/gridBodyComp/scrollVisibleService.d.ts +24 -0
- package/dist/types/src/gridBodyComp/viewportSizeFeature.d.ts +22 -0
- package/dist/types/src/gridComp/gridCtrl.d.ts +43 -0
- package/dist/types/src/gridCoreModule.d.ts +6 -0
- package/dist/types/src/gridDestroyService.d.ts +7 -0
- package/dist/types/src/gridOptionsDefault.d.ts +173 -0
- package/dist/types/src/gridOptionsInitial.d.ts +88 -0
- package/dist/types/src/gridOptionsService.d.ts +108 -0
- package/dist/types/src/gridOptionsUtils.d.ts +74 -0
- package/dist/types/src/headerRendering/cells/abstractCell/abstractHeaderCellCtrl.d.ts +59 -0
- package/dist/types/src/headerRendering/cells/column/headerCellComp.d.ts +15 -0
- package/dist/types/src/headerRendering/cells/column/headerCellCtrl.d.ts +78 -0
- package/dist/types/src/headerRendering/cells/column/headerComp.d.ts +131 -0
- package/dist/types/src/headerRendering/cells/columnGroup/headerGroupCellCtrl.d.ts +42 -0
- package/dist/types/src/headerRendering/cells/columnGroup/headerGroupComp.d.ts +50 -0
- package/dist/types/src/headerRendering/cells/floatingFilter/headerFilterCellCtrl.d.ts +41 -0
- package/dist/types/src/headerRendering/cells/floatingFilter/iHeaderFilterCellComp.d.ts +12 -0
- package/dist/types/src/headerRendering/cells/headerModule.d.ts +11 -0
- package/dist/types/src/headerRendering/gridHeaderCtrl.d.ts +19 -0
- package/dist/types/src/headerRendering/headerUtils.d.ts +8 -0
- package/dist/types/src/headerRendering/row/headerRowComp.d.ts +12 -0
- package/dist/types/src/headerRendering/row/headerRowCtrl.d.ts +59 -0
- package/dist/types/src/headerRendering/rowContainer/headerRowContainerCtrl.d.ts +44 -0
- package/dist/types/src/infiniteRowModel/infiniteBlock.d.ts +38 -0
- package/dist/types/src/infiniteRowModel/infiniteCache.d.ts +49 -0
- package/dist/types/src/infiniteRowModel/infiniteRowModel.d.ts +42 -0
- package/dist/types/src/infiniteRowModel/infiniteRowModelApi.d.ts +4 -0
- package/dist/types/src/infiniteRowModel/infiniteRowModelModule.d.ts +6 -0
- package/dist/types/src/infiniteRowModel/rowNodeBlockLoader.d.ts +23 -0
- package/dist/types/src/interfaces/IRangeService.d.ts +81 -0
- package/dist/types/src/interfaces/IServerSideStore.d.ts +35 -0
- package/dist/types/src/interfaces/autoSize.d.ts +51 -0
- package/dist/types/src/interfaces/dateComponent.d.ts +42 -0
- package/dist/types/src/interfaces/exportParams.d.ts +153 -0
- package/dist/types/src/interfaces/gridState.d.ts +160 -0
- package/dist/types/src/interfaces/groupCellRenderer.d.ts +68 -0
- package/dist/types/src/interfaces/iAggColumnNameService.d.ts +4 -0
- package/dist/types/src/interfaces/iAutoColService.d.ts +11 -0
- package/dist/types/src/interfaces/iCallbackParams.d.ts +236 -0
- package/dist/types/src/interfaces/iCellEditor.d.ts +97 -0
- package/dist/types/src/interfaces/iCellPosition.d.ts +6 -0
- package/dist/types/src/interfaces/iCellRangeFeature.d.ts +8 -0
- package/dist/types/src/interfaces/iCellsParams.d.ts +20 -0
- package/dist/types/src/interfaces/iChartOptions.d.ts +62 -0
- package/dist/types/src/interfaces/iClientSideNodeManager.d.ts +24 -0
- package/dist/types/src/interfaces/iClientSideRowModel.d.ts +94 -0
- package/dist/types/src/interfaces/iColsService.d.ts +49 -0
- package/dist/types/src/interfaces/iColumn.d.ts +242 -0
- package/dist/types/src/interfaces/iContextMenu.d.ts +38 -0
- package/dist/types/src/interfaces/iDatasource.d.ts +27 -0
- package/dist/types/src/interfaces/iDragItem.d.ts +30 -0
- package/dist/types/src/interfaces/iExcelCreator.d.ts +584 -0
- package/dist/types/src/interfaces/iExpansionService.d.ts +14 -0
- package/dist/types/src/interfaces/iFilter.d.ts +182 -0
- package/dist/types/src/interfaces/iFooterService.d.ts +7 -0
- package/dist/types/src/interfaces/iFrameworkEventListenerService.d.ts +6 -0
- package/dist/types/src/interfaces/iFrameworkOverrides.d.ts +47 -0
- package/dist/types/src/interfaces/iGroupHideOpenParentsService.d.ts +9 -0
- package/dist/types/src/interfaces/iHeaderPosition.d.ts +7 -0
- package/dist/types/src/interfaces/iLoadingCellRenderer.d.ts +8 -0
- package/dist/types/src/interfaces/iModule.d.ts +61 -0
- package/dist/types/src/interfaces/iPivotResultColsService.d.ts +11 -0
- package/dist/types/src/interfaces/iPopup.d.ts +25 -0
- package/dist/types/src/interfaces/iRedrawRowsParams.d.ts +5 -0
- package/dist/types/src/interfaces/iRowChildrenService.d.ts +4 -0
- package/dist/types/src/interfaces/iRowDragItem.d.ts +5 -0
- package/dist/types/src/interfaces/iRowModel.d.ts +50 -0
- package/dist/types/src/interfaces/iRowNode.d.ts +270 -0
- package/dist/types/src/interfaces/iRowNodeStage.d.ts +18 -0
- package/dist/types/src/interfaces/iRowPosition.d.ts +8 -0
- package/dist/types/src/interfaces/iSelectionService.d.ts +67 -0
- package/dist/types/src/interfaces/iServerSideDatasource.d.ts +59 -0
- package/dist/types/src/interfaces/iServerSideRowModel.d.ts +55 -0
- package/dist/types/src/interfaces/iSetFilter.d.ts +203 -0
- package/dist/types/src/interfaces/iShowRowGroupColsService.d.ts +8 -0
- package/dist/types/src/interfaces/iSideBar.d.ts +62 -0
- package/dist/types/src/interfaces/iSortModelItem.d.ts +6 -0
- package/dist/types/src/interfaces/iSortOption.d.ts +5 -0
- package/dist/types/src/interfaces/iSparklineCellRendererParams.d.ts +6 -0
- package/dist/types/src/interfaces/iStickyRows.d.ts +17 -0
- package/dist/types/src/interfaces/iToolPanel.d.ts +54 -0
- package/dist/types/src/interfaces/iUserCompDetails.d.ts +17 -0
- package/dist/types/src/interfaces/masterDetail.d.ts +56 -0
- package/dist/types/src/interfaces/menuItem.d.ts +137 -0
- package/dist/types/src/interfaces/serverSideTransaction.d.ts +61 -0
- package/dist/types/src/main.d.ts +323 -0
- package/dist/types/src/misc/animationFrameModule.d.ts +6 -0
- package/dist/types/src/misc/animationFrameService.d.ts +30 -0
- package/dist/types/src/misc/apiEvents/apiEventModule.d.ts +6 -0
- package/dist/types/src/misc/apiEvents/apiEventService.d.ts +21 -0
- package/dist/types/src/misc/apiEvents/eventApi.d.ts +7 -0
- package/dist/types/src/misc/locale/localeModule.d.ts +6 -0
- package/dist/types/src/misc/locale/localeService.d.ts +7 -0
- package/dist/types/src/misc/locale/localeUtils.d.ts +3 -0
- package/dist/types/src/misc/menu/menuApi.d.ts +4 -0
- package/dist/types/src/misc/menu/menuService.d.ts +49 -0
- package/dist/types/src/misc/menu/sharedMenuModule.d.ts +6 -0
- package/dist/types/src/misc/state/stateModule.d.ts +7 -0
- package/dist/types/src/misc/state/stateService.d.ts +52 -0
- package/dist/types/src/misc/touchModule.d.ts +5 -0
- package/dist/types/src/misc/touchService.d.ts +18 -0
- package/dist/types/src/modules/moduleRegistry.d.ts +20 -0
- package/dist/types/src/navigation/cellNavigationService.d.ts +25 -0
- package/dist/types/src/navigation/headerNavigationService.d.ts +22 -0
- package/dist/types/src/navigation/navigationApi.d.ts +10 -0
- package/dist/types/src/navigation/navigationModule.d.ts +6 -0
- package/dist/types/src/navigation/navigationService.d.ts +44 -0
- package/dist/types/src/pagination/pageBoundsListener.d.ts +8 -0
- package/dist/types/src/pagination/pageBoundsService.d.ts +18 -0
- package/dist/types/src/pagination/pageSizeSelector/pageSizeSelectorComp.d.ts +24 -0
- package/dist/types/src/pagination/paginationAutoPageSizeService.d.ts +11 -0
- package/dist/types/src/pagination/paginationComp.css-GENERATED.d.ts +1 -0
- package/dist/types/src/pagination/paginationComp.d.ts +46 -0
- package/dist/types/src/pagination/paginationModule.d.ts +7 -0
- package/dist/types/src/pagination/paginationService.d.ts +50 -0
- package/dist/types/src/pinnedColumns/pinnedColumnModule.css-GENERATED.d.ts +1 -0
- package/dist/types/src/pinnedColumns/pinnedColumnModule.d.ts +6 -0
- package/dist/types/src/pinnedColumns/pinnedColumnService.d.ts +25 -0
- package/dist/types/src/pinnedRowModel/pinnedRowModel.d.ts +32 -0
- package/dist/types/src/pinnedRowModel/pinnedRowModule.d.ts +7 -0
- package/dist/types/src/propertyKeys.d.ts +33 -0
- package/dist/types/src/rendering/ariaAnnouncementService.d.ts +16 -0
- package/dist/types/src/rendering/ariaModule.d.ts +5 -0
- package/dist/types/src/rendering/autoWidthCalculator.d.ts +14 -0
- package/dist/types/src/rendering/autoWidthModule.d.ts +5 -0
- package/dist/types/src/rendering/cell/cellComp.d.ts +50 -0
- package/dist/types/src/rendering/cell/cellCtrl.d.ts +143 -0
- package/dist/types/src/rendering/cell/cellFlashService.d.ts +11 -0
- package/dist/types/src/rendering/cell/cellKeyboardListenerFeature.d.ts +24 -0
- package/dist/types/src/rendering/cell/cellMouseListenerFeature.d.ts +20 -0
- package/dist/types/src/rendering/cell/cellPositionFeature.d.ts +32 -0
- package/dist/types/src/rendering/cell/highlightChangesApi.d.ts +3 -0
- package/dist/types/src/rendering/cell/highlightChangesModule.d.ts +7 -0
- package/dist/types/src/rendering/cellRenderers/animateShowChangeCellRenderer.d.ts +14 -0
- package/dist/types/src/rendering/cellRenderers/animateSlideCellRenderer.css-GENERATED.d.ts +1 -0
- package/dist/types/src/rendering/cellRenderers/animateSlideCellRenderer.d.ts +12 -0
- package/dist/types/src/rendering/cellRenderers/cellRendererModule.d.ts +6 -0
- package/dist/types/src/rendering/cellRenderers/checkboxCellRenderer.css-GENERATED.d.ts +1 -0
- package/dist/types/src/rendering/cellRenderers/iCellRenderer.d.ts +78 -0
- package/dist/types/src/rendering/features/positionableFeature.d.ts +93 -0
- package/dist/types/src/rendering/features/setLeftFeature.d.ts +20 -0
- package/dist/types/src/rendering/overlays/overlayComponent.d.ts +14 -0
- package/dist/types/src/rendering/overlays/overlayModule.d.ts +7 -0
- package/dist/types/src/rendering/overlays/overlayService.d.ts +31 -0
- package/dist/types/src/rendering/overlays/overlayWrapperComponent.css-GENERATED.d.ts +1 -0
- package/dist/types/src/rendering/overlays/overlayWrapperComponent.d.ts +26 -0
- package/dist/types/src/rendering/renderApi.d.ts +13 -0
- package/dist/types/src/rendering/renderModule.d.ts +6 -0
- package/dist/types/src/rendering/row/rowAutoHeightModule.d.ts +6 -0
- package/dist/types/src/rendering/row/rowAutoHeightService.d.ts +17 -0
- package/dist/types/src/rendering/row/rowComp.d.ts +20 -0
- package/dist/types/src/rendering/row/rowCtrl.d.ts +167 -0
- package/dist/types/src/rendering/rowContainerHeightService.d.ts +28 -0
- package/dist/types/src/rendering/rowRenderer.d.ts +157 -0
- package/dist/types/src/selection/baseSelectionService.d.ts +46 -0
- package/dist/types/src/selection/checkboxSelectionComponent.d.ts +28 -0
- package/dist/types/src/selection/rowRangeSelectionContext.d.ts +50 -0
- package/dist/types/src/selection/rowSelectionApi.d.ts +21 -0
- package/dist/types/src/selection/rowSelectionModule.d.ts +10 -0
- package/dist/types/src/selection/selectAllFeature.d.ts +29 -0
- package/dist/types/src/selection/selectionService.d.ts +70 -0
- package/dist/types/src/sort/rowNodeSorter.d.ts +18 -0
- package/dist/types/src/sort/sortIndicatorComp.d.ts +22 -0
- package/dist/types/src/sort/sortModule.d.ts +7 -0
- package/dist/types/src/sort/sortService.d.ts +39 -0
- package/dist/types/src/styling/cellCustomStyleFeature.d.ts +16 -0
- package/dist/types/src/styling/cellStyleService.d.ts +13 -0
- package/dist/types/src/styling/layoutFeature.d.ts +20 -0
- package/dist/types/src/styling/rowStyleService.d.ts +12 -0
- package/dist/types/src/styling/stylingModule.d.ts +11 -0
- package/dist/types/src/styling/stylingUtils.d.ts +8 -0
- package/dist/types/src/syncService.d.ts +11 -0
- package/dist/types/src/theming/Part.d.ts +64 -0
- package/dist/types/src/theming/Theme.d.ts +70 -0
- package/dist/types/src/theming/core/core-css.d.ts +550 -0
- package/dist/types/src/theming/core/core.css-GENERATED.d.ts +1 -0
- package/dist/types/src/theming/inject.d.ts +6 -0
- package/dist/types/src/theming/parts/checkbox-style/checkbox-style-default.css-GENERATED.d.ts +1 -0
- package/dist/types/src/theming/parts/checkbox-style/checkbox-styles.d.ts +15 -0
- package/dist/types/src/theming/parts/color-scheme/color-schemes.d.ts +69 -0
- package/dist/types/src/theming/parts/icon-set/alpine/icon-set-alpine.css-GENERATED.d.ts +1 -0
- package/dist/types/src/theming/parts/icon-set/alpine/icon-set-alpine.d.ts +1 -0
- package/dist/types/src/theming/parts/icon-set/icon-sets.d.ts +4 -0
- package/dist/types/src/theming/parts/icon-set/material/icon-set-material.css-GENERATED.d.ts +1 -0
- package/dist/types/src/theming/parts/icon-set/material/icon-set-material.d.ts +1 -0
- package/dist/types/src/theming/parts/icon-set/overrides/icon-overrides.d.ts +22 -0
- package/dist/types/src/theming/parts/icon-set/quartz/icon-set-quartz.d.ts +7 -0
- package/dist/types/src/theming/parts/icon-set/shared-icon-styles.css-GENERATED.d.ts +1 -0
- package/dist/types/src/theming/parts/input-style/input-style-base.css-GENERATED.d.ts +1 -0
- package/dist/types/src/theming/parts/input-style/input-style-bordered.css-GENERATED.d.ts +1 -0
- package/dist/types/src/theming/parts/input-style/input-style-underlined.css-GENERATED.d.ts +1 -0
- package/dist/types/src/theming/parts/input-style/input-styles.d.ts +134 -0
- package/dist/types/src/theming/parts/tab-style/tab-style-base.css-GENERATED.d.ts +1 -0
- package/dist/types/src/theming/parts/tab-style/tab-styles.d.ts +200 -0
- package/dist/types/src/theming/parts/theme/themes.d.ts +582 -0
- package/dist/types/src/theming/theme-types.d.ts +216 -0
- package/dist/types/src/theming/theme-utils.d.ts +12 -0
- package/dist/types/src/tooltip/tooltip.css-GENERATED.d.ts +1 -0
- package/dist/types/src/tooltip/tooltipFeature.d.ts +40 -0
- package/dist/types/src/tooltip/tooltipModule.d.ts +6 -0
- package/dist/types/src/tooltip/tooltipService.d.ts +17 -0
- package/dist/types/src/tooltip/tooltipStateManager.d.ts +63 -0
- package/dist/types/src/undoRedo/undoRedoService.d.ts +27 -0
- package/dist/types/src/utils/aria.d.ts +34 -0
- package/dist/types/src/utils/array.d.ts +8 -0
- package/dist/types/src/utils/browser.d.ts +12 -0
- package/dist/types/src/utils/changedPath.d.ts +21 -0
- package/dist/types/src/utils/dom.d.ts +94 -0
- package/dist/types/src/utils/event.d.ts +30 -0
- package/dist/types/src/utils/focus.d.ts +13 -0
- package/dist/types/src/utils/function.d.ts +27 -0
- package/dist/types/src/utils/generic.d.ts +12 -0
- package/dist/types/src/utils/icon.d.ts +16 -0
- package/dist/types/src/utils/keyboard.d.ts +14 -0
- package/dist/types/src/utils/number.d.ts +9 -0
- package/dist/types/src/utils/object.d.ts +3 -0
- package/dist/types/src/utils/promise.d.ts +13 -0
- package/dist/types/src/utils/string.d.ts +1 -0
- package/dist/types/src/validation/enterpriseModuleNames.d.ts +2 -0
- package/dist/types/src/validation/errorMessages/errorText.d.ts +599 -0
- package/dist/types/src/validation/logging.d.ts +24 -0
- package/dist/types/src/validation/resolvableModuleNames.d.ts +8 -0
- package/dist/types/src/validation/rules/colDefValidations.d.ts +3 -0
- package/dist/types/src/validation/rules/gridOptionsValidations.d.ts +3 -0
- package/dist/types/src/validation/rules/iconValidations.d.ts +5 -0
- package/dist/types/src/validation/rules/menuItemValidations.d.ts +3 -0
- package/dist/types/src/validation/rules/userCompValidations.d.ts +3 -0
- package/dist/types/src/validation/validationModule.d.ts +5 -0
- package/dist/types/src/validation/validationService.d.ts +36 -0
- package/dist/types/src/validation/validationTypes.d.ts +39 -0
- package/dist/types/src/valueService/cellApi.d.ts +4 -0
- package/dist/types/src/valueService/changeDetectionService.d.ts +8 -0
- package/dist/types/src/valueService/expressionService.d.ts +10 -0
- package/dist/types/src/valueService/valueModule.d.ts +20 -0
- package/dist/types/src/valueService/valueService.d.ts +45 -0
- package/dist/types/src/vanillaFrameworkOverrides.d.ts +16 -0
- package/dist/types/src/version.d.ts +1 -0
- package/dist/types/src/widgets/agAbstractLabel.css-GENERATED.d.ts +1 -0
- package/dist/types/src/widgets/agPickerField.css-GENERATED.d.ts +1 -0
- package/dist/types/src/widgets/agPickerField.d.ts +45 -0
- package/dist/types/src/widgets/agSelect.css-GENERATED.d.ts +1 -0
- package/dist/types/src/widgets/agSelect.d.ts +30 -0
- package/dist/types/src/widgets/agToggleButton.css-GENERATED.d.ts +1 -0
- package/dist/types/src/widgets/component.d.ts +77 -0
- package/dist/types/src/widgets/managedFocusFeature.d.ts +16 -0
- package/dist/types/src/widgets/popupModule.d.ts +5 -0
- package/dist/types/src/widgets/popupService.d.ts +71 -0
- package/dist/types/src/widgets/tabGuardCtrl.d.ts +58 -0
- package/dist/types/src/widgets/touchListener.d.ts +32 -0
- package/package.json +18 -13
- package/styles/_css-content.scss +34 -18
- package/styles/_index.scss +2 -2
- package/styles/ag-grid-no-native-widgets.css +17 -9
- package/styles/ag-grid-no-native-widgets.min.css +3 -3
- package/styles/ag-grid.css +17 -9
- package/styles/ag-grid.min.css +3 -3
- package/dist/types/client-side-row-model/clientSideRowModel/clientSideNodeManager.d.ts +0 -45
- package/dist/types/client-side-row-model/clientSideRowModel/clientSideRowModel.d.ts +0 -144
- package/dist/types/client-side-row-model/clientSideRowModel/clientSideRowModelApi.d.ts +0 -12
- package/dist/types/client-side-row-model/clientSideRowModel/filterStage.d.ts +0 -11
- package/dist/types/client-side-row-model/clientSideRowModel/flattenStage.d.ts +0 -13
- package/dist/types/client-side-row-model/clientSideRowModel/immutableService.d.ts +0 -15
- package/dist/types/client-side-row-model/clientSideRowModel/sortService.d.ts +0 -18
- package/dist/types/client-side-row-model/clientSideRowModel/sortStage.d.ts +0 -9
- package/dist/types/client-side-row-model/clientSideRowModelModule.d.ts +0 -3
- package/dist/types/client-side-row-model/main.d.ts +0 -1
- package/dist/types/client-side-row-model/version.d.ts +0 -1
- package/dist/types/core/alignedGridsModule.d.ts +0 -1
- package/dist/types/core/alignedGridsService.d.ts +0 -28
- package/dist/types/core/api/apiFunctionService.d.ts +0 -19
- package/dist/types/core/api/apiModule.d.ts +0 -10
- package/dist/types/core/api/cellApi.d.ts +0 -8
- package/dist/types/core/api/coreApi.d.ts +0 -9
- package/dist/types/core/api/eventApi.d.ts +0 -7
- package/dist/types/core/api/gridApi.d.ts +0 -924
- package/dist/types/core/api/gridApiFunctions.d.ts +0 -255
- package/dist/types/core/api/keyboardNavigationApi.d.ts +0 -10
- package/dist/types/core/api/menuApi.d.ts +0 -8
- package/dist/types/core/api/rowApi.d.ts +0 -21
- package/dist/types/core/api/rowModelHelperService.d.ts +0 -18
- package/dist/types/core/api/rowSelectionApi.d.ts +0 -16
- package/dist/types/core/api/sharedApiModule.d.ts +0 -2
- package/dist/types/core/cellNavigationService.d.ts +0 -32
- package/dist/types/core/columns/columnApi.d.ts +0 -63
- package/dist/types/core/columns/columnApplyStateService.d.ts +0 -70
- package/dist/types/core/columns/columnAutosizeService.d.ts +0 -29
- package/dist/types/core/columns/columnDefFactory.d.ts +0 -10
- package/dist/types/core/columns/columnEventDispatcher.d.ts +0 -32
- package/dist/types/core/columns/columnFactory.d.ts +0 -38
- package/dist/types/core/columns/columnGetStateService.d.ts +0 -13
- package/dist/types/core/columns/columnGroupStateService.d.ts +0 -21
- package/dist/types/core/columns/columnModel.d.ts +0 -130
- package/dist/types/core/columns/columnModule.d.ts +0 -2
- package/dist/types/core/columns/columnMoveService.d.ts +0 -21
- package/dist/types/core/columns/columnNameService.d.ts +0 -19
- package/dist/types/core/columns/columnSizeService.d.ts +0 -60
- package/dist/types/core/columns/columnUtils.d.ts +0 -10
- package/dist/types/core/columns/columnViewportService.d.ts +0 -39
- package/dist/types/core/columns/controlsColService.d.ts +0 -11
- package/dist/types/core/columns/dataTypeService.d.ts +0 -57
- package/dist/types/core/columns/funcColsService.d.ts +0 -52
- package/dist/types/core/columns/pivotResultColsService.d.ts +0 -24
- package/dist/types/core/columns/visibleColsService.d.ts +0 -84
- package/dist/types/core/components/componentUtil.d.ts +0 -15
- package/dist/types/core/components/framework/agComponentUtils.d.ts +0 -15
- package/dist/types/core/components/framework/componentMetadataProvider.d.ts +0 -19
- package/dist/types/core/components/framework/componentTypes.d.ts +0 -25
- package/dist/types/core/components/framework/frameworkComponentWrapper.d.ts +0 -26
- package/dist/types/core/components/framework/userComponentFactory.d.ts +0 -81
- package/dist/types/core/components/framework/userComponentRegistry.d.ts +0 -20
- package/dist/types/core/constants/direction.d.ts +0 -8
- package/dist/types/core/constants/keyCode.d.ts +0 -24
- package/dist/types/core/context/beanStub.d.ts +0 -83
- package/dist/types/core/context/context.d.ts +0 -254
- package/dist/types/core/ctrlsFactory.d.ts +0 -9
- package/dist/types/core/ctrlsService.d.ts +0 -55
- package/dist/types/core/dragAndDrop/dragAndDropImageComponent.d.ts +0 -24
- package/dist/types/core/dragAndDrop/dragAndDropService.d.ts +0 -183
- package/dist/types/core/dragAndDrop/dragApi.d.ts +0 -5
- package/dist/types/core/dragAndDrop/dragModule.d.ts +0 -1
- package/dist/types/core/dragAndDrop/dragService.d.ts +0 -59
- package/dist/types/core/edit/cellEditors/dateStringCellEditor.d.ts +0 -9
- package/dist/types/core/edit/cellEditors/selectCellEditor.d.ts +0 -20
- package/dist/types/core/edit/editApi.d.ts +0 -13
- package/dist/types/core/edit/editModule.d.ts +0 -9
- package/dist/types/core/edit/editService.d.ts +0 -27
- package/dist/types/core/edit/rowEditService.d.ts +0 -10
- package/dist/types/core/entities/agColumn.d.ts +0 -164
- package/dist/types/core/entities/agColumnGroup.d.ts +0 -58
- package/dist/types/core/entities/agProvidedColumnGroup.d.ts +0 -43
- package/dist/types/core/entities/cellPositionUtils.d.ts +0 -14
- package/dist/types/core/entities/colDef.d.ts +0 -866
- package/dist/types/core/entities/gridOptions.d.ts +0 -2320
- package/dist/types/core/entities/rowNode.d.ts +0 -321
- package/dist/types/core/entities/rowNodeEventThrottle.d.ts +0 -15
- package/dist/types/core/entities/rowPositionUtils.d.ts +0 -24
- package/dist/types/core/environment.d.ts +0 -33
- package/dist/types/core/eventService.d.ts +0 -22
- package/dist/types/core/eventTypes.d.ts +0 -8
- package/dist/types/core/events.d.ts +0 -887
- package/dist/types/core/filter/columnFilterApi.d.ts +0 -13
- package/dist/types/core/filter/columnFilterService.d.ts +0 -91
- package/dist/types/core/filter/filterManager.d.ts +0 -85
- package/dist/types/core/filter/filterModule.d.ts +0 -13
- package/dist/types/core/filter/filterWrapperComp.d.ts +0 -25
- package/dist/types/core/filter/floating/floatingFilter.d.ts +0 -80
- package/dist/types/core/filter/floating/floatingFilterMapper.d.ts +0 -3
- package/dist/types/core/filter/floating/provided/floatingFilterTextInputService.d.ts +0 -22
- package/dist/types/core/filter/floating/provided/readOnlyFloatingFilter.d.ts +0 -16
- package/dist/types/core/filter/floating/provided/simpleFloatingFilter.d.ts +0 -34
- package/dist/types/core/filter/floating/provided/textInputFloatingFilter.d.ts +0 -25
- package/dist/types/core/filter/provided/date/dateCompWrapper.d.ts +0 -26
- package/dist/types/core/filter/provided/date/dateFilter.d.ts +0 -48
- package/dist/types/core/filter/provided/date/dateFilterModelFormatter.d.ts +0 -14
- package/dist/types/core/filter/provided/date/dateFloatingFilter.d.ts +0 -31
- package/dist/types/core/filter/provided/date/defaultDateComponent.d.ts +0 -21
- package/dist/types/core/filter/provided/number/numberFilter.d.ts +0 -32
- package/dist/types/core/filter/provided/number/numberFloatingFilter.d.ts +0 -14
- package/dist/types/core/filter/provided/optionsFactory.d.ts +0 -15
- package/dist/types/core/filter/provided/providedFilter.d.ts +0 -88
- package/dist/types/core/filter/provided/simpleFilter.d.ts +0 -112
- package/dist/types/core/filter/provided/simpleFilterModelFormatter.d.ts +0 -16
- package/dist/types/core/filter/provided/text/textFilter.d.ts +0 -34
- package/dist/types/core/filter/provided/text/textFloatingFilter.d.ts +0 -13
- package/dist/types/core/filter/quickFilterService.d.ts +0 -34
- package/dist/types/core/focusService.d.ts +0 -109
- package/dist/types/core/grid.d.ts +0 -64
- package/dist/types/core/gridBodyComp/abstractFakeScrollComp.d.ts +0 -25
- package/dist/types/core/gridBodyComp/centerWidthFeature.d.ts +0 -12
- package/dist/types/core/gridBodyComp/fakeHScrollComp.d.ts +0 -24
- package/dist/types/core/gridBodyComp/fakeVScrollComp.d.ts +0 -15
- package/dist/types/core/gridBodyComp/gridBodyComp.d.ts +0 -20
- package/dist/types/core/gridBodyComp/gridBodyCtrl.d.ts +0 -107
- package/dist/types/core/gridBodyComp/gridBodyScrollFeature.d.ts +0 -75
- package/dist/types/core/gridBodyComp/mouseEventService.d.ts +0 -22
- package/dist/types/core/gridBodyComp/navigationService.d.ts +0 -61
- package/dist/types/core/gridBodyComp/pinnedWidthService.d.ts +0 -14
- package/dist/types/core/gridBodyComp/rowContainer/dragListenerFeature.d.ts +0 -13
- package/dist/types/core/gridBodyComp/rowContainer/rowContainerComp.d.ts +0 -21
- package/dist/types/core/gridBodyComp/rowContainer/rowContainerCtrl.d.ts +0 -82
- package/dist/types/core/gridBodyComp/rowContainer/rowContainerEventsFeature.d.ts +0 -38
- package/dist/types/core/gridBodyComp/rowContainer/setHeightFeature.d.ts +0 -11
- package/dist/types/core/gridBodyComp/rowContainer/setPinnedLeftWidthFeature.d.ts +0 -11
- package/dist/types/core/gridBodyComp/rowContainer/setPinnedRightWidthFeature.d.ts +0 -11
- package/dist/types/core/gridBodyComp/rowDragFeature.d.ts +0 -67
- package/dist/types/core/gridBodyComp/scrollVisibleService.d.ts +0 -31
- package/dist/types/core/gridBodyComp/viewportSizeFeature.d.ts +0 -32
- package/dist/types/core/gridComp/gridCtrl.d.ts +0 -51
- package/dist/types/core/gridCoreModule.d.ts +0 -7
- package/dist/types/core/gridDestroyService.d.ts +0 -11
- package/dist/types/core/gridOptionsService.d.ts +0 -104
- package/dist/types/core/gridOptionsUtils.d.ts +0 -55
- package/dist/types/core/headerRendering/cells/abstractCell/abstractHeaderCellCtrl.d.ts +0 -77
- package/dist/types/core/headerRendering/cells/column/headerCellComp.d.ts +0 -19
- package/dist/types/core/headerRendering/cells/column/headerCellCtrl.d.ts +0 -87
- package/dist/types/core/headerRendering/cells/column/headerComp.d.ts +0 -130
- package/dist/types/core/headerRendering/cells/column/resizeFeature.d.ts +0 -28
- package/dist/types/core/headerRendering/cells/column/selectAllFeature.d.ts +0 -35
- package/dist/types/core/headerRendering/cells/column/sortIndicatorComp.d.ts +0 -25
- package/dist/types/core/headerRendering/cells/column/standardMenu.d.ts +0 -26
- package/dist/types/core/headerRendering/cells/columnGroup/groupResizeFeature.d.ts +0 -51
- package/dist/types/core/headerRendering/cells/columnGroup/headerGroupCellCtrl.d.ts +0 -54
- package/dist/types/core/headerRendering/cells/columnGroup/headerGroupComp.d.ts +0 -44
- package/dist/types/core/headerRendering/cells/floatingFilter/headerFilterCellCtrl.d.ts +0 -43
- package/dist/types/core/headerRendering/cells/floatingFilter/iHeaderFilterCellComp.d.ts +0 -12
- package/dist/types/core/headerRendering/cells/hoverFeature.d.ts +0 -14
- package/dist/types/core/headerRendering/columnDrag/bodyDropPivotTarget.d.ts +0 -25
- package/dist/types/core/headerRendering/columnDrag/bodyDropTarget.d.ts +0 -37
- package/dist/types/core/headerRendering/columnDrag/moveColumnFeature.d.ts +0 -56
- package/dist/types/core/headerRendering/columnMoveHelper.d.ts +0 -40
- package/dist/types/core/headerRendering/common/headerNavigationService.d.ts +0 -32
- package/dist/types/core/headerRendering/common/headerPosition.d.ts +0 -28
- package/dist/types/core/headerRendering/common/horizontalResizeService.d.ts +0 -24
- package/dist/types/core/headerRendering/gridHeaderCtrl.d.ts +0 -31
- package/dist/types/core/headerRendering/row/headerRowComp.d.ts +0 -16
- package/dist/types/core/headerRendering/row/headerRowCtrl.d.ts +0 -67
- package/dist/types/core/headerRendering/rowContainer/headerRowContainerCtrl.d.ts +0 -53
- package/dist/types/core/interfaces/IRangeService.d.ts +0 -89
- package/dist/types/core/interfaces/IServerSideStore.d.ts +0 -65
- package/dist/types/core/interfaces/autoSizeStrategy.d.ts +0 -34
- package/dist/types/core/interfaces/dateComponent.d.ts +0 -43
- package/dist/types/core/interfaces/exportParams.d.ts +0 -153
- package/dist/types/core/interfaces/gridState.d.ts +0 -160
- package/dist/types/core/interfaces/groupCellRenderer.d.ts +0 -68
- package/dist/types/core/interfaces/iAutoColService.d.ts +0 -6
- package/dist/types/core/interfaces/iCallbackParams.d.ts +0 -231
- package/dist/types/core/interfaces/iCellEditor.d.ts +0 -94
- package/dist/types/core/interfaces/iChartOptions.d.ts +0 -95
- package/dist/types/core/interfaces/iClientSideRowModel.d.ts +0 -52
- package/dist/types/core/interfaces/iColumn.d.ts +0 -242
- package/dist/types/core/interfaces/iColumnChooserFactory.d.ts +0 -11
- package/dist/types/core/interfaces/iContextMenuFactory.d.ts +0 -6
- package/dist/types/core/interfaces/iDatasource.d.ts +0 -27
- package/dist/types/core/interfaces/iDetailGridApiService.d.ts +0 -7
- package/dist/types/core/interfaces/iExcelCreator.d.ts +0 -599
- package/dist/types/core/interfaces/iExpansionService.d.ts +0 -8
- package/dist/types/core/interfaces/iFilter.d.ts +0 -186
- package/dist/types/core/interfaces/iFrameworkOverrides.d.ts +0 -48
- package/dist/types/core/interfaces/iImmutableService.d.ts +0 -4
- package/dist/types/core/interfaces/iInfiniteRowModel.d.ts +0 -8
- package/dist/types/core/interfaces/iModule.d.ts +0 -38
- package/dist/types/core/interfaces/iRowModel.d.ts +0 -50
- package/dist/types/core/interfaces/iRowNode.d.ts +0 -279
- package/dist/types/core/interfaces/iRowNodeStage.d.ts +0 -14
- package/dist/types/core/interfaces/iSelectionService.d.ts +0 -48
- package/dist/types/core/interfaces/iServerSideDatasource.d.ts +0 -59
- package/dist/types/core/interfaces/iServerSideRowModel.d.ts +0 -38
- package/dist/types/core/interfaces/iSetFilter.d.ts +0 -203
- package/dist/types/core/interfaces/iShowRowGroupColsService.d.ts +0 -10
- package/dist/types/core/interfaces/iSideBar.d.ts +0 -62
- package/dist/types/core/interfaces/iSparklineCellRendererParams.d.ts +0 -438
- package/dist/types/core/interfaces/iStatusBarService.d.ts +0 -7
- package/dist/types/core/interfaces/iToolPanel.d.ts +0 -60
- package/dist/types/core/interfaces/masterDetail.d.ts +0 -49
- package/dist/types/core/interfaces/menuItem.d.ts +0 -136
- package/dist/types/core/interfaces/serverSideTransaction.d.ts +0 -61
- package/dist/types/core/localeService.d.ts +0 -6
- package/dist/types/core/main.d.ts +0 -282
- package/dist/types/core/misc/animationFrameService.d.ts +0 -36
- package/dist/types/core/misc/apiEventService.d.ts +0 -20
- package/dist/types/core/misc/expansionService.d.ts +0 -17
- package/dist/types/core/misc/frameworkEventListenerService.d.ts +0 -11
- package/dist/types/core/misc/menuService.d.ts +0 -98
- package/dist/types/core/misc/resizeObserverService.d.ts +0 -6
- package/dist/types/core/misc/state/stateModule.d.ts +0 -3
- package/dist/types/core/misc/state/stateService.d.ts +0 -67
- package/dist/types/core/modules/moduleNames.d.ts +0 -28
- package/dist/types/core/modules/moduleRegistry.d.ts +0 -43
- package/dist/types/core/pagination/pageBoundsListener.d.ts +0 -13
- package/dist/types/core/pagination/pageBoundsService.d.ts +0 -21
- package/dist/types/core/pagination/pageSizeSelector/pageSizeSelectorComp.d.ts +0 -24
- package/dist/types/core/pagination/paginationAutoPageSizeService.d.ts +0 -15
- package/dist/types/core/pagination/paginationComp.d.ts +0 -47
- package/dist/types/core/pagination/paginationModule.d.ts +0 -3
- package/dist/types/core/pagination/paginationService.d.ts +0 -54
- package/dist/types/core/pinnedRowModel/pinnedRowModel.d.ts +0 -35
- package/dist/types/core/pinnedRowModel/pinnedRowModule.d.ts +0 -1
- package/dist/types/core/propertyKeys.d.ts +0 -133
- package/dist/types/core/rendering/ariaAnnouncementService.d.ts +0 -18
- package/dist/types/core/rendering/autoWidthCalculator.d.ts +0 -19
- package/dist/types/core/rendering/cell/cellComp.d.ts +0 -60
- package/dist/types/core/rendering/cell/cellCtrl.d.ts +0 -166
- package/dist/types/core/rendering/cell/cellCustomStyleFeature.d.ts +0 -18
- package/dist/types/core/rendering/cell/cellKeyboardListenerFeature.d.ts +0 -26
- package/dist/types/core/rendering/cell/cellMouseListenerFeature.d.ts +0 -22
- package/dist/types/core/rendering/cell/cellPositionFeature.d.ts +0 -33
- package/dist/types/core/rendering/cell/cellRangeFeature.d.ts +0 -25
- package/dist/types/core/rendering/cellRenderers/animateShowChangeCellRenderer.d.ts +0 -17
- package/dist/types/core/rendering/cellRenderers/animateSlideCellRenderer.d.ts +0 -15
- package/dist/types/core/rendering/cellRenderers/iCellRenderer.d.ts +0 -75
- package/dist/types/core/rendering/cellRenderers/loadingCellRenderer.d.ts +0 -19
- package/dist/types/core/rendering/cellRenderers/skeletonCellRenderer.d.ts +0 -10
- package/dist/types/core/rendering/checkboxSelectionComponent.d.ts +0 -30
- package/dist/types/core/rendering/columnAnimationService.d.ts +0 -24
- package/dist/types/core/rendering/columnHoverService.d.ts +0 -11
- package/dist/types/core/rendering/features/positionableFeature.d.ts +0 -94
- package/dist/types/core/rendering/features/setLeftFeature.d.ts +0 -21
- package/dist/types/core/rendering/features/stickyRowFeature.d.ts +0 -54
- package/dist/types/core/rendering/overlays/overlayComponent.d.ts +0 -15
- package/dist/types/core/rendering/overlays/overlayModule.d.ts +0 -1
- package/dist/types/core/rendering/overlays/overlayService.d.ts +0 -37
- package/dist/types/core/rendering/overlays/overlayWrapperComponent.d.ts +0 -30
- package/dist/types/core/rendering/renderApi.d.ts +0 -14
- package/dist/types/core/rendering/renderModule.d.ts +0 -1
- package/dist/types/core/rendering/row/rowComp.d.ts +0 -21
- package/dist/types/core/rendering/row/rowCssClassCalculator.d.ts +0 -29
- package/dist/types/core/rendering/row/rowCtrl.d.ts +0 -188
- package/dist/types/core/rendering/row/rowDragComp.d.ts +0 -33
- package/dist/types/core/rendering/rowContainerHeightService.d.ts +0 -34
- package/dist/types/core/rendering/rowRenderer.d.ts +0 -190
- package/dist/types/core/rowNodeCache/iRowNodeBlock.d.ts +0 -24
- package/dist/types/core/rowNodeCache/rowNodeBlock.d.ts +0 -29
- package/dist/types/core/rowNodeCache/rowNodeBlockLoader.d.ts +0 -30
- package/dist/types/core/rowNodeCache/rowNodeBlockModule.d.ts +0 -1
- package/dist/types/core/rowNodes/rowNodeSorter.d.ts +0 -27
- package/dist/types/core/rowNodes/selectableService.d.ts +0 -15
- package/dist/types/core/selection/rowRangeSelectionContext.d.ts +0 -68
- package/dist/types/core/selection/selectionService.d.ts +0 -73
- package/dist/types/core/sortController.d.ts +0 -38
- package/dist/types/core/styling/layoutFeature.d.ts +0 -21
- package/dist/types/core/styling/stylingService.d.ts +0 -18
- package/dist/types/core/syncService.d.ts +0 -16
- package/dist/types/core/undoRedo/undoRedoService.d.ts +0 -35
- package/dist/types/core/utils/aria.d.ts +0 -33
- package/dist/types/core/utils/array.d.ts +0 -18
- package/dist/types/core/utils/browser.d.ts +0 -16
- package/dist/types/core/utils/changedPath.d.ts +0 -23
- package/dist/types/core/utils/dom.d.ts +0 -92
- package/dist/types/core/utils/event.d.ts +0 -29
- package/dist/types/core/utils/focus.d.ts +0 -3
- package/dist/types/core/utils/function.d.ts +0 -29
- package/dist/types/core/utils/generic.d.ts +0 -20
- package/dist/types/core/utils/icon.d.ts +0 -90
- package/dist/types/core/utils/keyboard.d.ts +0 -18
- package/dist/types/core/utils/number.d.ts +0 -14
- package/dist/types/core/utils/numberSequence.d.ts +0 -8
- package/dist/types/core/utils/object.d.ts +0 -10
- package/dist/types/core/utils/promise.d.ts +0 -16
- package/dist/types/core/utils/string.d.ts +0 -21
- package/dist/types/core/validation/rules/colDefValidations.d.ts +0 -3
- package/dist/types/core/validation/rules/gridOptionsValidations.d.ts +0 -183
- package/dist/types/core/validation/validationService.d.ts +0 -17
- package/dist/types/core/validation/validationTypes.d.ts +0 -34
- package/dist/types/core/valueService/changeDetectionService.d.ts +0 -13
- package/dist/types/core/valueService/expressionService.d.ts +0 -10
- package/dist/types/core/valueService/valueService.d.ts +0 -44
- package/dist/types/core/vanillaFrameworkOverrides.d.ts +0 -16
- package/dist/types/core/version.d.ts +0 -1
- package/dist/types/core/widgets/agPickerField.d.ts +0 -49
- package/dist/types/core/widgets/agSelect.d.ts +0 -29
- package/dist/types/core/widgets/component.d.ts +0 -95
- package/dist/types/core/widgets/managedFocusFeature.d.ts +0 -19
- package/dist/types/core/widgets/popupService.d.ts +0 -108
- package/dist/types/core/widgets/tabGuardCtrl.d.ts +0 -61
- package/dist/types/core/widgets/tooltipFeature.d.ts +0 -38
- package/dist/types/core/widgets/tooltipStateManager.d.ts +0 -72
- package/dist/types/core/widgets/touchListener.d.ts +0 -33
- package/dist/types/csv-export/csvExport/baseCreator.d.ts +0 -15
- package/dist/types/csv-export/csvExport/csvCreator.d.ts +0 -20
- package/dist/types/csv-export/csvExport/csvExportApi.d.ts +0 -3
- package/dist/types/csv-export/csvExport/downloader.d.ts +0 -3
- package/dist/types/csv-export/csvExport/gridSerializer.d.ts +0 -34
- package/dist/types/csv-export/csvExport/interfaces/index.d.ts +0 -38
- package/dist/types/csv-export/csvExport/sessions/baseGridSerializingSession.d.ts +0 -30
- package/dist/types/csv-export/csvExport/sessions/csvSerializingSession.d.ts +0 -21
- package/dist/types/csv-export/csvExport/xmlFactory.d.ts +0 -5
- package/dist/types/csv-export/csvExport/zipContainer/compress.d.ts +0 -4
- package/dist/types/csv-export/csvExport/zipContainer/convert.d.ts +0 -3
- package/dist/types/csv-export/csvExport/zipContainer/crcTable.d.ts +0 -1
- package/dist/types/csv-export/csvExport/zipContainer/zipContainer.d.ts +0 -20
- package/dist/types/csv-export/csvExport/zipContainer/zipContainerHelper.d.ts +0 -13
- package/dist/types/csv-export/csvExportModule.d.ts +0 -3
- package/dist/types/csv-export/main.d.ts +0 -9
- package/dist/types/csv-export/version.d.ts +0 -1
- package/dist/types/infinite-row-model/infiniteRowModel/infiniteBlock.d.ts +0 -31
- package/dist/types/infinite-row-model/infiniteRowModel/infiniteCache.d.ts +0 -47
- package/dist/types/infinite-row-model/infiniteRowModel/infiniteRowModel.d.ts +0 -50
- package/dist/types/infinite-row-model/infiniteRowModel/infiniteRowModelApi.d.ts +0 -4
- package/dist/types/infinite-row-model/infiniteRowModelModule.d.ts +0 -3
- package/dist/types/infinite-row-model/main.d.ts +0 -1
- package/dist/types/infinite-row-model/version.d.ts +0 -1
- package/dist/types/main.d.ts +0 -5
- package/dist/types/theming/Part.d.ts +0 -33
- package/dist/types/theming/Theme.d.ts +0 -39
- package/dist/types/theming/main.d.ts +0 -9
- package/dist/types/theming/styles/core/GENERATED-core.d.ts +0 -1
- package/dist/types/theming/styles/core/core-css.d.ts +0 -468
- package/dist/types/theming/styles/parts/checkbox-style/GENERATED-checkbox-style-default.d.ts +0 -1
- package/dist/types/theming/styles/parts/checkbox-style/checkbox-styles.d.ts +0 -56
- package/dist/types/theming/styles/parts/color-scheme/color-schemes.d.ts +0 -6
- package/dist/types/theming/styles/parts/icon-set/alpine/GENERATED-icon-set-alpine.d.ts +0 -1
- package/dist/types/theming/styles/parts/icon-set/alpine/icon-set-alpine.d.ts +0 -1
- package/dist/types/theming/styles/parts/icon-set/icon-sets.d.ts +0 -3
- package/dist/types/theming/styles/parts/icon-set/material/GENERATED-icon-set-material.d.ts +0 -1
- package/dist/types/theming/styles/parts/icon-set/material/icon-set-material.d.ts +0 -1
- package/dist/types/theming/styles/parts/icon-set/quartz/GENERATED-icon-set-quartz.d.ts +0 -1
- package/dist/types/theming/styles/parts/icon-set/quartz/icon-set-quartz.d.ts +0 -6
- package/dist/types/theming/styles/parts/input-style/GENERATED-input-style-base.d.ts +0 -1
- package/dist/types/theming/styles/parts/input-style/GENERATED-input-style-underlined.d.ts +0 -1
- package/dist/types/theming/styles/parts/input-style/input-styles.d.ts +0 -70
- package/dist/types/theming/styles/parts/tab-style/GENERATED-tab-style-base.d.ts +0 -1
- package/dist/types/theming/styles/parts/tab-style/tab-styles.d.ts +0 -101
- package/dist/types/theming/styles/parts/theme/themes.d.ts +0 -3
- package/dist/types/theming/theme-types.d.ts +0 -206
- package/dist/types/theming/theme-utils.d.ts +0 -8
- package/dist/types/theming/version.d.ts +0 -1
- /package/dist/types/{core → src}/api/apiUtils.d.ts +0 -0
- /package/dist/types/{core → src}/api/csrmSsrmSharedApi.d.ts +0 -0
- /package/dist/types/{core → src}/api/iApiFunction.d.ts +0 -0
- /package/dist/types/{core → src}/api/scrollApi.d.ts +0 -0
- /package/dist/types/{core → src}/api/ssrmInfiniteSharedApi.d.ts +0 -0
- /package/dist/types/{core → src}/autoScrollService.d.ts +0 -0
- /package/dist/types/{core → src}/columns/columnKeyCreator.d.ts +0 -0
- /package/dist/types/{core → src}/columns/groupInstanceIdCreator.d.ts +0 -0
- /package/dist/types/{core → src}/components/emptyBean.d.ts +0 -0
- /package/dist/types/{core → src}/components/framework/unwrapUserComp.d.ts +0 -0
- /package/dist/types/{core → src}/context/bean.d.ts +0 -0
- /package/dist/types/{core → src}/context/genericBean.d.ts +0 -0
- /package/dist/types/{core → src}/context/genericContext.d.ts +0 -0
- /package/dist/types/{core → src}/context/gridBeanComparator.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/checkboxCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/dateCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/iCellEditorInput.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/iDateCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/iDateStringCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/iLargeTextCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/iNumberCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/iSelectCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/iTextCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/largeTextCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/numberCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/popupEditorWrapper.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/simpleCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/textCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/entities/dataType.d.ts +0 -0
- /package/dist/types/{core → src}/entities/defaultColumnTypes.d.ts +0 -0
- /package/dist/types/{core → src}/filter/filterApi.d.ts +0 -0
- /package/dist/types/{core → src}/filter/filterLocaleText.d.ts +0 -0
- /package/dist/types/{core → src}/filter/floating/provided/iFloatingFilterInputService.d.ts +0 -0
- /package/dist/types/{core → src}/filter/floating/provided/providedFilterUtils.d.ts +0 -0
- /package/dist/types/{core → src}/filter/iColumnFilter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/date/dateFilterConstants.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/date/iDateFilter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/iProvidedFilter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/iScalarFilter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/iSimpleFilter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/number/iNumberFilter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/number/numberFilterConstants.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/number/numberFilterModelFormatter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/number/numberFilterUtils.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/scalarFilter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/text/iTextFilter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/text/textFilterConstants.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/text/textFilterModelFormatter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/text/textFilterUtils.d.ts +0 -0
- /package/dist/types/{core → src}/filter/quickFilterApi.d.ts +0 -0
- /package/dist/types/{core → src}/gridComp/gridComp.d.ts +0 -0
- /package/dist/types/{core → src}/headerRendering/cells/abstractCell/abstractHeaderCellComp.d.ts +0 -0
- /package/dist/types/{core → src}/headerRendering/cells/columnGroup/groupWidthFeature.d.ts +0 -0
- /package/dist/types/{core → src}/headerRendering/cells/columnGroup/headerGroupCellComp.d.ts +0 -0
- /package/dist/types/{core → src}/headerRendering/cells/cssClassApplier.d.ts +0 -0
- /package/dist/types/{core → src}/headerRendering/cells/floatingFilter/headerFilterCellComp.d.ts +0 -0
- /package/dist/types/{core → src}/headerRendering/gridHeaderComp.d.ts +0 -0
- /package/dist/types/{core → src}/headerRendering/rowContainer/headerRowContainerComp.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/IChartService.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/advancedFilterModel.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/agFieldParams.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/brandedType.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iAdvancedFilterBuilderParams.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iAdvancedFilterCtrl.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iAdvancedFilterService.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iAfterGuiAttachedParams.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iAggFuncService.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iAggregationStage.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iAlignedGrid.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iCellEditorRenderer.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iClipboardService.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iColumnToolPanel.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iColumnVO.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iCommon.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iComponent.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iCsvCreator.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iEventEmitter.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iFiltersToolPanel.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iFocusableContainer.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iMenuFactory.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iMultiFilter.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iPivotColDefService.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iPopupComponent.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iRichCellEditorParams.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iServerSideSelection.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iStatusPanel.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iViewportDatasource.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iWatermark.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iXmlFactory.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/renderStatusService.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/rowDataTransaction.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/rowNodeTransaction.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/selectionState.d.ts +0 -0
- /package/dist/types/{core → src}/localEventService.d.ts +0 -0
- /package/dist/types/{core → src}/misc/state/stateApi.d.ts +0 -0
- /package/dist/types/{core → src}/misc/state/stateModelMigration.d.ts +0 -0
- /package/dist/types/{core → src}/pagination/paginationApi.d.ts +0 -0
- /package/dist/types/{core → src}/pinnedRowModel/pinnedRowApi.d.ts +0 -0
- /package/dist/types/{core → src}/rendering/cellRenderers/checkboxCellRenderer.d.ts +0 -0
- /package/dist/types/{core → src}/rendering/cssClassManager.d.ts +0 -0
- /package/dist/types/{core → src}/rendering/dndSourceComp.d.ts +0 -0
- /package/dist/types/{core → src}/rendering/overlays/loadingOverlayComponent.d.ts +0 -0
- /package/dist/types/{core → src}/rendering/overlays/noRowsOverlayComponent.d.ts +0 -0
- /package/dist/types/{core → src}/rendering/overlays/overlayApi.d.ts +0 -0
- /package/dist/types/{core/api → src/sort}/sortApi.d.ts +0 -0
- /package/dist/types/{theming/styles → src/theming}/parts/icon-set/quartz/quartz-icon-data.d.ts +0 -0
- /package/dist/types/{theming/styles/parts/tab-style/GENERATED-tab-style-rolodex.d.ts → src/theming/parts/tab-style/tab-style-rolodex.css-GENERATED.d.ts} +0 -0
- /package/dist/types/{core/rendering → src/tooltip}/tooltipComponent.d.ts +0 -0
- /package/dist/types/{core → src}/undoRedo/iUndoRedo.d.ts +0 -0
- /package/dist/types/{core → src}/undoRedo/undoRedoStack.d.ts +0 -0
- /package/dist/types/{core → src}/utils/date.d.ts +0 -0
- /package/dist/types/{core → src}/utils/fuzzyMatch.d.ts +0 -0
- /package/dist/types/{core → src}/utils/mouse.d.ts +0 -0
- /package/dist/types/{core → src}/validation/apiFunctionValidator.d.ts +0 -0
- /package/dist/types/{core → src}/valueService/valueCache.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agAbstractField.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agAbstractInputField.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agAbstractLabel.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agCheckbox.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agInputDateField.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agInputNumberField.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agInputTextArea.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agInputTextField.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agList.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agRadioButton.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agToggleButton.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/popupComponent.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/tabGuardComp.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/tabGuardFeature.d.ts +0 -0
|
@@ -0,0 +1,599 @@
|
|
|
1
|
+
import type { UserComponentName } from '../../context/context';
|
|
2
|
+
import type { Column } from '../../interfaces/iColumn';
|
|
3
|
+
import type { ModuleName, ValidationModuleName } from '../../interfaces/iModule';
|
|
4
|
+
import type { RowModelType } from '../../interfaces/iRowModel';
|
|
5
|
+
import type { RowNodeEventType } from '../../interfaces/iRowNode';
|
|
6
|
+
export declare const moduleImportMsg: (moduleNames: ModuleName[]) => string;
|
|
7
|
+
/**
|
|
8
|
+
* NOTES on setting console messages:
|
|
9
|
+
* 1. The message is a function that returns either a string or an array of any type.
|
|
10
|
+
* 2. Returning an array enables the console to log actual objects / numbers / booleans nicely as this will be spread to the underlying console call instead of being cast to a string.
|
|
11
|
+
* 3. Each entry should be followed by as const so that the IDE hover shows the actual message to aid devs
|
|
12
|
+
*/
|
|
13
|
+
export declare const AG_GRID_ERRORS: {
|
|
14
|
+
1: () => "`rowData` must be an array";
|
|
15
|
+
2: ({ nodeId }: {
|
|
16
|
+
nodeId: string | undefined;
|
|
17
|
+
}) => `Duplicate node id '${string}' detected from getRowId callback, this could cause issues in your grid.`;
|
|
18
|
+
3: () => "Calling gridApi.resetRowHeights() makes no sense when using Auto Row Height.";
|
|
19
|
+
4: ({ id }: {
|
|
20
|
+
id: string;
|
|
21
|
+
}) => `Could not find row id=${string}, data item was not found for this id`;
|
|
22
|
+
5: ({ data }: {
|
|
23
|
+
data: any;
|
|
24
|
+
}) => readonly ["Could not find data item as object was not found.", any, " Consider using getRowId to help the Grid find matching row data"];
|
|
25
|
+
6: () => "'groupHideOpenParents' only works when specifying specific columns for 'colDef.showRowGroup'";
|
|
26
|
+
7: () => "Pivoting is not supported with aligned grids as it may produce different columns in each grid.";
|
|
27
|
+
8: ({ key }: {
|
|
28
|
+
key: string;
|
|
29
|
+
}) => `Unknown key for navigation ${string}`;
|
|
30
|
+
9: ({ variable }: {
|
|
31
|
+
variable: {
|
|
32
|
+
cssName: string;
|
|
33
|
+
defaultValue: number;
|
|
34
|
+
};
|
|
35
|
+
}) => `No value for ${string}. This usually means that the grid has been initialised before styles have been loaded. The default value of ${number} will be used and updated when styles load.`;
|
|
36
|
+
10: ({ eventType }: {
|
|
37
|
+
eventType: RowNodeEventType;
|
|
38
|
+
}) => string;
|
|
39
|
+
11: () => "No gridOptions provided to createGrid";
|
|
40
|
+
12: ({ colKey }: {
|
|
41
|
+
colKey: string | Column;
|
|
42
|
+
}) => readonly ["column ", string | Column<any>, " not found"];
|
|
43
|
+
13: () => "Could not find rowIndex, this means tasks are being executed on a rowNode that has been removed from the grid.";
|
|
44
|
+
14: ({ groupPrefix }: {
|
|
45
|
+
groupPrefix: string;
|
|
46
|
+
}) => `Row IDs cannot start with ${string}, this is a reserved prefix for AG Grid's row grouping feature.`;
|
|
47
|
+
15: ({ expression }: {
|
|
48
|
+
expression: any;
|
|
49
|
+
}) => readonly ["value should be either a string or a function", any];
|
|
50
|
+
16: ({ expression, params, e }: {
|
|
51
|
+
expression: string;
|
|
52
|
+
params: any;
|
|
53
|
+
e: any;
|
|
54
|
+
}) => readonly ["Processing of the expression failed", "Expression = ", string, "Params = ", any, "Exception = ", any];
|
|
55
|
+
17: () => "you need either field or valueSetter set on colDef for editing to work";
|
|
56
|
+
18: () => "alignedGrids contains an undefined option.";
|
|
57
|
+
19: () => "alignedGrids - No api found on the linked grid.";
|
|
58
|
+
20: () => "You may want to configure via a callback to avoid setup race conditions:\n \"alignedGrids: () => [linkedGrid]\"";
|
|
59
|
+
21: () => "pivoting is not supported with aligned grids. You can only use one of these features at a time in a grid.";
|
|
60
|
+
22: ({ key }: {
|
|
61
|
+
key: string;
|
|
62
|
+
}) => `${string} is an initial property and cannot be updated.`;
|
|
63
|
+
23: () => "The return of `getRowHeight` cannot be zero. If the intention is to hide rows, use a filter instead.";
|
|
64
|
+
24: () => "row height must be a number if not using standard row model";
|
|
65
|
+
25: ({ id }: {
|
|
66
|
+
id: any;
|
|
67
|
+
}) => readonly ["The getRowId callback must return a string. The ID ", any, " is being cast to a string."];
|
|
68
|
+
26: ({ fnName, preDestroyLink }: {
|
|
69
|
+
fnName: string;
|
|
70
|
+
preDestroyLink: string;
|
|
71
|
+
}) => `Grid API function ${string}() cannot be called as the grid has been destroyed.\n Either clear local references to the grid api, when it is destroyed, or check gridApi.isDestroyed() to avoid calling methods against a destroyed grid.\n To run logic when the grid is about to be destroyed use the gridPreDestroy event. See: ${string}`;
|
|
72
|
+
27: ({ fnName, module }: {
|
|
73
|
+
fnName: string;
|
|
74
|
+
module: string;
|
|
75
|
+
}) => `API function '${string}' not registered to module '${string}'`;
|
|
76
|
+
28: () => "setRowCount cannot be used while using row grouping.";
|
|
77
|
+
29: () => "tried to call sizeColumnsToFit() but the grid is coming back with zero width, maybe the grid is not visible yet on the screen?";
|
|
78
|
+
30: ({ toIndex }: {
|
|
79
|
+
toIndex: number;
|
|
80
|
+
}) => readonly ["tried to insert columns in invalid location, toIndex = ", number, "remember that you should not count the moving columns when calculating the new index"];
|
|
81
|
+
31: () => "infinite loop in resizeColumnSets";
|
|
82
|
+
32: () => "applyColumnState() - the state attribute should be an array, however an array was not found. Please provide an array of items (one for each col you want to change) for state.";
|
|
83
|
+
33: () => "stateItem.aggFunc must be a string. if using your own aggregation functions, register the functions first before using them in get/set state. This is because it is intended for the column state to be stored and retrieved as simple JSON.";
|
|
84
|
+
34: ({ key }: {
|
|
85
|
+
key: string;
|
|
86
|
+
}) => `the column type '${string}' is a default column type and cannot be overridden.`;
|
|
87
|
+
35: () => "Column type definitions 'columnTypes' with a 'type' attribute are not supported because a column type cannot refer to another column type. Only column definitions 'columnDefs' can use the 'type' attribute to refer to a column type.";
|
|
88
|
+
36: ({ t }: {
|
|
89
|
+
t: string;
|
|
90
|
+
}) => string;
|
|
91
|
+
37: () => "Changing the column pinning status is not allowed with domLayout='print'";
|
|
92
|
+
38: ({ iconName }: {
|
|
93
|
+
iconName: string;
|
|
94
|
+
}) => `provided icon '${string}' needs to be a string or a function`;
|
|
95
|
+
39: () => "Applying column order broke a group where columns should be married together. Applying new order has been discarded.";
|
|
96
|
+
40: ({ e, method }: {
|
|
97
|
+
e: any;
|
|
98
|
+
method: string;
|
|
99
|
+
}) => `${any}\n${string}`;
|
|
100
|
+
41: () => "Browser did not allow document.execCommand('copy'). Ensure 'api.copySelectedRowsToClipboard() is invoked via a user event, i.e. button click, otherwise the browser will prevent it for security reasons.";
|
|
101
|
+
42: () => "Browser does not support document.execCommand('copy') for clipboard operations";
|
|
102
|
+
43: ({ iconName }: {
|
|
103
|
+
iconName: string;
|
|
104
|
+
}) => `As of v33, icon '${string}' is deprecated. Use the icon CSS name instead.`;
|
|
105
|
+
44: () => "Data type definition hierarchies (via the \"extendsDataType\" property) cannot contain circular references.";
|
|
106
|
+
45: ({ parentCellDataType }: {
|
|
107
|
+
parentCellDataType: string;
|
|
108
|
+
}) => `The data type definition ${string} does not exist.`;
|
|
109
|
+
46: () => "The \"baseDataType\" property of a data type definition must match that of its parent.";
|
|
110
|
+
47: ({ cellDataType }: {
|
|
111
|
+
cellDataType: string;
|
|
112
|
+
}) => `Missing data type definition - "${string}"`;
|
|
113
|
+
48: ({ property }: {
|
|
114
|
+
property: string;
|
|
115
|
+
}) => `Cell data type is "object" but no Value ${string} has been provided. Please either provide an object data type definition with a Value ${string}, or set "colDef.value${string}"`;
|
|
116
|
+
49: ({ methodName }: {
|
|
117
|
+
methodName: string;
|
|
118
|
+
}) => `Framework component is missing the method ${string}()`;
|
|
119
|
+
50: ({ compName }: {
|
|
120
|
+
compName: string | undefined;
|
|
121
|
+
}) => `Could not find component ${string}, did you forget to configure this component?`;
|
|
122
|
+
51: () => "Export cancelled. Export is not allowed as per your configuration.";
|
|
123
|
+
52: () => "There is no `window` associated with the current `document`";
|
|
124
|
+
53: () => "unknown value type during csv conversion";
|
|
125
|
+
54: () => "Could not find document body, it is needed for drag and drop and context menu.";
|
|
126
|
+
55: () => "addRowDropZone - A container target needs to be provided";
|
|
127
|
+
56: () => "addRowDropZone - target already exists in the list of DropZones. Use `removeRowDropZone` before adding it again.";
|
|
128
|
+
57: () => "unable to show popup filter, filter instantiation failed";
|
|
129
|
+
58: () => "no values found for select cellEditor";
|
|
130
|
+
59: () => "cannot select pinned rows";
|
|
131
|
+
60: () => "cannot select node until it has finished loading";
|
|
132
|
+
61: () => "since version v32.2.0, rowNode.isFullWidthCell() has been deprecated. Instead check `rowNode.detail` followed by the user provided `isFullWidthRow` grid option.";
|
|
133
|
+
62: ({ colId }: {
|
|
134
|
+
colId: string;
|
|
135
|
+
}) => `setFilterModel() - no column found for colId: ${string}`;
|
|
136
|
+
63: ({ colId }: {
|
|
137
|
+
colId: string;
|
|
138
|
+
}) => `setFilterModel() - unable to fully apply model, filtering disabled for colId: ${string}`;
|
|
139
|
+
64: ({ colId }: {
|
|
140
|
+
colId: string;
|
|
141
|
+
}) => `setFilterModel() - unable to fully apply model, unable to create filter for colId: ${string}`;
|
|
142
|
+
65: () => "filter missing setModel method, which is needed for setFilterModel";
|
|
143
|
+
66: () => "filter API missing getModel method, which is needed for getFilterModel";
|
|
144
|
+
67: () => "Filter is missing isFilterActive() method";
|
|
145
|
+
68: () => "Column Filter API methods have been disabled as Advanced Filters are enabled.";
|
|
146
|
+
69: ({ guiFromFilter }: {
|
|
147
|
+
guiFromFilter: any;
|
|
148
|
+
}) => `getGui method from filter returned ${any}; it should be a DOM element.`;
|
|
149
|
+
70: ({ newFilter }: {
|
|
150
|
+
newFilter: any;
|
|
151
|
+
}) => "Grid option quickFilterText only supports string inputs, received: string" | "Grid option quickFilterText only supports string inputs, received: number" | "Grid option quickFilterText only supports string inputs, received: bigint" | "Grid option quickFilterText only supports string inputs, received: boolean" | "Grid option quickFilterText only supports string inputs, received: symbol" | "Grid option quickFilterText only supports string inputs, received: undefined" | "Grid option quickFilterText only supports string inputs, received: object" | "Grid option quickFilterText only supports string inputs, received: function";
|
|
152
|
+
71: () => "debounceMs is ignored when apply button is present";
|
|
153
|
+
72: ({ keys }: {
|
|
154
|
+
keys: string[];
|
|
155
|
+
}) => readonly ["ignoring FilterOptionDef as it doesn't contain one of ", string[]];
|
|
156
|
+
73: () => "invalid FilterOptionDef supplied as it doesn't contain a 'displayKey'";
|
|
157
|
+
74: () => "no filter options for filter";
|
|
158
|
+
75: () => "Unknown button type specified";
|
|
159
|
+
76: ({ filterModelType }: {
|
|
160
|
+
filterModelType: any;
|
|
161
|
+
}) => readonly ["Unexpected type of filter \"", any, "\", it looks like the filter was configured with incorrect Filter Options"];
|
|
162
|
+
77: () => "Filter model is missing 'conditions'";
|
|
163
|
+
78: () => "Filter Model contains more conditions than \"filterParams.maxNumConditions\". Additional conditions have been ignored.";
|
|
164
|
+
79: () => "\"filterParams.maxNumConditions\" must be greater than or equal to zero.";
|
|
165
|
+
80: () => "\"filterParams.numAlwaysVisibleConditions\" must be greater than or equal to zero.";
|
|
166
|
+
81: () => "\"filterParams.numAlwaysVisibleConditions\" cannot be greater than \"filterParams.maxNumConditions\".";
|
|
167
|
+
82: ({ param }: {
|
|
168
|
+
param: any;
|
|
169
|
+
}) => `DateFilter ${any} is not a number`;
|
|
170
|
+
83: () => "DateFilter minValidYear should be <= maxValidYear";
|
|
171
|
+
84: () => "DateFilter minValidDate should be <= maxValidDate";
|
|
172
|
+
85: () => "DateFilter should not have both minValidDate and minValidYear parameters set at the same time! minValidYear will be ignored.";
|
|
173
|
+
86: () => "DateFilter should not have both maxValidDate and maxValidYear parameters set at the same time! maxValidYear will be ignored.";
|
|
174
|
+
87: () => "DateFilter parameter minValidDate should always be lower than or equal to parameter maxValidDate.";
|
|
175
|
+
88: ({ index }: {
|
|
176
|
+
index: number;
|
|
177
|
+
}) => `Invalid row index for ensureIndexVisible: ${number}`;
|
|
178
|
+
89: () => "A template was provided for Header Group Comp - templates are only supported for Header Comps (not groups)";
|
|
179
|
+
90: () => "datasource is missing getRows method";
|
|
180
|
+
91: () => "Filter is missing method doesFilterPass";
|
|
181
|
+
92: ({ methodName }: {
|
|
182
|
+
methodName: string;
|
|
183
|
+
}) => `AnimationFrameService.${string} called but animation frames are off`;
|
|
184
|
+
93: () => "cannot add multiple ranges when `cellSelection.suppressMultiRanges = true`";
|
|
185
|
+
94: ({ paginationPageSizeOption, pageSizeSet, pageSizesSet, pageSizeOptions, }: {
|
|
186
|
+
paginationPageSizeOption: number;
|
|
187
|
+
pageSizeSet: boolean;
|
|
188
|
+
pageSizesSet: any;
|
|
189
|
+
pageSizeOptions: any[];
|
|
190
|
+
}) => `'paginationPageSize=${number}', but ${number} is not included in paginationPageSizeSelector=[${string}].` | `'paginationPageSize=${number}', but ${number} is not included in the default paginationPageSizeSelector=[${string}].` | `'paginationPageSize=${number}' (default value), but ${number} is not included in paginationPageSizeSelector=[${string}].` | `'paginationPageSize=${number}' (default value), but ${number} is not included in the default paginationPageSizeSelector=[${string}].`;
|
|
191
|
+
95: ({ paginationPageSizeOption, paginationPageSizeSelector, }: {
|
|
192
|
+
paginationPageSizeOption: number;
|
|
193
|
+
paginationPageSizeSelector: string;
|
|
194
|
+
}) => `Either set '${string}' to an array that includes ${number} or to 'false' to disable the page size selector.`;
|
|
195
|
+
96: ({ id, data }: {
|
|
196
|
+
id: string;
|
|
197
|
+
data: any;
|
|
198
|
+
}) => readonly ["Duplicate ID", string, "found for pinned row with data", any, "When `getRowId` is defined, it must return unique IDs for all pinned rows. Use the `rowPinned` parameter."];
|
|
199
|
+
97: ({ colId }: {
|
|
200
|
+
colId: string;
|
|
201
|
+
}) => `cellEditor for column ${string} is missing getGui() method`;
|
|
202
|
+
98: () => "popup cellEditor does not work with fullRowEdit - you cannot use them both - either turn off fullRowEdit, or stop using popup editors.";
|
|
203
|
+
99: () => "Since v32, `api.hideOverlay()` does not hide the loading overlay when `loading=true`. Set `loading=false` instead.";
|
|
204
|
+
100: ({ rowModelType }: {
|
|
205
|
+
rowModelType: RowModelType;
|
|
206
|
+
}) => "selectAll only available when rowModelType='clientSide', ie not clientSide" | "selectAll only available when rowModelType='clientSide', ie not infinite" | "selectAll only available when rowModelType='clientSide', ie not viewport" | "selectAll only available when rowModelType='clientSide', ie not serverSide";
|
|
207
|
+
101: ({ propertyName, componentName, agGridDefaults, jsComps, }: {
|
|
208
|
+
propertyName: string;
|
|
209
|
+
componentName: string;
|
|
210
|
+
agGridDefaults: {
|
|
211
|
+
agDragAndDropImage?: any;
|
|
212
|
+
agColumnHeader?: any;
|
|
213
|
+
agColumnGroupHeader?: any;
|
|
214
|
+
agSortIndicator?: any;
|
|
215
|
+
agAnimateShowChangeCellRenderer?: any;
|
|
216
|
+
agAnimateSlideCellRenderer?: any;
|
|
217
|
+
agLoadingCellRenderer?: any;
|
|
218
|
+
agSkeletonCellRenderer?: any;
|
|
219
|
+
agCheckboxCellRenderer?: any;
|
|
220
|
+
agLoadingOverlay?: any;
|
|
221
|
+
agNoRowsOverlay?: any;
|
|
222
|
+
agTooltipComponent?: any;
|
|
223
|
+
agReadOnlyFloatingFilter?: any;
|
|
224
|
+
agTextColumnFilter?: any;
|
|
225
|
+
agNumberColumnFilter?: any;
|
|
226
|
+
agDateColumnFilter?: any;
|
|
227
|
+
agDateInput?: any;
|
|
228
|
+
agTextColumnFloatingFilter?: any;
|
|
229
|
+
agNumberColumnFloatingFilter?: any;
|
|
230
|
+
agDateColumnFloatingFilter?: any;
|
|
231
|
+
agMultiColumnFilter?: any;
|
|
232
|
+
agMultiColumnFloatingFilter?: any;
|
|
233
|
+
agGroupColumnFilter?: any;
|
|
234
|
+
agGroupColumnFloatingFilter?: any;
|
|
235
|
+
agSetColumnFilter?: any;
|
|
236
|
+
agSetColumnFloatingFilter?: any;
|
|
237
|
+
agCellEditor?: any;
|
|
238
|
+
agSelectCellEditor?: any;
|
|
239
|
+
agTextCellEditor?: any;
|
|
240
|
+
agNumberCellEditor?: any;
|
|
241
|
+
agDateCellEditor?: any;
|
|
242
|
+
agDateStringCellEditor?: any;
|
|
243
|
+
agCheckboxCellEditor?: any;
|
|
244
|
+
agLargeTextCellEditor?: any;
|
|
245
|
+
agRichSelect?: any;
|
|
246
|
+
agRichSelectCellEditor?: any;
|
|
247
|
+
agMenuItem?: any;
|
|
248
|
+
agColumnsToolPanel?: any;
|
|
249
|
+
agFiltersToolPanel?: any;
|
|
250
|
+
agGroupRowRenderer?: any;
|
|
251
|
+
agGroupCellRenderer?: any;
|
|
252
|
+
agDetailCellRenderer?: any;
|
|
253
|
+
agSparklineCellRenderer?: any;
|
|
254
|
+
agAggregationComponent?: any;
|
|
255
|
+
agSelectedRowCountComponent?: any;
|
|
256
|
+
agTotalRowCountComponent?: any;
|
|
257
|
+
agFilteredRowCountComponent?: any;
|
|
258
|
+
agTotalAndFilteredRowCountComponent?: any;
|
|
259
|
+
};
|
|
260
|
+
jsComps: {
|
|
261
|
+
[key: string]: any;
|
|
262
|
+
};
|
|
263
|
+
}) => string[];
|
|
264
|
+
102: () => "selecting just filtered only works when gridOptions.rowModelType='clientSide'";
|
|
265
|
+
103: () => "Invalid selection state. When using client-side row model, the state must conform to `string[]`.";
|
|
266
|
+
104: ({ value, param }: {
|
|
267
|
+
value: number;
|
|
268
|
+
param: string;
|
|
269
|
+
}) => `Numeric value ${number} passed to ${string} param will be interpreted as ${number} seconds. If this is intentional use "${number}s" to silence this warning.`;
|
|
270
|
+
105: ({ e }: {
|
|
271
|
+
e: any;
|
|
272
|
+
}) => readonly ["chart rendering failed", any];
|
|
273
|
+
106: () => `Theming API and Legacy Themes are both used in the same page. A Theming API theme has been provided to the 'theme' grid option, but the file (ag-grid.css) is also included and will cause styling issues. Remove ag-grid.css from the page. See the migration guide: ${string}/theming-migration/`;
|
|
274
|
+
107: ({ key, value }: {
|
|
275
|
+
key: string;
|
|
276
|
+
value: unknown;
|
|
277
|
+
}) => `Invalid value for theme param ${string} - ${string}`;
|
|
278
|
+
108: ({ e }: {
|
|
279
|
+
e: any;
|
|
280
|
+
}) => readonly ["chart update failed", any];
|
|
281
|
+
109: ({ aggFuncOrString }: {
|
|
282
|
+
aggFuncOrString: any;
|
|
283
|
+
}) => `unrecognised aggregation function ${any}`;
|
|
284
|
+
110: () => "groupHideOpenParents only works when specifying specific columns for colDef.showRowGroup";
|
|
285
|
+
111: () => "Invalid selection state. When `groupSelectsChildren` is enabled, the state must conform to `IServerSideGroupSelectionState`.";
|
|
286
|
+
113: () => "Set Filter cannot initialise because you are using a row model that does not contain all rows in the browser. Either use a different filter type, or configure Set Filter such that you provide it with values";
|
|
287
|
+
114: ({ component }: {
|
|
288
|
+
component: string;
|
|
289
|
+
}) => `Could not find component with name of ${string}. Is it in Vue.components?`;
|
|
290
|
+
115: () => "The provided selection state should be an object.";
|
|
291
|
+
116: () => "Invalid selection state. The state must conform to `IServerSideSelectionState`.";
|
|
292
|
+
117: () => "selectAll must be of boolean type.";
|
|
293
|
+
118: () => "Infinite scrolling must be enabled in order to set the row count.";
|
|
294
|
+
119: () => string;
|
|
295
|
+
120: () => string;
|
|
296
|
+
121: () => "a column you are grouping or pivoting by has objects as values. If you want to group by complex objects then either a) use a colDef.keyCreator (see AG Grid docs) or b) to toString() on the object to return a key";
|
|
297
|
+
122: () => "could not find the document, document is empty";
|
|
298
|
+
123: () => "Advanced Filter is only supported with the Client-Side Row Model or Server-Side Row Model.";
|
|
299
|
+
124: () => "No active charts to update.";
|
|
300
|
+
125: ({ chartId }: {
|
|
301
|
+
chartId: string;
|
|
302
|
+
}) => `Unable to update chart. No active chart found with ID: ${string}.`;
|
|
303
|
+
126: () => "unable to restore chart as no chart model is provided";
|
|
304
|
+
127: ({ allRange }: {
|
|
305
|
+
allRange?: boolean | undefined;
|
|
306
|
+
}) => "unable to create chart as there are no columns in the grid." | "unable to create chart as no range is selected.";
|
|
307
|
+
128: ({ feature }: {
|
|
308
|
+
feature: string;
|
|
309
|
+
}) => `${string} is only available if using 'multiRow' selection mode.`;
|
|
310
|
+
129: ({ feature, rowModel }: {
|
|
311
|
+
feature: string;
|
|
312
|
+
rowModel: string;
|
|
313
|
+
}) => `${string} is only available if using 'clientSide' or 'serverSide' rowModelType, you are using ${string}.`;
|
|
314
|
+
130: () => "cannot multi select unless selection mode is \"multiRow\"";
|
|
315
|
+
131: () => "cannot range select while selecting multiple rows";
|
|
316
|
+
132: () => "Row selection features are not available unless `rowSelection` is enabled.";
|
|
317
|
+
133: ({ iconName }: {
|
|
318
|
+
iconName: string;
|
|
319
|
+
}) => `icon '${string}' function should return back a string or a dom object`;
|
|
320
|
+
134: ({ iconName }: {
|
|
321
|
+
iconName: string;
|
|
322
|
+
}) => `Did not find icon '${string}'`;
|
|
323
|
+
135: () => "Data type of the new value does not match the cell data type of the column";
|
|
324
|
+
136: () => "Unable to update chart as the 'type' is missing. It must be either 'rangeChartUpdate', 'pivotChartUpdate', or 'crossFilterChartUpdate'.";
|
|
325
|
+
137: ({ type, currentChartType }: {
|
|
326
|
+
type: string;
|
|
327
|
+
currentChartType: string;
|
|
328
|
+
}) => `Unable to update chart as a '${string}' update type is not permitted on a ${string}.`;
|
|
329
|
+
138: ({ chartType }: {
|
|
330
|
+
chartType: string;
|
|
331
|
+
}) => `invalid chart type supplied: ${string}`;
|
|
332
|
+
139: ({ customThemeName }: {
|
|
333
|
+
customThemeName: string;
|
|
334
|
+
}) => `a custom chart theme with the name ${string} has been supplied but not added to the 'chartThemes' list`;
|
|
335
|
+
140: ({ name }: {
|
|
336
|
+
name: string;
|
|
337
|
+
}) => `no stock theme exists with the name '${string}' and no custom chart theme with that name was supplied to 'customChartThemes'`;
|
|
338
|
+
141: () => "cross filtering with row grouping is not supported.";
|
|
339
|
+
142: () => "cross filtering is only supported in the client side row model.";
|
|
340
|
+
143: ({ panel }: {
|
|
341
|
+
panel: string | undefined;
|
|
342
|
+
}) => `'${string}' is not a valid Chart Tool Panel name`;
|
|
343
|
+
144: ({ type }: {
|
|
344
|
+
type: string;
|
|
345
|
+
}) => `Invalid charts data panel group name supplied: '${string}'`;
|
|
346
|
+
145: ({ group }: {
|
|
347
|
+
group: string;
|
|
348
|
+
}) => `As of v32, only one charts customize panel group can be expanded at a time. '${string}' will not be expanded.`;
|
|
349
|
+
146: ({ comp }: {
|
|
350
|
+
comp: string;
|
|
351
|
+
}) => `Unable to instantiate component '${string}' as its module hasn't been loaded. Add 'ValidationModule' to see which module is required.`;
|
|
352
|
+
147: ({ group }: {
|
|
353
|
+
group: string;
|
|
354
|
+
}) => `Invalid charts customize panel group name supplied: '${string}'`;
|
|
355
|
+
148: ({ group }: {
|
|
356
|
+
group: string;
|
|
357
|
+
}) => `invalid chartGroupsDef config '${string}'`;
|
|
358
|
+
149: ({ group, chartType }: {
|
|
359
|
+
group: string;
|
|
360
|
+
chartType: string;
|
|
361
|
+
}) => `invalid chartGroupsDef config '${string}.${string}'`;
|
|
362
|
+
150: () => "'seriesChartTypes' are required when the 'customCombo' chart type is specified.";
|
|
363
|
+
151: ({ chartType }: {
|
|
364
|
+
chartType: string;
|
|
365
|
+
}) => `invalid chartType '${string}' supplied in 'seriesChartTypes', converting to 'line' instead.`;
|
|
366
|
+
152: ({ colId }: {
|
|
367
|
+
colId: string;
|
|
368
|
+
}) => `no 'seriesChartType' found for colId = '${string}', defaulting to 'line'.`;
|
|
369
|
+
153: ({ chartDataType }: {
|
|
370
|
+
chartDataType: string;
|
|
371
|
+
}) => `unexpected chartDataType value '${string}' supplied, instead use 'category', 'series' or 'excluded'`;
|
|
372
|
+
154: ({ colId }: {
|
|
373
|
+
colId: string;
|
|
374
|
+
}) => `cross filtering requires a 'agSetColumnFilter' or 'agMultiColumnFilter' to be defined on the column with id: ${string}`;
|
|
375
|
+
155: ({ option }: {
|
|
376
|
+
option: string;
|
|
377
|
+
}) => `'${string}' is not a valid Chart Toolbar Option`;
|
|
378
|
+
156: ({ panel }: {
|
|
379
|
+
panel: string;
|
|
380
|
+
}) => `Invalid panel in chartToolPanelsDef.panels: '${string}'`;
|
|
381
|
+
157: ({ unrecognisedGroupIds }: {
|
|
382
|
+
unrecognisedGroupIds: string[];
|
|
383
|
+
}) => readonly ["unable to find group(s) for supplied groupIds:", string[]];
|
|
384
|
+
158: () => "can not expand a column item that does not represent a column group header";
|
|
385
|
+
159: () => "Invalid params supplied to createExcelFileForExcel() - `ExcelExportParams.data` is empty.";
|
|
386
|
+
160: () => "Export cancelled. Export is not allowed as per your configuration.";
|
|
387
|
+
161: () => "The Excel Exporter is currently on Multi Sheet mode. End that operation by calling 'api.getMultipleSheetAsExcel()' or 'api.exportMultipleSheetsAsExcel()'";
|
|
388
|
+
162: ({ id, dataType }: {
|
|
389
|
+
id: string;
|
|
390
|
+
dataType: string;
|
|
391
|
+
}) => `Unrecognized data type for excel export [${string}.dataType=${string}]`;
|
|
392
|
+
163: ({ featureName }: {
|
|
393
|
+
featureName: string;
|
|
394
|
+
}) => `Excel table export does not work with ${string}. The exported Excel file will not contain any Excel tables.\n Please turn off ${string} to enable Excel table exports.`;
|
|
395
|
+
164: () => "Unable to add data table to Excel sheet: A table already exists.";
|
|
396
|
+
165: () => "Unable to add data table to Excel sheet: Missing required parameters.";
|
|
397
|
+
166: ({ unrecognisedGroupIds }: {
|
|
398
|
+
unrecognisedGroupIds: string[];
|
|
399
|
+
}) => readonly ["unable to find groups for these supplied groupIds:", string[]];
|
|
400
|
+
167: ({ unrecognisedColIds }: {
|
|
401
|
+
unrecognisedColIds: string[];
|
|
402
|
+
}) => readonly ["unable to find columns for these supplied colIds:", string[]];
|
|
403
|
+
168: () => "detailCellRendererParams.template should be function or string";
|
|
404
|
+
169: () => "Reference to eDetailGrid was missing from the details template. Please add data-ref=\"eDetailGrid\" to the template.";
|
|
405
|
+
170: ({ providedStrategy }: {
|
|
406
|
+
providedStrategy: string;
|
|
407
|
+
}) => `invalid cellRendererParams.refreshStrategy = ${string} supplied, defaulting to refreshStrategy = 'rows'.`;
|
|
408
|
+
171: () => "could not find detail grid options for master detail, please set gridOptions.detailCellRendererParams.detailGridOptions";
|
|
409
|
+
172: () => "could not find getDetailRowData for master / detail, please set gridOptions.detailCellRendererParams.getDetailRowData";
|
|
410
|
+
173: ({ group }: {
|
|
411
|
+
group: string;
|
|
412
|
+
}) => `invalid chartGroupsDef config '${string}'`;
|
|
413
|
+
174: ({ group, chartType }: {
|
|
414
|
+
group: string;
|
|
415
|
+
chartType: string;
|
|
416
|
+
}) => `invalid chartGroupsDef config '${string}.${string}'`;
|
|
417
|
+
175: ({ menuTabName, itemsToConsider }: {
|
|
418
|
+
menuTabName: string;
|
|
419
|
+
itemsToConsider: string[];
|
|
420
|
+
}) => readonly [`Trying to render an invalid menu item '${string}'. Check that your 'menuTabs' contains one of `, string[]];
|
|
421
|
+
176: ({ key }: {
|
|
422
|
+
key: string;
|
|
423
|
+
}) => `unknown menu item type ${string}`;
|
|
424
|
+
177: () => "valid values for fillHandleDirection are 'x', 'y' and 'xy'. Default to 'xy'.";
|
|
425
|
+
178: ({ colId }: {
|
|
426
|
+
colId: string;
|
|
427
|
+
}) => `column ${string} is not visible`;
|
|
428
|
+
179: () => "totalValueGetter should be either a function or a string (expression)";
|
|
429
|
+
180: () => "agRichSelectCellEditor requires cellEditorParams.values to be set";
|
|
430
|
+
181: () => "agRichSelectCellEditor cannot have `multiSelect` and `allowTyping` set to `true`. AllowTyping has been turned off.";
|
|
431
|
+
182: () => "you cannot mix groupDisplayType = \"multipleColumns\" with treeData, only one column can be used to display groups when doing tree data";
|
|
432
|
+
183: () => "Group Column Filter only works on group columns. Please use a different filter.";
|
|
433
|
+
184: ({ parentGroupData, childNodeData }: {
|
|
434
|
+
parentGroupData: any;
|
|
435
|
+
childNodeData: any;
|
|
436
|
+
}) => readonly ["duplicate group keys for row data, keys should be unique", readonly [any, any]];
|
|
437
|
+
185: ({ data }: {
|
|
438
|
+
data: any;
|
|
439
|
+
}) => readonly ["getDataPath() should not return an empty path", readonly [any]];
|
|
440
|
+
186: ({ rowId, rowData, duplicateRowsData, }: {
|
|
441
|
+
rowId: string | undefined;
|
|
442
|
+
rowData: any;
|
|
443
|
+
duplicateRowsData: any[];
|
|
444
|
+
}) => readonly ["duplicate group keys for row data, keys should be unique", string | undefined, any, ...any[]];
|
|
445
|
+
187: ({ rowId, firstData, secondData }: {
|
|
446
|
+
rowId: string;
|
|
447
|
+
firstData: any;
|
|
448
|
+
secondData: any;
|
|
449
|
+
}) => readonly [`Duplicate node id ${string}. Row IDs are provided via the getRowId() callback. Please modify the getRowId() callback code to provide unique row id values.`, "first instance", any, "second instance", any];
|
|
450
|
+
188: () => "getRowId callback must be provided for Server Side Row Model selection to work correctly.";
|
|
451
|
+
189: ({ startRow }: {
|
|
452
|
+
startRow: number;
|
|
453
|
+
}) => `invalid value ${number} for startRow, the value should be >= 0`;
|
|
454
|
+
190: ({ rowGroupId, data }: {
|
|
455
|
+
rowGroupId: string | undefined;
|
|
456
|
+
data: any;
|
|
457
|
+
}) => readonly ["null and undefined values are not allowed for server side row model keys", string, "data is ", any];
|
|
458
|
+
191: () => "cannot multi select unless selection mode is 'multiRow'";
|
|
459
|
+
192: () => "cannot use range selection when multi selecting rows";
|
|
460
|
+
193: () => "cannot multi select unless selection mode is 'multiRow'";
|
|
461
|
+
194: ({ method }: {
|
|
462
|
+
method: string;
|
|
463
|
+
}) => `calling gridApi.${string}() is only possible when using rowModelType=\`clientSide\`.`;
|
|
464
|
+
195: ({ justCurrentPage }: {
|
|
465
|
+
justCurrentPage: boolean | undefined;
|
|
466
|
+
}) => "selecting just filtered only works when gridOptions.rowModelType='clientSide'" | "selecting just current page only works when gridOptions.rowModelType='clientSide'";
|
|
467
|
+
196: ({ key }: {
|
|
468
|
+
key: string;
|
|
469
|
+
}) => `Provided ids must be of string type. Invalid id provided: ${string}`;
|
|
470
|
+
197: () => "`toggledNodes` must be an array of string ids.";
|
|
471
|
+
198: () => "cannot multi select unless selection mode is 'multiRow'";
|
|
472
|
+
199: () => "getSelectedNodes and getSelectedRows functions cannot be used with select all functionality with the server-side row model. Use `api.getServerSideSelectionState()` instead.";
|
|
473
|
+
200: ({ reasonOrId, moduleName, gridScoped, gridId, rowModelType, additionalText, }: {
|
|
474
|
+
reasonOrId: string | keyof MissingModuleErrors;
|
|
475
|
+
moduleName: ValidationModuleName | ValidationModuleName[];
|
|
476
|
+
gridScoped: boolean;
|
|
477
|
+
gridId: string;
|
|
478
|
+
rowModelType: RowModelType;
|
|
479
|
+
additionalText?: string | undefined;
|
|
480
|
+
}) => string;
|
|
481
|
+
201: ({ rowModelType }: {
|
|
482
|
+
rowModelType: string;
|
|
483
|
+
}) => string;
|
|
484
|
+
202: () => "`getSelectedNodes` and `getSelectedRows` functions cannot be used with `groupSelectsChildren` and the server-side row model. Use `api.getServerSideSelectionState()` instead.";
|
|
485
|
+
203: () => "Server Side Row Model does not support Dynamic Row Height and Cache Purging. Either a) remove getRowHeight() callback or b) remove maxBlocksInCache property. Purging has been disabled.";
|
|
486
|
+
204: () => "Server Side Row Model does not support Auto Row Height and Cache Purging. Either a) remove colDef.autoHeight or b) remove maxBlocksInCache property. Purging has been disabled.";
|
|
487
|
+
205: ({ duplicateIdText }: {
|
|
488
|
+
duplicateIdText: string;
|
|
489
|
+
}) => `Unable to display rows as duplicate row ids (${string}) were returned by the getRowId callback. Please modify the getRowId callback to provide unique ids.`;
|
|
490
|
+
206: () => "getRowId callback must be implemented for transactions to work. Transaction was ignored.";
|
|
491
|
+
207: () => "The Set Filter Parameter \"defaultToNothingSelected\" value was ignored because it does not work when \"excelMode\" is used.";
|
|
492
|
+
208: () => "Set Filter Value Formatter must return string values. Please ensure the Set Filter Value Formatter returns string values for complex objects.";
|
|
493
|
+
209: () => `Set Filter Key Creator is returning null for provided values and provided values are primitives. Please provide complex objects. See ${string}/filter-set-filter-list/#filter-value-types`;
|
|
494
|
+
210: () => "Set Filter has a Key Creator, but provided values are primitives. Did you mean to provide complex objects?";
|
|
495
|
+
211: () => "property treeList=true for Set Filter params, but you did not provide a treeListPathGetter or values of type Date.";
|
|
496
|
+
212: () => "please review all your toolPanel components, it seems like at least one of them doesn't have an id";
|
|
497
|
+
213: () => "Advanced Filter does not work with Filters Tool Panel. Filters Tool Panel has been disabled.";
|
|
498
|
+
214: ({ key }: {
|
|
499
|
+
key: string;
|
|
500
|
+
}) => `unable to lookup Tool Panel as invalid key supplied: ${string}`;
|
|
501
|
+
215: ({ key, defaultByKey }: {
|
|
502
|
+
key: string;
|
|
503
|
+
defaultByKey: object;
|
|
504
|
+
}) => `the key ${string} is not a valid key for specifying a tool panel, valid keys are: ${string}`;
|
|
505
|
+
216: ({ name }: {
|
|
506
|
+
name: string;
|
|
507
|
+
}) => `Missing component for '${string}'`;
|
|
508
|
+
217: ({ invalidColIds }: {
|
|
509
|
+
invalidColIds: any[];
|
|
510
|
+
}) => readonly ["unable to find grid columns for the supplied colDef(s):", any[]];
|
|
511
|
+
218: ({ property, defaultOffset }: {
|
|
512
|
+
property: string;
|
|
513
|
+
defaultOffset: number | undefined;
|
|
514
|
+
}) => `${string} must be a number, the value you provided is not a valid number. Using the default of undefinedpx.` | `${string} must be a number, the value you provided is not a valid number. Using the default of ${number}px.`;
|
|
515
|
+
219: ({ property }: {
|
|
516
|
+
property: string;
|
|
517
|
+
}) => `Property ${string} does not exist on the target object.`;
|
|
518
|
+
220: ({ lineDash }: {
|
|
519
|
+
lineDash: string;
|
|
520
|
+
}) => `'${string}' is not a valid 'lineDash' option.`;
|
|
521
|
+
221: () => "agAggregationComponent should only be used with the client and server side row model.";
|
|
522
|
+
222: () => "agFilteredRowCountComponent should only be used with the client side row model.";
|
|
523
|
+
223: () => "agSelectedRowCountComponent should only be used with the client and server side row model.";
|
|
524
|
+
224: () => "agTotalAndFilteredRowCountComponent should only be used with the client side row model.";
|
|
525
|
+
225: () => "agTotalRowCountComponent should only be used with the client side row model.";
|
|
526
|
+
226: () => "viewport is missing init method.";
|
|
527
|
+
227: () => "menu item icon must be DOM node or string";
|
|
528
|
+
228: ({ menuItemOrString }: {
|
|
529
|
+
menuItemOrString: string;
|
|
530
|
+
}) => `unrecognised menu item ${string}`;
|
|
531
|
+
229: ({ index }: {
|
|
532
|
+
index: number;
|
|
533
|
+
}) => readonly ["invalid row index for ensureIndexVisible: ", number];
|
|
534
|
+
230: () => "detailCellRendererParams.template is not supported by AG Grid React. To change the template, provide a Custom Detail Cell Renderer. See https://ag-grid.com/react-data-grid/master-detail-custom-detail/";
|
|
535
|
+
231: () => "As of v32, using custom components with `reactiveCustomComponents = false` is deprecated.";
|
|
536
|
+
232: () => "Using both rowData and v-model. rowData will be ignored.";
|
|
537
|
+
233: ({ methodName }: {
|
|
538
|
+
methodName: string;
|
|
539
|
+
}) => `Framework component is missing the method ${string}()`;
|
|
540
|
+
234: () => "Group Column Filter does not work with the colDef property \"field\". This property will be ignored.";
|
|
541
|
+
235: () => "Group Column Filter does not work with the colDef property \"filterValueGetter\". This property will be ignored.";
|
|
542
|
+
236: () => "Group Column Filter does not work with the colDef property \"filterParams\". This property will be ignored.";
|
|
543
|
+
237: () => "Group Column Filter does not work with Tree Data enabled. Please disable Tree Data, or use a different filter.";
|
|
544
|
+
238: () => "setRowCount can only accept a positive row count.";
|
|
545
|
+
239: () => "Theming API and CSS File Themes are both used in the same page. In v33 we released the Theming API as the new default method of styling the grid. See the migration docs https://www.ag-grid.com/react-data-grid/theming-migration/. Because no value was provided to the `theme` grid option it defaulted to themeQuartz. But the file (ag-grid.css) is also included and will cause styling issues. Either pass the string \"legacy\" to the theme grid option to use v32 style themes, or remove ag-grid.css from the page to use Theming API.";
|
|
546
|
+
240: ({ theme }: {
|
|
547
|
+
theme: any;
|
|
548
|
+
}) => `theme grid option must be a Theming API theme object or the string "legacy", received: ${any}`;
|
|
549
|
+
241: () => "cannot select multiple rows when rowSelection.mode is set to 'singleRow'";
|
|
550
|
+
242: () => "cannot select multiple rows when using rangeSelect";
|
|
551
|
+
243: () => "Failed to deserialize state - each provided state object must be an object.";
|
|
552
|
+
244: () => "Failed to deserialize state - `selectAllChildren` must be a boolean value or undefined.";
|
|
553
|
+
245: () => "Failed to deserialize state - `toggledNodes` must be an array.";
|
|
554
|
+
246: () => "Failed to deserialize state - Every `toggledNode` requires an associated string id.";
|
|
555
|
+
247: () => "Row selection state could not be parsed due to invalid data. Ensure all child state has toggledNodes or does not conform with the parent rule. \nPlease rebuild the selection state and reapply it.";
|
|
556
|
+
248: () => "SetFloatingFilter expects SetFilter as its parent";
|
|
557
|
+
249: () => "Must supply a Value Formatter in Set Filter params when using a Key Creator";
|
|
558
|
+
250: () => "Must supply a Key Creator in Set Filter params when `treeList = true` on a group column, and Tree Data or Row Grouping is enabled.";
|
|
559
|
+
251: ({ chartType }: {
|
|
560
|
+
chartType: string;
|
|
561
|
+
}) => `AG Grid: Unable to create chart as an invalid chartType = '${string}' was supplied.`;
|
|
562
|
+
252: () => "cannot get grid to draw rows when it is in the middle of drawing rows. \nYour code probably called a grid API method while the grid was in the render stage. \nTo overcome this, put the API call into a timeout, e.g. instead of api.redrawRows(), call setTimeout(function() { api.redrawRows(); }, 0). \nTo see what part of your code that caused the refresh check this stacktrace.";
|
|
563
|
+
253: ({ version }: {
|
|
564
|
+
version: string;
|
|
565
|
+
}) => readonly ["Illegal version string: ", string];
|
|
566
|
+
254: () => "Cannot create chart: no chart themes available.";
|
|
567
|
+
255: ({ point }: {
|
|
568
|
+
point: number;
|
|
569
|
+
}) => `Lone surrogate U+${string} is not a scalar value`;
|
|
570
|
+
256: () => "Unable to initialise. See validation error, or load ValidationModule if missing.";
|
|
571
|
+
257: () => "IntegratedChartsModule must be initialised with an AG Charts module. One of 'AgChartsCommunityModule' / 'AgChartsEnterpriseModule'.\n\nimport { AgChartsEnterpriseModule } from 'ag-charts-enterprise';\nimport { ModuleRegistry } from 'ag-grid-community';\nimport { IntegratedChartsModule } from 'ag-grid-enterprise';\n \nModuleRegistry.registerModules([IntegratedChartsModule.with(AgChartsEnterpriseModule)]);\n " | "IntegratedChartsModule must be initialised with an AG Charts module. One of 'AgChartsCommunityModule' / 'AgChartsEnterpriseModule'.\n\nimport { AgChartsEnterpriseModule } from 'ag-charts-enterprise';\nimport { ModuleRegistry } from 'ag-grid-community';\nimport { IntegratedChartsModule } from 'ag-grid-enterprise';\n \nModuleRegistry.registerModules([SparklinesModule.with(AgChartsEnterpriseModule)]);\n " | "IntegratedChartsModule must be initialised with an AG Charts module. One of 'AgChartsCommunityModule' / 'AgChartsEnterpriseModule'.\n\nimport { AgChartsEnterpriseModule } from 'ag-charts-enterprise';\nimport { ModuleRegistry } from 'ag-grid-community';\nimport { SparklinesModule } from 'ag-grid-enterprise';\n \nModuleRegistry.registerModules([IntegratedChartsModule.with(AgChartsEnterpriseModule)]);\n " | "IntegratedChartsModule must be initialised with an AG Charts module. One of 'AgChartsCommunityModule' / 'AgChartsEnterpriseModule'.\n\nimport { AgChartsEnterpriseModule } from 'ag-charts-enterprise';\nimport { ModuleRegistry } from 'ag-grid-community';\nimport { SparklinesModule } from 'ag-grid-enterprise';\n \nModuleRegistry.registerModules([SparklinesModule.with(AgChartsEnterpriseModule)]);\n " | "SparklinesModule must be initialised with an AG Charts module. One of 'AgChartsCommunityModule' / 'AgChartsEnterpriseModule'.\n\nimport { AgChartsEnterpriseModule } from 'ag-charts-enterprise';\nimport { ModuleRegistry } from 'ag-grid-community';\nimport { IntegratedChartsModule } from 'ag-grid-enterprise';\n \nModuleRegistry.registerModules([IntegratedChartsModule.with(AgChartsEnterpriseModule)]);\n " | "SparklinesModule must be initialised with an AG Charts module. One of 'AgChartsCommunityModule' / 'AgChartsEnterpriseModule'.\n\nimport { AgChartsEnterpriseModule } from 'ag-charts-enterprise';\nimport { ModuleRegistry } from 'ag-grid-community';\nimport { IntegratedChartsModule } from 'ag-grid-enterprise';\n \nModuleRegistry.registerModules([SparklinesModule.with(AgChartsEnterpriseModule)]);\n " | "SparklinesModule must be initialised with an AG Charts module. One of 'AgChartsCommunityModule' / 'AgChartsEnterpriseModule'.\n\nimport { AgChartsEnterpriseModule } from 'ag-charts-enterprise';\nimport { ModuleRegistry } from 'ag-grid-community';\nimport { SparklinesModule } from 'ag-grid-enterprise';\n \nModuleRegistry.registerModules([IntegratedChartsModule.with(AgChartsEnterpriseModule)]);\n " | "SparklinesModule must be initialised with an AG Charts module. One of 'AgChartsCommunityModule' / 'AgChartsEnterpriseModule'.\n\nimport { AgChartsEnterpriseModule } from 'ag-charts-enterprise';\nimport { ModuleRegistry } from 'ag-grid-community';\nimport { SparklinesModule } from 'ag-grid-enterprise';\n \nModuleRegistry.registerModules([SparklinesModule.with(AgChartsEnterpriseModule)]);\n ";
|
|
572
|
+
258: () => "IntegratedChartsModule must be initialised with an AG Charts module. One of 'AgChartsCommunityModule' / 'AgChartsEnterpriseModule'.\n\nimport { AgChartsEnterpriseModule } from 'ag-charts-enterprise';\nimport { ModuleRegistry } from 'ag-grid-community';\nimport { IntegratedChartsModule } from 'ag-grid-enterprise';\n \nModuleRegistry.registerModules([IntegratedChartsModule.with(AgChartsEnterpriseModule)]);\n " | "IntegratedChartsModule must be initialised with an AG Charts module. One of 'AgChartsCommunityModule' / 'AgChartsEnterpriseModule'.\n\nimport { AgChartsEnterpriseModule } from 'ag-charts-enterprise';\nimport { ModuleRegistry } from 'ag-grid-community';\nimport { IntegratedChartsModule } from 'ag-grid-enterprise';\n \nModuleRegistry.registerModules([SparklinesModule.with(AgChartsEnterpriseModule)]);\n " | "IntegratedChartsModule must be initialised with an AG Charts module. One of 'AgChartsCommunityModule' / 'AgChartsEnterpriseModule'.\n\nimport { AgChartsEnterpriseModule } from 'ag-charts-enterprise';\nimport { ModuleRegistry } from 'ag-grid-community';\nimport { SparklinesModule } from 'ag-grid-enterprise';\n \nModuleRegistry.registerModules([IntegratedChartsModule.with(AgChartsEnterpriseModule)]);\n " | "IntegratedChartsModule must be initialised with an AG Charts module. One of 'AgChartsCommunityModule' / 'AgChartsEnterpriseModule'.\n\nimport { AgChartsEnterpriseModule } from 'ag-charts-enterprise';\nimport { ModuleRegistry } from 'ag-grid-community';\nimport { SparklinesModule } from 'ag-grid-enterprise';\n \nModuleRegistry.registerModules([SparklinesModule.with(AgChartsEnterpriseModule)]);\n " | "SparklinesModule must be initialised with an AG Charts module. One of 'AgChartsCommunityModule' / 'AgChartsEnterpriseModule'.\n\nimport { AgChartsEnterpriseModule } from 'ag-charts-enterprise';\nimport { ModuleRegistry } from 'ag-grid-community';\nimport { IntegratedChartsModule } from 'ag-grid-enterprise';\n \nModuleRegistry.registerModules([IntegratedChartsModule.with(AgChartsEnterpriseModule)]);\n " | "SparklinesModule must be initialised with an AG Charts module. One of 'AgChartsCommunityModule' / 'AgChartsEnterpriseModule'.\n\nimport { AgChartsEnterpriseModule } from 'ag-charts-enterprise';\nimport { ModuleRegistry } from 'ag-grid-community';\nimport { IntegratedChartsModule } from 'ag-grid-enterprise';\n \nModuleRegistry.registerModules([SparklinesModule.with(AgChartsEnterpriseModule)]);\n " | "SparklinesModule must be initialised with an AG Charts module. One of 'AgChartsCommunityModule' / 'AgChartsEnterpriseModule'.\n\nimport { AgChartsEnterpriseModule } from 'ag-charts-enterprise';\nimport { ModuleRegistry } from 'ag-grid-community';\nimport { SparklinesModule } from 'ag-grid-enterprise';\n \nModuleRegistry.registerModules([IntegratedChartsModule.with(AgChartsEnterpriseModule)]);\n " | "SparklinesModule must be initialised with an AG Charts module. One of 'AgChartsCommunityModule' / 'AgChartsEnterpriseModule'.\n\nimport { AgChartsEnterpriseModule } from 'ag-charts-enterprise';\nimport { ModuleRegistry } from 'ag-grid-community';\nimport { SparklinesModule } from 'ag-grid-enterprise';\n \nModuleRegistry.registerModules([SparklinesModule.with(AgChartsEnterpriseModule)]);\n ";
|
|
573
|
+
259: ({ part }: {
|
|
574
|
+
part: any;
|
|
575
|
+
}) => `the argument to theme.withPart must be a Theming API part object, received: ${any}`;
|
|
576
|
+
260: ({ propName, compName, gridScoped, gridId, rowModelType, }: {
|
|
577
|
+
propName: string;
|
|
578
|
+
compName: string;
|
|
579
|
+
gridScoped: boolean;
|
|
580
|
+
gridId: string;
|
|
581
|
+
rowModelType: RowModelType;
|
|
582
|
+
}) => string;
|
|
583
|
+
261: () => "As of v33, `column.isHovered()` is deprecated. Use `api.isColumnHovered(column)` instead.";
|
|
584
|
+
262: () => "As of v33, icon key \"smallDown\" is deprecated. Use \"advancedFilterBuilderSelect\" for Advanced Filter Builder dropdown, \"selectOpen\" for Select cell editor and dropdowns (e.g. Integrated Charts menu), \"richSelectOpen\" for Rich Select cell editor";
|
|
585
|
+
263: () => "As of v33, icon key \"smallLeft\" is deprecated. Use \"panelDelimiterRtl\" for Row Group Panel / Pivot Panel, \"subMenuOpenRtl\" for sub-menus.";
|
|
586
|
+
264: () => "As of v33, icon key \"smallRight\" is deprecated. Use \"panelDelimiter\" for Row Group Panel / Pivot Panel, \"subMenuOpen\" for sub-menus";
|
|
587
|
+
};
|
|
588
|
+
export type ErrorMap = typeof AG_GRID_ERRORS;
|
|
589
|
+
export type ErrorId = keyof ErrorMap;
|
|
590
|
+
type ErrorValue<TId extends ErrorId | null> = TId extends ErrorId ? ErrorMap[TId] : never;
|
|
591
|
+
export type GetErrorParams<TId extends ErrorId> = ErrorValue<TId> extends (params: infer P) => any ? (P extends Record<string, any> ? P : undefined) : never;
|
|
592
|
+
export declare function getError<TId extends ErrorId, TParams extends GetErrorParams<TId>>(errorId: TId, args: TParams): any[];
|
|
593
|
+
export declare const MISSING_MODULE_REASONS: {
|
|
594
|
+
readonly 1: "Charting Aggregation";
|
|
595
|
+
readonly 2: "pivotResultFields";
|
|
596
|
+
readonly 3: "setTooltip";
|
|
597
|
+
};
|
|
598
|
+
export type MissingModuleErrors = typeof MISSING_MODULE_REASONS;
|
|
599
|
+
export {};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { ErrorId, ErrorMap, GetErrorParams } from './errorMessages/errorText';
|
|
2
|
+
import type { ValidationService } from './validationService';
|
|
3
|
+
export declare let baseDocLink: string;
|
|
4
|
+
/**
|
|
5
|
+
* The ValidationService passes itself in if it has been included.
|
|
6
|
+
* @param logger
|
|
7
|
+
*/
|
|
8
|
+
export declare function provideValidationServiceLogger(logger: ValidationService): void;
|
|
9
|
+
export declare function suppressAllLogs(): void;
|
|
10
|
+
/** Set by the Framework override to give us accurate links for the framework */
|
|
11
|
+
export declare function setValidationDocLink(docLink: string): void;
|
|
12
|
+
/**
|
|
13
|
+
* Correctly formats a string or undefined or null value into a human readable string
|
|
14
|
+
* @param input
|
|
15
|
+
*/
|
|
16
|
+
export declare function toStringWithNullUndefined(str: string | null | undefined): string;
|
|
17
|
+
export declare function getErrorLink(errorNum: ErrorId, args: GetErrorParams<any>): string;
|
|
18
|
+
export declare function _warn<TId extends ErrorId, TShowMessageAtCallLocation = ErrorMap[TId]>(...args: undefined extends GetErrorParams<TId> ? [id: TId] : [id: TId, params: GetErrorParams<TId>]): void;
|
|
19
|
+
export declare function _error<TId extends ErrorId, TShowMessageAtCallLocation = ErrorMap[TId]>(...args: undefined extends GetErrorParams<TId> ? [id: TId] : [id: TId, params: GetErrorParams<TId>]): void;
|
|
20
|
+
/** Used for messages before the ValidationService has been created */
|
|
21
|
+
export declare function _logPreInitErr<TId extends ErrorId, TShowMessageAtCallLocation = ErrorMap[TId]>(id: TId, args: GetErrorParams<TId>, defaultMessage: string): void;
|
|
22
|
+
export declare function _errMsg<TId extends ErrorId, TShowMessageAtCallLocation = ErrorMap[TId]>(...args: undefined extends GetErrorParams<TId> ? [id: TId] : [id: TId, params: GetErrorParams<TId>]): string;
|
|
23
|
+
/** Used for messages before the ValidationService has been created */
|
|
24
|
+
export declare function _preInitErrMsg<TId extends ErrorId, TShowMessageAtCallLocation = ErrorMap[TId]>(...args: undefined extends GetErrorParams<TId> ? [id: TId] : [id: TId, params: GetErrorParams<TId>]): string;
|