@mui/x-data-grid 5.9.0 → 5.11.1
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 +284 -10
- package/DataGrid/DataGrid.js +35 -1
- package/DataGrid/useDataGridProps.js +2 -1
- package/README.md +5 -4
- package/colDef/gridActionsColDef.js +2 -1
- package/colDef/gridBooleanColDef.js +2 -1
- package/colDef/gridCheckboxSelectionColDef.js +1 -0
- package/colDef/gridDateColDef.js +4 -2
- package/colDef/gridNumericColDef.js +3 -2
- package/colDef/gridNumericOperators.d.ts +2 -0
- package/colDef/gridNumericOperators.js +11 -0
- package/colDef/gridSingleSelectColDef.js +3 -2
- package/colDef/gridSingleSelectOperators.d.ts +3 -0
- package/colDef/gridSingleSelectOperators.js +52 -0
- package/colDef/gridStringColDef.js +3 -2
- package/colDef/gridStringOperators.d.ts +2 -0
- package/colDef/gridStringOperators.js +12 -0
- package/components/GridFooter.d.ts +4 -2
- package/components/GridFooter.js +11 -2
- package/components/GridRow.js +9 -5
- package/components/GridRowCount.d.ts +4 -1
- package/components/GridRowCount.js +1 -0
- package/components/GridScrollArea.js +3 -4
- package/components/GridSelectedRowCount.d.ts +4 -1
- package/components/GridSelectedRowCount.js +2 -1
- package/components/base/GridBody.js +1 -2
- package/components/base/GridOverlays.js +2 -3
- package/components/cell/GridActionsCell.js +13 -4
- package/components/cell/GridCell.js +8 -8
- package/components/cell/GridEditBooleanCell.d.ts +15 -3
- package/components/cell/GridEditBooleanCell.js +101 -6
- package/components/cell/GridEditDateCell.d.ts +16 -4
- package/components/cell/GridEditDateCell.js +99 -5
- package/components/cell/GridEditInputCell.d.ts +11 -5
- package/components/cell/GridEditInputCell.js +29 -5
- package/components/cell/GridEditSingleSelectCell.d.ts +12 -4
- package/components/cell/GridEditSingleSelectCell.js +28 -5
- package/components/cell/index.d.ts +2 -0
- package/components/cell/index.js +2 -0
- package/components/columnHeaders/GridColumnHeaderItem.js +15 -16
- package/components/columnHeaders/GridColumnHeaders.d.ts +2 -0
- package/components/columnHeaders/GridColumnHeadersInner.d.ts +2 -0
- package/components/columnSelection/GridCellCheckboxRenderer.js +2 -3
- package/components/columnSelection/GridHeaderCheckbox.js +4 -5
- package/components/containers/GridFooterContainer.d.ts +8 -2
- package/components/containers/GridFooterContainer.js +11 -2
- package/components/containers/GridRoot.js +25 -5
- package/components/containers/GridRootStyles.js +36 -1
- package/components/containers/GridToolbarContainer.d.ts +8 -2
- package/components/containers/GridToolbarContainer.js +12 -2
- package/components/menu/GridMenu.js +1 -0
- package/components/panel/GridPanelContent.d.ts +8 -1
- package/components/panel/GridPanelContent.js +13 -2
- package/components/panel/GridPanelFooter.d.ts +8 -1
- package/components/panel/GridPanelFooter.js +13 -2
- package/components/panel/GridPanelHeader.d.ts +8 -1
- package/components/panel/GridPanelHeader.js +13 -2
- package/components/toolbar/GridToolbar.d.ts +12 -2
- package/components/toolbar/GridToolbar.js +30 -7
- package/components/toolbar/GridToolbarExport.d.ts +5 -4
- package/components/toolbar/GridToolbarExport.js +15 -20
- package/components/toolbar/GridToolbarFilterButton.d.ts +1 -1
- package/components/toolbar/GridToolbarQuickFilter.d.ts +20 -0
- package/components/toolbar/GridToolbarQuickFilter.js +87 -0
- package/components/toolbar/index.d.ts +3 -1
- package/components/toolbar/index.js +3 -2
- package/components/virtualization/GridVirtualScroller.d.ts +4 -1
- package/components/virtualization/GridVirtualScrollerContent.d.ts +4 -1
- package/components/virtualization/GridVirtualScrollerRenderZone.d.ts +4 -1
- package/constants/defaultGridSlotsComponents.js +4 -2
- package/constants/gridClasses.d.ts +32 -0
- package/constants/gridClasses.js +1 -1
- package/constants/localeTextConstants.js +8 -1
- package/hooks/core/pipeProcessing/gridPipeProcessingApi.d.ts +11 -0
- package/hooks/core/pipeProcessing/useGridPipeProcessing.js +10 -9
- package/hooks/core/strategyProcessing/useGridStrategyProcessing.d.ts +4 -4
- package/hooks/core/strategyProcessing/useGridStrategyProcessing.js +6 -7
- package/hooks/core/useGridApiInitialization.js +3 -3
- package/hooks/core/useGridErrorHandler.js +1 -2
- package/hooks/core/useGridStateInitialization.js +1 -2
- package/hooks/features/columnHeaders/useGridColumnHeaders.js +5 -6
- package/hooks/features/columnMenu/useGridColumnMenu.js +3 -3
- package/hooks/features/columns/useGridColumnSpanning.js +1 -2
- package/hooks/features/columns/useGridColumns.d.ts +1 -1
- package/hooks/features/columns/useGridColumns.js +8 -9
- package/hooks/features/dimensions/useGridDimensions.d.ts +1 -1
- package/hooks/features/dimensions/useGridDimensions.js +8 -9
- package/hooks/features/editRows/useGridCellEditing.new.d.ts +1 -1
- package/hooks/features/editRows/useGridCellEditing.new.js +133 -32
- package/hooks/features/editRows/useGridCellEditing.old.js +20 -21
- package/hooks/features/editRows/useGridEditing.old.js +4 -5
- package/hooks/features/editRows/useGridRowEditing.new.d.ts +1 -1
- package/hooks/features/editRows/useGridRowEditing.new.js +122 -42
- package/hooks/features/editRows/useGridRowEditing.old.js +21 -22
- package/hooks/features/events/useGridEvents.js +17 -18
- package/hooks/features/export/serializers/csvSerializer.js +5 -5
- package/hooks/features/export/useGridCsvExport.js +23 -16
- package/hooks/features/export/useGridPrintExport.js +22 -0
- package/hooks/features/export/utils.d.ts +3 -1
- package/hooks/features/export/utils.js +13 -0
- package/hooks/features/filter/gridFilterState.d.ts +1 -2
- package/hooks/features/filter/gridFilterState.js +3 -1
- package/hooks/features/filter/gridFilterUtils.d.ts +8 -0
- package/hooks/features/filter/gridFilterUtils.js +84 -2
- package/hooks/features/filter/useGridFilter.js +20 -8
- package/hooks/features/focus/useGridFocus.d.ts +1 -1
- package/hooks/features/focus/useGridFocus.js +29 -33
- package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +4 -5
- package/hooks/features/pagination/useGridPage.js +3 -4
- package/hooks/features/pagination/useGridPageSize.js +2 -3
- package/hooks/features/preferencesPanel/useGridPreferencesPanel.js +4 -6
- package/hooks/features/rows/gridRowsSelector.d.ts +1 -0
- package/hooks/features/rows/gridRowsSelector.js +1 -0
- package/hooks/features/rows/gridRowsState.d.ts +16 -11
- package/hooks/features/rows/gridRowsUtils.d.ts +14 -1
- package/hooks/features/rows/gridRowsUtils.js +79 -1
- package/hooks/features/rows/useGridRows.js +148 -128
- package/hooks/features/rows/useGridRowsPreProcessors.js +2 -0
- package/hooks/features/scroll/useGridScroll.js +6 -1
- package/hooks/features/selection/useGridSelection.d.ts +1 -1
- package/hooks/features/selection/useGridSelection.js +13 -10
- package/hooks/features/sorting/useGridSorting.js +8 -9
- package/hooks/features/virtualization/useGridVirtualScroller.d.ts +2 -0
- package/hooks/features/virtualization/useGridVirtualScroller.js +14 -5
- package/hooks/utils/useGridApiEventHandler.d.ts +4 -1
- package/hooks/utils/useGridApiEventHandler.js +22 -9
- package/hooks/utils/useGridNativeEventListener.js +1 -2
- package/hooks/utils/useGridSelector.js +1 -1
- package/index.d.ts +2 -0
- package/index.js +1 -1
- package/internals/index.d.ts +4 -1
- package/internals/index.js +5 -2
- package/legacy/DataGrid/DataGrid.js +35 -1
- package/legacy/DataGrid/useDataGridProps.js +2 -1
- package/legacy/colDef/gridActionsColDef.js +2 -1
- package/legacy/colDef/gridBooleanColDef.js +2 -1
- package/legacy/colDef/gridCheckboxSelectionColDef.js +1 -0
- package/legacy/colDef/gridDateColDef.js +4 -2
- package/legacy/colDef/gridNumericColDef.js +3 -2
- package/legacy/colDef/gridNumericOperators.js +28 -18
- package/legacy/colDef/gridSingleSelectColDef.js +3 -2
- package/legacy/colDef/gridSingleSelectOperators.js +55 -6
- package/legacy/colDef/gridStringColDef.js +3 -2
- package/legacy/colDef/gridStringOperators.js +25 -14
- package/legacy/components/GridFooter.js +11 -2
- package/legacy/components/GridRow.js +9 -5
- package/legacy/components/GridRowCount.js +1 -0
- package/legacy/components/GridScrollArea.js +3 -4
- package/legacy/components/GridSelectedRowCount.js +2 -1
- package/legacy/components/base/GridBody.js +1 -2
- package/legacy/components/base/GridOverlays.js +2 -3
- package/legacy/components/cell/GridActionsCell.js +13 -4
- package/legacy/components/cell/GridCell.js +8 -8
- package/legacy/components/cell/GridEditBooleanCell.js +132 -11
- package/legacy/components/cell/GridEditDateCell.js +148 -42
- package/legacy/components/cell/GridEditInputCell.js +61 -12
- package/legacy/components/cell/GridEditSingleSelectCell.js +41 -13
- package/legacy/components/cell/index.js +2 -0
- package/legacy/components/columnHeaders/GridColumnHeaderItem.js +15 -16
- package/legacy/components/columnSelection/GridCellCheckboxRenderer.js +2 -3
- package/legacy/components/columnSelection/GridHeaderCheckbox.js +4 -5
- package/legacy/components/containers/GridFooterContainer.js +11 -2
- package/legacy/components/containers/GridRoot.js +23 -5
- package/legacy/components/containers/GridRootStyles.js +26 -5
- package/legacy/components/containers/GridToolbarContainer.js +12 -2
- package/legacy/components/menu/GridMenu.js +1 -0
- package/legacy/components/panel/GridPanelContent.js +13 -2
- package/legacy/components/panel/GridPanelFooter.js +13 -2
- package/legacy/components/panel/GridPanelHeader.js +13 -2
- package/legacy/components/toolbar/GridToolbar.js +31 -6
- package/legacy/components/toolbar/GridToolbarExport.js +18 -19
- package/legacy/components/toolbar/GridToolbarQuickFilter.js +102 -0
- package/legacy/components/toolbar/index.js +3 -2
- package/legacy/constants/defaultGridSlotsComponents.js +4 -2
- package/legacy/constants/gridClasses.js +1 -1
- package/legacy/constants/localeTextConstants.js +8 -1
- package/legacy/hooks/core/pipeProcessing/useGridPipeProcessing.js +10 -10
- package/legacy/hooks/core/strategyProcessing/useGridStrategyProcessing.js +6 -7
- package/legacy/hooks/core/useGridApiInitialization.js +3 -3
- package/legacy/hooks/core/useGridErrorHandler.js +1 -2
- package/legacy/hooks/core/useGridStateInitialization.js +1 -2
- package/legacy/hooks/features/columnHeaders/useGridColumnHeaders.js +5 -6
- package/legacy/hooks/features/columnMenu/useGridColumnMenu.js +3 -3
- package/legacy/hooks/features/columns/useGridColumnSpanning.js +1 -2
- package/legacy/hooks/features/columns/useGridColumns.js +8 -9
- package/legacy/hooks/features/dimensions/useGridDimensions.js +8 -9
- package/legacy/hooks/features/editRows/useGridCellEditing.new.js +213 -83
- package/legacy/hooks/features/editRows/useGridCellEditing.old.js +20 -21
- package/legacy/hooks/features/editRows/useGridEditing.old.js +4 -5
- package/legacy/hooks/features/editRows/useGridRowEditing.new.js +126 -42
- package/legacy/hooks/features/editRows/useGridRowEditing.old.js +20 -21
- package/legacy/hooks/features/events/useGridEvents.js +17 -18
- package/legacy/hooks/features/export/serializers/csvSerializer.js +5 -5
- package/legacy/hooks/features/export/useGridCsvExport.js +24 -17
- package/legacy/hooks/features/export/useGridPrintExport.js +22 -0
- package/legacy/hooks/features/export/utils.js +14 -0
- package/legacy/hooks/features/filter/gridFilterState.js +3 -1
- package/legacy/hooks/features/filter/gridFilterUtils.js +96 -2
- package/legacy/hooks/features/filter/useGridFilter.js +20 -8
- package/legacy/hooks/features/focus/useGridFocus.js +31 -35
- package/legacy/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +4 -5
- package/legacy/hooks/features/pagination/useGridPage.js +3 -4
- package/legacy/hooks/features/pagination/useGridPageSize.js +2 -3
- package/legacy/hooks/features/preferencesPanel/useGridPreferencesPanel.js +4 -6
- package/legacy/hooks/features/rows/gridRowsSelector.js +3 -0
- package/legacy/hooks/features/rows/gridRowsUtils.js +82 -1
- package/legacy/hooks/features/rows/useGridRows.js +164 -131
- package/legacy/hooks/features/rows/useGridRowsPreProcessors.js +2 -0
- package/legacy/hooks/features/scroll/useGridScroll.js +6 -1
- package/legacy/hooks/features/selection/useGridSelection.js +13 -10
- package/legacy/hooks/features/sorting/useGridSorting.js +8 -9
- package/legacy/hooks/features/virtualization/useGridVirtualScroller.js +14 -5
- package/legacy/hooks/utils/useGridApiEventHandler.js +20 -9
- package/legacy/hooks/utils/useGridNativeEventListener.js +1 -2
- package/legacy/hooks/utils/useGridSelector.js +1 -1
- package/legacy/index.js +1 -1
- package/legacy/internals/index.js +5 -2
- package/legacy/locales/arSD.js +8 -1
- package/legacy/locales/bgBG.js +8 -1
- package/legacy/locales/csCZ.js +7 -0
- package/legacy/locales/daDK.js +8 -1
- package/legacy/locales/deDE.js +10 -3
- package/legacy/locales/elGR.js +7 -0
- package/legacy/locales/esES.js +7 -0
- package/legacy/locales/faIR.js +8 -1
- package/legacy/locales/fiFI.js +7 -0
- package/legacy/locales/frFR.js +7 -0
- package/legacy/locales/heIL.js +8 -1
- package/legacy/locales/huHU.js +8 -1
- package/legacy/locales/itIT.js +7 -0
- package/legacy/locales/jaJP.js +7 -0
- package/legacy/locales/koKR.js +7 -0
- package/legacy/locales/nlNL.js +7 -0
- package/legacy/locales/plPL.js +8 -1
- package/legacy/locales/ptBR.js +8 -1
- package/legacy/locales/ruRU.js +7 -0
- package/legacy/locales/skSK.js +7 -0
- package/legacy/locales/trTR.js +8 -1
- package/legacy/locales/ukUA.js +7 -0
- package/legacy/locales/viVN.js +7 -0
- package/legacy/locales/zhCN.js +7 -0
- package/legacy/models/events/gridEvents.js +8 -0
- package/legacy/models/index.js +4 -3
- package/legacy/utils/createSelector.js +18 -2
- package/legacy/utils/exportAs.js +1 -1
- package/locales/arSD.js +8 -1
- package/locales/bgBG.js +8 -1
- package/locales/csCZ.js +7 -0
- package/locales/daDK.js +8 -1
- package/locales/deDE.js +10 -3
- package/locales/elGR.js +7 -0
- package/locales/esES.js +7 -0
- package/locales/faIR.js +8 -1
- package/locales/fiFI.js +7 -0
- package/locales/frFR.js +7 -0
- package/locales/heIL.js +8 -1
- package/locales/huHU.js +8 -1
- package/locales/itIT.js +7 -0
- package/locales/jaJP.js +7 -0
- package/locales/koKR.js +7 -0
- package/locales/nlNL.js +7 -0
- package/locales/plPL.js +8 -1
- package/locales/ptBR.js +8 -1
- package/locales/ruRU.js +7 -0
- package/locales/skSK.js +7 -0
- package/locales/trTR.js +8 -1
- package/locales/ukUA.js +7 -0
- package/locales/viVN.js +7 -0
- package/locales/zhCN.js +7 -0
- package/models/api/gridCoreApi.d.ts +10 -0
- package/models/api/gridEditingApi.d.ts +23 -4
- package/models/api/gridFilterApi.d.ts +5 -0
- package/models/api/gridFocusApi.d.ts +1 -0
- package/models/api/gridLocaleTextApi.d.ts +5 -0
- package/models/api/gridRowApi.d.ts +34 -0
- package/models/api/index.d.ts +1 -1
- package/models/colDef/gridColDef.d.ts +13 -0
- package/models/events/gridEventLookup.d.ts +293 -3
- package/models/events/gridEvents.d.ts +8 -251
- package/models/events/gridEvents.js +8 -0
- package/models/gridExport.d.ts +29 -2
- package/models/gridFilterModel.d.ts +11 -0
- package/models/gridFilterOperator.d.ts +1 -1
- package/models/gridIconSlotsComponent.d.ts +10 -0
- package/models/gridStateCommunity.d.ts +0 -2
- package/models/index.d.ts +1 -1
- package/models/index.js +4 -3
- package/models/props/DataGridProps.d.ts +56 -28
- package/modern/DataGrid/DataGrid.js +35 -1
- package/modern/DataGrid/useDataGridProps.js +2 -1
- package/modern/colDef/gridActionsColDef.js +2 -1
- package/modern/colDef/gridBooleanColDef.js +2 -1
- package/modern/colDef/gridCheckboxSelectionColDef.js +1 -0
- package/modern/colDef/gridDateColDef.js +4 -2
- package/modern/colDef/gridNumericColDef.js +3 -2
- package/modern/colDef/gridNumericOperators.js +11 -0
- package/modern/colDef/gridSingleSelectColDef.js +3 -2
- package/modern/colDef/gridSingleSelectOperators.js +52 -0
- package/modern/colDef/gridStringColDef.js +3 -2
- package/modern/colDef/gridStringOperators.js +12 -0
- package/modern/components/GridFooter.js +11 -2
- package/modern/components/GridRow.js +9 -5
- package/modern/components/GridRowCount.js +1 -0
- package/modern/components/GridScrollArea.js +3 -4
- package/modern/components/GridSelectedRowCount.js +2 -1
- package/modern/components/base/GridBody.js +1 -2
- package/modern/components/base/GridOverlays.js +2 -3
- package/modern/components/cell/GridActionsCell.js +14 -3
- package/modern/components/cell/GridCell.js +8 -8
- package/modern/components/cell/GridEditBooleanCell.js +101 -6
- package/modern/components/cell/GridEditDateCell.js +99 -5
- package/modern/components/cell/GridEditInputCell.js +29 -5
- package/modern/components/cell/GridEditSingleSelectCell.js +28 -5
- package/modern/components/cell/index.js +2 -0
- package/modern/components/columnHeaders/GridColumnHeaderItem.js +15 -16
- package/modern/components/columnSelection/GridCellCheckboxRenderer.js +2 -3
- package/modern/components/columnSelection/GridHeaderCheckbox.js +4 -5
- package/modern/components/containers/GridFooterContainer.js +11 -2
- package/modern/components/containers/GridRoot.js +25 -3
- package/modern/components/containers/GridRootStyles.js +36 -1
- package/modern/components/containers/GridToolbarContainer.js +12 -2
- package/modern/components/menu/GridMenu.js +1 -0
- package/modern/components/panel/GridPanelContent.js +13 -2
- package/modern/components/panel/GridPanelFooter.js +13 -2
- package/modern/components/panel/GridPanelHeader.js +13 -2
- package/modern/components/toolbar/GridToolbar.js +30 -7
- package/modern/components/toolbar/GridToolbarExport.js +15 -20
- package/modern/components/toolbar/GridToolbarQuickFilter.js +85 -0
- package/modern/components/toolbar/index.js +3 -2
- package/modern/constants/defaultGridSlotsComponents.js +4 -2
- package/modern/constants/gridClasses.js +1 -1
- package/modern/constants/localeTextConstants.js +8 -1
- package/modern/hooks/core/pipeProcessing/useGridPipeProcessing.js +10 -9
- package/modern/hooks/core/strategyProcessing/useGridStrategyProcessing.js +6 -7
- package/modern/hooks/core/useGridApiInitialization.js +3 -3
- package/modern/hooks/core/useGridErrorHandler.js +1 -2
- package/modern/hooks/core/useGridStateInitialization.js +1 -2
- package/modern/hooks/features/columnHeaders/useGridColumnHeaders.js +5 -6
- package/modern/hooks/features/columnMenu/useGridColumnMenu.js +3 -3
- package/modern/hooks/features/columns/useGridColumnSpanning.js +1 -2
- package/modern/hooks/features/columns/useGridColumns.js +8 -9
- package/modern/hooks/features/dimensions/useGridDimensions.js +8 -9
- package/modern/hooks/features/editRows/useGridCellEditing.new.js +131 -32
- package/modern/hooks/features/editRows/useGridCellEditing.old.js +20 -21
- package/modern/hooks/features/editRows/useGridEditing.old.js +4 -5
- package/modern/hooks/features/editRows/useGridRowEditing.new.js +120 -42
- package/modern/hooks/features/editRows/useGridRowEditing.old.js +21 -22
- package/modern/hooks/features/events/useGridEvents.js +17 -18
- package/modern/hooks/features/export/serializers/csvSerializer.js +5 -5
- package/modern/hooks/features/export/useGridCsvExport.js +21 -16
- package/modern/hooks/features/export/useGridPrintExport.js +20 -0
- package/modern/hooks/features/export/utils.js +13 -0
- package/modern/hooks/features/filter/gridFilterState.js +3 -1
- package/modern/hooks/features/filter/gridFilterUtils.js +80 -2
- package/modern/hooks/features/filter/useGridFilter.js +20 -8
- package/modern/hooks/features/focus/useGridFocus.js +29 -33
- package/modern/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +4 -5
- package/modern/hooks/features/pagination/useGridPage.js +3 -4
- package/modern/hooks/features/pagination/useGridPageSize.js +2 -3
- package/modern/hooks/features/preferencesPanel/useGridPreferencesPanel.js +4 -6
- package/modern/hooks/features/rows/gridRowsSelector.js +1 -0
- package/modern/hooks/features/rows/gridRowsUtils.js +77 -1
- package/modern/hooks/features/rows/useGridRows.js +148 -128
- package/modern/hooks/features/rows/useGridRowsPreProcessors.js +2 -0
- package/modern/hooks/features/scroll/useGridScroll.js +6 -1
- package/modern/hooks/features/selection/useGridSelection.js +13 -10
- package/modern/hooks/features/sorting/useGridSorting.js +8 -9
- package/modern/hooks/features/virtualization/useGridVirtualScroller.js +14 -5
- package/modern/hooks/utils/useGridApiEventHandler.js +20 -9
- package/modern/hooks/utils/useGridNativeEventListener.js +1 -2
- package/modern/hooks/utils/useGridSelector.js +1 -1
- package/modern/index.js +1 -1
- package/modern/internals/index.js +5 -2
- package/modern/locales/arSD.js +8 -1
- package/modern/locales/bgBG.js +8 -1
- package/modern/locales/csCZ.js +7 -0
- package/modern/locales/daDK.js +8 -1
- package/modern/locales/deDE.js +10 -3
- package/modern/locales/elGR.js +7 -0
- package/modern/locales/esES.js +7 -0
- package/modern/locales/faIR.js +8 -1
- package/modern/locales/fiFI.js +7 -0
- package/modern/locales/frFR.js +7 -0
- package/modern/locales/heIL.js +8 -1
- package/modern/locales/huHU.js +8 -1
- package/modern/locales/itIT.js +7 -0
- package/modern/locales/jaJP.js +7 -0
- package/modern/locales/koKR.js +7 -0
- package/modern/locales/nlNL.js +7 -0
- package/modern/locales/plPL.js +8 -1
- package/modern/locales/ptBR.js +8 -1
- package/modern/locales/ruRU.js +7 -0
- package/modern/locales/skSK.js +7 -0
- package/modern/locales/trTR.js +8 -1
- package/modern/locales/ukUA.js +7 -0
- package/modern/locales/viVN.js +7 -0
- package/modern/locales/zhCN.js +7 -0
- package/modern/models/events/gridEvents.js +8 -0
- package/modern/models/index.js +4 -3
- package/modern/utils/createSelector.js +20 -2
- package/modern/utils/exportAs.js +1 -1
- package/node/DataGrid/DataGrid.js +35 -1
- package/node/DataGrid/useDataGridProps.js +2 -1
- package/node/colDef/gridActionsColDef.js +2 -1
- package/node/colDef/gridBooleanColDef.js +2 -1
- package/node/colDef/gridCheckboxSelectionColDef.js +1 -0
- package/node/colDef/gridDateColDef.js +4 -2
- package/node/colDef/gridNumericColDef.js +2 -1
- package/node/colDef/gridNumericOperators.js +15 -1
- package/node/colDef/gridSingleSelectColDef.js +2 -1
- package/node/colDef/gridSingleSelectOperators.js +56 -1
- package/node/colDef/gridStringColDef.js +2 -1
- package/node/colDef/gridStringOperators.js +16 -1
- package/node/components/GridFooter.js +10 -1
- package/node/components/GridRow.js +9 -6
- package/node/components/GridRowCount.js +1 -0
- package/node/components/GridScrollArea.js +3 -5
- package/node/components/GridSelectedRowCount.js +2 -1
- package/node/components/base/GridBody.js +1 -3
- package/node/components/base/GridOverlays.js +2 -4
- package/node/components/cell/GridActionsCell.js +13 -4
- package/node/components/cell/GridCell.js +7 -7
- package/node/components/cell/GridEditBooleanCell.js +100 -5
- package/node/components/cell/GridEditDateCell.js +98 -4
- package/node/components/cell/GridEditInputCell.js +29 -5
- package/node/components/cell/GridEditSingleSelectCell.js +28 -6
- package/node/components/cell/index.js +26 -0
- package/node/components/columnHeaders/GridColumnHeaderItem.js +15 -17
- package/node/components/columnSelection/GridCellCheckboxRenderer.js +2 -4
- package/node/components/columnSelection/GridHeaderCheckbox.js +4 -6
- package/node/components/containers/GridFooterContainer.js +10 -1
- package/node/components/containers/GridRoot.js +24 -3
- package/node/components/containers/GridRootStyles.js +36 -1
- package/node/components/containers/GridToolbarContainer.js +11 -1
- package/node/components/menu/GridMenu.js +1 -0
- package/node/components/panel/GridPanelContent.js +11 -1
- package/node/components/panel/GridPanelFooter.js +11 -1
- package/node/components/panel/GridPanelHeader.js +11 -1
- package/node/components/toolbar/GridToolbar.js +32 -7
- package/node/components/toolbar/GridToolbarExport.js +14 -19
- package/node/components/toolbar/GridToolbarQuickFilter.js +109 -0
- package/node/components/toolbar/index.js +42 -11
- package/node/constants/defaultGridSlotsComponents.js +3 -1
- package/node/constants/gridClasses.js +1 -1
- package/node/constants/localeTextConstants.js +8 -1
- package/node/hooks/core/pipeProcessing/useGridPipeProcessing.js +10 -8
- package/node/hooks/core/strategyProcessing/useGridStrategyProcessing.js +6 -8
- package/node/hooks/core/useGridApiInitialization.js +3 -4
- package/node/hooks/core/useGridErrorHandler.js +1 -3
- package/node/hooks/core/useGridStateInitialization.js +1 -3
- package/node/hooks/features/columnHeaders/useGridColumnHeaders.js +5 -7
- package/node/hooks/features/columnMenu/useGridColumnMenu.js +3 -4
- package/node/hooks/features/columns/useGridColumnSpanning.js +1 -3
- package/node/hooks/features/columns/useGridColumns.js +8 -10
- package/node/hooks/features/dimensions/useGridDimensions.js +8 -10
- package/node/hooks/features/editRows/useGridCellEditing.new.js +133 -32
- package/node/hooks/features/editRows/useGridCellEditing.old.js +20 -22
- package/node/hooks/features/editRows/useGridEditing.old.js +4 -6
- package/node/hooks/features/editRows/useGridRowEditing.new.js +122 -43
- package/node/hooks/features/editRows/useGridRowEditing.old.js +21 -23
- package/node/hooks/features/events/useGridEvents.js +17 -19
- package/node/hooks/features/export/serializers/csvSerializer.js +5 -5
- package/node/hooks/features/export/useGridCsvExport.js +26 -17
- package/node/hooks/features/export/useGridPrintExport.js +25 -0
- package/node/hooks/features/export/utils.js +19 -2
- package/node/hooks/features/filter/gridFilterState.js +3 -1
- package/node/hooks/features/filter/gridFilterUtils.js +92 -3
- package/node/hooks/features/filter/useGridFilter.js +21 -9
- package/node/hooks/features/focus/useGridFocus.js +29 -34
- package/node/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +4 -6
- package/node/hooks/features/pagination/useGridPage.js +3 -5
- package/node/hooks/features/pagination/useGridPageSize.js +2 -4
- package/node/hooks/features/preferencesPanel/useGridPreferencesPanel.js +4 -8
- package/node/hooks/features/rows/gridRowsSelector.js +3 -1
- package/node/hooks/features/rows/gridRowsUtils.js +95 -1
- package/node/hooks/features/rows/useGridRows.js +150 -126
- package/node/hooks/features/rows/useGridRowsPreProcessors.js +2 -0
- package/node/hooks/features/scroll/useGridScroll.js +6 -1
- package/node/hooks/features/selection/useGridSelection.js +13 -11
- package/node/hooks/features/sorting/useGridSorting.js +8 -10
- package/node/hooks/features/virtualization/useGridVirtualScroller.js +14 -6
- package/node/hooks/utils/useGridApiEventHandler.js +22 -10
- package/node/hooks/utils/useGridNativeEventListener.js +1 -3
- package/node/hooks/utils/useGridSelector.js +1 -1
- package/node/index.js +1 -1
- package/node/internals/index.js +39 -3
- package/node/locales/arSD.js +8 -1
- package/node/locales/bgBG.js +8 -1
- package/node/locales/csCZ.js +7 -0
- package/node/locales/daDK.js +8 -1
- package/node/locales/deDE.js +10 -3
- package/node/locales/elGR.js +7 -0
- package/node/locales/esES.js +7 -0
- package/node/locales/faIR.js +8 -1
- package/node/locales/fiFI.js +7 -0
- package/node/locales/frFR.js +7 -0
- package/node/locales/heIL.js +8 -1
- package/node/locales/huHU.js +8 -1
- package/node/locales/itIT.js +7 -0
- package/node/locales/jaJP.js +7 -0
- package/node/locales/koKR.js +7 -0
- package/node/locales/nlNL.js +7 -0
- package/node/locales/plPL.js +8 -1
- package/node/locales/ptBR.js +8 -1
- package/node/locales/ruRU.js +7 -0
- package/node/locales/skSK.js +7 -0
- package/node/locales/trTR.js +8 -1
- package/node/locales/ukUA.js +7 -0
- package/node/locales/viVN.js +7 -0
- package/node/locales/zhCN.js +7 -0
- package/node/models/events/gridEvents.js +8 -0
- package/node/models/index.js +0 -13
- package/node/utils/createSelector.js +25 -4
- package/node/utils/exportAs.js +1 -1
- package/package.json +3 -2
- package/utils/createSelector.d.ts +2 -1
- package/utils/createSelector.js +20 -2
- package/utils/exportAs.d.ts +2 -2
- package/utils/exportAs.js +1 -1
|
@@ -6,20 +6,25 @@ import { FinalizationRegistryBasedCleanupTracking } from '../../utils/cleanupTra
|
|
|
6
6
|
* Signal to the underlying logic what version of the public component API
|
|
7
7
|
* of the data grid is exposed.
|
|
8
8
|
*/
|
|
9
|
-
var GridSignature;
|
|
9
|
+
var GridSignature;
|
|
10
10
|
|
|
11
11
|
(function (GridSignature) {
|
|
12
12
|
GridSignature["DataGrid"] = "DataGrid";
|
|
13
13
|
GridSignature["DataGridPro"] = "DataGridPro";
|
|
14
14
|
})(GridSignature || (GridSignature = {}));
|
|
15
15
|
|
|
16
|
+
// We use class to make it easier to detect in heap snapshots by name
|
|
16
17
|
class ObjectToBeRetainedByReact {} // Based on https://github.com/Bnaya/use-dispose-uncommitted/blob/main/src/finalization-registry-based-impl.ts
|
|
17
18
|
// Check https://github.com/facebook/react/issues/15317 to get more information
|
|
18
19
|
|
|
19
20
|
|
|
20
|
-
export function createUseGridApiEventHandler(
|
|
21
|
+
export function createUseGridApiEventHandler(registryContainer) {
|
|
21
22
|
let cleanupTokensCounter = 0;
|
|
22
23
|
return function useGridApiEventHandler(apiRef, eventName, handler, options) {
|
|
24
|
+
if (registryContainer.registry === null) {
|
|
25
|
+
registryContainer.registry = typeof FinalizationRegistry !== 'undefined' ? new FinalizationRegistryBasedCleanupTracking() : new TimerBasedCleanupTracking();
|
|
26
|
+
}
|
|
27
|
+
|
|
23
28
|
const [objectRetainedByReact] = React.useState(new ObjectToBeRetainedByReact());
|
|
24
29
|
const subscription = React.useRef(null);
|
|
25
30
|
const handlerRef = React.useRef();
|
|
@@ -38,7 +43,7 @@ export function createUseGridApiEventHandler(registry) {
|
|
|
38
43
|
cleanupTokenRef.current = {
|
|
39
44
|
cleanupToken: cleanupTokensCounter
|
|
40
45
|
};
|
|
41
|
-
registry.register(objectRetainedByReact, // The callback below will be called once this reference stops being retained
|
|
46
|
+
registryContainer.registry.register(objectRetainedByReact, // The callback below will be called once this reference stops being retained
|
|
42
47
|
() => {
|
|
43
48
|
subscription.current?.();
|
|
44
49
|
subscription.current = null;
|
|
@@ -49,7 +54,7 @@ export function createUseGridApiEventHandler(registry) {
|
|
|
49
54
|
subscription.current = null;
|
|
50
55
|
|
|
51
56
|
if (cleanupTokenRef.current) {
|
|
52
|
-
registry.unregister(cleanupTokenRef.current);
|
|
57
|
+
registryContainer.registry.unregister(cleanupTokenRef.current);
|
|
53
58
|
cleanupTokenRef.current = null;
|
|
54
59
|
}
|
|
55
60
|
}
|
|
@@ -65,10 +70,10 @@ export function createUseGridApiEventHandler(registry) {
|
|
|
65
70
|
subscription.current = apiRef.current.subscribeEvent(eventName, enhancedHandler, options);
|
|
66
71
|
}
|
|
67
72
|
|
|
68
|
-
if (cleanupTokenRef.current && registry) {
|
|
73
|
+
if (cleanupTokenRef.current && registryContainer.registry) {
|
|
69
74
|
// If the effect was called, it means that this render was committed
|
|
70
75
|
// so we can trust the cleanup function to remove the listener.
|
|
71
|
-
registry.unregister(cleanupTokenRef.current);
|
|
76
|
+
registryContainer.registry.unregister(cleanupTokenRef.current);
|
|
72
77
|
cleanupTokenRef.current = null;
|
|
73
78
|
}
|
|
74
79
|
|
|
@@ -79,10 +84,16 @@ export function createUseGridApiEventHandler(registry) {
|
|
|
79
84
|
}, [apiRef, eventName, options]);
|
|
80
85
|
};
|
|
81
86
|
}
|
|
82
|
-
const
|
|
87
|
+
const registryContainer = {
|
|
88
|
+
registry: null
|
|
89
|
+
}; // TODO: move to @mui/x-data-grid/internals
|
|
90
|
+
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
83
91
|
|
|
84
|
-
export const unstable_resetCleanupTracking = () =>
|
|
85
|
-
|
|
92
|
+
export const unstable_resetCleanupTracking = () => {
|
|
93
|
+
registryContainer.registry?.reset();
|
|
94
|
+
registryContainer.registry = null;
|
|
95
|
+
};
|
|
96
|
+
export const useGridApiEventHandler = createUseGridApiEventHandler(registryContainer);
|
|
86
97
|
const optionsSubscriberOptions = {
|
|
87
98
|
isFirst: true
|
|
88
99
|
};
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { GridEvents } from '../../models/events';
|
|
3
2
|
import { isFunction } from '../../utils/utils';
|
|
4
3
|
import { useGridLogger } from './useGridLogger';
|
|
5
4
|
export const useGridNativeEventListener = (apiRef, ref, eventName, handler, options) => {
|
|
@@ -32,7 +31,7 @@ export const useGridNativeEventListener = (apiRef, ref, eventName, handler, opti
|
|
|
32
31
|
boundElem.removeEventListener(eventName, wrapHandler, options);
|
|
33
32
|
};
|
|
34
33
|
|
|
35
|
-
apiRef.current.subscribeEvent(
|
|
34
|
+
apiRef.current.subscribeEvent('unmount', unsubscribe);
|
|
36
35
|
}
|
|
37
36
|
}, [ref, wrapHandler, eventName, added, logger, options, apiRef]);
|
|
38
37
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { buildWarning } from '../../utils/warning';
|
|
2
2
|
|
|
3
3
|
function isOutputSelector(selector) {
|
|
4
|
-
return selector.
|
|
4
|
+
return selector.acceptsApiRef;
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
const stateNotInitializedWarning = buildWarning(['MUI: `useGridSelector` has been called before the initialization of the state.', 'This hook can only be used inside the context of the grid.']);
|
package/modern/index.js
CHANGED
|
@@ -35,7 +35,10 @@ export { useGridStatePersistence } from '../hooks/features/statePersistence/useG
|
|
|
35
35
|
export { useGridVirtualScroller } from '../hooks/features/virtualization/useGridVirtualScroller';
|
|
36
36
|
export { useGridVisibleRows } from '../hooks/utils/useGridVisibleRows';
|
|
37
37
|
export { useGridInitializeState } from '../hooks/utils/useGridInitializeState';
|
|
38
|
-
export {
|
|
38
|
+
export { getColumnsToExport, defaultGetRowsToExport } from '../hooks/features/export/utils';
|
|
39
|
+
export { createSelector, unstable_resetCreateSelectorCache } from '../utils/createSelector';
|
|
39
40
|
export { findParentElementFromClassName } from '../utils/domUtils';
|
|
40
41
|
export { isNavigationKey } from '../utils/keyboardUtils';
|
|
41
|
-
export { clamp, isDeepEqual } from '../utils/utils';
|
|
42
|
+
export { clamp, isDeepEqual } from '../utils/utils';
|
|
43
|
+
export { buildWarning } from '../utils/warning';
|
|
44
|
+
export { exportAs } from '../utils/exportAs';
|
package/modern/locales/arSD.js
CHANGED
|
@@ -20,11 +20,16 @@ const arSDGrid = {
|
|
|
20
20
|
toolbarFiltersTooltipHide: 'إخفاء المرشِحات',
|
|
21
21
|
toolbarFiltersTooltipShow: 'اظهر المرشِحات',
|
|
22
22
|
toolbarFiltersTooltipActive: count => count !== 1 ? `${count} من المرشِحات النشطة` : `مرشِح نشط`,
|
|
23
|
+
// Quick filter toolbar field
|
|
24
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
25
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
26
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
23
27
|
// Export selector toolbar button text
|
|
24
28
|
toolbarExport: 'تصدير',
|
|
25
29
|
toolbarExportLabel: 'تصدير',
|
|
26
30
|
toolbarExportCSV: 'تنزيل كملف CSV',
|
|
27
31
|
// toolbarExportPrint: 'Print',
|
|
32
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
28
33
|
// Columns panel text
|
|
29
34
|
columnsPanelTextFieldLabel: 'البحث عن العمود',
|
|
30
35
|
columnsPanelTextFieldPlaceholder: 'عنوان العمود',
|
|
@@ -103,6 +108,8 @@ const arSDGrid = {
|
|
|
103
108
|
unGroupColumn: name => `إيقاف التجميع حسب ${name}`,
|
|
104
109
|
// Master/detail
|
|
105
110
|
expandDetailPanel: 'توسيع',
|
|
106
|
-
collapseDetailPanel: 'طوي'
|
|
111
|
+
collapseDetailPanel: 'طوي' // Row reordering text
|
|
112
|
+
// rowReorderingHeaderName: 'Row reordering',
|
|
113
|
+
|
|
107
114
|
};
|
|
108
115
|
export const arSD = getGridLocalization(arSDGrid, arSDCore);
|
package/modern/locales/bgBG.js
CHANGED
|
@@ -20,11 +20,16 @@ const bgBGGrid = {
|
|
|
20
20
|
toolbarFiltersTooltipHide: 'Скрий Филтрите',
|
|
21
21
|
toolbarFiltersTooltipShow: 'Покажи Филтрите',
|
|
22
22
|
toolbarFiltersTooltipActive: count => `${count} активни филтри`,
|
|
23
|
+
// Quick filter toolbar field
|
|
24
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
25
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
26
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
23
27
|
// Export selector toolbar button text
|
|
24
28
|
toolbarExport: 'Изтегли',
|
|
25
29
|
toolbarExportLabel: 'Изтегли',
|
|
26
30
|
toolbarExportCSV: 'Изтегли като CSV',
|
|
27
31
|
toolbarExportPrint: 'Принтиране',
|
|
32
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
28
33
|
// Columns panel text
|
|
29
34
|
columnsPanelTextFieldLabel: 'Намери колона',
|
|
30
35
|
columnsPanelTextFieldPlaceholder: 'Заглавие на колона',
|
|
@@ -103,6 +108,8 @@ const bgBGGrid = {
|
|
|
103
108
|
unGroupColumn: name => `Спри групиране по ${name}`,
|
|
104
109
|
// Master/detail
|
|
105
110
|
expandDetailPanel: 'Разгъване',
|
|
106
|
-
collapseDetailPanel: 'Свиване'
|
|
111
|
+
collapseDetailPanel: 'Свиване' // Row reordering text
|
|
112
|
+
// rowReorderingHeaderName: 'Row reordering',
|
|
113
|
+
|
|
107
114
|
};
|
|
108
115
|
export const bgBG = getGridLocalization(bgBGGrid, bgBGCore);
|
package/modern/locales/csCZ.js
CHANGED
|
@@ -30,11 +30,16 @@ const csCZGrid = {
|
|
|
30
30
|
|
|
31
31
|
return `${count} ${pluralForm}`;
|
|
32
32
|
},
|
|
33
|
+
// Quick filter toolbar field
|
|
34
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
35
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
36
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
33
37
|
// Export selector toolbar button text
|
|
34
38
|
toolbarExport: 'Export',
|
|
35
39
|
toolbarExportLabel: 'Export',
|
|
36
40
|
toolbarExportCSV: 'Stáhnout jako CSV',
|
|
37
41
|
toolbarExportPrint: 'Vytisknout',
|
|
42
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
38
43
|
// Columns panel text
|
|
39
44
|
columnsPanelTextFieldLabel: 'Najít sloupec',
|
|
40
45
|
columnsPanelTextFieldPlaceholder: 'Název sloupce',
|
|
@@ -138,6 +143,8 @@ const csCZGrid = {
|
|
|
138
143
|
unGroupColumn: name => `Přestat zoskupovat podle ${name}` // Master/detail
|
|
139
144
|
// expandDetailPanel: 'Expand',
|
|
140
145
|
// collapseDetailPanel: 'Collapse',
|
|
146
|
+
// Row reordering text
|
|
147
|
+
// rowReorderingHeaderName: 'Row reordering',
|
|
141
148
|
|
|
142
149
|
};
|
|
143
150
|
export const csCZ = getGridLocalization(csCZGrid, csCZCore);
|
package/modern/locales/daDK.js
CHANGED
|
@@ -20,11 +20,16 @@ const daDKGrid = {
|
|
|
20
20
|
toolbarFiltersTooltipHide: 'Skjul filtre',
|
|
21
21
|
toolbarFiltersTooltipShow: 'Vis filtre',
|
|
22
22
|
toolbarFiltersTooltipActive: count => count !== 1 ? `${count} aktive filtre` : `${count} aktivt filter`,
|
|
23
|
+
// Quick filter toolbar field
|
|
24
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
25
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
26
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
23
27
|
// Export selector toolbar button text
|
|
24
28
|
// toolbarExport: 'Export',
|
|
25
29
|
toolbarExportLabel: 'Eksporter',
|
|
26
30
|
toolbarExportCSV: 'Download som CSV',
|
|
27
31
|
toolbarExportPrint: 'Print',
|
|
32
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
28
33
|
// Columns panel text
|
|
29
34
|
columnsPanelTextFieldLabel: 'Find kolonne',
|
|
30
35
|
columnsPanelTextFieldPlaceholder: 'Kolonne titel',
|
|
@@ -103,6 +108,8 @@ const daDKGrid = {
|
|
|
103
108
|
unGroupColumn: name => `Fjern gruppéring efter ${name}`,
|
|
104
109
|
// Master/detail
|
|
105
110
|
expandDetailPanel: 'Udvid',
|
|
106
|
-
collapseDetailPanel: 'Kollaps'
|
|
111
|
+
collapseDetailPanel: 'Kollaps' // Row reordering text
|
|
112
|
+
// rowReorderingHeaderName: 'Row reordering',
|
|
113
|
+
|
|
107
114
|
};
|
|
108
115
|
export const daDK = getGridLocalization(daDKGrid, daDKCore);
|
package/modern/locales/deDE.js
CHANGED
|
@@ -20,11 +20,16 @@ const deDEGrid = {
|
|
|
20
20
|
toolbarFiltersTooltipHide: 'Verberge Filter',
|
|
21
21
|
toolbarFiltersTooltipShow: 'Zeige Filter',
|
|
22
22
|
toolbarFiltersTooltipActive: count => count !== 1 ? `${count} aktive Filter` : `${count} aktiver Filter`,
|
|
23
|
+
// Quick filter toolbar field
|
|
24
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
25
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
26
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
23
27
|
// Export selector toolbar button text
|
|
24
28
|
toolbarExport: 'Exportieren',
|
|
25
29
|
toolbarExportLabel: 'Exportieren',
|
|
26
30
|
toolbarExportCSV: 'Download als CSV',
|
|
27
31
|
toolbarExportPrint: 'Drucken',
|
|
32
|
+
toolbarExportExcel: 'Download als Excel',
|
|
28
33
|
// Columns panel text
|
|
29
34
|
columnsPanelTextFieldLabel: 'Finde Spalte',
|
|
30
35
|
columnsPanelTextFieldPlaceholder: 'Spaltenüberschrift',
|
|
@@ -34,7 +39,7 @@ const deDEGrid = {
|
|
|
34
39
|
// Filter panel text
|
|
35
40
|
filterPanelAddFilter: 'Filter hinzufügen',
|
|
36
41
|
filterPanelDeleteIconLabel: 'Löschen',
|
|
37
|
-
|
|
42
|
+
filterPanelLinkOperator: 'Logische Operatoren',
|
|
38
43
|
filterPanelOperators: 'Operatoren',
|
|
39
44
|
// TODO v6: rename to filterPanelOperator
|
|
40
45
|
filterPanelOperatorAnd: 'Und',
|
|
@@ -55,7 +60,7 @@ const deDEGrid = {
|
|
|
55
60
|
filterOperatorOnOrBefore: 'ist am oder vor',
|
|
56
61
|
filterOperatorIsEmpty: 'ist leer',
|
|
57
62
|
filterOperatorIsNotEmpty: 'ist nicht leer',
|
|
58
|
-
|
|
63
|
+
filterOperatorIsAnyOf: 'ist einer der Werte',
|
|
59
64
|
// Filter values text
|
|
60
65
|
filterValueAny: 'Beliebig',
|
|
61
66
|
filterValueTrue: 'Ja',
|
|
@@ -103,6 +108,8 @@ const deDEGrid = {
|
|
|
103
108
|
unGroupColumn: name => `Gruppierung nach ${name} aufheben`,
|
|
104
109
|
// Master/detail
|
|
105
110
|
expandDetailPanel: 'Aufklappen',
|
|
106
|
-
collapseDetailPanel: 'Zuklappen'
|
|
111
|
+
collapseDetailPanel: 'Zuklappen',
|
|
112
|
+
// Row reordering text
|
|
113
|
+
rowReorderingHeaderName: 'Reihen neu ordnen'
|
|
107
114
|
};
|
|
108
115
|
export const deDE = getGridLocalization(deDEGrid, deDECore);
|
package/modern/locales/elGR.js
CHANGED
|
@@ -19,11 +19,16 @@ const elGRGrid = {
|
|
|
19
19
|
toolbarFiltersTooltipHide: 'Απόκρυψη φίλτρων',
|
|
20
20
|
toolbarFiltersTooltipShow: 'Εμφάνιση φίλτρων',
|
|
21
21
|
toolbarFiltersTooltipActive: count => count !== 1 ? `${count} ενεργά φίλτρα` : `${count} ενεργό φίλτρο`,
|
|
22
|
+
// Quick filter toolbar field
|
|
23
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
24
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
25
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
22
26
|
// Export selector toolbar button text
|
|
23
27
|
toolbarExport: 'Εξαγωγή',
|
|
24
28
|
toolbarExportLabel: 'Εξαγωγή',
|
|
25
29
|
toolbarExportCSV: 'Λήψη ως CSV',
|
|
26
30
|
// toolbarExportPrint: 'Print',
|
|
31
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
27
32
|
// Columns panel text
|
|
28
33
|
columnsPanelTextFieldLabel: 'Εύρεση στήλης',
|
|
29
34
|
columnsPanelTextFieldPlaceholder: 'Επικεφαλίδα στήλης',
|
|
@@ -102,6 +107,8 @@ const elGRGrid = {
|
|
|
102
107
|
// Master/detail
|
|
103
108
|
// expandDetailPanel: 'Expand',
|
|
104
109
|
// collapseDetailPanel: 'Collapse',
|
|
110
|
+
// Row reordering text
|
|
111
|
+
// rowReorderingHeaderName: 'Row reordering',
|
|
105
112
|
|
|
106
113
|
};
|
|
107
114
|
export const elGR = getGridLocalization(elGRGrid);
|
package/modern/locales/esES.js
CHANGED
|
@@ -20,11 +20,16 @@ const esESGrid = {
|
|
|
20
20
|
toolbarFiltersTooltipHide: 'Ocultar filtros',
|
|
21
21
|
toolbarFiltersTooltipShow: 'Mostrar filtros',
|
|
22
22
|
toolbarFiltersTooltipActive: count => count > 1 ? `${count} filtros activos` : `${count} filtro activo`,
|
|
23
|
+
// Quick filter toolbar field
|
|
24
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
25
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
26
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
23
27
|
// Export selector toolbar button text
|
|
24
28
|
toolbarExport: 'Exportar',
|
|
25
29
|
toolbarExportLabel: 'Exportar',
|
|
26
30
|
toolbarExportCSV: 'Descargar como CSV',
|
|
27
31
|
// toolbarExportPrint: 'Print',
|
|
32
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
28
33
|
// Columns panel text
|
|
29
34
|
columnsPanelTextFieldLabel: 'Columna de búsqueda',
|
|
30
35
|
columnsPanelTextFieldPlaceholder: 'Título de columna',
|
|
@@ -103,6 +108,8 @@ const esESGrid = {
|
|
|
103
108
|
// Master/detail
|
|
104
109
|
// expandDetailPanel: 'Expand',
|
|
105
110
|
// collapseDetailPanel: 'Collapse',
|
|
111
|
+
// Row reordering text
|
|
112
|
+
// rowReorderingHeaderName: 'Row reordering',
|
|
106
113
|
|
|
107
114
|
};
|
|
108
115
|
export const esES = getGridLocalization(esESGrid, esESCore);
|
package/modern/locales/faIR.js
CHANGED
|
@@ -20,11 +20,16 @@ const faIRGrid = {
|
|
|
20
20
|
toolbarFiltersTooltipHide: 'مخفی کردن فیلترها',
|
|
21
21
|
toolbarFiltersTooltipShow: 'نمایش فیلترها',
|
|
22
22
|
toolbarFiltersTooltipActive: count => count !== 1 ? `${count} فیلترهای فعال` : `${count} فیلتر فعال`,
|
|
23
|
+
// Quick filter toolbar field
|
|
24
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
25
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
26
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
23
27
|
// Export selector toolbar button text
|
|
24
28
|
toolbarExport: 'خروجی',
|
|
25
29
|
toolbarExportLabel: 'خروجی',
|
|
26
30
|
toolbarExportCSV: 'دانلود به صورت CSV',
|
|
27
31
|
toolbarExportPrint: 'چاپ',
|
|
32
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
28
33
|
// Columns panel text
|
|
29
34
|
columnsPanelTextFieldLabel: 'پیداکردن ستون',
|
|
30
35
|
columnsPanelTextFieldPlaceholder: 'عنوان ستون',
|
|
@@ -103,6 +108,8 @@ const faIRGrid = {
|
|
|
103
108
|
unGroupColumn: name => `لغو گروهبندی براساس ${name}`,
|
|
104
109
|
// Master/detail
|
|
105
110
|
expandDetailPanel: 'بازکردن پنل جزئیات',
|
|
106
|
-
collapseDetailPanel: 'بستن پنل جزئیات'
|
|
111
|
+
collapseDetailPanel: 'بستن پنل جزئیات' // Row reordering text
|
|
112
|
+
// rowReorderingHeaderName: 'Row reordering',
|
|
113
|
+
|
|
107
114
|
};
|
|
108
115
|
export const faIR = getGridLocalization(faIRGrid, faIRCore);
|
package/modern/locales/fiFI.js
CHANGED
|
@@ -20,11 +20,16 @@ const fiFIGrid = {
|
|
|
20
20
|
toolbarFiltersTooltipHide: 'Piilota suodattimet',
|
|
21
21
|
toolbarFiltersTooltipShow: 'Näytä suodattimet',
|
|
22
22
|
toolbarFiltersTooltipActive: count => count !== 1 ? `${count} aktiivista suodatinta` : `${count} aktiivinen suodatin`,
|
|
23
|
+
// Quick filter toolbar field
|
|
24
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
25
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
26
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
23
27
|
// Export selector toolbar button text
|
|
24
28
|
toolbarExport: 'Export',
|
|
25
29
|
toolbarExportLabel: 'Export',
|
|
26
30
|
toolbarExportCSV: 'Lataa CSV-muodossa',
|
|
27
31
|
toolbarExportPrint: 'Tulosta',
|
|
32
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
28
33
|
// Columns panel text
|
|
29
34
|
columnsPanelTextFieldLabel: 'Etsi sarake',
|
|
30
35
|
columnsPanelTextFieldPlaceholder: 'Sarakkeen otsikko',
|
|
@@ -103,6 +108,8 @@ const fiFIGrid = {
|
|
|
103
108
|
// Master/detail
|
|
104
109
|
// expandDetailPanel: 'Expand',
|
|
105
110
|
// collapseDetailPanel: 'Collapse',
|
|
111
|
+
// Row reordering text
|
|
112
|
+
// rowReorderingHeaderName: 'Row reordering',
|
|
106
113
|
|
|
107
114
|
};
|
|
108
115
|
export const fiFI = getGridLocalization(fiFIGrid, fiFICore);
|
package/modern/locales/frFR.js
CHANGED
|
@@ -20,11 +20,16 @@ const frFRGrid = {
|
|
|
20
20
|
toolbarFiltersTooltipHide: 'Cacher les filtres',
|
|
21
21
|
toolbarFiltersTooltipShow: 'Afficher les filtres',
|
|
22
22
|
toolbarFiltersTooltipActive: count => count > 1 ? `${count} filtres actifs` : `${count} filtre actif`,
|
|
23
|
+
// Quick filter toolbar field
|
|
24
|
+
toolbarQuickFilterPlaceholder: 'Recherche...',
|
|
25
|
+
toolbarQuickFilterLabel: 'Recherche',
|
|
26
|
+
toolbarQuickFilterDeleteIconLabel: 'Supprimer',
|
|
23
27
|
// Export selector toolbar button text
|
|
24
28
|
toolbarExport: 'Exporter',
|
|
25
29
|
toolbarExportLabel: 'Exporter',
|
|
26
30
|
toolbarExportCSV: 'Télécharger en CSV',
|
|
27
31
|
toolbarExportPrint: 'Imprimer',
|
|
32
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
28
33
|
// Columns panel text
|
|
29
34
|
columnsPanelTextFieldLabel: 'Chercher colonne',
|
|
30
35
|
columnsPanelTextFieldPlaceholder: 'Titre de la colonne',
|
|
@@ -103,6 +108,8 @@ const frFRGrid = {
|
|
|
103
108
|
unGroupColumn: name => `Arrêter de grouper par ${name}` // Master/detail
|
|
104
109
|
// expandDetailPanel: 'Expand',
|
|
105
110
|
// collapseDetailPanel: 'Collapse',
|
|
111
|
+
// Row reordering text
|
|
112
|
+
// rowReorderingHeaderName: 'Row reordering',
|
|
106
113
|
|
|
107
114
|
};
|
|
108
115
|
export const frFR = getGridLocalization(frFRGrid, frFRCore);
|
package/modern/locales/heIL.js
CHANGED
|
@@ -20,11 +20,16 @@ const heILGrid = {
|
|
|
20
20
|
toolbarFiltersTooltipHide: 'הסתר מסננים',
|
|
21
21
|
toolbarFiltersTooltipShow: 'הצג מסננים',
|
|
22
22
|
toolbarFiltersTooltipActive: count => count !== 1 ? `${count} מסננים פעילים` : `מסנן אחד פעיל`,
|
|
23
|
+
// Quick filter toolbar field
|
|
24
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
25
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
26
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
23
27
|
// Export selector toolbar button text
|
|
24
28
|
toolbarExport: 'ייצוא',
|
|
25
29
|
toolbarExportLabel: 'ייצוא',
|
|
26
30
|
toolbarExportCSV: 'הורדה כ- CSV',
|
|
27
31
|
toolbarExportPrint: 'הדפסה',
|
|
32
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
28
33
|
// Columns panel text
|
|
29
34
|
columnsPanelTextFieldLabel: 'חפש עמודה',
|
|
30
35
|
columnsPanelTextFieldPlaceholder: 'כותרת עמודה',
|
|
@@ -103,6 +108,8 @@ const heILGrid = {
|
|
|
103
108
|
unGroupColumn: name => `הפסק לקבץ לפי ${name}`,
|
|
104
109
|
// Master/detail
|
|
105
110
|
expandDetailPanel: 'הרחב',
|
|
106
|
-
collapseDetailPanel: 'כווץ'
|
|
111
|
+
collapseDetailPanel: 'כווץ' // Row reordering text
|
|
112
|
+
// rowReorderingHeaderName: 'Row reordering',
|
|
113
|
+
|
|
107
114
|
};
|
|
108
115
|
export const heIL = getGridLocalization(heILGrid, heILCore);
|
package/modern/locales/huHU.js
CHANGED
|
@@ -20,11 +20,16 @@ const huHUGrid = {
|
|
|
20
20
|
toolbarFiltersTooltipHide: 'Szűrők elrejtése',
|
|
21
21
|
toolbarFiltersTooltipShow: 'Szűrők megjelenítése',
|
|
22
22
|
toolbarFiltersTooltipActive: count => `${count} aktív szűrő`,
|
|
23
|
+
// Quick filter toolbar field
|
|
24
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
25
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
26
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
23
27
|
// Export selector toolbar button text
|
|
24
28
|
toolbarExport: 'Exportálás',
|
|
25
29
|
toolbarExportLabel: 'Exportálás',
|
|
26
30
|
toolbarExportCSV: 'Mentés CSV fájlként',
|
|
27
31
|
toolbarExportPrint: 'Nyomtatás',
|
|
32
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
28
33
|
// Columns panel text
|
|
29
34
|
columnsPanelTextFieldLabel: 'Oszlop keresése',
|
|
30
35
|
columnsPanelTextFieldPlaceholder: 'Oszlop neve',
|
|
@@ -103,6 +108,8 @@ const huHUGrid = {
|
|
|
103
108
|
unGroupColumn: name => `${name} szerinti csoportosítás törlése`,
|
|
104
109
|
// Master/detail
|
|
105
110
|
expandDetailPanel: 'Kibontás',
|
|
106
|
-
collapseDetailPanel: 'Összecsukás'
|
|
111
|
+
collapseDetailPanel: 'Összecsukás' // Row reordering text
|
|
112
|
+
// rowReorderingHeaderName: 'Row reordering',
|
|
113
|
+
|
|
107
114
|
};
|
|
108
115
|
export const huHU = getGridLocalization(huHUGrid, huHUCore);
|
package/modern/locales/itIT.js
CHANGED
|
@@ -20,11 +20,16 @@ const itITGrid = {
|
|
|
20
20
|
toolbarFiltersTooltipHide: 'Nascondi i filtri',
|
|
21
21
|
toolbarFiltersTooltipShow: 'Mostra i filtri',
|
|
22
22
|
toolbarFiltersTooltipActive: count => count > 1 ? `${count} filtri attivi` : `${count} filtro attivo`,
|
|
23
|
+
// Quick filter toolbar field
|
|
24
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
25
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
26
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
23
27
|
// Export selector toolbar button text
|
|
24
28
|
toolbarExport: 'Esporta',
|
|
25
29
|
toolbarExportLabel: 'Esporta',
|
|
26
30
|
toolbarExportCSV: 'Esporta in CSV',
|
|
27
31
|
toolbarExportPrint: 'Stampa',
|
|
32
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
28
33
|
// Columns panel text
|
|
29
34
|
columnsPanelTextFieldLabel: 'Cerca colonna',
|
|
30
35
|
columnsPanelTextFieldPlaceholder: 'Titolo della colonna',
|
|
@@ -103,6 +108,8 @@ const itITGrid = {
|
|
|
103
108
|
unGroupColumn: name => `Annulla raggruppamento per ${name}` // Master/detail
|
|
104
109
|
// expandDetailPanel: 'Expand',
|
|
105
110
|
// collapseDetailPanel: 'Collapse',
|
|
111
|
+
// Row reordering text
|
|
112
|
+
// rowReorderingHeaderName: 'Row reordering',
|
|
106
113
|
|
|
107
114
|
};
|
|
108
115
|
export const itIT = getGridLocalization(itITGrid, itITCore);
|
package/modern/locales/jaJP.js
CHANGED
|
@@ -20,11 +20,16 @@ const jaJPGrid = {
|
|
|
20
20
|
toolbarFiltersTooltipHide: 'フィルター非表示',
|
|
21
21
|
toolbarFiltersTooltipShow: 'フィルター表示',
|
|
22
22
|
toolbarFiltersTooltipActive: count => `${count}件のフィルターを適用中`,
|
|
23
|
+
// Quick filter toolbar field
|
|
24
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
25
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
26
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
23
27
|
// Export selector toolbar button text
|
|
24
28
|
toolbarExport: 'エクスポート',
|
|
25
29
|
toolbarExportLabel: 'エクスポート',
|
|
26
30
|
toolbarExportCSV: 'CSVダウンロード',
|
|
27
31
|
// toolbarExportPrint: 'Print',
|
|
32
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
28
33
|
// Columns panel text
|
|
29
34
|
columnsPanelTextFieldLabel: '列検索',
|
|
30
35
|
columnsPanelTextFieldPlaceholder: '検索クエリを入力...',
|
|
@@ -103,6 +108,8 @@ const jaJPGrid = {
|
|
|
103
108
|
// Master/detail
|
|
104
109
|
// expandDetailPanel: 'Expand',
|
|
105
110
|
// collapseDetailPanel: 'Collapse',
|
|
111
|
+
// Row reordering text
|
|
112
|
+
// rowReorderingHeaderName: 'Row reordering',
|
|
106
113
|
|
|
107
114
|
};
|
|
108
115
|
export const jaJP = getGridLocalization(jaJPGrid, jaJPCore);
|
package/modern/locales/koKR.js
CHANGED
|
@@ -20,11 +20,16 @@ const koKRGrid = {
|
|
|
20
20
|
toolbarFiltersTooltipHide: '필터 숨기기',
|
|
21
21
|
toolbarFiltersTooltipShow: '필터 표시',
|
|
22
22
|
toolbarFiltersTooltipActive: count => `${count}건의 필터를 적용중`,
|
|
23
|
+
// Quick filter toolbar field
|
|
24
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
25
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
26
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
23
27
|
// Export selector toolbar button text
|
|
24
28
|
toolbarExport: '내보내기',
|
|
25
29
|
toolbarExportLabel: '내보내기',
|
|
26
30
|
toolbarExportCSV: 'CSV다운로드',
|
|
27
31
|
toolbarExportPrint: '프린트',
|
|
32
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
28
33
|
// Columns panel text
|
|
29
34
|
columnsPanelTextFieldLabel: '열 검색',
|
|
30
35
|
columnsPanelTextFieldPlaceholder: '열 이름',
|
|
@@ -103,6 +108,8 @@ const koKRGrid = {
|
|
|
103
108
|
// Master/detail
|
|
104
109
|
// expandDetailPanel: 'Expand',
|
|
105
110
|
// collapseDetailPanel: 'Collapse',
|
|
111
|
+
// Row reordering text
|
|
112
|
+
// rowReorderingHeaderName: 'Row reordering',
|
|
106
113
|
|
|
107
114
|
};
|
|
108
115
|
export const koKR = getGridLocalization(koKRGrid, koKRCore);
|
package/modern/locales/nlNL.js
CHANGED
|
@@ -20,11 +20,16 @@ const nlNLGrid = {
|
|
|
20
20
|
toolbarFiltersTooltipHide: 'Verberg filters',
|
|
21
21
|
toolbarFiltersTooltipShow: 'Toon filters',
|
|
22
22
|
toolbarFiltersTooltipActive: count => count > 1 ? `${count} actieve filters` : `${count} filter actief`,
|
|
23
|
+
// Quick filter toolbar field
|
|
24
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
25
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
26
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
23
27
|
// Export selector toolbar button text
|
|
24
28
|
toolbarExport: 'Exporteren',
|
|
25
29
|
toolbarExportLabel: 'Exporteren',
|
|
26
30
|
toolbarExportCSV: 'Exporteer naar CSV',
|
|
27
31
|
toolbarExportPrint: 'Print',
|
|
32
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
28
33
|
// Columns panel text
|
|
29
34
|
columnsPanelTextFieldLabel: 'Zoek kolom',
|
|
30
35
|
columnsPanelTextFieldPlaceholder: 'Kolomtitel',
|
|
@@ -103,6 +108,8 @@ const nlNLGrid = {
|
|
|
103
108
|
unGroupColumn: name => `Stop groeperen op ${name}` // Master/detail
|
|
104
109
|
// expandDetailPanel: 'Expand',
|
|
105
110
|
// collapseDetailPanel: 'Collapse',
|
|
111
|
+
// Row reordering text
|
|
112
|
+
// rowReorderingHeaderName: 'Row reordering',
|
|
106
113
|
|
|
107
114
|
};
|
|
108
115
|
export const nlNL = getGridLocalization(nlNLGrid, nlNLCore);
|
package/modern/locales/plPL.js
CHANGED
|
@@ -20,11 +20,16 @@ const plPLGrid = {
|
|
|
20
20
|
toolbarFiltersTooltipHide: 'Ukryj filtry',
|
|
21
21
|
toolbarFiltersTooltipShow: 'Pokaż filtry',
|
|
22
22
|
toolbarFiltersTooltipActive: count => `Liczba aktywnych filtrów: ${count}`,
|
|
23
|
+
// Quick filter toolbar field
|
|
24
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
25
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
26
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
23
27
|
// Export selector toolbar button text
|
|
24
28
|
toolbarExport: 'Eksportuj',
|
|
25
29
|
toolbarExportLabel: 'Eksportuj',
|
|
26
30
|
toolbarExportCSV: 'Pobierz jako plik CSV',
|
|
27
31
|
toolbarExportPrint: 'Drukuj',
|
|
32
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
28
33
|
// Columns panel text
|
|
29
34
|
columnsPanelTextFieldLabel: 'Znajdź kolumnę',
|
|
30
35
|
columnsPanelTextFieldPlaceholder: 'Tytuł kolumny',
|
|
@@ -103,6 +108,8 @@ const plPLGrid = {
|
|
|
103
108
|
unGroupColumn: name => `Rozgrupuj ${name}`,
|
|
104
109
|
// Master/detail
|
|
105
110
|
expandDetailPanel: 'Rozwiń',
|
|
106
|
-
collapseDetailPanel: 'Zwiń'
|
|
111
|
+
collapseDetailPanel: 'Zwiń' // Row reordering text
|
|
112
|
+
// rowReorderingHeaderName: 'Row reordering',
|
|
113
|
+
|
|
107
114
|
};
|
|
108
115
|
export const plPL = getGridLocalization(plPLGrid, plPLCore);
|
package/modern/locales/ptBR.js
CHANGED
|
@@ -20,11 +20,16 @@ const ptBRGrid = {
|
|
|
20
20
|
toolbarFiltersTooltipHide: 'Ocultar filtros',
|
|
21
21
|
toolbarFiltersTooltipShow: 'Exibir filtros',
|
|
22
22
|
toolbarFiltersTooltipActive: count => `${count} ${count !== 1 ? 'filtros' : 'filtro'} ${count !== 1 ? 'ativos' : 'ativo'}`,
|
|
23
|
+
// Quick filter toolbar field
|
|
24
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
25
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
26
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
23
27
|
// Export selector toolbar button text
|
|
24
28
|
toolbarExport: 'Exportar',
|
|
25
29
|
toolbarExportLabel: 'Exportar',
|
|
26
30
|
toolbarExportCSV: 'Baixar como CSV',
|
|
27
31
|
toolbarExportPrint: 'Print',
|
|
32
|
+
toolbarExportExcel: 'Baixar como Excel',
|
|
28
33
|
// Columns panel text
|
|
29
34
|
columnsPanelTextFieldLabel: 'Localizar coluna',
|
|
30
35
|
columnsPanelTextFieldPlaceholder: 'Título da coluna',
|
|
@@ -103,6 +108,8 @@ const ptBRGrid = {
|
|
|
103
108
|
unGroupColumn: name => `Parar agrupamento por ${name}`,
|
|
104
109
|
// Master/detail
|
|
105
110
|
expandDetailPanel: 'Expandir',
|
|
106
|
-
collapseDetailPanel: 'Esconder'
|
|
111
|
+
collapseDetailPanel: 'Esconder' // Row reordering text
|
|
112
|
+
// rowReorderingHeaderName: 'Row reordering',
|
|
113
|
+
|
|
107
114
|
};
|
|
108
115
|
export const ptBR = getGridLocalization(ptBRGrid, ptBRCore);
|