@clidey/ux 0.37.0 → 0.39.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.
Files changed (3) hide show
  1. package/dist/index.d.ts +5 -1
  2. package/dist/index.js +1519 -1482
  3. package/package.json +55 -55
package/dist/index.d.ts CHANGED
@@ -300,7 +300,11 @@ declare interface IconProps extends React_2.HTMLAttributes<HTMLSpanElement> {
300
300
  size?: number;
301
301
  }
302
302
 
303
- export declare function Input({ className, type, ...props }: React_2.ComponentProps<"input">): JSX.Element;
303
+ export declare function Input({ className, type, showPasswordToggle, ...props }: InputProps): JSX.Element;
304
+
305
+ declare interface InputProps extends React_2.ComponentProps<"input"> {
306
+ showPasswordToggle?: boolean;
307
+ }
304
308
 
305
309
  export declare function Label({ className, ...props }: React_2.ComponentProps<typeof LabelPrimitive.Root>): JSX.Element;
306
310