eleven-solutions-common-website-unique-web 9.0.16 → 9.0.17

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.
@@ -46,7 +46,7 @@ const Header = ({ toggleTheme, isDarkMode, userLogedin, userType, url, img, name
46
46
  setusermodalopen(true);
47
47
  setIsOpen(false);
48
48
  };
49
- console.log(userType);
49
+ console.log(userType, "isLoggedIn: ", userLogedin);
50
50
  return (_jsxs("header", { className: `relative ${isDarkMode
51
51
  ? "bg-globalBg border-b border-gray-700"
52
52
  : "bg-white border-b border-gray-200"}`, children: [_jsx("div", { className: ` pl-4 pr-4 mx-auto ${isDarkMode ? "bg-globalBg " : "bg-[#ffff]"}`, children: _jsxs("div", { className: "flex items-center justify-between ", children: [_jsx("div", { children: _jsxs("a", { href: "/home", onClick: (event) => handleNavigation(event, "/home"), className: "flex items-center justify-between gap-4", children: [_jsx("img", { className: "w-auto h-14 sm:h-10 md:h-14 lg:h-14", src: img, alt: "Logo" }), _jsx("span", { className: "text-2xl font-semibold bg-gradient-to-r from-red-500 to-yellow-400 bg-clip-text text-transparent", children: name })] }) }), _jsx("div", { className: "md:hidden lg:hidden", children: _jsx("button", { onClick: () => setIsOpen(!isOpen), type: "button", className: `${isDarkMode ? " text-white" : "text-black"}`, "aria-label": "toggle menu", children: !isOpen ? (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: "w-6 h-6", fill: "none", viewBox: "0 0 24 24", stroke: "currentColor", strokeWidth: "2", children: _jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M4 8h16M4 16h16" }) })) : (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: "w-6 h-6", fill: "none", viewBox: "0 0 24 24", stroke: "currentColor", strokeWidth: "2", children: _jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M6 18L18 6M6 6l12 12" }) })) }) }), _jsx("div", { className: ` ${isOpen ? "translate-x-0" : "translate-x-full md:translate-x-0"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eleven-solutions-common-website-unique-web",
3
- "version": "9.0.16",
3
+ "version": "9.0.17",
4
4
  "main": "./dist/index.js",
5
5
  "scripts": {
6
6
  "build": "tsc",
@@ -64,7 +64,7 @@ const Header = ({
64
64
  setIsOpen(false);
65
65
  };
66
66
 
67
- console.log(userType);
67
+ console.log(userType, "isLoggedIn: ", userLogedin);
68
68
 
69
69
  return (
70
70
  <header