droplinked-editor-configs 1.8.3 → 1.8.4

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.
@@ -6,10 +6,9 @@ interface Props {
6
6
  };
7
7
  }[];
8
8
  onCartClick?: () => void;
9
- onProfileClick?: () => void;
9
+ ProfileDropdownWrapper?: React.ElementType;
10
10
  cartItemCount?: number;
11
- isLoggedIn?: boolean;
12
11
  isRendering?: boolean;
13
12
  }
14
- declare const Header: ({ linkManagement, onCartClick, onProfileClick, cartItemCount, isRendering, isLoggedIn }: Props) => import("react/jsx-runtime").JSX.Element;
13
+ declare const Header: ({ linkManagement, onCartClick, ProfileDropdownWrapper, cartItemCount, isRendering }: Props) => import("react/jsx-runtime").JSX.Element;
15
14
  export default Header;
@@ -1,8 +1,9 @@
1
+ import * as React from 'react';
1
2
  interface Props {
2
3
  iconColor: string;
3
4
  onCartClick?: () => void;
4
- onProfileClick?: () => void;
5
5
  cartItemCount?: number;
6
+ ProfileDropdownWrapper?: React.ElementType;
6
7
  }
7
- declare function HeaderIcons({ iconColor, onCartClick, onProfileClick, cartItemCount }: Props): import("react/jsx-runtime").JSX.Element;
8
+ declare function HeaderIcons({ iconColor, onCartClick, ProfileDropdownWrapper, cartItemCount }: Props): import("react/jsx-runtime").JSX.Element;
8
9
  export default HeaderIcons;
@@ -1,3 +1,4 @@
1
+ import * as React from 'react';
1
2
  interface Props {
2
3
  iconColor: string;
3
4
  linkManagement?: {
@@ -6,8 +7,7 @@ interface Props {
6
7
  url: string;
7
8
  };
8
9
  }[];
9
- onProfileClick?: () => void;
10
- isLoggedIn?: boolean;
10
+ ProfileDropdownWrapper?: React.ElementType;
11
11
  }
12
- declare function Sidebar({ iconColor, linkManagement, onProfileClick, isLoggedIn }: Props): import("react/jsx-runtime").JSX.Element;
12
+ declare function Sidebar({ iconColor, linkManagement, ProfileDropdownWrapper }: Props): import("react/jsx-runtime").JSX.Element;
13
13
  export default Sidebar;