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

[docs] Split Rows doc page #5195

Merged
merged 29 commits into from
Jul 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
5c87b59
[docs] Split row doc page
flaviendelangle Jun 14, 2022
44f0e1b
Work
flaviendelangle Jun 14, 2022
481d3d7
Merge branch 'master' into row-doc-split
flaviendelangle Jun 14, 2022
d74944c
Merge branch 'master' into row-doc-split
flaviendelangle Jun 16, 2022
8cf7e83
Work
flaviendelangle Jun 16, 2022
c2486d2
Merge'
flaviendelangle Jun 21, 2022
6bfa81b
Update docs/data/data-grid/row-ordering/row-ordering.md
flaviendelangle Jul 5, 2022
d5e136d
Update docs/data/data-grid/row-ordering/row-ordering.md
flaviendelangle Jul 5, 2022
c0bd17e
Update docs/data/data-grid/row-ordering/row-ordering.md
flaviendelangle Jul 5, 2022
c9be283
Update docs/data/data-grid/row-pinning/row-pinning.md
flaviendelangle Jul 5, 2022
811ca63
Update docs/data/data-grid/row-spanning/row-spanning.md
flaviendelangle Jul 5, 2022
6d282e2
Update docs/data/data-grid/row-dimensions/row-dimensions.md
flaviendelangle Jul 5, 2022
968ff51
Update docs/data/data-grid/row-dimensions/row-dimensions.md
flaviendelangle Jul 5, 2022
787b8dc
Update docs/data/data-grid/row-dimensions/row-dimensions.md
flaviendelangle Jul 5, 2022
dc7847f
Prettier
flaviendelangle Jul 5, 2022
06a0b77
Merge
flaviendelangle Jul 18, 2022
cd892cf
Merge branch 'master' into row-doc-split
cherniavskii Jul 28, 2022
1969030
disable ads for pro features docs
cherniavskii Jul 28, 2022
e3c2b09
simplify scopePathnames
cherniavskii Jul 28, 2022
6d4ce13
move master detail up in the navbar
cherniavskii Jul 28, 2022
29d7f9f
rename row-dimensions page
cherniavskii Jul 28, 2022
783fbd2
remove rows page
cherniavskii Jul 28, 2022
db4f80f
add WIP sections for row grouping and tree data
cherniavskii Jul 28, 2022
f29a70b
empty
cherniavskii Jul 28, 2022
3f1a180
add redirect for /rows/ page
cherniavskii Jul 28, 2022
143a6c9
add missing header
cherniavskii Jul 28, 2022
0f24bb7
update links in the changelog
cherniavskii Jul 28, 2022
f77f4d1
remove unused url properties
cherniavskii Jul 28, 2022
ca150d4
update links to old /rows/ page
cherniavskii Jul 28, 2022
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
10 changes: 5 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ _May 31, 2022_

We'd like to offer a big thanks to the 15 contributors who made this release possible. Here are some highlights ✨:

- 🎁 Introduce support for [dynamic row height](https://mui.com/x/react-data-grid/rows/#dynamic-row-height) (#4859) @m4theushw
- 🎁 Introduce support for [dynamic row height](https://mui.com/x/react-data-grid/row-height/#dynamic-row-height) (#4859) @m4theushw

<img src="https://user-images.githubusercontent.com/42154031/171183167-718d7bcd-ec0f-459e-97fe-0f650abb4a99.gif" width="800">

Expand Down Expand Up @@ -623,7 +623,7 @@ _Apr 25, 2022_

We'd like to offer a big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:

- 🎁 Introduce [Row reorder](https://mui.com/x/react-data-grid/rows/#row-reorder) (#4034) @DanailH
- 🎁 Introduce [Row reorder](https://mui.com/x/react-data-grid/row-ordering/) (#4034) @DanailH

<img src="https://user-images.githubusercontent.com/5858539/165091263-23472fbb-a989-44b8-849a-d2185adfe13b.gif" width="800">

Expand Down Expand Up @@ -887,7 +887,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
<DataGrid getRowSpacing={() => ({ top: 10, bottom: 10 })} />
```

Check the [documentation](https://mui.com/x/react-data-grid/rows/#row-spacing) for more information.
Check the [documentation](https://mui.com/x/react-data-grid/row-height/#row-spacing) for more information.

### `@mui/x-data-grid@v5.6.1` / `@mui/x-data-grid-pro@v5.6.1`

Expand Down Expand Up @@ -1141,7 +1141,7 @@ _Jan 28, 2022_

A big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:

- 🚣 Introduce [variable row height](https://mui.com/x/react-data-grid/rows/#variable-row-height) (#438) @DanailH
- 🚣 Introduce [variable row height](https://mui.com/x/react-data-grid/row-height/#variable-row-height) (#438) @DanailH

Allows for setting a row-specific height.
By default, all rows have the same height, but now you can set the height on a per-row basis.
Expand Down Expand Up @@ -3793,7 +3793,7 @@ Big thanks to the 7 contributors who made this release possible. Here are some h
- 🎁 Add `onRowsScrollEnd` to support infinite loading (#1199) @DanailH
This is an XGrid feature. Provides the ability to tap into the `onRowsScrollEnd` which is called when the scroll reaches the bottom of the grid viewport allowing developers to load additional data. It can be used with a combination of `scrollBottomThreshold` to control the area in which the `onRowsScrollEnd` is called.

See the documentation for [more details](https://mui.com/x/react-data-grid/rows/#infinite-loading).
See the documentation for [more details](https://mui.com/x/react-data-grid/row-updates/#infinite-loading).

- 🕹 Provide the ability to sort by multiple columns using Shift+click (#1203) @dtassone
- 🇵🇱 Added pl-PL locale (#1117) @LarsKumbier
Expand Down
36 changes: 0 additions & 36 deletions docs/data/data-grid/export/ExcelCustomExport.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,252 +5,216 @@ const rows = [
{
id: 1,
path: ['Column', 'Column groups'],
url: '/components/data-grid/columns/#column-groups',
plan: 'Community',
developed: false,
},
{
id: 2,
path: ['Column', 'Column spanning'],
url: '/components/data-grid/columns/#column-spanning',
plan: 'Community',
developed: false,
},
{
id: 3,
path: ['Column', 'Column resizing'],
url: '/components/data-grid/columns/#column-resizing',
plan: 'Pro',
developed: true,
},
{
id: 4,
path: ['Column', 'Column reorder'],
url: '/components/data-grid/columns/#column-reorder',
plan: 'Pro',
developed: true,
},
{
id: 5,
path: ['Column', 'Column pinning'],
url: '/components/data-grid/columns/#column-pinning',
plan: 'Pro',
developed: true,
},
{
id: 6,
path: ['Row', 'Row sorting'],
url: '/components/data-grid/rows/#row-sorting',
plan: 'Community',
developed: true,
},
{
id: 7,
path: ['Row', 'Row height'],
url: '/components/data-grid/rows/#row-height',
plan: 'Community',
developed: true,
},
{
id: 8,
path: ['Row', 'Row spanning'],
url: '/components/data-grid/rows/#row-spanning',
plan: 'Community',
developed: false,
},
{
id: 9,
path: ['Row', 'Row reordering'],
url: '/components/data-grid/rows/#row-reorder',
plan: 'Pro',
developed: false,
},
{
id: 10,
path: ['Row', 'Row pinning'],
url: '/components/data-grid/rows/#row-pinning',
plan: 'Pro',
developed: false,
},
{
id: 11,
path: ['Selection', 'Single row selection'],
url: '/components/data-grid/selection/#single-row-selection',
plan: 'Community',
developed: true,
},
{
id: 12,
path: ['Selection', 'Checkbox selection'],
url: '/components/data-grid/selection/#checkbox-selection',
plan: 'Community',
developed: true,
},
{
id: 13,
path: ['Selection', 'Multiple row selection'],
url: '/components/data-grid/selection/#multiple-row-selection',
plan: 'Pro',
developed: true,
},
{
id: 14,
path: ['Selection', 'Cell range selection'],
url: '/components/data-grid/selection/#range-selection',
plan: 'Premium',
developed: false,
},
{
id: 15,
path: ['Filtering', 'Quick filter'],
url: '/components/data-grid/filtering/#quick-filter',
plan: 'Community',
developed: false,
},
{
id: 16,
path: ['Filtering', 'Column filters'],
url: '/components/data-grid/filtering/#column-filters',
plan: 'Community',
developed: true,
},
{
id: 17,
path: ['Filtering', 'Multi-column filtering'],
url: '/components/data-grid/filtering/#single-and-multi-filtering',
plan: 'Pro',
developed: true,
},
{
id: 18,
path: ['Pagination', 'Pagination'],
url: '/components/data-grid/pagination/)',
plan: 'Community',
developed: true,
},
{
id: 19,
path: ['Pagination', 'Pagination > 100 rows per page'],
url: '/components/data-grid/pagination/#paginate-gt-100-rows',
plan: 'Pro',
developed: true,
},
{
id: 20,
path: ['Editing', 'Row editing'],
url: '/components/data-grid/editing/#row-editing',
plan: 'Community',
developed: true,
},
{
id: 21,
path: ['Editing', 'Cell editing'],
url: '/components/data-grid/editing/#cell-editing',
plan: 'Community',
developed: true,
},
{
id: 22,
path: ['Import & export', 'CSV export'],
url: '/components/data-grid/export/#csv-export',
plan: 'Community',
developed: true,
},
{
id: 23,
path: ['Import & export', 'Print'],
url: '/components/data-grid/export/#print',
plan: 'Community',
developed: true,
},
{
id: 24,
path: ['Import & export', 'Clipboard'],
url: '/components/data-grid/export/#clipboard',
plan: 'Pro',
developed: false,
},
{
id: 25,
path: ['Import & export', 'Excel export'],
url: '/components/data-grid/export/#excel-export',
plan: 'Premium',
developed: true,
},
{
id: 26,
path: ['Rendering', 'Customizable components'],
url: '/components/data-grid/components/)',
plan: 'Community',
developed: true,
},
{
id: 27,
path: ['Rendering', 'Column virtualization'],
url: '/components/data-grid/virtualization/#column-virtualization',
plan: 'Community',
developed: true,
},
{
id: 28,
path: ['Rendering', 'Row virtualization > 100 rows'],
url: '/components/data-grid/virtualization/#row-virtualization',
plan: 'Pro',
developed: true,
},
{
id: 29,
path: ['Group & Pivot', 'Tree data'],
url: '/components/data-grid/group-pivot/#tree-data',
plan: 'Pro',
developed: true,
},
{
id: 30,
path: ['Group & Pivot', 'Master detail'],
url: '/components/data-grid/group-pivot/#master-detail',
plan: 'Pro',
developed: false,
},
{
id: 31,
path: ['Group & Pivot', 'Grouping'],
url: '/components/data-grid/group-pivot/#grouping',
plan: 'Premium',
developed: true,
},
{
id: 32,
path: ['Group & Pivot', 'Aggregation'],
url: '/components/data-grid/group-pivot/#aggregation',
plan: 'Premium',
developed: false,
},
{
id: 33,
path: ['Group & Pivot', 'Pivoting'],
url: '/components/data-grid/group-pivot/#pivoting',
plan: 'Premium',
developed: false,
},
{
id: 34,
path: ['Misc', 'Accessibility'],
url: '/components/data-grid/accessibility/)',
plan: 'Community',
developed: true,
},
{
id: 35,
path: ['Misc', 'Keyboard navigation'],
url: '/components/data-grid/accessibility/#keyboard-navigation',
plan: 'Community',
developed: true,
},
{
id: 36,
path: ['Misc', 'Localization'],
url: '/components/data-grid/localization/)',
plan: 'Community',
developed: true,
},
Expand Down
Loading