@c-rex/ui 0.3.0-build.35 → 0.3.0-build.36

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": "@c-rex/ui",
3
- "version": "0.3.0-build.35",
3
+ "version": "0.3.0-build.36",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "src"
@@ -191,7 +191,7 @@
191
191
  "class-variance-authority": "^0.7.1",
192
192
  "clsx": "^2.1.1",
193
193
  "cmdk": "^1.1.1",
194
- "lucide-react": "^0.486.0",
194
+ "lucide-react": "^0.511.0",
195
195
  "radix-ui": "^1.4.3",
196
196
  "react": "^18.3.1",
197
197
  "react-dom": "^18.3.1",
@@ -37,7 +37,7 @@ function NavigationMenuList({
37
37
  <NavigationMenuPrimitive.List
38
38
  data-slot="navigation-menu-list"
39
39
  className={cn(
40
- "group flex flex-1 list-none items-center justify-center gap-1",
40
+ "group flex flex-1 list-none items-center justify-center",
41
41
  className
42
42
  )}
43
43
  {...props}
package/src/sidebar.tsx CHANGED
@@ -300,7 +300,6 @@ const Sidebar = React.forwardRef<
300
300
  data-sidebar="sidebar"
301
301
  className={cn(
302
302
  "flex h-full w-full flex-col group-data-[variant=floating]:rounded-lg group-data-[variant=floating]:border group-data-[variant=floating]:border-sidebar-border group-data-[variant=floating]:shadow",
303
- side === "left" && "bg-sidebar"
304
303
  )}>
305
304
  {children}
306
305
  </div>