pillardash-ui-react 0.1.59 → 0.1.61

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
@@ -64,6 +64,20 @@ declare const CheckBox: ({ variant, size, checked, disabled, onChange, label, la
64
64
  interface FileUploadProps {
65
65
  onFileChange: (file: File | null) => void;
66
66
  direction?: "row" | "col";
67
+ maxFileSize?: string;
68
+ label?: string;
69
+ description?: string;
70
+ helperText?: string;
71
+ error?: string;
72
+ success?: string;
73
+ disabled?: boolean;
74
+ required?: boolean;
75
+ accept?: string;
76
+ multiple?: boolean;
77
+ placeholder?: string;
78
+ showProgress?: boolean;
79
+ className?: string;
80
+ id?: string;
67
81
  }
68
82
  declare const FileUpload: React$1.FC<FileUploadProps>;
69
83
 
@@ -86,9 +100,9 @@ interface InputProps extends Omit<InputHTMLAttributes<HTMLInputElement> & Textar
86
100
  declare const Input: React$1.FC<InputProps>;
87
101
 
88
102
  interface InputWithPrefixProps extends Omit<InputHTMLAttributes<HTMLInputElement> & TextareaHTMLAttributes<HTMLTextAreaElement>, "onChange" | "size" | "prefix"> {
89
- id: string;
103
+ id?: string;
90
104
  value: string;
91
- onChange?: (value: React$1.ChangeEvent<HTMLInputElement | HTMLTextAreaElement>) => void;
105
+ onChange?: (value: React$1.ChangeEvent<HTMLInputElement>) => void;
92
106
  placeholder?: string;
93
107
  error?: string;
94
108
  label?: string;