dt-shared-front 2.2.115 → 2.2.117

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.
@@ -70,4 +70,4 @@ export declare const Input: React.ForwardRefExoticComponent<{
70
70
  onChange?: (value: string, event: ChangeEvent<HTMLInputElement>) => void;
71
71
  onSearch?: ((val: string) => void) | ((val: string) => Promise<void>);
72
72
  valueTransformer?: (value: string) => string;
73
- } & Omit<React.InputHTMLAttributes<HTMLInputElement>, "variant" | "size" | "onChange"> & React.RefAttributes<HTMLInputElement>>;
73
+ } & Omit<React.InputHTMLAttributes<HTMLInputElement>, "onChange" | "size" | "variant"> & React.RefAttributes<HTMLInputElement>>;
@@ -8,7 +8,7 @@ declare const _default: {
8
8
  className?: string;
9
9
  onChange?: (value: boolean) => void;
10
10
  disabled?: boolean;
11
- size?: "small" | "medium" | "large";
11
+ size?: "small" | "large" | "medium";
12
12
  }) => React.JSX.Element;
13
13
  };
14
14
  export default _default;
@@ -14,7 +14,8 @@ export declare enum ETextSize {
14
14
  export declare enum ETextWeight {
15
15
  bold = "bold",
16
16
  semibold = "semibold",
17
- normal = "normal"
17
+ normal = "normal",
18
+ thin = "thin"
18
19
  }
19
20
  export declare enum ETextVariant {
20
21
  default = "default",
@@ -28,4 +28,4 @@ export declare const TextArea: React.ForwardRefExoticComponent<{
28
28
  onClear?: () => void;
29
29
  onSearch?: (e: any) => void;
30
30
  onChange?: (value: string, event?: ChangeEvent<HTMLTextAreaElement>) => void;
31
- } & Omit<React.TextareaHTMLAttributes<HTMLTextAreaElement>, "variant" | "size" | "onChange"> & React.RefAttributes<HTMLTextAreaElement>>;
31
+ } & Omit<React.TextareaHTMLAttributes<HTMLTextAreaElement>, "onChange" | "size" | "variant"> & React.RefAttributes<HTMLTextAreaElement>>;