Skip to content

Commit 0f9b805

Browse files
authored
Merge pull request #180 from icflorescu/next
Release 7.15.3
2 parents 4337db6 + a2a0b0c commit 0f9b805

File tree

4 files changed

+234
-212
lines changed

4 files changed

+234
-212
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
The following is a list of notable changes to the Mantine ContextMenu component.
44
Minor versions that are not listed in the changelog are minor bug fixes and small internal improvements or refactorings.
55

6+
## 7.15.3 (2025-01-08)
7+
8+
- Update dev dependencies to ensure compatibility with Mantine 7.15.3.
9+
- Remove unnecessary menu overlay CSS background-color property
10+
611
## 7.15.1 (2024-12-20)
712

813
- Update dev dependencies to ensure compatibility with Mantine 7.15.1 and Next.js 15 GA.

package.json

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mantine-contextmenu",
3-
"version": "7.15.1",
3+
"version": "7.15.3",
44
"description": "Craft your applications for productivity and meet your users’ expectations by enhancing your Mantine-based UIs with a desktop-grade, lightweight yet fully-featured, dark-theme aware context-menu component, built by the creator of Mantine DataTable",
55
"keywords": [
66
"ui",
@@ -72,24 +72,24 @@
7272
"format": "prettier --write ."
7373
},
7474
"devDependencies": {
75-
"@mantine/code-highlight": "^7.15.1",
76-
"@mantine/core": "^7.15.1",
77-
"@mantine/hooks": "^7.15.1",
78-
"@mantine/notifications": "^7.15.1",
79-
"@tabler/icons-react": "^3.26.0",
80-
"@types/lodash": "^4.17.13",
81-
"@types/node": "^22.10.2",
82-
"@types/react": "^19.0.2",
75+
"@mantine/code-highlight": "^7.15.3",
76+
"@mantine/core": "^7.15.3",
77+
"@mantine/hooks": "^7.15.3",
78+
"@mantine/notifications": "^7.15.3",
79+
"@tabler/icons-react": "^3.28.1",
80+
"@types/lodash": "^4.17.14",
81+
"@types/node": "^22.10.5",
82+
"@types/react": "^19.0.3",
8383
"@types/react-dom": "^19.0.2",
84-
"@typescript-eslint/eslint-plugin": "^8.18.1",
85-
"@typescript-eslint/parser": "^8.18.1",
84+
"@typescript-eslint/eslint-plugin": "^8.19.1",
85+
"@typescript-eslint/parser": "^8.19.1",
8686
"clsx": "^2.1.1",
8787
"cssnano": "^7.0.6",
8888
"eslint": "^8",
89-
"eslint-config-next": "^15.1.2",
89+
"eslint-config-next": "^15.1.4",
9090
"eslint-config-prettier": "^9.1.0",
9191
"lodash": "^4.17.21",
92-
"next": "^15.1.2",
92+
"next": "^15.1.4",
9393
"postcss": "^8.4.49",
9494
"postcss-cli": "^11.0.0",
9595
"postcss-import": "^16.1.0",
@@ -99,7 +99,7 @@
9999
"react": "^19.0.0",
100100
"react-dom": "^19.0.0",
101101
"sharp": "^0.33.5",
102-
"swr": "^2.2.5",
102+
"swr": "^2.3.0",
103103
"tsup": "^8.3.5",
104104
"typescript": "^5.7.2"
105105
},

package/ContextMenuOverlay.css

-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@
44
left: 0;
55
width: 100%;
66
height: 100%;
7-
background-color: transparent;
87
}

0 commit comments

Comments
 (0)