globalfy-design-system 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.
@@ -22,4 +22,5 @@ export declare const Playground: Story;
22
22
  export declare const Disabled: Story;
23
23
  export declare const WithMessage: Story;
24
24
  export declare const WithIcon: Story;
25
+ export declare const Password: () => import("react/jsx-runtime").JSX.Element;
25
26
  export declare const States: () => import("react/jsx-runtime").JSX.Element;
@@ -11,3 +11,4 @@ export type InputProps = {
11
11
  isDatePicker?: boolean;
12
12
  iconAction?: () => void;
13
13
  } & Omit<React.InputHTMLAttributes<HTMLInputElement>, "size" | "defaultValue" | "color" | "onFocus" | "onBlur">;
14
+ export type InputPasswordProps = Omit<InputProps, "icon" | "type" | "isDatePicker">;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { InputPasswordProps } from ".";
3
+ export declare const InputPassword: import("react").ForwardRefExoticComponent<InputPasswordProps & import("react").RefAttributes<HTMLInputElement>>;
@@ -1,2 +1,3 @@
1
1
  export * from "./Input";
2
+ export * from "./InputPassword";
2
3
  export * from "./Input.types";