ag-grid-community 32.3.2 → 33.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +27 -50
- package/dist/ag-grid-community.js +55097 -49364
- package/dist/ag-grid-community.min.js +1 -1
- package/dist/ag-grid-community.min.noStyle.js +1 -1
- package/dist/ag-grid-community.noStyle.js +54255 -48477
- package/dist/package/main.cjs.js +38771 -41341
- package/dist/package/main.cjs.min.js +162 -147
- package/dist/package/main.esm.min.mjs +170 -155
- package/dist/package/main.esm.mjs +39092 -41662
- package/dist/package/package.json +18 -13
- package/dist/types/package.json +118 -0
- package/dist/types/src/alignedGrids/alignedGridsModule.d.ts +6 -0
- package/dist/types/src/alignedGrids/alignedGridsService.d.ts +22 -0
- package/dist/types/src/allCommunityModule.d.ts +5 -0
- package/dist/types/src/api/apiFunctionService.d.ts +16 -0
- package/dist/types/src/api/apiModule.d.ts +10 -0
- package/dist/types/src/api/coreApi.d.ts +9 -0
- package/dist/types/src/api/gridApi.d.ts +908 -0
- package/dist/types/src/api/gridApiFunctions.d.ts +3 -0
- package/dist/types/src/api/rowApi.d.ts +14 -0
- package/dist/types/src/api/rowModelApiUtils.d.ts +7 -0
- package/dist/types/src/api/sharedApiModule.d.ts +10 -0
- package/dist/types/src/baseUrl.d.ts +1 -0
- package/dist/types/src/clientSideRowModel/abstractClientSideNodeManager.d.ts +62 -0
- package/dist/types/src/clientSideRowModel/changedRowNodes.d.ts +13 -0
- package/dist/types/src/clientSideRowModel/clientSideNodeManager.d.ts +5 -0
- package/dist/types/src/clientSideRowModel/clientSideRowModel.d.ts +141 -0
- package/dist/types/src/clientSideRowModel/clientSideRowModelApi.d.ts +16 -0
- package/dist/types/src/clientSideRowModel/clientSideRowModelModule.d.ts +10 -0
- package/dist/types/src/clientSideRowModel/filterStage.d.ts +19 -0
- package/dist/types/src/clientSideRowModel/sortStage.d.ts +14 -0
- package/dist/types/src/columnAutosize/columnAutosizeApi.d.ts +7 -0
- package/dist/types/src/columnAutosize/columnAutosizeModule.d.ts +7 -0
- package/dist/types/src/columnAutosize/columnAutosizeService.d.ts +33 -0
- package/dist/types/src/columnMove/column-moving.css-GENERATED.d.ts +1 -0
- package/dist/types/src/columnMove/columnAnimationService.d.ts +21 -0
- package/dist/types/src/columnMove/columnDrag/bodyDropPivotTarget.d.ts +22 -0
- package/dist/types/src/columnMove/columnDrag/bodyDropTarget.d.ts +32 -0
- package/dist/types/src/columnMove/columnDrag/moveColumnFeature.d.ts +48 -0
- package/dist/types/src/columnMove/columnMoveApi.d.ts +5 -0
- package/dist/types/src/columnMove/columnMoveModule.d.ts +6 -0
- package/dist/types/src/columnMove/columnMoveService.d.ts +21 -0
- package/dist/types/src/columnMove/columnMoveUtils.d.ts +5 -0
- package/dist/types/src/columnMove/internalColumnMoveUtils.d.ts +40 -0
- package/dist/types/src/columnResize/columnResizeApi.d.ts +8 -0
- package/dist/types/src/columnResize/columnResizeModule.d.ts +6 -0
- package/dist/types/src/columnResize/columnResizeService.d.ts +33 -0
- package/dist/types/src/columnResize/groupResizeFeature.d.ts +40 -0
- package/dist/types/src/columnResize/resizeFeature.d.ts +21 -0
- package/dist/types/src/columns/baseColsService.d.ts +43 -0
- package/dist/types/src/columns/columnApi.d.ts +26 -0
- package/dist/types/src/columns/columnDefFactory.d.ts +16 -0
- package/dist/types/src/columns/columnEventUtils.d.ts +7 -0
- package/dist/types/src/columns/columnFactoryUtils.d.ts +16 -0
- package/dist/types/src/columns/columnFlexService.d.ts +18 -0
- package/dist/types/src/columns/columnGroups/columnGroupApi.d.ts +20 -0
- package/dist/types/src/columns/columnGroups/columnGroupModule.d.ts +7 -0
- package/dist/types/src/columns/columnGroups/columnGroupService.d.ts +51 -0
- package/dist/types/src/columns/columnHover/columnHoverApi.d.ts +3 -0
- package/dist/types/src/columns/columnHover/columnHoverModule.d.ts +7 -0
- package/dist/types/src/columns/columnHover/columnHoverService.d.ts +18 -0
- package/dist/types/src/columns/columnHover/hoverFeature.d.ts +8 -0
- package/dist/types/src/columns/columnModel.d.ts +57 -0
- package/dist/types/src/columns/columnModule.d.ts +14 -0
- package/dist/types/src/columns/columnNameService.d.ts +19 -0
- package/dist/types/src/columns/columnStateUtils.d.ts +59 -0
- package/dist/types/src/columns/columnUtils.d.ts +22 -0
- package/dist/types/src/columns/columnViewportService.d.ts +37 -0
- package/dist/types/src/columns/dataTypeService.d.ts +47 -0
- package/dist/types/src/columns/selectionColService.d.ts +21 -0
- package/dist/types/src/columns/visibleColsService.d.ts +52 -0
- package/dist/types/src/components/framework/agComponentUtils.d.ts +7 -0
- package/dist/types/src/components/framework/cellRendererFunctionModule.d.ts +5 -0
- package/dist/types/src/components/framework/frameworkComponentWrapper.d.ts +26 -0
- package/dist/types/src/components/framework/registry.d.ts +25 -0
- package/dist/types/src/components/framework/userCompUtils.d.ts +52 -0
- package/dist/types/src/components/framework/userComponentFactory.d.ts +30 -0
- package/dist/types/src/constants/direction.d.ts +2 -0
- package/dist/types/src/constants/keyCode.d.ts +24 -0
- package/dist/types/src/context/beanStub.d.ts +83 -0
- package/dist/types/src/context/context.d.ts +251 -0
- package/dist/types/src/csvExport/csvCreator.d.ts +21 -0
- package/dist/types/src/csvExport/csvExportApi.d.ts +4 -0
- package/dist/types/src/csvExport/csvExportModule.d.ts +6 -0
- package/dist/types/src/csvExport/csvSerializingSession.d.ts +26 -0
- package/dist/types/src/ctrlsService.d.ts +55 -0
- package/dist/types/src/dragAndDrop/dragAndDropImageComponent.css-GENERATED.d.ts +1 -0
- package/dist/types/src/dragAndDrop/dragAndDropImageComponent.d.ts +25 -0
- package/dist/types/src/dragAndDrop/dragAndDropService.d.ts +153 -0
- package/dist/types/src/dragAndDrop/dragApi.d.ts +5 -0
- package/dist/types/src/dragAndDrop/dragModule.d.ts +24 -0
- package/dist/types/src/dragAndDrop/dragService.d.ts +53 -0
- package/dist/types/src/dragAndDrop/horizontalResizeService.d.ts +20 -0
- package/dist/types/src/dragAndDrop/rowDragComp.d.ts +24 -0
- package/dist/types/src/dragAndDrop/rowDragFeature.d.ts +55 -0
- package/dist/types/src/dragAndDrop/rowDragService.d.ts +14 -0
- package/dist/types/src/edit/cell-editing.css-GENERATED.d.ts +1 -0
- package/dist/types/src/edit/cellEditors/dateStringCellEditor.d.ts +6 -0
- package/dist/types/src/edit/cellEditors/selectCellEditor.d.ts +20 -0
- package/dist/types/src/edit/editApi.d.ts +12 -0
- package/dist/types/src/edit/editModule.d.ts +38 -0
- package/dist/types/src/edit/editService.d.ts +32 -0
- package/dist/types/src/edit/rowEditService.d.ts +9 -0
- package/dist/types/src/entities/agColumn.d.ts +149 -0
- package/dist/types/src/entities/agColumnGroup.d.ts +57 -0
- package/dist/types/src/entities/agProvidedColumnGroup.d.ts +42 -0
- package/dist/types/src/entities/colDef.d.ts +864 -0
- package/dist/types/src/entities/gridOptions.d.ts +2260 -0
- package/dist/types/src/entities/positionUtils.d.ts +13 -0
- package/dist/types/src/entities/rowNode.d.ts +305 -0
- package/dist/types/src/entities/rowNodeUtils.d.ts +5 -0
- package/dist/types/src/environment.d.ts +32 -0
- package/dist/types/src/eventService.d.ts +18 -0
- package/dist/types/src/eventTypes.d.ts +8 -0
- package/dist/types/src/events.d.ts +890 -0
- package/dist/types/src/export/baseCreator.d.ts +13 -0
- package/dist/types/src/export/baseGridSerializingSession.d.ts +37 -0
- package/dist/types/src/export/downloader.d.ts +1 -0
- package/dist/types/src/export/exportModule.d.ts +5 -0
- package/dist/types/src/export/gridSerializer.d.ts +27 -0
- package/dist/types/src/export/iGridSerializer.d.ts +37 -0
- package/dist/types/src/filter/column-filters.css-GENERATED.d.ts +1 -0
- package/dist/types/src/filter/columnFilterApi.d.ts +11 -0
- package/dist/types/src/filter/columnFilterService.d.ts +81 -0
- package/dist/types/src/filter/filterManager.d.ts +82 -0
- package/dist/types/src/filter/filterMenuFactory.d.ts +23 -0
- package/dist/types/src/filter/filterModule.d.ts +45 -0
- package/dist/types/src/filter/filterValueService.d.ts +10 -0
- package/dist/types/src/filter/filterWrapperComp.d.ts +21 -0
- package/dist/types/src/filter/floating/floatingFilter.d.ts +76 -0
- package/dist/types/src/filter/floating/floatingFilterMapper.d.ts +3 -0
- package/dist/types/src/filter/floating/provided/floatingFilterTextInputService.d.ts +20 -0
- package/dist/types/src/filter/floating/provided/readOnlyFloatingFilter.d.ts +11 -0
- package/dist/types/src/filter/floating/provided/simpleFloatingFilter.d.ts +25 -0
- package/dist/types/src/filter/floating/provided/textInputFloatingFilter.d.ts +24 -0
- package/dist/types/src/filter/provided/date/dateCompWrapper.d.ts +25 -0
- package/dist/types/src/filter/provided/date/dateFilter.d.ts +43 -0
- package/dist/types/src/filter/provided/date/dateFilterModelFormatter.d.ts +14 -0
- package/dist/types/src/filter/provided/date/dateFloatingFilter.d.ts +24 -0
- package/dist/types/src/filter/provided/date/defaultDateComponent.d.ts +23 -0
- package/dist/types/src/filter/provided/number/numberFilter.d.ts +32 -0
- package/dist/types/src/filter/provided/number/numberFloatingFilter.d.ts +12 -0
- package/dist/types/src/filter/provided/optionsFactory.d.ts +13 -0
- package/dist/types/src/filter/provided/providedFilter.d.ts +84 -0
- package/dist/types/src/filter/provided/simpleFilter.d.ts +106 -0
- package/dist/types/src/filter/provided/simpleFilterModelFormatter.d.ts +16 -0
- package/dist/types/src/filter/provided/simpleFilterUtils.d.ts +7 -0
- package/dist/types/src/filter/provided/text/textFilter.d.ts +33 -0
- package/dist/types/src/filter/provided/text/textFloatingFilter.d.ts +11 -0
- package/dist/types/src/filter/quickFilterService.d.ts +28 -0
- package/dist/types/src/focusService.d.ts +72 -0
- package/dist/types/src/grid.d.ts +54 -0
- package/dist/types/src/gridBodyComp/abstractFakeScrollComp.d.ts +21 -0
- package/dist/types/src/gridBodyComp/centerWidthFeature.d.ts +8 -0
- package/dist/types/src/gridBodyComp/fakeHScrollComp.d.ts +23 -0
- package/dist/types/src/gridBodyComp/fakeVScrollComp.d.ts +11 -0
- package/dist/types/src/gridBodyComp/gridBodyComp.d.ts +15 -0
- package/dist/types/src/gridBodyComp/gridBodyCtrl.d.ts +81 -0
- package/dist/types/src/gridBodyComp/gridBodyScrollFeature.d.ts +71 -0
- package/dist/types/src/gridBodyComp/mouseEventUtils.d.ts +12 -0
- package/dist/types/src/gridBodyComp/rowContainer/rowContainerComp.d.ts +20 -0
- package/dist/types/src/gridBodyComp/rowContainer/rowContainerCtrl.d.ts +71 -0
- package/dist/types/src/gridBodyComp/rowContainer/rowContainerEventsFeature.d.ts +26 -0
- package/dist/types/src/gridBodyComp/rowContainer/setHeightFeature.d.ts +8 -0
- package/dist/types/src/gridBodyComp/rowContainer/setPinnedWidthFeature.d.ts +9 -0
- package/dist/types/src/gridBodyComp/scrollVisibleService.d.ts +24 -0
- package/dist/types/src/gridBodyComp/viewportSizeFeature.d.ts +22 -0
- package/dist/types/src/gridComp/gridCtrl.d.ts +43 -0
- package/dist/types/src/gridCoreModule.d.ts +6 -0
- package/dist/types/src/gridDestroyService.d.ts +7 -0
- package/dist/types/src/gridOptionsDefault.d.ts +173 -0
- package/dist/types/src/gridOptionsInitial.d.ts +88 -0
- package/dist/types/src/gridOptionsService.d.ts +108 -0
- package/dist/types/src/gridOptionsUtils.d.ts +74 -0
- package/dist/types/src/headerRendering/cells/abstractCell/abstractHeaderCellCtrl.d.ts +59 -0
- package/dist/types/src/headerRendering/cells/column/headerCellComp.d.ts +15 -0
- package/dist/types/src/headerRendering/cells/column/headerCellCtrl.d.ts +78 -0
- package/dist/types/src/headerRendering/cells/column/headerComp.d.ts +131 -0
- package/dist/types/src/headerRendering/cells/columnGroup/headerGroupCellCtrl.d.ts +42 -0
- package/dist/types/src/headerRendering/cells/columnGroup/headerGroupComp.d.ts +50 -0
- package/dist/types/src/headerRendering/cells/floatingFilter/headerFilterCellCtrl.d.ts +41 -0
- package/dist/types/src/headerRendering/cells/floatingFilter/iHeaderFilterCellComp.d.ts +12 -0
- package/dist/types/src/headerRendering/cells/headerModule.d.ts +11 -0
- package/dist/types/src/headerRendering/gridHeaderCtrl.d.ts +19 -0
- package/dist/types/src/headerRendering/headerUtils.d.ts +8 -0
- package/dist/types/src/headerRendering/row/headerRowComp.d.ts +12 -0
- package/dist/types/src/headerRendering/row/headerRowCtrl.d.ts +59 -0
- package/dist/types/src/headerRendering/rowContainer/headerRowContainerCtrl.d.ts +44 -0
- package/dist/types/src/infiniteRowModel/infiniteBlock.d.ts +38 -0
- package/dist/types/src/infiniteRowModel/infiniteCache.d.ts +49 -0
- package/dist/types/src/infiniteRowModel/infiniteRowModel.d.ts +42 -0
- package/dist/types/src/infiniteRowModel/infiniteRowModelApi.d.ts +4 -0
- package/dist/types/src/infiniteRowModel/infiniteRowModelModule.d.ts +6 -0
- package/dist/types/src/infiniteRowModel/rowNodeBlockLoader.d.ts +23 -0
- package/dist/types/src/interfaces/IRangeService.d.ts +81 -0
- package/dist/types/src/interfaces/IServerSideStore.d.ts +35 -0
- package/dist/types/src/interfaces/autoSize.d.ts +51 -0
- package/dist/types/src/interfaces/dateComponent.d.ts +42 -0
- package/dist/types/src/interfaces/exportParams.d.ts +153 -0
- package/dist/types/src/interfaces/gridState.d.ts +160 -0
- package/dist/types/src/interfaces/groupCellRenderer.d.ts +68 -0
- package/dist/types/src/interfaces/iAggColumnNameService.d.ts +4 -0
- package/dist/types/src/interfaces/iAutoColService.d.ts +11 -0
- package/dist/types/src/interfaces/iCallbackParams.d.ts +236 -0
- package/dist/types/src/interfaces/iCellEditor.d.ts +97 -0
- package/dist/types/src/interfaces/iCellPosition.d.ts +6 -0
- package/dist/types/src/interfaces/iCellRangeFeature.d.ts +8 -0
- package/dist/types/src/interfaces/iCellsParams.d.ts +20 -0
- package/dist/types/src/interfaces/iChartOptions.d.ts +62 -0
- package/dist/types/src/interfaces/iClientSideNodeManager.d.ts +24 -0
- package/dist/types/src/interfaces/iClientSideRowModel.d.ts +94 -0
- package/dist/types/src/interfaces/iColsService.d.ts +49 -0
- package/dist/types/src/interfaces/iColumn.d.ts +242 -0
- package/dist/types/src/interfaces/iContextMenu.d.ts +38 -0
- package/dist/types/src/interfaces/iDatasource.d.ts +27 -0
- package/dist/types/src/interfaces/iDragItem.d.ts +30 -0
- package/dist/types/src/interfaces/iExcelCreator.d.ts +584 -0
- package/dist/types/src/interfaces/iExpansionService.d.ts +14 -0
- package/dist/types/src/interfaces/iFilter.d.ts +182 -0
- package/dist/types/src/interfaces/iFooterService.d.ts +7 -0
- package/dist/types/src/interfaces/iFrameworkEventListenerService.d.ts +6 -0
- package/dist/types/src/interfaces/iFrameworkOverrides.d.ts +47 -0
- package/dist/types/src/interfaces/iGroupHideOpenParentsService.d.ts +9 -0
- package/dist/types/src/interfaces/iHeaderPosition.d.ts +7 -0
- package/dist/types/src/interfaces/iLoadingCellRenderer.d.ts +8 -0
- package/dist/types/src/interfaces/iModule.d.ts +61 -0
- package/dist/types/src/interfaces/iPivotResultColsService.d.ts +11 -0
- package/dist/types/src/interfaces/iPopup.d.ts +25 -0
- package/dist/types/src/interfaces/iRedrawRowsParams.d.ts +5 -0
- package/dist/types/src/interfaces/iRowChildrenService.d.ts +4 -0
- package/dist/types/src/interfaces/iRowDragItem.d.ts +5 -0
- package/dist/types/src/interfaces/iRowModel.d.ts +50 -0
- package/dist/types/src/interfaces/iRowNode.d.ts +270 -0
- package/dist/types/src/interfaces/iRowNodeStage.d.ts +18 -0
- package/dist/types/src/interfaces/iRowPosition.d.ts +8 -0
- package/dist/types/src/interfaces/iSelectionService.d.ts +67 -0
- package/dist/types/src/interfaces/iServerSideDatasource.d.ts +59 -0
- package/dist/types/src/interfaces/iServerSideRowModel.d.ts +55 -0
- package/dist/types/src/interfaces/iSetFilter.d.ts +203 -0
- package/dist/types/src/interfaces/iShowRowGroupColsService.d.ts +8 -0
- package/dist/types/src/interfaces/iSideBar.d.ts +62 -0
- package/dist/types/src/interfaces/iSortModelItem.d.ts +6 -0
- package/dist/types/src/interfaces/iSortOption.d.ts +5 -0
- package/dist/types/src/interfaces/iSparklineCellRendererParams.d.ts +6 -0
- package/dist/types/src/interfaces/iStickyRows.d.ts +17 -0
- package/dist/types/src/interfaces/iToolPanel.d.ts +54 -0
- package/dist/types/src/interfaces/iUserCompDetails.d.ts +17 -0
- package/dist/types/src/interfaces/masterDetail.d.ts +56 -0
- package/dist/types/src/interfaces/menuItem.d.ts +137 -0
- package/dist/types/src/interfaces/serverSideTransaction.d.ts +61 -0
- package/dist/types/src/main.d.ts +323 -0
- package/dist/types/src/misc/animationFrameModule.d.ts +6 -0
- package/dist/types/src/misc/animationFrameService.d.ts +30 -0
- package/dist/types/src/misc/apiEvents/apiEventModule.d.ts +6 -0
- package/dist/types/src/misc/apiEvents/apiEventService.d.ts +21 -0
- package/dist/types/src/misc/apiEvents/eventApi.d.ts +7 -0
- package/dist/types/src/misc/locale/localeModule.d.ts +6 -0
- package/dist/types/src/misc/locale/localeService.d.ts +7 -0
- package/dist/types/src/misc/locale/localeUtils.d.ts +3 -0
- package/dist/types/src/misc/menu/menuApi.d.ts +4 -0
- package/dist/types/src/misc/menu/menuService.d.ts +49 -0
- package/dist/types/src/misc/menu/sharedMenuModule.d.ts +6 -0
- package/dist/types/src/misc/state/stateModule.d.ts +7 -0
- package/dist/types/src/misc/state/stateService.d.ts +52 -0
- package/dist/types/src/misc/touchModule.d.ts +5 -0
- package/dist/types/src/misc/touchService.d.ts +18 -0
- package/dist/types/src/modules/moduleRegistry.d.ts +20 -0
- package/dist/types/src/navigation/cellNavigationService.d.ts +25 -0
- package/dist/types/src/navigation/headerNavigationService.d.ts +22 -0
- package/dist/types/src/navigation/navigationApi.d.ts +10 -0
- package/dist/types/src/navigation/navigationModule.d.ts +6 -0
- package/dist/types/src/navigation/navigationService.d.ts +44 -0
- package/dist/types/src/pagination/pageBoundsListener.d.ts +8 -0
- package/dist/types/src/pagination/pageBoundsService.d.ts +18 -0
- package/dist/types/src/pagination/pageSizeSelector/pageSizeSelectorComp.d.ts +24 -0
- package/dist/types/src/pagination/paginationAutoPageSizeService.d.ts +11 -0
- package/dist/types/src/pagination/paginationComp.css-GENERATED.d.ts +1 -0
- package/dist/types/src/pagination/paginationComp.d.ts +46 -0
- package/dist/types/src/pagination/paginationModule.d.ts +7 -0
- package/dist/types/src/pagination/paginationService.d.ts +50 -0
- package/dist/types/src/pinnedColumns/pinnedColumnModule.css-GENERATED.d.ts +1 -0
- package/dist/types/src/pinnedColumns/pinnedColumnModule.d.ts +6 -0
- package/dist/types/src/pinnedColumns/pinnedColumnService.d.ts +25 -0
- package/dist/types/src/pinnedRowModel/pinnedRowModel.d.ts +32 -0
- package/dist/types/src/pinnedRowModel/pinnedRowModule.d.ts +7 -0
- package/dist/types/src/propertyKeys.d.ts +33 -0
- package/dist/types/src/rendering/ariaAnnouncementService.d.ts +16 -0
- package/dist/types/src/rendering/ariaModule.d.ts +5 -0
- package/dist/types/src/rendering/autoWidthCalculator.d.ts +14 -0
- package/dist/types/src/rendering/autoWidthModule.d.ts +5 -0
- package/dist/types/src/rendering/cell/cellComp.d.ts +50 -0
- package/dist/types/src/rendering/cell/cellCtrl.d.ts +143 -0
- package/dist/types/src/rendering/cell/cellFlashService.d.ts +11 -0
- package/dist/types/src/rendering/cell/cellKeyboardListenerFeature.d.ts +24 -0
- package/dist/types/src/rendering/cell/cellMouseListenerFeature.d.ts +20 -0
- package/dist/types/src/rendering/cell/cellPositionFeature.d.ts +32 -0
- package/dist/types/src/rendering/cell/highlightChangesApi.d.ts +3 -0
- package/dist/types/src/rendering/cell/highlightChangesModule.d.ts +7 -0
- package/dist/types/src/rendering/cellRenderers/animateShowChangeCellRenderer.d.ts +14 -0
- package/dist/types/src/rendering/cellRenderers/animateSlideCellRenderer.css-GENERATED.d.ts +1 -0
- package/dist/types/src/rendering/cellRenderers/animateSlideCellRenderer.d.ts +12 -0
- package/dist/types/src/rendering/cellRenderers/cellRendererModule.d.ts +6 -0
- package/dist/types/src/rendering/cellRenderers/checkboxCellRenderer.css-GENERATED.d.ts +1 -0
- package/dist/types/src/rendering/cellRenderers/iCellRenderer.d.ts +78 -0
- package/dist/types/src/rendering/features/positionableFeature.d.ts +93 -0
- package/dist/types/src/rendering/features/setLeftFeature.d.ts +20 -0
- package/dist/types/src/rendering/overlays/overlayComponent.d.ts +14 -0
- package/dist/types/src/rendering/overlays/overlayModule.d.ts +7 -0
- package/dist/types/src/rendering/overlays/overlayService.d.ts +31 -0
- package/dist/types/src/rendering/overlays/overlayWrapperComponent.css-GENERATED.d.ts +1 -0
- package/dist/types/src/rendering/overlays/overlayWrapperComponent.d.ts +26 -0
- package/dist/types/src/rendering/renderApi.d.ts +13 -0
- package/dist/types/src/rendering/renderModule.d.ts +6 -0
- package/dist/types/src/rendering/row/rowAutoHeightModule.d.ts +6 -0
- package/dist/types/src/rendering/row/rowAutoHeightService.d.ts +17 -0
- package/dist/types/src/rendering/row/rowComp.d.ts +20 -0
- package/dist/types/src/rendering/row/rowCtrl.d.ts +167 -0
- package/dist/types/src/rendering/rowContainerHeightService.d.ts +28 -0
- package/dist/types/src/rendering/rowRenderer.d.ts +157 -0
- package/dist/types/src/selection/baseSelectionService.d.ts +46 -0
- package/dist/types/src/selection/checkboxSelectionComponent.d.ts +28 -0
- package/dist/types/src/selection/rowRangeSelectionContext.d.ts +50 -0
- package/dist/types/src/selection/rowSelectionApi.d.ts +21 -0
- package/dist/types/src/selection/rowSelectionModule.d.ts +10 -0
- package/dist/types/src/selection/selectAllFeature.d.ts +29 -0
- package/dist/types/src/selection/selectionService.d.ts +70 -0
- package/dist/types/src/sort/rowNodeSorter.d.ts +18 -0
- package/dist/types/src/sort/sortIndicatorComp.d.ts +22 -0
- package/dist/types/src/sort/sortModule.d.ts +7 -0
- package/dist/types/src/sort/sortService.d.ts +39 -0
- package/dist/types/src/styling/cellCustomStyleFeature.d.ts +16 -0
- package/dist/types/src/styling/cellStyleService.d.ts +13 -0
- package/dist/types/src/styling/layoutFeature.d.ts +20 -0
- package/dist/types/src/styling/rowStyleService.d.ts +12 -0
- package/dist/types/src/styling/stylingModule.d.ts +11 -0
- package/dist/types/src/styling/stylingUtils.d.ts +8 -0
- package/dist/types/src/syncService.d.ts +11 -0
- package/dist/types/src/theming/Part.d.ts +64 -0
- package/dist/types/src/theming/Theme.d.ts +70 -0
- package/dist/types/src/theming/core/core-css.d.ts +550 -0
- package/dist/types/src/theming/core/core.css-GENERATED.d.ts +1 -0
- package/dist/types/src/theming/inject.d.ts +6 -0
- package/dist/types/src/theming/parts/checkbox-style/checkbox-style-default.css-GENERATED.d.ts +1 -0
- package/dist/types/src/theming/parts/checkbox-style/checkbox-styles.d.ts +15 -0
- package/dist/types/src/theming/parts/color-scheme/color-schemes.d.ts +69 -0
- package/dist/types/src/theming/parts/icon-set/alpine/icon-set-alpine.css-GENERATED.d.ts +1 -0
- package/dist/types/src/theming/parts/icon-set/alpine/icon-set-alpine.d.ts +1 -0
- package/dist/types/src/theming/parts/icon-set/icon-sets.d.ts +4 -0
- package/dist/types/src/theming/parts/icon-set/material/icon-set-material.css-GENERATED.d.ts +1 -0
- package/dist/types/src/theming/parts/icon-set/material/icon-set-material.d.ts +1 -0
- package/dist/types/src/theming/parts/icon-set/overrides/icon-overrides.d.ts +22 -0
- package/dist/types/src/theming/parts/icon-set/quartz/icon-set-quartz.d.ts +7 -0
- package/dist/types/src/theming/parts/icon-set/shared-icon-styles.css-GENERATED.d.ts +1 -0
- package/dist/types/src/theming/parts/input-style/input-style-base.css-GENERATED.d.ts +1 -0
- package/dist/types/src/theming/parts/input-style/input-style-bordered.css-GENERATED.d.ts +1 -0
- package/dist/types/src/theming/parts/input-style/input-style-underlined.css-GENERATED.d.ts +1 -0
- package/dist/types/src/theming/parts/input-style/input-styles.d.ts +134 -0
- package/dist/types/src/theming/parts/tab-style/tab-style-base.css-GENERATED.d.ts +1 -0
- package/dist/types/src/theming/parts/tab-style/tab-styles.d.ts +200 -0
- package/dist/types/src/theming/parts/theme/themes.d.ts +582 -0
- package/dist/types/src/theming/theme-types.d.ts +216 -0
- package/dist/types/src/theming/theme-utils.d.ts +12 -0
- package/dist/types/src/tooltip/tooltip.css-GENERATED.d.ts +1 -0
- package/dist/types/src/tooltip/tooltipFeature.d.ts +40 -0
- package/dist/types/src/tooltip/tooltipModule.d.ts +6 -0
- package/dist/types/src/tooltip/tooltipService.d.ts +17 -0
- package/dist/types/src/tooltip/tooltipStateManager.d.ts +63 -0
- package/dist/types/src/undoRedo/undoRedoService.d.ts +27 -0
- package/dist/types/src/utils/aria.d.ts +34 -0
- package/dist/types/src/utils/array.d.ts +8 -0
- package/dist/types/src/utils/browser.d.ts +12 -0
- package/dist/types/src/utils/changedPath.d.ts +21 -0
- package/dist/types/src/utils/dom.d.ts +94 -0
- package/dist/types/src/utils/event.d.ts +30 -0
- package/dist/types/src/utils/focus.d.ts +13 -0
- package/dist/types/src/utils/function.d.ts +27 -0
- package/dist/types/src/utils/generic.d.ts +12 -0
- package/dist/types/src/utils/icon.d.ts +16 -0
- package/dist/types/src/utils/keyboard.d.ts +14 -0
- package/dist/types/src/utils/number.d.ts +9 -0
- package/dist/types/src/utils/object.d.ts +3 -0
- package/dist/types/src/utils/promise.d.ts +13 -0
- package/dist/types/src/utils/string.d.ts +1 -0
- package/dist/types/src/validation/enterpriseModuleNames.d.ts +2 -0
- package/dist/types/src/validation/errorMessages/errorText.d.ts +599 -0
- package/dist/types/src/validation/logging.d.ts +24 -0
- package/dist/types/src/validation/resolvableModuleNames.d.ts +8 -0
- package/dist/types/src/validation/rules/colDefValidations.d.ts +3 -0
- package/dist/types/src/validation/rules/gridOptionsValidations.d.ts +3 -0
- package/dist/types/src/validation/rules/iconValidations.d.ts +5 -0
- package/dist/types/src/validation/rules/menuItemValidations.d.ts +3 -0
- package/dist/types/src/validation/rules/userCompValidations.d.ts +3 -0
- package/dist/types/src/validation/validationModule.d.ts +5 -0
- package/dist/types/src/validation/validationService.d.ts +36 -0
- package/dist/types/src/validation/validationTypes.d.ts +39 -0
- package/dist/types/src/valueService/cellApi.d.ts +4 -0
- package/dist/types/src/valueService/changeDetectionService.d.ts +8 -0
- package/dist/types/src/valueService/expressionService.d.ts +10 -0
- package/dist/types/src/valueService/valueModule.d.ts +20 -0
- package/dist/types/src/valueService/valueService.d.ts +45 -0
- package/dist/types/src/vanillaFrameworkOverrides.d.ts +16 -0
- package/dist/types/src/version.d.ts +1 -0
- package/dist/types/src/widgets/agAbstractLabel.css-GENERATED.d.ts +1 -0
- package/dist/types/src/widgets/agPickerField.css-GENERATED.d.ts +1 -0
- package/dist/types/src/widgets/agPickerField.d.ts +45 -0
- package/dist/types/src/widgets/agSelect.css-GENERATED.d.ts +1 -0
- package/dist/types/src/widgets/agSelect.d.ts +30 -0
- package/dist/types/src/widgets/agToggleButton.css-GENERATED.d.ts +1 -0
- package/dist/types/src/widgets/component.d.ts +77 -0
- package/dist/types/src/widgets/managedFocusFeature.d.ts +16 -0
- package/dist/types/src/widgets/popupModule.d.ts +5 -0
- package/dist/types/src/widgets/popupService.d.ts +71 -0
- package/dist/types/src/widgets/tabGuardCtrl.d.ts +58 -0
- package/dist/types/src/widgets/touchListener.d.ts +32 -0
- package/package.json +18 -13
- package/styles/_css-content.scss +34 -18
- package/styles/_index.scss +2 -2
- package/styles/ag-grid-no-native-widgets.css +17 -9
- package/styles/ag-grid-no-native-widgets.min.css +3 -3
- package/styles/ag-grid.css +17 -9
- package/styles/ag-grid.min.css +3 -3
- package/dist/types/client-side-row-model/clientSideRowModel/clientSideNodeManager.d.ts +0 -45
- package/dist/types/client-side-row-model/clientSideRowModel/clientSideRowModel.d.ts +0 -144
- package/dist/types/client-side-row-model/clientSideRowModel/clientSideRowModelApi.d.ts +0 -12
- package/dist/types/client-side-row-model/clientSideRowModel/filterStage.d.ts +0 -11
- package/dist/types/client-side-row-model/clientSideRowModel/flattenStage.d.ts +0 -13
- package/dist/types/client-side-row-model/clientSideRowModel/immutableService.d.ts +0 -15
- package/dist/types/client-side-row-model/clientSideRowModel/sortService.d.ts +0 -18
- package/dist/types/client-side-row-model/clientSideRowModel/sortStage.d.ts +0 -9
- package/dist/types/client-side-row-model/clientSideRowModelModule.d.ts +0 -3
- package/dist/types/client-side-row-model/main.d.ts +0 -1
- package/dist/types/client-side-row-model/version.d.ts +0 -1
- package/dist/types/core/alignedGridsModule.d.ts +0 -1
- package/dist/types/core/alignedGridsService.d.ts +0 -28
- package/dist/types/core/api/apiFunctionService.d.ts +0 -19
- package/dist/types/core/api/apiModule.d.ts +0 -10
- package/dist/types/core/api/cellApi.d.ts +0 -8
- package/dist/types/core/api/coreApi.d.ts +0 -9
- package/dist/types/core/api/eventApi.d.ts +0 -7
- package/dist/types/core/api/gridApi.d.ts +0 -924
- package/dist/types/core/api/gridApiFunctions.d.ts +0 -255
- package/dist/types/core/api/keyboardNavigationApi.d.ts +0 -10
- package/dist/types/core/api/menuApi.d.ts +0 -8
- package/dist/types/core/api/rowApi.d.ts +0 -21
- package/dist/types/core/api/rowModelHelperService.d.ts +0 -18
- package/dist/types/core/api/rowSelectionApi.d.ts +0 -16
- package/dist/types/core/api/sharedApiModule.d.ts +0 -2
- package/dist/types/core/cellNavigationService.d.ts +0 -32
- package/dist/types/core/columns/columnApi.d.ts +0 -63
- package/dist/types/core/columns/columnApplyStateService.d.ts +0 -70
- package/dist/types/core/columns/columnAutosizeService.d.ts +0 -29
- package/dist/types/core/columns/columnDefFactory.d.ts +0 -10
- package/dist/types/core/columns/columnEventDispatcher.d.ts +0 -32
- package/dist/types/core/columns/columnFactory.d.ts +0 -38
- package/dist/types/core/columns/columnGetStateService.d.ts +0 -13
- package/dist/types/core/columns/columnGroupStateService.d.ts +0 -21
- package/dist/types/core/columns/columnModel.d.ts +0 -130
- package/dist/types/core/columns/columnModule.d.ts +0 -2
- package/dist/types/core/columns/columnMoveService.d.ts +0 -21
- package/dist/types/core/columns/columnNameService.d.ts +0 -19
- package/dist/types/core/columns/columnSizeService.d.ts +0 -60
- package/dist/types/core/columns/columnUtils.d.ts +0 -10
- package/dist/types/core/columns/columnViewportService.d.ts +0 -39
- package/dist/types/core/columns/controlsColService.d.ts +0 -11
- package/dist/types/core/columns/dataTypeService.d.ts +0 -57
- package/dist/types/core/columns/funcColsService.d.ts +0 -52
- package/dist/types/core/columns/pivotResultColsService.d.ts +0 -24
- package/dist/types/core/columns/visibleColsService.d.ts +0 -84
- package/dist/types/core/components/componentUtil.d.ts +0 -15
- package/dist/types/core/components/framework/agComponentUtils.d.ts +0 -15
- package/dist/types/core/components/framework/componentMetadataProvider.d.ts +0 -19
- package/dist/types/core/components/framework/componentTypes.d.ts +0 -25
- package/dist/types/core/components/framework/frameworkComponentWrapper.d.ts +0 -26
- package/dist/types/core/components/framework/userComponentFactory.d.ts +0 -81
- package/dist/types/core/components/framework/userComponentRegistry.d.ts +0 -20
- package/dist/types/core/constants/direction.d.ts +0 -8
- package/dist/types/core/constants/keyCode.d.ts +0 -24
- package/dist/types/core/context/beanStub.d.ts +0 -83
- package/dist/types/core/context/context.d.ts +0 -254
- package/dist/types/core/ctrlsFactory.d.ts +0 -9
- package/dist/types/core/ctrlsService.d.ts +0 -55
- package/dist/types/core/dragAndDrop/dragAndDropImageComponent.d.ts +0 -24
- package/dist/types/core/dragAndDrop/dragAndDropService.d.ts +0 -183
- package/dist/types/core/dragAndDrop/dragApi.d.ts +0 -5
- package/dist/types/core/dragAndDrop/dragModule.d.ts +0 -1
- package/dist/types/core/dragAndDrop/dragService.d.ts +0 -59
- package/dist/types/core/edit/cellEditors/dateStringCellEditor.d.ts +0 -9
- package/dist/types/core/edit/cellEditors/selectCellEditor.d.ts +0 -20
- package/dist/types/core/edit/editApi.d.ts +0 -13
- package/dist/types/core/edit/editModule.d.ts +0 -9
- package/dist/types/core/edit/editService.d.ts +0 -27
- package/dist/types/core/edit/rowEditService.d.ts +0 -10
- package/dist/types/core/entities/agColumn.d.ts +0 -164
- package/dist/types/core/entities/agColumnGroup.d.ts +0 -58
- package/dist/types/core/entities/agProvidedColumnGroup.d.ts +0 -43
- package/dist/types/core/entities/cellPositionUtils.d.ts +0 -14
- package/dist/types/core/entities/colDef.d.ts +0 -866
- package/dist/types/core/entities/gridOptions.d.ts +0 -2320
- package/dist/types/core/entities/rowNode.d.ts +0 -321
- package/dist/types/core/entities/rowNodeEventThrottle.d.ts +0 -15
- package/dist/types/core/entities/rowPositionUtils.d.ts +0 -24
- package/dist/types/core/environment.d.ts +0 -33
- package/dist/types/core/eventService.d.ts +0 -22
- package/dist/types/core/eventTypes.d.ts +0 -8
- package/dist/types/core/events.d.ts +0 -887
- package/dist/types/core/filter/columnFilterApi.d.ts +0 -13
- package/dist/types/core/filter/columnFilterService.d.ts +0 -91
- package/dist/types/core/filter/filterManager.d.ts +0 -85
- package/dist/types/core/filter/filterModule.d.ts +0 -13
- package/dist/types/core/filter/filterWrapperComp.d.ts +0 -25
- package/dist/types/core/filter/floating/floatingFilter.d.ts +0 -80
- package/dist/types/core/filter/floating/floatingFilterMapper.d.ts +0 -3
- package/dist/types/core/filter/floating/provided/floatingFilterTextInputService.d.ts +0 -22
- package/dist/types/core/filter/floating/provided/readOnlyFloatingFilter.d.ts +0 -16
- package/dist/types/core/filter/floating/provided/simpleFloatingFilter.d.ts +0 -34
- package/dist/types/core/filter/floating/provided/textInputFloatingFilter.d.ts +0 -25
- package/dist/types/core/filter/provided/date/dateCompWrapper.d.ts +0 -26
- package/dist/types/core/filter/provided/date/dateFilter.d.ts +0 -48
- package/dist/types/core/filter/provided/date/dateFilterModelFormatter.d.ts +0 -14
- package/dist/types/core/filter/provided/date/dateFloatingFilter.d.ts +0 -31
- package/dist/types/core/filter/provided/date/defaultDateComponent.d.ts +0 -21
- package/dist/types/core/filter/provided/number/numberFilter.d.ts +0 -32
- package/dist/types/core/filter/provided/number/numberFloatingFilter.d.ts +0 -14
- package/dist/types/core/filter/provided/optionsFactory.d.ts +0 -15
- package/dist/types/core/filter/provided/providedFilter.d.ts +0 -88
- package/dist/types/core/filter/provided/simpleFilter.d.ts +0 -112
- package/dist/types/core/filter/provided/simpleFilterModelFormatter.d.ts +0 -16
- package/dist/types/core/filter/provided/text/textFilter.d.ts +0 -34
- package/dist/types/core/filter/provided/text/textFloatingFilter.d.ts +0 -13
- package/dist/types/core/filter/quickFilterService.d.ts +0 -34
- package/dist/types/core/focusService.d.ts +0 -109
- package/dist/types/core/grid.d.ts +0 -64
- package/dist/types/core/gridBodyComp/abstractFakeScrollComp.d.ts +0 -25
- package/dist/types/core/gridBodyComp/centerWidthFeature.d.ts +0 -12
- package/dist/types/core/gridBodyComp/fakeHScrollComp.d.ts +0 -24
- package/dist/types/core/gridBodyComp/fakeVScrollComp.d.ts +0 -15
- package/dist/types/core/gridBodyComp/gridBodyComp.d.ts +0 -20
- package/dist/types/core/gridBodyComp/gridBodyCtrl.d.ts +0 -107
- package/dist/types/core/gridBodyComp/gridBodyScrollFeature.d.ts +0 -75
- package/dist/types/core/gridBodyComp/mouseEventService.d.ts +0 -22
- package/dist/types/core/gridBodyComp/navigationService.d.ts +0 -61
- package/dist/types/core/gridBodyComp/pinnedWidthService.d.ts +0 -14
- package/dist/types/core/gridBodyComp/rowContainer/dragListenerFeature.d.ts +0 -13
- package/dist/types/core/gridBodyComp/rowContainer/rowContainerComp.d.ts +0 -21
- package/dist/types/core/gridBodyComp/rowContainer/rowContainerCtrl.d.ts +0 -82
- package/dist/types/core/gridBodyComp/rowContainer/rowContainerEventsFeature.d.ts +0 -38
- package/dist/types/core/gridBodyComp/rowContainer/setHeightFeature.d.ts +0 -11
- package/dist/types/core/gridBodyComp/rowContainer/setPinnedLeftWidthFeature.d.ts +0 -11
- package/dist/types/core/gridBodyComp/rowContainer/setPinnedRightWidthFeature.d.ts +0 -11
- package/dist/types/core/gridBodyComp/rowDragFeature.d.ts +0 -67
- package/dist/types/core/gridBodyComp/scrollVisibleService.d.ts +0 -31
- package/dist/types/core/gridBodyComp/viewportSizeFeature.d.ts +0 -32
- package/dist/types/core/gridComp/gridCtrl.d.ts +0 -51
- package/dist/types/core/gridCoreModule.d.ts +0 -7
- package/dist/types/core/gridDestroyService.d.ts +0 -11
- package/dist/types/core/gridOptionsService.d.ts +0 -104
- package/dist/types/core/gridOptionsUtils.d.ts +0 -55
- package/dist/types/core/headerRendering/cells/abstractCell/abstractHeaderCellCtrl.d.ts +0 -77
- package/dist/types/core/headerRendering/cells/column/headerCellComp.d.ts +0 -19
- package/dist/types/core/headerRendering/cells/column/headerCellCtrl.d.ts +0 -87
- package/dist/types/core/headerRendering/cells/column/headerComp.d.ts +0 -130
- package/dist/types/core/headerRendering/cells/column/resizeFeature.d.ts +0 -28
- package/dist/types/core/headerRendering/cells/column/selectAllFeature.d.ts +0 -35
- package/dist/types/core/headerRendering/cells/column/sortIndicatorComp.d.ts +0 -25
- package/dist/types/core/headerRendering/cells/column/standardMenu.d.ts +0 -26
- package/dist/types/core/headerRendering/cells/columnGroup/groupResizeFeature.d.ts +0 -51
- package/dist/types/core/headerRendering/cells/columnGroup/headerGroupCellCtrl.d.ts +0 -54
- package/dist/types/core/headerRendering/cells/columnGroup/headerGroupComp.d.ts +0 -44
- package/dist/types/core/headerRendering/cells/floatingFilter/headerFilterCellCtrl.d.ts +0 -43
- package/dist/types/core/headerRendering/cells/floatingFilter/iHeaderFilterCellComp.d.ts +0 -12
- package/dist/types/core/headerRendering/cells/hoverFeature.d.ts +0 -14
- package/dist/types/core/headerRendering/columnDrag/bodyDropPivotTarget.d.ts +0 -25
- package/dist/types/core/headerRendering/columnDrag/bodyDropTarget.d.ts +0 -37
- package/dist/types/core/headerRendering/columnDrag/moveColumnFeature.d.ts +0 -56
- package/dist/types/core/headerRendering/columnMoveHelper.d.ts +0 -40
- package/dist/types/core/headerRendering/common/headerNavigationService.d.ts +0 -32
- package/dist/types/core/headerRendering/common/headerPosition.d.ts +0 -28
- package/dist/types/core/headerRendering/common/horizontalResizeService.d.ts +0 -24
- package/dist/types/core/headerRendering/gridHeaderCtrl.d.ts +0 -31
- package/dist/types/core/headerRendering/row/headerRowComp.d.ts +0 -16
- package/dist/types/core/headerRendering/row/headerRowCtrl.d.ts +0 -67
- package/dist/types/core/headerRendering/rowContainer/headerRowContainerCtrl.d.ts +0 -53
- package/dist/types/core/interfaces/IRangeService.d.ts +0 -89
- package/dist/types/core/interfaces/IServerSideStore.d.ts +0 -65
- package/dist/types/core/interfaces/autoSizeStrategy.d.ts +0 -34
- package/dist/types/core/interfaces/dateComponent.d.ts +0 -43
- package/dist/types/core/interfaces/exportParams.d.ts +0 -153
- package/dist/types/core/interfaces/gridState.d.ts +0 -160
- package/dist/types/core/interfaces/groupCellRenderer.d.ts +0 -68
- package/dist/types/core/interfaces/iAutoColService.d.ts +0 -6
- package/dist/types/core/interfaces/iCallbackParams.d.ts +0 -231
- package/dist/types/core/interfaces/iCellEditor.d.ts +0 -94
- package/dist/types/core/interfaces/iChartOptions.d.ts +0 -95
- package/dist/types/core/interfaces/iClientSideRowModel.d.ts +0 -52
- package/dist/types/core/interfaces/iColumn.d.ts +0 -242
- package/dist/types/core/interfaces/iColumnChooserFactory.d.ts +0 -11
- package/dist/types/core/interfaces/iContextMenuFactory.d.ts +0 -6
- package/dist/types/core/interfaces/iDatasource.d.ts +0 -27
- package/dist/types/core/interfaces/iDetailGridApiService.d.ts +0 -7
- package/dist/types/core/interfaces/iExcelCreator.d.ts +0 -599
- package/dist/types/core/interfaces/iExpansionService.d.ts +0 -8
- package/dist/types/core/interfaces/iFilter.d.ts +0 -186
- package/dist/types/core/interfaces/iFrameworkOverrides.d.ts +0 -48
- package/dist/types/core/interfaces/iImmutableService.d.ts +0 -4
- package/dist/types/core/interfaces/iInfiniteRowModel.d.ts +0 -8
- package/dist/types/core/interfaces/iModule.d.ts +0 -38
- package/dist/types/core/interfaces/iRowModel.d.ts +0 -50
- package/dist/types/core/interfaces/iRowNode.d.ts +0 -279
- package/dist/types/core/interfaces/iRowNodeStage.d.ts +0 -14
- package/dist/types/core/interfaces/iSelectionService.d.ts +0 -48
- package/dist/types/core/interfaces/iServerSideDatasource.d.ts +0 -59
- package/dist/types/core/interfaces/iServerSideRowModel.d.ts +0 -38
- package/dist/types/core/interfaces/iSetFilter.d.ts +0 -203
- package/dist/types/core/interfaces/iShowRowGroupColsService.d.ts +0 -10
- package/dist/types/core/interfaces/iSideBar.d.ts +0 -62
- package/dist/types/core/interfaces/iSparklineCellRendererParams.d.ts +0 -438
- package/dist/types/core/interfaces/iStatusBarService.d.ts +0 -7
- package/dist/types/core/interfaces/iToolPanel.d.ts +0 -60
- package/dist/types/core/interfaces/masterDetail.d.ts +0 -49
- package/dist/types/core/interfaces/menuItem.d.ts +0 -136
- package/dist/types/core/interfaces/serverSideTransaction.d.ts +0 -61
- package/dist/types/core/localeService.d.ts +0 -6
- package/dist/types/core/main.d.ts +0 -282
- package/dist/types/core/misc/animationFrameService.d.ts +0 -36
- package/dist/types/core/misc/apiEventService.d.ts +0 -20
- package/dist/types/core/misc/expansionService.d.ts +0 -17
- package/dist/types/core/misc/frameworkEventListenerService.d.ts +0 -11
- package/dist/types/core/misc/menuService.d.ts +0 -98
- package/dist/types/core/misc/resizeObserverService.d.ts +0 -6
- package/dist/types/core/misc/state/stateModule.d.ts +0 -3
- package/dist/types/core/misc/state/stateService.d.ts +0 -67
- package/dist/types/core/modules/moduleNames.d.ts +0 -28
- package/dist/types/core/modules/moduleRegistry.d.ts +0 -43
- package/dist/types/core/pagination/pageBoundsListener.d.ts +0 -13
- package/dist/types/core/pagination/pageBoundsService.d.ts +0 -21
- package/dist/types/core/pagination/pageSizeSelector/pageSizeSelectorComp.d.ts +0 -24
- package/dist/types/core/pagination/paginationAutoPageSizeService.d.ts +0 -15
- package/dist/types/core/pagination/paginationComp.d.ts +0 -47
- package/dist/types/core/pagination/paginationModule.d.ts +0 -3
- package/dist/types/core/pagination/paginationService.d.ts +0 -54
- package/dist/types/core/pinnedRowModel/pinnedRowModel.d.ts +0 -35
- package/dist/types/core/pinnedRowModel/pinnedRowModule.d.ts +0 -1
- package/dist/types/core/propertyKeys.d.ts +0 -133
- package/dist/types/core/rendering/ariaAnnouncementService.d.ts +0 -18
- package/dist/types/core/rendering/autoWidthCalculator.d.ts +0 -19
- package/dist/types/core/rendering/cell/cellComp.d.ts +0 -60
- package/dist/types/core/rendering/cell/cellCtrl.d.ts +0 -166
- package/dist/types/core/rendering/cell/cellCustomStyleFeature.d.ts +0 -18
- package/dist/types/core/rendering/cell/cellKeyboardListenerFeature.d.ts +0 -26
- package/dist/types/core/rendering/cell/cellMouseListenerFeature.d.ts +0 -22
- package/dist/types/core/rendering/cell/cellPositionFeature.d.ts +0 -33
- package/dist/types/core/rendering/cell/cellRangeFeature.d.ts +0 -25
- package/dist/types/core/rendering/cellRenderers/animateShowChangeCellRenderer.d.ts +0 -17
- package/dist/types/core/rendering/cellRenderers/animateSlideCellRenderer.d.ts +0 -15
- package/dist/types/core/rendering/cellRenderers/iCellRenderer.d.ts +0 -75
- package/dist/types/core/rendering/cellRenderers/loadingCellRenderer.d.ts +0 -19
- package/dist/types/core/rendering/cellRenderers/skeletonCellRenderer.d.ts +0 -10
- package/dist/types/core/rendering/checkboxSelectionComponent.d.ts +0 -30
- package/dist/types/core/rendering/columnAnimationService.d.ts +0 -24
- package/dist/types/core/rendering/columnHoverService.d.ts +0 -11
- package/dist/types/core/rendering/features/positionableFeature.d.ts +0 -94
- package/dist/types/core/rendering/features/setLeftFeature.d.ts +0 -21
- package/dist/types/core/rendering/features/stickyRowFeature.d.ts +0 -54
- package/dist/types/core/rendering/overlays/overlayComponent.d.ts +0 -15
- package/dist/types/core/rendering/overlays/overlayModule.d.ts +0 -1
- package/dist/types/core/rendering/overlays/overlayService.d.ts +0 -37
- package/dist/types/core/rendering/overlays/overlayWrapperComponent.d.ts +0 -30
- package/dist/types/core/rendering/renderApi.d.ts +0 -14
- package/dist/types/core/rendering/renderModule.d.ts +0 -1
- package/dist/types/core/rendering/row/rowComp.d.ts +0 -21
- package/dist/types/core/rendering/row/rowCssClassCalculator.d.ts +0 -29
- package/dist/types/core/rendering/row/rowCtrl.d.ts +0 -188
- package/dist/types/core/rendering/row/rowDragComp.d.ts +0 -33
- package/dist/types/core/rendering/rowContainerHeightService.d.ts +0 -34
- package/dist/types/core/rendering/rowRenderer.d.ts +0 -190
- package/dist/types/core/rowNodeCache/iRowNodeBlock.d.ts +0 -24
- package/dist/types/core/rowNodeCache/rowNodeBlock.d.ts +0 -29
- package/dist/types/core/rowNodeCache/rowNodeBlockLoader.d.ts +0 -30
- package/dist/types/core/rowNodeCache/rowNodeBlockModule.d.ts +0 -1
- package/dist/types/core/rowNodes/rowNodeSorter.d.ts +0 -27
- package/dist/types/core/rowNodes/selectableService.d.ts +0 -15
- package/dist/types/core/selection/rowRangeSelectionContext.d.ts +0 -68
- package/dist/types/core/selection/selectionService.d.ts +0 -73
- package/dist/types/core/sortController.d.ts +0 -38
- package/dist/types/core/styling/layoutFeature.d.ts +0 -21
- package/dist/types/core/styling/stylingService.d.ts +0 -18
- package/dist/types/core/syncService.d.ts +0 -16
- package/dist/types/core/undoRedo/undoRedoService.d.ts +0 -35
- package/dist/types/core/utils/aria.d.ts +0 -33
- package/dist/types/core/utils/array.d.ts +0 -18
- package/dist/types/core/utils/browser.d.ts +0 -16
- package/dist/types/core/utils/changedPath.d.ts +0 -23
- package/dist/types/core/utils/dom.d.ts +0 -92
- package/dist/types/core/utils/event.d.ts +0 -29
- package/dist/types/core/utils/focus.d.ts +0 -3
- package/dist/types/core/utils/function.d.ts +0 -29
- package/dist/types/core/utils/generic.d.ts +0 -20
- package/dist/types/core/utils/icon.d.ts +0 -90
- package/dist/types/core/utils/keyboard.d.ts +0 -18
- package/dist/types/core/utils/number.d.ts +0 -14
- package/dist/types/core/utils/numberSequence.d.ts +0 -8
- package/dist/types/core/utils/object.d.ts +0 -10
- package/dist/types/core/utils/promise.d.ts +0 -16
- package/dist/types/core/utils/string.d.ts +0 -21
- package/dist/types/core/validation/rules/colDefValidations.d.ts +0 -3
- package/dist/types/core/validation/rules/gridOptionsValidations.d.ts +0 -183
- package/dist/types/core/validation/validationService.d.ts +0 -17
- package/dist/types/core/validation/validationTypes.d.ts +0 -34
- package/dist/types/core/valueService/changeDetectionService.d.ts +0 -13
- package/dist/types/core/valueService/expressionService.d.ts +0 -10
- package/dist/types/core/valueService/valueService.d.ts +0 -44
- package/dist/types/core/vanillaFrameworkOverrides.d.ts +0 -16
- package/dist/types/core/version.d.ts +0 -1
- package/dist/types/core/widgets/agPickerField.d.ts +0 -49
- package/dist/types/core/widgets/agSelect.d.ts +0 -29
- package/dist/types/core/widgets/component.d.ts +0 -95
- package/dist/types/core/widgets/managedFocusFeature.d.ts +0 -19
- package/dist/types/core/widgets/popupService.d.ts +0 -108
- package/dist/types/core/widgets/tabGuardCtrl.d.ts +0 -61
- package/dist/types/core/widgets/tooltipFeature.d.ts +0 -38
- package/dist/types/core/widgets/tooltipStateManager.d.ts +0 -72
- package/dist/types/core/widgets/touchListener.d.ts +0 -33
- package/dist/types/csv-export/csvExport/baseCreator.d.ts +0 -15
- package/dist/types/csv-export/csvExport/csvCreator.d.ts +0 -20
- package/dist/types/csv-export/csvExport/csvExportApi.d.ts +0 -3
- package/dist/types/csv-export/csvExport/downloader.d.ts +0 -3
- package/dist/types/csv-export/csvExport/gridSerializer.d.ts +0 -34
- package/dist/types/csv-export/csvExport/interfaces/index.d.ts +0 -38
- package/dist/types/csv-export/csvExport/sessions/baseGridSerializingSession.d.ts +0 -30
- package/dist/types/csv-export/csvExport/sessions/csvSerializingSession.d.ts +0 -21
- package/dist/types/csv-export/csvExport/xmlFactory.d.ts +0 -5
- package/dist/types/csv-export/csvExport/zipContainer/compress.d.ts +0 -4
- package/dist/types/csv-export/csvExport/zipContainer/convert.d.ts +0 -3
- package/dist/types/csv-export/csvExport/zipContainer/crcTable.d.ts +0 -1
- package/dist/types/csv-export/csvExport/zipContainer/zipContainer.d.ts +0 -20
- package/dist/types/csv-export/csvExport/zipContainer/zipContainerHelper.d.ts +0 -13
- package/dist/types/csv-export/csvExportModule.d.ts +0 -3
- package/dist/types/csv-export/main.d.ts +0 -9
- package/dist/types/csv-export/version.d.ts +0 -1
- package/dist/types/infinite-row-model/infiniteRowModel/infiniteBlock.d.ts +0 -31
- package/dist/types/infinite-row-model/infiniteRowModel/infiniteCache.d.ts +0 -47
- package/dist/types/infinite-row-model/infiniteRowModel/infiniteRowModel.d.ts +0 -50
- package/dist/types/infinite-row-model/infiniteRowModel/infiniteRowModelApi.d.ts +0 -4
- package/dist/types/infinite-row-model/infiniteRowModelModule.d.ts +0 -3
- package/dist/types/infinite-row-model/main.d.ts +0 -1
- package/dist/types/infinite-row-model/version.d.ts +0 -1
- package/dist/types/main.d.ts +0 -5
- package/dist/types/theming/Part.d.ts +0 -33
- package/dist/types/theming/Theme.d.ts +0 -39
- package/dist/types/theming/main.d.ts +0 -9
- package/dist/types/theming/styles/core/GENERATED-core.d.ts +0 -1
- package/dist/types/theming/styles/core/core-css.d.ts +0 -468
- package/dist/types/theming/styles/parts/checkbox-style/GENERATED-checkbox-style-default.d.ts +0 -1
- package/dist/types/theming/styles/parts/checkbox-style/checkbox-styles.d.ts +0 -56
- package/dist/types/theming/styles/parts/color-scheme/color-schemes.d.ts +0 -6
- package/dist/types/theming/styles/parts/icon-set/alpine/GENERATED-icon-set-alpine.d.ts +0 -1
- package/dist/types/theming/styles/parts/icon-set/alpine/icon-set-alpine.d.ts +0 -1
- package/dist/types/theming/styles/parts/icon-set/icon-sets.d.ts +0 -3
- package/dist/types/theming/styles/parts/icon-set/material/GENERATED-icon-set-material.d.ts +0 -1
- package/dist/types/theming/styles/parts/icon-set/material/icon-set-material.d.ts +0 -1
- package/dist/types/theming/styles/parts/icon-set/quartz/GENERATED-icon-set-quartz.d.ts +0 -1
- package/dist/types/theming/styles/parts/icon-set/quartz/icon-set-quartz.d.ts +0 -6
- package/dist/types/theming/styles/parts/input-style/GENERATED-input-style-base.d.ts +0 -1
- package/dist/types/theming/styles/parts/input-style/GENERATED-input-style-underlined.d.ts +0 -1
- package/dist/types/theming/styles/parts/input-style/input-styles.d.ts +0 -70
- package/dist/types/theming/styles/parts/tab-style/GENERATED-tab-style-base.d.ts +0 -1
- package/dist/types/theming/styles/parts/tab-style/tab-styles.d.ts +0 -101
- package/dist/types/theming/styles/parts/theme/themes.d.ts +0 -3
- package/dist/types/theming/theme-types.d.ts +0 -206
- package/dist/types/theming/theme-utils.d.ts +0 -8
- package/dist/types/theming/version.d.ts +0 -1
- /package/dist/types/{core → src}/api/apiUtils.d.ts +0 -0
- /package/dist/types/{core → src}/api/csrmSsrmSharedApi.d.ts +0 -0
- /package/dist/types/{core → src}/api/iApiFunction.d.ts +0 -0
- /package/dist/types/{core → src}/api/scrollApi.d.ts +0 -0
- /package/dist/types/{core → src}/api/ssrmInfiniteSharedApi.d.ts +0 -0
- /package/dist/types/{core → src}/autoScrollService.d.ts +0 -0
- /package/dist/types/{core → src}/columns/columnKeyCreator.d.ts +0 -0
- /package/dist/types/{core → src}/columns/groupInstanceIdCreator.d.ts +0 -0
- /package/dist/types/{core → src}/components/emptyBean.d.ts +0 -0
- /package/dist/types/{core → src}/components/framework/unwrapUserComp.d.ts +0 -0
- /package/dist/types/{core → src}/context/bean.d.ts +0 -0
- /package/dist/types/{core → src}/context/genericBean.d.ts +0 -0
- /package/dist/types/{core → src}/context/genericContext.d.ts +0 -0
- /package/dist/types/{core → src}/context/gridBeanComparator.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/checkboxCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/dateCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/iCellEditorInput.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/iDateCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/iDateStringCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/iLargeTextCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/iNumberCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/iSelectCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/iTextCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/largeTextCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/numberCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/popupEditorWrapper.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/simpleCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/edit/cellEditors/textCellEditor.d.ts +0 -0
- /package/dist/types/{core → src}/entities/dataType.d.ts +0 -0
- /package/dist/types/{core → src}/entities/defaultColumnTypes.d.ts +0 -0
- /package/dist/types/{core → src}/filter/filterApi.d.ts +0 -0
- /package/dist/types/{core → src}/filter/filterLocaleText.d.ts +0 -0
- /package/dist/types/{core → src}/filter/floating/provided/iFloatingFilterInputService.d.ts +0 -0
- /package/dist/types/{core → src}/filter/floating/provided/providedFilterUtils.d.ts +0 -0
- /package/dist/types/{core → src}/filter/iColumnFilter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/date/dateFilterConstants.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/date/iDateFilter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/iProvidedFilter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/iScalarFilter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/iSimpleFilter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/number/iNumberFilter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/number/numberFilterConstants.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/number/numberFilterModelFormatter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/number/numberFilterUtils.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/scalarFilter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/text/iTextFilter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/text/textFilterConstants.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/text/textFilterModelFormatter.d.ts +0 -0
- /package/dist/types/{core → src}/filter/provided/text/textFilterUtils.d.ts +0 -0
- /package/dist/types/{core → src}/filter/quickFilterApi.d.ts +0 -0
- /package/dist/types/{core → src}/gridComp/gridComp.d.ts +0 -0
- /package/dist/types/{core → src}/headerRendering/cells/abstractCell/abstractHeaderCellComp.d.ts +0 -0
- /package/dist/types/{core → src}/headerRendering/cells/columnGroup/groupWidthFeature.d.ts +0 -0
- /package/dist/types/{core → src}/headerRendering/cells/columnGroup/headerGroupCellComp.d.ts +0 -0
- /package/dist/types/{core → src}/headerRendering/cells/cssClassApplier.d.ts +0 -0
- /package/dist/types/{core → src}/headerRendering/cells/floatingFilter/headerFilterCellComp.d.ts +0 -0
- /package/dist/types/{core → src}/headerRendering/gridHeaderComp.d.ts +0 -0
- /package/dist/types/{core → src}/headerRendering/rowContainer/headerRowContainerComp.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/IChartService.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/advancedFilterModel.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/agFieldParams.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/brandedType.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iAdvancedFilterBuilderParams.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iAdvancedFilterCtrl.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iAdvancedFilterService.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iAfterGuiAttachedParams.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iAggFuncService.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iAggregationStage.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iAlignedGrid.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iCellEditorRenderer.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iClipboardService.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iColumnToolPanel.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iColumnVO.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iCommon.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iComponent.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iCsvCreator.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iEventEmitter.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iFiltersToolPanel.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iFocusableContainer.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iMenuFactory.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iMultiFilter.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iPivotColDefService.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iPopupComponent.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iRichCellEditorParams.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iServerSideSelection.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iStatusPanel.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iViewportDatasource.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iWatermark.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/iXmlFactory.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/renderStatusService.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/rowDataTransaction.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/rowNodeTransaction.d.ts +0 -0
- /package/dist/types/{core → src}/interfaces/selectionState.d.ts +0 -0
- /package/dist/types/{core → src}/localEventService.d.ts +0 -0
- /package/dist/types/{core → src}/misc/state/stateApi.d.ts +0 -0
- /package/dist/types/{core → src}/misc/state/stateModelMigration.d.ts +0 -0
- /package/dist/types/{core → src}/pagination/paginationApi.d.ts +0 -0
- /package/dist/types/{core → src}/pinnedRowModel/pinnedRowApi.d.ts +0 -0
- /package/dist/types/{core → src}/rendering/cellRenderers/checkboxCellRenderer.d.ts +0 -0
- /package/dist/types/{core → src}/rendering/cssClassManager.d.ts +0 -0
- /package/dist/types/{core → src}/rendering/dndSourceComp.d.ts +0 -0
- /package/dist/types/{core → src}/rendering/overlays/loadingOverlayComponent.d.ts +0 -0
- /package/dist/types/{core → src}/rendering/overlays/noRowsOverlayComponent.d.ts +0 -0
- /package/dist/types/{core → src}/rendering/overlays/overlayApi.d.ts +0 -0
- /package/dist/types/{core/api → src/sort}/sortApi.d.ts +0 -0
- /package/dist/types/{theming/styles → src/theming}/parts/icon-set/quartz/quartz-icon-data.d.ts +0 -0
- /package/dist/types/{theming/styles/parts/tab-style/GENERATED-tab-style-rolodex.d.ts → src/theming/parts/tab-style/tab-style-rolodex.css-GENERATED.d.ts} +0 -0
- /package/dist/types/{core/rendering → src/tooltip}/tooltipComponent.d.ts +0 -0
- /package/dist/types/{core → src}/undoRedo/iUndoRedo.d.ts +0 -0
- /package/dist/types/{core → src}/undoRedo/undoRedoStack.d.ts +0 -0
- /package/dist/types/{core → src}/utils/date.d.ts +0 -0
- /package/dist/types/{core → src}/utils/fuzzyMatch.d.ts +0 -0
- /package/dist/types/{core → src}/utils/mouse.d.ts +0 -0
- /package/dist/types/{core → src}/validation/apiFunctionValidator.d.ts +0 -0
- /package/dist/types/{core → src}/valueService/valueCache.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agAbstractField.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agAbstractInputField.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agAbstractLabel.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agCheckbox.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agInputDateField.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agInputNumberField.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agInputTextArea.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agInputTextField.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agList.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agRadioButton.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/agToggleButton.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/popupComponent.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/tabGuardComp.d.ts +0 -0
- /package/dist/types/{core → src}/widgets/tabGuardFeature.d.ts +0 -0
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
export type Feature = 'colorScheme' | 'iconSet' | 'checkboxStyle' | 'inputStyle' | 'tabStyle';
|
|
2
|
+
declare const paramTypes: readonly ["colorScheme", "color", "length", "scale", "borderStyle", "border", "shadow", "image", "fontFamily", "fontWeight", "duration"];
|
|
3
|
+
export type ParamType = (typeof paramTypes)[number];
|
|
4
|
+
/**
|
|
5
|
+
* Return the ParamType for a given param name,
|
|
6
|
+
*/
|
|
7
|
+
export declare const getParamType: (arg: string) => "length" | "image" | "colorScheme" | "color" | "scale" | "borderStyle" | "border" | "shadow" | "fontFamily" | "fontWeight" | "duration";
|
|
8
|
+
export type WithParamTypes<T> = {
|
|
9
|
+
[K in keyof T]: K extends string ? ParamTypeForLowercaseKey<Lowercase<K>> : LengthValue;
|
|
10
|
+
};
|
|
11
|
+
type ParamTypeForLowercaseKey<K extends string> = K extends `${string}color` ? ColorValue : K extends `${string}colorscheme` ? ColorSchemeValue : K extends `${string}color` ? ColorValue : K extends `${string}scale` ? ScaleValue : K extends `${string}borderstyle` ? BorderStyleValue : K extends `${string}border` ? BorderValue : K extends `${string}shadow` ? ShadowValue : K extends `${string}image` ? ImageValue : K extends `${string}fontfamily` ? FontFamilyValue : K extends `${string}fontweight` ? FontWeightValue : K extends `${string}duration` ? DurationValue : LengthValue;
|
|
12
|
+
type AnyString = string & {};
|
|
13
|
+
/**
|
|
14
|
+
* The 'brand color' for the grid, used wherever a non-neutral color is
|
|
15
|
+
* required. Selections, focus outlines and checkboxes use the accent color by
|
|
16
|
+
* default.
|
|
17
|
+
*/
|
|
18
|
+
export type ColorValue = string | {
|
|
19
|
+
/**
|
|
20
|
+
* The name of the color parameter to reference
|
|
21
|
+
*/
|
|
22
|
+
ref: string;
|
|
23
|
+
/**
|
|
24
|
+
* Enable color mixing. Provide a value between 0 and 1 determining the amount of the referenced color used in the mix.
|
|
25
|
+
*
|
|
26
|
+
* By default, the referenced color will be mixed with `transparent` so 0 = fully transparent and 1 = fully opaque.
|
|
27
|
+
*/
|
|
28
|
+
mix?: number;
|
|
29
|
+
/**
|
|
30
|
+
* Provide a second color reference to mix with instead of `transparent`. This has no effect if `mix` is unspecified.
|
|
31
|
+
*/
|
|
32
|
+
onto?: string;
|
|
33
|
+
/**
|
|
34
|
+
* Provide a CSS color value to mix with instead of `transparent`.
|
|
35
|
+
* This has no effect if `mix` is unspecified. This is an alternative
|
|
36
|
+
* to `onto`, if both are provided then `onto` will be take precedence.
|
|
37
|
+
*/
|
|
38
|
+
ontoColor?: string;
|
|
39
|
+
};
|
|
40
|
+
export declare const colorValueToCss: (value: ColorValue) => string | false;
|
|
41
|
+
/**
|
|
42
|
+
* A CSS color-scheme value, e.g. "light", "dark", or "inherit" to use the
|
|
43
|
+
* same setting as the parent application
|
|
44
|
+
*
|
|
45
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/color-scheme
|
|
46
|
+
*/
|
|
47
|
+
export type ColorSchemeValue = 'light' | 'dark' | 'inherit' | 'normal' | AnyString;
|
|
48
|
+
export declare const colorSchemeValueToCss: (value: string | number) => string | false;
|
|
49
|
+
/**
|
|
50
|
+
* A CSS dimension value with length units, e.g. "1px" or "2em". Alternatively:
|
|
51
|
+
*
|
|
52
|
+
* - `4` -> "4px" (a plain JavaScript number will be given pixel units)
|
|
53
|
+
* - `{ref: "foo"}` -> use the same value as the `foo` param (`ref` must be a valid param name)
|
|
54
|
+
* - `{calc: "foo + bar * 2"}` -> Use a dynamically calculated expression. You can use param names like spacing and fontSize in the expression, as well as built-in CSS math functions like `min(spacing, fontSize)`
|
|
55
|
+
*/
|
|
56
|
+
export type LengthValue = number | string | {
|
|
57
|
+
/**
|
|
58
|
+
* An expression that can include param names and maths, e.g.
|
|
59
|
+
* "spacing * 2". NOTE: In CSS the `-` character is valid in variable
|
|
60
|
+
* names, so leave a space around it.
|
|
61
|
+
*/
|
|
62
|
+
calc: string;
|
|
63
|
+
} | {
|
|
64
|
+
ref: string;
|
|
65
|
+
};
|
|
66
|
+
export declare const lengthValueToCss: (value: LengthValue) => string | false;
|
|
67
|
+
/**
|
|
68
|
+
* A number without units.
|
|
69
|
+
*/
|
|
70
|
+
export type ScaleValue = number;
|
|
71
|
+
export declare const scaleValueToCss: (value: string | number) => string | false;
|
|
72
|
+
/**
|
|
73
|
+
* A CSS border value e.g. "solid 1px red". Alternatively an object containing optional properties:
|
|
74
|
+
*
|
|
75
|
+
* - `style` -> a CSS border-style, default `"solid"`
|
|
76
|
+
* - `width` -> a width in pixels, default `1`
|
|
77
|
+
* - `color` -> a ColorValue as you would pass to any color param, default `{ref: "borderColor"}`
|
|
78
|
+
*
|
|
79
|
+
* Or a reference:
|
|
80
|
+
* - `{ref: "foo"}` -> use the same value as the `foo` param (`ref` must be a valid param name)
|
|
81
|
+
*
|
|
82
|
+
* Or boolean value
|
|
83
|
+
* - `true` -> `{}` (the default border style, equivalent to `{style: "solid", width: 1, color: {ref: "borderColor"}`)
|
|
84
|
+
* - `false` -> `"none"` (no border).
|
|
85
|
+
*
|
|
86
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/border
|
|
87
|
+
*/
|
|
88
|
+
export type BorderValue = string | boolean | {
|
|
89
|
+
style?: BorderStyleValue;
|
|
90
|
+
width?: LengthValue;
|
|
91
|
+
color?: ColorValue;
|
|
92
|
+
} | {
|
|
93
|
+
ref: string;
|
|
94
|
+
};
|
|
95
|
+
export declare const borderValueToCss: (value: BorderValue, param: string) => string;
|
|
96
|
+
/**
|
|
97
|
+
* A CSS box shadow value e.g. "10px 5px 5px red;". Alternatively an object containing optional properties:
|
|
98
|
+
*
|
|
99
|
+
* - `offsetX` -> number of pixels to move the shadow to the right, or a negative value to move left, default 0
|
|
100
|
+
* - `offsetY` -> number of pixels to move the shadow downwards, or a negative value to move up, default 0
|
|
101
|
+
* - `radius` -> softness of the shadow. 0 = hard edge, 10 = 10px wide blur
|
|
102
|
+
* - `spread` -> size of the shadow. 0 = same size as the shadow-casting element. 10 = 10px wider in all directions.
|
|
103
|
+
* - `color` -> color of the shadow e.g. `"red"`. Default `{ref: "foregroundColor"}`
|
|
104
|
+
*
|
|
105
|
+
* Or a reference:
|
|
106
|
+
* - `{ref: "foo"}` -> use the same value as the `foo` param (`ref` must be a valid param name)
|
|
107
|
+
*
|
|
108
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow
|
|
109
|
+
*/
|
|
110
|
+
export type ShadowValue = string | false | {
|
|
111
|
+
/**
|
|
112
|
+
* Positive values move the shadow to the right, negative values move left
|
|
113
|
+
*
|
|
114
|
+
* @default 0
|
|
115
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow
|
|
116
|
+
*/
|
|
117
|
+
offsetX?: LengthValue;
|
|
118
|
+
/**
|
|
119
|
+
* Positive values move the shadow downwards, negative values move up
|
|
120
|
+
*
|
|
121
|
+
* @default 0
|
|
122
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow
|
|
123
|
+
*/
|
|
124
|
+
offsetY?: LengthValue;
|
|
125
|
+
/**
|
|
126
|
+
* Softness of the shadow. 0 = hard edge, 10 = 10px wide blur.
|
|
127
|
+
*
|
|
128
|
+
* @default 0
|
|
129
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow
|
|
130
|
+
*/
|
|
131
|
+
radius?: LengthValue;
|
|
132
|
+
/**
|
|
133
|
+
* Size of the shadow. 0 = same size as the shadow-casting element. 10 = 10px wider in all directions.
|
|
134
|
+
*
|
|
135
|
+
* @default 0
|
|
136
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow
|
|
137
|
+
*/
|
|
138
|
+
spread?: LengthValue;
|
|
139
|
+
/**
|
|
140
|
+
* Shadow color. Can accept any value that is valid for a color parameter, e.g. 'red' or {ref: 'accentColor'}
|
|
141
|
+
*
|
|
142
|
+
* @default {ref: 'foregroundColor'}
|
|
143
|
+
*/
|
|
144
|
+
color?: ColorValue;
|
|
145
|
+
} | {
|
|
146
|
+
ref: string;
|
|
147
|
+
};
|
|
148
|
+
export declare const shadowValueToCss: (value: ShadowValue) => string | false;
|
|
149
|
+
/**
|
|
150
|
+
* A CSS line-style value e.g. "solid" or "dashed".
|
|
151
|
+
*
|
|
152
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/line-style
|
|
153
|
+
*/
|
|
154
|
+
export type BorderStyleValue = 'none' | 'solid' | 'dotted' | 'dashed';
|
|
155
|
+
export declare const borderStyleValueToCss: (value: string | number) => string | false;
|
|
156
|
+
/**
|
|
157
|
+
* A CSS font-family value consisting of a font name or comma-separated list of fonts in order of preference e.g. `"Roboto, -apple-system, 'Segoe UI', sans-serif"`. Alternatively:
|
|
158
|
+
*
|
|
159
|
+
* - `["Roboto", "-apple-system", "Segoe UI", "sans-serif"]` -> an array of font names in order of preference
|
|
160
|
+
* - `["Dave's Font"]` -> when passing an array, special characters in font names will automatically be escaped
|
|
161
|
+
* - `{ref: "foo"}` -> use the same value as `foo` which must be a valid font family param name
|
|
162
|
+
*
|
|
163
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/font-family
|
|
164
|
+
*/
|
|
165
|
+
export type FontFamilyValue = string | {
|
|
166
|
+
googleFont: string;
|
|
167
|
+
} | Array<string | {
|
|
168
|
+
googleFont: string;
|
|
169
|
+
}> | {
|
|
170
|
+
ref: string;
|
|
171
|
+
};
|
|
172
|
+
export declare const fontFamilyValueToCss: (value: FontFamilyValue) => string | false;
|
|
173
|
+
/**
|
|
174
|
+
* A CSS font-weight value e.g. `500` or `"bold"`
|
|
175
|
+
*
|
|
176
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight
|
|
177
|
+
*/
|
|
178
|
+
export type FontWeightValue = 'normal' | 'bold' | AnyString | number;
|
|
179
|
+
export declare const fontWeightValueToCss: (value: string | number) => string | false;
|
|
180
|
+
/**
|
|
181
|
+
* A CSS image value e.g. `"url(...image-url...)"`. Alternatively:
|
|
182
|
+
*
|
|
183
|
+
* - `{svg: "...XML source of SVG image..."}` -> embed an SVG as a data: uri
|
|
184
|
+
* - `{url: "https://..."}` -> a URL to load an image asset from. Can be a HTTPS URL, or image assets such as PNGs can be converted to data: URLs
|
|
185
|
+
* - `{ref: "foo"}` -> use the same value as the `foo` param (`ref` must be a valid param name)
|
|
186
|
+
*
|
|
187
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/image
|
|
188
|
+
*/
|
|
189
|
+
export type ImageValue = string | {
|
|
190
|
+
/**
|
|
191
|
+
* The URL of an image. data: URLs can be used embed assets.
|
|
192
|
+
*/
|
|
193
|
+
url: string;
|
|
194
|
+
} | {
|
|
195
|
+
/**
|
|
196
|
+
* The XML text of an SVG file
|
|
197
|
+
*/
|
|
198
|
+
svg: string;
|
|
199
|
+
} | {
|
|
200
|
+
ref: string;
|
|
201
|
+
};
|
|
202
|
+
export declare const imageValueToCss: (value: ImageValue) => string | false;
|
|
203
|
+
/**
|
|
204
|
+
* A CSS time value with second or millisecond units e.g. `"0.3s"` or `"300ms"`. Alternatively:
|
|
205
|
+
*
|
|
206
|
+
* - `0.4` -> "0.4s" (a plain JavaScript number is assumed to be a number of seconds.
|
|
207
|
+
* - `{ref: "foo"}` -> use the same value as the `foo` param (`ref` must be a valid param name)
|
|
208
|
+
*
|
|
209
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/animation-duration
|
|
210
|
+
*/
|
|
211
|
+
export type DurationValue = number | string | {
|
|
212
|
+
ref: string;
|
|
213
|
+
};
|
|
214
|
+
export declare const durationValueToCss: (value: DurationValue, param: string) => string | false;
|
|
215
|
+
export declare const paramValueToCss: (param: string, value: unknown) => string | false;
|
|
216
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { ColorValue } from './theme-types';
|
|
2
|
+
export declare const kebabCase: (str: string) => string;
|
|
3
|
+
export declare const paramToVariableName: (paramName: string) => string;
|
|
4
|
+
export declare const paramToVariableExpression: (paramName: string) => string;
|
|
5
|
+
export declare const clamp: (value: number, min: number, max: number) => number;
|
|
6
|
+
export declare const logErrorMessage: (message: unknown, error?: unknown) => void;
|
|
7
|
+
export declare const memoize: <R, A = void>(fn: (arg: A) => R) => (arg: A) => R;
|
|
8
|
+
export declare const accentMix: (mix: number) => ColorValue;
|
|
9
|
+
export declare const foregroundMix: (mix: number) => ColorValue;
|
|
10
|
+
export declare const foregroundBackgroundMix: (mix: number) => ColorValue;
|
|
11
|
+
export declare const foregroundColor: ColorValue;
|
|
12
|
+
export declare const accentColor: ColorValue;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const tooltipCSS = ".ag-tooltip{background-color:var(--ag-tooltip-background-color);border:var(--ag-tooltip-border);border-radius:var(--ag-border-radius);color:var(--ag-tooltip-text-color);padding:var(--ag-widget-container-vertical-padding) var(--ag-widget-container-horizontal-padding);white-space:normal}.ag-tooltip,.ag-tooltip-custom{position:absolute;z-index:99999}.ag-tooltip-custom:where(:not(.ag-tooltip-interactive)),.ag-tooltip:where(:not(.ag-tooltip-interactive)){pointer-events:none}.ag-tooltip-animate{transition:opacity 1s;&:where(.ag-tooltip-hiding){opacity:0}}";
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { BeanStub } from '../context/beanStub';
|
|
2
|
+
import type { BeanCollection } from '../context/context';
|
|
3
|
+
import type { AgColumn } from '../entities/agColumn';
|
|
4
|
+
import type { AgColumnGroup } from '../entities/agColumnGroup';
|
|
5
|
+
import type { ColDef, ColGroupDef } from '../entities/colDef';
|
|
6
|
+
import type { RowNode } from '../entities/rowNode';
|
|
7
|
+
import type { GridOptionsService } from '../gridOptionsService';
|
|
8
|
+
import type { TooltipLocation } from './tooltipComponent';
|
|
9
|
+
export interface ITooltipCtrl {
|
|
10
|
+
getTooltipValue?(): any;
|
|
11
|
+
getGui(): HTMLElement;
|
|
12
|
+
getLocation?(): TooltipLocation;
|
|
13
|
+
getColumn?(): AgColumn | AgColumnGroup;
|
|
14
|
+
getColDef?(): ColDef | ColGroupDef;
|
|
15
|
+
getRowIndex?(): number;
|
|
16
|
+
getRowNode?(): RowNode;
|
|
17
|
+
getValueFormatted?(): string;
|
|
18
|
+
getTooltipShowDelayOverride?(): number;
|
|
19
|
+
getTooltipHideDelayOverride?(): number;
|
|
20
|
+
shouldDisplayTooltip?(): boolean;
|
|
21
|
+
/** Additional params to be passed to the tooltip */
|
|
22
|
+
getAdditionalParams?(): Record<string, any>;
|
|
23
|
+
}
|
|
24
|
+
export declare function _isShowTooltipWhenTruncated(gos: GridOptionsService): boolean;
|
|
25
|
+
export declare function _getShouldDisplayTooltip(gos: GridOptionsService, getElement: () => HTMLElement | undefined): (() => boolean) | undefined;
|
|
26
|
+
export declare function _shouldDisplayTooltip(getElement: () => HTMLElement | undefined): () => boolean;
|
|
27
|
+
export declare class TooltipFeature extends BeanStub {
|
|
28
|
+
private readonly ctrl;
|
|
29
|
+
private tooltip;
|
|
30
|
+
private tooltipManager;
|
|
31
|
+
private browserTooltips;
|
|
32
|
+
constructor(ctrl: ITooltipCtrl, beans?: BeanCollection);
|
|
33
|
+
postConstruct(): void;
|
|
34
|
+
private setBrowserTooltip;
|
|
35
|
+
private updateTooltipText;
|
|
36
|
+
private createTooltipFeatureIfNeeded;
|
|
37
|
+
setTooltipAndRefresh(tooltip: any): void;
|
|
38
|
+
refreshTooltip(): void;
|
|
39
|
+
destroy(): void;
|
|
40
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { NamedBean } from '../context/bean';
|
|
2
|
+
import { BeanStub } from '../context/beanStub';
|
|
3
|
+
import type { AgColumn } from '../entities/agColumn';
|
|
4
|
+
import type { HeaderCellCtrl } from '../headerRendering/cells/column/headerCellCtrl';
|
|
5
|
+
import type { HeaderGroupCellCtrl } from '../headerRendering/cells/columnGroup/headerGroupCellCtrl';
|
|
6
|
+
import type { CellCtrl } from '../rendering/cell/cellCtrl';
|
|
7
|
+
import type { RowCtrl } from '../rendering/row/rowCtrl';
|
|
8
|
+
import type { TooltipFeature } from './tooltipFeature';
|
|
9
|
+
export declare class TooltipService extends BeanStub implements NamedBean {
|
|
10
|
+
beanName: "tooltipSvc";
|
|
11
|
+
setupHeaderTooltip(existingTooltipFeature: TooltipFeature | undefined, ctrl: HeaderCellCtrl, value?: string, shouldDisplayTooltip?: () => boolean): TooltipFeature | undefined;
|
|
12
|
+
setupHeaderGroupTooltip(existingTooltipFeature: TooltipFeature | undefined, ctrl: HeaderGroupCellCtrl, value?: string, shouldDisplayTooltip?: () => boolean): TooltipFeature | undefined;
|
|
13
|
+
enableCellTooltipFeature(ctrl: CellCtrl, value?: string, shouldDisplayTooltip?: () => boolean): TooltipFeature | undefined;
|
|
14
|
+
refreshRowTooltip(existingTooltipFeature: TooltipFeature | undefined, ctrl: RowCtrl, value: string, shouldDisplayTooltip?: () => boolean): TooltipFeature | undefined;
|
|
15
|
+
initCol(column: AgColumn): void;
|
|
16
|
+
private createTooltipFeature;
|
|
17
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { BeanStub } from '../context/beanStub';
|
|
2
|
+
import type { BeanCollection } from '../context/context';
|
|
3
|
+
import type { ITooltipCtrl } from './tooltipFeature';
|
|
4
|
+
export declare class TooltipStateManager extends BeanStub {
|
|
5
|
+
private readonly tooltipCtrl;
|
|
6
|
+
private readonly getTooltipValue;
|
|
7
|
+
private popupSvc?;
|
|
8
|
+
private userCompFactory;
|
|
9
|
+
wireBeans(beans: BeanCollection): void;
|
|
10
|
+
private showTooltipTimeoutId;
|
|
11
|
+
private hideTooltipTimeoutId;
|
|
12
|
+
private interactiveTooltipTimeoutId;
|
|
13
|
+
private interactionEnabled;
|
|
14
|
+
private isInteractingWithTooltip;
|
|
15
|
+
private state;
|
|
16
|
+
private lastMouseEvent;
|
|
17
|
+
private tooltipComp;
|
|
18
|
+
private tooltipPopupDestroyFunc;
|
|
19
|
+
private tooltipInstanceCount;
|
|
20
|
+
private tooltipMouseTrack;
|
|
21
|
+
private tooltipTrigger;
|
|
22
|
+
private tooltipMouseEnterListener;
|
|
23
|
+
private tooltipMouseLeaveListener;
|
|
24
|
+
private tooltipFocusInListener;
|
|
25
|
+
private tooltipFocusOutListener;
|
|
26
|
+
private onBodyScrollEventCallback;
|
|
27
|
+
private onColumnMovedEventCallback;
|
|
28
|
+
private onDocumentKeyDownCallback;
|
|
29
|
+
constructor(tooltipCtrl: ITooltipCtrl, getTooltipValue: () => any);
|
|
30
|
+
postConstruct(): void;
|
|
31
|
+
private getGridOptionsTooltipDelay;
|
|
32
|
+
private getTooltipDelay;
|
|
33
|
+
destroy(): void;
|
|
34
|
+
private getTooltipTrigger;
|
|
35
|
+
onMouseEnter(e: MouseEvent): void;
|
|
36
|
+
private onMouseMove;
|
|
37
|
+
private onMouseDown;
|
|
38
|
+
private onMouseLeave;
|
|
39
|
+
private onFocusIn;
|
|
40
|
+
private onFocusOut;
|
|
41
|
+
private onKeyDown;
|
|
42
|
+
private prepareToShowTooltip;
|
|
43
|
+
private isLastTooltipHiddenRecently;
|
|
44
|
+
private setToDoNothing;
|
|
45
|
+
private showTooltip;
|
|
46
|
+
hideTooltip(forceHide?: boolean): void;
|
|
47
|
+
private newTooltipComponentCallback;
|
|
48
|
+
private onTooltipMouseEnter;
|
|
49
|
+
private onTooltipMouseLeave;
|
|
50
|
+
private onTooltipFocusIn;
|
|
51
|
+
private isTooltipFocused;
|
|
52
|
+
private onTooltipFocusOut;
|
|
53
|
+
private positionTooltip;
|
|
54
|
+
private destroyTooltipComp;
|
|
55
|
+
private clearTooltipListeners;
|
|
56
|
+
private lockService;
|
|
57
|
+
private unlockService;
|
|
58
|
+
private startHideTimeout;
|
|
59
|
+
private clearShowTimeout;
|
|
60
|
+
private clearHideTimeout;
|
|
61
|
+
private clearInteractiveTimeout;
|
|
62
|
+
private clearTimeouts;
|
|
63
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { NamedBean } from '../context/bean';
|
|
2
|
+
import { BeanStub } from '../context/beanStub';
|
|
3
|
+
export declare class UndoRedoService extends BeanStub implements NamedBean {
|
|
4
|
+
beanName: "undoRedo";
|
|
5
|
+
private gridBodyCtrl;
|
|
6
|
+
private cellValueChanges;
|
|
7
|
+
private undoStack;
|
|
8
|
+
private redoStack;
|
|
9
|
+
private activeCellEdit;
|
|
10
|
+
private activeRowEdit;
|
|
11
|
+
private isPasting;
|
|
12
|
+
private isRangeInAction;
|
|
13
|
+
postConstruct(): void;
|
|
14
|
+
private onCellValueChanged;
|
|
15
|
+
private clearStacks;
|
|
16
|
+
getCurrentUndoStackSize(): number;
|
|
17
|
+
getCurrentRedoStackSize(): number;
|
|
18
|
+
undo(source: 'api' | 'ui'): void;
|
|
19
|
+
redo(source: 'api' | 'ui'): void;
|
|
20
|
+
private undoRedo;
|
|
21
|
+
private processAction;
|
|
22
|
+
private processRange;
|
|
23
|
+
private processCell;
|
|
24
|
+
private setLastFocusedCell;
|
|
25
|
+
private addListeners;
|
|
26
|
+
private pushActionsToUndoStack;
|
|
27
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import type { SortDirection } from '../entities/colDef';
|
|
2
|
+
import type { LocaleTextFunc } from '../misc/locale/localeUtils';
|
|
3
|
+
export type ColumnSortState = 'ascending' | 'descending' | 'other' | 'none';
|
|
4
|
+
export declare function _setAriaRole(element: Element, role?: string | null): void;
|
|
5
|
+
export declare function _getAriaSortState(sortDirection: SortDirection | 'mixed'): ColumnSortState;
|
|
6
|
+
export declare function _getAriaLevel(element: Element): number;
|
|
7
|
+
export declare function _getAriaPosInSet(element: Element): number;
|
|
8
|
+
export declare function _getAriaLabel(element: Element): string | null;
|
|
9
|
+
export declare function _setAriaLabel(element: Element, label?: string | null): void;
|
|
10
|
+
export declare function _setAriaLabelledBy(element: Element, labelledBy?: string): void;
|
|
11
|
+
export declare function _setAriaDescribedBy(element: Element, describedby?: string): void;
|
|
12
|
+
export declare function _setAriaLive(element: Element, live?: 'polite' | 'assertive' | 'off' | null): void;
|
|
13
|
+
export declare function _setAriaAtomic(element: Element, atomic: boolean | null): void;
|
|
14
|
+
export declare function _setAriaRelevant(element: Element, relevant: 'additions' | 'additions text' | 'all' | 'removals' | 'text' | null): void;
|
|
15
|
+
export declare function _setAriaLevel(element: Element, level: number): void;
|
|
16
|
+
export declare function _setAriaDisabled(element: Element, disabled: boolean): void;
|
|
17
|
+
export declare function _setAriaHidden(element: Element, hidden: boolean): void;
|
|
18
|
+
export declare function _setAriaActiveDescendant(element: Element, descendantId: string | null): void;
|
|
19
|
+
export declare function _setAriaExpanded(element: Element, expanded: boolean): void;
|
|
20
|
+
export declare function _removeAriaExpanded(element: Element): void;
|
|
21
|
+
export declare function _setAriaSetSize(element: Element, setsize: number): void;
|
|
22
|
+
export declare function _setAriaPosInSet(element: Element, position: number): void;
|
|
23
|
+
export declare function _setAriaMultiSelectable(element: Element, multiSelectable: boolean): void;
|
|
24
|
+
export declare function _setAriaRowCount(element: Element, rowCount: number): void;
|
|
25
|
+
export declare function _setAriaRowIndex(element: Element, rowIndex: number): void;
|
|
26
|
+
export declare function _setAriaColCount(element: Element, colCount: number): void;
|
|
27
|
+
export declare function _setAriaColIndex(element: Element, colIndex: number): void;
|
|
28
|
+
export declare function _setAriaColSpan(element: Element, colSpan: number): void;
|
|
29
|
+
export declare function _setAriaSort(element: Element, sort: ColumnSortState): void;
|
|
30
|
+
export declare function _removeAriaSort(element: Element): void;
|
|
31
|
+
export declare function _setAriaSelected(element: Element, selected?: boolean): void;
|
|
32
|
+
export declare function _setAriaChecked(element: Element, checked?: boolean): void;
|
|
33
|
+
export declare function _setAriaControls(controllerElement: Element, controlledElement: Element): void;
|
|
34
|
+
export declare function _getAriaCheckboxStateName(translate: LocaleTextFunc, state?: boolean): string;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/** An array that is always empty and that cannot be modified */
|
|
2
|
+
export declare const _EmptyArray: any[];
|
|
3
|
+
export declare function _last<T>(arr: T[]): T;
|
|
4
|
+
export declare function _last<T extends Node>(arr: NodeListOf<T>): T;
|
|
5
|
+
export declare function _areEqual<T>(a?: readonly T[] | null, b?: readonly T[] | null, comparator?: (a: T, b: T) => boolean): boolean;
|
|
6
|
+
export declare function _sortNumerically(array: number[]): number[];
|
|
7
|
+
export declare function _removeFromArray<T>(array: T[], object: T): void;
|
|
8
|
+
export declare function _moveInArray<T>(array: T[], objectsToMove: T[], toIndex: number): void;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare function _isBrowserSafari(): boolean;
|
|
2
|
+
/**
|
|
3
|
+
* Returns true for Chrome and also for Edge (Chromium)
|
|
4
|
+
*/
|
|
5
|
+
export declare function _isBrowserChrome(): boolean;
|
|
6
|
+
export declare function _isBrowserFirefox(): boolean;
|
|
7
|
+
export declare function _isMacOsUserAgent(): boolean;
|
|
8
|
+
export declare function _isIOSUserAgent(): boolean;
|
|
9
|
+
export declare function _getTabIndex(el: HTMLElement | null): string | null;
|
|
10
|
+
export declare function _getMaxDivHeight(): number;
|
|
11
|
+
export declare function _getScrollbarWidth(): number | null;
|
|
12
|
+
export declare function _isInvisibleScrollbar(): boolean;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { AgColumn } from '../entities/agColumn';
|
|
2
|
+
import type { RowNode } from '../entities/rowNode';
|
|
3
|
+
export declare class ChangedPath {
|
|
4
|
+
private readonly keepingColumns;
|
|
5
|
+
private readonly pathRoot;
|
|
6
|
+
active: boolean;
|
|
7
|
+
private nodeIdsToColumns;
|
|
8
|
+
private mapToItems;
|
|
9
|
+
constructor(keepingColumns: boolean, rootNode: RowNode);
|
|
10
|
+
private depthFirstSearchChangedPath;
|
|
11
|
+
private depthFirstSearchEverything;
|
|
12
|
+
forEachChangedNodeDepthFirst(callback: (rowNode: RowNode) => void, traverseLeafNodes?: boolean, includeUnchangedNodes?: boolean): void;
|
|
13
|
+
executeFromRootNode(callback: (rowNode: RowNode) => void): void;
|
|
14
|
+
private createPathItems;
|
|
15
|
+
private populateColumnsMap;
|
|
16
|
+
private linkPathItems;
|
|
17
|
+
addParentNode(rowNode: RowNode | null, columns?: AgColumn[]): void;
|
|
18
|
+
canSkip(rowNode: RowNode): boolean;
|
|
19
|
+
getValueColumnsForNode(rowNode: RowNode, valueColumns: AgColumn[]): AgColumn[];
|
|
20
|
+
getNotValueColumnsForNode(rowNode: RowNode, valueColumns: AgColumn[]): AgColumn[] | null;
|
|
21
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import type { BeanCollection } from '../context/context';
|
|
2
|
+
import type { CellStyle } from '../entities/colDef';
|
|
3
|
+
import type { RowStyle } from '../entities/gridOptions';
|
|
4
|
+
import type { ICellRendererComp } from '../rendering/cellRenderers/iCellRenderer';
|
|
5
|
+
import type { AgPromise } from './promise';
|
|
6
|
+
/**
|
|
7
|
+
* This method adds a class to an element and remove that class from all siblings.
|
|
8
|
+
* Useful for toggling state.
|
|
9
|
+
* @param {HTMLElement} element The element to receive the class
|
|
10
|
+
* @param {string} elementClass The class to be assigned to the element
|
|
11
|
+
* @param {boolean} otherElementClass The class to be assigned to siblings of the element, but not the element itself
|
|
12
|
+
*/
|
|
13
|
+
export declare function _radioCssClass(element: HTMLElement, elementClass: string | null, otherElementClass?: string | null): void;
|
|
14
|
+
export declare const FOCUSABLE_SELECTOR = "[tabindex], input, select, button, textarea, [href]";
|
|
15
|
+
export declare const FOCUSABLE_EXCLUDE = "[disabled], .ag-disabled:not(.ag-button), .ag-disabled *";
|
|
16
|
+
export declare function _isFocusableFormField(element: HTMLElement): boolean;
|
|
17
|
+
export declare function _setDisplayed(element: Element, displayed: boolean, options?: {
|
|
18
|
+
skipAriaHidden?: boolean;
|
|
19
|
+
}): void;
|
|
20
|
+
export declare function _setVisible(element: HTMLElement, visible: boolean, options?: {
|
|
21
|
+
skipAriaHidden?: boolean;
|
|
22
|
+
}): void;
|
|
23
|
+
export declare function _setDisabled(element: HTMLElement, disabled: boolean): void;
|
|
24
|
+
export declare function _isElementChildOfClass(element: HTMLElement | null, cls: string, maxNest?: HTMLElement | number): boolean;
|
|
25
|
+
export declare function _getElementSize(el: HTMLElement): {
|
|
26
|
+
height: number;
|
|
27
|
+
width: number;
|
|
28
|
+
borderTopWidth: number;
|
|
29
|
+
borderRightWidth: number;
|
|
30
|
+
borderBottomWidth: number;
|
|
31
|
+
borderLeftWidth: number;
|
|
32
|
+
paddingTop: number;
|
|
33
|
+
paddingRight: number;
|
|
34
|
+
paddingBottom: number;
|
|
35
|
+
paddingLeft: number;
|
|
36
|
+
marginTop: number;
|
|
37
|
+
marginRight: number;
|
|
38
|
+
marginBottom: number;
|
|
39
|
+
marginLeft: number;
|
|
40
|
+
boxSizing: string;
|
|
41
|
+
};
|
|
42
|
+
export declare function _getInnerHeight(el: HTMLElement): number;
|
|
43
|
+
export declare function _getInnerWidth(el: HTMLElement): number;
|
|
44
|
+
export declare function _getAbsoluteHeight(el: HTMLElement): number;
|
|
45
|
+
export declare function _getAbsoluteWidth(el: HTMLElement): number;
|
|
46
|
+
export declare function _getElementRectWithOffset(el: HTMLElement): {
|
|
47
|
+
top: number;
|
|
48
|
+
left: number;
|
|
49
|
+
right: number;
|
|
50
|
+
bottom: number;
|
|
51
|
+
};
|
|
52
|
+
export declare function _isRtlNegativeScroll(): boolean;
|
|
53
|
+
export declare function _getScrollLeft(element: HTMLElement, rtl: boolean): number;
|
|
54
|
+
export declare function _setScrollLeft(element: HTMLElement, value: number, rtl: boolean): void;
|
|
55
|
+
export declare function _clearElement(el: HTMLElement): void;
|
|
56
|
+
export declare function _removeFromParent(node: Element | null): void;
|
|
57
|
+
export declare function _isInDOM(element: HTMLElement): boolean;
|
|
58
|
+
export declare function _isVisible(element: HTMLElement): any;
|
|
59
|
+
/**
|
|
60
|
+
* Loads the template and returns it as an element. makes up for no simple way in
|
|
61
|
+
* the dom api to load html directly, eg we cannot do this: document.createElement(template)
|
|
62
|
+
* @param {string} template
|
|
63
|
+
* @returns {HTMLElement}
|
|
64
|
+
*/
|
|
65
|
+
export declare function _loadTemplate(template: string): HTMLElement;
|
|
66
|
+
export declare function _ensureDomOrder(eContainer: HTMLElement, eChild: HTMLElement, eChildBefore?: HTMLElement | null): void;
|
|
67
|
+
export declare function _setDomChildOrder(eContainer: HTMLElement, orderedChildren: (HTMLElement | null)[]): void;
|
|
68
|
+
export declare function _insertWithDomOrder(eContainer: HTMLElement, eToInsert: HTMLElement, eChildBefore: HTMLElement | null): void;
|
|
69
|
+
export declare function _addStylesToElement(eElement: any, styles: RowStyle | CellStyle | null | undefined): void;
|
|
70
|
+
export declare function _isHorizontalScrollShowing(element: HTMLElement): boolean;
|
|
71
|
+
export declare function _isVerticalScrollShowing(element: HTMLElement): boolean;
|
|
72
|
+
export declare function _setElementWidth(element: HTMLElement, width: string | number): void;
|
|
73
|
+
export declare function _setFixedWidth(element: HTMLElement, width: string | number): void;
|
|
74
|
+
export declare function _setElementHeight(element: HTMLElement, height: string | number): void;
|
|
75
|
+
export declare function _setFixedHeight(element: HTMLElement, height: string | number): void;
|
|
76
|
+
export declare function _formatSize(size: number | string): string;
|
|
77
|
+
export declare function _isNodeOrElement(o: any): o is Node | Element;
|
|
78
|
+
/**
|
|
79
|
+
* Makes a copy of a node list into a list
|
|
80
|
+
* @param {NodeList} nodeList
|
|
81
|
+
* @returns {Node[]}
|
|
82
|
+
*/
|
|
83
|
+
export declare function _copyNodeList(nodeList: NodeListOf<Node> | null): Node[];
|
|
84
|
+
export declare function _iterateNamedNodeMap(map: NamedNodeMap, callback: (key: string, value: string) => void): void;
|
|
85
|
+
export declare function _addOrRemoveAttribute(element: HTMLElement, name: string, value: string | number | null | undefined): void;
|
|
86
|
+
export declare function _nodeListForEach<T extends Node>(nodeList: NodeListOf<T> | null, action: (value: T) => void): void;
|
|
87
|
+
/**
|
|
88
|
+
* cell renderers are used in a few places. they bind to dom slightly differently to other cell renders as they
|
|
89
|
+
* can return back strings (instead of html element) in the getGui() method. common code placed here to handle that.
|
|
90
|
+
* @param {AgPromise<ICellRendererComp>} cellRendererPromise
|
|
91
|
+
* @param {HTMLElement} eTarget
|
|
92
|
+
*/
|
|
93
|
+
export declare function _bindCellRendererToHtmlElement(cellRendererPromise: AgPromise<ICellRendererComp>, eTarget: HTMLElement): void;
|
|
94
|
+
export declare function _observeResize(beans: BeanCollection, element: HTMLElement, callback: () => void): () => void;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type { GridOptionsService } from '../gridOptionsService';
|
|
2
|
+
import type { IFrameworkOverrides } from '../interfaces/iFrameworkOverrides';
|
|
3
|
+
/**
|
|
4
|
+
* a user once raised an issue - they said that when you opened a popup (eg context menu)
|
|
5
|
+
* and then clicked on a selection checkbox, the popup wasn't closed. this is because the
|
|
6
|
+
* popup listens for clicks on the body, however ag-grid WAS stopping propagation on the
|
|
7
|
+
* checkbox clicks (so the rows didn't pick them up as row selection selection clicks).
|
|
8
|
+
* to get around this, we have a pattern to stop propagation for the purposes of AG Grid,
|
|
9
|
+
* but we still let the event pass back to the body.
|
|
10
|
+
* @param {Event} event
|
|
11
|
+
*/
|
|
12
|
+
export declare function _stopPropagationForAgGrid(event: Event): void;
|
|
13
|
+
export declare function _isStopPropagationForAgGrid(event: Event): boolean;
|
|
14
|
+
export declare const _isEventSupported: (eventName: any) => boolean;
|
|
15
|
+
export declare function _getCtrlForEventTarget<T>(gos: GridOptionsService, eventTarget: EventTarget | null, type: string): T | null;
|
|
16
|
+
export declare function _isElementInEventPath(element: HTMLElement, event: Event): boolean;
|
|
17
|
+
export declare function _createEventPath(event: {
|
|
18
|
+
target: EventTarget;
|
|
19
|
+
}): EventTarget[];
|
|
20
|
+
/**
|
|
21
|
+
* Gets the path for a browser Event or from the target on an AG Grid Event
|
|
22
|
+
* https://developer.mozilla.org/en-US/docs/Web/API/Event
|
|
23
|
+
* @param {Event| { target: EventTarget }} event
|
|
24
|
+
* @returns {EventTarget[]}
|
|
25
|
+
*/
|
|
26
|
+
export declare function _getEventPath(event: Event | {
|
|
27
|
+
target: EventTarget;
|
|
28
|
+
}): EventTarget[];
|
|
29
|
+
export declare function _addSafePassiveEventListener(frameworkOverrides: IFrameworkOverrides, eElement: HTMLElement, event: string, listener: (event?: any) => void): void;
|
|
30
|
+
export declare const getPassiveStateForEvent: (event: string) => boolean | undefined;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { BeanCollection } from '../context/context';
|
|
2
|
+
import type { Component } from '../widgets/component';
|
|
3
|
+
export declare function _registerKeyboardFocusEvents(beans: BeanCollection): () => void;
|
|
4
|
+
export declare function _isKeyboardMode(): boolean;
|
|
5
|
+
export declare function _addFocusableContainerListener(beans: BeanCollection, comp: Component, eGui: HTMLElement): void;
|
|
6
|
+
export declare function _findFocusableElements(rootNode: HTMLElement, exclude?: string | null, onlyUnmanaged?: boolean): HTMLElement[];
|
|
7
|
+
export declare function _focusInto(rootNode: HTMLElement, up?: boolean, onlyUnmanaged?: boolean): boolean;
|
|
8
|
+
export declare function _findNextFocusableElement(beans: BeanCollection, rootNode: HTMLElement, onlyManaged?: boolean | null, backwards?: boolean): HTMLElement | null;
|
|
9
|
+
export declare function _findTabbableParent(node: HTMLElement | null, limit?: number): HTMLElement | null;
|
|
10
|
+
export declare function _focusGridInnerElement(beans: BeanCollection, fromBottom?: boolean): boolean;
|
|
11
|
+
export declare function _isHeaderFocusSuppressed(beans: BeanCollection): boolean;
|
|
12
|
+
export declare function _isCellFocusSuppressed(beans: BeanCollection): boolean;
|
|
13
|
+
export declare function _focusNextGridCoreContainer(beans: BeanCollection, backwards: boolean, forceOut?: boolean): boolean;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { GridOptionsService } from '../gridOptionsService';
|
|
2
|
+
/**
|
|
3
|
+
* If the key was passed before, then doesn't execute the func
|
|
4
|
+
* @param {Function} func
|
|
5
|
+
* @param {string} key
|
|
6
|
+
*/
|
|
7
|
+
export declare function _doOnce(func: () => void, key: string): void;
|
|
8
|
+
export declare function _logIfDebug(gos: GridOptionsService, message: string, ...args: any[]): void;
|
|
9
|
+
export declare function _warnOnce(msg: string, ...args: any[]): void;
|
|
10
|
+
export declare function _errorOnce(msg: string, ...args: any[]): void;
|
|
11
|
+
export declare function _executeNextVMTurn(func: () => void): void;
|
|
12
|
+
/**
|
|
13
|
+
* Creates a debounced function a function, and attach it to a bean for lifecycle
|
|
14
|
+
* @param {Function} func The function to be debounced
|
|
15
|
+
* @param {number} delay The time in ms to debounce
|
|
16
|
+
* @return {Function} The debounced function
|
|
17
|
+
*/
|
|
18
|
+
export declare function _debounce(bean: {
|
|
19
|
+
isAlive(): boolean;
|
|
20
|
+
}, func: (...args: any[]) => void, delay: number): (...args: any[]) => void;
|
|
21
|
+
/**
|
|
22
|
+
* @param {Function} func The function to be throttled
|
|
23
|
+
* @param {number} wait The time in ms to throttle
|
|
24
|
+
* @return {Function} The throttled function
|
|
25
|
+
*/
|
|
26
|
+
export declare function _throttle(func: (...args: any[]) => void, wait: number): (...args: any[]) => void;
|
|
27
|
+
export declare function _waitUntil(condition: () => boolean, callback: () => void, timeout?: number, timeoutMessage?: string): void;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* If value is undefined, null or blank, returns null, otherwise returns the value
|
|
3
|
+
* @param {T} value
|
|
4
|
+
* @returns {T | null}
|
|
5
|
+
*/
|
|
6
|
+
export declare function _makeNull<T>(value?: T): T | null;
|
|
7
|
+
export declare function _exists(value: string | null | undefined): value is string;
|
|
8
|
+
export declare function _exists<T>(value: T): value is NonNullable<T>;
|
|
9
|
+
export declare function _missing<T>(value: T | null | undefined): value is Exclude<undefined | null, T>;
|
|
10
|
+
export declare function _toStringOrNull(value: any): string | null;
|
|
11
|
+
export declare function _jsonEquals<T1, T2>(val1: T1, val2: T2): boolean;
|
|
12
|
+
export declare function _defaultComparator(valueA: any, valueB: any, accentedCompare?: boolean): number;
|