@mui/x-data-grid 8.0.0-alpha.0 → 8.0.0-alpha.10
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 +2215 -119
- package/DataGrid/DataGrid.js +20 -38
- package/DataGrid/useDataGridComponent.d.ts +2 -1
- package/DataGrid/useDataGridComponent.js +1 -1
- package/DataGrid/useDataGridProps.js +3 -3
- package/README.md +3 -3
- package/colDef/gridDateOperators.d.ts +2 -1
- package/colDef/gridNumericOperators.d.ts +4 -1
- package/components/GridApiContext.js +2 -0
- package/components/GridColumnHeaders.d.ts +1 -1
- package/components/GridColumnHeaders.js +4 -4
- package/components/GridConfigurationContext.js +2 -0
- package/components/GridFooter.d.ts +2 -1
- package/components/GridFooter.js +4 -4
- package/components/GridHeaders.js +2 -2
- package/components/GridLoadingOverlay.d.ts +3 -3
- package/components/GridLoadingOverlay.js +14 -12
- package/components/GridNoResultsOverlay.d.ts +2 -1
- package/components/GridNoResultsOverlay.js +4 -4
- package/components/GridNoRowsOverlay.d.ts +2 -1
- package/components/GridNoRowsOverlay.js +4 -4
- package/components/GridPagination.d.ts +1 -1
- package/components/GridPagination.js +7 -4
- package/components/GridRow.d.ts +6 -11
- package/components/GridRow.js +55 -87
- package/components/GridRowCount.d.ts +1 -1
- package/components/GridRowCount.js +3 -2
- package/components/GridScrollArea.js +2 -0
- package/components/GridSelectedRowCount.d.ts +4 -1
- package/components/GridSelectedRowCount.js +3 -2
- package/components/GridSkeletonLoadingOverlay.d.ts +1 -1
- package/components/GridSkeletonLoadingOverlay.js +22 -21
- package/components/base/GridOverlays.d.ts +4 -3
- package/components/base/GridOverlays.js +2 -24
- package/components/base/index.d.ts +0 -1
- package/components/base/index.js +1 -2
- package/components/cell/GridActionsCell.js +8 -1
- package/components/cell/GridActionsCellItem.d.ts +17 -10
- package/components/cell/GridActionsCellItem.js +9 -8
- package/components/cell/GridCell.d.ts +19 -23
- package/components/cell/GridCell.js +52 -92
- package/components/cell/GridEditDateCell.js +1 -1
- package/components/cell/GridEditInputCell.d.ts +1 -1
- package/components/cell/GridEditInputCell.js +73 -4
- package/components/cell/GridEditSingleSelectCell.js +2 -2
- package/components/cell/GridSkeletonCell.js +1 -2
- package/components/columnHeaders/ColumnHeaderMenuIcon.d.ts +1 -1
- package/components/columnHeaders/GridBaseColumnHeaders.d.ts +1 -1
- package/components/columnHeaders/GridBaseColumnHeaders.js +4 -3
- package/components/columnHeaders/GridColumnGroupHeader.d.ts +5 -5
- package/components/columnHeaders/GridColumnGroupHeader.js +7 -10
- package/components/columnHeaders/GridColumnHeaderFilterIconButton.d.ts +3 -3
- package/components/columnHeaders/GridColumnHeaderFilterIconButton.js +20 -7
- package/components/columnHeaders/GridColumnHeaderItem.d.ts +5 -5
- package/components/columnHeaders/GridColumnHeaderItem.js +13 -12
- package/components/columnHeaders/GridColumnHeaderTitle.js +5 -3
- package/components/columnHeaders/GridGenericColumnHeaderItem.d.ts +1 -1
- package/components/columnHeaders/GridGenericColumnHeaderItem.js +3 -2
- package/components/columnHeaders/GridIconButtonContainer.d.ts +1 -1
- package/components/columnHeaders/GridIconButtonContainer.js +5 -3
- package/components/columnSelection/GridCellCheckboxRenderer.d.ts +2 -2
- package/components/columnSelection/GridCellCheckboxRenderer.js +11 -9
- package/components/columnSelection/GridHeaderCheckbox.d.ts +1 -1
- package/components/columnSelection/GridHeaderCheckbox.js +17 -9
- package/components/columnsManagement/GridColumnsManagement.d.ts +2 -0
- package/components/columnsManagement/GridColumnsManagement.js +81 -11
- package/components/containers/GridFooterContainer.d.ts +1 -1
- package/components/containers/GridFooterContainer.js +5 -3
- package/components/containers/GridOverlay.d.ts +1 -1
- package/components/containers/GridOverlay.js +5 -3
- package/components/containers/GridRoot.d.ts +2 -2
- package/components/containers/GridRoot.js +18 -8
- package/components/containers/GridRootStyles.js +160 -50
- package/components/containers/GridToolbarContainer.d.ts +1 -1
- package/components/containers/GridToolbarContainer.js +3 -2
- package/components/menu/columnMenu/GridColumnMenu.d.ts +2 -2
- package/components/menu/columnMenu/GridColumnMenu.js +5 -5
- package/components/menu/columnMenu/GridColumnMenuContainer.d.ts +1 -1
- package/components/menu/columnMenu/GridColumnMenuContainer.js +3 -2
- package/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.js +6 -11
- package/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.js +6 -11
- package/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.js +6 -11
- package/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.js +13 -22
- package/components/panel/GridColumnsPanel.js +1 -2
- package/components/panel/GridPanel.d.ts +2 -2
- package/components/panel/GridPanel.js +5 -3
- package/components/panel/GridPanelContent.js +7 -3
- package/components/panel/GridPanelFooter.d.ts +1 -1
- package/components/panel/GridPanelFooter.js +4 -3
- package/components/panel/GridPanelWrapper.d.ts +1 -1
- package/components/panel/GridPanelWrapper.js +5 -3
- package/components/panel/filterPanel/GridFilterForm.d.ts +1 -1
- package/components/panel/filterPanel/GridFilterForm.js +22 -18
- package/components/panel/filterPanel/GridFilterInputBoolean.d.ts +4 -11
- package/components/panel/filterPanel/GridFilterInputBoolean.js +41 -31
- package/components/panel/filterPanel/GridFilterInputDate.d.ts +3 -9
- package/components/panel/filterPanel/GridFilterInputDate.js +50 -31
- package/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.d.ts +3 -3
- package/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +49 -24
- package/components/panel/filterPanel/GridFilterInputMultipleValue.d.ts +3 -3
- package/components/panel/filterPanel/GridFilterInputMultipleValue.js +55 -33
- package/components/panel/filterPanel/GridFilterInputSingleSelect.d.ts +3 -9
- package/components/panel/filterPanel/GridFilterInputSingleSelect.js +34 -25
- package/components/panel/filterPanel/GridFilterInputValue.d.ts +3 -9
- package/components/panel/filterPanel/GridFilterInputValue.js +63 -38
- package/components/panel/filterPanel/GridFilterPanel.d.ts +1 -1
- package/components/panel/filterPanel/GridFilterPanel.js +4 -4
- package/components/panel/filterPanel/index.d.ts +2 -2
- package/components/panel/filterPanel/index.js +1 -2
- package/components/toolbar/GridToolbar.d.ts +1 -1
- package/components/toolbar/GridToolbar.js +11 -5
- package/components/toolbar/GridToolbarColumnsButton.d.ts +1 -1
- package/components/toolbar/GridToolbarColumnsButton.js +12 -6
- package/components/toolbar/GridToolbarDensitySelector.d.ts +1 -1
- package/components/toolbar/GridToolbarDensitySelector.js +9 -11
- package/components/toolbar/GridToolbarExport.d.ts +1 -1
- package/components/toolbar/GridToolbarExport.js +2 -1
- package/components/toolbar/GridToolbarExportContainer.d.ts +1 -1
- package/components/toolbar/GridToolbarExportContainer.js +6 -6
- package/components/toolbar/GridToolbarFilterButton.d.ts +3 -1
- package/components/toolbar/GridToolbarFilterButton.js +20 -9
- package/components/toolbar/GridToolbarQuickFilter.d.ts +6 -2
- package/components/toolbar/GridToolbarQuickFilter.js +39 -31
- package/components/virtualization/GridMainContainer.d.ts +13 -1
- package/components/virtualization/GridMainContainer.js +14 -5
- package/components/virtualization/GridVirtualScrollbar.d.ts +5 -1
- package/components/virtualization/GridVirtualScrollbar.js +17 -17
- package/components/virtualization/GridVirtualScroller.js +27 -12
- package/components/virtualization/GridVirtualScrollerContent.d.ts +2 -0
- package/components/virtualization/GridVirtualScrollerContent.js +15 -6
- package/components/virtualization/GridVirtualScrollerRenderZone.d.ts +2 -0
- package/components/virtualization/GridVirtualScrollerRenderZone.js +5 -3
- package/constants/dataGridPropsDefaultValues.js +2 -4
- package/constants/gridClasses.d.ts +36 -12
- package/constants/gridClasses.js +1 -1
- package/constants/localeTextConstants.js +12 -0
- package/context/GridContextProvider.d.ts +2 -1
- package/context/GridRootPropsContext.js +2 -0
- package/hooks/core/pipeProcessing/gridPipeProcessingApi.d.ts +9 -2
- package/hooks/core/pipeProcessing/useGridPipeProcessing.d.ts +2 -2
- package/hooks/core/pipeProcessing/useGridRegisterPipeApplier.d.ts +2 -2
- package/hooks/core/pipeProcessing/useGridRegisterPipeApplier.js +1 -1
- package/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.d.ts +2 -2
- package/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.js +1 -1
- package/hooks/core/strategyProcessing/gridStrategyProcessingApi.d.ts +25 -9
- package/hooks/core/strategyProcessing/gridStrategyProcessingApi.js +5 -1
- package/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.d.ts +2 -2
- package/hooks/core/strategyProcessing/useGridStrategyProcessing.d.ts +5 -8
- package/hooks/core/strategyProcessing/useGridStrategyProcessing.js +7 -8
- package/hooks/core/useGridApiInitialization.d.ts +2 -2
- package/hooks/core/useGridApiInitialization.js +2 -2
- package/hooks/core/useGridInitialization.d.ts +2 -2
- package/hooks/core/useGridIsRtl.d.ts +2 -2
- package/hooks/core/useGridLocaleText.d.ts +2 -2
- package/hooks/core/useGridLoggerFactory.d.ts +2 -2
- package/hooks/core/useGridRefs.d.ts +2 -2
- package/hooks/core/useGridStateInitialization.d.ts +2 -2
- package/hooks/core/useGridStateInitialization.js +3 -3
- package/hooks/features/clipboard/useGridClipboard.d.ts +2 -2
- package/hooks/features/columnGrouping/gridColumnGroupsSelector.d.ts +4 -4
- package/hooks/features/columnGrouping/useGridColumnGrouping.d.ts +2 -2
- package/hooks/features/columnHeaders/useGridColumnHeaders.d.ts +5 -7
- package/hooks/features/columnHeaders/useGridColumnHeaders.js +34 -69
- package/hooks/features/columnMenu/useGridColumnMenu.d.ts +2 -2
- package/hooks/features/columnMenu/useGridColumnMenu.js +0 -2
- package/hooks/features/columnResize/columnResizeSelector.d.ts +1 -1
- package/hooks/features/columnResize/gridColumnResizeApi.d.ts +6 -0
- package/hooks/features/columnResize/gridColumnResizeApi.js +2 -1
- package/hooks/features/columnResize/useGridColumnResize.d.ts +2 -2
- package/hooks/features/columnResize/useGridColumnResize.js +17 -10
- package/hooks/features/columns/gridColumnsSelector.d.ts +12 -12
- package/hooks/features/columns/gridColumnsUtils.d.ts +4 -4
- package/hooks/features/columns/gridColumnsUtils.js +2 -1
- package/hooks/features/columns/useGridColumnSpanning.d.ts +2 -2
- package/hooks/features/columns/useGridColumns.d.ts +2 -2
- package/hooks/features/columns/useGridColumns.js +7 -3
- package/hooks/features/density/densitySelector.d.ts +1 -1
- package/hooks/features/density/useGridDensity.d.ts +2 -2
- package/hooks/features/dimensions/gridDimensionsApi.d.ts +0 -4
- package/hooks/features/dimensions/useGridDimensions.d.ts +2 -2
- package/hooks/features/dimensions/useGridDimensions.js +11 -32
- package/hooks/features/editing/gridEditingSelectors.d.ts +6 -0
- package/hooks/features/editing/gridEditingSelectors.js +7 -1
- package/hooks/features/editing/useGridCellEditing.d.ts +2 -2
- package/hooks/features/editing/useGridCellEditing.js +4 -4
- package/hooks/features/editing/useGridEditing.d.ts +2 -2
- package/hooks/features/editing/useGridRowEditing.d.ts +2 -2
- package/hooks/features/editing/useGridRowEditing.js +7 -8
- package/hooks/features/events/useGridEvents.d.ts +2 -2
- package/hooks/features/export/serializers/csvSerializer.d.ts +2 -1
- package/hooks/features/export/useGridCsvExport.d.ts +2 -2
- package/hooks/features/export/useGridPrintExport.d.ts +2 -2
- package/hooks/features/export/useGridPrintExport.js +1 -1
- package/hooks/features/export/utils.d.ts +2 -2
- package/hooks/features/filter/gridFilterSelector.d.ts +17 -17
- package/hooks/features/filter/gridFilterSelector.js +6 -1
- package/hooks/features/filter/gridFilterUtils.d.ts +7 -7
- package/hooks/features/filter/gridFilterUtils.js +3 -3
- package/hooks/features/filter/useGridFilter.d.ts +2 -2
- package/hooks/features/filter/useGridFilter.js +1 -1
- package/hooks/features/focus/gridFocusStateSelector.d.ts +8 -8
- package/hooks/features/focus/useGridFocus.d.ts +2 -2
- package/hooks/features/focus/useGridFocus.js +3 -2
- package/hooks/features/headerFiltering/gridHeaderFilteringSelectors.d.ts +3 -3
- package/hooks/features/headerFiltering/useGridHeaderFiltering.d.ts +2 -2
- package/hooks/features/index.d.ts +1 -0
- package/hooks/features/index.js +1 -0
- package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.d.ts +2 -2
- package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +24 -16
- package/hooks/features/keyboardNavigation/utils.d.ts +3 -4
- package/hooks/features/keyboardNavigation/utils.js +0 -5
- package/hooks/features/listView/gridListViewSelectors.d.ts +3 -1
- package/hooks/features/listView/gridListViewSelectors.js +3 -1
- package/hooks/features/listView/index.d.ts +1 -0
- package/hooks/features/listView/index.js +1 -0
- package/hooks/features/listView/useGridListView.d.ts +2 -2
- package/hooks/features/listView/useGridListView.js +2 -1
- package/hooks/features/overlays/useGridOverlays.d.ts +7 -4
- package/hooks/features/overlays/useGridOverlays.js +22 -2
- package/hooks/features/pagination/gridPaginationInterfaces.d.ts +3 -0
- package/hooks/features/pagination/gridPaginationSelector.d.ts +34 -9
- package/hooks/features/pagination/gridPaginationSelector.js +39 -1
- package/hooks/features/pagination/useGridPagination.d.ts +3 -3
- package/hooks/features/pagination/useGridPagination.js +5 -3
- package/hooks/features/pagination/useGridPaginationMeta.d.ts +2 -2
- package/hooks/features/pagination/useGridPaginationModel.d.ts +2 -2
- package/hooks/features/pagination/useGridPaginationModel.js +23 -1
- package/hooks/features/pagination/useGridRowCount.d.ts +2 -2
- package/hooks/features/preferencesPanel/gridPreferencePanelSelector.d.ts +1 -0
- package/hooks/features/preferencesPanel/gridPreferencePanelSelector.js +8 -1
- package/hooks/features/preferencesPanel/index.d.ts +1 -1
- package/hooks/features/preferencesPanel/index.js +1 -1
- package/hooks/features/preferencesPanel/useGridPreferencesPanel.d.ts +2 -2
- package/hooks/features/preferencesPanel/useGridPreferencesPanel.js +14 -38
- package/hooks/features/rowSelection/gridRowSelectionSelector.d.ts +3 -3
- package/hooks/features/rowSelection/useGridRowSelection.d.ts +2 -2
- package/hooks/features/rowSelection/useGridRowSelection.js +8 -16
- package/hooks/features/rowSelection/useGridRowSelectionPreProcessors.d.ts +2 -2
- package/hooks/features/rowSelection/utils.d.ts +4 -3
- package/hooks/features/rowSelection/utils.js +2 -2
- package/hooks/features/rows/gridRowSpanningSelectors.d.ts +3 -3
- package/hooks/features/rows/gridRowSpanningUtils.d.ts +2 -2
- package/hooks/features/rows/gridRowsInterfaces.d.ts +1 -8
- package/hooks/features/rows/gridRowsSelector.d.ts +23 -13
- package/hooks/features/rows/gridRowsSelector.js +1 -2
- package/hooks/features/rows/gridRowsUtils.d.ts +4 -4
- package/hooks/features/rows/gridRowsUtils.js +0 -9
- package/hooks/features/rows/index.d.ts +1 -1
- package/hooks/features/rows/index.js +1 -1
- package/hooks/features/rows/useGridParamsApi.d.ts +2 -2
- package/hooks/features/rows/useGridParamsApi.js +33 -14
- package/hooks/features/rows/useGridRowSpanning.d.ts +2 -2
- package/hooks/features/rows/useGridRowSpanning.js +97 -86
- package/hooks/features/rows/useGridRows.d.ts +2 -2
- package/hooks/features/rows/useGridRows.js +23 -27
- package/hooks/features/rows/useGridRowsMeta.d.ts +2 -2
- package/hooks/features/rows/useGridRowsMeta.js +3 -2
- package/hooks/features/rows/useGridRowsPreProcessors.d.ts +2 -2
- package/hooks/features/scroll/useGridScroll.d.ts +2 -2
- package/hooks/features/sorting/gridSortingSelector.d.ts +10 -5
- package/hooks/features/sorting/gridSortingSelector.js +11 -0
- package/hooks/features/sorting/gridSortingUtils.d.ts +3 -3
- package/hooks/features/sorting/gridSortingUtils.js +2 -2
- package/hooks/features/sorting/index.d.ts +2 -1
- package/hooks/features/sorting/index.js +1 -1
- package/hooks/features/sorting/useGridSorting.d.ts +2 -2
- package/hooks/features/sorting/useGridSorting.js +1 -1
- package/hooks/features/statePersistence/useGridStatePersistence.d.ts +2 -2
- package/hooks/features/virtualization/gridFocusedVirtualCellSelector.d.ts +6 -0
- package/hooks/features/virtualization/gridFocusedVirtualCellSelector.js +33 -0
- package/hooks/features/virtualization/gridVirtualizationSelectors.d.ts +5 -5
- package/hooks/features/virtualization/useGridVirtualScroller.d.ts +15 -6
- package/hooks/features/virtualization/useGridVirtualScroller.js +169 -94
- package/hooks/features/virtualization/useGridVirtualization.d.ts +2 -2
- package/hooks/utils/useGridApiContext.d.ts +2 -2
- package/hooks/utils/useGridApiEventHandler.d.ts +4 -4
- package/hooks/utils/useGridApiEventHandler.js +1 -1
- package/hooks/utils/useGridApiMethod.d.ts +2 -2
- package/hooks/utils/useGridApiRef.d.ts +2 -2
- package/hooks/utils/useGridApiRef.js +1 -1
- package/hooks/utils/useGridInitializeState.d.ts +3 -3
- package/hooks/utils/useGridLogger.d.ts +2 -2
- package/hooks/utils/useGridNativeEventListener.d.ts +2 -1
- package/hooks/utils/useGridPrivateApiContext.d.ts +2 -1
- package/hooks/utils/useGridSelector.d.ts +5 -7
- package/hooks/utils/useGridSelector.js +6 -44
- package/hooks/utils/useGridVisibleRows.d.ts +8 -6
- package/hooks/utils/useGridVisibleRows.js +5 -28
- package/index.js +1 -1
- package/internals/constants.d.ts +6 -0
- package/internals/constants.js +8 -1
- package/internals/index.d.ts +7 -4
- package/internals/index.js +5 -3
- package/internals/utils/attachPinnedStyle.d.ts +2 -0
- package/internals/utils/attachPinnedStyle.js +9 -0
- package/internals/utils/getPinnedCellOffset.d.ts +3 -3
- package/internals/utils/getPinnedCellOffset.js +6 -7
- package/internals/utils/index.d.ts +1 -1
- package/internals/utils/index.js +2 -2
- package/locales/arSD.js +14 -0
- package/locales/beBY.js +13 -0
- package/locales/bgBG.js +15 -0
- package/locales/csCZ.js +15 -0
- package/locales/daDK.js +15 -0
- package/locales/deDE.js +13 -0
- package/locales/elGR.js +14 -0
- package/locales/esES.js +17 -4
- package/locales/faIR.js +18 -4
- package/locales/fiFI.js +15 -0
- package/locales/frFR.js +15 -0
- package/locales/heIL.js +17 -4
- package/locales/hrHR.js +15 -0
- package/locales/huHU.js +15 -0
- package/locales/isIS.js +14 -0
- package/locales/itIT.js +15 -0
- package/locales/jaJP.js +15 -0
- package/locales/koKR.js +47 -37
- package/locales/nbNO.js +15 -0
- package/locales/nlNL.js +18 -4
- package/locales/nnNO.js +15 -0
- package/locales/plPL.js +15 -0
- package/locales/ptBR.js +13 -0
- package/locales/ptPT.js +13 -0
- package/locales/roRO.js +21 -9
- package/locales/ruRU.js +15 -0
- package/locales/skSK.js +14 -0
- package/locales/svSE.js +19 -5
- package/locales/trTR.js +15 -2
- package/locales/ukUA.js +14 -0
- package/locales/urPK.js +22 -9
- package/locales/viVN.js +15 -0
- package/locales/zhCN.js +17 -4
- package/locales/zhHK.js +14 -0
- package/locales/zhTW.js +14 -0
- package/material/index.js +58 -7
- package/models/api/gridApiCommon.d.ts +2 -2
- package/models/api/gridCoreApi.d.ts +7 -7
- package/models/api/gridDensityApi.d.ts +1 -1
- package/models/api/gridLocaleTextApi.d.ts +11 -0
- package/models/api/gridParamsApi.d.ts +29 -2
- package/models/api/gridStateApi.d.ts +1 -1
- package/models/api/index.d.ts +1 -1
- package/models/api/index.js +0 -1
- package/models/colDef/gridColDef.d.ts +38 -33
- package/models/controlStateItem.d.ts +2 -2
- package/models/events/gridEventLookup.d.ts +7 -1
- package/models/gridBaseSlots.d.ts +95 -0
- package/models/gridDataSource.d.ts +13 -13
- package/models/gridExport.d.ts +2 -2
- package/models/gridFilterInputComponent.d.ts +32 -0
- package/models/gridFilterOperator.d.ts +6 -4
- package/models/gridIconSlotsComponent.d.ts +5 -0
- package/models/gridSlotsComponent.d.ts +16 -1
- package/models/gridSlotsComponentsProps.d.ts +45 -9
- package/models/gridStateCommunity.d.ts +4 -0
- package/models/index.d.ts +1 -0
- package/models/props/DataGridProps.d.ts +12 -24
- package/modern/DataGrid/DataGrid.js +20 -38
- package/modern/DataGrid/useDataGridComponent.js +1 -1
- package/modern/DataGrid/useDataGridProps.js +3 -3
- package/modern/components/GridApiContext.js +2 -0
- package/modern/components/GridColumnHeaders.js +4 -4
- package/modern/components/GridConfigurationContext.js +2 -0
- package/modern/components/GridFooter.js +4 -4
- package/modern/components/GridHeaders.js +2 -2
- package/modern/components/GridLoadingOverlay.js +14 -12
- package/modern/components/GridNoResultsOverlay.js +4 -4
- package/modern/components/GridNoRowsOverlay.js +4 -4
- package/modern/components/GridPagination.js +7 -4
- package/modern/components/GridRow.js +55 -87
- package/modern/components/GridRowCount.js +3 -2
- package/modern/components/GridScrollArea.js +2 -0
- package/modern/components/GridSelectedRowCount.js +3 -2
- package/modern/components/GridSkeletonLoadingOverlay.js +22 -21
- package/modern/components/base/GridOverlays.js +2 -24
- package/modern/components/base/index.js +1 -2
- package/modern/components/cell/GridActionsCell.js +8 -1
- package/modern/components/cell/GridActionsCellItem.js +9 -8
- package/modern/components/cell/GridCell.js +52 -92
- package/modern/components/cell/GridEditDateCell.js +1 -1
- package/modern/components/cell/GridEditInputCell.js +73 -4
- package/modern/components/cell/GridEditSingleSelectCell.js +2 -2
- package/modern/components/cell/GridSkeletonCell.js +1 -2
- package/modern/components/columnHeaders/GridBaseColumnHeaders.js +4 -3
- package/modern/components/columnHeaders/GridColumnGroupHeader.js +7 -10
- package/modern/components/columnHeaders/GridColumnHeaderFilterIconButton.js +20 -7
- package/modern/components/columnHeaders/GridColumnHeaderItem.js +13 -12
- package/modern/components/columnHeaders/GridColumnHeaderTitle.js +5 -3
- package/modern/components/columnHeaders/GridGenericColumnHeaderItem.js +3 -2
- package/modern/components/columnHeaders/GridIconButtonContainer.js +5 -3
- package/modern/components/columnSelection/GridCellCheckboxRenderer.js +11 -9
- package/modern/components/columnSelection/GridHeaderCheckbox.js +17 -9
- package/modern/components/columnsManagement/GridColumnsManagement.js +81 -11
- package/modern/components/containers/GridFooterContainer.js +5 -3
- package/modern/components/containers/GridOverlay.js +5 -3
- package/modern/components/containers/GridRoot.js +18 -8
- package/modern/components/containers/GridRootStyles.js +160 -50
- package/modern/components/containers/GridToolbarContainer.js +3 -2
- package/modern/components/menu/columnMenu/GridColumnMenu.js +5 -5
- package/modern/components/menu/columnMenu/GridColumnMenuContainer.js +3 -2
- package/modern/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.js +6 -11
- package/modern/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.js +6 -11
- package/modern/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.js +6 -11
- package/modern/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.js +13 -22
- package/modern/components/panel/GridColumnsPanel.js +1 -2
- package/modern/components/panel/GridPanel.js +5 -3
- package/modern/components/panel/GridPanelContent.js +7 -3
- package/modern/components/panel/GridPanelFooter.js +4 -3
- package/modern/components/panel/GridPanelWrapper.js +5 -3
- package/modern/components/panel/filterPanel/GridFilterForm.js +22 -18
- package/modern/components/panel/filterPanel/GridFilterInputBoolean.js +41 -31
- package/modern/components/panel/filterPanel/GridFilterInputDate.js +50 -31
- package/modern/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +49 -24
- package/modern/components/panel/filterPanel/GridFilterInputMultipleValue.js +55 -33
- package/modern/components/panel/filterPanel/GridFilterInputSingleSelect.js +34 -25
- package/modern/components/panel/filterPanel/GridFilterInputValue.js +63 -38
- package/modern/components/panel/filterPanel/GridFilterPanel.js +4 -4
- package/modern/components/panel/filterPanel/index.js +1 -2
- package/modern/components/toolbar/GridToolbar.js +11 -5
- package/modern/components/toolbar/GridToolbarColumnsButton.js +12 -6
- package/modern/components/toolbar/GridToolbarDensitySelector.js +9 -11
- package/modern/components/toolbar/GridToolbarExport.js +2 -1
- package/modern/components/toolbar/GridToolbarExportContainer.js +6 -6
- package/modern/components/toolbar/GridToolbarFilterButton.js +20 -9
- package/modern/components/toolbar/GridToolbarQuickFilter.js +39 -31
- package/modern/components/virtualization/GridMainContainer.js +14 -5
- package/modern/components/virtualization/GridVirtualScrollbar.js +17 -17
- package/modern/components/virtualization/GridVirtualScroller.js +27 -12
- package/modern/components/virtualization/GridVirtualScrollerContent.js +15 -6
- package/modern/components/virtualization/GridVirtualScrollerRenderZone.js +5 -3
- package/modern/constants/dataGridPropsDefaultValues.js +2 -4
- package/modern/constants/gridClasses.js +1 -1
- package/modern/constants/localeTextConstants.js +12 -0
- package/modern/context/GridRootPropsContext.js +2 -0
- package/modern/hooks/core/pipeProcessing/useGridRegisterPipeApplier.js +1 -1
- package/modern/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.js +1 -1
- package/modern/hooks/core/strategyProcessing/gridStrategyProcessingApi.js +5 -1
- package/modern/hooks/core/strategyProcessing/useGridStrategyProcessing.js +7 -8
- package/modern/hooks/core/useGridApiInitialization.js +2 -2
- package/modern/hooks/core/useGridStateInitialization.js +3 -3
- package/modern/hooks/features/columnHeaders/useGridColumnHeaders.js +34 -69
- package/modern/hooks/features/columnMenu/useGridColumnMenu.js +0 -2
- package/modern/hooks/features/columnResize/gridColumnResizeApi.js +2 -1
- package/modern/hooks/features/columnResize/useGridColumnResize.js +17 -10
- package/modern/hooks/features/columns/gridColumnsUtils.js +2 -1
- package/modern/hooks/features/columns/useGridColumns.js +7 -3
- package/modern/hooks/features/dimensions/useGridDimensions.js +11 -32
- package/modern/hooks/features/editing/gridEditingSelectors.js +7 -1
- package/modern/hooks/features/editing/useGridCellEditing.js +4 -4
- package/modern/hooks/features/editing/useGridRowEditing.js +7 -8
- package/modern/hooks/features/export/useGridPrintExport.js +1 -1
- package/modern/hooks/features/filter/gridFilterSelector.js +6 -1
- package/modern/hooks/features/filter/gridFilterUtils.js +3 -3
- package/modern/hooks/features/filter/useGridFilter.js +1 -1
- package/modern/hooks/features/focus/useGridFocus.js +3 -2
- package/modern/hooks/features/index.js +1 -0
- package/modern/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +24 -16
- package/modern/hooks/features/keyboardNavigation/utils.js +0 -5
- package/modern/hooks/features/listView/gridListViewSelectors.js +3 -1
- package/modern/hooks/features/listView/index.js +1 -0
- package/modern/hooks/features/listView/useGridListView.js +2 -1
- package/modern/hooks/features/overlays/useGridOverlays.js +22 -2
- package/modern/hooks/features/pagination/gridPaginationSelector.js +39 -1
- package/modern/hooks/features/pagination/useGridPagination.js +5 -3
- package/modern/hooks/features/pagination/useGridPaginationModel.js +23 -1
- package/modern/hooks/features/preferencesPanel/gridPreferencePanelSelector.js +8 -1
- package/modern/hooks/features/preferencesPanel/index.js +1 -1
- package/modern/hooks/features/preferencesPanel/useGridPreferencesPanel.js +14 -38
- package/modern/hooks/features/rowSelection/useGridRowSelection.js +8 -16
- package/modern/hooks/features/rowSelection/utils.js +2 -2
- package/modern/hooks/features/rows/gridRowsSelector.js +1 -2
- package/modern/hooks/features/rows/gridRowsUtils.js +0 -9
- package/modern/hooks/features/rows/index.js +1 -1
- package/modern/hooks/features/rows/useGridParamsApi.js +33 -14
- package/modern/hooks/features/rows/useGridRowSpanning.js +97 -86
- package/modern/hooks/features/rows/useGridRows.js +23 -27
- package/modern/hooks/features/rows/useGridRowsMeta.js +3 -2
- package/modern/hooks/features/sorting/gridSortingSelector.js +11 -0
- package/modern/hooks/features/sorting/gridSortingUtils.js +2 -2
- package/modern/hooks/features/sorting/index.js +1 -1
- package/modern/hooks/features/sorting/useGridSorting.js +1 -1
- package/modern/hooks/features/virtualization/gridFocusedVirtualCellSelector.js +33 -0
- package/modern/hooks/features/virtualization/useGridVirtualScroller.js +169 -94
- package/modern/hooks/utils/useGridApiEventHandler.js +1 -1
- package/modern/hooks/utils/useGridApiRef.js +1 -1
- package/modern/hooks/utils/useGridSelector.js +6 -44
- package/modern/hooks/utils/useGridVisibleRows.js +5 -28
- package/modern/index.js +1 -1
- package/modern/internals/constants.js +8 -1
- package/modern/internals/index.js +5 -3
- package/modern/internals/utils/attachPinnedStyle.js +9 -0
- package/modern/internals/utils/getPinnedCellOffset.js +6 -7
- package/modern/internals/utils/index.js +2 -2
- package/modern/locales/arSD.js +14 -0
- package/modern/locales/beBY.js +13 -0
- package/modern/locales/bgBG.js +15 -0
- package/modern/locales/csCZ.js +15 -0
- package/modern/locales/daDK.js +15 -0
- package/modern/locales/deDE.js +13 -0
- package/modern/locales/elGR.js +14 -0
- package/modern/locales/esES.js +17 -4
- package/modern/locales/faIR.js +18 -4
- package/modern/locales/fiFI.js +15 -0
- package/modern/locales/frFR.js +15 -0
- package/modern/locales/heIL.js +17 -4
- package/modern/locales/hrHR.js +15 -0
- package/modern/locales/huHU.js +15 -0
- package/modern/locales/isIS.js +14 -0
- package/modern/locales/itIT.js +15 -0
- package/modern/locales/jaJP.js +15 -0
- package/modern/locales/koKR.js +47 -37
- package/modern/locales/nbNO.js +15 -0
- package/modern/locales/nlNL.js +18 -4
- package/modern/locales/nnNO.js +15 -0
- package/modern/locales/plPL.js +15 -0
- package/modern/locales/ptBR.js +13 -0
- package/modern/locales/ptPT.js +13 -0
- package/modern/locales/roRO.js +21 -9
- package/modern/locales/ruRU.js +15 -0
- package/modern/locales/skSK.js +14 -0
- package/modern/locales/svSE.js +19 -5
- package/modern/locales/trTR.js +15 -2
- package/modern/locales/ukUA.js +14 -0
- package/modern/locales/urPK.js +22 -9
- package/modern/locales/viVN.js +15 -0
- package/modern/locales/zhCN.js +17 -4
- package/modern/locales/zhHK.js +14 -0
- package/modern/locales/zhTW.js +14 -0
- package/modern/material/index.js +58 -7
- package/modern/models/api/index.js +0 -1
- package/modern/models/gridBaseSlots.js +1 -0
- package/modern/models/gridFilterInputComponent.js +1 -0
- package/modern/utils/assert.js +3 -0
- package/modern/utils/cellBorderUtils.js +5 -5
- package/modern/utils/createSelector.js +1 -120
- package/modern/utils/domUtils.js +7 -2
- package/modern/utils/isJSDOM.js +1 -0
- package/modern/utils/roundToDecimalPlaces.js +3 -0
- package/modern/utils/rtlFlipSide.js +22 -0
- package/modern/utils/utils.js +6 -1
- package/node/DataGrid/DataGrid.js +18 -36
- package/node/DataGrid/useDataGridComponent.js +1 -1
- package/node/DataGrid/useDataGridProps.js +2 -2
- package/node/components/GridApiContext.js +1 -0
- package/node/components/GridColumnHeaders.js +4 -4
- package/node/components/GridConfigurationContext.js +1 -0
- package/node/components/GridFooter.js +4 -4
- package/node/components/GridHeaders.js +2 -2
- package/node/components/GridLoadingOverlay.js +14 -12
- package/node/components/GridNoResultsOverlay.js +4 -4
- package/node/components/GridNoRowsOverlay.js +4 -4
- package/node/components/GridPagination.js +7 -4
- package/node/components/GridRow.js +51 -84
- package/node/components/GridRowCount.js +3 -2
- package/node/components/GridScrollArea.js +1 -0
- package/node/components/GridSelectedRowCount.js +3 -2
- package/node/components/GridSkeletonLoadingOverlay.js +21 -20
- package/node/components/base/GridOverlays.js +2 -24
- package/node/components/base/index.js +0 -11
- package/node/components/cell/GridActionsCell.js +8 -1
- package/node/components/cell/GridActionsCellItem.js +7 -8
- package/node/components/cell/GridCell.js +51 -91
- package/node/components/cell/GridEditDateCell.js +1 -1
- package/node/components/cell/GridEditInputCell.js +73 -4
- package/node/components/cell/GridEditSingleSelectCell.js +2 -2
- package/node/components/cell/GridSkeletonCell.js +1 -2
- package/node/components/columnHeaders/GridBaseColumnHeaders.js +4 -3
- package/node/components/columnHeaders/GridColumnGroupHeader.js +7 -10
- package/node/components/columnHeaders/GridColumnHeaderFilterIconButton.js +19 -6
- package/node/components/columnHeaders/GridColumnHeaderItem.js +13 -12
- package/node/components/columnHeaders/GridColumnHeaderTitle.js +5 -3
- package/node/components/columnHeaders/GridGenericColumnHeaderItem.js +3 -2
- package/node/components/columnHeaders/GridIconButtonContainer.js +5 -3
- package/node/components/columnSelection/GridCellCheckboxRenderer.js +10 -8
- package/node/components/columnSelection/GridHeaderCheckbox.js +17 -9
- package/node/components/columnsManagement/GridColumnsManagement.js +81 -11
- package/node/components/containers/GridFooterContainer.js +5 -3
- package/node/components/containers/GridOverlay.js +5 -3
- package/node/components/containers/GridRoot.js +17 -7
- package/node/components/containers/GridRootStyles.js +160 -50
- package/node/components/containers/GridToolbarContainer.js +3 -2
- package/node/components/menu/columnMenu/GridColumnMenu.js +5 -5
- package/node/components/menu/columnMenu/GridColumnMenuContainer.js +3 -2
- package/node/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.js +5 -10
- package/node/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.js +5 -10
- package/node/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.js +5 -10
- package/node/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.js +13 -22
- package/node/components/panel/GridColumnsPanel.js +1 -2
- package/node/components/panel/GridPanel.js +5 -3
- package/node/components/panel/GridPanelContent.js +7 -3
- package/node/components/panel/GridPanelFooter.js +5 -4
- package/node/components/panel/GridPanelWrapper.js +5 -3
- package/node/components/panel/filterPanel/GridFilterForm.js +22 -18
- package/node/components/panel/filterPanel/GridFilterInputBoolean.js +42 -33
- package/node/components/panel/filterPanel/GridFilterInputDate.js +49 -30
- package/node/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +49 -24
- package/node/components/panel/filterPanel/GridFilterInputMultipleValue.js +55 -33
- package/node/components/panel/filterPanel/GridFilterInputSingleSelect.js +34 -25
- package/node/components/panel/filterPanel/GridFilterInputValue.js +62 -37
- package/node/components/panel/filterPanel/GridFilterPanel.js +4 -4
- package/node/components/panel/filterPanel/index.js +7 -23
- package/node/components/toolbar/GridToolbar.js +11 -5
- package/node/components/toolbar/GridToolbarColumnsButton.js +12 -6
- package/node/components/toolbar/GridToolbarDensitySelector.js +9 -11
- package/node/components/toolbar/GridToolbarExport.js +2 -1
- package/node/components/toolbar/GridToolbarExportContainer.js +6 -6
- package/node/components/toolbar/GridToolbarFilterButton.js +20 -9
- package/node/components/toolbar/GridToolbarQuickFilter.js +39 -31
- package/node/components/virtualization/GridMainContainer.js +14 -5
- package/node/components/virtualization/GridVirtualScrollbar.js +17 -17
- package/node/components/virtualization/GridVirtualScroller.js +27 -12
- package/node/components/virtualization/GridVirtualScrollerContent.js +15 -6
- package/node/components/virtualization/GridVirtualScrollerRenderZone.js +5 -3
- package/node/constants/dataGridPropsDefaultValues.js +2 -4
- package/node/constants/gridClasses.js +1 -1
- package/node/constants/localeTextConstants.js +12 -0
- package/node/context/GridRootPropsContext.js +1 -0
- package/node/hooks/core/pipeProcessing/useGridRegisterPipeApplier.js +1 -1
- package/node/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.js +1 -1
- package/node/hooks/core/strategyProcessing/gridStrategyProcessingApi.js +7 -1
- package/node/hooks/core/strategyProcessing/useGridStrategyProcessing.js +7 -8
- package/node/hooks/core/useGridApiInitialization.js +2 -2
- package/node/hooks/core/useGridStateInitialization.js +3 -3
- package/node/hooks/features/columnHeaders/useGridColumnHeaders.js +32 -67
- package/node/hooks/features/columnMenu/useGridColumnMenu.js +0 -2
- package/node/hooks/features/columnResize/gridColumnResizeApi.js +2 -1
- package/node/hooks/features/columnResize/useGridColumnResize.js +17 -10
- package/node/hooks/features/columns/gridColumnsUtils.js +2 -1
- package/node/hooks/features/columns/useGridColumns.js +7 -3
- package/node/hooks/features/dimensions/useGridDimensions.js +12 -33
- package/node/hooks/features/editing/gridEditingSelectors.js +8 -2
- package/node/hooks/features/editing/useGridCellEditing.js +3 -3
- package/node/hooks/features/editing/useGridRowEditing.js +5 -6
- package/node/hooks/features/export/useGridPrintExport.js +1 -1
- package/node/hooks/features/filter/gridFilterSelector.js +6 -1
- package/node/hooks/features/filter/gridFilterUtils.js +3 -3
- package/node/hooks/features/filter/useGridFilter.js +1 -1
- package/node/hooks/features/focus/useGridFocus.js +3 -2
- package/node/hooks/features/index.js +11 -0
- package/node/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +24 -15
- package/node/hooks/features/keyboardNavigation/utils.js +0 -6
- package/node/hooks/features/listView/gridListViewSelectors.js +3 -1
- package/node/hooks/features/listView/index.js +16 -0
- package/node/hooks/features/listView/useGridListView.js +2 -1
- package/node/hooks/features/overlays/useGridOverlays.js +24 -2
- package/node/hooks/features/pagination/gridPaginationSelector.js +41 -3
- package/node/hooks/features/pagination/useGridPagination.js +5 -3
- package/node/hooks/features/pagination/useGridPaginationModel.js +23 -1
- package/node/hooks/features/preferencesPanel/gridPreferencePanelSelector.js +9 -2
- package/node/hooks/features/preferencesPanel/index.js +11 -10
- package/node/hooks/features/preferencesPanel/useGridPreferencesPanel.js +14 -38
- package/node/hooks/features/rowSelection/useGridRowSelection.js +7 -15
- package/node/hooks/features/rowSelection/utils.js +2 -2
- package/node/hooks/features/rows/gridRowsSelector.js +2 -3
- package/node/hooks/features/rows/gridRowsUtils.js +0 -9
- package/node/hooks/features/rows/index.js +0 -7
- package/node/hooks/features/rows/useGridParamsApi.js +33 -14
- package/node/hooks/features/rows/useGridRowSpanning.js +95 -84
- package/node/hooks/features/rows/useGridRows.js +21 -25
- package/node/hooks/features/rows/useGridRowsMeta.js +5 -4
- package/node/hooks/features/sorting/gridSortingSelector.js +12 -1
- package/node/hooks/features/sorting/gridSortingUtils.js +2 -2
- package/node/hooks/features/sorting/index.js +24 -16
- package/node/hooks/features/sorting/useGridSorting.js +1 -1
- package/node/hooks/features/virtualization/gridFocusedVirtualCellSelector.js +40 -0
- package/node/hooks/features/virtualization/useGridVirtualScroller.js +171 -96
- package/node/hooks/utils/useGridApiEventHandler.js +1 -1
- package/node/hooks/utils/useGridApiRef.js +1 -1
- package/node/hooks/utils/useGridSelector.js +8 -47
- package/node/hooks/utils/useGridVisibleRows.js +3 -28
- package/node/index.js +1 -1
- package/node/internals/constants.js +9 -2
- package/node/internals/index.js +36 -24
- package/node/internals/utils/attachPinnedStyle.js +15 -0
- package/node/internals/utils/getPinnedCellOffset.js +6 -7
- package/node/internals/utils/index.js +11 -11
- package/node/locales/arSD.js +14 -0
- package/node/locales/beBY.js +13 -0
- package/node/locales/bgBG.js +15 -0
- package/node/locales/csCZ.js +15 -0
- package/node/locales/daDK.js +15 -0
- package/node/locales/deDE.js +13 -0
- package/node/locales/elGR.js +14 -0
- package/node/locales/esES.js +17 -4
- package/node/locales/faIR.js +18 -4
- package/node/locales/fiFI.js +15 -0
- package/node/locales/frFR.js +15 -0
- package/node/locales/heIL.js +17 -4
- package/node/locales/hrHR.js +15 -0
- package/node/locales/huHU.js +15 -0
- package/node/locales/isIS.js +14 -0
- package/node/locales/itIT.js +15 -0
- package/node/locales/jaJP.js +15 -0
- package/node/locales/koKR.js +47 -37
- package/node/locales/nbNO.js +15 -0
- package/node/locales/nlNL.js +18 -4
- package/node/locales/nnNO.js +15 -0
- package/node/locales/plPL.js +15 -0
- package/node/locales/ptBR.js +13 -0
- package/node/locales/ptPT.js +13 -0
- package/node/locales/roRO.js +21 -9
- package/node/locales/ruRU.js +15 -0
- package/node/locales/skSK.js +14 -0
- package/node/locales/svSE.js +19 -5
- package/node/locales/trTR.js +15 -2
- package/node/locales/ukUA.js +14 -0
- package/node/locales/urPK.js +22 -9
- package/node/locales/viVN.js +15 -0
- package/node/locales/zhCN.js +17 -4
- package/node/locales/zhHK.js +14 -0
- package/node/locales/zhTW.js +14 -0
- package/node/material/index.js +59 -7
- package/node/models/api/index.js +0 -11
- package/node/models/gridFilterInputComponent.js +5 -0
- package/node/utils/assert.js +9 -0
- package/node/utils/cellBorderUtils.js +5 -5
- package/node/utils/createSelector.js +4 -125
- package/node/utils/domUtils.js +7 -2
- package/node/utils/isJSDOM.js +7 -0
- package/node/utils/roundToDecimalPlaces.js +9 -0
- package/node/utils/rtlFlipSide.js +29 -0
- package/node/utils/utils.js +8 -1
- package/package.json +5 -5
- package/themeAugmentation/overrides.d.ts +10 -5
- package/utils/assert.d.ts +2 -0
- package/utils/assert.js +3 -0
- package/utils/cellBorderUtils.d.ts +3 -3
- package/utils/cellBorderUtils.js +5 -5
- package/utils/createSelector.d.ts +7 -19
- package/utils/createSelector.js +1 -120
- package/utils/domUtils.js +7 -2
- package/utils/getPublicApiRef.d.ts +2 -1
- package/utils/isJSDOM.d.ts +1 -0
- package/utils/isJSDOM.js +1 -0
- package/utils/keyboardUtils.d.ts +1 -1
- package/utils/roundToDecimalPlaces.d.ts +1 -0
- package/utils/roundToDecimalPlaces.js +3 -0
- package/utils/rtlFlipSide.d.ts +2 -0
- package/utils/rtlFlipSide.js +22 -0
- package/utils/utils.d.ts +1 -0
- package/utils/utils.js +6 -1
- package/components/panel/filterPanel/GridFilterInputValueProps.d.ts +0 -11
- package/internals/utils/useProps.d.ts +0 -1
- package/internals/utils/useProps.js +0 -24
- package/joy/icons.d.ts +0 -32
- package/joy/icons.js +0 -431
- package/joy/index.d.ts +0 -2
- package/joy/index.js +0 -2
- package/joy/joySlots.d.ts +0 -3
- package/joy/joySlots.js +0 -384
- package/joy/package.json +0 -6
- package/modern/internals/utils/useProps.js +0 -24
- package/modern/joy/icons.js +0 -431
- package/modern/joy/index.js +0 -2
- package/modern/joy/joySlots.js +0 -384
- package/node/internals/utils/useProps.js +0 -30
- package/node/joy/icons.js +0 -439
- package/node/joy/index.js +0 -13
- package/node/joy/joySlots.js +0 -392
- /package/{components/panel/filterPanel/GridFilterInputValueProps.js → models/gridBaseSlots.js} +0 -0
- /package/{modern/components/panel/filterPanel/GridFilterInputValueProps.js → models/gridFilterInputComponent.js} +0 -0
- /package/node/{components/panel/filterPanel/GridFilterInputValueProps.js → models/gridBaseSlots.js} +0 -0
package/node/internals/index.js
CHANGED
|
@@ -11,7 +11,10 @@ var _exportNames = {
|
|
|
11
11
|
GridBaseColumnHeaders: true,
|
|
12
12
|
DATA_GRID_DEFAULT_SLOTS_COMPONENTS: true,
|
|
13
13
|
getGridFilter: true,
|
|
14
|
+
getValueOptions: true,
|
|
15
|
+
isSingleSelectColDef: true,
|
|
14
16
|
useGridRegisterPipeProcessor: true,
|
|
17
|
+
GridStrategyGroup: true,
|
|
15
18
|
useGridRegisterStrategyProcessor: true,
|
|
16
19
|
GRID_DEFAULT_STRATEGY: true,
|
|
17
20
|
useGridInitialization: true,
|
|
@@ -35,7 +38,6 @@ var _exportNames = {
|
|
|
35
38
|
passFilterLogic: true,
|
|
36
39
|
gridFilteredChildrenCountLookupSelector: true,
|
|
37
40
|
gridExpandedSortedRowTreeLevelPositionLookupSelector: true,
|
|
38
|
-
isSingleSelectColDef: true,
|
|
39
41
|
useGridFocus: true,
|
|
40
42
|
focusStateInitializer: true,
|
|
41
43
|
useGridKeyboardNavigation: true,
|
|
@@ -71,6 +73,7 @@ var _exportNames = {
|
|
|
71
73
|
useGridRowSelectionPreProcessors: true,
|
|
72
74
|
useGridSorting: true,
|
|
73
75
|
sortingStateInitializer: true,
|
|
76
|
+
gridSortedRowIndexLookupSelector: true,
|
|
74
77
|
useGridScroll: true,
|
|
75
78
|
useGridEvents: true,
|
|
76
79
|
dimensionsStateInitializer: true,
|
|
@@ -90,10 +93,7 @@ var _exportNames = {
|
|
|
90
93
|
getColumnsToExport: true,
|
|
91
94
|
defaultGetRowsToExport: true,
|
|
92
95
|
createSelector: true,
|
|
93
|
-
createSelectorV8: true,
|
|
94
96
|
createSelectorMemoized: true,
|
|
95
|
-
createSelectorMemoizedV8: true,
|
|
96
|
-
useGridSelectorV8: true,
|
|
97
97
|
findParentElementFromClassName: true,
|
|
98
98
|
getActiveElement: true,
|
|
99
99
|
isEventTargetInPortal: true,
|
|
@@ -140,6 +140,12 @@ Object.defineProperty(exports, "GridHeaders", {
|
|
|
140
140
|
return _GridHeaders.GridHeaders;
|
|
141
141
|
}
|
|
142
142
|
});
|
|
143
|
+
Object.defineProperty(exports, "GridStrategyGroup", {
|
|
144
|
+
enumerable: true,
|
|
145
|
+
get: function () {
|
|
146
|
+
return _strategyProcessing.GridStrategyGroup;
|
|
147
|
+
}
|
|
148
|
+
});
|
|
143
149
|
Object.defineProperty(exports, "GridVirtualScroller", {
|
|
144
150
|
enumerable: true,
|
|
145
151
|
get: function () {
|
|
@@ -212,18 +218,6 @@ Object.defineProperty(exports, "createSelectorMemoized", {
|
|
|
212
218
|
return _createSelector.createSelectorMemoized;
|
|
213
219
|
}
|
|
214
220
|
});
|
|
215
|
-
Object.defineProperty(exports, "createSelectorMemoizedV8", {
|
|
216
|
-
enumerable: true,
|
|
217
|
-
get: function () {
|
|
218
|
-
return _createSelector.createSelectorMemoizedV8;
|
|
219
|
-
}
|
|
220
|
-
});
|
|
221
|
-
Object.defineProperty(exports, "createSelectorV8", {
|
|
222
|
-
enumerable: true,
|
|
223
|
-
get: function () {
|
|
224
|
-
return _createSelector.createSelectorV8;
|
|
225
|
-
}
|
|
226
|
-
});
|
|
227
221
|
Object.defineProperty(exports, "defaultGetRowsToExport", {
|
|
228
222
|
enumerable: true,
|
|
229
223
|
get: function () {
|
|
@@ -302,6 +296,12 @@ Object.defineProperty(exports, "getTreeNodeDescendants", {
|
|
|
302
296
|
return _gridRowsUtils.getTreeNodeDescendants;
|
|
303
297
|
}
|
|
304
298
|
});
|
|
299
|
+
Object.defineProperty(exports, "getValueOptions", {
|
|
300
|
+
enumerable: true,
|
|
301
|
+
get: function () {
|
|
302
|
+
return _filterPanelUtils.getValueOptions;
|
|
303
|
+
}
|
|
304
|
+
});
|
|
305
305
|
Object.defineProperty(exports, "getVisibleRows", {
|
|
306
306
|
enumerable: true,
|
|
307
307
|
get: function () {
|
|
@@ -356,6 +356,12 @@ Object.defineProperty(exports, "gridRowGroupsToFetchSelector", {
|
|
|
356
356
|
return _gridRowsSelector.gridRowGroupsToFetchSelector;
|
|
357
357
|
}
|
|
358
358
|
});
|
|
359
|
+
Object.defineProperty(exports, "gridSortedRowIndexLookupSelector", {
|
|
360
|
+
enumerable: true,
|
|
361
|
+
get: function () {
|
|
362
|
+
return _gridSortingSelector.gridSortedRowIndexLookupSelector;
|
|
363
|
+
}
|
|
364
|
+
});
|
|
359
365
|
Object.defineProperty(exports, "headerFilteringStateInitializer", {
|
|
360
366
|
enumerable: true,
|
|
361
367
|
get: function () {
|
|
@@ -662,12 +668,6 @@ Object.defineProperty(exports, "useGridScroll", {
|
|
|
662
668
|
return _useGridScroll.useGridScroll;
|
|
663
669
|
}
|
|
664
670
|
});
|
|
665
|
-
Object.defineProperty(exports, "useGridSelectorV8", {
|
|
666
|
-
enumerable: true,
|
|
667
|
-
get: function () {
|
|
668
|
-
return _useGridSelector.useGridSelectorV8;
|
|
669
|
-
}
|
|
670
|
-
});
|
|
671
671
|
Object.defineProperty(exports, "useGridSorting", {
|
|
672
672
|
enumerable: true,
|
|
673
673
|
get: function () {
|
|
@@ -705,6 +705,7 @@ var _GridHeaders = require("../components/GridHeaders");
|
|
|
705
705
|
var _GridBaseColumnHeaders = require("../components/columnHeaders/GridBaseColumnHeaders");
|
|
706
706
|
var _defaultGridSlotsComponents = require("../constants/defaultGridSlotsComponents");
|
|
707
707
|
var _GridFilterPanel = require("../components/panel/filterPanel/GridFilterPanel");
|
|
708
|
+
var _filterPanelUtils = require("../components/panel/filterPanel/filterPanelUtils");
|
|
708
709
|
var _pipeProcessing = require("../hooks/core/pipeProcessing");
|
|
709
710
|
var _strategyProcessing = require("../hooks/core/strategyProcessing");
|
|
710
711
|
var _useGridInitialization = require("../hooks/core/useGridInitialization");
|
|
@@ -757,7 +758,6 @@ var _useGridPrintExport = require("../hooks/features/export/useGridPrintExport")
|
|
|
757
758
|
var _useGridFilter = require("../hooks/features/filter/useGridFilter");
|
|
758
759
|
var _gridFilterUtils = require("../hooks/features/filter/gridFilterUtils");
|
|
759
760
|
var _gridFilterSelector = require("../hooks/features/filter/gridFilterSelector");
|
|
760
|
-
var _filterPanelUtils = require("../components/panel/filterPanel/filterPanelUtils");
|
|
761
761
|
var _useGridFocus = require("../hooks/features/focus/useGridFocus");
|
|
762
762
|
var _useGridKeyboardNavigation = require("../hooks/features/keyboardNavigation/useGridKeyboardNavigation");
|
|
763
763
|
var _useGridPagination = require("../hooks/features/pagination/useGridPagination");
|
|
@@ -777,6 +777,7 @@ var _useGridHeaderFiltering = require("../hooks/features/headerFiltering/useGrid
|
|
|
777
777
|
var _useGridRowSelection = require("../hooks/features/rowSelection/useGridRowSelection");
|
|
778
778
|
var _useGridRowSelectionPreProcessors = require("../hooks/features/rowSelection/useGridRowSelectionPreProcessors");
|
|
779
779
|
var _useGridSorting = require("../hooks/features/sorting/useGridSorting");
|
|
780
|
+
var _gridSortingSelector = require("../hooks/features/sorting/gridSortingSelector");
|
|
780
781
|
var _useGridScroll = require("../hooks/features/scroll/useGridScroll");
|
|
781
782
|
var _useGridEvents = require("../hooks/features/events/useGridEvents");
|
|
782
783
|
var _useGridDimensions = require("../hooks/features/dimensions/useGridDimensions");
|
|
@@ -813,8 +814,19 @@ Object.keys(_createControllablePromise).forEach(function (key) {
|
|
|
813
814
|
}
|
|
814
815
|
});
|
|
815
816
|
});
|
|
817
|
+
var _rtlFlipSide = require("../utils/rtlFlipSide");
|
|
818
|
+
Object.keys(_rtlFlipSide).forEach(function (key) {
|
|
819
|
+
if (key === "default" || key === "__esModule") return;
|
|
820
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
821
|
+
if (key in exports && exports[key] === _rtlFlipSide[key]) return;
|
|
822
|
+
Object.defineProperty(exports, key, {
|
|
823
|
+
enumerable: true,
|
|
824
|
+
get: function () {
|
|
825
|
+
return _rtlFlipSide[key];
|
|
826
|
+
}
|
|
827
|
+
});
|
|
828
|
+
});
|
|
816
829
|
var _createSelector = require("../utils/createSelector");
|
|
817
|
-
var _useGridSelector = require("../hooks/utils/useGridSelector");
|
|
818
830
|
var _domUtils = require("../utils/domUtils");
|
|
819
831
|
var _keyboardUtils = require("../utils/keyboardUtils");
|
|
820
832
|
var _utils3 = require("../utils/utils");
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.attachPinnedStyle = attachPinnedStyle;
|
|
7
|
+
var _rtlFlipSide = require("../../utils/rtlFlipSide");
|
|
8
|
+
function attachPinnedStyle(style, isRtl, pinnedPosition, pinnedOffset) {
|
|
9
|
+
const side = (0, _rtlFlipSide.rtlFlipSide)(pinnedPosition, isRtl);
|
|
10
|
+
if (!side || pinnedOffset === undefined) {
|
|
11
|
+
return style;
|
|
12
|
+
}
|
|
13
|
+
style[side] = pinnedOffset;
|
|
14
|
+
return style;
|
|
15
|
+
}
|
|
@@ -4,19 +4,18 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.getPinnedCellOffset = void 0;
|
|
7
|
-
var
|
|
8
|
-
const getPinnedCellOffset = (pinnedPosition, computedWidth, columnIndex, columnPositions,
|
|
9
|
-
const scrollbarWidth = dimensions.hasScrollY ? dimensions.scrollbarSize : 0;
|
|
7
|
+
var _constants = require("../constants");
|
|
8
|
+
const getPinnedCellOffset = (pinnedPosition, computedWidth, columnIndex, columnPositions, columnsTotalWidth, scrollbarWidth) => {
|
|
10
9
|
let pinnedOffset;
|
|
11
10
|
switch (pinnedPosition) {
|
|
12
|
-
case
|
|
11
|
+
case _constants.PinnedColumnPosition.LEFT:
|
|
13
12
|
pinnedOffset = columnPositions[columnIndex];
|
|
14
13
|
break;
|
|
15
|
-
case
|
|
16
|
-
pinnedOffset =
|
|
14
|
+
case _constants.PinnedColumnPosition.RIGHT:
|
|
15
|
+
pinnedOffset = columnsTotalWidth - columnPositions[columnIndex] - computedWidth + scrollbarWidth;
|
|
17
16
|
break;
|
|
18
17
|
default:
|
|
19
|
-
pinnedOffset =
|
|
18
|
+
pinnedOffset = undefined;
|
|
20
19
|
break;
|
|
21
20
|
}
|
|
22
21
|
return pinnedOffset;
|
|
@@ -14,17 +14,6 @@ Object.keys(_computeSlots).forEach(function (key) {
|
|
|
14
14
|
}
|
|
15
15
|
});
|
|
16
16
|
});
|
|
17
|
-
var _useProps = require("./useProps");
|
|
18
|
-
Object.keys(_useProps).forEach(function (key) {
|
|
19
|
-
if (key === "default" || key === "__esModule") return;
|
|
20
|
-
if (key in exports && exports[key] === _useProps[key]) return;
|
|
21
|
-
Object.defineProperty(exports, key, {
|
|
22
|
-
enumerable: true,
|
|
23
|
-
get: function () {
|
|
24
|
-
return _useProps[key];
|
|
25
|
-
}
|
|
26
|
-
});
|
|
27
|
-
});
|
|
28
17
|
var _propValidation = require("./propValidation");
|
|
29
18
|
Object.keys(_propValidation).forEach(function (key) {
|
|
30
19
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -46,4 +35,15 @@ Object.keys(_gridRowGroupingUtils).forEach(function (key) {
|
|
|
46
35
|
return _gridRowGroupingUtils[key];
|
|
47
36
|
}
|
|
48
37
|
});
|
|
38
|
+
});
|
|
39
|
+
var _attachPinnedStyle = require("./attachPinnedStyle");
|
|
40
|
+
Object.keys(_attachPinnedStyle).forEach(function (key) {
|
|
41
|
+
if (key === "default" || key === "__esModule") return;
|
|
42
|
+
if (key in exports && exports[key] === _attachPinnedStyle[key]) return;
|
|
43
|
+
Object.defineProperty(exports, key, {
|
|
44
|
+
enumerable: true,
|
|
45
|
+
get: function () {
|
|
46
|
+
return _attachPinnedStyle[key];
|
|
47
|
+
}
|
|
48
|
+
});
|
|
49
49
|
});
|
package/node/locales/arSD.js
CHANGED
|
@@ -29,6 +29,17 @@ const arSDGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'بحث...',
|
|
30
30
|
toolbarQuickFilterLabel: 'بحث',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'أزال',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
38
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
39
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
40
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
41
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
42
|
+
|
|
32
43
|
// Export selector toolbar button text
|
|
33
44
|
toolbarExport: 'تصدير',
|
|
34
45
|
toolbarExportLabel: 'تصدير',
|
|
@@ -40,6 +51,7 @@ const arSDGrid = {
|
|
|
40
51
|
// columnsManagementNoColumns: 'No columns',
|
|
41
52
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
42
53
|
// columnsManagementReset: 'Reset',
|
|
54
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
43
55
|
|
|
44
56
|
// Filter panel text
|
|
45
57
|
filterPanelAddFilter: 'إضافة مرشِح',
|
|
@@ -96,6 +108,8 @@ const arSDGrid = {
|
|
|
96
108
|
'headerFilterOperator>=': 'أكبر من او يساوي',
|
|
97
109
|
'headerFilterOperator<': 'اصغر من',
|
|
98
110
|
'headerFilterOperator<=': 'اصغر من او يساوي',
|
|
111
|
+
// headerFilterClear: 'Clear filter',
|
|
112
|
+
|
|
99
113
|
// Filter values text
|
|
100
114
|
filterValueAny: 'أي',
|
|
101
115
|
filterValueTrue: 'صائب',
|
package/node/locales/beBY.js
CHANGED
|
@@ -43,6 +43,17 @@ const beBYGrid = {
|
|
|
43
43
|
toolbarQuickFilterPlaceholder: 'Пошук…',
|
|
44
44
|
toolbarQuickFilterLabel: 'Пошук',
|
|
45
45
|
toolbarQuickFilterDeleteIconLabel: 'Ачысціць',
|
|
46
|
+
// Prompt toolbar field
|
|
47
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
48
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
49
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
50
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
51
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
52
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
53
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
54
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
55
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
56
|
+
|
|
46
57
|
// Export selector toolbar button text
|
|
47
58
|
toolbarExport: 'Экспарт',
|
|
48
59
|
toolbarExportLabel: 'Экспарт',
|
|
@@ -54,6 +65,7 @@ const beBYGrid = {
|
|
|
54
65
|
// columnsManagementNoColumns: 'No columns',
|
|
55
66
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
56
67
|
// columnsManagementReset: 'Reset',
|
|
68
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
57
69
|
|
|
58
70
|
// Filter panel text
|
|
59
71
|
filterPanelAddFilter: 'Дадаць фільтр',
|
|
@@ -111,6 +123,7 @@ const beBYGrid = {
|
|
|
111
123
|
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
112
124
|
// 'headerFilterOperator<': 'Less than',
|
|
113
125
|
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
126
|
+
// headerFilterClear: 'Clear filter',
|
|
114
127
|
|
|
115
128
|
// Filter values text
|
|
116
129
|
filterValueAny: 'усякі',
|
package/node/locales/bgBG.js
CHANGED
|
@@ -29,6 +29,17 @@ const bgBGGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Търси…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Търсене',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Изчисти',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
38
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
39
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
40
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
41
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
42
|
+
|
|
32
43
|
// Export selector toolbar button text
|
|
33
44
|
toolbarExport: 'Изтегли',
|
|
34
45
|
toolbarExportLabel: 'Изтегли',
|
|
@@ -40,6 +51,8 @@ const bgBGGrid = {
|
|
|
40
51
|
columnsManagementNoColumns: 'Няма колони',
|
|
41
52
|
columnsManagementShowHideAllText: 'Покажи/Скрий Всичко',
|
|
42
53
|
columnsManagementReset: 'Нулирай',
|
|
54
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
55
|
+
|
|
43
56
|
// Filter panel text
|
|
44
57
|
filterPanelAddFilter: 'Добави Филтър',
|
|
45
58
|
filterPanelRemoveAll: 'Премахни всички',
|
|
@@ -95,6 +108,8 @@ const bgBGGrid = {
|
|
|
95
108
|
'headerFilterOperator>=': 'По-голямо или равно на',
|
|
96
109
|
'headerFilterOperator<': 'По-малко от',
|
|
97
110
|
'headerFilterOperator<=': 'По-малко или равно на',
|
|
111
|
+
// headerFilterClear: 'Clear filter',
|
|
112
|
+
|
|
98
113
|
// Filter values text
|
|
99
114
|
filterValueAny: 'всякакви',
|
|
100
115
|
filterValueTrue: 'вярно',
|
package/node/locales/csCZ.js
CHANGED
|
@@ -37,6 +37,17 @@ const csCZGrid = {
|
|
|
37
37
|
toolbarQuickFilterPlaceholder: 'Hledat…',
|
|
38
38
|
toolbarQuickFilterLabel: 'Hledat',
|
|
39
39
|
toolbarQuickFilterDeleteIconLabel: 'Vymazat',
|
|
40
|
+
// Prompt toolbar field
|
|
41
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
42
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
43
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
44
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
45
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
46
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
47
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
48
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
49
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
50
|
+
|
|
40
51
|
// Export selector toolbar button text
|
|
41
52
|
toolbarExport: 'Export',
|
|
42
53
|
toolbarExportLabel: 'Export',
|
|
@@ -48,6 +59,8 @@ const csCZGrid = {
|
|
|
48
59
|
columnsManagementNoColumns: 'Žádné sloupce',
|
|
49
60
|
columnsManagementShowHideAllText: 'Zobrazit/skrýt vše',
|
|
50
61
|
columnsManagementReset: 'Resetovat',
|
|
62
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
63
|
+
|
|
51
64
|
// Filter panel text
|
|
52
65
|
filterPanelAddFilter: 'Přidat filtr',
|
|
53
66
|
filterPanelRemoveAll: 'Odstranit vše',
|
|
@@ -103,6 +116,8 @@ const csCZGrid = {
|
|
|
103
116
|
'headerFilterOperator>=': 'Větší než nebo rovno',
|
|
104
117
|
'headerFilterOperator<': 'Menší než',
|
|
105
118
|
'headerFilterOperator<=': 'Menší než nebo rovno',
|
|
119
|
+
// headerFilterClear: 'Clear filter',
|
|
120
|
+
|
|
106
121
|
// Filter values text
|
|
107
122
|
filterValueAny: 'jakýkoliv',
|
|
108
123
|
filterValueTrue: 'ano',
|
package/node/locales/daDK.js
CHANGED
|
@@ -29,6 +29,17 @@ const daDKGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Søg…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Søg',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Ryd',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
38
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
39
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
40
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
41
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
42
|
+
|
|
32
43
|
// Export selector toolbar button text
|
|
33
44
|
toolbarExport: 'Eksport',
|
|
34
45
|
toolbarExportLabel: 'Eksporter',
|
|
@@ -40,6 +51,8 @@ const daDKGrid = {
|
|
|
40
51
|
columnsManagementNoColumns: 'Ingen søjler',
|
|
41
52
|
columnsManagementShowHideAllText: 'Vis/Skjul Alle',
|
|
42
53
|
columnsManagementReset: 'Nulstil',
|
|
54
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
55
|
+
|
|
43
56
|
// Filter panel text
|
|
44
57
|
filterPanelAddFilter: 'Tilføj filter',
|
|
45
58
|
filterPanelRemoveAll: 'Fjern alle',
|
|
@@ -95,6 +108,8 @@ const daDKGrid = {
|
|
|
95
108
|
'headerFilterOperator>=': 'Større end eller lig med',
|
|
96
109
|
'headerFilterOperator<': 'Mindre end',
|
|
97
110
|
'headerFilterOperator<=': 'Mindre end eller lig med',
|
|
111
|
+
// headerFilterClear: 'Clear filter',
|
|
112
|
+
|
|
98
113
|
// Filter values text
|
|
99
114
|
filterValueAny: 'hvilken som helst',
|
|
100
115
|
filterValueTrue: 'positiv',
|
package/node/locales/deDE.js
CHANGED
|
@@ -29,6 +29,16 @@ const deDEGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Suchen…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Suchen',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Löschen',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
toolbarPromptControlPlaceholder: 'Prompt eingeben…',
|
|
34
|
+
toolbarPromptControlWithRecordingPlaceholder: 'Prompt eingeben oder aufnehmen…',
|
|
35
|
+
toolbarPromptControlRecordingPlaceholder: 'Hört Prompteingabe zu…',
|
|
36
|
+
toolbarPromptControlLabel: 'Prompteingabe',
|
|
37
|
+
toolbarPromptControlRecordButtonDefaultLabel: 'Aufnahme starten',
|
|
38
|
+
toolbarPromptControlRecordButtonActiveLabel: 'Aufnahme stoppen',
|
|
39
|
+
toolbarPromptControlSendActionLabel: 'Senden',
|
|
40
|
+
toolbarPromptControlSendActionAriaLabel: 'Prompt senden',
|
|
41
|
+
toolbarPromptControlErrorMessage: 'Ein Fehler ist während der Bearbeitung der Anfrage aufgetreten. Bitte versuche es nochmal mit einem anderen Prompt.',
|
|
32
42
|
// Export selector toolbar button text
|
|
33
43
|
toolbarExport: 'Exportieren',
|
|
34
44
|
toolbarExportLabel: 'Exportieren',
|
|
@@ -40,6 +50,7 @@ const deDEGrid = {
|
|
|
40
50
|
columnsManagementNoColumns: 'Keine Spalten',
|
|
41
51
|
columnsManagementShowHideAllText: 'Alle anzeigen/verbergen',
|
|
42
52
|
columnsManagementReset: 'Zurücksetzen',
|
|
53
|
+
columnsManagementDeleteIconLabel: 'Löschen',
|
|
43
54
|
// Filter panel text
|
|
44
55
|
filterPanelAddFilter: 'Filter hinzufügen',
|
|
45
56
|
filterPanelRemoveAll: 'Alle entfernen',
|
|
@@ -95,6 +106,8 @@ const deDEGrid = {
|
|
|
95
106
|
'headerFilterOperator>=': 'Größer als oder gleich',
|
|
96
107
|
'headerFilterOperator<': 'Kleiner als',
|
|
97
108
|
'headerFilterOperator<=': 'Kleiner als oder gleich',
|
|
109
|
+
// headerFilterClear: 'Clear filter',
|
|
110
|
+
|
|
98
111
|
// Filter values text
|
|
99
112
|
filterValueAny: 'Beliebig',
|
|
100
113
|
filterValueTrue: 'Ja',
|
package/node/locales/elGR.js
CHANGED
|
@@ -29,6 +29,17 @@ const elGRGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Αναζήτηση…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Αναζήτηση',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Καθαρισμός',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
38
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
39
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
40
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
41
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
42
|
+
|
|
32
43
|
// Export selector toolbar button text
|
|
33
44
|
toolbarExport: 'Εξαγωγή',
|
|
34
45
|
toolbarExportLabel: 'Εξαγωγή',
|
|
@@ -40,6 +51,7 @@ const elGRGrid = {
|
|
|
40
51
|
// columnsManagementNoColumns: 'No columns',
|
|
41
52
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
42
53
|
// columnsManagementReset: 'Reset',
|
|
54
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
43
55
|
|
|
44
56
|
// Filter panel text
|
|
45
57
|
filterPanelAddFilter: 'Προσθήκη φίλτρου',
|
|
@@ -96,6 +108,8 @@ const elGRGrid = {
|
|
|
96
108
|
'headerFilterOperator>=': 'Μεγαλύτερο ή ίσο με',
|
|
97
109
|
'headerFilterOperator<': 'Μικρότερο από',
|
|
98
110
|
'headerFilterOperator<=': 'Μικρότερο ή ίσο με',
|
|
111
|
+
// headerFilterClear: 'Clear filter',
|
|
112
|
+
|
|
99
113
|
// Filter values text
|
|
100
114
|
filterValueAny: 'οποιοδήποτε',
|
|
101
115
|
filterValueTrue: 'αληθές',
|
package/node/locales/esES.js
CHANGED
|
@@ -29,6 +29,16 @@ const esESGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Buscar…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Buscar',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Limpiar',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
toolbarPromptControlPlaceholder: 'Escriba un prompt…',
|
|
34
|
+
toolbarPromptControlWithRecordingPlaceholder: 'Escriba o grabe un prompt…',
|
|
35
|
+
toolbarPromptControlRecordingPlaceholder: 'Esperando por un prompt…',
|
|
36
|
+
toolbarPromptControlLabel: 'Introduzca un prompt',
|
|
37
|
+
toolbarPromptControlRecordButtonDefaultLabel: 'Grabar',
|
|
38
|
+
toolbarPromptControlRecordButtonActiveLabel: 'Parar de grabar',
|
|
39
|
+
toolbarPromptControlSendActionLabel: 'Enviar',
|
|
40
|
+
toolbarPromptControlSendActionAriaLabel: 'Enviar prompt',
|
|
41
|
+
toolbarPromptControlErrorMessage: 'Ocurrió un error mientras se procesaba la petición. Por favor, intente de nuevo con otro prompt.',
|
|
32
42
|
// Export selector toolbar button text
|
|
33
43
|
toolbarExport: 'Exportar',
|
|
34
44
|
toolbarExportLabel: 'Exportar',
|
|
@@ -40,6 +50,7 @@ const esESGrid = {
|
|
|
40
50
|
columnsManagementNoColumns: 'Sin columnas',
|
|
41
51
|
columnsManagementShowHideAllText: 'Mostrar/Ocultar todas',
|
|
42
52
|
columnsManagementReset: 'Restablecer',
|
|
53
|
+
columnsManagementDeleteIconLabel: 'Limpiar',
|
|
43
54
|
// Filter panel text
|
|
44
55
|
filterPanelAddFilter: 'Agregar filtro',
|
|
45
56
|
filterPanelRemoveAll: 'Remover todos',
|
|
@@ -53,9 +64,9 @@ const esESGrid = {
|
|
|
53
64
|
filterPanelInputPlaceholder: 'Valor de filtro',
|
|
54
65
|
// Filter operators text
|
|
55
66
|
filterOperatorContains: 'contiene',
|
|
56
|
-
|
|
67
|
+
filterOperatorDoesNotContain: 'no contiene',
|
|
57
68
|
filterOperatorEquals: 'es igual',
|
|
58
|
-
|
|
69
|
+
filterOperatorDoesNotEqual: 'es diferente a',
|
|
59
70
|
filterOperatorStartsWith: 'comienza con',
|
|
60
71
|
filterOperatorEndsWith: 'termina con',
|
|
61
72
|
filterOperatorIs: 'es',
|
|
@@ -75,9 +86,9 @@ const esESGrid = {
|
|
|
75
86
|
'filterOperator<=': '<=',
|
|
76
87
|
// Header filter operators text
|
|
77
88
|
headerFilterOperatorContains: 'Contiene',
|
|
78
|
-
|
|
89
|
+
headerFilterOperatorDoesNotContain: 'No contiene',
|
|
79
90
|
headerFilterOperatorEquals: 'Es igual a',
|
|
80
|
-
|
|
91
|
+
headerFilterOperatorDoesNotEqual: 'Es diferente a',
|
|
81
92
|
headerFilterOperatorStartsWith: 'Comienza con',
|
|
82
93
|
headerFilterOperatorEndsWith: 'Termina con',
|
|
83
94
|
headerFilterOperatorIs: 'Es',
|
|
@@ -95,6 +106,8 @@ const esESGrid = {
|
|
|
95
106
|
'headerFilterOperator>=': 'Es mayor o igual que',
|
|
96
107
|
'headerFilterOperator<': 'Es menor que',
|
|
97
108
|
'headerFilterOperator<=': 'Es menor o igual que',
|
|
109
|
+
// headerFilterClear: 'Clear filter',
|
|
110
|
+
|
|
98
111
|
// Filter values text
|
|
99
112
|
filterValueAny: 'cualquiera',
|
|
100
113
|
filterValueTrue: 'verdadero',
|
package/node/locales/faIR.js
CHANGED
|
@@ -29,6 +29,17 @@ const faIRGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'جستجو...',
|
|
30
30
|
toolbarQuickFilterLabel: 'جستجو',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'حذف',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
38
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
39
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
40
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
41
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
42
|
+
|
|
32
43
|
// Export selector toolbar button text
|
|
33
44
|
toolbarExport: 'خروجی',
|
|
34
45
|
toolbarExportLabel: 'خروجی',
|
|
@@ -40,6 +51,7 @@ const faIRGrid = {
|
|
|
40
51
|
columnsManagementNoColumns: 'بدون سطر',
|
|
41
52
|
columnsManagementShowHideAllText: 'نمایش/مخفی کردن همه',
|
|
42
53
|
columnsManagementReset: 'بازنشانی',
|
|
54
|
+
columnsManagementDeleteIconLabel: 'پاک کردن',
|
|
43
55
|
// Filter panel text
|
|
44
56
|
filterPanelAddFilter: 'افزودن فیلتر',
|
|
45
57
|
filterPanelRemoveAll: 'حذف همه',
|
|
@@ -53,9 +65,9 @@ const faIRGrid = {
|
|
|
53
65
|
filterPanelInputPlaceholder: 'فیلتر مقدار',
|
|
54
66
|
// Filter operators text
|
|
55
67
|
filterOperatorContains: 'شامل',
|
|
56
|
-
|
|
68
|
+
filterOperatorDoesNotContain: 'شامل نمیشود',
|
|
57
69
|
filterOperatorEquals: 'مساوی',
|
|
58
|
-
|
|
70
|
+
filterOperatorDoesNotEqual: 'برابر نیست',
|
|
59
71
|
filterOperatorStartsWith: 'شروع با',
|
|
60
72
|
filterOperatorEndsWith: 'پایان با',
|
|
61
73
|
filterOperatorIs: 'هست',
|
|
@@ -75,9 +87,9 @@ const faIRGrid = {
|
|
|
75
87
|
'filterOperator<=': '<=',
|
|
76
88
|
// Header filter operators text
|
|
77
89
|
headerFilterOperatorContains: 'شامل',
|
|
78
|
-
|
|
90
|
+
headerFilterOperatorDoesNotContain: 'شامل نمیشود',
|
|
79
91
|
headerFilterOperatorEquals: 'مساوی',
|
|
80
|
-
|
|
92
|
+
headerFilterOperatorDoesNotEqual: 'برابر نیست',
|
|
81
93
|
headerFilterOperatorStartsWith: 'شروع با',
|
|
82
94
|
headerFilterOperatorEndsWith: 'پایان با',
|
|
83
95
|
headerFilterOperatorIs: 'هست',
|
|
@@ -95,6 +107,8 @@ const faIRGrid = {
|
|
|
95
107
|
'headerFilterOperator>=': 'بزرگتر یا مساوی',
|
|
96
108
|
'headerFilterOperator<': 'کوچکتر',
|
|
97
109
|
'headerFilterOperator<=': 'کوچکتر یا مساوی',
|
|
110
|
+
// headerFilterClear: 'Clear filter',
|
|
111
|
+
|
|
98
112
|
// Filter values text
|
|
99
113
|
filterValueAny: 'هرچیزی',
|
|
100
114
|
filterValueTrue: 'صحیح',
|
package/node/locales/fiFI.js
CHANGED
|
@@ -29,6 +29,17 @@ const fiFIGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Hae…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Hae',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Tyhjennä',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
38
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
39
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
40
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
41
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
42
|
+
|
|
32
43
|
// Export selector toolbar button text
|
|
33
44
|
toolbarExport: 'Vie',
|
|
34
45
|
toolbarExportLabel: 'Vie',
|
|
@@ -40,6 +51,8 @@ const fiFIGrid = {
|
|
|
40
51
|
columnsManagementNoColumns: 'Ei sarakkeita näytettäväksi',
|
|
41
52
|
columnsManagementShowHideAllText: 'Näytä/Piilota kaikki',
|
|
42
53
|
columnsManagementReset: 'Palauta',
|
|
54
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
55
|
+
|
|
43
56
|
// Filter panel text
|
|
44
57
|
filterPanelAddFilter: 'Lisää suodatin',
|
|
45
58
|
filterPanelRemoveAll: 'Poista kaikki',
|
|
@@ -95,6 +108,8 @@ const fiFIGrid = {
|
|
|
95
108
|
'headerFilterOperator>=': 'Enemmän tai yhtä paljon kuin',
|
|
96
109
|
'headerFilterOperator<': 'Vähemmän kuin',
|
|
97
110
|
'headerFilterOperator<=': 'Vähemmän tai yhtä paljon kuin',
|
|
111
|
+
// headerFilterClear: 'Clear filter',
|
|
112
|
+
|
|
98
113
|
// Filter values text
|
|
99
114
|
filterValueAny: 'mikä tahansa',
|
|
100
115
|
filterValueTrue: 'tosi',
|
package/node/locales/frFR.js
CHANGED
|
@@ -29,6 +29,17 @@ const frFRGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Rechercher…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Recherche',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Supprimer',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
38
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
39
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
40
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
41
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
42
|
+
|
|
32
43
|
// Export selector toolbar button text
|
|
33
44
|
toolbarExport: 'Exporter',
|
|
34
45
|
toolbarExportLabel: 'Exporter',
|
|
@@ -40,6 +51,8 @@ const frFRGrid = {
|
|
|
40
51
|
columnsManagementNoColumns: 'Pas de colonnes',
|
|
41
52
|
columnsManagementShowHideAllText: 'Afficher/masquer toutes',
|
|
42
53
|
columnsManagementReset: 'Réinitialiser',
|
|
54
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
55
|
+
|
|
43
56
|
// Filter panel text
|
|
44
57
|
filterPanelAddFilter: 'Ajouter un filtre',
|
|
45
58
|
filterPanelRemoveAll: 'Tout supprimer',
|
|
@@ -95,6 +108,8 @@ const frFRGrid = {
|
|
|
95
108
|
'headerFilterOperator>=': 'Est supérieur ou égal à',
|
|
96
109
|
'headerFilterOperator<': 'Est inférieur à',
|
|
97
110
|
'headerFilterOperator<=': 'Est inférieur ou égal à',
|
|
111
|
+
// headerFilterClear: 'Clear filter',
|
|
112
|
+
|
|
98
113
|
// Filter values text
|
|
99
114
|
filterValueAny: 'tous',
|
|
100
115
|
filterValueTrue: 'vrai',
|