@clidey/ux 0.33.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 CHANGED
@@ -12,6 +12,7 @@ import { JSX } from 'react/jsx-runtime';
12
12
  import * as LabelPrimitive from '@radix-ui/react-label';
13
13
  import { LucideIcon } from 'lucide-react';
14
14
  import * as PopoverPrimitive from '@radix-ui/react-popover';
15
+ import * as ProgressPrimitive from '@radix-ui/react-progress';
15
16
  import * as React_2 from 'react';
16
17
  import * as RechartsPrimitive from 'recharts';
17
18
  import * as ResizablePrimitive from 'react-resizable-panels';
@@ -342,6 +343,8 @@ export declare function PopoverContent({ className, align, sideOffset, ...props
342
343
 
343
344
  export declare function PopoverTrigger({ ...props }: React_2.ComponentProps<typeof PopoverPrimitive.Trigger>): JSX.Element;
344
345
 
346
+ export declare function Progress({ className, value, ...props }: React_2.ComponentProps<typeof ProgressPrimitive.Root>): JSX.Element;
347
+
345
348
  export declare function ResizableHandle({ withHandle, className, ...props }: React_2.ComponentProps<typeof ResizablePrimitive.PanelResizeHandle> & {
346
349
  withHandle?: boolean;
347
350
  }): JSX.Element;
@@ -356,7 +359,7 @@ export declare function ScrollBar({ className, orientation, ...props }: React_2.
356
359
 
357
360
  export declare function SearchInput({ className, ...props }: React_2.ComponentProps<"input">): JSX.Element;
358
361
 
359
- 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;
360
363
 
361
364
  declare type SearchSelectOption = {
362
365
  value: string;
@@ -384,6 +387,7 @@ declare type SearchSelectProps = {
384
387
  label?: string;
385
388
  inputProps?: React_2.ComponentProps<typeof CommandInput>;
386
389
  buttonProps?: React_2.ComponentProps<typeof Button>;
390
+ rightIcon?: React_2.ReactNode;
387
391
  };
388
392
 
389
393
  export declare function Select({ ...props }: React_2.ComponentProps<typeof SelectPrimitive.Root>): JSX.Element;