-
-
Notifications
You must be signed in to change notification settings - Fork 152
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
release v1.0.0 - Initial Stable Release!
- Loading branch information
1 parent
9a355d7
commit 01591e4
Showing
32 changed files
with
495 additions
and
279 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
56 changes: 56 additions & 0 deletions
56
apps/mantine-react-table-docs/components/mdx/BlogAuthor.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,56 @@ | ||
import Image from 'next/image'; | ||
import { Box, Anchor, Stack, Title, Text } from '@mantine/core'; | ||
|
||
interface Props { | ||
author?: string; | ||
authorImage?: string; | ||
authorLink?: string; | ||
publishDate: string; | ||
} | ||
|
||
export const BlogAuthor = ({ | ||
author = 'Kevin Van Cott', | ||
authorImage = '/contributors/kevinvancott.jpg', | ||
authorLink = 'https://www.kevinvancott.dev', | ||
publishDate, | ||
}: Props) => { | ||
return ( | ||
<Stack> | ||
<Box | ||
sx={{ | ||
display: 'grid', | ||
gridTemplateColumns: 'auto 50px', | ||
gap: '1rem', | ||
justifyContent: 'flex-start', | ||
alignItems: 'center', | ||
}} | ||
> | ||
<Text fz="14pt"> | ||
By{' '} | ||
<Anchor | ||
color="text.primary" | ||
sx={{ | ||
textDecoration: 'none', | ||
'&:hover': { textDecoration: 'underline' }, | ||
}} | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
href={authorLink} | ||
> | ||
{author} | ||
</Anchor> | ||
</Text> | ||
<Image | ||
alt="author" | ||
src={authorImage} | ||
width={30} | ||
height={30} | ||
style={{ borderRadius: '50%' }} | ||
/> | ||
</Box> | ||
<Text color="gray"> | ||
Published: <i>{new Date(publishDate).toLocaleDateString()}</i> | ||
</Text> | ||
</Stack> | ||
); | ||
}; |
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
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
2 changes: 1 addition & 1 deletion
2
apps/mantine-react-table-docs/examples/enable-column-pinning/sandbox/src/JS.js
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
2 changes: 1 addition & 1 deletion
2
apps/mantine-react-table-docs/examples/enable-sticky-header/sandbox/src/JS.js
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
2 changes: 1 addition & 1 deletion
2
apps/mantine-react-table-docs/examples/localization-i18n-nl/sandbox/src/JS.js
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import Head from 'next/head'; | ||
import { TableOfContentsList } from '../../components/navigation/TableOfContentsList'; | ||
import { routes } from '../../components/navigation/routes'; | ||
|
||
<Head> | ||
<title>Mantine React Table Blog</title> | ||
<meta name="description" content="Mantine React Table Blog Posts" /> | ||
</Head> | ||
|
||
## Blog | ||
|
||
<TableOfContentsList | ||
items={routes.find((item) => item.href === '/blog').items} | ||
/> |
Oops, something went wrong.
01591e4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
mantine-react-table-storybook – ./
mantine-react-table-storybook-kevinvandy.vercel.app
www.mantine-react-table.dev
mantine-react-table.dev
mantine-react-table-storybook-git-main-kevinvandy.vercel.app
mantine-react-table-storybook.vercel.app
01591e4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
mantine-react-table – ./apps/mantine-react-table-docs
www.mantine-react-table.com
mantine-react-table.com
mantine-react-table.vercel.app
mantine-react-table-git-main-kevinvandy-s-team.vercel.app
mantine-react-table-kevinvandy-s-team.vercel.app