@mui/x-data-grid 5.10.0 → 5.11.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 +163 -10
- package/DataGrid/DataGrid.js +35 -1
- package/DataGrid/useDataGridProps.js +2 -1
- package/README.md +1 -1
- 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 +4 -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 +1 -2
- 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/GridToolbarContainer.d.ts +8 -2
- package/components/containers/GridToolbarContainer.js +12 -2
- 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/GridToolbarQuickFilter.d.ts +20 -0
- package/components/toolbar/GridToolbarQuickFilter.js +88 -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/localeTextConstants.js +5 -0
- package/hooks/core/pipeProcessing/gridPipeProcessingApi.d.ts +7 -0
- 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 -4
- package/hooks/features/columns/useGridColumnSpanning.js +1 -2
- 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 +3 -7
- package/hooks/features/rows/gridRowsUtils.d.ts +2 -1
- package/hooks/features/rows/gridRowsUtils.js +25 -1
- package/hooks/features/rows/useGridRows.js +100 -60
- 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.js +6 -7
- 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 +4 -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 +1 -2
- 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/GridToolbarContainer.js +12 -2
- 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 +103 -0
- package/legacy/components/toolbar/index.js +3 -2
- package/legacy/constants/localeTextConstants.js +5 -0
- 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 -4
- 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 +27 -1
- package/legacy/hooks/features/rows/useGridRows.js +104 -60
- 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 +6 -7
- 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 +5 -0
- package/legacy/locales/bgBG.js +5 -0
- package/legacy/locales/csCZ.js +5 -0
- package/legacy/locales/daDK.js +5 -0
- package/legacy/locales/deDE.js +10 -5
- package/legacy/locales/elGR.js +5 -0
- package/legacy/locales/esES.js +5 -0
- package/legacy/locales/faIR.js +5 -0
- package/legacy/locales/fiFI.js +5 -0
- package/legacy/locales/frFR.js +5 -0
- package/legacy/locales/heIL.js +5 -0
- package/legacy/locales/huHU.js +5 -0
- package/legacy/locales/itIT.js +5 -0
- package/legacy/locales/jaJP.js +5 -0
- package/legacy/locales/koKR.js +5 -0
- package/legacy/locales/nlNL.js +5 -0
- package/legacy/locales/plPL.js +5 -0
- package/legacy/locales/ptBR.js +5 -0
- package/legacy/locales/ruRU.js +5 -0
- package/legacy/locales/skSK.js +5 -0
- package/legacy/locales/trTR.js +5 -0
- package/legacy/locales/ukUA.js +5 -0
- package/legacy/locales/viVN.js +5 -0
- package/legacy/locales/zhCN.js +5 -0
- package/legacy/models/events/gridEvents.js +2 -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 +5 -0
- package/locales/bgBG.js +5 -0
- package/locales/csCZ.js +5 -0
- package/locales/daDK.js +5 -0
- package/locales/deDE.js +10 -5
- package/locales/elGR.js +5 -0
- package/locales/esES.js +5 -0
- package/locales/faIR.js +5 -0
- package/locales/fiFI.js +5 -0
- package/locales/frFR.js +5 -0
- package/locales/heIL.js +5 -0
- package/locales/huHU.js +5 -0
- package/locales/itIT.js +5 -0
- package/locales/jaJP.js +5 -0
- package/locales/koKR.js +5 -0
- package/locales/nlNL.js +5 -0
- package/locales/plPL.js +5 -0
- package/locales/ptBR.js +5 -0
- package/locales/ruRU.js +5 -0
- package/locales/skSK.js +5 -0
- package/locales/trTR.js +5 -0
- package/locales/ukUA.js +5 -0
- package/locales/viVN.js +5 -0
- package/locales/zhCN.js +5 -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 +4 -0
- package/models/api/gridRowApi.d.ts +28 -0
- package/models/api/index.d.ts +1 -1
- package/models/colDef/gridColDef.d.ts +13 -0
- package/models/events/gridEventLookup.d.ts +273 -3
- package/models/events/gridEvents.d.ts +2 -277
- package/models/events/gridEvents.js +2 -0
- package/models/gridExport.d.ts +29 -2
- package/models/gridFilterModel.d.ts +11 -0
- package/models/gridFilterOperator.d.ts +1 -1
- 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 +4 -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 +1 -2
- 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/GridToolbarContainer.js +12 -2
- 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 +86 -0
- package/modern/components/toolbar/index.js +3 -2
- package/modern/constants/localeTextConstants.js +5 -0
- 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 -4
- 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 +23 -1
- package/modern/hooks/features/rows/useGridRows.js +100 -60
- 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 +6 -7
- 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 +5 -0
- package/modern/locales/bgBG.js +5 -0
- package/modern/locales/csCZ.js +5 -0
- package/modern/locales/daDK.js +5 -0
- package/modern/locales/deDE.js +10 -5
- package/modern/locales/elGR.js +5 -0
- package/modern/locales/esES.js +5 -0
- package/modern/locales/faIR.js +5 -0
- package/modern/locales/fiFI.js +5 -0
- package/modern/locales/frFR.js +5 -0
- package/modern/locales/heIL.js +5 -0
- package/modern/locales/huHU.js +5 -0
- package/modern/locales/itIT.js +5 -0
- package/modern/locales/jaJP.js +5 -0
- package/modern/locales/koKR.js +5 -0
- package/modern/locales/nlNL.js +5 -0
- package/modern/locales/plPL.js +5 -0
- package/modern/locales/ptBR.js +5 -0
- package/modern/locales/ruRU.js +5 -0
- package/modern/locales/skSK.js +5 -0
- package/modern/locales/trTR.js +5 -0
- package/modern/locales/ukUA.js +5 -0
- package/modern/locales/viVN.js +5 -0
- package/modern/locales/zhCN.js +5 -0
- package/modern/models/events/gridEvents.js +2 -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 +4 -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 +1 -3
- 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/GridToolbarContainer.js +11 -1
- 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 +111 -0
- package/node/components/toolbar/index.js +42 -11
- package/node/constants/localeTextConstants.js +5 -0
- 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 -5
- 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 +29 -1
- package/node/hooks/features/rows/useGridRows.js +101 -60
- 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 +6 -8
- 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 +5 -0
- package/node/locales/bgBG.js +5 -0
- package/node/locales/csCZ.js +5 -0
- package/node/locales/daDK.js +5 -0
- package/node/locales/deDE.js +10 -5
- package/node/locales/elGR.js +5 -0
- package/node/locales/esES.js +5 -0
- package/node/locales/faIR.js +5 -0
- package/node/locales/fiFI.js +5 -0
- package/node/locales/frFR.js +5 -0
- package/node/locales/heIL.js +5 -0
- package/node/locales/huHU.js +5 -0
- package/node/locales/itIT.js +5 -0
- package/node/locales/jaJP.js +5 -0
- package/node/locales/koKR.js +5 -0
- package/node/locales/nlNL.js +5 -0
- package/node/locales/plPL.js +5 -0
- package/node/locales/ptBR.js +5 -0
- package/node/locales/ruRU.js +5 -0
- package/node/locales/skSK.js +5 -0
- package/node/locales/trTR.js +5 -0
- package/node/locales/ukUA.js +5 -0
- package/node/locales/viVN.js +5 -0
- package/node/locales/zhCN.js +5 -0
- package/node/models/events/gridEvents.js +2 -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 +1 -1
- 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
package/legacy/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/legacy/locales/arSD.js
CHANGED
|
@@ -22,11 +22,16 @@ var arSDGrid = {
|
|
|
22
22
|
toolbarFiltersTooltipActive: function toolbarFiltersTooltipActive(count) {
|
|
23
23
|
return count !== 1 ? "".concat(count, " \u0645\u0646 \u0627\u0644\u0645\u0631\u0634\u0650\u062D\u0627\u062A \u0627\u0644\u0646\u0634\u0637\u0629") : "\u0645\u0631\u0634\u0650\u062D \u0646\u0634\u0637";
|
|
24
24
|
},
|
|
25
|
+
// Quick filter toolbar field
|
|
26
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
27
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
28
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
25
29
|
// Export selector toolbar button text
|
|
26
30
|
toolbarExport: 'تصدير',
|
|
27
31
|
toolbarExportLabel: 'تصدير',
|
|
28
32
|
toolbarExportCSV: 'تنزيل كملف CSV',
|
|
29
33
|
// toolbarExportPrint: 'Print',
|
|
34
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
30
35
|
// Columns panel text
|
|
31
36
|
columnsPanelTextFieldLabel: 'البحث عن العمود',
|
|
32
37
|
columnsPanelTextFieldPlaceholder: 'عنوان العمود',
|
package/legacy/locales/bgBG.js
CHANGED
|
@@ -22,11 +22,16 @@ var bgBGGrid = {
|
|
|
22
22
|
toolbarFiltersTooltipActive: function toolbarFiltersTooltipActive(count) {
|
|
23
23
|
return "".concat(count, " \u0430\u043A\u0442\u0438\u0432\u043D\u0438 \u0444\u0438\u043B\u0442\u0440\u0438");
|
|
24
24
|
},
|
|
25
|
+
// Quick filter toolbar field
|
|
26
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
27
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
28
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
25
29
|
// Export selector toolbar button text
|
|
26
30
|
toolbarExport: 'Изтегли',
|
|
27
31
|
toolbarExportLabel: 'Изтегли',
|
|
28
32
|
toolbarExportCSV: 'Изтегли като CSV',
|
|
29
33
|
toolbarExportPrint: 'Принтиране',
|
|
34
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
30
35
|
// Columns panel text
|
|
31
36
|
columnsPanelTextFieldLabel: 'Намери колона',
|
|
32
37
|
columnsPanelTextFieldPlaceholder: 'Заглавие на колона',
|
package/legacy/locales/csCZ.js
CHANGED
|
@@ -30,11 +30,16 @@ var csCZGrid = {
|
|
|
30
30
|
|
|
31
31
|
return "".concat(count, " ").concat(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',
|
package/legacy/locales/daDK.js
CHANGED
|
@@ -22,11 +22,16 @@ var daDKGrid = {
|
|
|
22
22
|
toolbarFiltersTooltipActive: function toolbarFiltersTooltipActive(count) {
|
|
23
23
|
return count !== 1 ? "".concat(count, " aktive filtre") : "".concat(count, " aktivt filter");
|
|
24
24
|
},
|
|
25
|
+
// Quick filter toolbar field
|
|
26
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
27
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
28
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
25
29
|
// Export selector toolbar button text
|
|
26
30
|
// toolbarExport: 'Export',
|
|
27
31
|
toolbarExportLabel: 'Eksporter',
|
|
28
32
|
toolbarExportCSV: 'Download som CSV',
|
|
29
33
|
toolbarExportPrint: 'Print',
|
|
34
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
30
35
|
// Columns panel text
|
|
31
36
|
columnsPanelTextFieldLabel: 'Find kolonne',
|
|
32
37
|
columnsPanelTextFieldPlaceholder: 'Kolonne titel',
|
package/legacy/locales/deDE.js
CHANGED
|
@@ -22,11 +22,16 @@ var deDEGrid = {
|
|
|
22
22
|
toolbarFiltersTooltipActive: function toolbarFiltersTooltipActive(count) {
|
|
23
23
|
return count !== 1 ? "".concat(count, " aktive Filter") : "".concat(count, " aktiver Filter");
|
|
24
24
|
},
|
|
25
|
+
// Quick filter toolbar field
|
|
26
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
27
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
28
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
25
29
|
// Export selector toolbar button text
|
|
26
30
|
toolbarExport: 'Exportieren',
|
|
27
31
|
toolbarExportLabel: 'Exportieren',
|
|
28
32
|
toolbarExportCSV: 'Download als CSV',
|
|
29
33
|
toolbarExportPrint: 'Drucken',
|
|
34
|
+
toolbarExportExcel: 'Download als Excel',
|
|
30
35
|
// Columns panel text
|
|
31
36
|
columnsPanelTextFieldLabel: 'Finde Spalte',
|
|
32
37
|
columnsPanelTextFieldPlaceholder: 'Spaltenüberschrift',
|
|
@@ -36,7 +41,7 @@ var deDEGrid = {
|
|
|
36
41
|
// Filter panel text
|
|
37
42
|
filterPanelAddFilter: 'Filter hinzufügen',
|
|
38
43
|
filterPanelDeleteIconLabel: 'Löschen',
|
|
39
|
-
|
|
44
|
+
filterPanelLinkOperator: 'Logische Operatoren',
|
|
40
45
|
filterPanelOperators: 'Operatoren',
|
|
41
46
|
// TODO v6: rename to filterPanelOperator
|
|
42
47
|
filterPanelOperatorAnd: 'Und',
|
|
@@ -57,7 +62,7 @@ var deDEGrid = {
|
|
|
57
62
|
filterOperatorOnOrBefore: 'ist am oder vor',
|
|
58
63
|
filterOperatorIsEmpty: 'ist leer',
|
|
59
64
|
filterOperatorIsNotEmpty: 'ist nicht leer',
|
|
60
|
-
|
|
65
|
+
filterOperatorIsAnyOf: 'ist einer der Werte',
|
|
61
66
|
// Filter values text
|
|
62
67
|
filterValueAny: 'Beliebig',
|
|
63
68
|
filterValueTrue: 'Ja',
|
|
@@ -115,8 +120,8 @@ var deDEGrid = {
|
|
|
115
120
|
},
|
|
116
121
|
// Master/detail
|
|
117
122
|
expandDetailPanel: 'Aufklappen',
|
|
118
|
-
collapseDetailPanel: 'Zuklappen'
|
|
119
|
-
//
|
|
120
|
-
|
|
123
|
+
collapseDetailPanel: 'Zuklappen',
|
|
124
|
+
// Row reordering text
|
|
125
|
+
rowReorderingHeaderName: 'Reihen neu ordnen'
|
|
121
126
|
};
|
|
122
127
|
export var deDE = getGridLocalization(deDEGrid, deDECore);
|
package/legacy/locales/elGR.js
CHANGED
|
@@ -21,11 +21,16 @@ var elGRGrid = {
|
|
|
21
21
|
toolbarFiltersTooltipActive: function toolbarFiltersTooltipActive(count) {
|
|
22
22
|
return count !== 1 ? "".concat(count, " \u03B5\u03BD\u03B5\u03C1\u03B3\u03AC \u03C6\u03AF\u03BB\u03C4\u03C1\u03B1") : "".concat(count, " \u03B5\u03BD\u03B5\u03C1\u03B3\u03CC \u03C6\u03AF\u03BB\u03C4\u03C1\u03BF");
|
|
23
23
|
},
|
|
24
|
+
// Quick filter toolbar field
|
|
25
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
26
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
27
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
24
28
|
// Export selector toolbar button text
|
|
25
29
|
toolbarExport: 'Εξαγωγή',
|
|
26
30
|
toolbarExportLabel: 'Εξαγωγή',
|
|
27
31
|
toolbarExportCSV: 'Λήψη ως CSV',
|
|
28
32
|
// toolbarExportPrint: 'Print',
|
|
33
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
29
34
|
// Columns panel text
|
|
30
35
|
columnsPanelTextFieldLabel: 'Εύρεση στήλης',
|
|
31
36
|
columnsPanelTextFieldPlaceholder: 'Επικεφαλίδα στήλης',
|
package/legacy/locales/esES.js
CHANGED
|
@@ -22,11 +22,16 @@ var esESGrid = {
|
|
|
22
22
|
toolbarFiltersTooltipActive: function toolbarFiltersTooltipActive(count) {
|
|
23
23
|
return count > 1 ? "".concat(count, " filtros activos") : "".concat(count, " filtro activo");
|
|
24
24
|
},
|
|
25
|
+
// Quick filter toolbar field
|
|
26
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
27
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
28
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
25
29
|
// Export selector toolbar button text
|
|
26
30
|
toolbarExport: 'Exportar',
|
|
27
31
|
toolbarExportLabel: 'Exportar',
|
|
28
32
|
toolbarExportCSV: 'Descargar como CSV',
|
|
29
33
|
// toolbarExportPrint: 'Print',
|
|
34
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
30
35
|
// Columns panel text
|
|
31
36
|
columnsPanelTextFieldLabel: 'Columna de búsqueda',
|
|
32
37
|
columnsPanelTextFieldPlaceholder: 'Título de columna',
|
package/legacy/locales/faIR.js
CHANGED
|
@@ -22,11 +22,16 @@ var faIRGrid = {
|
|
|
22
22
|
toolbarFiltersTooltipActive: function toolbarFiltersTooltipActive(count) {
|
|
23
23
|
return count !== 1 ? "".concat(count, " \u0641\u06CC\u0644\u062A\u0631\u0647\u0627\u06CC \u0641\u0639\u0627\u0644") : "".concat(count, " \u0641\u06CC\u0644\u062A\u0631 \u0641\u0639\u0627\u0644");
|
|
24
24
|
},
|
|
25
|
+
// Quick filter toolbar field
|
|
26
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
27
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
28
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
25
29
|
// Export selector toolbar button text
|
|
26
30
|
toolbarExport: 'خروجی',
|
|
27
31
|
toolbarExportLabel: 'خروجی',
|
|
28
32
|
toolbarExportCSV: 'دانلود به صورت CSV',
|
|
29
33
|
toolbarExportPrint: 'چاپ',
|
|
34
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
30
35
|
// Columns panel text
|
|
31
36
|
columnsPanelTextFieldLabel: 'پیداکردن ستون',
|
|
32
37
|
columnsPanelTextFieldPlaceholder: 'عنوان ستون',
|
package/legacy/locales/fiFI.js
CHANGED
|
@@ -22,11 +22,16 @@ var fiFIGrid = {
|
|
|
22
22
|
toolbarFiltersTooltipActive: function toolbarFiltersTooltipActive(count) {
|
|
23
23
|
return count !== 1 ? "".concat(count, " aktiivista suodatinta") : "".concat(count, " aktiivinen suodatin");
|
|
24
24
|
},
|
|
25
|
+
// Quick filter toolbar field
|
|
26
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
27
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
28
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
25
29
|
// Export selector toolbar button text
|
|
26
30
|
toolbarExport: 'Export',
|
|
27
31
|
toolbarExportLabel: 'Export',
|
|
28
32
|
toolbarExportCSV: 'Lataa CSV-muodossa',
|
|
29
33
|
toolbarExportPrint: 'Tulosta',
|
|
34
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
30
35
|
// Columns panel text
|
|
31
36
|
columnsPanelTextFieldLabel: 'Etsi sarake',
|
|
32
37
|
columnsPanelTextFieldPlaceholder: 'Sarakkeen otsikko',
|
package/legacy/locales/frFR.js
CHANGED
|
@@ -22,11 +22,16 @@ var frFRGrid = {
|
|
|
22
22
|
toolbarFiltersTooltipActive: function toolbarFiltersTooltipActive(count) {
|
|
23
23
|
return count > 1 ? "".concat(count, " filtres actifs") : "".concat(count, " filtre actif");
|
|
24
24
|
},
|
|
25
|
+
// Quick filter toolbar field
|
|
26
|
+
toolbarQuickFilterPlaceholder: 'Recherche...',
|
|
27
|
+
toolbarQuickFilterLabel: 'Recherche',
|
|
28
|
+
toolbarQuickFilterDeleteIconLabel: 'Supprimer',
|
|
25
29
|
// Export selector toolbar button text
|
|
26
30
|
toolbarExport: 'Exporter',
|
|
27
31
|
toolbarExportLabel: 'Exporter',
|
|
28
32
|
toolbarExportCSV: 'Télécharger en CSV',
|
|
29
33
|
toolbarExportPrint: 'Imprimer',
|
|
34
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
30
35
|
// Columns panel text
|
|
31
36
|
columnsPanelTextFieldLabel: 'Chercher colonne',
|
|
32
37
|
columnsPanelTextFieldPlaceholder: 'Titre de la colonne',
|
package/legacy/locales/heIL.js
CHANGED
|
@@ -22,11 +22,16 @@ var heILGrid = {
|
|
|
22
22
|
toolbarFiltersTooltipActive: function toolbarFiltersTooltipActive(count) {
|
|
23
23
|
return count !== 1 ? "".concat(count, " \u05DE\u05E1\u05E0\u05E0\u05D9\u05DD \u05E4\u05E2\u05D9\u05DC\u05D9\u05DD") : "\u05DE\u05E1\u05E0\u05DF \u05D0\u05D7\u05D3 \u05E4\u05E2\u05D9\u05DC";
|
|
24
24
|
},
|
|
25
|
+
// Quick filter toolbar field
|
|
26
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
27
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
28
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
25
29
|
// Export selector toolbar button text
|
|
26
30
|
toolbarExport: 'ייצוא',
|
|
27
31
|
toolbarExportLabel: 'ייצוא',
|
|
28
32
|
toolbarExportCSV: 'הורדה כ- CSV',
|
|
29
33
|
toolbarExportPrint: 'הדפסה',
|
|
34
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
30
35
|
// Columns panel text
|
|
31
36
|
columnsPanelTextFieldLabel: 'חפש עמודה',
|
|
32
37
|
columnsPanelTextFieldPlaceholder: 'כותרת עמודה',
|
package/legacy/locales/huHU.js
CHANGED
|
@@ -22,11 +22,16 @@ var huHUGrid = {
|
|
|
22
22
|
toolbarFiltersTooltipActive: function toolbarFiltersTooltipActive(count) {
|
|
23
23
|
return "".concat(count, " akt\xEDv sz\u0171r\u0151");
|
|
24
24
|
},
|
|
25
|
+
// Quick filter toolbar field
|
|
26
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
27
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
28
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
25
29
|
// Export selector toolbar button text
|
|
26
30
|
toolbarExport: 'Exportálás',
|
|
27
31
|
toolbarExportLabel: 'Exportálás',
|
|
28
32
|
toolbarExportCSV: 'Mentés CSV fájlként',
|
|
29
33
|
toolbarExportPrint: 'Nyomtatás',
|
|
34
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
30
35
|
// Columns panel text
|
|
31
36
|
columnsPanelTextFieldLabel: 'Oszlop keresése',
|
|
32
37
|
columnsPanelTextFieldPlaceholder: 'Oszlop neve',
|
package/legacy/locales/itIT.js
CHANGED
|
@@ -22,11 +22,16 @@ var itITGrid = {
|
|
|
22
22
|
toolbarFiltersTooltipActive: function toolbarFiltersTooltipActive(count) {
|
|
23
23
|
return count > 1 ? "".concat(count, " filtri attivi") : "".concat(count, " filtro attivo");
|
|
24
24
|
},
|
|
25
|
+
// Quick filter toolbar field
|
|
26
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
27
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
28
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
25
29
|
// Export selector toolbar button text
|
|
26
30
|
toolbarExport: 'Esporta',
|
|
27
31
|
toolbarExportLabel: 'Esporta',
|
|
28
32
|
toolbarExportCSV: 'Esporta in CSV',
|
|
29
33
|
toolbarExportPrint: 'Stampa',
|
|
34
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
30
35
|
// Columns panel text
|
|
31
36
|
columnsPanelTextFieldLabel: 'Cerca colonna',
|
|
32
37
|
columnsPanelTextFieldPlaceholder: 'Titolo della colonna',
|
package/legacy/locales/jaJP.js
CHANGED
|
@@ -22,11 +22,16 @@ var jaJPGrid = {
|
|
|
22
22
|
toolbarFiltersTooltipActive: function toolbarFiltersTooltipActive(count) {
|
|
23
23
|
return "".concat(count, "\u4EF6\u306E\u30D5\u30A3\u30EB\u30BF\u30FC\u3092\u9069\u7528\u4E2D");
|
|
24
24
|
},
|
|
25
|
+
// Quick filter toolbar field
|
|
26
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
27
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
28
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
25
29
|
// Export selector toolbar button text
|
|
26
30
|
toolbarExport: 'エクスポート',
|
|
27
31
|
toolbarExportLabel: 'エクスポート',
|
|
28
32
|
toolbarExportCSV: 'CSVダウンロード',
|
|
29
33
|
// toolbarExportPrint: 'Print',
|
|
34
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
30
35
|
// Columns panel text
|
|
31
36
|
columnsPanelTextFieldLabel: '列検索',
|
|
32
37
|
columnsPanelTextFieldPlaceholder: '検索クエリを入力...',
|
package/legacy/locales/koKR.js
CHANGED
|
@@ -22,11 +22,16 @@ var koKRGrid = {
|
|
|
22
22
|
toolbarFiltersTooltipActive: function toolbarFiltersTooltipActive(count) {
|
|
23
23
|
return "".concat(count, "\uAC74\uC758 \uD544\uD130\uB97C \uC801\uC6A9\uC911");
|
|
24
24
|
},
|
|
25
|
+
// Quick filter toolbar field
|
|
26
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
27
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
28
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
25
29
|
// Export selector toolbar button text
|
|
26
30
|
toolbarExport: '내보내기',
|
|
27
31
|
toolbarExportLabel: '내보내기',
|
|
28
32
|
toolbarExportCSV: 'CSV다운로드',
|
|
29
33
|
toolbarExportPrint: '프린트',
|
|
34
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
30
35
|
// Columns panel text
|
|
31
36
|
columnsPanelTextFieldLabel: '열 검색',
|
|
32
37
|
columnsPanelTextFieldPlaceholder: '열 이름',
|
package/legacy/locales/nlNL.js
CHANGED
|
@@ -22,11 +22,16 @@ var nlNLGrid = {
|
|
|
22
22
|
toolbarFiltersTooltipActive: function toolbarFiltersTooltipActive(count) {
|
|
23
23
|
return count > 1 ? "".concat(count, " actieve filters") : "".concat(count, " filter actief");
|
|
24
24
|
},
|
|
25
|
+
// Quick filter toolbar field
|
|
26
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
27
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
28
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
25
29
|
// Export selector toolbar button text
|
|
26
30
|
toolbarExport: 'Exporteren',
|
|
27
31
|
toolbarExportLabel: 'Exporteren',
|
|
28
32
|
toolbarExportCSV: 'Exporteer naar CSV',
|
|
29
33
|
toolbarExportPrint: 'Print',
|
|
34
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
30
35
|
// Columns panel text
|
|
31
36
|
columnsPanelTextFieldLabel: 'Zoek kolom',
|
|
32
37
|
columnsPanelTextFieldPlaceholder: 'Kolomtitel',
|
package/legacy/locales/plPL.js
CHANGED
|
@@ -22,11 +22,16 @@ var plPLGrid = {
|
|
|
22
22
|
toolbarFiltersTooltipActive: function toolbarFiltersTooltipActive(count) {
|
|
23
23
|
return "Liczba aktywnych filtr\xF3w: ".concat(count);
|
|
24
24
|
},
|
|
25
|
+
// Quick filter toolbar field
|
|
26
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
27
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
28
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
25
29
|
// Export selector toolbar button text
|
|
26
30
|
toolbarExport: 'Eksportuj',
|
|
27
31
|
toolbarExportLabel: 'Eksportuj',
|
|
28
32
|
toolbarExportCSV: 'Pobierz jako plik CSV',
|
|
29
33
|
toolbarExportPrint: 'Drukuj',
|
|
34
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
30
35
|
// Columns panel text
|
|
31
36
|
columnsPanelTextFieldLabel: 'Znajdź kolumnę',
|
|
32
37
|
columnsPanelTextFieldPlaceholder: 'Tytuł kolumny',
|
package/legacy/locales/ptBR.js
CHANGED
|
@@ -22,11 +22,16 @@ var ptBRGrid = {
|
|
|
22
22
|
toolbarFiltersTooltipActive: function toolbarFiltersTooltipActive(count) {
|
|
23
23
|
return "".concat(count, " ").concat(count !== 1 ? 'filtros' : 'filtro', " ").concat(count !== 1 ? 'ativos' : 'ativo');
|
|
24
24
|
},
|
|
25
|
+
// Quick filter toolbar field
|
|
26
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
27
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
28
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
25
29
|
// Export selector toolbar button text
|
|
26
30
|
toolbarExport: 'Exportar',
|
|
27
31
|
toolbarExportLabel: 'Exportar',
|
|
28
32
|
toolbarExportCSV: 'Baixar como CSV',
|
|
29
33
|
toolbarExportPrint: 'Print',
|
|
34
|
+
toolbarExportExcel: 'Baixar como Excel',
|
|
30
35
|
// Columns panel text
|
|
31
36
|
columnsPanelTextFieldLabel: 'Localizar coluna',
|
|
32
37
|
columnsPanelTextFieldPlaceholder: 'Título da coluna',
|
package/legacy/locales/ruRU.js
CHANGED
|
@@ -31,11 +31,16 @@ var ruRUGrid = {
|
|
|
31
31
|
|
|
32
32
|
return "".concat(count, " ").concat(pluralForm);
|
|
33
33
|
},
|
|
34
|
+
// Quick filter toolbar field
|
|
35
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
36
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
37
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
34
38
|
// Export selector toolbar button text
|
|
35
39
|
toolbarExport: 'Экспорт',
|
|
36
40
|
toolbarExportLabel: 'Экспорт',
|
|
37
41
|
toolbarExportCSV: 'Скачать в формате CSV',
|
|
38
42
|
toolbarExportPrint: 'Печать',
|
|
43
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
39
44
|
// Columns panel text
|
|
40
45
|
columnsPanelTextFieldLabel: 'Найти столбец',
|
|
41
46
|
columnsPanelTextFieldPlaceholder: 'Заголовок столбца',
|
package/legacy/locales/skSK.js
CHANGED
|
@@ -30,11 +30,16 @@ var skSKGrid = {
|
|
|
30
30
|
|
|
31
31
|
return "".concat(count, " ").concat(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: 'Stiahnuť ako CSV',
|
|
37
41
|
toolbarExportPrint: 'Vytlačiť',
|
|
42
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
38
43
|
// Columns panel text
|
|
39
44
|
columnsPanelTextFieldLabel: 'Nájsť stĺpec',
|
|
40
45
|
columnsPanelTextFieldPlaceholder: 'Názov stĺpca',
|
package/legacy/locales/trTR.js
CHANGED
|
@@ -22,11 +22,16 @@ var trTRGrid = {
|
|
|
22
22
|
toolbarFiltersTooltipActive: function toolbarFiltersTooltipActive(count) {
|
|
23
23
|
return "".concat(count, " aktif filtre");
|
|
24
24
|
},
|
|
25
|
+
// Quick filter toolbar field
|
|
26
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
27
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
28
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
25
29
|
// Export selector toolbar button text
|
|
26
30
|
toolbarExport: 'Dışa aktar',
|
|
27
31
|
toolbarExportLabel: 'Dışa aktar',
|
|
28
32
|
toolbarExportCSV: 'CSV olarak aktar',
|
|
29
33
|
toolbarExportPrint: 'Yazdır',
|
|
34
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
30
35
|
// Columns panel text
|
|
31
36
|
columnsPanelTextFieldLabel: 'Sütun ara',
|
|
32
37
|
columnsPanelTextFieldPlaceholder: 'Sütun adı',
|
package/legacy/locales/ukUA.js
CHANGED
|
@@ -40,11 +40,16 @@ var ukUAGrid = {
|
|
|
40
40
|
many: 'активних фільтрів'
|
|
41
41
|
});
|
|
42
42
|
},
|
|
43
|
+
// Quick filter toolbar field
|
|
44
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
45
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
46
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
43
47
|
// Export selector toolbar button text
|
|
44
48
|
toolbarExport: 'Експорт',
|
|
45
49
|
toolbarExportLabel: 'Експорт',
|
|
46
50
|
toolbarExportCSV: 'Завантажити у форматі CSV',
|
|
47
51
|
toolbarExportPrint: 'Друк',
|
|
52
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
48
53
|
// Columns panel text
|
|
49
54
|
columnsPanelTextFieldLabel: 'Знайти стовпець',
|
|
50
55
|
columnsPanelTextFieldPlaceholder: 'Заголовок стовпця',
|
package/legacy/locales/viVN.js
CHANGED
|
@@ -22,11 +22,16 @@ var viVNGrid = {
|
|
|
22
22
|
toolbarFiltersTooltipActive: function toolbarFiltersTooltipActive(count) {
|
|
23
23
|
return count > 1 ? "".concat(count, " b\u1ED9 l\u1ECDc ho\u1EA1t \u0111\u1ED9ng") : "".concat(count, " b\u1ED9 l\u1ECDc ho\u1EA1t \u0111\u1ED9ng");
|
|
24
24
|
},
|
|
25
|
+
// Quick filter toolbar field
|
|
26
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
27
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
28
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
25
29
|
// Export selector toolbar button text
|
|
26
30
|
toolbarExport: 'Xuất',
|
|
27
31
|
toolbarExportLabel: 'Xuất',
|
|
28
32
|
toolbarExportCSV: 'Xuất CSV',
|
|
29
33
|
toolbarExportPrint: 'In',
|
|
34
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
30
35
|
// Columns panel text
|
|
31
36
|
columnsPanelTextFieldLabel: 'Tìm kiếm',
|
|
32
37
|
columnsPanelTextFieldPlaceholder: 'Tiêu đề cột',
|
package/legacy/locales/zhCN.js
CHANGED
|
@@ -22,11 +22,16 @@ var zhCNGrid = {
|
|
|
22
22
|
toolbarFiltersTooltipActive: function toolbarFiltersTooltipActive(count) {
|
|
23
23
|
return "".concat(count, " \u4E2A\u7B5B\u9009\u5668");
|
|
24
24
|
},
|
|
25
|
+
// Quick filter toolbar field
|
|
26
|
+
// toolbarQuickFilterPlaceholder: 'Search...',
|
|
27
|
+
// toolbarQuickFilterLabel: 'Search',
|
|
28
|
+
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
25
29
|
// Export selector toolbar button text
|
|
26
30
|
toolbarExport: '导出',
|
|
27
31
|
toolbarExportLabel: '导出',
|
|
28
32
|
toolbarExportCSV: '导出至CSV',
|
|
29
33
|
// toolbarExportPrint: 'Print',
|
|
34
|
+
// toolbarExportExcel: 'Download as Excel',
|
|
30
35
|
// Columns panel text
|
|
31
36
|
columnsPanelTextFieldLabel: '搜索列',
|
|
32
37
|
columnsPanelTextFieldPlaceholder: '列名',
|
|
@@ -20,6 +20,8 @@ var GridEvents;
|
|
|
20
20
|
GridEvents["cellEditCommit"] = "cellEditCommit";
|
|
21
21
|
GridEvents["cellEditStart"] = "cellEditStart";
|
|
22
22
|
GridEvents["cellEditStop"] = "cellEditStop";
|
|
23
|
+
GridEvents["cellModesModelChange"] = "cellModesModelChange";
|
|
24
|
+
GridEvents["rowModesModelChange"] = "rowModesModelChange";
|
|
23
25
|
GridEvents["rowEditStart"] = "rowEditStart";
|
|
24
26
|
GridEvents["rowEditStop"] = "rowEditStop";
|
|
25
27
|
GridEvents["rowEditCommit"] = "rowEditCommit";
|
package/legacy/models/index.js
CHANGED
|
@@ -18,9 +18,10 @@ export * from './gridIconSlotsComponent';
|
|
|
18
18
|
export * from './gridSlotsComponent';
|
|
19
19
|
export * from './gridSlotsComponentsProps';
|
|
20
20
|
export * from './gridDensity';
|
|
21
|
-
export * from './gridExport';
|
|
22
21
|
export * from './logger';
|
|
23
22
|
export * from './muiEvent';
|
|
24
23
|
export * from './events';
|
|
25
|
-
export * from './gridSortModel';
|
|
26
|
-
|
|
24
|
+
export * from './gridSortModel'; // Do not export GridExportFormat and GridExportExtension which are override in pro package
|
|
25
|
+
|
|
26
|
+
export * from './gridFilterOperator';
|
|
27
|
+
export {};
|
|
@@ -1,12 +1,18 @@
|
|
|
1
1
|
import { createSelector as reselectCreateSelector } from 'reselect';
|
|
2
2
|
import { buildWarning } from './warning';
|
|
3
|
-
var
|
|
3
|
+
var cacheContainer = {
|
|
4
|
+
cache: null
|
|
5
|
+
};
|
|
4
6
|
var missingInstanceIdWarning = buildWarning(['MUI: A selector was called without passing the instance ID, which may impact the performance of the grid.', 'To fix, call it with `apiRef`, e.g. `mySelector(apiRef)`, or pass the instance ID explicitly, e.g `mySelector(state, apiRef.current.instanceId)`.']);
|
|
5
7
|
export var createSelector = function createSelector() {
|
|
6
8
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
7
9
|
args[_key] = arguments[_key];
|
|
8
10
|
}
|
|
9
11
|
|
|
12
|
+
if (cacheContainer.cache === null) {
|
|
13
|
+
cacheContainer.cache = {};
|
|
14
|
+
}
|
|
15
|
+
|
|
10
16
|
var selector = function selector() {
|
|
11
17
|
for (var _len2 = arguments.length, selectorArgs = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
|
|
12
18
|
selectorArgs[_key2] = arguments[_key2];
|
|
@@ -24,6 +30,12 @@ export var createSelector = function createSelector() {
|
|
|
24
30
|
}
|
|
25
31
|
}
|
|
26
32
|
|
|
33
|
+
if (cacheContainer.cache === null) {
|
|
34
|
+
cacheContainer.cache = {};
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
var cache = cacheContainer.cache;
|
|
38
|
+
|
|
27
39
|
if (cache[cacheKey] && cache[cacheKey].get(args)) {
|
|
28
40
|
// We pass the cache key because the called selector might have as
|
|
29
41
|
// dependency another selector created with this `createSelector`.
|
|
@@ -42,6 +54,10 @@ export var createSelector = function createSelector() {
|
|
|
42
54
|
// or it's only a simple function the receives the state and returns part of it.
|
|
43
55
|
|
|
44
56
|
|
|
45
|
-
selector.
|
|
57
|
+
selector.acceptsApiRef = true;
|
|
46
58
|
return selector;
|
|
59
|
+
}; // eslint-disable-next-line @typescript-eslint/naming-convention
|
|
60
|
+
|
|
61
|
+
export var unstable_resetCreateSelectorCache = function unstable_resetCreateSelectorCache() {
|
|
62
|
+
cacheContainer.cache = null;
|
|
47
63
|
};
|
package/legacy/utils/exportAs.js
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
*/
|
|
11
11
|
export function exportAs(blob) {
|
|
12
12
|
var extension = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'csv';
|
|
13
|
-
var filename = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : document.title;
|
|
13
|
+
var filename = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : document.title || 'untitled';
|
|
14
14
|
var fullName = "".concat(filename, ".").concat(extension); // Test download attribute first
|
|
15
15
|
// https://github.com/eligrey/FileSaver.js/issues/193
|
|
16
16
|
|
package/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: 'عنوان العمود',
|
package/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: 'Заглавие на колона',
|
package/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',
|
package/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',
|