@jsenv/navi 0.14.21 → 0.14.23
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 +9 -1
- package/dist/jsenv_navi.js.map +7 -6
- package/package.json +1 -1
package/dist/jsenv_navi.js
CHANGED
|
@@ -14686,6 +14686,7 @@ installImportMetaCss(import.meta);import.meta.css = /* css */`
|
|
|
14686
14686
|
}
|
|
14687
14687
|
&[data-icon-char] {
|
|
14688
14688
|
flex-grow: 0 !important;
|
|
14689
|
+
line-height: normal;
|
|
14689
14690
|
}
|
|
14690
14691
|
}
|
|
14691
14692
|
|
|
@@ -16111,6 +16112,7 @@ installImportMetaCss(import.meta);import.meta.css = /* css */`
|
|
|
16111
16112
|
|
|
16112
16113
|
position: relative;
|
|
16113
16114
|
box-sizing: border-box;
|
|
16115
|
+
aspect-ratio: inherit;
|
|
16114
16116
|
padding: 0;
|
|
16115
16117
|
vertical-align: middle;
|
|
16116
16118
|
background: none;
|
|
@@ -16127,6 +16129,7 @@ installImportMetaCss(import.meta);import.meta.css = /* css */`
|
|
|
16127
16129
|
position: relative;
|
|
16128
16130
|
display: inherit;
|
|
16129
16131
|
box-sizing: border-box;
|
|
16132
|
+
aspect-ratio: inherit;
|
|
16130
16133
|
width: 100%;
|
|
16131
16134
|
height: 100%;
|
|
16132
16135
|
padding-top: var(
|
|
@@ -16717,6 +16720,7 @@ installImportMetaCss(import.meta);import.meta.css = /* css */`
|
|
|
16717
16720
|
--x-link-cursor: var(--link-cursor);
|
|
16718
16721
|
|
|
16719
16722
|
position: relative;
|
|
16723
|
+
aspect-ratio: inherit;
|
|
16720
16724
|
color: var(--x-link-color);
|
|
16721
16725
|
text-decoration: var(--x-link-text-decoration);
|
|
16722
16726
|
border-radius: var(--link-border-radius);
|
|
@@ -17466,10 +17470,11 @@ const Tab = props => {
|
|
|
17466
17470
|
};
|
|
17467
17471
|
TabList.Tab = Tab;
|
|
17468
17472
|
const TabRoute = ({
|
|
17473
|
+
circle,
|
|
17469
17474
|
route,
|
|
17470
17475
|
routeParams,
|
|
17471
17476
|
children,
|
|
17472
|
-
padding,
|
|
17477
|
+
padding = 2,
|
|
17473
17478
|
paddingX,
|
|
17474
17479
|
paddingY,
|
|
17475
17480
|
alignX,
|
|
@@ -17484,10 +17489,13 @@ const TabRoute = ({
|
|
|
17484
17489
|
return jsx(TabBasic, {
|
|
17485
17490
|
selected: selected,
|
|
17486
17491
|
...props,
|
|
17492
|
+
circle: circle,
|
|
17493
|
+
padding: "0",
|
|
17487
17494
|
alignX: alignX,
|
|
17488
17495
|
alignY: alignY,
|
|
17489
17496
|
children: jsx(RouteLink, {
|
|
17490
17497
|
box: true,
|
|
17498
|
+
circle: circle,
|
|
17491
17499
|
route: route,
|
|
17492
17500
|
routeParams: routeParams,
|
|
17493
17501
|
expand: true,
|