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
|
@@ -1,255 +0,0 @@
|
|
|
1
|
-
import { ModuleNames } from '../modules/moduleNames';
|
|
2
|
-
export declare const gridApiFunctionsMap: {
|
|
3
|
-
getStatusPanel: ModuleNames;
|
|
4
|
-
isSideBarVisible: ModuleNames;
|
|
5
|
-
setSideBarVisible: ModuleNames;
|
|
6
|
-
setSideBarPosition: ModuleNames;
|
|
7
|
-
openToolPanel: ModuleNames;
|
|
8
|
-
closeToolPanel: ModuleNames;
|
|
9
|
-
getOpenedToolPanel: ModuleNames;
|
|
10
|
-
refreshToolPanel: ModuleNames;
|
|
11
|
-
isToolPanelShowing: ModuleNames;
|
|
12
|
-
getToolPanelInstance: ModuleNames;
|
|
13
|
-
getSideBar: ModuleNames;
|
|
14
|
-
getServerSideSelectionState: ModuleNames;
|
|
15
|
-
setServerSideSelectionState: ModuleNames;
|
|
16
|
-
applyServerSideTransaction: ModuleNames;
|
|
17
|
-
applyServerSideTransactionAsync: ModuleNames;
|
|
18
|
-
applyServerSideRowData: ModuleNames;
|
|
19
|
-
retryServerSideLoads: ModuleNames;
|
|
20
|
-
flushServerSideAsyncTransactions: ModuleNames;
|
|
21
|
-
refreshServerSide: ModuleNames;
|
|
22
|
-
getServerSideGroupLevelState: ModuleNames;
|
|
23
|
-
addAggFunc: ModuleNames;
|
|
24
|
-
addAggFuncs: ModuleNames;
|
|
25
|
-
clearAggFuncs: ModuleNames;
|
|
26
|
-
setColumnAggFunc: ModuleNames;
|
|
27
|
-
isPivotMode: ModuleNames;
|
|
28
|
-
getPivotResultColumn: ModuleNames;
|
|
29
|
-
setValueColumns: ModuleNames;
|
|
30
|
-
getValueColumns: ModuleNames;
|
|
31
|
-
removeValueColumn: ModuleNames;
|
|
32
|
-
removeValueColumns: ModuleNames;
|
|
33
|
-
addValueColumns: ModuleNames;
|
|
34
|
-
setRowGroupColumns: ModuleNames;
|
|
35
|
-
moveRowGroupColumn: ModuleNames;
|
|
36
|
-
addValueColumn: ModuleNames;
|
|
37
|
-
removeRowGroupColumn: ModuleNames;
|
|
38
|
-
removeRowGroupColumns: ModuleNames;
|
|
39
|
-
addRowGroupColumn: ModuleNames;
|
|
40
|
-
addRowGroupColumns: ModuleNames;
|
|
41
|
-
getRowGroupColumns: ModuleNames;
|
|
42
|
-
setPivotColumns: ModuleNames;
|
|
43
|
-
removePivotColumn: ModuleNames;
|
|
44
|
-
removePivotColumns: ModuleNames;
|
|
45
|
-
addPivotColumn: ModuleNames;
|
|
46
|
-
addPivotColumns: ModuleNames;
|
|
47
|
-
getPivotColumns: ModuleNames;
|
|
48
|
-
setPivotResultColumns: ModuleNames;
|
|
49
|
-
getPivotResultColumns: ModuleNames;
|
|
50
|
-
getCellRanges: ModuleNames;
|
|
51
|
-
addCellRange: ModuleNames;
|
|
52
|
-
clearRangeSelection: ModuleNames;
|
|
53
|
-
clearCellSelection: ModuleNames;
|
|
54
|
-
showContextMenu: ModuleNames;
|
|
55
|
-
showColumnChooser: ModuleNames;
|
|
56
|
-
hideColumnChooser: ModuleNames;
|
|
57
|
-
addDetailGridInfo: ModuleNames;
|
|
58
|
-
removeDetailGridInfo: ModuleNames;
|
|
59
|
-
getDetailGridInfo: ModuleNames;
|
|
60
|
-
forEachDetailGridInfo: ModuleNames;
|
|
61
|
-
getDataAsExcel: ModuleNames;
|
|
62
|
-
exportDataAsExcel: ModuleNames;
|
|
63
|
-
getSheetDataForExcel: ModuleNames;
|
|
64
|
-
getMultipleSheetsAsExcel: ModuleNames;
|
|
65
|
-
exportMultipleSheetsAsExcel: ModuleNames;
|
|
66
|
-
copyToClipboard: ModuleNames;
|
|
67
|
-
cutToClipboard: ModuleNames;
|
|
68
|
-
copySelectedRowsToClipboard: ModuleNames;
|
|
69
|
-
copySelectedRangeToClipboard: ModuleNames;
|
|
70
|
-
copySelectedRangeDown: ModuleNames;
|
|
71
|
-
pasteFromClipboard: ModuleNames;
|
|
72
|
-
getChartModels: ModuleNames;
|
|
73
|
-
getChartRef: ModuleNames;
|
|
74
|
-
getChartImageDataURL: ModuleNames;
|
|
75
|
-
downloadChart: ModuleNames;
|
|
76
|
-
openChartToolPanel: ModuleNames;
|
|
77
|
-
closeChartToolPanel: ModuleNames;
|
|
78
|
-
createRangeChart: ModuleNames;
|
|
79
|
-
createPivotChart: ModuleNames;
|
|
80
|
-
createCrossFilterChart: ModuleNames;
|
|
81
|
-
updateChart: ModuleNames;
|
|
82
|
-
restoreChart: ModuleNames;
|
|
83
|
-
getAdvancedFilterModel: ModuleNames;
|
|
84
|
-
setAdvancedFilterModel: ModuleNames;
|
|
85
|
-
showAdvancedFilterBuilder: ModuleNames;
|
|
86
|
-
hideAdvancedFilterBuilder: ModuleNames;
|
|
87
|
-
refreshInfiniteCache: ModuleNames;
|
|
88
|
-
purgeInfiniteCache: ModuleNames;
|
|
89
|
-
getInfiniteRowCount: ModuleNames;
|
|
90
|
-
getDataAsCsv: ModuleNames;
|
|
91
|
-
exportDataAsCsv: ModuleNames;
|
|
92
|
-
onGroupExpandedOrCollapsed: ModuleNames;
|
|
93
|
-
refreshClientSideRowModel: ModuleNames;
|
|
94
|
-
forEachLeafNode: ModuleNames;
|
|
95
|
-
forEachNodeAfterFilter: ModuleNames;
|
|
96
|
-
forEachNodeAfterFilterAndSort: ModuleNames;
|
|
97
|
-
resetRowHeights: ModuleNames;
|
|
98
|
-
applyTransaction: ModuleNames;
|
|
99
|
-
applyTransactionAsync: ModuleNames;
|
|
100
|
-
flushAsyncTransactions: ModuleNames;
|
|
101
|
-
getBestCostNodeSelection: ModuleNames;
|
|
102
|
-
isRowDataEmpty: ModuleNames;
|
|
103
|
-
flashCells: ModuleNames;
|
|
104
|
-
tabToNextCell: ModuleNames;
|
|
105
|
-
onFilterChanged: ModuleNames;
|
|
106
|
-
onSortChanged: ModuleNames;
|
|
107
|
-
addEventListener: ModuleNames;
|
|
108
|
-
removeEventListener: ModuleNames;
|
|
109
|
-
dispatchEvent: ModuleNames;
|
|
110
|
-
getGridId: ModuleNames;
|
|
111
|
-
destroy: ModuleNames;
|
|
112
|
-
isDestroyed: ModuleNames;
|
|
113
|
-
getGridOption: ModuleNames;
|
|
114
|
-
setGridOption: ModuleNames;
|
|
115
|
-
updateGridOptions: ModuleNames;
|
|
116
|
-
getState: ModuleNames;
|
|
117
|
-
setNodesSelected: ModuleNames;
|
|
118
|
-
selectAll: ModuleNames;
|
|
119
|
-
deselectAll: ModuleNames;
|
|
120
|
-
selectAllFiltered: ModuleNames;
|
|
121
|
-
deselectAllFiltered: ModuleNames;
|
|
122
|
-
selectAllOnCurrentPage: ModuleNames;
|
|
123
|
-
deselectAllOnCurrentPage: ModuleNames;
|
|
124
|
-
getSelectedNodes: ModuleNames;
|
|
125
|
-
getSelectedRows: ModuleNames;
|
|
126
|
-
redrawRows: ModuleNames;
|
|
127
|
-
setRowNodeExpanded: ModuleNames;
|
|
128
|
-
getRowNode: ModuleNames;
|
|
129
|
-
addRenderedRowListener: ModuleNames;
|
|
130
|
-
getRenderedNodes: ModuleNames;
|
|
131
|
-
forEachNode: ModuleNames;
|
|
132
|
-
getFirstDisplayedRow: ModuleNames;
|
|
133
|
-
getFirstDisplayedRowIndex: ModuleNames;
|
|
134
|
-
getLastDisplayedRow: ModuleNames;
|
|
135
|
-
getLastDisplayedRowIndex: ModuleNames;
|
|
136
|
-
getDisplayedRowAtIndex: ModuleNames;
|
|
137
|
-
getDisplayedRowCount: ModuleNames;
|
|
138
|
-
getModel: ModuleNames;
|
|
139
|
-
getVerticalPixelRange: ModuleNames;
|
|
140
|
-
getHorizontalPixelRange: ModuleNames;
|
|
141
|
-
ensureColumnVisible: ModuleNames;
|
|
142
|
-
ensureIndexVisible: ModuleNames;
|
|
143
|
-
ensureNodeVisible: ModuleNames;
|
|
144
|
-
getFocusedCell: ModuleNames;
|
|
145
|
-
clearFocusedCell: ModuleNames;
|
|
146
|
-
setFocusedCell: ModuleNames;
|
|
147
|
-
setFocusedHeader: ModuleNames;
|
|
148
|
-
tabToPreviousCell: ModuleNames;
|
|
149
|
-
addGlobalListener: ModuleNames;
|
|
150
|
-
removeGlobalListener: ModuleNames;
|
|
151
|
-
expireValueCache: ModuleNames;
|
|
152
|
-
getValue: ModuleNames;
|
|
153
|
-
getCellValue: ModuleNames;
|
|
154
|
-
showColumnMenuAfterButtonClick: ModuleNames;
|
|
155
|
-
showColumnMenuAfterMouseClick: ModuleNames;
|
|
156
|
-
showColumnMenu: ModuleNames;
|
|
157
|
-
hidePopupMenu: ModuleNames;
|
|
158
|
-
showLoadingOverlay: ModuleNames;
|
|
159
|
-
showNoRowsOverlay: ModuleNames;
|
|
160
|
-
hideOverlay: ModuleNames;
|
|
161
|
-
getPinnedTopRowCount: ModuleNames;
|
|
162
|
-
getPinnedBottomRowCount: ModuleNames;
|
|
163
|
-
getPinnedTopRow: ModuleNames;
|
|
164
|
-
getPinnedBottomRow: ModuleNames;
|
|
165
|
-
setGridAriaProperty: ModuleNames;
|
|
166
|
-
refreshCells: ModuleNames;
|
|
167
|
-
refreshHeader: ModuleNames;
|
|
168
|
-
isAnimationFrameQueueEmpty: ModuleNames;
|
|
169
|
-
flushAllAnimationFrames: ModuleNames;
|
|
170
|
-
getSizesForCurrentTheme: ModuleNames;
|
|
171
|
-
getCellRendererInstances: ModuleNames;
|
|
172
|
-
addRowDropZone: ModuleNames;
|
|
173
|
-
removeRowDropZone: ModuleNames;
|
|
174
|
-
getRowDropZoneParams: ModuleNames;
|
|
175
|
-
getColumnDef: ModuleNames;
|
|
176
|
-
getColumnDefs: ModuleNames;
|
|
177
|
-
sizeColumnsToFit: ModuleNames;
|
|
178
|
-
setColumnGroupOpened: ModuleNames;
|
|
179
|
-
getColumnGroup: ModuleNames;
|
|
180
|
-
getProvidedColumnGroup: ModuleNames;
|
|
181
|
-
getDisplayNameForColumn: ModuleNames;
|
|
182
|
-
getDisplayNameForColumnGroup: ModuleNames;
|
|
183
|
-
getColumn: ModuleNames;
|
|
184
|
-
getColumns: ModuleNames;
|
|
185
|
-
applyColumnState: ModuleNames;
|
|
186
|
-
getColumnState: ModuleNames;
|
|
187
|
-
resetColumnState: ModuleNames;
|
|
188
|
-
getColumnGroupState: ModuleNames;
|
|
189
|
-
setColumnGroupState: ModuleNames;
|
|
190
|
-
resetColumnGroupState: ModuleNames;
|
|
191
|
-
isPinning: ModuleNames;
|
|
192
|
-
isPinningLeft: ModuleNames;
|
|
193
|
-
isPinningRight: ModuleNames;
|
|
194
|
-
getDisplayedColAfter: ModuleNames;
|
|
195
|
-
getDisplayedColBefore: ModuleNames;
|
|
196
|
-
setColumnVisible: ModuleNames;
|
|
197
|
-
setColumnsVisible: ModuleNames;
|
|
198
|
-
setColumnPinned: ModuleNames;
|
|
199
|
-
setColumnsPinned: ModuleNames;
|
|
200
|
-
getAllGridColumns: ModuleNames;
|
|
201
|
-
getDisplayedLeftColumns: ModuleNames;
|
|
202
|
-
getDisplayedCenterColumns: ModuleNames;
|
|
203
|
-
getDisplayedRightColumns: ModuleNames;
|
|
204
|
-
getAllDisplayedColumns: ModuleNames;
|
|
205
|
-
getAllDisplayedVirtualColumns: ModuleNames;
|
|
206
|
-
moveColumn: ModuleNames;
|
|
207
|
-
moveColumnByIndex: ModuleNames;
|
|
208
|
-
moveColumns: ModuleNames;
|
|
209
|
-
setColumnWidth: ModuleNames;
|
|
210
|
-
setColumnWidths: ModuleNames;
|
|
211
|
-
getLeftDisplayedColumnGroups: ModuleNames;
|
|
212
|
-
getCenterDisplayedColumnGroups: ModuleNames;
|
|
213
|
-
getRightDisplayedColumnGroups: ModuleNames;
|
|
214
|
-
getAllDisplayedColumnGroups: ModuleNames;
|
|
215
|
-
autoSizeColumn: ModuleNames;
|
|
216
|
-
autoSizeColumns: ModuleNames;
|
|
217
|
-
autoSizeAllColumns: ModuleNames;
|
|
218
|
-
undoCellEditing: ModuleNames;
|
|
219
|
-
redoCellEditing: ModuleNames;
|
|
220
|
-
getCellEditorInstances: ModuleNames;
|
|
221
|
-
getEditingCells: ModuleNames;
|
|
222
|
-
stopEditing: ModuleNames;
|
|
223
|
-
startEditingCell: ModuleNames;
|
|
224
|
-
getCurrentUndoSize: ModuleNames;
|
|
225
|
-
getCurrentRedoSize: ModuleNames;
|
|
226
|
-
isAnyFilterPresent: ModuleNames;
|
|
227
|
-
isColumnFilterPresent: ModuleNames;
|
|
228
|
-
getFilterInstance: ModuleNames;
|
|
229
|
-
getColumnFilterInstance: ModuleNames;
|
|
230
|
-
destroyFilter: ModuleNames;
|
|
231
|
-
setFilterModel: ModuleNames;
|
|
232
|
-
getFilterModel: ModuleNames;
|
|
233
|
-
getColumnFilterModel: ModuleNames;
|
|
234
|
-
setColumnFilterModel: ModuleNames;
|
|
235
|
-
showColumnFilter: ModuleNames;
|
|
236
|
-
isQuickFilterPresent: ModuleNames;
|
|
237
|
-
getQuickFilter: ModuleNames;
|
|
238
|
-
resetQuickFilter: ModuleNames;
|
|
239
|
-
paginationIsLastPageFound: ModuleNames;
|
|
240
|
-
paginationGetPageSize: ModuleNames;
|
|
241
|
-
paginationGetCurrentPage: ModuleNames;
|
|
242
|
-
paginationGetTotalPages: ModuleNames;
|
|
243
|
-
paginationGetRowCount: ModuleNames;
|
|
244
|
-
paginationGoToNextPage: ModuleNames;
|
|
245
|
-
paginationGoToPreviousPage: ModuleNames;
|
|
246
|
-
paginationGoToFirstPage: ModuleNames;
|
|
247
|
-
paginationGoToLastPage: ModuleNames;
|
|
248
|
-
paginationGoToPage: ModuleNames;
|
|
249
|
-
expandAll: ModuleNames;
|
|
250
|
-
collapseAll: ModuleNames;
|
|
251
|
-
onRowHeightChanged: ModuleNames;
|
|
252
|
-
setRowCount: ModuleNames;
|
|
253
|
-
getCacheBlockState: ModuleNames;
|
|
254
|
-
isLastRowIndexKnown: ModuleNames;
|
|
255
|
-
};
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import type { BeanCollection } from '../context/context';
|
|
2
|
-
import type { CellPosition } from '../entities/cellPositionUtils';
|
|
3
|
-
import type { Column, ColumnGroup } from '../interfaces/iColumn';
|
|
4
|
-
import type { RowPinnedType } from '../interfaces/iRowNode';
|
|
5
|
-
export declare function getFocusedCell(beans: BeanCollection): CellPosition | null;
|
|
6
|
-
export declare function clearFocusedCell(beans: BeanCollection): void;
|
|
7
|
-
export declare function setFocusedCell(beans: BeanCollection, rowIndex: number, colKey: string | Column, rowPinned?: RowPinnedType): void;
|
|
8
|
-
export declare function tabToNextCell(beans: BeanCollection, event?: KeyboardEvent): boolean;
|
|
9
|
-
export declare function tabToPreviousCell(beans: BeanCollection, event?: KeyboardEvent): boolean;
|
|
10
|
-
export declare function setFocusedHeader(beans: BeanCollection, colKey: string | Column | ColumnGroup, floatingFilter?: boolean): void;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import type { BeanCollection } from '../context/context';
|
|
2
|
-
import type { Column } from '../interfaces/iColumn';
|
|
3
|
-
/** @deprecated v31.1 */
|
|
4
|
-
export declare function showColumnMenuAfterButtonClick(beans: BeanCollection, colKey: string | Column, buttonElement: HTMLElement): void;
|
|
5
|
-
/** @deprecated v31.1 */
|
|
6
|
-
export declare function showColumnMenuAfterMouseClick(beans: BeanCollection, colKey: string | Column, mouseEvent: MouseEvent | Touch): void;
|
|
7
|
-
export declare function showColumnMenu(beans: BeanCollection, colKey: string | Column): void;
|
|
8
|
-
export declare function hidePopupMenu(beans: BeanCollection): void;
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import type { BeanCollection } from '../context/context';
|
|
2
|
-
import type { RenderedRowEvent } from '../interfaces/iCallbackParams';
|
|
3
|
-
import type { IRowModel } from '../interfaces/iRowModel';
|
|
4
|
-
import type { IRowNode } from '../interfaces/iRowNode';
|
|
5
|
-
import type { RedrawRowsParams } from '../rendering/rowRenderer';
|
|
6
|
-
export declare function redrawRows<TData = any>(beans: BeanCollection, params?: RedrawRowsParams<TData>): void;
|
|
7
|
-
export declare function setRowNodeExpanded(beans: BeanCollection, rowNode: IRowNode, expanded: boolean, expandParents?: boolean, forceSync?: boolean): void;
|
|
8
|
-
export declare function getRowNode<TData = any>(beans: BeanCollection, id: string): IRowNode<TData> | undefined;
|
|
9
|
-
export declare function addRenderedRowListener(beans: BeanCollection, eventName: RenderedRowEvent, rowIndex: number, callback: (...args: any[]) => any): void;
|
|
10
|
-
export declare function getRenderedNodes<TData = any>(beans: BeanCollection): IRowNode<TData>[];
|
|
11
|
-
export declare function forEachNode<TData = any>(beans: BeanCollection, callback: (rowNode: IRowNode<TData>, index: number) => void, includeFooterNodes?: boolean): void;
|
|
12
|
-
/** @deprecated v31.1 */
|
|
13
|
-
export declare function getFirstDisplayedRow(beans: BeanCollection): number;
|
|
14
|
-
export declare function getFirstDisplayedRowIndex(beans: BeanCollection): number;
|
|
15
|
-
/** @deprecated v31.1 */
|
|
16
|
-
export declare function getLastDisplayedRow(beans: BeanCollection): number;
|
|
17
|
-
export declare function getLastDisplayedRowIndex(beans: BeanCollection): number;
|
|
18
|
-
export declare function getDisplayedRowAtIndex<TData = any>(beans: BeanCollection, index: number): IRowNode<TData> | undefined;
|
|
19
|
-
export declare function getDisplayedRowCount(beans: BeanCollection): number;
|
|
20
|
-
/** @deprecated v31.1 */
|
|
21
|
-
export declare function getModel(beans: BeanCollection): IRowModel;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import type { NamedBean } from '../context/bean';
|
|
2
|
-
import { BeanStub } from '../context/beanStub';
|
|
3
|
-
import type { BeanCollection } from '../context/context';
|
|
4
|
-
import type { IClientSideRowModel } from '../interfaces/iClientSideRowModel';
|
|
5
|
-
import type { IInfiniteRowModel } from '../interfaces/iInfiniteRowModel';
|
|
6
|
-
import type { IServerSideRowModel } from '../interfaces/iServerSideRowModel';
|
|
7
|
-
export declare class RowModelHelperService extends BeanStub implements NamedBean {
|
|
8
|
-
beanName: "rowModelHelperService";
|
|
9
|
-
private rowModel;
|
|
10
|
-
private clientSideRowModel;
|
|
11
|
-
private infiniteRowModel;
|
|
12
|
-
private serverSideRowModel;
|
|
13
|
-
wireBeans(beans: BeanCollection): void;
|
|
14
|
-
postConstruct(): void;
|
|
15
|
-
getClientSideRowModel(): IClientSideRowModel | undefined;
|
|
16
|
-
getInfiniteRowModel(): IInfiniteRowModel | undefined;
|
|
17
|
-
getServerSideRowModel(): IServerSideRowModel | undefined;
|
|
18
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import type { BeanCollection } from '../context/context';
|
|
2
|
-
import type { SelectionEventSourceType } from '../events';
|
|
3
|
-
import type { IRowNode } from '../interfaces/iRowNode';
|
|
4
|
-
export declare function setNodesSelected(beans: BeanCollection, params: {
|
|
5
|
-
nodes: IRowNode[];
|
|
6
|
-
newValue: boolean;
|
|
7
|
-
source?: SelectionEventSourceType;
|
|
8
|
-
}): void;
|
|
9
|
-
export declare function selectAll(beans: BeanCollection, source?: SelectionEventSourceType): void;
|
|
10
|
-
export declare function deselectAll(beans: BeanCollection, source?: SelectionEventSourceType): void;
|
|
11
|
-
export declare function selectAllFiltered(beans: BeanCollection, source?: SelectionEventSourceType): void;
|
|
12
|
-
export declare function deselectAllFiltered(beans: BeanCollection, source?: SelectionEventSourceType): void;
|
|
13
|
-
export declare function selectAllOnCurrentPage(beans: BeanCollection, source?: SelectionEventSourceType): void;
|
|
14
|
-
export declare function deselectAllOnCurrentPage(beans: BeanCollection, source?: SelectionEventSourceType): void;
|
|
15
|
-
export declare function getSelectedNodes<TData = any>(beans: BeanCollection): IRowNode<TData>[];
|
|
16
|
-
export declare function getSelectedRows<TData = any>(beans: BeanCollection): TData[];
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import type { NamedBean } from './context/bean';
|
|
2
|
-
import { BeanStub } from './context/beanStub';
|
|
3
|
-
import type { BeanCollection } from './context/context';
|
|
4
|
-
import type { CellPosition } from './entities/cellPositionUtils';
|
|
5
|
-
import type { RowPosition } from './entities/rowPositionUtils';
|
|
6
|
-
export declare class CellNavigationService extends BeanStub implements NamedBean {
|
|
7
|
-
beanName: "cellNavigationService";
|
|
8
|
-
private visibleColsService;
|
|
9
|
-
private rowModel;
|
|
10
|
-
private rowRenderer;
|
|
11
|
-
private pinnedRowModel;
|
|
12
|
-
private paginationService?;
|
|
13
|
-
private pageBoundsService;
|
|
14
|
-
wireBeans(beans: BeanCollection): void;
|
|
15
|
-
getNextCellToFocus(key: string, focusedCell: CellPosition, ctrlPressed?: boolean): CellPosition | null;
|
|
16
|
-
private getNextCellToFocusWithCtrlPressed;
|
|
17
|
-
private getNextCellToFocusWithoutCtrlPressed;
|
|
18
|
-
private isCellGoodToFocusOn;
|
|
19
|
-
private getCellToLeft;
|
|
20
|
-
private getCellToRight;
|
|
21
|
-
getRowBelow(rowPosition: RowPosition): RowPosition | null;
|
|
22
|
-
private getNextStickyPosition;
|
|
23
|
-
private getCellBelow;
|
|
24
|
-
private isLastRowInContainer;
|
|
25
|
-
getRowAbove(rowPosition: RowPosition): RowPosition | null;
|
|
26
|
-
private getCellAbove;
|
|
27
|
-
private getLastBodyCell;
|
|
28
|
-
private getLastFloatingTopRow;
|
|
29
|
-
getNextTabbedCell(gridCell: CellPosition, backwards: boolean): CellPosition | null;
|
|
30
|
-
getNextTabbedCellForwards(gridCell: CellPosition): CellPosition | null;
|
|
31
|
-
getNextTabbedCellBackwards(gridCell: CellPosition): CellPosition | null;
|
|
32
|
-
}
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
import type { BeanCollection } from '../context/context';
|
|
2
|
-
import type { ColDef, ColGroupDef, HeaderLocation } from '../entities/colDef';
|
|
3
|
-
import type { ColumnEventType } from '../events';
|
|
4
|
-
import type { Column, ColumnGroup, ColumnPinnedType, ProvidedColumnGroup } from '../interfaces/iColumn';
|
|
5
|
-
import type { ApplyColumnStateParams, ColumnState } from './columnApplyStateService';
|
|
6
|
-
import type { ISizeColumnsToFitParams } from './columnSizeService';
|
|
7
|
-
export declare function getColumnDef<TValue = any, TData = any>(beans: BeanCollection, key: string | Column<TValue>): ColDef<TData, TValue> | null;
|
|
8
|
-
export declare function getColumnDefs<TData = any>(beans: BeanCollection): (ColDef<TData> | ColGroupDef<TData>)[] | undefined;
|
|
9
|
-
export declare function sizeColumnsToFit(beans: BeanCollection, paramsOrGridWidth?: ISizeColumnsToFitParams | number): void;
|
|
10
|
-
export declare function setColumnGroupOpened(beans: BeanCollection, group: ProvidedColumnGroup | string, newValue: boolean): void;
|
|
11
|
-
export declare function getColumnGroup(beans: BeanCollection, name: string, instanceId?: number): ColumnGroup | null;
|
|
12
|
-
export declare function getProvidedColumnGroup(beans: BeanCollection, name: string): ProvidedColumnGroup | null;
|
|
13
|
-
export declare function getDisplayNameForColumn(beans: BeanCollection, column: Column, location: HeaderLocation): string;
|
|
14
|
-
export declare function getDisplayNameForColumnGroup(beans: BeanCollection, columnGroup: ColumnGroup, location: HeaderLocation): string;
|
|
15
|
-
export declare function getColumn<TValue = any, TData = any>(beans: BeanCollection, key: string | ColDef<TData, TValue> | Column<TValue>): Column<TValue> | null;
|
|
16
|
-
export declare function getColumns(beans: BeanCollection): Column[] | null;
|
|
17
|
-
export declare function applyColumnState(beans: BeanCollection, params: ApplyColumnStateParams): boolean;
|
|
18
|
-
export declare function getColumnState(beans: BeanCollection): ColumnState[];
|
|
19
|
-
export declare function resetColumnState(beans: BeanCollection): void;
|
|
20
|
-
export declare function getColumnGroupState(beans: BeanCollection): {
|
|
21
|
-
groupId: string;
|
|
22
|
-
open: boolean;
|
|
23
|
-
}[];
|
|
24
|
-
export declare function setColumnGroupState(beans: BeanCollection, stateItems: {
|
|
25
|
-
groupId: string;
|
|
26
|
-
open: boolean;
|
|
27
|
-
}[]): void;
|
|
28
|
-
export declare function resetColumnGroupState(beans: BeanCollection): void;
|
|
29
|
-
export declare function isPinning(beans: BeanCollection): boolean;
|
|
30
|
-
export declare function isPinningLeft(beans: BeanCollection): boolean;
|
|
31
|
-
export declare function isPinningRight(beans: BeanCollection): boolean;
|
|
32
|
-
export declare function getDisplayedColAfter(beans: BeanCollection, col: Column): Column | null;
|
|
33
|
-
export declare function getDisplayedColBefore(beans: BeanCollection, col: Column): Column | null;
|
|
34
|
-
/** @deprecated v31.1 */
|
|
35
|
-
export declare function setColumnVisible(beans: BeanCollection, key: string | Column, visible: boolean): void;
|
|
36
|
-
export declare function setColumnsVisible(beans: BeanCollection, keys: (string | Column)[], visible: boolean): void;
|
|
37
|
-
/** @deprecated v31.1 */
|
|
38
|
-
export declare function setColumnPinned(beans: BeanCollection, key: string | ColDef | Column, pinned: ColumnPinnedType): void;
|
|
39
|
-
export declare function setColumnsPinned(beans: BeanCollection, keys: (string | ColDef | Column)[], pinned: ColumnPinnedType): void;
|
|
40
|
-
export declare function getAllGridColumns(beans: BeanCollection): Column[];
|
|
41
|
-
export declare function getDisplayedLeftColumns(beans: BeanCollection): Column[];
|
|
42
|
-
export declare function getDisplayedCenterColumns(beans: BeanCollection): Column[];
|
|
43
|
-
export declare function getDisplayedRightColumns(beans: BeanCollection): Column[];
|
|
44
|
-
export declare function getAllDisplayedColumns(beans: BeanCollection): Column[];
|
|
45
|
-
export declare function getAllDisplayedVirtualColumns(beans: BeanCollection): Column[];
|
|
46
|
-
/** @deprecated v31.1 */
|
|
47
|
-
export declare function moveColumn(beans: BeanCollection, key: string | ColDef | Column, toIndex: number): void;
|
|
48
|
-
export declare function moveColumnByIndex(beans: BeanCollection, fromIndex: number, toIndex: number): void;
|
|
49
|
-
export declare function moveColumns(beans: BeanCollection, columnsToMoveKeys: (string | ColDef | Column)[], toIndex: number): void;
|
|
50
|
-
/** @deprecated v31.1 */
|
|
51
|
-
export declare function setColumnWidth(beans: BeanCollection, key: string | ColDef | Column, newWidth: number, finished?: boolean, source?: ColumnEventType): void;
|
|
52
|
-
export declare function setColumnWidths(beans: BeanCollection, columnWidths: {
|
|
53
|
-
key: string | ColDef | Column;
|
|
54
|
-
newWidth: number;
|
|
55
|
-
}[], finished?: boolean, source?: ColumnEventType): void;
|
|
56
|
-
export declare function getLeftDisplayedColumnGroups(beans: BeanCollection): (Column | ColumnGroup)[];
|
|
57
|
-
export declare function getCenterDisplayedColumnGroups(beans: BeanCollection): (Column | ColumnGroup)[];
|
|
58
|
-
export declare function getRightDisplayedColumnGroups(beans: BeanCollection): (Column | ColumnGroup)[];
|
|
59
|
-
export declare function getAllDisplayedColumnGroups(beans: BeanCollection): (Column | ColumnGroup)[] | null;
|
|
60
|
-
/** @deprecated v31.1 */
|
|
61
|
-
export declare function autoSizeColumn(beans: BeanCollection, key: string | ColDef | Column, skipHeader?: boolean): void;
|
|
62
|
-
export declare function autoSizeColumns(beans: BeanCollection, keys: (string | ColDef | Column)[], skipHeader?: boolean): void;
|
|
63
|
-
export declare function autoSizeAllColumns(beans: BeanCollection, skipHeader?: boolean): void;
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
import type { NamedBean } from '../context/bean';
|
|
2
|
-
import { BeanStub } from '../context/beanStub';
|
|
3
|
-
import type { BeanCollection } from '../context/context';
|
|
4
|
-
import type { AgColumn } from '../entities/agColumn';
|
|
5
|
-
import type { IAggFunc } from '../entities/colDef';
|
|
6
|
-
import type { ColumnEventType } from '../events';
|
|
7
|
-
import type { ColumnPinnedType } from '../interfaces/iColumn';
|
|
8
|
-
export interface ModifyColumnsNoEventsCallbacks {
|
|
9
|
-
addGroupCol(col: AgColumn): void;
|
|
10
|
-
removeGroupCol(col: AgColumn): void;
|
|
11
|
-
addPivotCol(col: AgColumn): void;
|
|
12
|
-
removePivotCol(col: AgColumn): void;
|
|
13
|
-
addValueCol(col: AgColumn): void;
|
|
14
|
-
removeValueCol(col: AgColumn): void;
|
|
15
|
-
}
|
|
16
|
-
export interface ColumnStateParams {
|
|
17
|
-
/** True if the column is hidden */
|
|
18
|
-
hide?: boolean | null;
|
|
19
|
-
/** Width of the column in pixels */
|
|
20
|
-
width?: number;
|
|
21
|
-
/** Column's flex if flex is set */
|
|
22
|
-
flex?: number | null;
|
|
23
|
-
/** Sort applied to the column */
|
|
24
|
-
sort?: 'asc' | 'desc' | null;
|
|
25
|
-
/** The order of the sort, if sorting by many columns */
|
|
26
|
-
sortIndex?: number | null;
|
|
27
|
-
/** The aggregation function applied */
|
|
28
|
-
aggFunc?: string | IAggFunc | null;
|
|
29
|
-
/** True if pivot active */
|
|
30
|
-
pivot?: boolean | null;
|
|
31
|
-
/** The order of the pivot, if pivoting by many columns */
|
|
32
|
-
pivotIndex?: number | null;
|
|
33
|
-
/** Set if column is pinned */
|
|
34
|
-
pinned?: ColumnPinnedType;
|
|
35
|
-
/** True if row group active */
|
|
36
|
-
rowGroup?: boolean | null;
|
|
37
|
-
/** The order of the row group, if grouping by many columns */
|
|
38
|
-
rowGroupIndex?: number | null;
|
|
39
|
-
}
|
|
40
|
-
export interface ColumnState extends ColumnStateParams {
|
|
41
|
-
/** ID of the column */
|
|
42
|
-
colId: string;
|
|
43
|
-
}
|
|
44
|
-
export interface ApplyColumnStateParams {
|
|
45
|
-
/** The state from `getColumnState` */
|
|
46
|
-
state?: ColumnState[];
|
|
47
|
-
/** Whether column order should be applied */
|
|
48
|
-
applyOrder?: boolean;
|
|
49
|
-
/** State to apply to columns where state is missing for those columns */
|
|
50
|
-
defaultState?: ColumnStateParams;
|
|
51
|
-
}
|
|
52
|
-
export declare class ColumnApplyStateService extends BeanStub implements NamedBean {
|
|
53
|
-
beanName: "columnApplyStateService";
|
|
54
|
-
private columnModel;
|
|
55
|
-
private eventDispatcher;
|
|
56
|
-
private sortController;
|
|
57
|
-
private columnGetStateService;
|
|
58
|
-
private funcColsService;
|
|
59
|
-
private visibleColsService;
|
|
60
|
-
private columnAnimationService;
|
|
61
|
-
private pivotResultColsService;
|
|
62
|
-
wireBeans(beans: BeanCollection): void;
|
|
63
|
-
applyColumnState(params: ApplyColumnStateParams, source: ColumnEventType): boolean;
|
|
64
|
-
resetColumnState(source: ColumnEventType): void;
|
|
65
|
-
getColumnStateFromColDef(column: AgColumn): ColumnState;
|
|
66
|
-
private syncColumnWithStateItem;
|
|
67
|
-
private orderLiveColsLikeState;
|
|
68
|
-
compareColumnStatesAndDispatchEvents(source: ColumnEventType): () => void;
|
|
69
|
-
private normaliseColumnMovedEventForColumnState;
|
|
70
|
-
}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import type { NamedBean } from '../context/bean';
|
|
2
|
-
import { BeanStub } from '../context/beanStub';
|
|
3
|
-
import type { BeanCollection } from '../context/context';
|
|
4
|
-
import type { AgColumnGroup } from '../entities/agColumnGroup';
|
|
5
|
-
import type { ColumnEventType } from '../events';
|
|
6
|
-
import type { ColKey, Maybe } from './columnModel';
|
|
7
|
-
export declare class ColumnAutosizeService extends BeanStub implements NamedBean {
|
|
8
|
-
beanName: "columnAutosizeService";
|
|
9
|
-
private columnModel;
|
|
10
|
-
private visibleColsService;
|
|
11
|
-
private animationFrameService;
|
|
12
|
-
private autoWidthCalculator;
|
|
13
|
-
private eventDispatcher;
|
|
14
|
-
private ctrlsService;
|
|
15
|
-
private renderStatusService?;
|
|
16
|
-
private timesDelayed;
|
|
17
|
-
wireBeans(beans: BeanCollection): void;
|
|
18
|
-
autoSizeCols(params: {
|
|
19
|
-
colKeys: ColKey[];
|
|
20
|
-
skipHeader?: boolean;
|
|
21
|
-
skipHeaderGroups?: boolean;
|
|
22
|
-
stopAtGroup?: AgColumnGroup;
|
|
23
|
-
source?: ColumnEventType;
|
|
24
|
-
}): void;
|
|
25
|
-
autoSizeColumn(key: Maybe<ColKey>, source: ColumnEventType, skipHeader?: boolean): void;
|
|
26
|
-
private autoSizeColumnGroupsByColumns;
|
|
27
|
-
autoSizeAllColumns(source: ColumnEventType, skipHeader?: boolean): void;
|
|
28
|
-
private normaliseColumnWidth;
|
|
29
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import type { NamedBean } from '../context/bean';
|
|
2
|
-
import { BeanStub } from '../context/beanStub';
|
|
3
|
-
import type { AgColumn } from '../entities/agColumn';
|
|
4
|
-
import type { ColDef, ColGroupDef } from '../entities/colDef';
|
|
5
|
-
export declare class ColumnDefFactory extends BeanStub implements NamedBean {
|
|
6
|
-
beanName: "columnDefFactory";
|
|
7
|
-
buildColumnDefs(cols: AgColumn[], rowGroupColumns: AgColumn[], pivotColumns: AgColumn[]): (ColDef | ColGroupDef)[];
|
|
8
|
-
private createDefFromGroup;
|
|
9
|
-
private createDefFromColumn;
|
|
10
|
-
}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import type { NamedBean } from '../context/bean';
|
|
2
|
-
import { BeanStub } from '../context/beanStub';
|
|
3
|
-
import type { AgColumn } from '../entities/agColumn';
|
|
4
|
-
import type { AgColumnGroup } from '../entities/agColumnGroup';
|
|
5
|
-
import type { AgProvidedColumnGroup } from '../entities/agProvidedColumnGroup';
|
|
6
|
-
import type { ColumnEventType } from '../events';
|
|
7
|
-
export declare class ColumnEventDispatcher extends BeanStub implements NamedBean {
|
|
8
|
-
beanName: "columnEventDispatcher";
|
|
9
|
-
visibleCols(source: ColumnEventType): void;
|
|
10
|
-
gridColumns(): void;
|
|
11
|
-
headerHeight(col: AgColumn): void;
|
|
12
|
-
groupHeaderHeight(col: AgColumnGroup): void;
|
|
13
|
-
groupOpened(impactedGroups: AgProvidedColumnGroup[]): void;
|
|
14
|
-
rowGroupChanged(impactedColumns: AgColumn[], source: ColumnEventType): void;
|
|
15
|
-
genericColumnEvent(eventType: 'columnValueChanged' | 'columnPivotChanged' | 'columnRowGroupChanged', masterList: AgColumn[], source: ColumnEventType): void;
|
|
16
|
-
pivotModeChanged(): void;
|
|
17
|
-
virtualColumnsChanged(afterScroll: boolean): void;
|
|
18
|
-
newColumnsLoaded(source: ColumnEventType): void;
|
|
19
|
-
/** @deprecated v32.2 */
|
|
20
|
-
everythingChanged(source: ColumnEventType): void;
|
|
21
|
-
columnMoved(params: {
|
|
22
|
-
movedColumns: AgColumn[];
|
|
23
|
-
source: ColumnEventType;
|
|
24
|
-
toIndex?: number;
|
|
25
|
-
finished: boolean;
|
|
26
|
-
}): void;
|
|
27
|
-
columnPinned(changedColumns: AgColumn[], source: ColumnEventType): void;
|
|
28
|
-
columnVisible(changedColumns: AgColumn[], source: ColumnEventType): void;
|
|
29
|
-
private getCommonValue;
|
|
30
|
-
columnChanged<T extends 'columnValueChanged' | 'columnPivotChanged' | 'columnRowGroupChanged'>(type: T, columns: AgColumn[], source: ColumnEventType): void;
|
|
31
|
-
columnResized(columns: AgColumn[] | null, finished: boolean, source: ColumnEventType, flexColumns?: AgColumn[] | null): void;
|
|
32
|
-
}
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import type { NamedBean } from '../context/bean';
|
|
2
|
-
import { BeanStub } from '../context/beanStub';
|
|
3
|
-
import type { BeanCollection } from '../context/context';
|
|
4
|
-
import { AgColumn } from '../entities/agColumn';
|
|
5
|
-
import { AgProvidedColumnGroup } from '../entities/agProvidedColumnGroup';
|
|
6
|
-
import type { ColDef, ColGroupDef } from '../entities/colDef';
|
|
7
|
-
import type { ColumnEventType } from '../events';
|
|
8
|
-
export declare class ColumnFactory extends BeanStub implements NamedBean {
|
|
9
|
-
beanName: "columnFactory";
|
|
10
|
-
private dataTypeService?;
|
|
11
|
-
wireBeans(beans: BeanCollection): void;
|
|
12
|
-
createColumnTree(defs: (ColDef | ColGroupDef)[] | null, primaryColumns: boolean, existingTree: (AgColumn | AgProvidedColumnGroup)[] | undefined, source: ColumnEventType): {
|
|
13
|
-
columnTree: (AgColumn | AgProvidedColumnGroup)[];
|
|
14
|
-
treeDept: number;
|
|
15
|
-
};
|
|
16
|
-
private extractExistingTreeData;
|
|
17
|
-
/**
|
|
18
|
-
* Inserts dummy group columns in the hierarchy above auto-generated columns
|
|
19
|
-
* in order to ensure auto-generated columns are leaf nodes (and therefore are
|
|
20
|
-
* displayed correctly)
|
|
21
|
-
*/
|
|
22
|
-
balanceTreeForAutoCols(autoCols: AgColumn[], liveTree: (AgColumn | AgProvidedColumnGroup)[]): [(AgColumn | AgProvidedColumnGroup)[], number];
|
|
23
|
-
private findDepth;
|
|
24
|
-
private balanceColumnTree;
|
|
25
|
-
private findMaxDept;
|
|
26
|
-
private recursivelyCreateColumns;
|
|
27
|
-
private createColumnGroup;
|
|
28
|
-
private createMergedColGroupDef;
|
|
29
|
-
private createColumn;
|
|
30
|
-
applyColumnState(column: AgColumn, colDef: ColDef, source: ColumnEventType): void;
|
|
31
|
-
private findExistingColumn;
|
|
32
|
-
private findExistingGroup;
|
|
33
|
-
addColumnDefaultAndTypes(colDef: ColDef, colId: string): ColDef;
|
|
34
|
-
private updateColDefAndGetColumnType;
|
|
35
|
-
private assignColumnTypes;
|
|
36
|
-
private isColumnGroup;
|
|
37
|
-
}
|
|
38
|
-
export declare function depthFirstOriginalTreeSearch(parent: AgProvidedColumnGroup | null, tree: (AgColumn | AgProvidedColumnGroup)[], callback: (treeNode: AgColumn | AgProvidedColumnGroup, parent: AgProvidedColumnGroup | null) => void): void;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import type { NamedBean } from '../context/bean';
|
|
2
|
-
import { BeanStub } from '../context/beanStub';
|
|
3
|
-
import type { BeanCollection } from '../context/context';
|
|
4
|
-
import type { ColumnState } from './columnApplyStateService';
|
|
5
|
-
export declare class ColumnGetStateService extends BeanStub implements NamedBean {
|
|
6
|
-
beanName: "columnGetStateService";
|
|
7
|
-
private columnModel;
|
|
8
|
-
private funcColsService;
|
|
9
|
-
wireBeans(beans: BeanCollection): void;
|
|
10
|
-
getColumnState(): ColumnState[];
|
|
11
|
-
private createStateItemFromColumn;
|
|
12
|
-
private orderColumnStateList;
|
|
13
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import type { NamedBean } from '../context/bean';
|
|
2
|
-
import { BeanStub } from '../context/beanStub';
|
|
3
|
-
import type { BeanCollection } from '../context/context';
|
|
4
|
-
import type { ColumnEventType } from '../events';
|
|
5
|
-
export declare class ColumnGroupStateService extends BeanStub implements NamedBean {
|
|
6
|
-
beanName: "columnGroupStateService";
|
|
7
|
-
private columnModel;
|
|
8
|
-
private columnAnimationService;
|
|
9
|
-
private eventDispatcher;
|
|
10
|
-
private visibleColsService;
|
|
11
|
-
wireBeans(beans: BeanCollection): void;
|
|
12
|
-
getColumnGroupState(): {
|
|
13
|
-
groupId: string;
|
|
14
|
-
open: boolean;
|
|
15
|
-
}[];
|
|
16
|
-
resetColumnGroupState(source: ColumnEventType): void;
|
|
17
|
-
setColumnGroupState(stateItems: {
|
|
18
|
-
groupId: string;
|
|
19
|
-
open: boolean | undefined;
|
|
20
|
-
}[], source: ColumnEventType): void;
|
|
21
|
-
}
|