@clidey/ux 0.34.0 → 0.35.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 +2 -1
- package/dist/index.js +606 -605
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -359,7 +359,7 @@ export declare function ScrollBar({ className, orientation, ...props }: React_2.
|
|
|
359
359
|
|
|
360
360
|
export declare function SearchInput({ className, ...props }: React_2.ComponentProps<"input">): JSX.Element;
|
|
361
361
|
|
|
362
|
-
export declare function SearchSelect({ options, placeholder, searchPlaceholder, value, defaultValue, onChange, onValueChange, notFoundMessage, buttonClassName, contentClassName, disabled, extraOptions, side, align, onlyIcon, label, inputProps, buttonProps, }: SearchSelectProps): JSX.Element;
|
|
362
|
+
export declare function SearchSelect({ options, placeholder, searchPlaceholder, value, defaultValue, onChange, onValueChange, notFoundMessage, buttonClassName, contentClassName, disabled, extraOptions, side, align, onlyIcon, label, inputProps, buttonProps, rightIcon, }: SearchSelectProps): JSX.Element;
|
|
363
363
|
|
|
364
364
|
declare type SearchSelectOption = {
|
|
365
365
|
value: string;
|
|
@@ -387,6 +387,7 @@ declare type SearchSelectProps = {
|
|
|
387
387
|
label?: string;
|
|
388
388
|
inputProps?: React_2.ComponentProps<typeof CommandInput>;
|
|
389
389
|
buttonProps?: React_2.ComponentProps<typeof Button>;
|
|
390
|
+
rightIcon?: React_2.ReactNode;
|
|
390
391
|
};
|
|
391
392
|
|
|
392
393
|
export declare function Select({ ...props }: React_2.ComponentProps<typeof SelectPrimitive.Root>): JSX.Element;
|