-
-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: css modules runtime error * fix: docs type error * fix: code snippet import order * fix: text color for feature table * fix: codehighlight passing wrong prop * fix: removed warning about mantine v7 * fix: weird hack
- Loading branch information
1 parent
3e36a47
commit cf9f538
Showing
15 changed files
with
209 additions
and
148 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
apps/mantine-react-table-docs/components/mdx/PopularDocs.module.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.container { | ||
display: grid; | ||
grid-template-columns: 1fr 1fr 1fr 1fr; | ||
gap: 0.9rem; | ||
@media (max-width: 1024px) { | ||
grid-template-columns: 1fr 1fr; | ||
} | ||
} |
51 changes: 51 additions & 0 deletions
51
apps/mantine-react-table-docs/components/mdx/PopularDocs.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import { Box, Button } from '@mantine/core'; | ||
import Link from 'next/link'; | ||
|
||
import classes from './PopularDocs.module.css'; | ||
|
||
export const PopularDocs = () => { | ||
return ( | ||
<Box className={classes.container}> | ||
<Link href="/docs/getting-started/usage"> | ||
<Button size="xl" fullWidth variant="gradient"> | ||
Usage | ||
</Button> | ||
</Link> | ||
<Link href="/docs/api/table-options"> | ||
<Button size="xl" fullWidth variant="gradient"> | ||
Table Options | ||
</Button> | ||
</Link> | ||
<Link href="/docs/examples/editing-crud"> | ||
<Button size="xl" fullWidth variant="gradient"> | ||
CRUD Examples | ||
</Button> | ||
</Link> | ||
<Link href="/docs/examples/react-query"> | ||
<Button size="xl" fullWidth variant="gradient"> | ||
Fetching Examples | ||
</Button> | ||
</Link> | ||
<Link href="/docs/guides/localization"> | ||
<Button size="xl" fullWidth variant="gradient"> | ||
Localization | ||
</Button> | ||
</Link> | ||
<Link href="/docs/guides/data-columns"> | ||
<Button size="xl" fullWidth variant="gradient"> | ||
Create Columns | ||
</Button> | ||
</Link> | ||
<Link href="/docs/guides/column-filtering"> | ||
<Button size="xl" fullWidth variant="gradient"> | ||
Column Filtering | ||
</Button> | ||
</Link> | ||
<Link href="/docs/guides/row-selection"> | ||
<Button size="xl" fullWidth variant="gradient"> | ||
Row Selection | ||
</Button> | ||
</Link> | ||
</Box> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.