@reeverdev/ui 0.2.110 → 0.2.112

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.d.cts CHANGED
@@ -2058,8 +2058,8 @@ interface AutocompleteProps extends Omit<React$1.InputHTMLAttributes<HTMLInputEl
2058
2058
  loadingText?: string;
2059
2059
  /** Whether to show clear button */
2060
2060
  clearable?: boolean;
2061
- /** Whether free text is allowed (not just selections) */
2062
- freeSolo?: boolean;
2061
+ /** Whether custom values are allowed (not just selections from the list) */
2062
+ allowCustomValue?: boolean;
2063
2063
  /** Max height of dropdown */
2064
2064
  maxHeight?: number;
2065
2065
  /** Whether to highlight matching text */
@@ -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
- /** Hide labels, show only icons */
4016
- hideLabels?: boolean;
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
@@ -2058,8 +2058,8 @@ interface AutocompleteProps extends Omit<React$1.InputHTMLAttributes<HTMLInputEl
2058
2058
  loadingText?: string;
2059
2059
  /** Whether to show clear button */
2060
2060
  clearable?: boolean;
2061
- /** Whether free text is allowed (not just selections) */
2062
- freeSolo?: boolean;
2061
+ /** Whether custom values are allowed (not just selections from the list) */
2062
+ allowCustomValue?: boolean;
2063
2063
  /** Max height of dropdown */
2064
2064
  maxHeight?: number;
2065
2065
  /** Whether to highlight matching text */
@@ -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
- /** Hide labels, show only icons */
4016
- hideLabels?: boolean;
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
  }