@jsenv/navi 0.11.19 → 0.11.20
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.
- package/dist/jsenv_navi.js +2 -2
- package/dist/jsenv_navi.js.map +4 -4
- package/package.json +1 -1
package/dist/jsenv_navi.js
CHANGED
|
@@ -11766,7 +11766,7 @@ const LinkPlain = forwardRef((props, ref) => {
|
|
|
11766
11766
|
blankTargetIcon,
|
|
11767
11767
|
anchorIcon,
|
|
11768
11768
|
icon,
|
|
11769
|
-
|
|
11769
|
+
cursorDefaultWhenCurrent,
|
|
11770
11770
|
...rest
|
|
11771
11771
|
} = props;
|
|
11772
11772
|
const innerRef = useRef();
|
|
@@ -11786,7 +11786,7 @@ const LinkPlain = forwardRef((props, ref) => {
|
|
|
11786
11786
|
const innerClassName = withPropsClassName("navi_link", className);
|
|
11787
11787
|
const [remainingProps, innerStyle] = withPropsStyle(rest, {
|
|
11788
11788
|
base: {
|
|
11789
|
-
cursor:
|
|
11789
|
+
cursor: cursorDefaultWhenCurrent && targetIsCurrent ? "default" : undefined
|
|
11790
11790
|
},
|
|
11791
11791
|
layout: true,
|
|
11792
11792
|
typo: true
|