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: Fix broken links (#486) #487

Open
wants to merge 3 commits into
base: v2
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
12 changes: 6 additions & 6 deletions apps/mantine-react-table-docs/pages/docs/api/mrt-components.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ In previous versions of `mantine-react-table`, you only had the option to use th

### \<MantineReactTable /\>

[View Source Code on GitHub](https://github.com/KevinVandy/mantine-react-table/blob/v2/packages/mantine-react-table/src/MantineReactTable.tsx)
[View Source Code on GitHub](https://github.com/KevinVandy/mantine-react-table/blob/v2/packages/mantine-react-table/src/components/MantineReactTable.tsx)

For most use cases, you will probably just use the default `<MantineReactTable />` component.

Expand Down Expand Up @@ -66,7 +66,7 @@ Mantine React Table now exports all of its internal components. You can use them

#### Table Components

[View Table Components Source Code on GitHub](https://github.com/KevinVandy/mantine-react-table/tree/v2/packages/mantine-react-table/src/table)
[View Table Components Source Code on GitHub](https://github.com/KevinVandy/mantine-react-table/tree/v2/packages/mantine-react-table/src/components/table)

##### \<MRT_TablePaper /\>

Expand All @@ -88,7 +88,7 @@ Be aware that using this deep of a component, you will lose out on row virtualiz

#### TableHead Components

[View TableHead Components Source Code on GitHub](https://github.com/KevinVandy/mantine-react-table/tree/v2/packages/mantine-react-table/src/head)
[View TableHead Components Source Code on GitHub](https://github.com/KevinVandy/mantine-react-table/tree/v2/packages/mantine-react-table/src/components/head)

##### \<MRT_TableHead /\>

Expand Down Expand Up @@ -128,7 +128,7 @@ The Filter Container that contains the filter input and filter actions

#### TableBody Components

[View TableBody Components Source Code on GitHub](https://github.com/KevinVandy/mantine-react-table/tree/v2/packages/mantine-react-table/src/body)
[View TableBody Components Source Code on GitHub](https://github.com/KevinVandy/mantine-react-table/tree/v2/packages/mantine-react-table/src/components/body)

##### \<MRT_TableBody /\>

Expand Down Expand Up @@ -160,7 +160,7 @@ A button or buttons for pinning a row.

#### TableFooter Components

[View TableFooter Components Source Code on GitHub](https://github.com/KevinVandy/mantine-react-table/tree/v2/packages/mantine-react-table/src/footer)
[View TableFooter Components Source Code on GitHub](https://github.com/KevinVandy/mantine-react-table/tree/v2/packages/mantine-react-table/src/components/footer)

##### \<MRT_TableFooter /\>

Expand All @@ -176,7 +176,7 @@ The `<MRT_TableFooterCell />` is a `<td>` element that surrounds the cell value

#### Input Components

[View Input Components Source Code on GitHub](https://github.com/KevinVandy/mantine-react-table/tree/v2/packages/mantine-react-table/src/inputs)
[View Input Components Source Code on GitHub](https://github.com/KevinVandy/mantine-react-table/tree/v2/packages/mantine-react-table/src/components/inputs)

##### \<MRT_EditCellTextField /\>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ By default, Mantine React Table uses a `fuzzy` filtering algorithm based on the

##### Pre-built MRT Filter Functions

> Pre-built filter functions from Mantine React Table include `between`, `betweenInclusive`, `contains`, `empty`, `endsWith`, `equals`, `fuzzy`, `greaterThan`, `greaterThanOrEqualTo`, `lessThan`, `lessThanOrEqualTo`, `notEmpty`, `notEquals`, and `startsWith`. View these algorithms [here](https://github.com/KevinVandy/mantine-react-table/blob/v2/packages/mantine-react-table/src/filterFns.ts)
> Pre-built filter functions from Mantine React Table include `between`, `betweenInclusive`, `contains`, `empty`, `endsWith`, `equals`, `fuzzy`, `greaterThan`, `greaterThanOrEqualTo`, `lessThan`, `lessThanOrEqualTo`, `notEmpty`, `notEquals`, and `startsWith`. View these algorithms [here](https://github.com/KevinVandy/mantine-react-table/blob/v2/packages/mantine-react-table/src/fns/filterFns.ts)

##### Pre-built TanStack Table Filter Functions

Expand Down