@reeverdev/ui 0.2.111 → 0.2.113
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/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -4
- package/dist/index.d.ts +2 -4
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -4012,10 +4012,8 @@ interface BottomNavigationProps extends React$1.HTMLAttributes<HTMLDivElement>,
|
|
|
4012
4012
|
defaultValue?: string;
|
|
4013
4013
|
/** Callback when active item changes */
|
|
4014
4014
|
onValueChange?: (value: string) => void;
|
|
4015
|
-
/**
|
|
4016
|
-
|
|
4017
|
-
/** Show labels only for active item */
|
|
4018
|
-
showActiveLabel?: boolean;
|
|
4015
|
+
/** Control label visibility: "all" shows all labels, "active" shows only active label, "none" hides all labels */
|
|
4016
|
+
showLabels?: "all" | "active" | "none";
|
|
4019
4017
|
/** Custom render for navigation item */
|
|
4020
4018
|
renderItem?: (item: BottomNavigationItem, isActive: boolean) => React$1.ReactNode;
|
|
4021
4019
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -4012,10 +4012,8 @@ interface BottomNavigationProps extends React$1.HTMLAttributes<HTMLDivElement>,
|
|
|
4012
4012
|
defaultValue?: string;
|
|
4013
4013
|
/** Callback when active item changes */
|
|
4014
4014
|
onValueChange?: (value: string) => void;
|
|
4015
|
-
/**
|
|
4016
|
-
|
|
4017
|
-
/** Show labels only for active item */
|
|
4018
|
-
showActiveLabel?: boolean;
|
|
4015
|
+
/** Control label visibility: "all" shows all labels, "active" shows only active label, "none" hides all labels */
|
|
4016
|
+
showLabels?: "all" | "active" | "none";
|
|
4019
4017
|
/** Custom render for navigation item */
|
|
4020
4018
|
renderItem?: (item: BottomNavigationItem, isActive: boolean) => React$1.ReactNode;
|
|
4021
4019
|
}
|