@parasutcom/fds 0.1.31 → 0.1.33

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.ts CHANGED
@@ -989,6 +989,31 @@ export declare function RadioGroup({ className, ...props }: RadioGroup_2.Props):
989
989
 
990
990
  export declare function RadioGroupItem({ className, ...props }: Radio.Root.Props): JSX.Element;
991
991
 
992
+ /**
993
+ * Reusable search input with icon and clear button
994
+ */
995
+ export declare function SearchInput({ value, onChange, placeholder, disabled, className, showClearButton, variant, }: SearchInputProps): JSX.Element;
996
+
997
+ /**
998
+ * Search input props
999
+ */
1000
+ export declare interface SearchInputProps {
1001
+ /** Current search value */
1002
+ value: string;
1003
+ /** Callback when value changes */
1004
+ onChange: (value: string) => void;
1005
+ /** Placeholder text */
1006
+ placeholder?: string;
1007
+ /** Disabled state */
1008
+ disabled?: boolean;
1009
+ /** Additional CSS classes */
1010
+ className?: string;
1011
+ /** Show clear button when value exists */
1012
+ showClearButton?: boolean;
1013
+ /** Position variant (affects border radius for toolbar connection) */
1014
+ variant?: 'default' | 'connected-left' | 'connected-right';
1015
+ }
1016
+
992
1017
  export declare const Select: typeof Select_2.Root;
993
1018
 
994
1019
  export declare function SelectContent({ className, children, side, sideOffset, align, alignOffset, alignItemWithTrigger, ...props }: Select_2.Popup.Props & Pick<Select_2.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset" | "alignItemWithTrigger">): JSX.Element;