@jsenv/navi 0.12.33 → 0.12.36
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 +7 -2
- package/dist/jsenv_navi.js.map +5 -5
- package/package.json +1 -1
package/dist/jsenv_navi.js
CHANGED
|
@@ -15197,6 +15197,10 @@ installImportMetaCss(import.meta);import.meta.css = /* css */`
|
|
|
15197
15197
|
outline-color: var(--link-outline-color);
|
|
15198
15198
|
cursor: var(--x-link-cursor);
|
|
15199
15199
|
|
|
15200
|
+
/* Current */
|
|
15201
|
+
&[data-href-current] {
|
|
15202
|
+
--x-link-cursor: default;
|
|
15203
|
+
}
|
|
15200
15204
|
/* Hover */
|
|
15201
15205
|
&[data-hover] {
|
|
15202
15206
|
--x-link-color: var(--x-link-color-hover);
|
|
@@ -15826,8 +15830,9 @@ const TabRoute = ({
|
|
|
15826
15830
|
...props,
|
|
15827
15831
|
children: jsx(RouteLink, {
|
|
15828
15832
|
route: route,
|
|
15829
|
-
|
|
15830
|
-
|
|
15833
|
+
expand: true,
|
|
15834
|
+
discrete: true,
|
|
15835
|
+
align: "center",
|
|
15831
15836
|
children: children
|
|
15832
15837
|
})
|
|
15833
15838
|
});
|