@jsenv/navi 0.27.75 → 0.27.76
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 +4 -1
- package/dist/jsenv_navi.js.map +6 -4
- package/package.json +1 -1
package/dist/jsenv_navi.js
CHANGED
|
@@ -40532,6 +40532,7 @@ const ListItemHeader = props => {
|
|
|
40532
40532
|
}, []);
|
|
40533
40533
|
return jsx(Next, {
|
|
40534
40534
|
...props,
|
|
40535
|
+
header: undefined,
|
|
40535
40536
|
role: "presentation",
|
|
40536
40537
|
baseClassName: "navi_list_item_header"
|
|
40537
40538
|
});
|
|
@@ -40549,6 +40550,7 @@ const ListItemFooter = props => {
|
|
|
40549
40550
|
}, []);
|
|
40550
40551
|
return jsx(Next, {
|
|
40551
40552
|
...props,
|
|
40553
|
+
footer: undefined,
|
|
40552
40554
|
role: "presentation",
|
|
40553
40555
|
baseClassName: "navi_list_item_footer"
|
|
40554
40556
|
});
|
|
@@ -41879,7 +41881,8 @@ const LIST_STYLE_CSS_VARS = {
|
|
|
41879
41881
|
maxWidth: "--list-max-width",
|
|
41880
41882
|
borderColor: "--list-border-color",
|
|
41881
41883
|
borderRadius: "--list-border-radius",
|
|
41882
|
-
borderWidth: "--list-border-width"
|
|
41884
|
+
borderWidth: "--list-border-width",
|
|
41885
|
+
backgroundColor: "--list-background-color"
|
|
41883
41886
|
};
|
|
41884
41887
|
const LIST_PSEUDO_CLASSES = [":hover", ":focus", ":focus-visible", ":focus-within", ":read-only", ":disabled", ":-navi-void", ":-navi-expanded"];
|
|
41885
41888
|
const useListScrollSync = ({
|