@hanzo/ui 4.4.1 → 4.4.3

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": "@hanzo/ui",
3
- "version": "4.4.1",
3
+ "version": "4.4.3",
4
4
  "description": "Library that contains shared UI primitives, support for a common design system, and other boilerplate support.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",
@@ -92,13 +92,13 @@
92
92
  "peerDependencies": {
93
93
  "@hookform/resolvers": "^3.3.2",
94
94
  "embla-carousel": "^8.1.6",
95
- "lucide-react": "catalog:",
95
+ "lucide-react": "0.456.0",
96
96
  "mobx": "^6.12.3",
97
- "next": "catalog:",
97
+ "next": "14.2.16",
98
98
  "next-themes": "^0.2.1",
99
- "react": "catalog:",
100
- "react-dom": "catalog:",
101
- "react-hook-form": "catalog:",
99
+ "react": "18.3.1",
100
+ "react-dom": "18.3.1",
101
+ "react-hook-form": "7.51.4",
102
102
  "validator": "^13.11.0",
103
103
  "zod": "3.23.8"
104
104
  },
@@ -110,10 +110,10 @@
110
110
  "@types/gtag.js": "^0.0.19",
111
111
  "@types/lodash.merge": "^4.6.9",
112
112
  "@types/mdx": "^2.0.13",
113
- "@types/node": "catalog:",
114
- "@types/react": "catalog:",
115
- "@types/react-dom": "catalog:",
116
- "tailwindcss": "catalog:",
117
- "typescript": "catalog:"
113
+ "@types/node": "20.14.15",
114
+ "@types/react": "18.3.1",
115
+ "@types/react-dom": "18.3.1",
116
+ "tailwindcss": "3.4.14",
117
+ "typescript": "5.6.3"
118
118
  }
119
119
  }
@@ -15,7 +15,7 @@ const Input = React.forwardRef<HTMLInputElement, InputProps>(
15
15
  className={cn(
16
16
  'flex h-10 w-full rounded-md border border-muted-3 bg-inherit px-3 py-2 text-sm ring-offset-background ' +
17
17
  'file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted-2 ' +
18
- //'focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring focus-visible:ring-offset-1 ' +
18
+ 'focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring focus-visible:ring-offset-1 ' +
19
19
  'first-letter:disabled:cursor-not-allowed disabled:opacity-50',
20
20
  className
21
21
  )}