@ambuj.bhaskar/react-component-library 0.30.11 → 0.30.13

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
@@ -943,6 +943,25 @@ declare type FeatureType = {
943
943
  id?: string | number;
944
944
  };
945
945
 
946
+ export declare const FileUpload: default_2.FC<FileUploadProps>;
947
+
948
+ export declare type FileUploadProps = {
949
+ accept?: string[];
950
+ maxSize?: number;
951
+ maxCount?: number;
952
+ multiple?: boolean;
953
+ disabled?: boolean;
954
+ className?: string;
955
+ backgroundColor?: string;
956
+ borderColor?: string;
957
+ textColor?: string;
958
+ width?: string | number;
959
+ height?: string | number;
960
+ onUpload?: (file: File) => void;
961
+ onRemove?: (file: any) => void;
962
+ onError?: (error: string) => void;
963
+ };
964
+
946
965
  export declare const FloorMapView: React.FC<FloorMapViewProps>;
947
966
 
948
967
  export declare type FloorMapViewProps = {