@sinco/react 1.2.2 → 1.2.3-rc.11

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",
3
+ "version": "1.2.3-rc.11",
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;