@mui/x-data-grid-pro 9.0.0-alpha.0 → 9.0.0-alpha.2
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/CHANGELOG.md +236 -0
- package/DataGridPro/DataGrid.js +4 -2
- package/DataGridPro/DataGrid.mjs +20 -0
- package/{esm/DataGridPro/DataGridPro.d.ts → DataGridPro/DataGridPro.d.mts} +2 -2
- package/DataGridPro/DataGridPro.js +70 -4
- package/{esm/DataGridPro/DataGridPro.js → DataGridPro/DataGridPro.mjs} +74 -8
- package/DataGridPro/index.d.mts +3 -0
- package/DataGridPro/index.mjs +3 -0
- package/{esm/DataGridPro/useDataGridProComponent.d.ts → DataGridPro/useDataGridProComponent.d.mts} +2 -2
- package/{esm/DataGridPro/useDataGridProComponent.js → DataGridPro/useDataGridProComponent.mjs} +18 -18
- package/{esm/DataGridPro/useDataGridProProps.d.ts → DataGridPro/useDataGridProProps.d.mts} +1 -1
- package/DataGridPro/useDataGridProProps.js +1 -0
- package/{esm/DataGridPro/useDataGridProProps.js → DataGridPro/useDataGridProProps.mjs} +2 -1
- package/{esm/components/GridColumnHeaders.js → components/GridColumnHeaders.mjs} +1 -1
- package/{esm/components/GridColumnMenuPinningItem.js → components/GridColumnMenuPinningItem.mjs} +2 -2
- package/{esm/components/GridDataSourceTreeDataGroupingCell.js → components/GridDataSourceTreeDataGroupingCell.mjs} +3 -3
- package/{esm/components/GridDetailPanel.js → components/GridDetailPanel.mjs} +2 -2
- package/{esm/components/GridDetailPanelToggleCell.js → components/GridDetailPanelToggleCell.mjs} +3 -3
- package/{esm/components/GridDetailPanels.js → components/GridDetailPanels.mjs} +5 -5
- package/{esm/components/GridProColumnMenu.d.ts → components/GridProColumnMenu.d.mts} +1 -1
- package/{esm/components/GridProColumnMenu.js → components/GridProColumnMenu.mjs} +1 -1
- package/{esm/components/GridRowReorderCell.js → components/GridRowReorderCell.mjs} +1 -1
- package/{esm/components/GridTreeDataGroupingCell.js → components/GridTreeDataGroupingCell.mjs} +2 -2
- package/components/headerFiltering/GridHeaderFilterCell.js +3 -2
- package/{esm/components/headerFiltering/GridHeaderFilterCell.js → components/headerFiltering/GridHeaderFilterCell.mjs} +6 -5
- package/{esm/components/headerFiltering/GridHeaderFilterClearButton.js → components/headerFiltering/GridHeaderFilterClearButton.mjs} +1 -1
- package/components/headerFiltering/GridHeaderFilterMenu.js +2 -1
- package/{esm/components/headerFiltering/GridHeaderFilterMenu.js → components/headerFiltering/GridHeaderFilterMenu.mjs} +2 -1
- package/components/headerFiltering/GridHeaderFilterMenuContainer.js +2 -1
- package/{esm/components/headerFiltering/GridHeaderFilterMenuContainer.js → components/headerFiltering/GridHeaderFilterMenuContainer.mjs} +3 -2
- package/components/headerFiltering/index.d.mts +3 -0
- package/components/headerFiltering/index.mjs +3 -0
- package/components/index.d.mts +6 -0
- package/components/index.mjs +7 -0
- package/{esm/components/reexports.d.ts → components/reexports.d.mts} +1 -1
- package/{esm/components/reexports.js → components/reexports.mjs} +1 -1
- package/constants/dataGridProDefaultSlotsComponents.d.mts +2 -0
- package/{esm/constants/dataGridProDefaultSlotsComponents.js → constants/dataGridProDefaultSlotsComponents.mjs} +7 -7
- package/{esm/hooks/features/columnHeaders/useGridColumnHeaders.js → hooks/features/columnHeaders/useGridColumnHeaders.mjs} +1 -1
- package/hooks/features/columnPinning/index.d.mts +1 -0
- package/hooks/features/columnPinning/index.mjs +1 -0
- package/{esm/hooks/features/columnPinning/useGridColumnPinning.d.ts → hooks/features/columnPinning/useGridColumnPinning.d.mts} +2 -2
- package/{esm/hooks/features/columnPinning/useGridColumnPinningPreProcessors.d.ts → hooks/features/columnPinning/useGridColumnPinningPreProcessors.d.mts} +2 -2
- package/{esm/hooks/features/columnReorder/columnReorderSelector.d.ts → hooks/features/columnReorder/columnReorderSelector.d.mts} +2 -2
- package/{esm/hooks/features/columnReorder/index.d.ts → hooks/features/columnReorder/index.d.mts} +2 -2
- package/hooks/features/columnReorder/index.mjs +2 -0
- package/{esm/hooks/features/columnReorder/useGridColumnReorder.d.ts → hooks/features/columnReorder/useGridColumnReorder.d.mts} +2 -2
- package/{esm/hooks/features/columnReorder/useGridColumnReorder.js → hooks/features/columnReorder/useGridColumnReorder.mjs} +1 -1
- package/{esm/hooks/features/dataSource/gridDataSourceSelector.d.ts → hooks/features/dataSource/gridDataSourceSelector.d.mts} +2 -2
- package/hooks/features/dataSource/index.d.mts +1 -0
- package/{esm/hooks/features/dataSource/useGridDataSourceBasePro.d.ts → hooks/features/dataSource/useGridDataSourceBasePro.d.mts} +4 -4
- package/hooks/features/dataSource/useGridDataSourceBasePro.d.ts +1 -1
- package/hooks/features/dataSource/useGridDataSourceBasePro.js +43 -29
- package/{esm/hooks/features/dataSource/useGridDataSourceBasePro.js → hooks/features/dataSource/useGridDataSourceBasePro.mjs} +46 -32
- package/{esm/hooks/features/dataSource/useGridDataSourcePro.d.ts → hooks/features/dataSource/useGridDataSourcePro.d.mts} +2 -2
- package/{esm/hooks/features/dataSource/useGridDataSourcePro.js → hooks/features/dataSource/useGridDataSourcePro.mjs} +1 -1
- package/{esm/hooks/features/dataSource/utils.d.ts → hooks/features/dataSource/utils.d.mts} +4 -2
- package/hooks/features/dataSource/utils.d.ts +3 -1
- package/hooks/features/dataSource/utils.js +14 -7
- package/{esm/hooks/features/dataSource/utils.js → hooks/features/dataSource/utils.mjs} +14 -7
- package/{esm/hooks/features/detailPanel/gridDetailPanelSelector.d.ts → hooks/features/detailPanel/gridDetailPanelSelector.d.mts} +2 -2
- package/{esm/hooks/features/detailPanel/gridDetailPanelToggleColDef.js → hooks/features/detailPanel/gridDetailPanelToggleColDef.mjs} +2 -2
- package/{esm/hooks/features/detailPanel/index.d.ts → hooks/features/detailPanel/index.d.mts} +3 -3
- package/{esm/hooks/features/detailPanel/index.js → hooks/features/detailPanel/index.mjs} +3 -3
- package/{esm/hooks/features/detailPanel/useGridDetailPanel.d.ts → hooks/features/detailPanel/useGridDetailPanel.d.mts} +2 -2
- package/{esm/hooks/features/detailPanel/useGridDetailPanel.js → hooks/features/detailPanel/useGridDetailPanel.mjs} +2 -2
- package/{esm/hooks/features/detailPanel/useGridDetailPanelPreProcessors.d.ts → hooks/features/detailPanel/useGridDetailPanelPreProcessors.d.mts} +2 -2
- package/{esm/hooks/features/detailPanel/useGridDetailPanelPreProcessors.js → hooks/features/detailPanel/useGridDetailPanelPreProcessors.mjs} +2 -2
- package/hooks/features/index.d.mts +7 -0
- package/hooks/features/index.mjs +8 -0
- package/{esm/hooks/features/infiniteLoader/useGridInfiniteLoader.d.ts → hooks/features/infiniteLoader/useGridInfiniteLoader.d.mts} +2 -2
- package/{esm/hooks/features/lazyLoader/useGridLazyLoader.d.ts → hooks/features/lazyLoader/useGridLazyLoader.d.mts} +2 -2
- package/{esm/hooks/features/lazyLoader/useGridLazyLoader.js → hooks/features/lazyLoader/useGridLazyLoader.mjs} +1 -1
- package/{esm/hooks/features/lazyLoader/useGridLazyLoaderPreProcessors.d.ts → hooks/features/lazyLoader/useGridLazyLoaderPreProcessors.d.mts} +2 -2
- package/{esm/hooks/features/lazyLoader/utils.d.ts → hooks/features/lazyLoader/utils.d.mts} +1 -1
- package/hooks/features/rowPinning/index.d.mts +1 -0
- package/hooks/features/rowPinning/index.mjs +1 -0
- package/{esm/hooks/features/rowPinning/useGridRowPinning.d.ts → hooks/features/rowPinning/useGridRowPinning.d.mts} +2 -2
- package/{esm/hooks/features/rowPinning/useGridRowPinningPreProcessors.d.ts → hooks/features/rowPinning/useGridRowPinningPreProcessors.d.mts} +2 -2
- package/{esm/hooks/features/rowPinning/useGridRowPinningPreProcessors.js → hooks/features/rowPinning/useGridRowPinningPreProcessors.mjs} +1 -1
- package/{esm/hooks/features/rowReorder/commonReorderConditions.d.ts → hooks/features/rowReorder/commonReorderConditions.d.mts} +1 -1
- package/{esm/hooks/features/rowReorder/gridRowReorderColDef.js → hooks/features/rowReorder/gridRowReorderColDef.mjs} +1 -1
- package/hooks/features/rowReorder/index.d.mts +2 -0
- package/hooks/features/rowReorder/index.mjs +2 -0
- package/{esm/hooks/features/rowReorder/models.d.ts → hooks/features/rowReorder/models.d.mts} +1 -1
- package/{esm/hooks/features/rowReorder/reorderExecutor.d.ts → hooks/features/rowReorder/reorderExecutor.d.mts} +1 -1
- package/{esm/hooks/features/rowReorder/reorderValidator.d.ts → hooks/features/rowReorder/reorderValidator.d.mts} +1 -1
- package/{esm/hooks/features/rowReorder/types.d.ts → hooks/features/rowReorder/types.d.mts} +2 -2
- package/{esm/hooks/features/rowReorder/useGridRowReorder.d.ts → hooks/features/rowReorder/useGridRowReorder.d.mts} +2 -2
- package/hooks/features/rowReorder/useGridRowReorder.js +3 -2
- package/{esm/hooks/features/rowReorder/useGridRowReorder.js → hooks/features/rowReorder/useGridRowReorder.mjs} +5 -4
- package/{esm/hooks/features/rowReorder/useGridRowReorderPreProcessors.d.ts → hooks/features/rowReorder/useGridRowReorderPreProcessors.d.mts} +2 -2
- package/{esm/hooks/features/rowReorder/useGridRowReorderPreProcessors.js → hooks/features/rowReorder/useGridRowReorderPreProcessors.mjs} +1 -1
- package/{esm/hooks/features/rowReorder/utils.d.ts → hooks/features/rowReorder/utils.d.mts} +4 -4
- package/{esm/hooks/features/rowReorder/utils.js → hooks/features/rowReorder/utils.mjs} +1 -1
- package/hooks/features/rows/index.d.mts +1 -0
- package/hooks/features/rows/index.mjs +1 -0
- package/{esm/hooks/features/rows/useGridRowAriaAttributes.js → hooks/features/rows/useGridRowAriaAttributes.mjs} +2 -2
- package/{esm/hooks/features/rows/useGridRowsOverridableMethods.d.ts → hooks/features/rows/useGridRowsOverridableMethods.d.mts} +2 -2
- package/hooks/features/rows/useGridRowsOverridableMethods.js +7 -5
- package/{esm/hooks/features/rows/useGridRowsOverridableMethods.js → hooks/features/rows/useGridRowsOverridableMethods.mjs} +7 -6
- package/{esm/hooks/features/serverSideLazyLoader/useGridDataSourceLazyLoader.d.ts → hooks/features/serverSideLazyLoader/useGridDataSourceLazyLoader.d.mts} +3 -3
- package/hooks/features/serverSideLazyLoader/useGridDataSourceLazyLoader.d.ts +1 -1
- package/hooks/features/serverSideLazyLoader/useGridDataSourceLazyLoader.js +176 -65
- package/{esm/hooks/features/serverSideLazyLoader/useGridDataSourceLazyLoader.js → hooks/features/serverSideLazyLoader/useGridDataSourceLazyLoader.mjs} +178 -67
- package/{esm/hooks/features/serverSideLazyLoader/useGridInfiniteLoadingIntersection.d.ts → hooks/features/serverSideLazyLoader/useGridInfiniteLoadingIntersection.d.mts} +2 -2
- package/{esm/hooks/features/serverSideTreeData/useGridDataSourceTreeDataPreProcessors.d.ts → hooks/features/serverSideTreeData/useGridDataSourceTreeDataPreProcessors.d.mts} +2 -2
- package/hooks/features/serverSideTreeData/useGridDataSourceTreeDataPreProcessors.js +4 -3
- package/{esm/hooks/features/serverSideTreeData/useGridDataSourceTreeDataPreProcessors.js → hooks/features/serverSideTreeData/useGridDataSourceTreeDataPreProcessors.mjs} +11 -10
- package/{esm/hooks/features/treeData/gridTreeDataUtils.d.ts → hooks/features/treeData/gridTreeDataUtils.d.mts} +1 -1
- package/{esm/hooks/features/treeData/index.d.ts → hooks/features/treeData/index.d.mts} +1 -1
- package/{esm/hooks/features/treeData/index.js → hooks/features/treeData/index.mjs} +1 -1
- package/{esm/hooks/features/treeData/treeDataReorderExecutor.d.ts → hooks/features/treeData/treeDataReorderExecutor.d.mts} +2 -2
- package/{esm/hooks/features/treeData/treeDataReorderExecutor.js → hooks/features/treeData/treeDataReorderExecutor.mjs} +3 -3
- package/{esm/hooks/features/treeData/treeDataReorderValidator.d.ts → hooks/features/treeData/treeDataReorderValidator.d.mts} +1 -1
- package/{esm/hooks/features/treeData/treeDataReorderValidator.js → hooks/features/treeData/treeDataReorderValidator.mjs} +2 -2
- package/{esm/hooks/features/treeData/useGridTreeData.d.ts → hooks/features/treeData/useGridTreeData.d.mts} +2 -2
- package/{esm/hooks/features/treeData/useGridTreeData.js → hooks/features/treeData/useGridTreeData.mjs} +2 -2
- package/{esm/hooks/features/treeData/useGridTreeDataPreProcessors.d.ts → hooks/features/treeData/useGridTreeDataPreProcessors.d.mts} +2 -2
- package/hooks/features/treeData/useGridTreeDataPreProcessors.js +3 -2
- package/{esm/hooks/features/treeData/useGridTreeDataPreProcessors.js → hooks/features/treeData/useGridTreeDataPreProcessors.mjs} +10 -9
- package/{esm/hooks/features/treeData/utils.d.ts → hooks/features/treeData/utils.d.mts} +1 -1
- package/{esm/hooks/features/treeData/utils.js → hooks/features/treeData/utils.mjs} +1 -1
- package/hooks/index.d.mts +1 -0
- package/hooks/index.mjs +1 -0
- package/{esm/hooks/utils/useGridApiContext.d.ts → hooks/utils/useGridApiContext.d.mts} +1 -1
- package/{esm/hooks/utils/useGridApiRef.d.ts → hooks/utils/useGridApiRef.d.mts} +1 -1
- package/{esm/hooks/utils/useGridAriaAttributes.js → hooks/utils/useGridAriaAttributes.mjs} +1 -1
- package/{esm/hooks/utils/useGridPrivateApiContext.d.ts → hooks/utils/useGridPrivateApiContext.d.mts} +1 -1
- package/{esm/hooks/utils/useGridRootProps.d.ts → hooks/utils/useGridRootProps.d.mts} +1 -1
- package/{esm/index.d.ts → index.d.mts} +14 -14
- package/index.js +1 -1
- package/{esm/index.js → index.mjs} +10 -10
- package/{esm/internals/index.d.ts → internals/index.d.mts} +44 -44
- package/{esm/internals/index.js → internals/index.mjs} +38 -38
- package/{esm/internals/propValidation.d.ts → internals/propValidation.d.mts} +1 -1
- package/{esm/material/index.js → material/index.mjs} +1 -1
- package/{esm/models/dataGridProProps.d.ts → models/dataGridProProps.d.mts} +9 -9
- package/{esm/models/gridApiPro.d.ts → models/gridApiPro.d.mts} +5 -5
- package/{esm/models/gridProSlotProps.d.ts → models/gridProSlotProps.d.mts} +1 -1
- package/{esm/models/gridProSlotsComponent.d.ts → models/gridProSlotsComponent.d.mts} +1 -1
- package/{esm/models/gridStatePro.d.ts → models/gridStatePro.d.mts} +2 -2
- package/models/index.d.mts +7 -0
- package/models/index.mjs +7 -0
- package/package.json +148 -15
- package/themeAugmentation/index.d.mts +2 -0
- package/themeAugmentation/index.mjs +4 -0
- package/{esm/themeAugmentation/props.d.ts → themeAugmentation/props.d.mts} +1 -1
- package/typeOverloads/index.d.mts +1 -0
- package/typeOverloads/index.mjs +1 -0
- package/{esm/typeOverloads/modules.d.ts → typeOverloads/modules.d.mts} +5 -5
- package/{esm/typeOverloads/reexports.d.ts → typeOverloads/reexports.d.mts} +5 -5
- package/{esm/typeOverloads/reexports.js → typeOverloads/reexports.mjs} +3 -3
- package/utils/index.d.mts +1 -0
- package/utils/index.mjs +1 -0
- package/{esm/utils/tree/createRowTree.d.ts → utils/tree/createRowTree.d.mts} +2 -2
- package/{esm/utils/tree/createRowTree.js → utils/tree/createRowTree.mjs} +1 -1
- package/utils/tree/index.d.mts +1 -0
- package/utils/tree/index.mjs +1 -0
- package/{esm/utils/tree/insertDataRowInTree.d.ts → utils/tree/insertDataRowInTree.d.mts} +2 -2
- package/{esm/utils/tree/insertDataRowInTree.js → utils/tree/insertDataRowInTree.mjs} +1 -1
- package/{esm/utils/tree/removeDataRowFromTree.js → utils/tree/removeDataRowFromTree.mjs} +3 -3
- package/{esm/utils/tree/updateRowTree.d.ts → utils/tree/updateRowTree.d.mts} +1 -1
- package/{esm/utils/tree/updateRowTree.js → utils/tree/updateRowTree.mjs} +3 -3
- package/{esm/utils/tree/utils.d.ts → utils/tree/utils.d.mts} +3 -3
- package/esm/DataGridPro/DataGrid.js +0 -19
- package/esm/DataGridPro/index.d.ts +0 -3
- package/esm/DataGridPro/index.js +0 -3
- package/esm/components/headerFiltering/index.d.ts +0 -3
- package/esm/components/headerFiltering/index.js +0 -3
- package/esm/components/index.d.ts +0 -6
- package/esm/components/index.js +0 -7
- package/esm/constants/dataGridProDefaultSlotsComponents.d.ts +0 -2
- package/esm/hooks/features/columnPinning/index.d.ts +0 -1
- package/esm/hooks/features/columnPinning/index.js +0 -1
- package/esm/hooks/features/columnReorder/index.js +0 -2
- package/esm/hooks/features/dataSource/index.d.ts +0 -1
- package/esm/hooks/features/index.d.ts +0 -7
- package/esm/hooks/features/index.js +0 -8
- package/esm/hooks/features/rowPinning/index.d.ts +0 -1
- package/esm/hooks/features/rowPinning/index.js +0 -1
- package/esm/hooks/features/rowReorder/index.d.ts +0 -2
- package/esm/hooks/features/rowReorder/index.js +0 -2
- package/esm/hooks/features/rows/index.d.ts +0 -1
- package/esm/hooks/features/rows/index.js +0 -1
- package/esm/hooks/index.d.ts +0 -1
- package/esm/hooks/index.js +0 -1
- package/esm/models/index.d.ts +0 -7
- package/esm/models/index.js +0 -7
- package/esm/package.json +0 -1
- package/esm/themeAugmentation/index.d.ts +0 -2
- package/esm/themeAugmentation/index.js +0 -4
- package/esm/typeOverloads/index.d.ts +0 -1
- package/esm/typeOverloads/index.js +0 -1
- package/esm/utils/index.d.ts +0 -1
- package/esm/utils/index.js +0 -1
- package/esm/utils/tree/index.d.ts +0 -1
- package/esm/utils/tree/index.js +0 -1
- /package/{esm/DataGridPro/DataGrid.d.ts → DataGridPro/DataGrid.d.mts} +0 -0
- /package/{esm/components/GridColumnHeaders.d.ts → components/GridColumnHeaders.d.mts} +0 -0
- /package/{esm/components/GridColumnMenuPinningItem.d.ts → components/GridColumnMenuPinningItem.d.mts} +0 -0
- /package/{esm/components/GridDataSourceTreeDataGroupingCell.d.ts → components/GridDataSourceTreeDataGroupingCell.d.mts} +0 -0
- /package/{esm/components/GridDetailPanel.d.ts → components/GridDetailPanel.d.mts} +0 -0
- /package/{esm/components/GridDetailPanelToggleCell.d.ts → components/GridDetailPanelToggleCell.d.mts} +0 -0
- /package/{esm/components/GridDetailPanels.d.ts → components/GridDetailPanels.d.mts} +0 -0
- /package/{esm/components/GridPinnedRows.d.ts → components/GridPinnedRows.d.mts} +0 -0
- /package/{esm/components/GridPinnedRows.js → components/GridPinnedRows.mjs} +0 -0
- /package/{esm/components/GridRowReorderCell.d.ts → components/GridRowReorderCell.d.mts} +0 -0
- /package/{esm/components/GridTreeDataGroupingCell.d.ts → components/GridTreeDataGroupingCell.d.mts} +0 -0
- /package/{esm/components/headerFiltering/GridHeaderFilterCell.d.ts → components/headerFiltering/GridHeaderFilterCell.d.mts} +0 -0
- /package/{esm/components/headerFiltering/GridHeaderFilterClearButton.d.ts → components/headerFiltering/GridHeaderFilterClearButton.d.mts} +0 -0
- /package/{esm/components/headerFiltering/GridHeaderFilterMenu.d.ts → components/headerFiltering/GridHeaderFilterMenu.d.mts} +0 -0
- /package/{esm/components/headerFiltering/GridHeaderFilterMenuContainer.d.ts → components/headerFiltering/GridHeaderFilterMenuContainer.d.mts} +0 -0
- /package/{esm/hooks/features/columnHeaders/useGridColumnHeaders.d.ts → hooks/features/columnHeaders/useGridColumnHeaders.d.mts} +0 -0
- /package/{esm/hooks/features/columnPinning/gridColumnPinningInterface.d.ts → hooks/features/columnPinning/gridColumnPinningInterface.d.mts} +0 -0
- /package/{esm/hooks/features/columnPinning/gridColumnPinningInterface.js → hooks/features/columnPinning/gridColumnPinningInterface.mjs} +0 -0
- /package/{esm/hooks/features/columnPinning/useGridColumnPinning.js → hooks/features/columnPinning/useGridColumnPinning.mjs} +0 -0
- /package/{esm/hooks/features/columnPinning/useGridColumnPinningPreProcessors.js → hooks/features/columnPinning/useGridColumnPinningPreProcessors.mjs} +0 -0
- /package/{esm/hooks/features/columnReorder/columnReorderInterfaces.d.ts → hooks/features/columnReorder/columnReorderInterfaces.d.mts} +0 -0
- /package/{esm/hooks/features/columnReorder/columnReorderInterfaces.js → hooks/features/columnReorder/columnReorderInterfaces.mjs} +0 -0
- /package/{esm/hooks/features/columnReorder/columnReorderSelector.js → hooks/features/columnReorder/columnReorderSelector.mjs} +0 -0
- /package/{esm/hooks/features/dataSource/gridDataSourceSelector.js → hooks/features/dataSource/gridDataSourceSelector.mjs} +0 -0
- /package/{esm/hooks/features/dataSource/index.js → hooks/features/dataSource/index.mjs} +0 -0
- /package/{esm/hooks/features/dataSource/models.d.ts → hooks/features/dataSource/models.d.mts} +0 -0
- /package/{esm/hooks/features/dataSource/models.js → hooks/features/dataSource/models.mjs} +0 -0
- /package/{esm/hooks/features/detailPanel/gridDetailPanelInterface.d.ts → hooks/features/detailPanel/gridDetailPanelInterface.d.mts} +0 -0
- /package/{esm/hooks/features/detailPanel/gridDetailPanelInterface.js → hooks/features/detailPanel/gridDetailPanelInterface.mjs} +0 -0
- /package/{esm/hooks/features/detailPanel/gridDetailPanelSelector.js → hooks/features/detailPanel/gridDetailPanelSelector.mjs} +0 -0
- /package/{esm/hooks/features/detailPanel/gridDetailPanelToggleColDef.d.ts → hooks/features/detailPanel/gridDetailPanelToggleColDef.d.mts} +0 -0
- /package/{esm/hooks/features/infiniteLoader/useGridInfiniteLoader.js → hooks/features/infiniteLoader/useGridInfiniteLoader.mjs} +0 -0
- /package/{esm/hooks/features/lazyLoader/useGridLazyLoaderPreProcessors.js → hooks/features/lazyLoader/useGridLazyLoaderPreProcessors.mjs} +0 -0
- /package/{esm/hooks/features/lazyLoader/utils.js → hooks/features/lazyLoader/utils.mjs} +0 -0
- /package/{esm/hooks/features/rowPinning/gridRowPinningInterface.d.ts → hooks/features/rowPinning/gridRowPinningInterface.d.mts} +0 -0
- /package/{esm/hooks/features/rowPinning/gridRowPinningInterface.js → hooks/features/rowPinning/gridRowPinningInterface.mjs} +0 -0
- /package/{esm/hooks/features/rowPinning/gridRowPinningSelector.d.ts → hooks/features/rowPinning/gridRowPinningSelector.d.mts} +0 -0
- /package/{esm/hooks/features/rowPinning/gridRowPinningSelector.js → hooks/features/rowPinning/gridRowPinningSelector.mjs} +0 -0
- /package/{esm/hooks/features/rowPinning/useGridRowPinning.js → hooks/features/rowPinning/useGridRowPinning.mjs} +0 -0
- /package/{esm/hooks/features/rowReorder/commonReorderConditions.js → hooks/features/rowReorder/commonReorderConditions.mjs} +0 -0
- /package/{esm/hooks/features/rowReorder/gridRowReorderColDef.d.ts → hooks/features/rowReorder/gridRowReorderColDef.d.mts} +0 -0
- /package/{esm/hooks/features/rowReorder/models.js → hooks/features/rowReorder/models.mjs} +0 -0
- /package/{esm/hooks/features/rowReorder/reorderExecutor.js → hooks/features/rowReorder/reorderExecutor.mjs} +0 -0
- /package/{esm/hooks/features/rowReorder/reorderValidator.js → hooks/features/rowReorder/reorderValidator.mjs} +0 -0
- /package/{esm/hooks/features/rowReorder/types.js → hooks/features/rowReorder/types.mjs} +0 -0
- /package/{esm/hooks/features/rows/useGridRowAriaAttributes.d.ts → hooks/features/rows/useGridRowAriaAttributes.d.mts} +0 -0
- /package/{esm/hooks/features/serverSideLazyLoader/useGridInfiniteLoadingIntersection.js → hooks/features/serverSideLazyLoader/useGridInfiniteLoadingIntersection.mjs} +0 -0
- /package/{esm/hooks/features/serverSideTreeData/utils.d.ts → hooks/features/serverSideTreeData/utils.d.mts} +0 -0
- /package/{esm/hooks/features/serverSideTreeData/utils.js → hooks/features/serverSideTreeData/utils.mjs} +0 -0
- /package/{esm/hooks/features/treeData/gridTreeDataGroupColDef.d.ts → hooks/features/treeData/gridTreeDataGroupColDef.d.mts} +0 -0
- /package/{esm/hooks/features/treeData/gridTreeDataGroupColDef.js → hooks/features/treeData/gridTreeDataGroupColDef.mjs} +0 -0
- /package/{esm/hooks/features/treeData/gridTreeDataUtils.js → hooks/features/treeData/gridTreeDataUtils.mjs} +0 -0
- /package/{esm/hooks/utils/useGridApiContext.js → hooks/utils/useGridApiContext.mjs} +0 -0
- /package/{esm/hooks/utils/useGridApiRef.js → hooks/utils/useGridApiRef.mjs} +0 -0
- /package/{esm/hooks/utils/useGridAriaAttributes.d.ts → hooks/utils/useGridAriaAttributes.d.mts} +0 -0
- /package/{esm/hooks/utils/useGridPrivateApiContext.js → hooks/utils/useGridPrivateApiContext.mjs} +0 -0
- /package/{esm/hooks/utils/useGridRootProps.js → hooks/utils/useGridRootProps.mjs} +0 -0
- /package/{esm/internals/propValidation.js → internals/propValidation.mjs} +0 -0
- /package/{esm/locales/index.d.ts → locales/index.d.mts} +0 -0
- /package/{esm/locales/index.js → locales/index.mjs} +0 -0
- /package/{esm/material/icons.d.ts → material/icons.d.mts} +0 -0
- /package/{esm/material/icons.js → material/icons.mjs} +0 -0
- /package/{esm/material/index.d.ts → material/index.d.mts} +0 -0
- /package/{esm/models/dataGridProProps.js → models/dataGridProProps.mjs} +0 -0
- /package/{esm/models/gridApiPro.js → models/gridApiPro.mjs} +0 -0
- /package/{esm/models/gridFetchRowsParams.d.ts → models/gridFetchRowsParams.d.mts} +0 -0
- /package/{esm/models/gridFetchRowsParams.js → models/gridFetchRowsParams.mjs} +0 -0
- /package/{esm/models/gridGroupingColDefOverride.d.ts → models/gridGroupingColDefOverride.d.mts} +0 -0
- /package/{esm/models/gridGroupingColDefOverride.js → models/gridGroupingColDefOverride.mjs} +0 -0
- /package/{esm/models/gridProIconSlotsComponent.d.ts → models/gridProIconSlotsComponent.d.mts} +0 -0
- /package/{esm/models/gridProIconSlotsComponent.js → models/gridProIconSlotsComponent.mjs} +0 -0
- /package/{esm/models/gridProSlotProps.js → models/gridProSlotProps.mjs} +0 -0
- /package/{esm/models/gridProSlotsComponent.js → models/gridProSlotsComponent.mjs} +0 -0
- /package/{esm/models/gridRowOrderChangeParams.d.ts → models/gridRowOrderChangeParams.d.mts} +0 -0
- /package/{esm/models/gridRowOrderChangeParams.js → models/gridRowOrderChangeParams.mjs} +0 -0
- /package/{esm/models/gridRowReorderApi.d.ts → models/gridRowReorderApi.d.mts} +0 -0
- /package/{esm/models/gridRowReorderApi.js → models/gridRowReorderApi.mjs} +0 -0
- /package/{esm/models/gridRowScrollEndParams.d.ts → models/gridRowScrollEndParams.d.mts} +0 -0
- /package/{esm/models/gridRowScrollEndParams.js → models/gridRowScrollEndParams.mjs} +0 -0
- /package/{esm/models/gridStatePro.js → models/gridStatePro.mjs} +0 -0
- /package/{esm/themeAugmentation/overrides.d.ts → themeAugmentation/overrides.d.mts} +0 -0
- /package/{esm/themeAugmentation/overrides.js → themeAugmentation/overrides.mjs} +0 -0
- /package/{esm/themeAugmentation/props.js → themeAugmentation/props.mjs} +0 -0
- /package/{esm/typeOverloads/modules.js → typeOverloads/modules.mjs} +0 -0
- /package/{esm/utils/tree/models.d.ts → utils/tree/models.d.mts} +0 -0
- /package/{esm/utils/tree/models.js → utils/tree/models.mjs} +0 -0
- /package/{esm/utils/tree/removeDataRowFromTree.d.ts → utils/tree/removeDataRowFromTree.d.mts} +0 -0
- /package/{esm/utils/tree/sortRowTree.d.ts → utils/tree/sortRowTree.d.mts} +0 -0
- /package/{esm/utils/tree/sortRowTree.js → utils/tree/sortRowTree.mjs} +0 -0
- /package/{esm/utils/tree/utils.js → utils/tree/utils.mjs} +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ComponentsOverrides, ComponentsProps } from '@mui/material/styles';
|
|
2
|
-
import type { DataGridProProps } from "../models/dataGridProProps.
|
|
2
|
+
import type { DataGridProProps } from "../models/dataGridProProps.mjs";
|
|
3
3
|
export interface DataGridProComponentsPropsList {
|
|
4
4
|
MuiDataGrid: DataGridProProps;
|
|
5
5
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./modules.mjs";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./modules.mjs";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import type { GridRowId, GridPinnedColumnFields } from '@mui/x-data-grid';
|
|
2
|
-
import type { GridRowScrollEndParams, GridRowOrderChangeParams, GridFetchRowsParams } from "../models/index.
|
|
3
|
-
import type { GridRenderHeaderFilterProps } from "../components/headerFiltering/GridHeaderFilterCell.
|
|
4
|
-
import type { GridColumnPinningInternalCache } from "../hooks/features/columnPinning/gridColumnPinningInterface.
|
|
5
|
-
import type { GridCanBeReorderedPreProcessingContext } from "../hooks/features/columnReorder/columnReorderInterfaces.
|
|
6
|
-
import type { GridRowPinningInternalCache } from "../hooks/features/rowPinning/gridRowPinningInterface.
|
|
2
|
+
import type { GridRowScrollEndParams, GridRowOrderChangeParams, GridFetchRowsParams } from "../models/index.mjs";
|
|
3
|
+
import type { GridRenderHeaderFilterProps } from "../components/headerFiltering/GridHeaderFilterCell.mjs";
|
|
4
|
+
import type { GridColumnPinningInternalCache } from "../hooks/features/columnPinning/gridColumnPinningInterface.mjs";
|
|
5
|
+
import type { GridCanBeReorderedPreProcessingContext } from "../hooks/features/columnReorder/columnReorderInterfaces.mjs";
|
|
6
|
+
import type { GridRowPinningInternalCache } from "../hooks/features/rowPinning/gridRowPinningInterface.mjs";
|
|
7
7
|
export interface GridColDefPro {
|
|
8
8
|
/**
|
|
9
9
|
* Allows to render a component in the column header filter cell.
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import type { GridApiPro } from "../models/gridApiPro.
|
|
2
|
-
import type { GridInitialStatePro, GridStatePro } from "../models/gridStatePro.
|
|
3
|
-
export { useGridApiContext } from "../hooks/utils/useGridApiContext.
|
|
4
|
-
export { useGridApiRef } from "../hooks/utils/useGridApiRef.
|
|
5
|
-
export { useGridRootProps } from "../hooks/utils/useGridRootProps.
|
|
1
|
+
import type { GridApiPro } from "../models/gridApiPro.mjs";
|
|
2
|
+
import type { GridInitialStatePro, GridStatePro } from "../models/gridStatePro.mjs";
|
|
3
|
+
export { useGridApiContext } from "../hooks/utils/useGridApiContext.mjs";
|
|
4
|
+
export { useGridApiRef } from "../hooks/utils/useGridApiRef.mjs";
|
|
5
|
+
export { useGridRootProps } from "../hooks/utils/useGridRootProps.mjs";
|
|
6
6
|
/**
|
|
7
7
|
* The full grid API.
|
|
8
8
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { useGridApiContext } from "../hooks/utils/useGridApiContext.
|
|
2
|
-
export { useGridApiRef } from "../hooks/utils/useGridApiRef.
|
|
3
|
-
export { useGridRootProps } from "../hooks/utils/useGridRootProps.
|
|
1
|
+
export { useGridApiContext } from "../hooks/utils/useGridApiContext.mjs";
|
|
2
|
+
export { useGridApiRef } from "../hooks/utils/useGridApiRef.mjs";
|
|
3
|
+
export { useGridRootProps } from "../hooks/utils/useGridRootProps.mjs";
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* The full grid API.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./tree/index.mjs";
|
package/utils/index.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./tree/index.mjs";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type GridRowTreeConfig } from '@mui/x-data-grid';
|
|
2
2
|
import { type GridRowTreeCreationValue } from '@mui/x-data-grid/internals';
|
|
3
|
-
import type { RowTreeBuilderNode, GridTreePathDuplicateHandler } from "./models.
|
|
4
|
-
import type { DataGridProProps } from "../../models/dataGridProProps.
|
|
3
|
+
import type { RowTreeBuilderNode, GridTreePathDuplicateHandler } from "./models.mjs";
|
|
4
|
+
import type { DataGridProProps } from "../../models/dataGridProProps.mjs";
|
|
5
5
|
interface CreateRowTreeParams {
|
|
6
6
|
previousTree: GridRowTreeConfig | null;
|
|
7
7
|
nodes: RowTreeBuilderNode[];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { GRID_ROOT_GROUP_ID } from '@mui/x-data-grid';
|
|
2
2
|
import { buildRootGroup } from '@mui/x-data-grid/internals';
|
|
3
|
-
import { insertDataRowInTree } from "./insertDataRowInTree.
|
|
3
|
+
import { insertDataRowInTree } from "./insertDataRowInTree.mjs";
|
|
4
4
|
/**
|
|
5
5
|
* Transform a list of rows into a tree structure where each row references its parent and children.
|
|
6
6
|
*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { getGroupRowIdFromPath } from "./utils.mjs";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { getGroupRowIdFromPath } from "./utils.mjs";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type GridRowId, type GridRowTreeConfig } from '@mui/x-data-grid';
|
|
2
2
|
import type { GridTreeDepths } from '@mui/x-data-grid/internals';
|
|
3
|
-
import type { GridTreePathDuplicateHandler, RowTreeBuilderGroupingCriterion } from "./models.
|
|
4
|
-
import type { DataGridProProps } from "../../models/dataGridProProps.
|
|
3
|
+
import type { GridTreePathDuplicateHandler, RowTreeBuilderGroupingCriterion } from "./models.mjs";
|
|
4
|
+
import type { DataGridProProps } from "../../models/dataGridProProps.mjs";
|
|
5
5
|
interface InsertDataRowInTreeParams {
|
|
6
6
|
/**
|
|
7
7
|
* ID of the data row to insert in the tree.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { GRID_ROOT_GROUP_ID } from '@mui/x-data-grid';
|
|
2
|
-
import { updateGroupDefaultExpansion, checkGroupChildrenExpansion, getGroupRowIdFromPath, insertNodeInTree, updateGroupNodeIdAndAutoGenerated } from "./utils.
|
|
2
|
+
import { updateGroupDefaultExpansion, checkGroupChildrenExpansion, getGroupRowIdFromPath, insertNodeInTree, updateGroupNodeIdAndAutoGenerated } from "./utils.mjs";
|
|
3
3
|
/**
|
|
4
4
|
* Inserts a data row in a tree.
|
|
5
5
|
* For each steps of its path:
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { GRID_ROOT_GROUP_ID } from '@mui/x-data-grid';
|
|
2
|
-
import { getNodePathInTree, getGroupRowIdFromPath, removeNodeFromTree, updateGroupNodeIdAndAutoGenerated } from "./utils.
|
|
3
|
-
import { TreeDataStrategy } from "../../hooks/features/treeData/gridTreeDataUtils.
|
|
4
|
-
import { RowGroupingStrategy } from "../../internals/index.
|
|
2
|
+
import { getNodePathInTree, getGroupRowIdFromPath, removeNodeFromTree, updateGroupNodeIdAndAutoGenerated } from "./utils.mjs";
|
|
3
|
+
import { TreeDataStrategy } from "../../hooks/features/treeData/gridTreeDataUtils.mjs";
|
|
4
|
+
import { RowGroupingStrategy } from "../../internals/index.mjs";
|
|
5
5
|
const removeNode = ({
|
|
6
6
|
node,
|
|
7
7
|
tree,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type GridGroupNode, type GridRowId, type GridRowTreeConfig } from '@mui/x-data-grid';
|
|
2
2
|
import { type GridRowTreeCreationValue, type GridTreeDepths } from '@mui/x-data-grid/internals';
|
|
3
|
-
import type { GridTreePathDuplicateHandler, RowTreeBuilderNode } from "./models.
|
|
3
|
+
import type { GridTreePathDuplicateHandler, RowTreeBuilderNode } from "./models.mjs";
|
|
4
4
|
export interface UpdateRowTreeNodes {
|
|
5
5
|
inserted: RowTreeBuilderNode[];
|
|
6
6
|
modified: RowTreeBuilderNode[];
|
|
@@ -2,9 +2,9 @@ import _extends from "@babel/runtime/helpers/esm/extends";
|
|
|
2
2
|
import { GRID_ROOT_GROUP_ID } from '@mui/x-data-grid';
|
|
3
3
|
import { getTreeNodeDescendants } from '@mui/x-data-grid/internals';
|
|
4
4
|
import { isDeepEqual } from '@mui/x-internals/isDeepEqual';
|
|
5
|
-
import { insertDataRowInTree } from "./insertDataRowInTree.
|
|
6
|
-
import { removeDataRowFromTree } from "./removeDataRowFromTree.
|
|
7
|
-
import { getNodePathInTree } from "./utils.
|
|
5
|
+
import { insertDataRowInTree } from "./insertDataRowInTree.mjs";
|
|
6
|
+
import { removeDataRowFromTree } from "./removeDataRowFromTree.mjs";
|
|
7
|
+
import { getNodePathInTree } from "./utils.mjs";
|
|
8
8
|
export const updateRowTree = params => {
|
|
9
9
|
const tree = _extends({}, params.previousTree);
|
|
10
10
|
const treeDepths = _extends({}, params.previousTreeDepth);
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { type GridFilterState, type GridGroupNode, type GridRowId, type GridRowTreeConfig, type GridRowsState, type GridTreeNode } from '@mui/x-data-grid';
|
|
2
2
|
import type { GridTreeDepths } from '@mui/x-data-grid/internals';
|
|
3
|
-
import type { RowTreeBuilderGroupingCriterion } from "./models.
|
|
4
|
-
import type { DataGridProProps } from "../../models/dataGridProProps.
|
|
5
|
-
import type { GridStatePro } from "../../models/gridStatePro.
|
|
3
|
+
import type { RowTreeBuilderGroupingCriterion } from "./models.mjs";
|
|
4
|
+
import type { DataGridProProps } from "../../models/dataGridProProps.mjs";
|
|
5
|
+
import type { GridStatePro } from "../../models/gridStatePro.mjs";
|
|
6
6
|
export declare const getGroupRowIdFromPath: (path: RowTreeBuilderGroupingCriterion[]) => string;
|
|
7
7
|
export declare const getNodePathInTree: ({
|
|
8
8
|
id,
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @deprecated Import DataGridPro instead.
|
|
3
|
-
*/
|
|
4
|
-
export function DataGrid() {
|
|
5
|
-
if (process.env.NODE_ENV === 'production') {
|
|
6
|
-
return null;
|
|
7
|
-
}
|
|
8
|
-
throw new Error(["You try to import Data Grid from @mui/x-data-grid-pro but this module isn't exported from this npm package.", '', "Instead, you can do `import { DataGridPro } from '@mui/x-data-grid-pro'`.", ''].join('\n'));
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
* @deprecated Import DataGridPro instead.
|
|
13
|
-
*/
|
|
14
|
-
export function DataGridPremium() {
|
|
15
|
-
if (process.env.NODE_ENV === 'production') {
|
|
16
|
-
return null;
|
|
17
|
-
}
|
|
18
|
-
throw new Error(["You try to import Data Grid Premium from @mui/x-data-grid-pro but this module isn't exported from this npm package.", '', 'Instead, if you have a Premium plan license or want to try Premium, you can do this:', `import { DataGridPremium } from '@mui/x-data-grid-premium'`, '', "Otherwise, you can stay on the Pro plan: `import { DataGridPro } from '@mui/x-data-grid-pro'`.", ''].join('\n'));
|
|
19
|
-
}
|
package/esm/DataGridPro/index.js
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
export * from "./GridTreeDataGroupingCell.js";
|
|
2
|
-
export * from "./GridColumnMenuPinningItem.js";
|
|
3
|
-
export * from "./GridDetailPanelToggleCell.js";
|
|
4
|
-
export * from "./GridRowReorderCell.js";
|
|
5
|
-
export * from "../material/icons.js";
|
|
6
|
-
export * from "./headerFiltering/index.js";
|
package/esm/components/index.js
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
// Only export the variable and types that should be publicly exposed and re-exported from `@mui/x-data-grid-pro`
|
|
2
|
-
export * from "./GridTreeDataGroupingCell.js";
|
|
3
|
-
export * from "./GridColumnMenuPinningItem.js";
|
|
4
|
-
export * from "./GridDetailPanelToggleCell.js";
|
|
5
|
-
export * from "./GridRowReorderCell.js";
|
|
6
|
-
export * from "../material/icons.js";
|
|
7
|
-
export * from "./headerFiltering/index.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./gridColumnPinningInterface.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./gridColumnPinningInterface.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { type GridDataSourceState } from "./models.js";
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export * from "./columnPinning/index.js";
|
|
2
|
-
export * from "./columnReorder/index.js";
|
|
3
|
-
export * from "./rowReorder/index.js";
|
|
4
|
-
export * from "./treeData/index.js";
|
|
5
|
-
export * from "./detailPanel/index.js";
|
|
6
|
-
export * from "./rowPinning/index.js";
|
|
7
|
-
export * from "./dataSource/index.js";
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
// Only export the variable and types that should be publicly exposed and re-exported from `@mui/x-data-grid-pro`
|
|
2
|
-
export * from "./columnPinning/index.js";
|
|
3
|
-
export * from "./columnReorder/index.js";
|
|
4
|
-
export * from "./rowReorder/index.js";
|
|
5
|
-
export * from "./treeData/index.js";
|
|
6
|
-
export * from "./detailPanel/index.js";
|
|
7
|
-
export * from "./rowPinning/index.js";
|
|
8
|
-
export * from "./dataSource/index.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./gridRowPinningInterface.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./gridRowPinningInterface.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./useGridRowAriaAttributes.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./useGridRowAriaAttributes.js";
|
package/esm/hooks/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./features/index.js";
|
package/esm/hooks/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./features/index.js";
|
package/esm/models/index.d.ts
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export * from "./gridApiPro.js";
|
|
2
|
-
export * from "./gridGroupingColDefOverride.js";
|
|
3
|
-
export * from "./gridRowScrollEndParams.js";
|
|
4
|
-
export * from "./gridRowOrderChangeParams.js";
|
|
5
|
-
export * from "./gridFetchRowsParams.js";
|
|
6
|
-
export * from "./gridProSlotsComponent.js";
|
|
7
|
-
export * from "./gridProIconSlotsComponent.js";
|
package/esm/models/index.js
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export * from "./gridApiPro.js";
|
|
2
|
-
export * from "./gridGroupingColDefOverride.js";
|
|
3
|
-
export * from "./gridRowScrollEndParams.js";
|
|
4
|
-
export * from "./gridRowOrderChangeParams.js";
|
|
5
|
-
export * from "./gridFetchRowsParams.js";
|
|
6
|
-
export * from "./gridProSlotsComponent.js";
|
|
7
|
-
export * from "./gridProIconSlotsComponent.js";
|
package/esm/package.json
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"type":"module","sideEffects":["**/*.css"]}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./modules.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./modules.js";
|
package/esm/utils/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./tree/index.js";
|
package/esm/utils/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./tree/index.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { getGroupRowIdFromPath } from "./utils.js";
|
package/esm/utils/tree/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { getGroupRowIdFromPath } from "./utils.js";
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{esm/components/GridTreeDataGroupingCell.d.ts → components/GridTreeDataGroupingCell.d.mts}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{esm/hooks/features/dataSource/models.d.ts → hooks/features/dataSource/models.d.mts}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{esm/hooks/utils/useGridAriaAttributes.d.ts → hooks/utils/useGridAriaAttributes.d.mts}
RENAMED
|
File without changes
|
/package/{esm/hooks/utils/useGridPrivateApiContext.js → hooks/utils/useGridPrivateApiContext.mjs}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{esm/models/gridGroupingColDefOverride.d.ts → models/gridGroupingColDefOverride.d.mts}
RENAMED
|
File without changes
|
|
File without changes
|
/package/{esm/models/gridProIconSlotsComponent.d.ts → models/gridProIconSlotsComponent.d.mts}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{esm/utils/tree/removeDataRowFromTree.d.ts → utils/tree/removeDataRowFromTree.d.mts}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|