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

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/index.esm.js CHANGED
@@ -7856,7 +7856,7 @@ var components = {
7856
7856
  height: 16
7857
7857
  },
7858
7858
  sizeMedium: {
7859
- height: 22
7859
+ height: 20
7860
7860
  },
7861
7861
  avatarMedium: {
7862
7862
  height: 18,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sinco/react",
3
- "version": "1.2.2-rc.5",
3
+ "version": "1.2.2-rc.6",
4
4
  "description": "package for the configuration of mui react sinco",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -2,8 +2,7 @@ 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;
6
5
  compact?: boolean;
7
6
  sx?: SxProps;
8
7
  }
9
- export declare const AdjuntarArchivo: ({ compact, sx, controlArchivo, controlCarga }: AdjuntarProps) => React.JSX.Element;
8
+ export declare const AdjuntarArchivo: ({ compact, sx, controlArchivo }: AdjuntarProps) => React.JSX.Element;