pillardash-ui-react 0.1.84 → 0.1.87

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
@@ -91,7 +91,7 @@ declare const RadioGroup: ({ name, value, onChange, options, size, className, er
91
91
  declare function CheckBoxDemo(): react_jsx_runtime.JSX.Element;
92
92
 
93
93
  interface FileUploadProps {
94
- onFileChange: (file: File | null) => void;
94
+ onFileChange: (files: File[] | null) => void;
95
95
  direction?: "row" | "col";
96
96
  maxFileSize?: string;
97
97
  label?: string;
@@ -125,6 +125,7 @@ interface InputProps extends Omit<InputHTMLAttributes<HTMLInputElement> & Textar
125
125
  rightIcon?: React$1.ReactNode;
126
126
  className?: string;
127
127
  size?: "sm" | "md" | "lg";
128
+ block?: boolean;
128
129
  }
129
130
  declare const Input: React$1.FC<InputProps>;
130
131