Skip to content

Commit da65561

Browse files
authored
Merge pull request #723 from icflorescu/next
Release 8.1.1
2 parents 29b5095 + ae2e49a commit da65561

File tree

6 files changed

+175
-149
lines changed

6 files changed

+175
-149
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
The following is a list of notable changes to the Mantine DataTable component.
44
Minor versions that are not listed in the changelog are bug fixes and small improvements.
55

6+
## 8.1.0 (2025-03-16)
7+
8+
- Update dependencies to ensure compatibility with Mantine 8.1.1
9+
610
## 8.1.0 (2025-03-11)
711

812
- Update dependencies to ensure compatibility with Mantine 8.1 and Next.js 15.3

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The [lightweight](https://bundlephobia.com/package/mantine-datatable), dependenc
1414

1515
[![Mantine DataTable](https://user-images.githubusercontent.com/581999/294180790-93289cec-4d73-47b5-988f-8c93dd3443fe.png)](https://icflorescu.github.io/mantine-datatable/)
1616

17-
**⚠️ Mantine DataTable V7+ is compatible with Mantine V7+.**
17+
**⚠️ Mantine DataTable V8.x is compatible with Mantine V8.x.**
1818
**💡 If you're looking for the old version that works with [Mantine V6](https://v6.mantine.dev), head over to [Mantine DataTable V6](https://icflorescu.github.io/mantine-datatable-v6).**
1919

2020
## Features

app/(home)/HomePageSubtitle.tsx

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
import { Group, Stack, Text } from '@mantine/core';
22
import { IconArrowDown, IconDiscountCheck, IconExternalLink, IconInfoCircle } from '@tabler/icons-react';
33
import clsx from 'clsx';
4-
import { MANTINE_LINK, V6_WEBSITE_LINK } from '~/app/config';
4+
import {
5+
MANTINE_CONTEXTMENU_LINK,
6+
MANTINE_CONTEXTMENU_PRODUCT_NAME,
7+
MANTINE_LINK,
8+
V6_WEBSITE_LINK,
9+
} from '~/app/config';
510
import { ExternalLink } from '~/components/ExternalLink';
611
import classes from './HomePageSubtitle.module.css';
712
import { PackageUsersAnchor } from './PackageUsersAnchor';
@@ -19,12 +24,21 @@ export function HomePageSubtitle() {
1924
</PackageUsersAnchor>
2025
</Text>
2126
</Group>
27+
<Group gap={8} align="flex-start" wrap="nowrap">
28+
<IconDiscountCheck className={clsx(classes.leftIcon, classes.iconTrust)} />
29+
<Text size="sm">
30+
built by the creator of{' '}
31+
<ExternalLink className="nowrap" to={MANTINE_CONTEXTMENU_LINK}>
32+
{MANTINE_CONTEXTMENU_PRODUCT_NAME} <IconExternalLink className={classes.linkIcon} />
33+
</ExternalLink>
34+
</Text>
35+
</Group>
2236
<Group gap={8} align="flex-start" wrap="nowrap">
2337
<IconDiscountCheck className={clsx(classes.leftIcon, classes.iconCompat)} />
2438
<Text size="sm">
2539
compatible with{' '}
2640
<ExternalLink className="nowrap" to={MANTINE_LINK}>
27-
Mantine V8.1 <IconExternalLink className={classes.linkIcon} />
41+
Mantine V8.x <IconExternalLink className={classes.linkIcon} />
2842
</ExternalLink>
2943
</Text>
3044
</Group>

components/VersionBadge.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ export function VersionBadge() {
2828
<IconAlertSquareRoundedFilled />
2929
</Box>
3030
<br />
31-
This version works with Mantine V8.1
31+
This version works with Mantine V8.x
3232
<br />
33-
(and probably V7).
33+
(and probably V7.x).
3434
<br />
3535
<br />
3636
If you’re still using <ExternalLink to="https://v6.mantine.dev">Mantine V6</ExternalLink>, check the old

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mantine-datatable",
3-
"version": "8.1.0",
3+
"version": "8.1.1",
44
"description": "The lightweight, dependency-free, dark-theme aware table component for your Mantine UI data-rich applications, featuring asynchronous data loading support, pagination, intuitive Gmail-style additive batch rows selection, column sorting, custom cell data rendering, row expansion, nesting, context menus, and much more",
55
"keywords": [
66
"mantine",
@@ -77,28 +77,28 @@
7777
"@faker-js/faker": "^9.8.0",
7878
"@formkit/auto-animate": "^0.8.2",
7979
"@hello-pangea/dnd": "^18.0.1",
80-
"@mantine/code-highlight": "^8.1.0",
81-
"@mantine/core": "^8.1.0",
82-
"@mantine/dates": "^8.1.0",
83-
"@mantine/hooks": "^8.1.0",
84-
"@mantine/modals": "^8.1.0",
85-
"@mantine/notifications": "^8.1.0",
80+
"@mantine/code-highlight": "^8.1.1",
81+
"@mantine/core": "^8.1.1",
82+
"@mantine/dates": "^8.1.1",
83+
"@mantine/hooks": "^8.1.1",
84+
"@mantine/modals": "^8.1.1",
85+
"@mantine/notifications": "^8.1.1",
8686
"@tabler/icons-react": "^3.34.0",
8787
"@tanstack/react-query": "^5.80.7",
8888
"@types/lodash": "^4.17.17",
89-
"@types/node": "^24.0.1",
89+
"@types/node": "^24.0.3",
9090
"@types/react": "^19.1.8",
9191
"@types/react-dom": "^19.1.6",
9292
"@typescript-eslint/eslint-plugin": "^8.34.0",
9393
"@typescript-eslint/parser": "^8.34.0",
9494
"clsx": "^2.1.1",
9595
"cssnano": "^7.0.7",
9696
"dayjs": "^1.11.13",
97-
"eslint": "^9.28.0",
97+
"eslint": "^9.29.0",
9898
"eslint-config-next": "^15.3.3",
9999
"eslint-config-prettier": "^10.1.5",
100100
"lodash": "^4.17.21",
101-
"mantine-contextmenu": "^8.1.1",
101+
"mantine-contextmenu": "^8.1.2",
102102
"next": "^15.3.3",
103103
"postcss": "^8.5.5",
104104
"postcss-cli": "^11.0.1",

0 commit comments

Comments
 (0)