@sinco/react 1.2.2-rc.4 → 1.2.2-rc.5

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sinco/react",
3
- "version": "1.2.2-rc.4",
3
+ "version": "1.2.2-rc.5",
4
4
  "description": "package for the configuration of mui react sinco",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -2,7 +2,8 @@ import React from "react";
2
2
  import { SxProps } from "@mui/material";
3
3
  export interface AdjuntarProps {
4
4
  controlArchivo: (archivos: File[]) => any;
5
+ controlCarga: (progress: number, error?: string) => any;
5
6
  compact?: boolean;
6
7
  sx?: SxProps;
7
8
  }
8
- export declare const AdjuntarArchivo: ({ compact, sx, controlArchivo }: AdjuntarProps) => React.JSX.Element;
9
+ export declare const AdjuntarArchivo: ({ compact, sx, controlArchivo, controlCarga }: AdjuntarProps) => React.JSX.Element;