@mui/x-data-grid 7.14.0 → 7.16.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/CHANGELOG.md +167 -1
- package/DataGrid/DataGrid.js +17 -9
- package/DataGrid/index.js +2 -2
- package/DataGrid/useDataGridComponent.js +29 -29
- package/DataGrid/useDataGridProps.js +6 -4
- package/colDef/gridActionsColDef.js +2 -2
- package/colDef/gridBooleanColDef.js +5 -5
- package/colDef/gridBooleanOperators.js +1 -1
- package/colDef/gridCheckboxSelectionColDef.js +4 -4
- package/colDef/gridDateColDef.js +4 -4
- package/colDef/gridDateOperators.js +1 -1
- package/colDef/gridDefaultColumnTypes.js +6 -6
- package/colDef/gridNumericColDef.js +4 -4
- package/colDef/gridNumericOperators.js +2 -2
- package/colDef/gridSingleSelectColDef.js +5 -5
- package/colDef/gridSingleSelectOperators.js +3 -3
- package/colDef/gridStringColDef.js +3 -3
- package/colDef/gridStringOperators.js +4 -4
- package/colDef/index.js +13 -13
- package/components/GridColumnHeaders.js +2 -2
- package/components/GridFooter.js +8 -8
- package/components/GridHeader.js +2 -2
- package/components/GridHeaders.js +9 -9
- package/components/GridLoadingOverlay.js +4 -4
- package/components/GridNoResultsOverlay.js +2 -2
- package/components/GridNoRowsOverlay.js +2 -2
- package/components/GridPagination.js +4 -4
- package/components/GridRow.js +19 -19
- package/components/GridRowCount.js +3 -3
- package/components/GridScrollArea.js +10 -10
- package/components/GridScrollbarFillerCell.d.ts +2 -1
- package/components/GridScrollbarFillerCell.js +4 -2
- package/components/GridSelectedRowCount.js +3 -3
- package/components/GridSkeletonLoadingOverlay.js +11 -11
- package/components/base/GridBody.js +1 -1
- package/components/base/GridFooterPlaceholder.js +1 -1
- package/components/base/GridOverlays.js +7 -7
- package/components/base/index.js +3 -3
- package/components/cell/GridActionsCell.js +7 -7
- package/components/cell/GridActionsCellItem.js +1 -1
- package/components/cell/GridBooleanCell.js +4 -4
- package/components/cell/GridCell.js +11 -11
- package/components/cell/GridEditBooleanCell.js +3 -3
- package/components/cell/GridEditDateCell.js +3 -3
- package/components/cell/GridEditInputCell.js +3 -3
- package/components/cell/GridEditSingleSelectCell.js +5 -5
- package/components/cell/GridSkeletonCell.js +3 -3
- package/components/cell/index.js +9 -9
- package/components/columnHeaders/ColumnHeaderMenuIcon.js +4 -4
- package/components/columnHeaders/GridBaseColumnHeaders.js +2 -2
- package/components/columnHeaders/GridColumnGroupHeader.js +9 -9
- package/components/columnHeaders/GridColumnHeaderFilterIconButton.js +7 -7
- package/components/columnHeaders/GridColumnHeaderItem.js +9 -9
- package/components/columnHeaders/GridColumnHeaderSeparator.js +3 -4
- package/components/columnHeaders/GridColumnHeaderSortIcon.js +4 -4
- package/components/columnHeaders/GridColumnHeaderTitle.js +5 -4
- package/components/columnHeaders/GridGenericColumnHeaderItem.js +5 -7
- package/components/columnHeaders/GridIconButtonContainer.js +2 -2
- package/components/columnHeaders/index.js +5 -5
- package/components/columnSelection/GridCellCheckboxRenderer.js +3 -3
- package/components/columnSelection/GridHeaderCheckbox.js +11 -10
- package/components/columnSelection/index.js +2 -2
- package/components/columnsManagement/GridColumnsManagement.js +7 -7
- package/components/columnsManagement/index.js +1 -1
- package/components/containers/GridFooterContainer.js +2 -2
- package/components/containers/GridOverlay.js +2 -2
- package/components/containers/GridRoot.js +6 -6
- package/components/containers/GridRootStyles.js +102 -49
- package/components/containers/GridToolbarContainer.js +2 -2
- package/components/containers/index.js +4 -4
- package/components/index.js +19 -19
- package/components/menu/GridMenu.js +3 -3
- package/components/menu/columnMenu/GridColumnHeaderMenu.js +2 -2
- package/components/menu/columnMenu/GridColumnMenu.js +5 -5
- package/components/menu/columnMenu/GridColumnMenuContainer.js +2 -2
- package/components/menu/columnMenu/index.js +6 -6
- package/components/menu/columnMenu/menuItems/GridColumnMenuColumnsItem.js +2 -2
- package/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.js +2 -2
- package/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.js +3 -3
- package/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.js +3 -3
- package/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.js +4 -4
- package/components/menu/columnMenu/menuItems/index.js +5 -5
- package/components/menu/index.js +2 -2
- package/components/panel/GridColumnsPanel.js +3 -3
- package/components/panel/GridPanel.d.ts +1 -1
- package/components/panel/GridPanel.js +2 -2
- package/components/panel/GridPanelContent.js +2 -2
- package/components/panel/GridPanelFooter.js +2 -2
- package/components/panel/GridPanelHeader.js +2 -2
- package/components/panel/GridPanelWrapper.js +2 -2
- package/components/panel/GridPreferencesPanel.js +6 -6
- package/components/panel/filterPanel/GridFilterForm.js +8 -8
- package/components/panel/filterPanel/GridFilterInputBoolean.js +1 -1
- package/components/panel/filterPanel/GridFilterInputDate.js +2 -2
- package/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +2 -2
- package/components/panel/filterPanel/GridFilterInputMultipleValue.js +17 -9
- package/components/panel/filterPanel/GridFilterInputSingleSelect.js +2 -2
- package/components/panel/filterPanel/GridFilterInputValue.js +2 -2
- package/components/panel/filterPanel/GridFilterPanel.js +10 -10
- package/components/panel/filterPanel/index.js +9 -9
- package/components/panel/index.js +7 -7
- package/components/reexportable.js +1 -1
- package/components/toolbar/GridToolbar.js +7 -7
- package/components/toolbar/GridToolbarColumnsButton.js +5 -5
- package/components/toolbar/GridToolbarDensitySelector.js +7 -7
- package/components/toolbar/GridToolbarExport.js +2 -2
- package/components/toolbar/GridToolbarExportContainer.js +5 -5
- package/components/toolbar/GridToolbarFilterButton.js +8 -8
- package/components/toolbar/GridToolbarQuickFilter.js +6 -6
- package/components/toolbar/index.js +7 -7
- package/components/virtualization/GridBottomContainer.js +1 -1
- package/components/virtualization/GridMainContainer.js +2 -2
- package/components/virtualization/GridTopContainer.js +1 -1
- package/components/virtualization/GridVirtualScrollbar.js +5 -5
- package/components/virtualization/GridVirtualScroller.js +18 -18
- package/components/virtualization/GridVirtualScrollerContent.js +2 -2
- package/components/virtualization/GridVirtualScrollerFiller.js +4 -4
- package/components/virtualization/GridVirtualScrollerRenderZone.js +6 -6
- package/constants/defaultGridSlotsComponents.js +8 -8
- package/constants/gridClasses.d.ts +12 -2
- package/constants/gridClasses.js +1 -1
- package/constants/index.js +3 -3
- package/context/GridContextProvider.js +4 -4
- package/context/index.js +1 -1
- package/hooks/core/gridCoreSelector.d.ts +1 -1
- package/hooks/core/gridCoreSelector.js +1 -1
- package/hooks/core/pipeProcessing/index.js +4 -4
- package/hooks/core/pipeProcessing/useGridPipeProcessing.js +1 -1
- package/hooks/core/pipeProcessing/useGridRegisterPipeApplier.js +1 -1
- package/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.js +1 -1
- package/hooks/core/strategyProcessing/index.js +3 -3
- package/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.js +1 -1
- package/hooks/core/strategyProcessing/useGridStrategyProcessing.js +1 -1
- package/hooks/core/useGridApiInitialization.js +3 -3
- package/hooks/core/useGridInitialization.js +9 -9
- package/hooks/core/{useGridTheme.d.ts → useGridIsRtl.d.ts} +1 -1
- package/hooks/core/{useGridTheme.js → useGridIsRtl.js} +7 -7
- package/hooks/core/useGridLoggerFactory.js +2 -2
- package/hooks/core/useGridStateInitialization.js +2 -2
- package/hooks/features/clipboard/useGridClipboard.js +3 -3
- package/hooks/features/columnGrouping/gridColumnGroupsSelector.js +1 -1
- package/hooks/features/columnGrouping/gridColumnGroupsUtils.js +2 -2
- package/hooks/features/columnGrouping/index.js +1 -1
- package/hooks/features/columnGrouping/useGridColumnGrouping.js +6 -6
- package/hooks/features/columnHeaders/useGridColumnHeaders.d.ts +1 -1
- package/hooks/features/columnHeaders/useGridColumnHeaders.js +31 -30
- package/hooks/features/columnMenu/index.js +2 -2
- package/hooks/features/columnMenu/useGridColumnMenu.js +3 -3
- package/hooks/features/columnMenu/useGridColumnMenuSlots.js +1 -1
- package/hooks/features/columnResize/columnResizeSelector.js +1 -1
- package/hooks/features/columnResize/index.js +3 -3
- package/hooks/features/columnResize/useGridColumnResize.js +15 -23
- package/hooks/features/columns/gridColumnsSelector.js +5 -5
- package/hooks/features/columns/gridColumnsUtils.js +6 -6
- package/hooks/features/columns/index.js +2 -2
- package/hooks/features/columns/useGridColumnSpanning.js +2 -2
- package/hooks/features/columns/useGridColumns.js +8 -8
- package/hooks/features/density/densitySelector.js +1 -1
- package/hooks/features/density/index.js +2 -2
- package/hooks/features/density/useGridDensity.js +4 -4
- package/hooks/features/dimensions/index.js +1 -1
- package/hooks/features/dimensions/useGridDimensions.js +12 -12
- package/hooks/features/editing/index.js +1 -1
- package/hooks/features/editing/useGridCellEditing.js +9 -9
- package/hooks/features/editing/useGridEditing.js +6 -6
- package/hooks/features/editing/useGridRowEditing.js +11 -11
- package/hooks/features/events/useGridEvents.js +1 -1
- package/hooks/features/export/serializers/csvSerializer.js +2 -2
- package/hooks/features/export/useGridCsvExport.js +7 -7
- package/hooks/features/export/useGridPrintExport.js +13 -13
- package/hooks/features/export/utils.js +3 -3
- package/hooks/features/filter/gridFilterSelector.js +4 -4
- package/hooks/features/filter/gridFilterState.js +1 -1
- package/hooks/features/filter/gridFilterUtils.js +5 -5
- package/hooks/features/filter/index.js +2 -2
- package/hooks/features/filter/useGridFilter.js +16 -16
- package/hooks/features/focus/gridFocusStateSelector.js +1 -1
- package/hooks/features/focus/index.js +2 -2
- package/hooks/features/focus/useGridFocus.js +10 -10
- package/hooks/features/headerFiltering/gridHeaderFilteringSelectors.js +1 -1
- package/hooks/features/headerFiltering/index.js +1 -1
- package/hooks/features/headerFiltering/useGridHeaderFiltering.js +3 -3
- package/hooks/features/index.js +17 -17
- package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +35 -36
- package/hooks/features/overlays/useGridOverlays.js +5 -5
- package/hooks/features/pagination/gridPaginationSelector.js +4 -4
- package/hooks/features/pagination/gridPaginationUtils.js +1 -1
- package/hooks/features/pagination/index.js +1 -1
- package/hooks/features/pagination/useGridPagination.js +4 -4
- package/hooks/features/pagination/useGridPaginationMeta.js +3 -3
- package/hooks/features/pagination/useGridPaginationModel.js +5 -5
- package/hooks/features/pagination/useGridRowCount.js +4 -4
- package/hooks/features/preferencesPanel/index.js +3 -3
- package/hooks/features/preferencesPanel/useGridPreferencesPanel.js +4 -4
- package/hooks/features/rowSelection/gridRowSelectionSelector.js +2 -2
- package/hooks/features/rowSelection/index.js +1 -1
- package/hooks/features/rowSelection/useGridRowSelection.js +16 -16
- package/hooks/features/rowSelection/useGridRowSelectionPreProcessors.js +3 -3
- package/hooks/features/rowSelection/utils.js +1 -1
- package/hooks/features/rows/gridRowsSelector.js +1 -1
- package/hooks/features/rows/gridRowsUtils.js +2 -2
- package/hooks/features/rows/index.js +4 -4
- package/hooks/features/rows/useGridParamsApi.js +3 -3
- package/hooks/features/rows/useGridRowAriaAttributes.js +4 -4
- package/hooks/features/rows/useGridRows.js +10 -10
- package/hooks/features/rows/useGridRowsMeta.js +10 -10
- package/hooks/features/rows/useGridRowsPreProcessors.js +2 -2
- package/hooks/features/scroll/useGridScroll.js +13 -13
- package/hooks/features/sorting/gridSortingSelector.js +3 -3
- package/hooks/features/sorting/gridSortingUtils.js +1 -1
- package/hooks/features/sorting/index.js +2 -2
- package/hooks/features/sorting/useGridSorting.js +11 -11
- package/hooks/features/statePersistence/useGridStatePersistence.js +1 -1
- package/hooks/features/virtualization/gridVirtualizationSelectors.d.ts +7 -1
- package/hooks/features/virtualization/gridVirtualizationSelectors.js +9 -2
- package/hooks/features/virtualization/index.js +2 -2
- package/hooks/features/virtualization/useGridVirtualScroller.d.ts +1 -2
- package/hooks/features/virtualization/useGridVirtualScroller.js +81 -84
- package/hooks/features/virtualization/useGridVirtualization.d.ts +2 -1
- package/hooks/features/virtualization/useGridVirtualization.js +12 -5
- package/hooks/index.js +3 -3
- package/hooks/utils/index.js +8 -8
- package/hooks/utils/useGridApiContext.js +1 -1
- package/hooks/utils/useGridApiEventHandler.js +2 -2
- package/hooks/utils/useGridAriaAttributes.js +8 -8
- package/hooks/utils/useGridConfiguration.js +1 -1
- package/hooks/utils/useGridNativeEventListener.js +2 -2
- package/hooks/utils/useGridRootProps.js +1 -1
- package/hooks/utils/useGridSelector.js +3 -3
- package/hooks/utils/useGridVisibleRows.js +2 -2
- package/index.js +14 -14
- package/internals/index.js +72 -72
- package/internals/utils/getPinnedCellOffset.js +1 -1
- package/internals/utils/index.js +4 -4
- package/internals/utils/propValidation.js +3 -3
- package/joy/icons.js +31 -31
- package/joy/index.js +1 -1
- package/joy/joySlots.js +5 -5
- package/locales/arSD.js +1 -1
- package/locales/beBY.js +2 -2
- package/locales/bgBG.js +1 -1
- package/locales/csCZ.js +1 -1
- package/locales/daDK.js +1 -1
- package/locales/deDE.js +1 -1
- package/locales/elGR.js +1 -1
- package/locales/enUS.js +2 -2
- package/locales/esES.js +1 -1
- package/locales/faIR.js +1 -1
- package/locales/fiFI.js +1 -1
- package/locales/frFR.js +2 -3
- package/locales/heIL.js +1 -1
- package/locales/hrHR.js +1 -1
- package/locales/huHU.js +1 -1
- package/locales/index.js +36 -36
- package/locales/isIS.js +1 -1
- package/locales/itIT.js +1 -1
- package/locales/jaJP.js +1 -1
- package/locales/koKR.js +1 -1
- package/locales/nbNO.js +1 -1
- package/locales/nlNL.js +5 -6
- package/locales/nnNO.js +1 -1
- package/locales/plPL.js +1 -1
- package/locales/ptBR.js +1 -1
- package/locales/ptPT.js +1 -1
- package/locales/roRO.js +1 -1
- package/locales/ruRU.js +1 -1
- package/locales/skSK.js +1 -1
- package/locales/svSE.js +1 -1
- package/locales/trTR.js +1 -1
- package/locales/ukUA.js +1 -1
- package/locales/urPK.js +2 -2
- package/locales/viVN.js +1 -1
- package/locales/zhCN.js +6 -7
- package/locales/zhHK.js +1 -1
- package/locales/zhTW.js +1 -1
- package/material/icons/GridColumnUnsortedIcon.js +1 -1
- package/material/icons/index.js +32 -29
- package/material/index.js +3 -3
- package/models/api/index.js +13 -13
- package/models/colDef/index.js +2 -2
- package/models/events/index.js +3 -3
- package/models/gridStateCommunity.d.ts +1 -2
- package/models/index.d.ts +1 -0
- package/models/index.js +27 -25
- package/models/params/index.js +13 -13
- package/models/props/DataGridProps.d.ts +10 -2
- package/modern/DataGrid/DataGrid.js +17 -9
- package/modern/DataGrid/index.js +2 -2
- package/modern/DataGrid/useDataGridComponent.js +29 -29
- package/modern/DataGrid/useDataGridProps.js +6 -4
- package/modern/colDef/gridActionsColDef.js +2 -2
- package/modern/colDef/gridBooleanColDef.js +5 -5
- package/modern/colDef/gridBooleanOperators.js +1 -1
- package/modern/colDef/gridCheckboxSelectionColDef.js +4 -4
- package/modern/colDef/gridDateColDef.js +4 -4
- package/modern/colDef/gridDateOperators.js +1 -1
- package/modern/colDef/gridDefaultColumnTypes.js +6 -6
- package/modern/colDef/gridNumericColDef.js +4 -4
- package/modern/colDef/gridNumericOperators.js +2 -2
- package/modern/colDef/gridSingleSelectColDef.js +5 -5
- package/modern/colDef/gridSingleSelectOperators.js +3 -3
- package/modern/colDef/gridStringColDef.js +3 -3
- package/modern/colDef/gridStringOperators.js +4 -4
- package/modern/colDef/index.js +13 -13
- package/modern/components/GridColumnHeaders.js +2 -2
- package/modern/components/GridFooter.js +8 -8
- package/modern/components/GridHeader.js +2 -2
- package/modern/components/GridHeaders.js +9 -9
- package/modern/components/GridLoadingOverlay.js +4 -4
- package/modern/components/GridNoResultsOverlay.js +2 -2
- package/modern/components/GridNoRowsOverlay.js +2 -2
- package/modern/components/GridPagination.js +4 -4
- package/modern/components/GridRow.js +19 -19
- package/modern/components/GridRowCount.js +3 -3
- package/modern/components/GridScrollArea.js +10 -10
- package/modern/components/GridScrollbarFillerCell.js +4 -2
- package/modern/components/GridSelectedRowCount.js +3 -3
- package/modern/components/GridSkeletonLoadingOverlay.js +11 -11
- package/modern/components/base/GridBody.js +1 -1
- package/modern/components/base/GridFooterPlaceholder.js +1 -1
- package/modern/components/base/GridOverlays.js +7 -7
- package/modern/components/base/index.js +3 -3
- package/modern/components/cell/GridActionsCell.js +7 -7
- package/modern/components/cell/GridActionsCellItem.js +1 -1
- package/modern/components/cell/GridBooleanCell.js +4 -4
- package/modern/components/cell/GridCell.js +11 -11
- package/modern/components/cell/GridEditBooleanCell.js +3 -3
- package/modern/components/cell/GridEditDateCell.js +3 -3
- package/modern/components/cell/GridEditInputCell.js +3 -3
- package/modern/components/cell/GridEditSingleSelectCell.js +5 -5
- package/modern/components/cell/GridSkeletonCell.js +3 -3
- package/modern/components/cell/index.js +9 -9
- package/modern/components/columnHeaders/ColumnHeaderMenuIcon.js +4 -4
- package/modern/components/columnHeaders/GridBaseColumnHeaders.js +2 -2
- package/modern/components/columnHeaders/GridColumnGroupHeader.js +9 -9
- package/modern/components/columnHeaders/GridColumnHeaderFilterIconButton.js +7 -7
- package/modern/components/columnHeaders/GridColumnHeaderItem.js +9 -9
- package/modern/components/columnHeaders/GridColumnHeaderSeparator.js +3 -4
- package/modern/components/columnHeaders/GridColumnHeaderSortIcon.js +4 -4
- package/modern/components/columnHeaders/GridColumnHeaderTitle.js +5 -4
- package/modern/components/columnHeaders/GridGenericColumnHeaderItem.js +5 -7
- package/modern/components/columnHeaders/GridIconButtonContainer.js +2 -2
- package/modern/components/columnHeaders/index.js +5 -5
- package/modern/components/columnSelection/GridCellCheckboxRenderer.js +3 -3
- package/modern/components/columnSelection/GridHeaderCheckbox.js +11 -10
- package/modern/components/columnSelection/index.js +2 -2
- package/modern/components/columnsManagement/GridColumnsManagement.js +7 -7
- package/modern/components/columnsManagement/index.js +1 -1
- package/modern/components/containers/GridFooterContainer.js +2 -2
- package/modern/components/containers/GridOverlay.js +2 -2
- package/modern/components/containers/GridRoot.js +6 -6
- package/modern/components/containers/GridRootStyles.js +102 -49
- package/modern/components/containers/GridToolbarContainer.js +2 -2
- package/modern/components/containers/index.js +4 -4
- package/modern/components/index.js +19 -19
- package/modern/components/menu/GridMenu.js +3 -3
- package/modern/components/menu/columnMenu/GridColumnHeaderMenu.js +2 -2
- package/modern/components/menu/columnMenu/GridColumnMenu.js +5 -5
- package/modern/components/menu/columnMenu/GridColumnMenuContainer.js +2 -2
- package/modern/components/menu/columnMenu/index.js +6 -6
- package/modern/components/menu/columnMenu/menuItems/GridColumnMenuColumnsItem.js +2 -2
- package/modern/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.js +2 -2
- package/modern/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.js +3 -3
- package/modern/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.js +3 -3
- package/modern/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.js +4 -4
- package/modern/components/menu/columnMenu/menuItems/index.js +5 -5
- package/modern/components/menu/index.js +2 -2
- package/modern/components/panel/GridColumnsPanel.js +3 -3
- package/modern/components/panel/GridPanel.js +2 -2
- package/modern/components/panel/GridPanelContent.js +2 -2
- package/modern/components/panel/GridPanelFooter.js +2 -2
- package/modern/components/panel/GridPanelHeader.js +2 -2
- package/modern/components/panel/GridPanelWrapper.js +2 -2
- package/modern/components/panel/GridPreferencesPanel.js +6 -6
- package/modern/components/panel/filterPanel/GridFilterForm.js +8 -8
- package/modern/components/panel/filterPanel/GridFilterInputBoolean.js +1 -1
- package/modern/components/panel/filterPanel/GridFilterInputDate.js +2 -2
- package/modern/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +2 -2
- package/modern/components/panel/filterPanel/GridFilterInputMultipleValue.js +17 -9
- package/modern/components/panel/filterPanel/GridFilterInputSingleSelect.js +2 -2
- package/modern/components/panel/filterPanel/GridFilterInputValue.js +2 -2
- package/modern/components/panel/filterPanel/GridFilterPanel.js +10 -10
- package/modern/components/panel/filterPanel/index.js +9 -9
- package/modern/components/panel/index.js +7 -7
- package/modern/components/reexportable.js +1 -1
- package/modern/components/toolbar/GridToolbar.js +7 -7
- package/modern/components/toolbar/GridToolbarColumnsButton.js +5 -5
- package/modern/components/toolbar/GridToolbarDensitySelector.js +7 -7
- package/modern/components/toolbar/GridToolbarExport.js +2 -2
- package/modern/components/toolbar/GridToolbarExportContainer.js +5 -5
- package/modern/components/toolbar/GridToolbarFilterButton.js +8 -8
- package/modern/components/toolbar/GridToolbarQuickFilter.js +6 -6
- package/modern/components/toolbar/index.js +7 -7
- package/modern/components/virtualization/GridBottomContainer.js +1 -1
- package/modern/components/virtualization/GridMainContainer.js +2 -2
- package/modern/components/virtualization/GridTopContainer.js +1 -1
- package/modern/components/virtualization/GridVirtualScrollbar.js +5 -5
- package/modern/components/virtualization/GridVirtualScroller.js +18 -18
- package/modern/components/virtualization/GridVirtualScrollerContent.js +2 -2
- package/modern/components/virtualization/GridVirtualScrollerFiller.js +4 -4
- package/modern/components/virtualization/GridVirtualScrollerRenderZone.js +6 -6
- package/modern/constants/defaultGridSlotsComponents.js +8 -8
- package/modern/constants/gridClasses.js +1 -1
- package/modern/constants/index.js +3 -3
- package/modern/context/GridContextProvider.js +4 -4
- package/modern/context/index.js +1 -1
- package/modern/hooks/core/gridCoreSelector.js +1 -1
- package/modern/hooks/core/pipeProcessing/index.js +4 -4
- package/modern/hooks/core/pipeProcessing/useGridPipeProcessing.js +1 -1
- package/modern/hooks/core/pipeProcessing/useGridRegisterPipeApplier.js +1 -1
- package/modern/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.js +1 -1
- package/modern/hooks/core/strategyProcessing/index.js +3 -3
- package/modern/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.js +1 -1
- package/modern/hooks/core/strategyProcessing/useGridStrategyProcessing.js +1 -1
- package/modern/hooks/core/useGridApiInitialization.js +3 -3
- package/modern/hooks/core/useGridInitialization.js +9 -9
- package/modern/hooks/core/{useGridTheme.js → useGridIsRtl.js} +7 -7
- package/modern/hooks/core/useGridLoggerFactory.js +2 -2
- package/modern/hooks/core/useGridStateInitialization.js +2 -2
- package/modern/hooks/features/clipboard/useGridClipboard.js +3 -3
- package/modern/hooks/features/columnGrouping/gridColumnGroupsSelector.js +1 -1
- package/modern/hooks/features/columnGrouping/gridColumnGroupsUtils.js +2 -2
- package/modern/hooks/features/columnGrouping/index.js +1 -1
- package/modern/hooks/features/columnGrouping/useGridColumnGrouping.js +6 -6
- package/modern/hooks/features/columnHeaders/useGridColumnHeaders.js +31 -30
- package/modern/hooks/features/columnMenu/index.js +2 -2
- package/modern/hooks/features/columnMenu/useGridColumnMenu.js +3 -3
- package/modern/hooks/features/columnMenu/useGridColumnMenuSlots.js +1 -1
- package/modern/hooks/features/columnResize/columnResizeSelector.js +1 -1
- package/modern/hooks/features/columnResize/index.js +3 -3
- package/modern/hooks/features/columnResize/useGridColumnResize.js +15 -23
- package/modern/hooks/features/columns/gridColumnsSelector.js +5 -5
- package/modern/hooks/features/columns/gridColumnsUtils.js +6 -6
- package/modern/hooks/features/columns/index.js +2 -2
- package/modern/hooks/features/columns/useGridColumnSpanning.js +2 -2
- package/modern/hooks/features/columns/useGridColumns.js +8 -8
- package/modern/hooks/features/density/densitySelector.js +1 -1
- package/modern/hooks/features/density/index.js +2 -2
- package/modern/hooks/features/density/useGridDensity.js +4 -4
- package/modern/hooks/features/dimensions/index.js +1 -1
- package/modern/hooks/features/dimensions/useGridDimensions.js +12 -12
- package/modern/hooks/features/editing/index.js +1 -1
- package/modern/hooks/features/editing/useGridCellEditing.js +9 -9
- package/modern/hooks/features/editing/useGridEditing.js +6 -6
- package/modern/hooks/features/editing/useGridRowEditing.js +11 -11
- package/modern/hooks/features/events/useGridEvents.js +1 -1
- package/modern/hooks/features/export/serializers/csvSerializer.js +2 -2
- package/modern/hooks/features/export/useGridCsvExport.js +7 -7
- package/modern/hooks/features/export/useGridPrintExport.js +13 -13
- package/modern/hooks/features/export/utils.js +3 -3
- package/modern/hooks/features/filter/gridFilterSelector.js +4 -4
- package/modern/hooks/features/filter/gridFilterState.js +1 -1
- package/modern/hooks/features/filter/gridFilterUtils.js +5 -5
- package/modern/hooks/features/filter/index.js +2 -2
- package/modern/hooks/features/filter/useGridFilter.js +16 -16
- package/modern/hooks/features/focus/gridFocusStateSelector.js +1 -1
- package/modern/hooks/features/focus/index.js +2 -2
- package/modern/hooks/features/focus/useGridFocus.js +10 -10
- package/modern/hooks/features/headerFiltering/gridHeaderFilteringSelectors.js +1 -1
- package/modern/hooks/features/headerFiltering/index.js +1 -1
- package/modern/hooks/features/headerFiltering/useGridHeaderFiltering.js +3 -3
- package/modern/hooks/features/index.js +17 -17
- package/modern/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +35 -36
- package/modern/hooks/features/overlays/useGridOverlays.js +5 -5
- package/modern/hooks/features/pagination/gridPaginationSelector.js +4 -4
- package/modern/hooks/features/pagination/gridPaginationUtils.js +1 -1
- package/modern/hooks/features/pagination/index.js +1 -1
- package/modern/hooks/features/pagination/useGridPagination.js +4 -4
- package/modern/hooks/features/pagination/useGridPaginationMeta.js +3 -3
- package/modern/hooks/features/pagination/useGridPaginationModel.js +5 -5
- package/modern/hooks/features/pagination/useGridRowCount.js +4 -4
- package/modern/hooks/features/preferencesPanel/index.js +3 -3
- package/modern/hooks/features/preferencesPanel/useGridPreferencesPanel.js +4 -4
- package/modern/hooks/features/rowSelection/gridRowSelectionSelector.js +2 -2
- package/modern/hooks/features/rowSelection/index.js +1 -1
- package/modern/hooks/features/rowSelection/useGridRowSelection.js +16 -16
- package/modern/hooks/features/rowSelection/useGridRowSelectionPreProcessors.js +3 -3
- package/modern/hooks/features/rowSelection/utils.js +1 -1
- package/modern/hooks/features/rows/gridRowsSelector.js +1 -1
- package/modern/hooks/features/rows/gridRowsUtils.js +2 -2
- package/modern/hooks/features/rows/index.js +4 -4
- package/modern/hooks/features/rows/useGridParamsApi.js +3 -3
- package/modern/hooks/features/rows/useGridRowAriaAttributes.js +4 -4
- package/modern/hooks/features/rows/useGridRows.js +10 -10
- package/modern/hooks/features/rows/useGridRowsMeta.js +10 -10
- package/modern/hooks/features/rows/useGridRowsPreProcessors.js +2 -2
- package/modern/hooks/features/scroll/useGridScroll.js +13 -13
- package/modern/hooks/features/sorting/gridSortingSelector.js +3 -3
- package/modern/hooks/features/sorting/gridSortingUtils.js +1 -1
- package/modern/hooks/features/sorting/index.js +2 -2
- package/modern/hooks/features/sorting/useGridSorting.js +11 -11
- package/modern/hooks/features/statePersistence/useGridStatePersistence.js +1 -1
- package/modern/hooks/features/virtualization/gridVirtualizationSelectors.js +9 -2
- package/modern/hooks/features/virtualization/index.js +2 -2
- package/modern/hooks/features/virtualization/useGridVirtualScroller.js +81 -84
- package/modern/hooks/features/virtualization/useGridVirtualization.js +12 -5
- package/modern/hooks/index.js +3 -3
- package/modern/hooks/utils/index.js +8 -8
- package/modern/hooks/utils/useGridApiContext.js +1 -1
- package/modern/hooks/utils/useGridApiEventHandler.js +2 -2
- package/modern/hooks/utils/useGridAriaAttributes.js +8 -8
- package/modern/hooks/utils/useGridConfiguration.js +1 -1
- package/modern/hooks/utils/useGridNativeEventListener.js +2 -2
- package/modern/hooks/utils/useGridRootProps.js +1 -1
- package/modern/hooks/utils/useGridSelector.js +3 -3
- package/modern/hooks/utils/useGridVisibleRows.js +2 -2
- package/modern/index.js +14 -14
- package/modern/internals/index.js +72 -72
- package/modern/internals/utils/getPinnedCellOffset.js +1 -1
- package/modern/internals/utils/index.js +4 -4
- package/modern/internals/utils/propValidation.js +3 -3
- package/modern/joy/icons.js +31 -31
- package/modern/joy/index.js +1 -1
- package/modern/joy/joySlots.js +5 -5
- package/modern/locales/arSD.js +1 -1
- package/modern/locales/beBY.js +2 -2
- package/modern/locales/bgBG.js +1 -1
- package/modern/locales/csCZ.js +1 -1
- package/modern/locales/daDK.js +1 -1
- package/modern/locales/deDE.js +1 -1
- package/modern/locales/elGR.js +1 -1
- package/modern/locales/enUS.js +2 -2
- package/modern/locales/esES.js +1 -1
- package/modern/locales/faIR.js +1 -1
- package/modern/locales/fiFI.js +1 -1
- package/modern/locales/frFR.js +2 -3
- package/modern/locales/heIL.js +1 -1
- package/modern/locales/hrHR.js +1 -1
- package/modern/locales/huHU.js +1 -1
- package/modern/locales/index.js +36 -36
- package/modern/locales/isIS.js +1 -1
- package/modern/locales/itIT.js +1 -1
- package/modern/locales/jaJP.js +1 -1
- package/modern/locales/koKR.js +1 -1
- package/modern/locales/nbNO.js +1 -1
- package/modern/locales/nlNL.js +5 -6
- package/modern/locales/nnNO.js +1 -1
- package/modern/locales/plPL.js +1 -1
- package/modern/locales/ptBR.js +1 -1
- package/modern/locales/ptPT.js +1 -1
- package/modern/locales/roRO.js +1 -1
- package/modern/locales/ruRU.js +1 -1
- package/modern/locales/skSK.js +1 -1
- package/modern/locales/svSE.js +1 -1
- package/modern/locales/trTR.js +1 -1
- package/modern/locales/ukUA.js +1 -1
- package/modern/locales/urPK.js +2 -2
- package/modern/locales/viVN.js +1 -1
- package/modern/locales/zhCN.js +6 -7
- package/modern/locales/zhHK.js +1 -1
- package/modern/locales/zhTW.js +1 -1
- package/modern/material/icons/GridColumnUnsortedIcon.js +1 -1
- package/modern/material/icons/index.js +32 -29
- package/modern/material/index.js +3 -3
- package/modern/models/api/index.js +13 -13
- package/modern/models/colDef/index.js +2 -2
- package/modern/models/events/index.js +3 -3
- package/modern/models/index.js +27 -25
- package/modern/models/params/index.js +13 -13
- package/modern/themeAugmentation/index.js +2 -2
- package/modern/utils/cellBorderUtils.js +1 -1
- package/modern/utils/composeGridClasses.js +1 -1
- package/modern/utils/createSelector.js +9 -2
- package/modern/utils/domUtils.js +1 -1
- package/node/DataGrid/DataGrid.js +12 -5
- package/node/DataGrid/useDataGridProps.js +4 -3
- package/node/colDef/gridActionsColDef.js +1 -1
- package/node/colDef/gridBooleanColDef.js +1 -1
- package/node/colDef/gridCheckboxSelectionColDef.js +2 -3
- package/node/colDef/gridDateColDef.js +1 -1
- package/node/colDef/gridNumericColDef.js +1 -1
- package/node/colDef/gridSingleSelectColDef.js +1 -1
- package/node/components/GridApiContext.js +1 -2
- package/node/components/GridColumnHeaders.js +2 -3
- package/node/components/GridConfigurationContext.js +1 -2
- package/node/components/GridFooter.js +2 -3
- package/node/components/GridHeader.js +2 -3
- package/node/components/GridHeaders.js +2 -3
- package/node/components/GridLoadingOverlay.js +2 -3
- package/node/components/GridNoResultsOverlay.js +2 -3
- package/node/components/GridNoRowsOverlay.js +2 -3
- package/node/components/GridPagination.js +2 -3
- package/node/components/GridRow.js +2 -3
- package/node/components/GridRowCount.js +2 -3
- package/node/components/GridScrollArea.js +2 -3
- package/node/components/GridScrollbarFillerCell.js +5 -4
- package/node/components/GridSelectedRowCount.js +2 -3
- package/node/components/GridSkeletonLoadingOverlay.js +5 -6
- package/node/components/base/GridFooterPlaceholder.js +2 -3
- package/node/components/base/GridOverlays.js +2 -3
- package/node/components/cell/GridActionsCell.js +5 -6
- package/node/components/cell/GridActionsCellItem.js +2 -3
- package/node/components/cell/GridBooleanCell.js +2 -3
- package/node/components/cell/GridCell.js +3 -4
- package/node/components/cell/GridEditBooleanCell.js +2 -3
- package/node/components/cell/GridEditDateCell.js +2 -3
- package/node/components/cell/GridEditInputCell.js +2 -3
- package/node/components/cell/GridEditSingleSelectCell.js +2 -3
- package/node/components/cell/GridSkeletonCell.js +2 -3
- package/node/components/columnHeaders/ColumnHeaderMenuIcon.js +3 -4
- package/node/components/columnHeaders/GridBaseColumnHeaders.js +2 -3
- package/node/components/columnHeaders/GridColumnGroupHeader.js +3 -4
- package/node/components/columnHeaders/GridColumnHeaderFilterIconButton.js +2 -3
- package/node/components/columnHeaders/GridColumnHeaderItem.js +3 -4
- package/node/components/columnHeaders/GridColumnHeaderSeparator.js +3 -5
- package/node/components/columnHeaders/GridColumnHeaderSortIcon.js +2 -3
- package/node/components/columnHeaders/GridColumnHeaderTitle.js +4 -4
- package/node/components/columnHeaders/GridGenericColumnHeaderItem.js +3 -6
- package/node/components/columnHeaders/GridIconButtonContainer.js +2 -3
- package/node/components/columnSelection/GridCellCheckboxRenderer.js +2 -3
- package/node/components/columnSelection/GridHeaderCheckbox.js +4 -4
- package/node/components/columnsManagement/GridColumnsManagement.js +2 -3
- package/node/components/containers/GridFooterContainer.js +2 -3
- package/node/components/containers/GridOverlay.js +2 -3
- package/node/components/containers/GridRoot.js +2 -3
- package/node/components/containers/GridRootStyles.js +99 -46
- package/node/components/containers/GridToolbarContainer.js +2 -3
- package/node/components/menu/GridMenu.js +2 -3
- package/node/components/menu/columnMenu/GridColumnHeaderMenu.js +2 -3
- package/node/components/menu/columnMenu/GridColumnMenu.js +2 -3
- package/node/components/menu/columnMenu/GridColumnMenuContainer.js +2 -3
- package/node/components/menu/columnMenu/menuItems/GridColumnMenuColumnsItem.js +2 -3
- package/node/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.js +2 -3
- package/node/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.js +2 -3
- package/node/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.js +2 -3
- package/node/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.js +2 -3
- package/node/components/panel/GridColumnsPanel.js +2 -3
- package/node/components/panel/GridPanel.js +2 -3
- package/node/components/panel/GridPanelContent.js +2 -3
- package/node/components/panel/GridPanelFooter.js +2 -3
- package/node/components/panel/GridPanelHeader.js +2 -3
- package/node/components/panel/GridPanelWrapper.js +2 -3
- package/node/components/panel/GridPreferencesPanel.js +2 -3
- package/node/components/panel/filterPanel/GridFilterForm.js +2 -3
- package/node/components/panel/filterPanel/GridFilterInputBoolean.js +2 -3
- package/node/components/panel/filterPanel/GridFilterInputDate.js +2 -3
- package/node/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +2 -3
- package/node/components/panel/filterPanel/GridFilterInputMultipleValue.js +18 -11
- package/node/components/panel/filterPanel/GridFilterInputSingleSelect.js +2 -3
- package/node/components/panel/filterPanel/GridFilterInputValue.js +2 -3
- package/node/components/panel/filterPanel/GridFilterPanel.js +2 -3
- package/node/components/panel/filterPanel/filterPanelUtils.js +1 -1
- package/node/components/toolbar/GridToolbar.js +2 -3
- package/node/components/toolbar/GridToolbarColumnsButton.js +2 -3
- package/node/components/toolbar/GridToolbarDensitySelector.js +2 -3
- package/node/components/toolbar/GridToolbarExport.js +2 -3
- package/node/components/toolbar/GridToolbarExportContainer.js +2 -3
- package/node/components/toolbar/GridToolbarFilterButton.js +2 -3
- package/node/components/toolbar/GridToolbarQuickFilter.js +2 -3
- package/node/components/virtualization/GridBottomContainer.js +2 -3
- package/node/components/virtualization/GridMainContainer.js +2 -3
- package/node/components/virtualization/GridTopContainer.js +2 -3
- package/node/components/virtualization/GridVirtualScrollbar.js +1 -2
- package/node/components/virtualization/GridVirtualScroller.js +3 -4
- package/node/components/virtualization/GridVirtualScrollerContent.js +2 -3
- package/node/components/virtualization/GridVirtualScrollerFiller.js +1 -2
- package/node/components/virtualization/GridVirtualScrollerRenderZone.js +2 -3
- package/node/constants/defaultGridSlotsComponents.js +1 -1
- package/node/constants/gridClasses.js +1 -1
- package/node/context/GridContextProvider.js +1 -2
- package/node/context/GridRootPropsContext.js +1 -2
- package/node/hooks/core/gridCoreSelector.js +3 -3
- package/node/hooks/core/pipeProcessing/useGridPipeProcessing.js +2 -3
- package/node/hooks/core/pipeProcessing/useGridRegisterPipeApplier.js +1 -2
- package/node/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.js +1 -2
- package/node/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.js +1 -2
- package/node/hooks/core/strategyProcessing/useGridStrategyProcessing.js +2 -3
- package/node/hooks/core/useGridApiInitialization.js +1 -2
- package/node/hooks/core/useGridInitialization.js +2 -2
- package/node/hooks/core/useGridIsRtl.js +28 -0
- package/node/hooks/core/useGridLocaleText.js +1 -2
- package/node/hooks/core/useGridLoggerFactory.js +1 -2
- package/node/hooks/core/useGridRefs.js +1 -2
- package/node/hooks/core/useGridStateInitialization.js +2 -3
- package/node/hooks/features/clipboard/useGridClipboard.js +1 -2
- package/node/hooks/features/columnGrouping/useGridColumnGrouping.js +2 -3
- package/node/hooks/features/columnHeaders/useGridColumnHeaders.js +17 -17
- package/node/hooks/features/columnMenu/useGridColumnMenu.js +2 -3
- package/node/hooks/features/columnMenu/useGridColumnMenuSlots.js +2 -3
- package/node/hooks/features/columnResize/useGridColumnResize.js +7 -16
- package/node/hooks/features/columns/gridColumnsSelector.js +2 -2
- package/node/hooks/features/columns/gridColumnsUtils.js +1 -1
- package/node/hooks/features/columns/useGridColumnSpanning.js +1 -2
- package/node/hooks/features/columns/useGridColumns.js +2 -3
- package/node/hooks/features/density/useGridDensity.js +2 -3
- package/node/hooks/features/dimensions/useGridDimensions.js +2 -3
- package/node/hooks/features/editing/useGridCellEditing.js +2 -3
- package/node/hooks/features/editing/useGridEditing.js +2 -3
- package/node/hooks/features/editing/useGridRowEditing.js +2 -3
- package/node/hooks/features/export/useGridCsvExport.js +1 -2
- package/node/hooks/features/export/useGridPrintExport.js +2 -3
- package/node/hooks/features/filter/gridFilterUtils.js +1 -1
- package/node/hooks/features/filter/useGridFilter.js +3 -4
- package/node/hooks/features/focus/useGridFocus.js +2 -3
- package/node/hooks/features/headerFiltering/useGridHeaderFiltering.js +2 -3
- package/node/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +20 -22
- package/node/hooks/features/pagination/useGridPagination.js +1 -1
- package/node/hooks/features/pagination/useGridPaginationMeta.js +2 -3
- package/node/hooks/features/pagination/useGridPaginationModel.js +2 -3
- package/node/hooks/features/pagination/useGridRowCount.js +2 -3
- package/node/hooks/features/preferencesPanel/useGridPreferencesPanel.js +2 -3
- package/node/hooks/features/rowSelection/useGridRowSelection.js +2 -3
- package/node/hooks/features/rowSelection/useGridRowSelectionPreProcessors.js +2 -3
- package/node/hooks/features/rows/gridRowsUtils.js +1 -1
- package/node/hooks/features/rows/useGridParamsApi.js +1 -2
- package/node/hooks/features/rows/useGridRowAriaAttributes.js +1 -2
- package/node/hooks/features/rows/useGridRows.js +2 -3
- package/node/hooks/features/rows/useGridRowsMeta.js +2 -3
- package/node/hooks/features/rows/useGridRowsPreProcessors.js +1 -1
- package/node/hooks/features/scroll/useGridScroll.js +5 -6
- package/node/hooks/features/sorting/gridSortingUtils.js +1 -1
- package/node/hooks/features/sorting/useGridSorting.js +2 -3
- package/node/hooks/features/statePersistence/useGridStatePersistence.js +1 -2
- package/node/hooks/features/virtualization/gridVirtualizationSelectors.js +9 -2
- package/node/hooks/features/virtualization/useGridVirtualScroller.js +65 -69
- package/node/hooks/features/virtualization/useGridVirtualization.js +13 -7
- package/node/hooks/utils/useFirstRender.js +1 -2
- package/node/hooks/utils/useGridApiContext.js +1 -2
- package/node/hooks/utils/useGridApiEventHandler.js +1 -2
- package/node/hooks/utils/useGridApiMethod.js +1 -2
- package/node/hooks/utils/useGridApiRef.js +1 -2
- package/node/hooks/utils/useGridConfiguration.js +1 -2
- package/node/hooks/utils/useGridInitializeState.js +1 -2
- package/node/hooks/utils/useGridLogger.js +1 -2
- package/node/hooks/utils/useGridNativeEventListener.js +1 -2
- package/node/hooks/utils/useGridPrivateApiContext.js +1 -2
- package/node/hooks/utils/useGridRootProps.js +1 -2
- package/node/hooks/utils/useGridSelector.js +1 -2
- package/node/hooks/utils/useGridVisibleRows.js +1 -2
- package/node/hooks/utils/useLazyRef.js +1 -1
- package/node/hooks/utils/useOnMount.js +1 -1
- package/node/hooks/utils/useRunOnce.js +1 -2
- package/node/hooks/utils/useTimeout.js +1 -1
- package/node/index.js +1 -1
- package/node/internals/utils/computeSlots.js +1 -1
- package/node/internals/utils/useProps.js +1 -2
- package/node/joy/icons.js +32 -33
- package/node/joy/index.js +1 -1
- package/node/joy/joySlots.js +2 -3
- package/node/locales/frFR.js +1 -2
- package/node/locales/nlNL.js +4 -5
- package/node/locales/zhCN.js +5 -6
- package/node/material/components/MUISelectOption.js +2 -3
- package/node/material/icons/GridColumnUnsortedIcon.js +2 -3
- package/node/material/icons/index.js +33 -31
- package/node/material/index.js +1 -1
- package/node/utils/createSelector.js +10 -2
- package/node/utils/getGridLocalization.js +1 -1
- package/package.json +6 -6
- package/themeAugmentation/index.js +2 -2
- package/utils/cellBorderUtils.js +1 -1
- package/utils/composeGridClasses.js +1 -1
- package/utils/createSelector.js +9 -2
- package/utils/domUtils.js +1 -1
- package/node/hooks/core/useGridTheme.js +0 -29
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
4
|
Object.defineProperty(exports, "__esModule", {
|
|
5
5
|
value: true
|
|
6
6
|
});
|
package/node/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
4
|
Object.defineProperty(exports, "__esModule", {
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
|
3
4
|
Object.defineProperty(exports, "__esModule", {
|
|
4
5
|
value: true
|
|
5
6
|
});
|
|
6
7
|
exports.useProps = useProps;
|
|
7
8
|
var React = _interopRequireWildcard(require("react"));
|
|
8
|
-
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
9
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
10
9
|
/** Gathers props for the root element into a single `.forwardedProps` field */
|
|
11
10
|
function groupForwardedProps(props) {
|
|
12
11
|
const keys = Object.keys(props);
|
package/node/joy/icons.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
+
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
|
4
5
|
Object.defineProperty(exports, "__esModule", {
|
|
5
6
|
value: true
|
|
6
7
|
});
|
|
@@ -26,8 +27,6 @@ const _excluded = ["sx", "fontSize"],
|
|
|
26
27
|
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
|
27
28
|
* ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
28
29
|
*/
|
|
29
|
-
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
30
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
31
30
|
function createSvgIcon(path, displayName) {
|
|
32
31
|
const fontSizeMap = {
|
|
33
32
|
small: 'lg',
|
|
@@ -68,9 +67,9 @@ function createSvgIcon(path, displayName) {
|
|
|
68
67
|
Component.muiName = _SvgIcon.default.muiName;
|
|
69
68
|
|
|
70
69
|
// @ts-ignore internal component
|
|
71
|
-
return /*#__PURE__*/React.memo(
|
|
70
|
+
return /*#__PURE__*/React.memo(/*#__PURE__*/React.forwardRef(Component));
|
|
72
71
|
}
|
|
73
|
-
const GridArrowUpwardIcon = exports.GridArrowUpwardIcon = createSvgIcon(
|
|
72
|
+
const GridArrowUpwardIcon = exports.GridArrowUpwardIcon = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, {
|
|
74
73
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("line", {
|
|
75
74
|
x1: "12",
|
|
76
75
|
x2: "12",
|
|
@@ -80,7 +79,7 @@ const GridArrowUpwardIcon = exports.GridArrowUpwardIcon = createSvgIcon( /*#__PU
|
|
|
80
79
|
points: "5 12 12 5 19 12"
|
|
81
80
|
})]
|
|
82
81
|
}), 'ArrowUpward');
|
|
83
|
-
const GridArrowDownwardIcon = exports.GridArrowDownwardIcon = createSvgIcon(
|
|
82
|
+
const GridArrowDownwardIcon = exports.GridArrowDownwardIcon = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, {
|
|
84
83
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("line", {
|
|
85
84
|
x1: "12",
|
|
86
85
|
x2: "12",
|
|
@@ -90,23 +89,23 @@ const GridArrowDownwardIcon = exports.GridArrowDownwardIcon = createSvgIcon( /*#
|
|
|
90
89
|
points: "19 12 12 19 5 12"
|
|
91
90
|
})]
|
|
92
91
|
}), 'ArrowDownward');
|
|
93
|
-
const GridKeyboardArrowLeft = exports.GridKeyboardArrowLeft = createSvgIcon(
|
|
92
|
+
const GridKeyboardArrowLeft = exports.GridKeyboardArrowLeft = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsx)("polyline", {
|
|
94
93
|
points: "15 18 9 12 15 6"
|
|
95
94
|
}), 'KeyboardArrowLeft');
|
|
96
|
-
const GridKeyboardArrowRight = exports.GridKeyboardArrowRight = createSvgIcon(
|
|
95
|
+
const GridKeyboardArrowRight = exports.GridKeyboardArrowRight = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsx)("polyline", {
|
|
97
96
|
points: "9 18 15 12 9 6"
|
|
98
97
|
}), 'KeyboardArrowRight');
|
|
99
|
-
const GridExpandMoreIcon = exports.GridExpandMoreIcon = createSvgIcon(
|
|
98
|
+
const GridExpandMoreIcon = exports.GridExpandMoreIcon = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, {
|
|
100
99
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
101
100
|
d: "m7 15 5 5 5-5"
|
|
102
101
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
103
102
|
d: "m7 9 5-5 5 5"
|
|
104
103
|
})]
|
|
105
104
|
}), 'ExpandMore');
|
|
106
|
-
const GridFilterListIcon = exports.GridFilterListIcon = createSvgIcon(
|
|
105
|
+
const GridFilterListIcon = exports.GridFilterListIcon = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsx)("polygon", {
|
|
107
106
|
points: "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3"
|
|
108
107
|
}), 'FilterList');
|
|
109
|
-
const GridFilterAltIcon = exports.GridFilterAltIcon = createSvgIcon(
|
|
108
|
+
const GridFilterAltIcon = exports.GridFilterAltIcon = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, {
|
|
110
109
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
111
110
|
d: "M3 6h18"
|
|
112
111
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -115,7 +114,7 @@ const GridFilterAltIcon = exports.GridFilterAltIcon = createSvgIcon( /*#__PURE__
|
|
|
115
114
|
d: "M10 18h4"
|
|
116
115
|
})]
|
|
117
116
|
}), 'FilterAlt');
|
|
118
|
-
const GridSearchIcon = exports.GridSearchIcon = createSvgIcon(
|
|
117
|
+
const GridSearchIcon = exports.GridSearchIcon = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, {
|
|
119
118
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", {
|
|
120
119
|
cx: "11",
|
|
121
120
|
cy: "11",
|
|
@@ -127,7 +126,7 @@ const GridSearchIcon = exports.GridSearchIcon = createSvgIcon( /*#__PURE__*/(0,
|
|
|
127
126
|
y2: "16.65"
|
|
128
127
|
})]
|
|
129
128
|
}), 'Search');
|
|
130
|
-
const GridMenuIcon = exports.GridMenuIcon = createSvgIcon(
|
|
129
|
+
const GridMenuIcon = exports.GridMenuIcon = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, {
|
|
131
130
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("rect", {
|
|
132
131
|
width: "18",
|
|
133
132
|
height: "18",
|
|
@@ -142,14 +141,14 @@ const GridMenuIcon = exports.GridMenuIcon = createSvgIcon( /*#__PURE__*/(0, _jsx
|
|
|
142
141
|
d: "M7 16h10"
|
|
143
142
|
})]
|
|
144
143
|
}), 'Menu');
|
|
145
|
-
const GridCheckCircleIcon = exports.GridCheckCircleIcon = createSvgIcon(
|
|
144
|
+
const GridCheckCircleIcon = exports.GridCheckCircleIcon = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, {
|
|
146
145
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
147
146
|
d: "M22 11.08V12a10 10 0 1 1-5.93-9.14"
|
|
148
147
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("polyline", {
|
|
149
148
|
points: "22 4 12 14.01 9 11.01"
|
|
150
149
|
})]
|
|
151
150
|
}), 'CheckCircle');
|
|
152
|
-
const GridColumnIcon = exports.GridColumnIcon = createSvgIcon(
|
|
151
|
+
const GridColumnIcon = exports.GridColumnIcon = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, {
|
|
153
152
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("rect", {
|
|
154
153
|
width: "18",
|
|
155
154
|
height: "18",
|
|
@@ -164,24 +163,24 @@ const GridColumnIcon = exports.GridColumnIcon = createSvgIcon( /*#__PURE__*/(0,
|
|
|
164
163
|
y2: "21"
|
|
165
164
|
})]
|
|
166
165
|
}), 'ColumnIcon');
|
|
167
|
-
const GridSeparatorIcon = exports.GridSeparatorIcon = createSvgIcon(
|
|
166
|
+
const GridSeparatorIcon = exports.GridSeparatorIcon = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
168
167
|
d: "M11 19V5h2v14z"
|
|
169
168
|
}), 'Separator');
|
|
170
|
-
const GridViewHeadlineIcon = exports.GridViewHeadlineIcon = createSvgIcon(
|
|
169
|
+
const GridViewHeadlineIcon = exports.GridViewHeadlineIcon = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
171
170
|
fill: "none",
|
|
172
171
|
stroke: "currentColor",
|
|
173
172
|
strokeWidth: "1.5",
|
|
174
173
|
d: "M3 12h18M3 12v4.5M3 12V7.5M21 12v4.5m0-4.5V7.5m-18 9v3.9a.6.6 0 0 0 .6.6h16.8a.6.6 0 0 0 .6-.6v-3.9m-18 0h18m0-9V3.6a.6.6 0 0 0-.6-.6H3.6a.6.6 0 0 0-.6.6v3.9m18 0H3"
|
|
175
174
|
}), 'ViewHeadline');
|
|
176
|
-
const GridTableRowsIcon = exports.GridTableRowsIcon = createSvgIcon(
|
|
175
|
+
const GridTableRowsIcon = exports.GridTableRowsIcon = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
177
176
|
fill: "currentColor",
|
|
178
177
|
strokeWidth: "0",
|
|
179
178
|
d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 2v3H5V5h14zm0 5v4H5v-4h14zM5 19v-3h14v3H5z"
|
|
180
179
|
}), 'TableRows');
|
|
181
|
-
const GridViewStreamIcon = exports.GridViewStreamIcon = createSvgIcon(
|
|
180
|
+
const GridViewStreamIcon = exports.GridViewStreamIcon = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
182
181
|
d: "M4 6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2zm0 6h16"
|
|
183
182
|
}), 'ViewStream');
|
|
184
|
-
const GridTripleDotsVerticalIcon = exports.GridTripleDotsVerticalIcon = createSvgIcon(
|
|
183
|
+
const GridTripleDotsVerticalIcon = exports.GridTripleDotsVerticalIcon = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, {
|
|
185
184
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", {
|
|
186
185
|
cx: "12",
|
|
187
186
|
cy: "12",
|
|
@@ -196,7 +195,7 @@ const GridTripleDotsVerticalIcon = exports.GridTripleDotsVerticalIcon = createSv
|
|
|
196
195
|
r: "1"
|
|
197
196
|
})]
|
|
198
197
|
}), 'TripleDotsVertical');
|
|
199
|
-
const GridCloseIcon = exports.GridCloseIcon = createSvgIcon(
|
|
198
|
+
const GridCloseIcon = exports.GridCloseIcon = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, {
|
|
200
199
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", {
|
|
201
200
|
cx: "12",
|
|
202
201
|
cy: "12",
|
|
@@ -213,7 +212,7 @@ const GridCloseIcon = exports.GridCloseIcon = createSvgIcon( /*#__PURE__*/(0, _j
|
|
|
213
212
|
y2: "15"
|
|
214
213
|
})]
|
|
215
214
|
}), 'Close');
|
|
216
|
-
const GridAddIcon = exports.GridAddIcon = createSvgIcon(
|
|
215
|
+
const GridAddIcon = exports.GridAddIcon = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, {
|
|
217
216
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", {
|
|
218
217
|
cx: "12",
|
|
219
218
|
cy: "12",
|
|
@@ -230,7 +229,7 @@ const GridAddIcon = exports.GridAddIcon = createSvgIcon( /*#__PURE__*/(0, _jsxRu
|
|
|
230
229
|
y2: "12"
|
|
231
230
|
})]
|
|
232
231
|
}), 'Add');
|
|
233
|
-
const GridRemoveIcon = exports.GridRemoveIcon = createSvgIcon(
|
|
232
|
+
const GridRemoveIcon = exports.GridRemoveIcon = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, {
|
|
234
233
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", {
|
|
235
234
|
cx: "12",
|
|
236
235
|
cy: "12",
|
|
@@ -247,7 +246,7 @@ const GridRemoveIcon = exports.GridRemoveIcon = createSvgIcon( /*#__PURE__*/(0,
|
|
|
247
246
|
y2: "15"
|
|
248
247
|
})]
|
|
249
248
|
}), 'Remove');
|
|
250
|
-
const GridLoadIcon = exports.GridLoadIcon = createSvgIcon(
|
|
249
|
+
const GridLoadIcon = exports.GridLoadIcon = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, {
|
|
251
250
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
252
251
|
d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"
|
|
253
252
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("polyline", {
|
|
@@ -259,7 +258,7 @@ const GridLoadIcon = exports.GridLoadIcon = createSvgIcon( /*#__PURE__*/(0, _jsx
|
|
|
259
258
|
y2: "3"
|
|
260
259
|
})]
|
|
261
260
|
}), 'Load');
|
|
262
|
-
const GridDragIcon = exports.GridDragIcon = createSvgIcon(
|
|
261
|
+
const GridDragIcon = exports.GridDragIcon = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, {
|
|
263
262
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", {
|
|
264
263
|
cx: "9",
|
|
265
264
|
cy: "12",
|
|
@@ -286,7 +285,7 @@ const GridDragIcon = exports.GridDragIcon = createSvgIcon( /*#__PURE__*/(0, _jsx
|
|
|
286
285
|
r: "1"
|
|
287
286
|
})]
|
|
288
287
|
}), 'Drag');
|
|
289
|
-
const GridSaveAltIcon = exports.GridSaveAltIcon = createSvgIcon(
|
|
288
|
+
const GridSaveAltIcon = exports.GridSaveAltIcon = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, {
|
|
290
289
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
291
290
|
d: "M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"
|
|
292
291
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("polyline", {
|
|
@@ -297,10 +296,10 @@ const GridSaveAltIcon = exports.GridSaveAltIcon = createSvgIcon( /*#__PURE__*/(0
|
|
|
297
296
|
d: "m15 15-3-3-3 3"
|
|
298
297
|
})]
|
|
299
298
|
}), 'SaveAlt');
|
|
300
|
-
const GridCheckIcon = exports.GridCheckIcon = createSvgIcon(
|
|
299
|
+
const GridCheckIcon = exports.GridCheckIcon = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsx)("polyline", {
|
|
301
300
|
points: "20 6 9 17 4 12"
|
|
302
301
|
}), 'Check');
|
|
303
|
-
const GridMoreVertIcon = exports.GridMoreVertIcon = createSvgIcon(
|
|
302
|
+
const GridMoreVertIcon = exports.GridMoreVertIcon = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, {
|
|
304
303
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", {
|
|
305
304
|
cx: "12",
|
|
306
305
|
cy: "12",
|
|
@@ -315,7 +314,7 @@ const GridMoreVertIcon = exports.GridMoreVertIcon = createSvgIcon( /*#__PURE__*/
|
|
|
315
314
|
r: "1"
|
|
316
315
|
})]
|
|
317
316
|
}), 'MoreVert');
|
|
318
|
-
const GridVisibilityOffIcon = exports.GridVisibilityOffIcon = createSvgIcon(
|
|
317
|
+
const GridVisibilityOffIcon = exports.GridVisibilityOffIcon = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, {
|
|
319
318
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
320
319
|
d: "M9.88 9.88a3 3 0 1 0 4.24 4.24"
|
|
321
320
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -329,7 +328,7 @@ const GridVisibilityOffIcon = exports.GridVisibilityOffIcon = createSvgIcon( /*#
|
|
|
329
328
|
y2: "22"
|
|
330
329
|
})]
|
|
331
330
|
}), 'VisibilityOff');
|
|
332
|
-
const GridViewColumnIcon = exports.GridViewColumnIcon = createSvgIcon(
|
|
331
|
+
const GridViewColumnIcon = exports.GridViewColumnIcon = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, {
|
|
333
332
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("rect", {
|
|
334
333
|
width: "6",
|
|
335
334
|
height: "20",
|
|
@@ -344,7 +343,7 @@ const GridViewColumnIcon = exports.GridViewColumnIcon = createSvgIcon( /*#__PURE
|
|
|
344
343
|
rx: "2"
|
|
345
344
|
})]
|
|
346
345
|
}), 'ViewColumn');
|
|
347
|
-
const GridClearIcon = exports.GridClearIcon = createSvgIcon(
|
|
346
|
+
const GridClearIcon = exports.GridClearIcon = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, {
|
|
348
347
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
349
348
|
d: "m7 21-4.3-4.3c-1-1-1-2.5 0-3.4l9.6-9.6c1-1 2.5-1 3.4 0l5.6 5.6c1 1 1 2.5 0 3.4L13 21"
|
|
350
349
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -353,7 +352,7 @@ const GridClearIcon = exports.GridClearIcon = createSvgIcon( /*#__PURE__*/(0, _j
|
|
|
353
352
|
d: "m5 11 9 9"
|
|
354
353
|
})]
|
|
355
354
|
}), 'Clear');
|
|
356
|
-
const GridDeleteIcon = exports.GridDeleteIcon = createSvgIcon(
|
|
355
|
+
const GridDeleteIcon = exports.GridDeleteIcon = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, {
|
|
357
356
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
358
357
|
d: "M3 6h18"
|
|
359
358
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -372,7 +371,7 @@ const GridDeleteIcon = exports.GridDeleteIcon = createSvgIcon( /*#__PURE__*/(0,
|
|
|
372
371
|
y2: "17"
|
|
373
372
|
})]
|
|
374
373
|
}), 'Delete');
|
|
375
|
-
const GridDeleteForeverIcon = exports.GridDeleteForeverIcon = createSvgIcon(
|
|
374
|
+
const GridDeleteForeverIcon = exports.GridDeleteForeverIcon = createSvgIcon(/*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, {
|
|
376
375
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
377
376
|
d: "M3 6h18"
|
|
378
377
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
package/node/joy/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
4
|
Object.defineProperty(exports, "__esModule", {
|
|
5
5
|
value: true
|
|
6
6
|
});
|
package/node/joy/joySlots.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
+
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
|
4
5
|
Object.defineProperty(exports, "__esModule", {
|
|
5
6
|
value: true
|
|
6
7
|
});
|
|
@@ -34,8 +35,6 @@ const _excluded = ["touchRippleRef", "inputProps", "onChange", "color", "size",
|
|
|
34
35
|
_excluded5 = ["open", "onOpen", "value", "onChange", "size", "color", "variant", "inputProps", "MenuProps", "inputRef", "error", "native", "fullWidth", "labelId"],
|
|
35
36
|
_excluded6 = ["native"],
|
|
36
37
|
_excluded7 = ["shrink", "variant", "sx"];
|
|
37
|
-
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
38
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
39
38
|
function convertColor(color) {
|
|
40
39
|
if (color === 'secondary') {
|
|
41
40
|
return 'primary';
|
package/node/locales/frFR.js
CHANGED
|
@@ -39,8 +39,7 @@ const frFRGrid = {
|
|
|
39
39
|
columnsManagementSearchTitle: 'Rechercher',
|
|
40
40
|
columnsManagementNoColumns: 'Pas de colonnes',
|
|
41
41
|
columnsManagementShowHideAllText: 'Afficher/masquer toutes',
|
|
42
|
-
|
|
43
|
-
|
|
42
|
+
columnsManagementReset: 'Réinitialiser',
|
|
44
43
|
// Filter panel text
|
|
45
44
|
filterPanelAddFilter: 'Ajouter un filtre',
|
|
46
45
|
filterPanelRemoveAll: 'Tout supprimer',
|
package/node/locales/nlNL.js
CHANGED
|
@@ -36,11 +36,10 @@ const nlNLGrid = {
|
|
|
36
36
|
toolbarExportPrint: 'Print',
|
|
37
37
|
toolbarExportExcel: 'Downloaden als Excel-bestand',
|
|
38
38
|
// Columns management text
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
39
|
+
columnsManagementSearchTitle: 'Zoeken',
|
|
40
|
+
columnsManagementNoColumns: 'Geen kolommen',
|
|
41
|
+
columnsManagementShowHideAllText: 'Toon/Verberg Alle',
|
|
42
|
+
columnsManagementReset: 'Reset',
|
|
44
43
|
// Filter panel text
|
|
45
44
|
filterPanelAddFilter: 'Filter toevoegen',
|
|
46
45
|
filterPanelRemoveAll: 'Alles verwijderen',
|
package/node/locales/zhCN.js
CHANGED
|
@@ -36,11 +36,10 @@ const zhCNGrid = {
|
|
|
36
36
|
toolbarExportPrint: '打印',
|
|
37
37
|
toolbarExportExcel: '导出至Excel',
|
|
38
38
|
// Columns management text
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
39
|
+
columnsManagementSearchTitle: '搜索',
|
|
40
|
+
columnsManagementNoColumns: '没有列',
|
|
41
|
+
columnsManagementShowHideAllText: '显示/隐藏所有',
|
|
42
|
+
columnsManagementReset: '重置',
|
|
44
43
|
// Filter panel text
|
|
45
44
|
filterPanelAddFilter: '添加筛选器',
|
|
46
45
|
filterPanelRemoveAll: '清除全部',
|
|
@@ -90,7 +89,7 @@ const zhCNGrid = {
|
|
|
90
89
|
'headerFilterOperator!=': '不等于',
|
|
91
90
|
'headerFilterOperator>': '大于',
|
|
92
91
|
'headerFilterOperator>=': '大于或等于',
|
|
93
|
-
'headerFilterOperator<': '
|
|
92
|
+
'headerFilterOperator<': '小于',
|
|
94
93
|
'headerFilterOperator<=': '小于或等于',
|
|
95
94
|
// Filter values text
|
|
96
95
|
filterValueAny: '任何',
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
+
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
|
4
5
|
Object.defineProperty(exports, "__esModule", {
|
|
5
6
|
value: true
|
|
6
7
|
});
|
|
@@ -11,8 +12,6 @@ var React = _interopRequireWildcard(require("react"));
|
|
|
11
12
|
var _MenuItem = _interopRequireDefault(require("@mui/material/MenuItem"));
|
|
12
13
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
13
14
|
const _excluded = ["native"];
|
|
14
|
-
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
15
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
16
15
|
function MUISelectOption(_ref) {
|
|
17
16
|
let {
|
|
18
17
|
native
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
+
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
|
4
5
|
Object.defineProperty(exports, "__esModule", {
|
|
5
6
|
value: true
|
|
6
7
|
});
|
|
@@ -11,8 +12,6 @@ var React = _interopRequireWildcard(require("react"));
|
|
|
11
12
|
var _useGridRootProps = require("../../hooks/utils/useGridRootProps");
|
|
12
13
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
13
14
|
const _excluded = ["sortingOrder"];
|
|
14
|
-
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
15
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
16
15
|
const GridColumnUnsortedIcon = exports.GridColumnUnsortedIcon = /*#__PURE__*/React.memo(function GridColumnHeaderSortIcon(props) {
|
|
17
16
|
const {
|
|
18
17
|
sortingOrder
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
|
3
4
|
Object.defineProperty(exports, "__esModule", {
|
|
4
5
|
value: true
|
|
5
6
|
});
|
|
@@ -7,91 +8,92 @@ exports.GridVisibilityOffIcon = exports.GridViewStreamIcon = exports.GridViewHea
|
|
|
7
8
|
var React = _interopRequireWildcard(require("react"));
|
|
8
9
|
var _utils = require("@mui/material/utils");
|
|
9
10
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
10
|
-
|
|
11
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
12
|
-
const GridArrowUpwardIcon = exports.GridArrowUpwardIcon = (0, _utils.createSvgIcon)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
11
|
+
const GridArrowUpwardIcon = exports.GridArrowUpwardIcon = (0, _utils.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
13
12
|
d: "M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z"
|
|
14
13
|
}), 'ArrowUpward');
|
|
15
|
-
const GridArrowDownwardIcon = exports.GridArrowDownwardIcon = (0, _utils.createSvgIcon)(
|
|
14
|
+
const GridArrowDownwardIcon = exports.GridArrowDownwardIcon = (0, _utils.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
16
15
|
d: "M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z"
|
|
17
16
|
}), 'ArrowDownward');
|
|
18
|
-
const GridKeyboardArrowRight = exports.GridKeyboardArrowRight = (0, _utils.createSvgIcon)(
|
|
17
|
+
const GridKeyboardArrowRight = exports.GridKeyboardArrowRight = (0, _utils.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
19
18
|
d: "M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"
|
|
20
19
|
}), 'KeyboardArrowRight');
|
|
21
|
-
const GridExpandMoreIcon = exports.GridExpandMoreIcon = (0, _utils.createSvgIcon)(
|
|
20
|
+
const GridExpandMoreIcon = exports.GridExpandMoreIcon = (0, _utils.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
22
21
|
d: "M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6z"
|
|
23
22
|
}), 'ExpandMore');
|
|
24
|
-
const GridFilterListIcon = exports.GridFilterListIcon = (0, _utils.createSvgIcon)(
|
|
23
|
+
const GridFilterListIcon = exports.GridFilterListIcon = (0, _utils.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
25
24
|
d: "M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z"
|
|
26
25
|
}), 'FilterList');
|
|
27
|
-
const GridFilterAltIcon = exports.GridFilterAltIcon = (0, _utils.createSvgIcon)(
|
|
26
|
+
const GridFilterAltIcon = exports.GridFilterAltIcon = (0, _utils.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
28
27
|
d: "M4.25 5.61C6.27 8.2 10 13 10 13v6c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-6s3.72-4.8 5.74-7.39c.51-.66.04-1.61-.79-1.61H5.04c-.83 0-1.3.95-.79 1.61z"
|
|
29
28
|
}), 'FilterAlt');
|
|
30
|
-
const GridSearchIcon = exports.GridSearchIcon = (0, _utils.createSvgIcon)(
|
|
29
|
+
const GridSearchIcon = exports.GridSearchIcon = (0, _utils.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
31
30
|
d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"
|
|
32
31
|
}), 'Search');
|
|
33
|
-
const GridMenuIcon = exports.GridMenuIcon = (0, _utils.createSvgIcon)(
|
|
32
|
+
const GridMenuIcon = exports.GridMenuIcon = (0, _utils.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
34
33
|
d: "M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"
|
|
35
34
|
}), 'Menu');
|
|
36
|
-
const GridCheckCircleIcon = exports.GridCheckCircleIcon = (0, _utils.createSvgIcon)(
|
|
35
|
+
const GridCheckCircleIcon = exports.GridCheckCircleIcon = (0, _utils.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
37
36
|
d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"
|
|
38
37
|
}), 'CheckCircle');
|
|
39
|
-
const GridColumnIcon = exports.GridColumnIcon = (0, _utils.createSvgIcon)(
|
|
38
|
+
const GridColumnIcon = exports.GridColumnIcon = (0, _utils.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
40
39
|
d: "M6 5H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm14 0h-3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-7 0h-3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1z"
|
|
41
40
|
}), 'ColumnIcon');
|
|
42
|
-
const GridSeparatorIcon = exports.GridSeparatorIcon = (0, _utils.createSvgIcon)(
|
|
43
|
-
|
|
41
|
+
const GridSeparatorIcon = exports.GridSeparatorIcon = (0, _utils.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("rect", {
|
|
42
|
+
width: "1",
|
|
43
|
+
height: "24",
|
|
44
|
+
x: "11.5",
|
|
45
|
+
rx: "0.5"
|
|
44
46
|
}), 'Separator');
|
|
45
|
-
const GridViewHeadlineIcon = exports.GridViewHeadlineIcon = (0, _utils.createSvgIcon)(
|
|
47
|
+
const GridViewHeadlineIcon = exports.GridViewHeadlineIcon = (0, _utils.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
46
48
|
d: "M4 15h16v-2H4v2zm0 4h16v-2H4v2zm0-8h16V9H4v2zm0-6v2h16V5H4z"
|
|
47
49
|
}), 'ViewHeadline');
|
|
48
|
-
const GridTableRowsIcon = exports.GridTableRowsIcon = (0, _utils.createSvgIcon)(
|
|
50
|
+
const GridTableRowsIcon = exports.GridTableRowsIcon = (0, _utils.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
49
51
|
d: "M21,8H3V4h18V8z M21,10H3v4h18V10z M21,16H3v4h18V16z"
|
|
50
52
|
}), 'TableRows');
|
|
51
|
-
const GridViewStreamIcon = exports.GridViewStreamIcon = (0, _utils.createSvgIcon)(
|
|
53
|
+
const GridViewStreamIcon = exports.GridViewStreamIcon = (0, _utils.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
52
54
|
d: "M4 18h17v-6H4v6zM4 5v6h17V5H4z"
|
|
53
55
|
}), 'ViewStream');
|
|
54
|
-
const GridTripleDotsVerticalIcon = exports.GridTripleDotsVerticalIcon = (0, _utils.createSvgIcon)(
|
|
56
|
+
const GridTripleDotsVerticalIcon = exports.GridTripleDotsVerticalIcon = (0, _utils.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
55
57
|
d: "M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"
|
|
56
58
|
}), 'TripleDotsVertical');
|
|
57
|
-
const GridCloseIcon = exports.GridCloseIcon = (0, _utils.createSvgIcon)(
|
|
59
|
+
const GridCloseIcon = exports.GridCloseIcon = (0, _utils.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
58
60
|
d: "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"
|
|
59
61
|
}), 'Close');
|
|
60
|
-
const GridAddIcon = exports.GridAddIcon = (0, _utils.createSvgIcon)(
|
|
62
|
+
const GridAddIcon = exports.GridAddIcon = (0, _utils.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
61
63
|
d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"
|
|
62
64
|
}), 'Add');
|
|
63
|
-
const GridRemoveIcon = exports.GridRemoveIcon = (0, _utils.createSvgIcon)(
|
|
65
|
+
const GridRemoveIcon = exports.GridRemoveIcon = (0, _utils.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
64
66
|
d: "M19 13H5v-2h14v2z"
|
|
65
67
|
}), 'Remove');
|
|
66
|
-
const GridLoadIcon = exports.GridLoadIcon = (0, _utils.createSvgIcon)(
|
|
68
|
+
const GridLoadIcon = exports.GridLoadIcon = (0, _utils.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
67
69
|
d: "M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z"
|
|
68
70
|
}), 'Load');
|
|
69
|
-
const GridDragIcon = exports.GridDragIcon = (0, _utils.createSvgIcon)(
|
|
71
|
+
const GridDragIcon = exports.GridDragIcon = (0, _utils.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
70
72
|
d: "M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"
|
|
71
73
|
}), 'Drag');
|
|
72
|
-
const GridSaveAltIcon = exports.GridSaveAltIcon = (0, _utils.createSvgIcon)(
|
|
74
|
+
const GridSaveAltIcon = exports.GridSaveAltIcon = (0, _utils.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
73
75
|
d: "M19 12v7H5v-7H3v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7h-2zm-6 .67l2.59-2.58L17 11.5l-5 5-5-5 1.41-1.41L11 12.67V3h2z"
|
|
74
76
|
}), 'SaveAlt');
|
|
75
|
-
const GridCheckIcon = exports.GridCheckIcon = (0, _utils.createSvgIcon)(
|
|
77
|
+
const GridCheckIcon = exports.GridCheckIcon = (0, _utils.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
76
78
|
d: "M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"
|
|
77
79
|
}), 'Check');
|
|
78
|
-
const GridMoreVertIcon = exports.GridMoreVertIcon = (0, _utils.createSvgIcon)(
|
|
80
|
+
const GridMoreVertIcon = exports.GridMoreVertIcon = (0, _utils.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
79
81
|
d: "M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"
|
|
80
82
|
}), 'MoreVert');
|
|
81
|
-
const GridVisibilityOffIcon = exports.GridVisibilityOffIcon = (0, _utils.createSvgIcon)(
|
|
83
|
+
const GridVisibilityOffIcon = exports.GridVisibilityOffIcon = (0, _utils.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
82
84
|
d: "M12 7c2.76 0 5 2.24 5 5 0 .65-.13 1.26-.36 1.83l2.92 2.92c1.51-1.26 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-3.98.7l2.16 2.16C10.74 7.13 11.35 7 12 7zM2 4.27l2.28 2.28.46.46C3.08 8.3 1.78 10.02 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.42.42L19.73 22 21 20.73 3.27 3 2 4.27zM7.53 9.8l1.55 1.55c-.05.21-.08.43-.08.65 0 1.66 1.34 3 3 3 .22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53-2.76 0-5-2.24-5-5 0-.79.2-1.53.53-2.2zm4.31-.78l3.15 3.15.02-.16c0-1.66-1.34-3-3-3l-.17.01z"
|
|
83
85
|
}), 'VisibilityOff');
|
|
84
|
-
const GridViewColumnIcon = exports.GridViewColumnIcon = (0, _utils.createSvgIcon)(
|
|
86
|
+
const GridViewColumnIcon = exports.GridViewColumnIcon = (0, _utils.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("g", {
|
|
85
87
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
86
88
|
d: "M14.67,5v14H9.33V5H14.67z M15.67,19H21V5h-5.33V19z M8.33,19V5H3v14H8.33z"
|
|
87
89
|
})
|
|
88
90
|
}), 'ViewColumn');
|
|
89
|
-
const GridClearIcon = exports.GridClearIcon = (0, _utils.createSvgIcon)(
|
|
91
|
+
const GridClearIcon = exports.GridClearIcon = (0, _utils.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
90
92
|
d: "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"
|
|
91
93
|
}), 'Clear');
|
|
92
|
-
const GridDeleteIcon = exports.GridDeleteIcon = (0, _utils.createSvgIcon)(
|
|
94
|
+
const GridDeleteIcon = exports.GridDeleteIcon = (0, _utils.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
93
95
|
d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"
|
|
94
96
|
}), 'Delete');
|
|
95
|
-
const GridDeleteForeverIcon = exports.GridDeleteForeverIcon = (0, _utils.createSvgIcon)(
|
|
97
|
+
const GridDeleteForeverIcon = exports.GridDeleteForeverIcon = (0, _utils.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
96
98
|
d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zm2.46-7.12l1.41-1.41L12 12.59l2.12-2.12 1.41 1.41L13.41 14l2.12 2.12-1.41 1.41L12 15.41l-2.12 2.12-1.41-1.41L10.59 14l-2.13-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4z"
|
|
97
99
|
}), 'Delete');
|
package/node/material/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
4
|
Object.defineProperty(exports, "__esModule", {
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
@@ -6,6 +6,14 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.createSelectorV8 = exports.createSelectorMemoizedV8 = exports.createSelectorMemoized = exports.createSelector = void 0;
|
|
7
7
|
var _reselect = require("reselect");
|
|
8
8
|
var _warning = require("../internals/utils/warning");
|
|
9
|
+
const reselectCreateSelector = (0, _reselect.createSelectorCreator)({
|
|
10
|
+
memoize: _reselect.lruMemoize,
|
|
11
|
+
memoizeOptions: {
|
|
12
|
+
maxSize: 1,
|
|
13
|
+
equalityCheck: Object.is
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
|
|
9
17
|
// TODO v8: Remove this type
|
|
10
18
|
|
|
11
19
|
// TODO v8: Rename this type to `OutputSelector`
|
|
@@ -179,7 +187,7 @@ const createSelectorMemoized = (...args) => {
|
|
|
179
187
|
// dependency another selector created with this `createSelector`.
|
|
180
188
|
return cacheFn(state, cacheKey);
|
|
181
189
|
}
|
|
182
|
-
const fn = (
|
|
190
|
+
const fn = reselectCreateSelector(...args);
|
|
183
191
|
if (!cacheArgsInit) {
|
|
184
192
|
cache.set(cacheKey, cacheArgs);
|
|
185
193
|
}
|
|
@@ -213,7 +221,7 @@ const createSelectorMemoizedV8 = (...args) => {
|
|
|
213
221
|
// dependency another selector created with this `createSelector`.
|
|
214
222
|
return cacheFn(state, selectorArgs, cacheKey);
|
|
215
223
|
}
|
|
216
|
-
const fn = (
|
|
224
|
+
const fn = reselectCreateSelector(...args);
|
|
217
225
|
if (!cacheArgsInit) {
|
|
218
226
|
cache.set(cacheKey, cacheArgs);
|
|
219
227
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
4
|
Object.defineProperty(exports, "__esModule", {
|
|
5
5
|
value: true
|
|
6
6
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/x-data-grid",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.16.0",
|
|
4
4
|
"description": "The Community plan edition of the Data Grid components (MUI X).",
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"main": "./node/index.js",
|
|
@@ -37,18 +37,18 @@
|
|
|
37
37
|
"directory": "packages/x-data-grid"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@babel/runtime": "^7.25.
|
|
41
|
-
"@mui/system": "^5.16.7",
|
|
40
|
+
"@babel/runtime": "^7.25.6",
|
|
42
41
|
"@mui/utils": "^5.16.6",
|
|
43
42
|
"clsx": "^2.1.1",
|
|
44
43
|
"prop-types": "^15.8.1",
|
|
45
|
-
"reselect": "^
|
|
46
|
-
"@mui/x-internals": "7.
|
|
44
|
+
"reselect": "^5.1.1",
|
|
45
|
+
"@mui/x-internals": "7.16.0"
|
|
47
46
|
},
|
|
48
47
|
"peerDependencies": {
|
|
49
48
|
"@emotion/react": "^11.9.0",
|
|
50
49
|
"@emotion/styled": "^11.8.1",
|
|
51
|
-
"@mui/material": "^5.15.14",
|
|
50
|
+
"@mui/material": "^5.15.14 || ^6.0.0",
|
|
51
|
+
"@mui/system": "^5.15.14 || ^6.0.0",
|
|
52
52
|
"react": "^17.0.0 || ^18.0.0",
|
|
53
53
|
"react-dom": "^17.0.0 || ^18.0.0"
|
|
54
54
|
},
|