@greatapps/common 1.1.431 → 1.1.433

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": "@greatapps/common",
3
- "version": "1.1.431",
3
+ "version": "1.1.433",
4
4
  "description": "Shared library for GreatApps frontend applications",
5
5
  "main": "./dist/index.mjs",
6
6
  "types": "./src/index.ts",
@@ -48,9 +48,8 @@ function NavBar({
48
48
  <div className="relative">
49
49
  <Tooltip>
50
50
  <TooltipTrigger
51
- className="cursor-pointer"
51
+ className="cursor-default"
52
52
  asChild
53
- onClick={onLogoClick}
54
53
  >
55
54
  {isDefaultWl ? (
56
55
  <Image
@@ -76,7 +76,7 @@ export function ProjectSelector({
76
76
  {isLoading ? (
77
77
  <div className="skeleton h-4 w-32 rounded" />
78
78
  ) : (
79
- <span className="paragraph-medium-semibold text-gray-600 truncate max-w-[120px] inline-block">
79
+ <span className="paragraph-medium-semibold text-gray-600 truncate max-w-[120px]">
80
80
  {selectedProject?.title}
81
81
  </span>
82
82
  )}
@@ -47,7 +47,7 @@ function TooltipContent({
47
47
  data-slot="tooltip-content"
48
48
  sideOffset={sideOffset}
49
49
  className={cn(
50
- "bg-foreground text-background animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 w-fit origin-(--radix-tooltip-content-transform-origin) rounded-md px-3 py-1.5 text-xs text-balance",
50
+ "bg-foreground text-background animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 w-fit origin-(--radix-tooltip-content-transform-origin) rounded-md px-3 py-1.5 text-xs text-balance pointer-events-none",
51
51
  className
52
52
  )}
53
53
  {...props}