Socket
Socket
Sign inDemoInstall

@mui/x-data-grid-pro

Package Overview
Dependencies
91
Maintainers
11
Versions
168
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 7.1.0 to 7.1.1

4

esm/internals/propValidation.js

@@ -1,2 +0,2 @@

import { propValidatorsDataGrid } from '@mui/x-data-grid/internals';
export const propValidatorsDataGridPro = [...propValidatorsDataGrid, props => props.pagination && props.hideFooterRowCount && 'MUI X: The `hideFooterRowCount` prop has no effect when the pagination is enabled.' || undefined, props => props.treeData && props.filterMode === 'server' && 'MUI X: The `filterMode="server"` prop is not available when the `treeData` is enabled.' || undefined, props => !props.pagination && props.checkboxSelectionVisibleOnly && 'MUI X: The `checkboxSelectionVisibleOnly` prop has no effect when the pagination is not enabled.' || undefined];
import { GridSignature, isNumber, propValidatorsDataGrid } from '@mui/x-data-grid/internals';
export const propValidatorsDataGridPro = [...propValidatorsDataGrid, props => props.pagination && props.hideFooterRowCount && 'MUI X: The `hideFooterRowCount` prop has no effect when the pagination is enabled.' || undefined, props => props.treeData && props.filterMode === 'server' && 'MUI X: The `filterMode="server"` prop is not available when the `treeData` is enabled.' || undefined, props => !props.pagination && props.checkboxSelectionVisibleOnly && 'MUI X: The `checkboxSelectionVisibleOnly` prop has no effect when the pagination is not enabled.' || undefined, props => props.signature !== GridSignature.DataGrid && props.paginationMode === 'client' && props.rowsLoadingMode !== 'server' && isNumber(props.rowCount) && 'MUI X: Usage of the `rowCount` prop with client side pagination (`paginationMode="client"`) has no effect. `rowCount` is only meant to be used with `paginationMode="server"`.' || undefined];
import { ponyfillGlobal } from '@mui/utils';
export const getReleaseInfo = () => {
const releaseInfo = "MTcxMTU4MDQwMDAwMA==";
const releaseInfo = "MTcxMjI2NDQwMDAwMA==";
if (process.env.NODE_ENV !== 'production') {

@@ -5,0 +5,0 @@ // A simple hack to set the value in the test environment (has no build step).

/**
* @mui/x-data-grid-pro v7.1.0
* @mui/x-data-grid-pro v7.1.1
*

@@ -4,0 +4,0 @@ * @license MUI X Commercial

@@ -8,2 +8,2 @@ "use strict";

var _internals = require("@mui/x-data-grid/internals");
const propValidatorsDataGridPro = exports.propValidatorsDataGridPro = [..._internals.propValidatorsDataGrid, props => props.pagination && props.hideFooterRowCount && 'MUI X: The `hideFooterRowCount` prop has no effect when the pagination is enabled.' || undefined, props => props.treeData && props.filterMode === 'server' && 'MUI X: The `filterMode="server"` prop is not available when the `treeData` is enabled.' || undefined, props => !props.pagination && props.checkboxSelectionVisibleOnly && 'MUI X: The `checkboxSelectionVisibleOnly` prop has no effect when the pagination is not enabled.' || undefined];
const propValidatorsDataGridPro = exports.propValidatorsDataGridPro = [..._internals.propValidatorsDataGrid, props => props.pagination && props.hideFooterRowCount && 'MUI X: The `hideFooterRowCount` prop has no effect when the pagination is enabled.' || undefined, props => props.treeData && props.filterMode === 'server' && 'MUI X: The `filterMode="server"` prop is not available when the `treeData` is enabled.' || undefined, props => !props.pagination && props.checkboxSelectionVisibleOnly && 'MUI X: The `checkboxSelectionVisibleOnly` prop has no effect when the pagination is not enabled.' || undefined, props => props.signature !== _internals.GridSignature.DataGrid && props.paginationMode === 'client' && props.rowsLoadingMode !== 'server' && (0, _internals.isNumber)(props.rowCount) && 'MUI X: Usage of the `rowCount` prop with client side pagination (`paginationMode="client"`) has no effect. `rowCount` is only meant to be used with `paginationMode="server"`.' || undefined];
import * as React from 'react';
import { GridEventListener, GridCallbackDetails, GridRowParams, GridRowId, GridValidRowModel, GridGroupNode, GridFeatureMode } from '@mui/x-data-grid';
import { GridExperimentalFeatures, DataGridPropsWithoutDefaultValue, DataGridPropsWithDefaultValues, DataGridPropsWithComplexDefaultValueAfterProcessing, DataGridPropsWithComplexDefaultValueBeforeProcessing, GridPinnedColumnFields } from '@mui/x-data-grid/internals';
import { GridExperimentalFeatures, DataGridPropsWithoutDefaultValue, DataGridPropsWithDefaultValues, DataGridPropsWithComplexDefaultValueAfterProcessing, DataGridPropsWithComplexDefaultValueBeforeProcessing, GridPinnedColumnFields, DataGridProSharedPropsWithDefaultValue } from '@mui/x-data-grid/internals';
import type { GridPinnedRowsProp } from '../hooks/features/rowPinning';

@@ -37,3 +37,3 @@ import { GridApiPro } from './gridApiPro';

*/
export interface DataGridProPropsWithDefaultValue<R extends GridValidRowModel = any> extends DataGridPropsWithDefaultValues<R> {
export interface DataGridProPropsWithDefaultValue<R extends GridValidRowModel = any> extends DataGridPropsWithDefaultValues<R>, DataGridProSharedPropsWithDefaultValue {
/**

@@ -102,7 +102,2 @@ * Set the area in `px` at the bottom of the grid viewport where onRowsScrollEnd is called.

keepColumnPositionIfDraggedOutside: boolean;
/**
* If `true`, enables the data grid filtering on header feature.
* @default false
*/
headerFilters: boolean;
}

@@ -109,0 +104,0 @@ export interface DataGridProPropsWithoutDefaultValue<R extends GridValidRowModel = any> extends Omit<DataGridPropsWithoutDefaultValue<R>, 'initialState' | 'componentsProps' | 'slotProps'> {

/**
* @mui/x-data-grid-pro v7.1.0
* @mui/x-data-grid-pro v7.1.1
*

@@ -4,0 +4,0 @@ * @license MUI X Commercial

@@ -1,2 +0,2 @@

import { propValidatorsDataGrid } from '@mui/x-data-grid/internals';
export const propValidatorsDataGridPro = [...propValidatorsDataGrid, props => props.pagination && props.hideFooterRowCount && 'MUI X: The `hideFooterRowCount` prop has no effect when the pagination is enabled.' || undefined, props => props.treeData && props.filterMode === 'server' && 'MUI X: The `filterMode="server"` prop is not available when the `treeData` is enabled.' || undefined, props => !props.pagination && props.checkboxSelectionVisibleOnly && 'MUI X: The `checkboxSelectionVisibleOnly` prop has no effect when the pagination is not enabled.' || undefined];
import { GridSignature, isNumber, propValidatorsDataGrid } from '@mui/x-data-grid/internals';
export const propValidatorsDataGridPro = [...propValidatorsDataGrid, props => props.pagination && props.hideFooterRowCount && 'MUI X: The `hideFooterRowCount` prop has no effect when the pagination is enabled.' || undefined, props => props.treeData && props.filterMode === 'server' && 'MUI X: The `filterMode="server"` prop is not available when the `treeData` is enabled.' || undefined, props => !props.pagination && props.checkboxSelectionVisibleOnly && 'MUI X: The `checkboxSelectionVisibleOnly` prop has no effect when the pagination is not enabled.' || undefined, props => props.signature !== GridSignature.DataGrid && props.paginationMode === 'client' && props.rowsLoadingMode !== 'server' && isNumber(props.rowCount) && 'MUI X: Usage of the `rowCount` prop with client side pagination (`paginationMode="client"`) has no effect. `rowCount` is only meant to be used with `paginationMode="server"`.' || undefined];
import { ponyfillGlobal } from '@mui/utils';
export const getReleaseInfo = () => {
const releaseInfo = "MTcxMTU4MDQwMDAwMA==";
const releaseInfo = "MTcxMjI2NDQwMDAwMA==";
if (process.env.NODE_ENV !== 'production') {

@@ -5,0 +5,0 @@ // A simple hack to set the value in the test environment (has no build step).

{
"name": "@mui/x-data-grid-pro",
"version": "7.1.0",
"description": "The Pro plan edition of the data grid component (MUI X).",
"version": "7.1.1",
"description": "The Pro plan edition of the Data Grid components (MUI X).",
"author": "MUI Team",

@@ -38,4 +38,4 @@ "main": "./index.js",

"@mui/utils": "^5.15.14",
"@mui/x-data-grid": "7.1.0",
"@mui/x-license": "7.0.0",
"@mui/x-data-grid": "7.1.1",
"@mui/x-license": "7.1.1",
"@types/format-util": "^1.0.4",

@@ -42,0 +42,0 @@ "clsx": "^2.1.0",

# MUI X Data Grid Pro
This package is the Pro plan edition of the data grid component.
This package is the Pro plan edition of the Data Grid component.
It's part of [MUI X](https://mui.com/x/), an open-core extension of MUI Core, with advanced components.

@@ -5,0 +5,0 @@

@@ -9,3 +9,3 @@ "use strict";

const getReleaseInfo = () => {
const releaseInfo = "MTcxMTU4MDQwMDAwMA==";
const releaseInfo = "MTcxMjI2NDQwMDAwMA==";
if (process.env.NODE_ENV !== 'production') {

@@ -12,0 +12,0 @@ // A simple hack to set the value in the test environment (has no build step).

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc