File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
apps/mantine-react-table-docs Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ const EditingCRUD = ({ isPage = false }) => {
3434 < Tabs . Tab value = "editing-crud-inline-table" >
3535 Inline Table (All Rows Editable)
3636 </ Tabs . Tab >
37- < Link href = "/docs/editing-crud-tree" >
37+ < Link href = "/docs/examples/ editing-crud-tree" >
3838 < Tabs . Tab value = "editing-crud-tree" > Tree Editing</ Tabs . Tab >
3939 </ Link >
4040 < Link href = "/docs/examples" >
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import MinimalExample from '../examples/minimal';
66import AdvancedExample from '../examples/advanced' ;
77import AggregationAndGroupingExample from '../examples/aggregation-and-grouping' ;
88import CustomHeadlessExample from '../examples/custom-headless' ;
9+ import ExpandingTreeExample from '../examples/editing-crud-tree' ;
910
1011const ExpandingExamples = ( { isPage = false } ) => {
1112 const { pathname, push } = useRouter ( ) ;
@@ -28,6 +29,7 @@ const ExpandingExamples = ({ isPage = false }) => {
2829 < Tabs . Tab value = "aggregation-and-grouping" > Aggregation</ Tabs . Tab >
2930 < Tabs . Tab value = "detail-panel" > Detail Panel</ Tabs . Tab >
3031 < Tabs . Tab value = "chart-detail-panel" > Chart Detail Panel</ Tabs . Tab >
32+ < Tabs . Tab value = "expanding-tree" > Expanding Tree</ Tabs . Tab >
3133 </ Tabs . List >
3234 < Tabs . Panel value = "column-grouping" >
3335 < ExampleGrouping showTopRow = { isPage } />
@@ -44,6 +46,9 @@ const ExpandingExamples = ({ isPage = false }) => {
4446 < Tabs . Panel value = "chart-detail-panel" >
4547 < CustomHeadlessExample showTopRow = { isPage } />
4648 </ Tabs . Panel >
49+ < Tabs . Panel value = "expanding-tree" >
50+ < ExpandingTreeExample showTopRow = { isPage } />
51+ </ Tabs . Panel >
4752 </ Tabs >
4853 </ Box >
4954 ) ;
Original file line number Diff line number Diff line change @@ -23,6 +23,4 @@ Mantine React Table supports showing rows in a expanding tree structure. This ex
2323
2424Learn more about how to customize this in the [ expanding sub-rows feature guide] ( /docs/guides/expanding-sub-rows ) .
2525
26- <Examples isPage />
27-
28- View Extra Storybook ** [ Examples] ( https://www.mantine-react-table.dev/?path=/story/features-aggregation-examples ) **
26+ <Examples isPage />
You can’t perform that action at this time.
0 commit comments