@jsenv/navi 0.14.4 → 0.14.5
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 +33 -32
- package/dist/jsenv_navi.js.map +3 -3
- package/package.json +1 -1
package/dist/jsenv_navi.js
CHANGED
|
@@ -16823,7 +16823,8 @@ import.meta.css = /* css */`
|
|
|
16823
16823
|
display: flex;
|
|
16824
16824
|
width: 100%;
|
|
16825
16825
|
margin: 0;
|
|
16826
|
-
padding: 2px; /* space for
|
|
16826
|
+
padding-right: 2px; /* space for eventual outline overflow */
|
|
16827
|
+
padding-left: 2px; /* space for eventual outline overflow */
|
|
16827
16828
|
align-items: center;
|
|
16828
16829
|
gap: 0.5rem;
|
|
16829
16830
|
list-style: none;
|
|
@@ -16908,18 +16909,37 @@ import.meta.css = /* css */`
|
|
|
16908
16909
|
overflow-x: hidden;
|
|
16909
16910
|
overflow-y: auto;
|
|
16910
16911
|
|
|
16911
|
-
|
|
16912
|
-
|
|
16913
|
-
|
|
16914
|
-
|
|
16915
|
-
|
|
16916
|
-
}
|
|
16912
|
+
> ul {
|
|
16913
|
+
padding-top: 2px; /* space for eventual outline overflow */
|
|
16914
|
+
padding-bottom: 2px; /* space for eventual outline overflow */
|
|
16915
|
+
flex-direction: column;
|
|
16916
|
+
align-items: start;
|
|
16917
16917
|
|
|
16918
|
-
|
|
16919
|
-
|
|
16920
|
-
|
|
16921
|
-
.
|
|
16922
|
-
|
|
16918
|
+
> li {
|
|
16919
|
+
width: 100%;
|
|
16920
|
+
|
|
16921
|
+
.navi_tab {
|
|
16922
|
+
flex-direction: row;
|
|
16923
|
+
text-align: left;
|
|
16924
|
+
|
|
16925
|
+
.navi_tab_indicator {
|
|
16926
|
+
width: var(--tab-indicator-size);
|
|
16927
|
+
height: 100%;
|
|
16928
|
+
}
|
|
16929
|
+
|
|
16930
|
+
> .navi_text,
|
|
16931
|
+
.navi_link,
|
|
16932
|
+
.navi_text_bold_foreground {
|
|
16933
|
+
justify-content: start;
|
|
16934
|
+
}
|
|
16935
|
+
|
|
16936
|
+
&[data-align-x="end"] {
|
|
16937
|
+
> .navi_text,
|
|
16938
|
+
.navi_link,
|
|
16939
|
+
.navi_text_bold_foreground {
|
|
16940
|
+
justify-content: end;
|
|
16941
|
+
}
|
|
16942
|
+
}
|
|
16923
16943
|
}
|
|
16924
16944
|
}
|
|
16925
16945
|
}
|
|
@@ -16947,25 +16967,6 @@ import.meta.css = /* css */`
|
|
|
16947
16967
|
}
|
|
16948
16968
|
}
|
|
16949
16969
|
}
|
|
16950
|
-
|
|
16951
|
-
> ul {
|
|
16952
|
-
flex-direction: column;
|
|
16953
|
-
align-items: start;
|
|
16954
|
-
|
|
16955
|
-
> li {
|
|
16956
|
-
width: 100%;
|
|
16957
|
-
|
|
16958
|
-
.navi_tab {
|
|
16959
|
-
flex-direction: row;
|
|
16960
|
-
text-align: left;
|
|
16961
|
-
|
|
16962
|
-
.navi_tab_indicator {
|
|
16963
|
-
width: var(--tab-indicator-size);
|
|
16964
|
-
height: 100%;
|
|
16965
|
-
}
|
|
16966
|
-
}
|
|
16967
|
-
}
|
|
16968
|
-
}
|
|
16969
16970
|
}
|
|
16970
16971
|
|
|
16971
16972
|
&[data-expand] {
|
|
@@ -17080,7 +17081,7 @@ const TabRoute = ({
|
|
|
17080
17081
|
const selected = active && paramsAreMatching;
|
|
17081
17082
|
return jsx(TabBasic, {
|
|
17082
17083
|
selected: selected,
|
|
17083
|
-
paddingX:
|
|
17084
|
+
paddingX: undefined,
|
|
17084
17085
|
alignX: alignX,
|
|
17085
17086
|
alignY: alignY,
|
|
17086
17087
|
...props,
|