@syscore/ui-library 1.11.0 → 1.11.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.
package/client/global.css CHANGED
@@ -6096,7 +6096,7 @@ body {
6096
6096
  top: 0;
6097
6097
  left: 0;
6098
6098
  z-index: 50;
6099
- height: 3.5rem;
6099
+ height: 4rem;
6100
6100
  width: 100%;
6101
6101
  }
6102
6102
 
@@ -60,8 +60,10 @@ const ExploreSidePanelView = (args: any) => {
60
60
  className="absolute top-1/2 -translate-y-1/2 left-0 right-0 body-small"
61
61
  style={{ willChange: "opacity, transform" }}
62
62
  >
63
- <span className="line-clamp-1">
64
- ·{" "}
63
+ <span className="line-clamp-1 text-gray-800">
64
+ <span aria-hidden="true" className="text-gray-300">
65
+ ·{" "}
66
+ </span>
65
67
  {capitalize(
66
68
  concepts.find((c) => c.conceptKey === hoveredConcept)
67
69
  ?.name ?? "",
@@ -145,8 +147,10 @@ const ExploreSidePanelView = (args: any) => {
145
147
  className="absolute top-1/2 -translate-y-1/2 left-0 right-0 body-small"
146
148
  style={{ willChange: "opacity, transform" }}
147
149
  >
148
- <span className="line-clamp-1">
149
- ·{" "}
150
+ <span className="block w-[235px] truncate pr-6 text-gray-800">
151
+ <span aria-hidden="true" className="text-gray-300">
152
+ ·{" "}
153
+ </span>
150
154
  {capitalize(
151
155
  themes.find((t) => t.code === hoveredTheme)?.name ??
152
156
  "",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syscore/ui-library",
3
- "version": "1.11.0",
3
+ "version": "1.11.1",
4
4
  "description": "A comprehensive React component library built with Radix UI, Tailwind CSS, and TypeScript",
5
5
  "private": false,
6
6
  "type": "module",