@clidey/ux 0.21.3 → 0.22.0
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 +3 -1
- package/dist/index.js +529 -525
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -284,12 +284,13 @@ export declare function ScrollArea({ className, children, ...props }: React_2.Co
|
|
|
284
284
|
|
|
285
285
|
export declare function SearchInput({ className, ...props }: React_2.ComponentProps<"input">): JSX.Element;
|
|
286
286
|
|
|
287
|
-
export declare function SearchSelect({ options, placeholder, searchPlaceholder, value, onChange, buttonClassName, contentClassName, disabled, extraOptions, side, align, onlyIcon, label, inputProps, }: SearchSelectProps): JSX.Element;
|
|
287
|
+
export declare function SearchSelect({ options, placeholder, searchPlaceholder, value, onChange, buttonClassName, contentClassName, disabled, extraOptions, side, align, onlyIcon, label, inputProps, buttonProps, }: SearchSelectProps): JSX.Element;
|
|
288
288
|
|
|
289
289
|
declare type SearchSelectOption = {
|
|
290
290
|
value: string;
|
|
291
291
|
label: string;
|
|
292
292
|
icon?: React_2.ReactNode;
|
|
293
|
+
rightIcon?: React_2.ReactNode;
|
|
293
294
|
};
|
|
294
295
|
|
|
295
296
|
declare type SearchSelectProps = {
|
|
@@ -307,6 +308,7 @@ declare type SearchSelectProps = {
|
|
|
307
308
|
onlyIcon?: boolean;
|
|
308
309
|
label?: string;
|
|
309
310
|
inputProps?: React_2.ComponentProps<typeof CommandInput>;
|
|
311
|
+
buttonProps?: React_2.ComponentProps<typeof Button>;
|
|
310
312
|
};
|
|
311
313
|
|
|
312
314
|
export declare function Select({ ...props }: React_2.ComponentProps<typeof SelectPrimitive.Root>): JSX.Element;
|