xladmin 0.3.1 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +4 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1277,7 +1277,10 @@ function NavLink({ href, children, style, title, onClick, router }) {
1277
1277
  "a",
1278
1278
  {
1279
1279
  href,
1280
- style,
1280
+ style: {
1281
+ color: "inherit",
1282
+ ...style
1283
+ },
1281
1284
  title,
1282
1285
  onClick: (event) => handleNavLinkClick(event, { href, onClick, router: resolvedRouter }),
1283
1286
  children
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xladmin",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Framework-agnostic React + MUI admin frontend for xladmin.",
5
5
  "license": "MIT",
6
6
  "type": "module",