@sinco/react 1.2.3-rc.0 → 1.2.3-rc.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sinco/react",
3
- "version": "1.2.3-rc.0",
3
+ "version": "1.2.3-rc.12",
4
4
  "description": "package for the configuration of mui react sinco",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -2,6 +2,7 @@ import React from "react";
2
2
  export interface MultiSelectProps {
3
3
  topPanel?: React.ReactNode;
4
4
  acciones?: React.ReactNode;
5
+ contenido?: React.ReactNode;
5
6
  anchorEl: HTMLElement | null;
6
7
  dense?: boolean;
7
8
  open: boolean;
@@ -10,4 +11,4 @@ export interface MultiSelectProps {
10
11
  filterFunction: (items: any[], filtroTexto: string) => any[];
11
12
  getItemLabel: (item: any) => string;
12
13
  }
13
- export declare const MultiSelect: ({ topPanel, acciones, open, onClose, items, filterFunction, getItemLabel, anchorEl, dense }: MultiSelectProps) => React.JSX.Element;
14
+ export declare const MultiSelect: ({ topPanel, acciones, open, onClose, items, filterFunction, getItemLabel, anchorEl, dense, contenido }: MultiSelectProps) => React.JSX.Element;