Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[data grid] Improve vertical scrolling performance #11924

Merged
merged 7 commits into from
Feb 8, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
add ignore tag
  • Loading branch information
cherniavskii committed Feb 8, 2024
commit 35ff0de049e4744b348efaf3244f333691c7cf2b
2 changes: 1 addition & 1 deletion docs/pages/x/api/data-grid/data-grid-premium.json
Original file line number Diff line number Diff line change
Expand Up @@ -785,7 +785,7 @@
{
"key": "cellOffsetLeft",
"className": "MuiDataGridPremium-cellOffsetLeft",
"description": "Styles applied to the left offset cell element.",
"description": "",
"isGlobal": false
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/x/api/data-grid/data-grid-pro.json
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,7 @@
{
"key": "cellOffsetLeft",
"className": "MuiDataGridPro-cellOffsetLeft",
"description": "Styles applied to the left offset cell element.",
"description": "",
"isGlobal": false
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/x/api/data-grid/data-grid.json
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@
{
"key": "cellOffsetLeft",
"className": "MuiDataGrid-cellOffsetLeft",
"description": "Styles applied to the left offset cell element.",
"description": "",
"isGlobal": false
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -763,10 +763,7 @@
"description": "Styles applied to {{nodeName}}.",
"nodeName": "the empty cell element"
},
"cellOffsetLeft": {
"description": "Styles applied to {{nodeName}}.",
"nodeName": "the left offset cell element"
},
"cellOffsetLeft": { "description": "" },
"cellSkeleton": {
"description": "Styles applied to {{nodeName}}.",
"nodeName": "the skeleton cell element"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -705,10 +705,7 @@
"description": "Styles applied to {{nodeName}}.",
"nodeName": "the empty cell element"
},
"cellOffsetLeft": {
"description": "Styles applied to {{nodeName}}.",
"nodeName": "the left offset cell element"
},
"cellOffsetLeft": { "description": "" },
"cellSkeleton": {
"description": "Styles applied to {{nodeName}}.",
"nodeName": "the skeleton cell element"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -571,10 +571,7 @@
"description": "Styles applied to {{nodeName}}.",
"nodeName": "the empty cell element"
},
"cellOffsetLeft": {
"description": "Styles applied to {{nodeName}}.",
"nodeName": "the left offset cell element"
},
"cellOffsetLeft": { "description": "" },
"cellSkeleton": {
"description": "Styles applied to {{nodeName}}.",
"nodeName": "the skeleton cell element"
Expand Down
1 change: 1 addition & 0 deletions packages/x-data-grid/src/constants/gridClasses.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ export interface GridClasses {
*/
cellSkeleton: string;
/**
* @ignore - do not document.
* Styles applied to the left offset cell element.
*/
cellOffsetLeft: string;
Expand Down
Loading