@reeverdev/ui 0.2.34 → 0.2.35
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 +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -617,7 +617,9 @@ interface ComboboxProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "on
|
|
|
617
617
|
onValueChange?: (value: string) => void;
|
|
618
618
|
/** Placeholder text when no selection */
|
|
619
619
|
placeholder?: string;
|
|
620
|
-
/**
|
|
620
|
+
/** Enable search/filter functionality */
|
|
621
|
+
searchable?: boolean;
|
|
622
|
+
/** Search placeholder (only when searchable) */
|
|
621
623
|
searchPlaceholder?: string;
|
|
622
624
|
/** Empty state text */
|
|
623
625
|
emptyText?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -617,7 +617,9 @@ interface ComboboxProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "on
|
|
|
617
617
|
onValueChange?: (value: string) => void;
|
|
618
618
|
/** Placeholder text when no selection */
|
|
619
619
|
placeholder?: string;
|
|
620
|
-
/**
|
|
620
|
+
/** Enable search/filter functionality */
|
|
621
|
+
searchable?: boolean;
|
|
622
|
+
/** Search placeholder (only when searchable) */
|
|
621
623
|
searchPlaceholder?: string;
|
|
622
624
|
/** Empty state text */
|
|
623
625
|
emptyText?: string;
|