@mui/x-data-grid 7.0.0-beta.2 → 7.0.0-beta.4
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 +298 -23
- package/DataGrid/DataGrid.js +0 -6
- package/colDef/gridActionsColDef.js +1 -0
- package/colDef/gridBooleanColDef.js +1 -0
- package/colDef/gridCheckboxSelectionColDef.js +1 -0
- package/components/GridRow.d.ts +3 -1
- package/components/GridRow.js +10 -2
- package/components/GridScrollbarFillerCell.js +6 -21
- package/components/cell/GridCell.js +10 -12
- package/components/columnSelection/GridCellCheckboxRenderer.js +1 -2
- package/components/containers/GridRootStyles.js +51 -23
- package/components/panel/GridPanel.d.ts +1 -1
- package/components/panel/filterPanel/GridFilterInputBoolean.js +6 -4
- package/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +8 -2
- package/components/panel/filterPanel/GridFilterInputSingleSelect.js +6 -4
- package/components/panel/filterPanel/GridFilterInputValue.js +4 -3
- package/components/virtualization/GridVirtualScrollerRenderZone.js +10 -3
- package/constants/gridClasses.d.ts +24 -8
- package/constants/gridClasses.js +1 -1
- package/hooks/features/clipboard/useGridClipboard.js +1 -1
- package/hooks/features/columnHeaders/useGridColumnHeaders.d.ts +5 -5
- package/hooks/features/columnHeaders/useGridColumnHeaders.js +46 -48
- package/hooks/features/editing/useGridCellEditing.js +3 -4
- package/hooks/features/editing/useGridRowEditing.js +3 -4
- package/hooks/features/sorting/useGridSorting.js +1 -2
- package/hooks/features/virtualization/gridVirtualizationSelectors.d.ts +9 -0
- package/hooks/features/virtualization/gridVirtualizationSelectors.js +7 -0
- package/hooks/features/virtualization/useGridVirtualScroller.js +19 -16
- package/hooks/features/virtualization/useGridVirtualization.d.ts +8 -0
- package/hooks/features/virtualization/useGridVirtualization.js +6 -1
- package/index.js +1 -1
- package/internals/index.d.ts +1 -1
- package/internals/index.js +1 -1
- package/models/colDef/gridColDef.d.ts +6 -0
- package/models/events/gridEventLookup.d.ts +1 -8
- package/models/props/DataGridProps.d.ts +0 -6
- package/modern/DataGrid/DataGrid.js +0 -6
- package/modern/colDef/gridActionsColDef.js +1 -0
- package/modern/colDef/gridBooleanColDef.js +1 -0
- package/modern/colDef/gridCheckboxSelectionColDef.js +1 -0
- package/modern/components/GridRow.js +10 -2
- package/modern/components/GridScrollbarFillerCell.js +6 -21
- package/modern/components/cell/GridCell.js +10 -12
- package/modern/components/columnSelection/GridCellCheckboxRenderer.js +1 -2
- package/modern/components/containers/GridRootStyles.js +51 -23
- package/modern/components/panel/filterPanel/GridFilterInputBoolean.js +6 -4
- package/modern/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +8 -2
- package/modern/components/panel/filterPanel/GridFilterInputSingleSelect.js +6 -4
- package/modern/components/panel/filterPanel/GridFilterInputValue.js +4 -3
- package/modern/components/virtualization/GridVirtualScrollerRenderZone.js +10 -3
- package/modern/constants/gridClasses.js +1 -1
- package/modern/hooks/features/clipboard/useGridClipboard.js +1 -1
- package/modern/hooks/features/columnHeaders/useGridColumnHeaders.js +46 -48
- package/modern/hooks/features/editing/useGridCellEditing.js +3 -4
- package/modern/hooks/features/editing/useGridRowEditing.js +3 -4
- package/modern/hooks/features/sorting/useGridSorting.js +1 -2
- package/modern/hooks/features/virtualization/gridVirtualizationSelectors.js +7 -0
- package/modern/hooks/features/virtualization/useGridVirtualScroller.js +18 -14
- package/modern/hooks/features/virtualization/useGridVirtualization.js +6 -1
- package/modern/index.js +1 -1
- package/modern/internals/index.js +1 -1
- package/modern/utils/keyboardUtils.js +20 -11
- package/node/DataGrid/DataGrid.js +0 -6
- package/node/colDef/gridActionsColDef.js +1 -0
- package/node/colDef/gridBooleanColDef.js +1 -0
- package/node/colDef/gridCheckboxSelectionColDef.js +1 -0
- package/node/components/GridRow.js +10 -2
- package/node/components/GridScrollbarFillerCell.js +5 -20
- package/node/components/cell/GridCell.js +10 -12
- package/node/components/columnSelection/GridCellCheckboxRenderer.js +1 -2
- package/node/components/containers/GridRootStyles.js +51 -23
- package/node/components/panel/filterPanel/GridFilterInputBoolean.js +6 -4
- package/node/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +8 -2
- package/node/components/panel/filterPanel/GridFilterInputSingleSelect.js +6 -4
- package/node/components/panel/filterPanel/GridFilterInputValue.js +4 -3
- package/node/components/virtualization/GridVirtualScrollerRenderZone.js +10 -3
- package/node/constants/gridClasses.js +1 -1
- package/node/hooks/features/clipboard/useGridClipboard.js +1 -1
- package/node/hooks/features/columnHeaders/useGridColumnHeaders.js +45 -47
- package/node/hooks/features/editing/useGridCellEditing.js +2 -3
- package/node/hooks/features/editing/useGridRowEditing.js +2 -3
- package/node/hooks/features/sorting/useGridSorting.js +1 -2
- package/node/hooks/features/virtualization/gridVirtualizationSelectors.js +8 -1
- package/node/hooks/features/virtualization/useGridVirtualScroller.js +17 -13
- package/node/hooks/features/virtualization/useGridVirtualization.js +7 -2
- package/node/index.js +1 -1
- package/node/internals/index.js +7 -0
- package/node/utils/keyboardUtils.js +25 -20
- package/package.json +3 -3
- package/utils/keyboardUtils.d.ts +7 -6
- package/utils/keyboardUtils.js +20 -11
- package/legacy/DataGrid/DataGrid.js +0 -670
- package/legacy/DataGrid/index.js +0 -2
- package/legacy/DataGrid/useDataGridComponent.js +0 -81
- package/legacy/DataGrid/useDataGridProps.js +0 -98
- package/legacy/colDef/gridActionsColDef.js +0 -18
- package/legacy/colDef/gridBooleanColDef.js +0 -42
- package/legacy/colDef/gridBooleanOperators.js +0 -16
- package/legacy/colDef/gridCheckboxSelectionColDef.js +0 -33
- package/legacy/colDef/gridDateColDef.js +0 -62
- package/legacy/colDef/gridDateOperators.js +0 -115
- package/legacy/colDef/gridDefaultColumnTypes.js +0 -19
- package/legacy/colDef/gridNumericColDef.js +0 -19
- package/legacy/colDef/gridNumericOperators.js +0 -145
- package/legacy/colDef/gridSingleSelectColDef.js +0 -64
- package/legacy/colDef/gridSingleSelectOperators.js +0 -46
- package/legacy/colDef/gridStringColDef.js +0 -27
- package/legacy/colDef/gridStringOperators.js +0 -112
- package/legacy/colDef/index.js +0 -13
- package/legacy/components/GridApiContext.js +0 -5
- package/legacy/components/GridColumnHeaders.js +0 -94
- package/legacy/components/GridDetailPanels.js +0 -4
- package/legacy/components/GridFooter.js +0 -42
- package/legacy/components/GridHeader.js +0 -13
- package/legacy/components/GridHeaders.js +0 -53
- package/legacy/components/GridLoadingOverlay.js +0 -21
- package/legacy/components/GridNoResultsOverlay.js +0 -14
- package/legacy/components/GridNoRowsOverlay.js +0 -23
- package/legacy/components/GridPagination.js +0 -85
- package/legacy/components/GridPinnedRows.js +0 -4
- package/legacy/components/GridRow.js +0 -457
- package/legacy/components/GridRowCount.js +0 -63
- package/legacy/components/GridScrollbarFillerCell.js +0 -34
- package/legacy/components/GridSelectedRowCount.js +0 -66
- package/legacy/components/base/GridBody.js +0 -2
- package/legacy/components/base/GridFooterPlaceholder.js +0 -12
- package/legacy/components/base/GridOverlays.js +0 -122
- package/legacy/components/base/index.js +0 -3
- package/legacy/components/cell/GridActionsCell.js +0 -294
- package/legacy/components/cell/GridActionsCellItem.js +0 -69
- package/legacy/components/cell/GridBooleanCell.js +0 -121
- package/legacy/components/cell/GridCell.js +0 -350
- package/legacy/components/cell/GridEditBooleanCell.js +0 -174
- package/legacy/components/cell/GridEditDateCell.js +0 -230
- package/legacy/components/cell/GridEditInputCell.js +0 -198
- package/legacy/components/cell/GridEditSingleSelectCell.js +0 -231
- package/legacy/components/cell/GridSkeletonCell.js +0 -52
- package/legacy/components/cell/index.js +0 -9
- package/legacy/components/columnHeaders/ColumnHeaderMenuIcon.js +0 -59
- package/legacy/components/columnHeaders/GridBaseColumnHeaders.js +0 -41
- package/legacy/components/columnHeaders/GridColumnGroupHeader.js +0 -132
- package/legacy/components/columnHeaders/GridColumnHeaderFilterIconButton.js +0 -93
- package/legacy/components/columnHeaders/GridColumnHeaderItem.js +0 -212
- package/legacy/components/columnHeaders/GridColumnHeaderSeparator.js +0 -71
- package/legacy/components/columnHeaders/GridColumnHeaderSortIcon.js +0 -79
- package/legacy/components/columnHeaders/GridColumnHeaderTitle.js +0 -84
- package/legacy/components/columnHeaders/GridColumnHeadersInner.js +0 -55
- package/legacy/components/columnHeaders/GridGenericColumnHeaderItem.js +0 -107
- package/legacy/components/columnHeaders/GridIconButtonContainer.js +0 -41
- package/legacy/components/columnHeaders/index.js +0 -5
- package/legacy/components/columnSelection/GridCellCheckboxRenderer.js +0 -160
- package/legacy/components/columnSelection/GridHeaderCheckbox.js +0 -134
- package/legacy/components/columnSelection/index.js +0 -2
- package/legacy/components/columnsManagement/GridColumnsManagement.js +0 -307
- package/legacy/components/columnsManagement/index.js +0 -1
- package/legacy/components/columnsManagement/utils.js +0 -22
- package/legacy/components/containers/GridFooterContainer.js +0 -50
- package/legacy/components/containers/GridOverlay.js +0 -52
- package/legacy/components/containers/GridRoot.js +0 -79
- package/legacy/components/containers/GridRootStyles.js +0 -398
- package/legacy/components/containers/GridToolbarContainer.js +0 -59
- package/legacy/components/containers/index.js +0 -4
- package/legacy/components/index.js +0 -19
- package/legacy/components/menu/GridMenu.js +0 -132
- package/legacy/components/menu/columnMenu/GridColumnHeaderMenu.js +0 -61
- package/legacy/components/menu/columnMenu/GridColumnMenu.js +0 -81
- package/legacy/components/menu/columnMenu/GridColumnMenuContainer.js +0 -56
- package/legacy/components/menu/columnMenu/GridColumnMenuItemProps.js +0 -1
- package/legacy/components/menu/columnMenu/GridColumnMenuProps.js +0 -1
- package/legacy/components/menu/columnMenu/index.js +0 -9
- package/legacy/components/menu/columnMenu/menuItems/GridColumnMenuColumnsItem.js +0 -21
- package/legacy/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.js +0 -41
- package/legacy/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.js +0 -60
- package/legacy/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.js +0 -41
- package/legacy/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.js +0 -80
- package/legacy/components/menu/columnMenu/menuItems/index.js +0 -5
- package/legacy/components/menu/index.js +0 -2
- package/legacy/components/panel/GridColumnsPanel.js +0 -22
- package/legacy/components/panel/GridPanel.js +0 -137
- package/legacy/components/panel/GridPanelContent.js +0 -49
- package/legacy/components/panel/GridPanelFooter.js +0 -50
- package/legacy/components/panel/GridPanelHeader.js +0 -48
- package/legacy/components/panel/GridPanelWrapper.js +0 -64
- package/legacy/components/panel/GridPreferencesPanel.js +0 -26
- package/legacy/components/panel/filterPanel/GridFilterForm.js +0 -528
- package/legacy/components/panel/filterPanel/GridFilterInputBoolean.js +0 -115
- package/legacy/components/panel/filterPanel/GridFilterInputDate.js +0 -121
- package/legacy/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +0 -116
- package/legacy/components/panel/filterPanel/GridFilterInputMultipleValue.js +0 -102
- package/legacy/components/panel/filterPanel/GridFilterInputSingleSelect.js +0 -146
- package/legacy/components/panel/filterPanel/GridFilterInputValue.js +0 -104
- package/legacy/components/panel/filterPanel/GridFilterInputValueProps.js +0 -1
- package/legacy/components/panel/filterPanel/GridFilterPanel.js +0 -264
- package/legacy/components/panel/filterPanel/filterPanelUtils.js +0 -22
- package/legacy/components/panel/filterPanel/index.js +0 -9
- package/legacy/components/panel/index.js +0 -7
- package/legacy/components/reexportable.js +0 -1
- package/legacy/components/toolbar/GridToolbar.js +0 -64
- package/legacy/components/toolbar/GridToolbarColumnsButton.js +0 -68
- package/legacy/components/toolbar/GridToolbarDensitySelector.js +0 -142
- package/legacy/components/toolbar/GridToolbarExport.js +0 -80
- package/legacy/components/toolbar/GridToolbarExportContainer.js +0 -105
- package/legacy/components/toolbar/GridToolbarFilterButton.js +0 -136
- package/legacy/components/toolbar/GridToolbarQuickFilter.js +0 -164
- package/legacy/components/toolbar/index.js +0 -7
- package/legacy/components/virtualization/GridBottomContainer.js +0 -25
- package/legacy/components/virtualization/GridMainContainer.js +0 -20
- package/legacy/components/virtualization/GridTopContainer.js +0 -35
- package/legacy/components/virtualization/GridVirtualScrollbar.js +0 -129
- package/legacy/components/virtualization/GridVirtualScroller.js +0 -93
- package/legacy/components/virtualization/GridVirtualScrollerContent.js +0 -35
- package/legacy/components/virtualization/GridVirtualScrollerFiller.js +0 -70
- package/legacy/components/virtualization/GridVirtualScrollerRenderZone.js +0 -42
- package/legacy/constants/defaultGridSlotsComponents.js +0 -33
- package/legacy/constants/envConstants.js +0 -19
- package/legacy/constants/gridClasses.js +0 -5
- package/legacy/constants/gridDetailPanelToggleField.js +0 -2
- package/legacy/constants/index.js +0 -3
- package/legacy/constants/localeTextConstants.js +0 -158
- package/legacy/context/GridContextProvider.js +0 -21
- package/legacy/context/GridRootPropsContext.js +0 -6
- package/legacy/context/index.js +0 -1
- package/legacy/hooks/core/gridCoreSelector.js +0 -7
- package/legacy/hooks/core/index.js +0 -1
- package/legacy/hooks/core/pipeProcessing/gridPipeProcessingApi.js +0 -1
- package/legacy/hooks/core/pipeProcessing/index.js +0 -4
- package/legacy/hooks/core/pipeProcessing/useGridPipeProcessing.js +0 -114
- package/legacy/hooks/core/pipeProcessing/useGridRegisterPipeApplier.js +0 -26
- package/legacy/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.js +0 -26
- package/legacy/hooks/core/strategyProcessing/gridStrategyProcessingApi.js +0 -1
- package/legacy/hooks/core/strategyProcessing/index.js +0 -3
- package/legacy/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.js +0 -18
- package/legacy/hooks/core/strategyProcessing/useGridStrategyProcessing.js +0 -116
- package/legacy/hooks/core/useGridApiInitialization.js +0 -124
- package/legacy/hooks/core/useGridInitialization.js +0 -26
- package/legacy/hooks/core/useGridLocaleText.js +0 -12
- package/legacy/hooks/core/useGridLoggerFactory.js +0 -51
- package/legacy/hooks/core/useGridRefs.js +0 -13
- package/legacy/hooks/core/useGridStateInitialization.js +0 -106
- package/legacy/hooks/core/useGridTheme.js +0 -21
- package/legacy/hooks/features/clipboard/useGridClipboard.js +0 -92
- package/legacy/hooks/features/columnGrouping/gridColumnGroupsInterfaces.js +0 -1
- package/legacy/hooks/features/columnGrouping/gridColumnGroupsSelector.js +0 -24
- package/legacy/hooks/features/columnGrouping/gridColumnGroupsUtils.js +0 -92
- package/legacy/hooks/features/columnGrouping/index.js +0 -2
- package/legacy/hooks/features/columnGrouping/useGridColumnGrouping.js +0 -140
- package/legacy/hooks/features/columnHeaders/useGridColumnHeaders.js +0 -275
- package/legacy/hooks/features/columnMenu/columnMenuInterfaces.js +0 -1
- package/legacy/hooks/features/columnMenu/columnMenuSelector.js +0 -3
- package/legacy/hooks/features/columnMenu/index.js +0 -2
- package/legacy/hooks/features/columnMenu/useGridColumnMenu.js +0 -108
- package/legacy/hooks/features/columnMenu/useGridColumnMenuSlots.js +0 -71
- package/legacy/hooks/features/columns/gridColumnsInterfaces.js +0 -9
- package/legacy/hooks/features/columns/gridColumnsSelector.js +0 -174
- package/legacy/hooks/features/columns/gridColumnsUtils.js +0 -338
- package/legacy/hooks/features/columns/index.js +0 -2
- package/legacy/hooks/features/columns/useGridColumnSpanning.js +0 -105
- package/legacy/hooks/features/columns/useGridColumns.js +0 -319
- package/legacy/hooks/features/density/densitySelector.js +0 -10
- package/legacy/hooks/features/density/densityState.js +0 -1
- package/legacy/hooks/features/density/index.js +0 -2
- package/legacy/hooks/features/density/useGridDensity.js +0 -48
- package/legacy/hooks/features/dimensions/gridDimensionsApi.js +0 -1
- package/legacy/hooks/features/dimensions/gridDimensionsSelectors.js +0 -3
- package/legacy/hooks/features/dimensions/index.js +0 -2
- package/legacy/hooks/features/dimensions/useGridDimensions.js +0 -302
- package/legacy/hooks/features/editing/gridEditingSelectors.js +0 -4
- package/legacy/hooks/features/editing/useGridCellEditing.js +0 -456
- package/legacy/hooks/features/editing/useGridEditing.js +0 -145
- package/legacy/hooks/features/editing/useGridRowEditing.js +0 -567
- package/legacy/hooks/features/events/useGridEvents.js +0 -23
- package/legacy/hooks/features/export/serializers/csvSerializer.js +0 -155
- package/legacy/hooks/features/export/useGridCsvExport.js +0 -75
- package/legacy/hooks/features/export/useGridPrintExport.js +0 -313
- package/legacy/hooks/features/export/utils.js +0 -49
- package/legacy/hooks/features/filter/gridFilterSelector.js +0 -165
- package/legacy/hooks/features/filter/gridFilterState.js +0 -20
- package/legacy/hooks/features/filter/gridFilterUtils.js +0 -330
- package/legacy/hooks/features/filter/index.js +0 -2
- package/legacy/hooks/features/filter/useGridFilter.js +0 -378
- package/legacy/hooks/features/focus/gridFocusState.js +0 -1
- package/legacy/hooks/features/focus/gridFocusStateSelector.js +0 -31
- package/legacy/hooks/features/focus/index.js +0 -2
- package/legacy/hooks/features/focus/useGridFocus.js +0 -408
- package/legacy/hooks/features/headerFiltering/gridHeaderFilteringSelectors.js +0 -10
- package/legacy/hooks/features/headerFiltering/index.js +0 -1
- package/legacy/hooks/features/headerFiltering/useGridHeaderFiltering.js +0 -93
- package/legacy/hooks/features/index.js +0 -16
- package/legacy/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +0 -565
- package/legacy/hooks/features/pagination/gridPaginationInterfaces.js +0 -1
- package/legacy/hooks/features/pagination/gridPaginationSelector.js +0 -115
- package/legacy/hooks/features/pagination/gridPaginationUtils.js +0 -31
- package/legacy/hooks/features/pagination/index.js +0 -2
- package/legacy/hooks/features/pagination/useGridPagination.js +0 -175
- package/legacy/hooks/features/preferencesPanel/gridPreferencePanelSelector.js +0 -3
- package/legacy/hooks/features/preferencesPanel/gridPreferencePanelState.js +0 -1
- package/legacy/hooks/features/preferencesPanel/gridPreferencePanelsValue.js +0 -6
- package/legacy/hooks/features/preferencesPanel/index.js +0 -3
- package/legacy/hooks/features/preferencesPanel/useGridPreferencesPanel.js +0 -125
- package/legacy/hooks/features/rowSelection/gridRowSelectionSelector.js +0 -19
- package/legacy/hooks/features/rowSelection/index.js +0 -1
- package/legacy/hooks/features/rowSelection/useGridRowSelection.js +0 -419
- package/legacy/hooks/features/rowSelection/useGridRowSelectionPreProcessors.js +0 -45
- package/legacy/hooks/features/rowSelection/utils.js +0 -8
- package/legacy/hooks/features/rows/gridRowsInterfaces.js +0 -1
- package/legacy/hooks/features/rows/gridRowsMetaSelector.js +0 -3
- package/legacy/hooks/features/rows/gridRowsMetaState.js +0 -1
- package/legacy/hooks/features/rows/gridRowsSelector.js +0 -90
- package/legacy/hooks/features/rows/gridRowsUtils.js +0 -294
- package/legacy/hooks/features/rows/index.js +0 -4
- package/legacy/hooks/features/rows/useGridParamsApi.js +0 -142
- package/legacy/hooks/features/rows/useGridRows.js +0 -466
- package/legacy/hooks/features/rows/useGridRowsMeta.js +0 -236
- package/legacy/hooks/features/rows/useGridRowsPreProcessors.js +0 -82
- package/legacy/hooks/features/scroll/useGridScroll.js +0 -133
- package/legacy/hooks/features/sorting/gridSortingSelector.js +0 -56
- package/legacy/hooks/features/sorting/gridSortingState.js +0 -1
- package/legacy/hooks/features/sorting/gridSortingUtils.js +0 -154
- package/legacy/hooks/features/sorting/index.js +0 -2
- package/legacy/hooks/features/sorting/useGridSorting.js +0 -276
- package/legacy/hooks/features/statePersistence/gridStatePersistenceInterface.js +0 -1
- package/legacy/hooks/features/statePersistence/index.js +0 -1
- package/legacy/hooks/features/statePersistence/useGridStatePersistence.js +0 -25
- package/legacy/hooks/features/virtualization/gridVirtualizationSelectors.js +0 -52
- package/legacy/hooks/features/virtualization/index.js +0 -2
- package/legacy/hooks/features/virtualization/useGridVirtualScroller.js +0 -643
- package/legacy/hooks/features/virtualization/useGridVirtualization.js +0 -58
- package/legacy/hooks/index.js +0 -3
- package/legacy/hooks/utils/index.js +0 -9
- package/legacy/hooks/utils/useFirstRender.js +0 -8
- package/legacy/hooks/utils/useGridApiContext.js +0 -9
- package/legacy/hooks/utils/useGridApiEventHandler.js +0 -105
- package/legacy/hooks/utils/useGridApiMethod.js +0 -11
- package/legacy/hooks/utils/useGridApiRef.js +0 -7
- package/legacy/hooks/utils/useGridAriaAttributes.js +0 -25
- package/legacy/hooks/utils/useGridInitializeState.js +0 -8
- package/legacy/hooks/utils/useGridLogger.js +0 -10
- package/legacy/hooks/utils/useGridNativeEventListener.js +0 -32
- package/legacy/hooks/utils/useGridPrivateApiContext.js +0 -12
- package/legacy/hooks/utils/useGridRootProps.js +0 -9
- package/legacy/hooks/utils/useGridSelector.js +0 -54
- package/legacy/hooks/utils/useGridVisibleRows.js +0 -42
- package/legacy/hooks/utils/useLazyRef.js +0 -11
- package/legacy/hooks/utils/useOnMount.js +0 -7
- package/legacy/hooks/utils/useResizeObserver.js +0 -36
- package/legacy/hooks/utils/useRunOnce.js +0 -18
- package/legacy/hooks/utils/useTimeout.js +0 -38
- package/legacy/index.js +0 -38
- package/legacy/internals/index.js +0 -68
- package/legacy/internals/utils/computeSlots.js +0 -17
- package/legacy/internals/utils/index.js +0 -3
- package/legacy/internals/utils/propValidation.js +0 -21
- package/legacy/internals/utils/useProps.js +0 -32
- package/legacy/joy/icons.js +0 -432
- package/legacy/joy/index.js +0 -2
- package/legacy/joy/joySlots.js +0 -420
- package/legacy/locales/arSD.js +0 -160
- package/legacy/locales/beBY.js +0 -184
- package/legacy/locales/bgBG.js +0 -160
- package/legacy/locales/coreLocales.js +0 -62
- package/legacy/locales/csCZ.js +0 -181
- package/legacy/locales/daDK.js +0 -160
- package/legacy/locales/deDE.js +0 -160
- package/legacy/locales/elGR.js +0 -160
- package/legacy/locales/enUS.js +0 -4
- package/legacy/locales/esES.js +0 -160
- package/legacy/locales/faIR.js +0 -160
- package/legacy/locales/fiFI.js +0 -160
- package/legacy/locales/frFR.js +0 -160
- package/legacy/locales/heIL.js +0 -160
- package/legacy/locales/hrHR.js +0 -160
- package/legacy/locales/huHU.js +0 -160
- package/legacy/locales/index.js +0 -35
- package/legacy/locales/itIT.js +0 -160
- package/legacy/locales/jaJP.js +0 -160
- package/legacy/locales/koKR.js +0 -162
- package/legacy/locales/nbNO.js +0 -162
- package/legacy/locales/nlNL.js +0 -160
- package/legacy/locales/plPL.js +0 -163
- package/legacy/locales/ptBR.js +0 -160
- package/legacy/locales/ptPT.js +0 -160
- package/legacy/locales/roRO.js +0 -160
- package/legacy/locales/ruRU.js +0 -181
- package/legacy/locales/skSK.js +0 -181
- package/legacy/locales/svSE.js +0 -160
- package/legacy/locales/trTR.js +0 -161
- package/legacy/locales/ukUA.js +0 -182
- package/legacy/locales/urPK.js +0 -160
- package/legacy/locales/viVN.js +0 -160
- package/legacy/locales/zhCN.js +0 -160
- package/legacy/locales/zhHK.js +0 -160
- package/legacy/locales/zhTW.js +0 -160
- package/legacy/material/components/MUISelectOption.js +0 -14
- package/legacy/material/icons/GridColumnUnsortedIcon.js +0 -16
- package/legacy/material/icons/index.js +0 -89
- package/legacy/material/index.js +0 -69
- package/legacy/models/api/gridApiCommon.js +0 -1
- package/legacy/models/api/gridApiCommunity.js +0 -1
- package/legacy/models/api/gridCallbackDetails.js +0 -1
- package/legacy/models/api/gridColumnApi.js +0 -1
- package/legacy/models/api/gridColumnGroupingApi.js +0 -1
- package/legacy/models/api/gridColumnMenuApi.js +0 -1
- package/legacy/models/api/gridColumnSpanning.js +0 -1
- package/legacy/models/api/gridCoreApi.js +0 -1
- package/legacy/models/api/gridCsvExportApi.js +0 -1
- package/legacy/models/api/gridDensityApi.js +0 -1
- package/legacy/models/api/gridEditingApi.js +0 -1
- package/legacy/models/api/gridFilterApi.js +0 -1
- package/legacy/models/api/gridFocusApi.js +0 -1
- package/legacy/models/api/gridHeaderFilteringApi.js +0 -1
- package/legacy/models/api/gridLocaleTextApi.js +0 -1
- package/legacy/models/api/gridLoggerApi.js +0 -1
- package/legacy/models/api/gridParamsApi.js +0 -1
- package/legacy/models/api/gridPreferencesPanelApi.js +0 -1
- package/legacy/models/api/gridPrintExportApi.js +0 -1
- package/legacy/models/api/gridRowApi.js +0 -1
- package/legacy/models/api/gridRowSelectionApi.js +0 -1
- package/legacy/models/api/gridRowsMetaApi.js +0 -1
- package/legacy/models/api/gridScrollApi.js +0 -1
- package/legacy/models/api/gridSortApi.js +0 -1
- package/legacy/models/api/gridStateApi.js +0 -1
- package/legacy/models/api/gridVirtualizationApi.js +0 -1
- package/legacy/models/api/index.js +0 -16
- package/legacy/models/colDef/gridColDef.js +0 -1
- package/legacy/models/colDef/gridColType.js +0 -1
- package/legacy/models/colDef/gridColumnTypesRecord.js +0 -1
- package/legacy/models/colDef/index.js +0 -6
- package/legacy/models/controlStateItem.js +0 -1
- package/legacy/models/cursorCoordinates.js +0 -1
- package/legacy/models/elementSize.js +0 -1
- package/legacy/models/events/gridEventListener.js +0 -1
- package/legacy/models/events/gridEventLookup.js +0 -1
- package/legacy/models/events/gridEventPublisher.js +0 -1
- package/legacy/models/events/index.js +0 -3
- package/legacy/models/gridApiCaches.js +0 -1
- package/legacy/models/gridCell.js +0 -1
- package/legacy/models/gridCellClass.js +0 -1
- package/legacy/models/gridColumnGrouping.js +0 -11
- package/legacy/models/gridColumnHeaderClass.js +0 -1
- package/legacy/models/gridColumnSpanning.js +0 -1
- package/legacy/models/gridDensity.js +0 -1
- package/legacy/models/gridEditRowModel.js +0 -16
- package/legacy/models/gridExport.js +0 -1
- package/legacy/models/gridFeatureMode.js +0 -1
- package/legacy/models/gridFilterItem.js +0 -11
- package/legacy/models/gridFilterModel.js +0 -1
- package/legacy/models/gridFilterOperator.js +0 -1
- package/legacy/models/gridHeaderFilteringModel.js +0 -1
- package/legacy/models/gridIconSlotsComponent.js +0 -1
- package/legacy/models/gridPaginationProps.js +0 -1
- package/legacy/models/gridRenderContextProps.js +0 -1
- package/legacy/models/gridRowSelectionModel.js +0 -1
- package/legacy/models/gridRows.js +0 -1
- package/legacy/models/gridSlotsComponent.js +0 -1
- package/legacy/models/gridSlotsComponentsProps.js +0 -1
- package/legacy/models/gridSortModel.js +0 -1
- package/legacy/models/gridStateCommunity.js +0 -1
- package/legacy/models/index.js +0 -29
- package/legacy/models/logger.js +0 -1
- package/legacy/models/muiEvent.js +0 -1
- package/legacy/models/params/gridCellParams.js +0 -1
- package/legacy/models/params/gridColumnGroupHeaderParams.js +0 -1
- package/legacy/models/params/gridColumnHeaderParams.js +0 -1
- package/legacy/models/params/gridColumnOrderChangeParams.js +0 -1
- package/legacy/models/params/gridColumnResizeParams.js +0 -1
- package/legacy/models/params/gridEditCellParams.js +0 -27
- package/legacy/models/params/gridHeaderSelectionCheckboxParams.js +0 -1
- package/legacy/models/params/gridMenuParams.js +0 -1
- package/legacy/models/params/gridPreferencePanelParams.js +0 -1
- package/legacy/models/params/gridRowParams.js +0 -44
- package/legacy/models/params/gridRowSelectionCheckboxParams.js +0 -1
- package/legacy/models/params/gridScrollParams.js +0 -1
- package/legacy/models/params/gridValueOptionsParams.js +0 -1
- package/legacy/models/params/index.js +0 -13
- package/legacy/models/props/DataGridProps.js +0 -1
- package/legacy/themeAugmentation/index.js +0 -4
- package/legacy/themeAugmentation/overrides.js +0 -1
- package/legacy/themeAugmentation/props.js +0 -1
- package/legacy/utils/EventManager.js +0 -91
- package/legacy/utils/Store.js +0 -34
- package/legacy/utils/cleanupTracking/CleanupTracking.js +0 -1
- package/legacy/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.js +0 -29
- package/legacy/utils/cleanupTracking/TimerBasedCleanupTracking.js +0 -52
- package/legacy/utils/createControllablePromise.js +0 -11
- package/legacy/utils/createSelector.js +0 -120
- package/legacy/utils/doesSupportPreventScroll.js +0 -13
- package/legacy/utils/domUtils.js +0 -49
- package/legacy/utils/exportAs.js +0 -40
- package/legacy/utils/fastMemo.js +0 -5
- package/legacy/utils/fastObjectShallowCompare.js +0 -32
- package/legacy/utils/getGridLocalization.js +0 -15
- package/legacy/utils/getPublicApiRef.js +0 -5
- package/legacy/utils/index.js +0 -1
- package/legacy/utils/keyboardUtils.js +0 -60
- package/legacy/utils/utils.js +0 -189
- package/legacy/utils/warning.js +0 -25
package/legacy/locales/faIR.js
DELETED
|
@@ -1,160 +0,0 @@
|
|
|
1
|
-
import { faIR as faIRCore } from '@mui/material/locale';
|
|
2
|
-
import { getGridLocalization } from '../utils/getGridLocalization';
|
|
3
|
-
var faIRGrid = {
|
|
4
|
-
// Root
|
|
5
|
-
noRowsLabel: 'بدون سطر',
|
|
6
|
-
noResultsOverlayLabel: 'نتیجه ای پیدا نشد.',
|
|
7
|
-
// Density selector toolbar button text
|
|
8
|
-
toolbarDensity: 'تراکم',
|
|
9
|
-
toolbarDensityLabel: 'تراکم',
|
|
10
|
-
toolbarDensityCompact: 'فشرده',
|
|
11
|
-
toolbarDensityStandard: 'استاندارد',
|
|
12
|
-
toolbarDensityComfortable: 'راحت',
|
|
13
|
-
// Columns selector toolbar button text
|
|
14
|
-
toolbarColumns: 'ستونها',
|
|
15
|
-
toolbarColumnsLabel: 'ستونها را انتخاب کنید',
|
|
16
|
-
// Filters toolbar button text
|
|
17
|
-
toolbarFilters: 'فیلترها',
|
|
18
|
-
toolbarFiltersLabel: 'نمایش فیلترها',
|
|
19
|
-
toolbarFiltersTooltipHide: 'مخفی کردن فیلترها',
|
|
20
|
-
toolbarFiltersTooltipShow: 'نمایش فیلترها',
|
|
21
|
-
toolbarFiltersTooltipActive: function toolbarFiltersTooltipActive(count) {
|
|
22
|
-
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");
|
|
23
|
-
},
|
|
24
|
-
// Quick filter toolbar field
|
|
25
|
-
toolbarQuickFilterPlaceholder: 'جستجو...',
|
|
26
|
-
toolbarQuickFilterLabel: 'جستجو',
|
|
27
|
-
toolbarQuickFilterDeleteIconLabel: 'حذف',
|
|
28
|
-
// Export selector toolbar button text
|
|
29
|
-
toolbarExport: 'خروجی',
|
|
30
|
-
toolbarExportLabel: 'خروجی',
|
|
31
|
-
toolbarExportCSV: 'دانلود به صورت CSV',
|
|
32
|
-
toolbarExportPrint: 'چاپ',
|
|
33
|
-
toolbarExportExcel: 'دانلود به صورت اکسل',
|
|
34
|
-
// Columns management text
|
|
35
|
-
// columnsManagementSearchTitle: 'Search',
|
|
36
|
-
// columnsManagementNoColumns: 'No columns',
|
|
37
|
-
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
38
|
-
|
|
39
|
-
// Filter panel text
|
|
40
|
-
filterPanelAddFilter: 'افزودن فیلتر',
|
|
41
|
-
filterPanelRemoveAll: 'حذف همه',
|
|
42
|
-
filterPanelDeleteIconLabel: 'حذف',
|
|
43
|
-
filterPanelLogicOperator: 'عملگر منطقی',
|
|
44
|
-
filterPanelOperator: 'عملگرها',
|
|
45
|
-
filterPanelOperatorAnd: 'و',
|
|
46
|
-
filterPanelOperatorOr: 'یا',
|
|
47
|
-
filterPanelColumns: 'ستونها',
|
|
48
|
-
filterPanelInputLabel: 'مقدار',
|
|
49
|
-
filterPanelInputPlaceholder: 'فیلتر مقدار',
|
|
50
|
-
// Filter operators text
|
|
51
|
-
filterOperatorContains: 'شامل',
|
|
52
|
-
filterOperatorEquals: 'مساوی',
|
|
53
|
-
filterOperatorStartsWith: 'شروع با',
|
|
54
|
-
filterOperatorEndsWith: 'پایان با',
|
|
55
|
-
filterOperatorIs: 'هست',
|
|
56
|
-
filterOperatorNot: 'نیست',
|
|
57
|
-
filterOperatorAfter: 'بعد از',
|
|
58
|
-
filterOperatorOnOrAfter: 'معادل یا بعدش',
|
|
59
|
-
filterOperatorBefore: 'قبلش',
|
|
60
|
-
filterOperatorOnOrBefore: 'معادل یا قبلش',
|
|
61
|
-
filterOperatorIsEmpty: 'خالی است',
|
|
62
|
-
filterOperatorIsNotEmpty: 'خالی نیست',
|
|
63
|
-
filterOperatorIsAnyOf: 'هر یک از',
|
|
64
|
-
'filterOperator=': '=',
|
|
65
|
-
'filterOperator!=': '!=',
|
|
66
|
-
'filterOperator>': '>',
|
|
67
|
-
'filterOperator>=': '>=',
|
|
68
|
-
'filterOperator<': '<',
|
|
69
|
-
'filterOperator<=': '<=',
|
|
70
|
-
// Header filter operators text
|
|
71
|
-
headerFilterOperatorContains: 'شامل',
|
|
72
|
-
headerFilterOperatorEquals: 'مساوی',
|
|
73
|
-
headerFilterOperatorStartsWith: 'شروع با',
|
|
74
|
-
headerFilterOperatorEndsWith: 'پایان با',
|
|
75
|
-
headerFilterOperatorIs: 'هست',
|
|
76
|
-
headerFilterOperatorNot: 'نیست',
|
|
77
|
-
headerFilterOperatorAfter: 'بعد از',
|
|
78
|
-
headerFilterOperatorOnOrAfter: 'معادل یا بعد از',
|
|
79
|
-
headerFilterOperatorBefore: 'قبل از',
|
|
80
|
-
headerFilterOperatorOnOrBefore: 'معادل یا قبل از',
|
|
81
|
-
headerFilterOperatorIsEmpty: 'خالی است',
|
|
82
|
-
headerFilterOperatorIsNotEmpty: 'خالی نیست',
|
|
83
|
-
headerFilterOperatorIsAnyOf: 'هر یک از',
|
|
84
|
-
'headerFilterOperator=': 'مساوی',
|
|
85
|
-
'headerFilterOperator!=': 'نامساوی',
|
|
86
|
-
'headerFilterOperator>': 'بزرگتر',
|
|
87
|
-
'headerFilterOperator>=': 'بزرگتر یا مساوی',
|
|
88
|
-
'headerFilterOperator<': 'کوچکتر',
|
|
89
|
-
'headerFilterOperator<=': 'کوچکتر یا مساوی',
|
|
90
|
-
// Filter values text
|
|
91
|
-
filterValueAny: 'هرچیزی',
|
|
92
|
-
filterValueTrue: 'صحیح',
|
|
93
|
-
filterValueFalse: 'غلط',
|
|
94
|
-
// Column menu text
|
|
95
|
-
columnMenuLabel: 'فهرست',
|
|
96
|
-
columnMenuShowColumns: 'نمایش ستونها',
|
|
97
|
-
columnMenuManageColumns: 'مدیریت ستونها',
|
|
98
|
-
columnMenuFilter: 'فیلتر',
|
|
99
|
-
columnMenuHideColumn: 'مخفی',
|
|
100
|
-
columnMenuUnsort: 'نامرتبکردن',
|
|
101
|
-
columnMenuSortAsc: 'مرتبکردن صعودی',
|
|
102
|
-
columnMenuSortDesc: 'مرتبکردن نزولی',
|
|
103
|
-
// Column header text
|
|
104
|
-
columnHeaderFiltersTooltipActive: function columnHeaderFiltersTooltipActive(count) {
|
|
105
|
-
return count !== 1 ? "".concat(count, " \u0641\u06CC\u0644\u062A\u0631\u200C\u0647\u0627\u06CC \u0641\u0639\u0627\u0644") : "".concat(count, " \u0641\u06CC\u0644\u062A\u0631 \u0641\u0639\u0627\u0644");
|
|
106
|
-
},
|
|
107
|
-
columnHeaderFiltersLabel: 'نمایش فیلترها',
|
|
108
|
-
columnHeaderSortIconLabel: 'مرتبکردن',
|
|
109
|
-
// Rows selected footer text
|
|
110
|
-
footerRowSelected: function footerRowSelected(count) {
|
|
111
|
-
return count !== 1 ? "".concat(count.toLocaleString(), " \u0633\u0637\u0631\u0647\u0627\u06CC \u0627\u0646\u062A\u062E\u0627\u0628 \u0634\u062F\u0647") : "".concat(count.toLocaleString(), " \u0633\u0637\u0631 \u0627\u0646\u062A\u062E\u0627\u0628 \u0634\u062F\u0647");
|
|
112
|
-
},
|
|
113
|
-
// Total row amount footer text
|
|
114
|
-
footerTotalRows: 'مجموع سطرها:',
|
|
115
|
-
// Total visible row amount footer text
|
|
116
|
-
footerTotalVisibleRows: function footerTotalVisibleRows(visibleCount, totalCount) {
|
|
117
|
-
return "".concat(visibleCount.toLocaleString(), " \u0627\u0632 ").concat(totalCount.toLocaleString());
|
|
118
|
-
},
|
|
119
|
-
// Checkbox selection text
|
|
120
|
-
checkboxSelectionHeaderName: 'چکباکس انتخاب',
|
|
121
|
-
checkboxSelectionSelectAllRows: 'انتخاب همهی ردیفها',
|
|
122
|
-
checkboxSelectionUnselectAllRows: 'لغو انتخاب همهی ردیفها',
|
|
123
|
-
checkboxSelectionSelectRow: 'انتخاب ردیف',
|
|
124
|
-
checkboxSelectionUnselectRow: 'لغو انتخاب ردیف',
|
|
125
|
-
// Boolean cell text
|
|
126
|
-
booleanCellTrueLabel: 'صحیح',
|
|
127
|
-
booleanCellFalseLabel: 'غلط',
|
|
128
|
-
// Actions cell more text
|
|
129
|
-
actionsCellMore: 'بیشتر',
|
|
130
|
-
// Column pinning text
|
|
131
|
-
pinToLeft: 'سنجاق کردن به چپ',
|
|
132
|
-
pinToRight: 'سنجاق کردن به راست',
|
|
133
|
-
unpin: 'برداشتن سنجاق',
|
|
134
|
-
// Tree Data
|
|
135
|
-
treeDataGroupingHeaderName: 'گروهبندی',
|
|
136
|
-
treeDataExpand: 'نمایش فرزندان',
|
|
137
|
-
treeDataCollapse: 'پنهانسازی فرزندان',
|
|
138
|
-
// Grouping columns
|
|
139
|
-
groupingColumnHeaderName: 'گروهبندی',
|
|
140
|
-
groupColumn: function groupColumn(name) {
|
|
141
|
-
return "\u06AF\u0631\u0648\u0647\u200C\u0628\u0646\u062F\u06CC \u0628\u0631\u0627\u0633\u0627\u0633 ".concat(name);
|
|
142
|
-
},
|
|
143
|
-
unGroupColumn: function unGroupColumn(name) {
|
|
144
|
-
return "\u0644\u063A\u0648 \u06AF\u0631\u0648\u0647\u200C\u0628\u0646\u062F\u06CC \u0628\u0631\u0627\u0633\u0627\u0633 ".concat(name);
|
|
145
|
-
},
|
|
146
|
-
// Master/detail
|
|
147
|
-
detailPanelToggle: 'پنل جزئیات',
|
|
148
|
-
expandDetailPanel: 'بازکردن پنل جزئیات',
|
|
149
|
-
collapseDetailPanel: 'بستن پنل جزئیات',
|
|
150
|
-
// Row reordering text
|
|
151
|
-
rowReorderingHeaderName: 'ترتیب مجدد سطر',
|
|
152
|
-
// Aggregation
|
|
153
|
-
aggregationMenuItemHeader: 'تجمیع',
|
|
154
|
-
aggregationFunctionLabelSum: 'جمع',
|
|
155
|
-
aggregationFunctionLabelAvg: 'میانگین',
|
|
156
|
-
aggregationFunctionLabelMin: 'حداقل',
|
|
157
|
-
aggregationFunctionLabelMax: 'حداکثر',
|
|
158
|
-
aggregationFunctionLabelSize: 'اندازه'
|
|
159
|
-
};
|
|
160
|
-
export var faIR = getGridLocalization(faIRGrid, faIRCore);
|
package/legacy/locales/fiFI.js
DELETED
|
@@ -1,160 +0,0 @@
|
|
|
1
|
-
import { fiFI as fiFICore } from '@mui/material/locale';
|
|
2
|
-
import { getGridLocalization } from '../utils/getGridLocalization';
|
|
3
|
-
var fiFIGrid = {
|
|
4
|
-
// Root
|
|
5
|
-
noRowsLabel: 'Ei rivejä',
|
|
6
|
-
noResultsOverlayLabel: 'Ei tuloksia.',
|
|
7
|
-
// Density selector toolbar button text
|
|
8
|
-
toolbarDensity: 'Tiiveys',
|
|
9
|
-
toolbarDensityLabel: 'Tiiveys',
|
|
10
|
-
toolbarDensityCompact: 'Kompakti',
|
|
11
|
-
toolbarDensityStandard: 'Vakio',
|
|
12
|
-
toolbarDensityComfortable: 'Mukava',
|
|
13
|
-
// Columns selector toolbar button text
|
|
14
|
-
toolbarColumns: 'Sarakkeet',
|
|
15
|
-
toolbarColumnsLabel: 'Valitse sarakkeet',
|
|
16
|
-
// Filters toolbar button text
|
|
17
|
-
toolbarFilters: 'Suodattimet',
|
|
18
|
-
toolbarFiltersLabel: 'Näytä suodattimet',
|
|
19
|
-
toolbarFiltersTooltipHide: 'Piilota suodattimet',
|
|
20
|
-
toolbarFiltersTooltipShow: 'Näytä suodattimet',
|
|
21
|
-
toolbarFiltersTooltipActive: function toolbarFiltersTooltipActive(count) {
|
|
22
|
-
return count !== 1 ? "".concat(count, " aktiivista suodatinta") : "".concat(count, " aktiivinen suodatin");
|
|
23
|
-
},
|
|
24
|
-
// Quick filter toolbar field
|
|
25
|
-
toolbarQuickFilterPlaceholder: 'Hae…',
|
|
26
|
-
toolbarQuickFilterLabel: 'Hae',
|
|
27
|
-
toolbarQuickFilterDeleteIconLabel: 'Tyhjennä',
|
|
28
|
-
// Export selector toolbar button text
|
|
29
|
-
toolbarExport: 'Vie',
|
|
30
|
-
toolbarExportLabel: 'Vie',
|
|
31
|
-
toolbarExportCSV: 'Lataa CSV-muodossa',
|
|
32
|
-
toolbarExportPrint: 'Tulosta',
|
|
33
|
-
toolbarExportExcel: 'Lataa Excel-muodossa',
|
|
34
|
-
// Columns management text
|
|
35
|
-
// columnsManagementSearchTitle: 'Search',
|
|
36
|
-
// columnsManagementNoColumns: 'No columns',
|
|
37
|
-
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
38
|
-
|
|
39
|
-
// Filter panel text
|
|
40
|
-
filterPanelAddFilter: 'Lisää suodatin',
|
|
41
|
-
filterPanelRemoveAll: 'Poista kaikki',
|
|
42
|
-
filterPanelDeleteIconLabel: 'Poista',
|
|
43
|
-
filterPanelLogicOperator: 'Logiikkaoperaattori',
|
|
44
|
-
filterPanelOperator: 'Operaattorit',
|
|
45
|
-
filterPanelOperatorAnd: 'Ja',
|
|
46
|
-
filterPanelOperatorOr: 'Tai',
|
|
47
|
-
filterPanelColumns: 'Sarakkeet',
|
|
48
|
-
filterPanelInputLabel: 'Arvo',
|
|
49
|
-
filterPanelInputPlaceholder: 'Suodattimen arvo',
|
|
50
|
-
// Filter operators text
|
|
51
|
-
filterOperatorContains: 'sisältää',
|
|
52
|
-
filterOperatorEquals: 'on yhtä suuri kuin',
|
|
53
|
-
filterOperatorStartsWith: 'alkaa',
|
|
54
|
-
filterOperatorEndsWith: 'päättyy',
|
|
55
|
-
filterOperatorIs: 'on',
|
|
56
|
-
filterOperatorNot: 'ei ole',
|
|
57
|
-
filterOperatorAfter: 'on jälkeen',
|
|
58
|
-
filterOperatorOnOrAfter: 'on sama tai jälkeen',
|
|
59
|
-
filterOperatorBefore: 'on ennen',
|
|
60
|
-
filterOperatorOnOrBefore: 'on sama tai ennen',
|
|
61
|
-
filterOperatorIsEmpty: 'on tyhjä',
|
|
62
|
-
filterOperatorIsNotEmpty: 'ei ole tyhjä',
|
|
63
|
-
filterOperatorIsAnyOf: 'on mikä tahansa seuraavista',
|
|
64
|
-
'filterOperator=': '=',
|
|
65
|
-
'filterOperator!=': '!=',
|
|
66
|
-
'filterOperator>': '>',
|
|
67
|
-
'filterOperator>=': '>=',
|
|
68
|
-
'filterOperator<': '<',
|
|
69
|
-
'filterOperator<=': '<=',
|
|
70
|
-
// Header filter operators text
|
|
71
|
-
headerFilterOperatorContains: 'Sisältää',
|
|
72
|
-
headerFilterOperatorEquals: 'On yhtä suuri kuin',
|
|
73
|
-
headerFilterOperatorStartsWith: 'Alkaa',
|
|
74
|
-
headerFilterOperatorEndsWith: 'Päättyy',
|
|
75
|
-
headerFilterOperatorIs: 'On',
|
|
76
|
-
headerFilterOperatorNot: 'Ei ole',
|
|
77
|
-
headerFilterOperatorAfter: 'On jälkeen',
|
|
78
|
-
headerFilterOperatorOnOrAfter: 'On sama tai jälkeen',
|
|
79
|
-
headerFilterOperatorBefore: 'On ennen',
|
|
80
|
-
headerFilterOperatorOnOrBefore: 'On sama tai ennen',
|
|
81
|
-
headerFilterOperatorIsEmpty: 'On tyhjä',
|
|
82
|
-
headerFilterOperatorIsNotEmpty: 'Ei ole tyhjä',
|
|
83
|
-
headerFilterOperatorIsAnyOf: 'On mikä tahansa seuraavista',
|
|
84
|
-
'headerFilterOperator=': 'On yhtä suuri kuin',
|
|
85
|
-
'headerFilterOperator!=': 'Ei ole yhtä suuri kuin',
|
|
86
|
-
'headerFilterOperator>': 'Enemmän kuin',
|
|
87
|
-
'headerFilterOperator>=': 'Enemmän tai yhtä paljon kuin',
|
|
88
|
-
'headerFilterOperator<': 'Vähemmän kuin',
|
|
89
|
-
'headerFilterOperator<=': 'Vähemmän tai yhtä paljon kuin',
|
|
90
|
-
// Filter values text
|
|
91
|
-
filterValueAny: 'mikä tahansa',
|
|
92
|
-
filterValueTrue: 'tosi',
|
|
93
|
-
filterValueFalse: 'epätosi',
|
|
94
|
-
// Column menu text
|
|
95
|
-
columnMenuLabel: 'Valikko',
|
|
96
|
-
columnMenuShowColumns: 'Näytä sarakkeet',
|
|
97
|
-
columnMenuManageColumns: 'Hallitse sarakkeita',
|
|
98
|
-
columnMenuFilter: 'Suodata',
|
|
99
|
-
columnMenuHideColumn: 'Piilota',
|
|
100
|
-
columnMenuUnsort: 'Poista järjestys',
|
|
101
|
-
columnMenuSortAsc: 'Järjestä nousevasti',
|
|
102
|
-
columnMenuSortDesc: 'Järjestä laskevasti',
|
|
103
|
-
// Column header text
|
|
104
|
-
columnHeaderFiltersTooltipActive: function columnHeaderFiltersTooltipActive(count) {
|
|
105
|
-
return count !== 1 ? "".concat(count, " aktiivista suodatinta") : "".concat(count, " aktiivinen suodatin");
|
|
106
|
-
},
|
|
107
|
-
columnHeaderFiltersLabel: 'Näytä suodattimet',
|
|
108
|
-
columnHeaderSortIconLabel: 'Järjestä',
|
|
109
|
-
// Rows selected footer text
|
|
110
|
-
footerRowSelected: function footerRowSelected(count) {
|
|
111
|
-
return count !== 1 ? "".concat(count.toLocaleString(), " rivi\xE4 valittu") : "".concat(count.toLocaleString(), " rivi valittu");
|
|
112
|
-
},
|
|
113
|
-
// Total row amount footer text
|
|
114
|
-
footerTotalRows: 'Rivejä yhteensä:',
|
|
115
|
-
// Total visible row amount footer text
|
|
116
|
-
footerTotalVisibleRows: function footerTotalVisibleRows(visibleCount, totalCount) {
|
|
117
|
-
return "".concat(visibleCount.toLocaleString(), " / ").concat(totalCount.toLocaleString());
|
|
118
|
-
},
|
|
119
|
-
// Checkbox selection text
|
|
120
|
-
checkboxSelectionHeaderName: 'Valintaruutu',
|
|
121
|
-
checkboxSelectionSelectAllRows: 'Valitse kaikki rivit',
|
|
122
|
-
checkboxSelectionUnselectAllRows: 'Poista kaikkien rivien valinta',
|
|
123
|
-
checkboxSelectionSelectRow: 'Valitse rivi',
|
|
124
|
-
checkboxSelectionUnselectRow: 'Poista rivin valinta',
|
|
125
|
-
// Boolean cell text
|
|
126
|
-
booleanCellTrueLabel: 'tosi',
|
|
127
|
-
booleanCellFalseLabel: 'epätosi',
|
|
128
|
-
// Actions cell more text
|
|
129
|
-
actionsCellMore: 'lisää',
|
|
130
|
-
// Column pinning text
|
|
131
|
-
pinToLeft: 'Kiinnitä vasemmalle',
|
|
132
|
-
pinToRight: 'Kiinnitä oikealle',
|
|
133
|
-
unpin: 'Irrota kiinnitys',
|
|
134
|
-
// Tree Data
|
|
135
|
-
treeDataGroupingHeaderName: 'Ryhmä',
|
|
136
|
-
treeDataExpand: 'Laajenna',
|
|
137
|
-
treeDataCollapse: 'Supista',
|
|
138
|
-
// Grouping columns
|
|
139
|
-
groupingColumnHeaderName: 'Ryhmä',
|
|
140
|
-
groupColumn: function groupColumn(name) {
|
|
141
|
-
return "Ryhmittelyperuste ".concat(name);
|
|
142
|
-
},
|
|
143
|
-
unGroupColumn: function unGroupColumn(name) {
|
|
144
|
-
return "Poista ryhmittelyperuste ".concat(name);
|
|
145
|
-
},
|
|
146
|
-
// Master/detail
|
|
147
|
-
detailPanelToggle: 'Yksityiskohtapaneelin vaihto',
|
|
148
|
-
expandDetailPanel: 'Laajenna',
|
|
149
|
-
collapseDetailPanel: 'Tiivistä',
|
|
150
|
-
// Row reordering text
|
|
151
|
-
rowReorderingHeaderName: 'Rivien uudelleenjärjestely',
|
|
152
|
-
// Aggregation
|
|
153
|
-
aggregationMenuItemHeader: 'Koostaminen',
|
|
154
|
-
aggregationFunctionLabelSum: 'summa',
|
|
155
|
-
aggregationFunctionLabelAvg: 'ka.',
|
|
156
|
-
aggregationFunctionLabelMin: 'min.',
|
|
157
|
-
aggregationFunctionLabelMax: 'maks.',
|
|
158
|
-
aggregationFunctionLabelSize: 'koko'
|
|
159
|
-
};
|
|
160
|
-
export var fiFI = getGridLocalization(fiFIGrid, fiFICore);
|
package/legacy/locales/frFR.js
DELETED
|
@@ -1,160 +0,0 @@
|
|
|
1
|
-
import { frFR as frFRCore } from '@mui/material/locale';
|
|
2
|
-
import { getGridLocalization } from '../utils/getGridLocalization';
|
|
3
|
-
var frFRGrid = {
|
|
4
|
-
// Root
|
|
5
|
-
noRowsLabel: 'Pas de résultats',
|
|
6
|
-
noResultsOverlayLabel: 'Aucun résultat.',
|
|
7
|
-
// Density selector toolbar button text
|
|
8
|
-
toolbarDensity: 'Densité',
|
|
9
|
-
toolbarDensityLabel: 'Densité',
|
|
10
|
-
toolbarDensityCompact: 'Compacte',
|
|
11
|
-
toolbarDensityStandard: 'Standard',
|
|
12
|
-
toolbarDensityComfortable: 'Confortable',
|
|
13
|
-
// Columns selector toolbar button text
|
|
14
|
-
toolbarColumns: 'Colonnes',
|
|
15
|
-
toolbarColumnsLabel: 'Choisir les colonnes',
|
|
16
|
-
// Filters toolbar button text
|
|
17
|
-
toolbarFilters: 'Filtres',
|
|
18
|
-
toolbarFiltersLabel: 'Afficher les filtres',
|
|
19
|
-
toolbarFiltersTooltipHide: 'Cacher les filtres',
|
|
20
|
-
toolbarFiltersTooltipShow: 'Afficher les filtres',
|
|
21
|
-
toolbarFiltersTooltipActive: function toolbarFiltersTooltipActive(count) {
|
|
22
|
-
return count > 1 ? "".concat(count, " filtres actifs") : "".concat(count, " filtre actif");
|
|
23
|
-
},
|
|
24
|
-
// Quick filter toolbar field
|
|
25
|
-
toolbarQuickFilterPlaceholder: 'Rechercher…',
|
|
26
|
-
toolbarQuickFilterLabel: 'Recherche',
|
|
27
|
-
toolbarQuickFilterDeleteIconLabel: 'Supprimer',
|
|
28
|
-
// Export selector toolbar button text
|
|
29
|
-
toolbarExport: 'Exporter',
|
|
30
|
-
toolbarExportLabel: 'Exporter',
|
|
31
|
-
toolbarExportCSV: 'Télécharger en CSV',
|
|
32
|
-
toolbarExportPrint: 'Imprimer',
|
|
33
|
-
toolbarExportExcel: 'Télécharger pour Excel',
|
|
34
|
-
// Columns management text
|
|
35
|
-
// columnsManagementSearchTitle: 'Search',
|
|
36
|
-
// columnsManagementNoColumns: 'No columns',
|
|
37
|
-
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
38
|
-
|
|
39
|
-
// Filter panel text
|
|
40
|
-
filterPanelAddFilter: 'Ajouter un filtre',
|
|
41
|
-
filterPanelRemoveAll: 'Tout supprimer',
|
|
42
|
-
filterPanelDeleteIconLabel: 'Supprimer',
|
|
43
|
-
filterPanelLogicOperator: 'Opérateur logique',
|
|
44
|
-
filterPanelOperator: 'Opérateur',
|
|
45
|
-
filterPanelOperatorAnd: 'Et',
|
|
46
|
-
filterPanelOperatorOr: 'Ou',
|
|
47
|
-
filterPanelColumns: 'Colonne',
|
|
48
|
-
filterPanelInputLabel: 'Valeur',
|
|
49
|
-
filterPanelInputPlaceholder: 'Filtrer la valeur',
|
|
50
|
-
// Filter operators text
|
|
51
|
-
filterOperatorContains: 'contient',
|
|
52
|
-
filterOperatorEquals: 'est égal à',
|
|
53
|
-
filterOperatorStartsWith: 'commence par',
|
|
54
|
-
filterOperatorEndsWith: 'se termine par',
|
|
55
|
-
filterOperatorIs: 'est',
|
|
56
|
-
filterOperatorNot: "n'est pas",
|
|
57
|
-
filterOperatorAfter: 'postérieur',
|
|
58
|
-
filterOperatorOnOrAfter: 'égal ou postérieur',
|
|
59
|
-
filterOperatorBefore: 'antérieur',
|
|
60
|
-
filterOperatorOnOrBefore: 'égal ou antérieur',
|
|
61
|
-
filterOperatorIsEmpty: 'est vide',
|
|
62
|
-
filterOperatorIsNotEmpty: "n'est pas vide",
|
|
63
|
-
filterOperatorIsAnyOf: 'fait partie de',
|
|
64
|
-
'filterOperator=': '=',
|
|
65
|
-
'filterOperator!=': '!=',
|
|
66
|
-
'filterOperator>': '>',
|
|
67
|
-
'filterOperator>=': '>=',
|
|
68
|
-
'filterOperator<': '<',
|
|
69
|
-
'filterOperator<=': '<=',
|
|
70
|
-
// Header filter operators text
|
|
71
|
-
headerFilterOperatorContains: 'Contient',
|
|
72
|
-
headerFilterOperatorEquals: 'Est égal à',
|
|
73
|
-
headerFilterOperatorStartsWith: 'Commence par',
|
|
74
|
-
headerFilterOperatorEndsWith: 'Se termine par',
|
|
75
|
-
headerFilterOperatorIs: 'Est',
|
|
76
|
-
headerFilterOperatorNot: "N'est pas",
|
|
77
|
-
headerFilterOperatorAfter: 'Postérieur',
|
|
78
|
-
headerFilterOperatorOnOrAfter: 'Égal ou postérieur',
|
|
79
|
-
headerFilterOperatorBefore: 'Antérieur',
|
|
80
|
-
headerFilterOperatorOnOrBefore: 'Égal ou antérieur',
|
|
81
|
-
headerFilterOperatorIsEmpty: 'Est vide',
|
|
82
|
-
headerFilterOperatorIsNotEmpty: "N'est pas vide",
|
|
83
|
-
headerFilterOperatorIsAnyOf: 'Fait partie de',
|
|
84
|
-
'headerFilterOperator=': 'Est égal à',
|
|
85
|
-
'headerFilterOperator!=': "N'est pas égal à",
|
|
86
|
-
'headerFilterOperator>': 'Est supérieur à',
|
|
87
|
-
'headerFilterOperator>=': 'Est supérieur ou égal à',
|
|
88
|
-
'headerFilterOperator<': 'Est inférieur à',
|
|
89
|
-
'headerFilterOperator<=': 'Est inférieur ou égal à',
|
|
90
|
-
// Filter values text
|
|
91
|
-
filterValueAny: 'tous',
|
|
92
|
-
filterValueTrue: 'vrai',
|
|
93
|
-
filterValueFalse: 'faux',
|
|
94
|
-
// Column menu text
|
|
95
|
-
columnMenuLabel: 'Menu',
|
|
96
|
-
columnMenuShowColumns: 'Afficher les colonnes',
|
|
97
|
-
columnMenuManageColumns: 'Gérer les colonnes',
|
|
98
|
-
columnMenuFilter: 'Filtrer',
|
|
99
|
-
columnMenuHideColumn: 'Cacher',
|
|
100
|
-
columnMenuUnsort: 'Annuler le tri',
|
|
101
|
-
columnMenuSortAsc: 'Tri ascendant',
|
|
102
|
-
columnMenuSortDesc: 'Tri descendant',
|
|
103
|
-
// Column header text
|
|
104
|
-
columnHeaderFiltersTooltipActive: function columnHeaderFiltersTooltipActive(count) {
|
|
105
|
-
return count > 1 ? "".concat(count, " filtres actifs") : "".concat(count, " filtre actif");
|
|
106
|
-
},
|
|
107
|
-
columnHeaderFiltersLabel: 'Afficher les filtres',
|
|
108
|
-
columnHeaderSortIconLabel: 'Trier',
|
|
109
|
-
// Rows selected footer text
|
|
110
|
-
footerRowSelected: function footerRowSelected(count) {
|
|
111
|
-
return count > 1 ? "".concat(count.toLocaleString(), " lignes s\xE9lectionn\xE9es") : "".concat(count.toLocaleString(), " ligne s\xE9lectionn\xE9e");
|
|
112
|
-
},
|
|
113
|
-
// Total row amount footer text
|
|
114
|
-
footerTotalRows: 'Total de lignes :',
|
|
115
|
-
// Total visible row amount footer text
|
|
116
|
-
footerTotalVisibleRows: function footerTotalVisibleRows(visibleCount, totalCount) {
|
|
117
|
-
return "".concat(visibleCount.toLocaleString(), " sur ").concat(totalCount.toLocaleString());
|
|
118
|
-
},
|
|
119
|
-
// Checkbox selection text
|
|
120
|
-
checkboxSelectionHeaderName: 'Sélection',
|
|
121
|
-
checkboxSelectionSelectAllRows: 'Sélectionner toutes les lignes',
|
|
122
|
-
checkboxSelectionUnselectAllRows: 'Désélectionner toutes les lignes',
|
|
123
|
-
checkboxSelectionSelectRow: 'Sélectionner la ligne',
|
|
124
|
-
checkboxSelectionUnselectRow: 'Désélectionner la ligne',
|
|
125
|
-
// Boolean cell text
|
|
126
|
-
booleanCellTrueLabel: 'vrai',
|
|
127
|
-
booleanCellFalseLabel: 'faux',
|
|
128
|
-
// Actions cell more text
|
|
129
|
-
actionsCellMore: 'Plus',
|
|
130
|
-
// Column pinning text
|
|
131
|
-
pinToLeft: 'Épingler à gauche',
|
|
132
|
-
pinToRight: 'Épingler à droite',
|
|
133
|
-
unpin: 'Désépingler',
|
|
134
|
-
// Tree Data
|
|
135
|
-
treeDataGroupingHeaderName: 'Groupe',
|
|
136
|
-
treeDataExpand: 'afficher les enfants',
|
|
137
|
-
treeDataCollapse: 'masquer les enfants',
|
|
138
|
-
// Grouping columns
|
|
139
|
-
groupingColumnHeaderName: 'Groupe',
|
|
140
|
-
groupColumn: function groupColumn(name) {
|
|
141
|
-
return "Grouper par ".concat(name);
|
|
142
|
-
},
|
|
143
|
-
unGroupColumn: function unGroupColumn(name) {
|
|
144
|
-
return "Arr\xEAter de grouper par ".concat(name);
|
|
145
|
-
},
|
|
146
|
-
// Master/detail
|
|
147
|
-
detailPanelToggle: 'Afficher/masquer les détails',
|
|
148
|
-
expandDetailPanel: 'Afficher',
|
|
149
|
-
collapseDetailPanel: 'Masquer',
|
|
150
|
-
// Row reordering text
|
|
151
|
-
rowReorderingHeaderName: 'Positionnement des lignes',
|
|
152
|
-
// Aggregation
|
|
153
|
-
aggregationMenuItemHeader: 'Agrégation',
|
|
154
|
-
aggregationFunctionLabelSum: 'Somme',
|
|
155
|
-
aggregationFunctionLabelAvg: 'Moyenne',
|
|
156
|
-
aggregationFunctionLabelMin: 'Minimum',
|
|
157
|
-
aggregationFunctionLabelMax: 'Maximum',
|
|
158
|
-
aggregationFunctionLabelSize: "Nombre d'éléments"
|
|
159
|
-
};
|
|
160
|
-
export var frFR = getGridLocalization(frFRGrid, frFRCore);
|
package/legacy/locales/heIL.js
DELETED
|
@@ -1,160 +0,0 @@
|
|
|
1
|
-
import { heIL as heILCore } from '@mui/material/locale';
|
|
2
|
-
import { getGridLocalization } from '../utils/getGridLocalization';
|
|
3
|
-
var heILGrid = {
|
|
4
|
-
// Root
|
|
5
|
-
noRowsLabel: 'אין שורות',
|
|
6
|
-
noResultsOverlayLabel: 'לא נמצאו תוצאות.',
|
|
7
|
-
// Density selector toolbar button text
|
|
8
|
-
toolbarDensity: 'צפיפות',
|
|
9
|
-
toolbarDensityLabel: 'צפיפות',
|
|
10
|
-
toolbarDensityCompact: 'דחוסה',
|
|
11
|
-
toolbarDensityStandard: 'רגילה',
|
|
12
|
-
toolbarDensityComfortable: 'אוורירית',
|
|
13
|
-
// Columns selector toolbar button text
|
|
14
|
-
toolbarColumns: 'עמודות',
|
|
15
|
-
toolbarColumnsLabel: 'בחר עמודות',
|
|
16
|
-
// Filters toolbar button text
|
|
17
|
-
toolbarFilters: 'סינון',
|
|
18
|
-
toolbarFiltersLabel: 'הצג מסננים',
|
|
19
|
-
toolbarFiltersTooltipHide: 'הסתר מסננים',
|
|
20
|
-
toolbarFiltersTooltipShow: 'הצג מסננים',
|
|
21
|
-
toolbarFiltersTooltipActive: function toolbarFiltersTooltipActive(count) {
|
|
22
|
-
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";
|
|
23
|
-
},
|
|
24
|
-
// Quick filter toolbar field
|
|
25
|
-
toolbarQuickFilterPlaceholder: 'חיפוש…',
|
|
26
|
-
toolbarQuickFilterLabel: 'חיפוש',
|
|
27
|
-
toolbarQuickFilterDeleteIconLabel: 'ניקוי',
|
|
28
|
-
// Export selector toolbar button text
|
|
29
|
-
toolbarExport: 'ייצוא',
|
|
30
|
-
toolbarExportLabel: 'ייצוא',
|
|
31
|
-
toolbarExportCSV: 'ייצוא ל- CSV',
|
|
32
|
-
toolbarExportPrint: 'הדפסה',
|
|
33
|
-
toolbarExportExcel: 'ייצוא ל- Excel',
|
|
34
|
-
// Columns management text
|
|
35
|
-
// columnsManagementSearchTitle: 'Search',
|
|
36
|
-
// columnsManagementNoColumns: 'No columns',
|
|
37
|
-
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
38
|
-
|
|
39
|
-
// Filter panel text
|
|
40
|
-
filterPanelAddFilter: 'הוסף מסנן',
|
|
41
|
-
filterPanelRemoveAll: 'מחק הכל',
|
|
42
|
-
filterPanelDeleteIconLabel: 'מחק',
|
|
43
|
-
filterPanelLogicOperator: 'אופרטור לוגי',
|
|
44
|
-
filterPanelOperator: 'אופרטור',
|
|
45
|
-
filterPanelOperatorAnd: 'וגם',
|
|
46
|
-
filterPanelOperatorOr: 'או',
|
|
47
|
-
filterPanelColumns: 'עמודות',
|
|
48
|
-
filterPanelInputLabel: 'ערך',
|
|
49
|
-
filterPanelInputPlaceholder: 'ערך מסנן',
|
|
50
|
-
// Filter operators text
|
|
51
|
-
filterOperatorContains: 'מכיל',
|
|
52
|
-
filterOperatorEquals: 'שווה',
|
|
53
|
-
filterOperatorStartsWith: 'מתחיל ב-',
|
|
54
|
-
filterOperatorEndsWith: 'נגמר ב-',
|
|
55
|
-
filterOperatorIs: 'הינו',
|
|
56
|
-
filterOperatorNot: 'אינו',
|
|
57
|
-
filterOperatorAfter: 'אחרי',
|
|
58
|
-
filterOperatorOnOrAfter: 'ב- או אחרי',
|
|
59
|
-
filterOperatorBefore: 'לפני',
|
|
60
|
-
filterOperatorOnOrBefore: 'ב- או לפני',
|
|
61
|
-
filterOperatorIsEmpty: 'ריק',
|
|
62
|
-
filterOperatorIsNotEmpty: 'אינו ריק',
|
|
63
|
-
filterOperatorIsAnyOf: 'הוא אחד מ-',
|
|
64
|
-
'filterOperator=': '=',
|
|
65
|
-
'filterOperator!=': '!=',
|
|
66
|
-
'filterOperator>': '>',
|
|
67
|
-
'filterOperator>=': '>=',
|
|
68
|
-
'filterOperator<': '<',
|
|
69
|
-
'filterOperator<=': '<=',
|
|
70
|
-
// Header filter operators text
|
|
71
|
-
headerFilterOperatorContains: 'מכיל',
|
|
72
|
-
headerFilterOperatorEquals: 'שווה',
|
|
73
|
-
headerFilterOperatorStartsWith: 'מתחיל ב-',
|
|
74
|
-
headerFilterOperatorEndsWith: 'נגמר ב-',
|
|
75
|
-
headerFilterOperatorIs: 'הינו',
|
|
76
|
-
headerFilterOperatorNot: 'אינו',
|
|
77
|
-
headerFilterOperatorAfter: 'אחרי',
|
|
78
|
-
headerFilterOperatorOnOrAfter: 'ב- או אחרי',
|
|
79
|
-
headerFilterOperatorBefore: 'לפני',
|
|
80
|
-
headerFilterOperatorOnOrBefore: 'ב- או לפני',
|
|
81
|
-
headerFilterOperatorIsEmpty: 'ריק',
|
|
82
|
-
headerFilterOperatorIsNotEmpty: 'אינו ריק',
|
|
83
|
-
headerFilterOperatorIsAnyOf: 'הוא אחד מ-',
|
|
84
|
-
'headerFilterOperator=': 'שווה',
|
|
85
|
-
'headerFilterOperator!=': 'אינו שווה',
|
|
86
|
-
'headerFilterOperator>': 'גדול מ-',
|
|
87
|
-
'headerFilterOperator>=': 'גדול שווה ל-',
|
|
88
|
-
'headerFilterOperator<': 'קטן מ-',
|
|
89
|
-
'headerFilterOperator<=': 'קטן שווה ל-',
|
|
90
|
-
// Filter values text
|
|
91
|
-
filterValueAny: 'כל ערך',
|
|
92
|
-
filterValueTrue: 'כן',
|
|
93
|
-
filterValueFalse: 'לא',
|
|
94
|
-
// Column menu text
|
|
95
|
-
columnMenuLabel: 'תפריט',
|
|
96
|
-
columnMenuShowColumns: 'הצג עמודות',
|
|
97
|
-
columnMenuManageColumns: 'נהל עמודות',
|
|
98
|
-
columnMenuFilter: 'סנן',
|
|
99
|
-
columnMenuHideColumn: 'הסתר',
|
|
100
|
-
columnMenuUnsort: 'בטל מיון',
|
|
101
|
-
columnMenuSortAsc: 'מיין בסדר עולה',
|
|
102
|
-
columnMenuSortDesc: 'מיין בסדר יורד',
|
|
103
|
-
// Column header text
|
|
104
|
-
columnHeaderFiltersTooltipActive: function columnHeaderFiltersTooltipActive(count) {
|
|
105
|
-
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";
|
|
106
|
-
},
|
|
107
|
-
columnHeaderFiltersLabel: 'הצג מסננים',
|
|
108
|
-
columnHeaderSortIconLabel: 'מיין',
|
|
109
|
-
// Rows selected footer text
|
|
110
|
-
footerRowSelected: function footerRowSelected(count) {
|
|
111
|
-
return count !== 1 ? "".concat(count.toLocaleString(), " \u05E9\u05D5\u05E8\u05D5\u05EA \u05E0\u05D1\u05D7\u05E8\u05D5") : "\u05E9\u05D5\u05E8\u05D4 \u05D0\u05D7\u05EA \u05E0\u05D1\u05D7\u05E8\u05D4";
|
|
112
|
-
},
|
|
113
|
-
// Total row amount footer text
|
|
114
|
-
footerTotalRows: 'סך הכל:',
|
|
115
|
-
// Total visible row amount footer text
|
|
116
|
-
footerTotalVisibleRows: function footerTotalVisibleRows(visibleCount, totalCount) {
|
|
117
|
-
return "".concat(visibleCount.toLocaleString(), " \u05DE\u05EA\u05D5\u05DA ").concat(totalCount.toLocaleString());
|
|
118
|
-
},
|
|
119
|
-
// Checkbox selection text
|
|
120
|
-
checkboxSelectionHeaderName: 'בחירה',
|
|
121
|
-
checkboxSelectionSelectAllRows: 'בחר הכל',
|
|
122
|
-
checkboxSelectionUnselectAllRows: 'בטל הכל',
|
|
123
|
-
checkboxSelectionSelectRow: 'בחר שורה',
|
|
124
|
-
checkboxSelectionUnselectRow: 'בטל בחירת שורה',
|
|
125
|
-
// Boolean cell text
|
|
126
|
-
booleanCellTrueLabel: 'כן',
|
|
127
|
-
booleanCellFalseLabel: 'לא',
|
|
128
|
-
// Actions cell more text
|
|
129
|
-
actionsCellMore: 'עוד',
|
|
130
|
-
// Column pinning text
|
|
131
|
-
pinToLeft: 'נעץ משמאל',
|
|
132
|
-
pinToRight: 'נעץ מימין',
|
|
133
|
-
unpin: 'הסר נעיצה',
|
|
134
|
-
// Tree Data
|
|
135
|
-
treeDataGroupingHeaderName: 'קבוצה',
|
|
136
|
-
treeDataExpand: 'הרחב',
|
|
137
|
-
treeDataCollapse: 'כווץ',
|
|
138
|
-
// Grouping columns
|
|
139
|
-
groupingColumnHeaderName: 'קבוצה',
|
|
140
|
-
groupColumn: function groupColumn(name) {
|
|
141
|
-
return "\u05E7\u05D1\u05E5 \u05DC\u05E4\u05D9 ".concat(name);
|
|
142
|
-
},
|
|
143
|
-
unGroupColumn: function unGroupColumn(name) {
|
|
144
|
-
return "\u05D4\u05E4\u05E1\u05E7 \u05DC\u05E7\u05D1\u05E5 \u05DC\u05E4\u05D9 ".concat(name);
|
|
145
|
-
},
|
|
146
|
-
// Master/detail
|
|
147
|
-
detailPanelToggle: 'הצג/הסתר פרטים',
|
|
148
|
-
expandDetailPanel: 'הרחב',
|
|
149
|
-
collapseDetailPanel: 'כווץ',
|
|
150
|
-
// Row reordering text
|
|
151
|
-
rowReorderingHeaderName: 'סידור שורות',
|
|
152
|
-
// Aggregation
|
|
153
|
-
aggregationMenuItemHeader: 'צבירה',
|
|
154
|
-
aggregationFunctionLabelSum: 'סכום',
|
|
155
|
-
aggregationFunctionLabelAvg: 'ממוצע',
|
|
156
|
-
aggregationFunctionLabelMin: 'מינימום',
|
|
157
|
-
aggregationFunctionLabelMax: 'מקסימום',
|
|
158
|
-
aggregationFunctionLabelSize: 'גודל'
|
|
159
|
-
};
|
|
160
|
-
export var heIL = getGridLocalization(heILGrid, heILCore);
|