@aveonline/ui-react 1.14.0 → 1.14.1

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.
@@ -3,5 +3,5 @@ import { IHeader } from './IHeader';
3
3
  * Atom: Header
4
4
  * The top bar is a header component that allows merchants to access menus, and navigate by clicking on the logo. It’s always visible at the top of interfaces.
5
5
  */
6
- declare function Header({ hasLogo, className, menuMovil, dropdownUser, ...rest }: IHeader): JSX.Element;
6
+ declare function Header({ hasLogo, className, menuMovil, options, ...rest }: IHeader): JSX.Element;
7
7
  export default Header;
@@ -1,4 +1,3 @@
1
- import { IDropdownUser } from '../DropdownUser';
2
1
  declare type IModalMenuMovil = {
3
2
  isOpen: boolean;
4
3
  onClose: () => void;
@@ -6,8 +5,8 @@ declare type IModalMenuMovil = {
6
5
  declare type IHeader = {
7
6
  hasLogo?: boolean;
8
7
  className?: string;
9
- dropdownUser: IDropdownUser;
10
8
  menuMovil?: (stateMenu: IModalMenuMovil) => JSX.Element;
9
+ options?: JSX.Element[];
11
10
  [rest: string]: any;
12
11
  };
13
12
  export type { IHeader, IModalMenuMovil };