next-helios-fe 1.6.26 → 1.6.28

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.
@@ -5,6 +5,7 @@ export interface EmailProps extends React.InputHTMLAttributes<HTMLInputElement>
5
5
  options?: {
6
6
  width?: "full" | "fit";
7
7
  height?: "short" | "medium" | "high";
8
+ hideInputDetail?: boolean;
8
9
  };
9
10
  }
10
11
  export declare const Email: React.FC<EmailProps>;
@@ -9,6 +9,7 @@ export interface FileProps extends React.InputHTMLAttributes<HTMLInputElement> {
9
9
  buttonOnly?: boolean;
10
10
  width?: "full" | "fit";
11
11
  height?: "short" | "medium" | "high";
12
+ hideInputDetail?: boolean;
12
13
  };
13
14
  defaultValue?: any[];
14
15
  value?: any[];
@@ -5,6 +5,7 @@ export interface NumberProps extends React.InputHTMLAttributes<HTMLInputElement>
5
5
  options?: {
6
6
  width?: "full" | "fit";
7
7
  height?: "short" | "medium" | "high";
8
+ hideInputDetail?: boolean;
8
9
  };
9
10
  }
10
11
  export declare const Number: React.FC<NumberProps>;
@@ -5,6 +5,7 @@ export interface PasswordProps extends React.InputHTMLAttributes<HTMLInputElemen
5
5
  options?: {
6
6
  width?: "full" | "fit";
7
7
  height?: "short" | "medium" | "high";
8
+ hideInputDetail?: boolean;
8
9
  };
9
10
  }
10
11
  export declare const Password: React.FC<PasswordProps>;
@@ -5,6 +5,7 @@ export interface RangeProps extends React.InputHTMLAttributes<HTMLInputElement>
5
5
  theme?: string;
6
6
  options?: {
7
7
  width?: "full" | "fit";
8
+ hideInputDetail?: boolean;
8
9
  };
9
10
  }
10
11
  export declare const Range: React.FC<RangeProps>;
@@ -5,6 +5,7 @@ export interface TextProps extends React.InputHTMLAttributes<HTMLInputElement> {
5
5
  options?: {
6
6
  width?: "full" | "fit";
7
7
  height?: "short" | "medium" | "high";
8
+ hideInputDetail?: boolean;
8
9
  };
9
10
  }
10
11
  export declare const Text: React.FC<TextProps>;
@@ -5,6 +5,7 @@ export interface TextareaProps extends React.TextareaHTMLAttributes<HTMLTextArea
5
5
  options?: {
6
6
  width?: "full" | "fit";
7
7
  height?: "short" | "medium" | "high";
8
+ hideInputDetail?: boolean;
8
9
  };
9
10
  }
10
11
  export declare const Textarea: React.FC<TextareaProps>;