@hanzo/ui 2.0.0 → 2.0.2
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": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
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/",
|
|
@@ -29,7 +29,6 @@
|
|
|
29
29
|
"clean": "rm -rf dist && rm -rf node_modules"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@hookform/resolvers": "^3.3.2",
|
|
33
32
|
"@next/third-parties": "^14.1.0",
|
|
34
33
|
"@radix-ui/react-accordion": "^1.1.2",
|
|
35
34
|
"@radix-ui/react-aspect-ratio": "^1.0.3",
|
|
@@ -58,24 +57,23 @@
|
|
|
58
57
|
"lodash.castarray": "^4.4.0",
|
|
59
58
|
"lodash.isplainobject": "^4.0.6",
|
|
60
59
|
"lodash.merge": "^4.6.2",
|
|
61
|
-
"lucide-react": "^0.344.0",
|
|
62
60
|
"markdown-to-jsx": "^7.3.2",
|
|
63
61
|
"postcss-selector-parser": "^6.0.13",
|
|
64
62
|
"react-day-picker": "^8.7.1",
|
|
65
|
-
"react-device-detect": "^2.2.3",
|
|
66
|
-
"react-hook-form": "^7.47.0",
|
|
67
63
|
"react-intersection-observer": "^9.7.0",
|
|
68
|
-
"react-social-icons": "^6.4.0",
|
|
69
64
|
"tailwind-merge": "^2.2.0",
|
|
70
|
-
"tailwindcss-interaction-media": "^0.1.0"
|
|
71
|
-
"validator": "^13.11.0",
|
|
72
|
-
"zod": "3.21.4"
|
|
65
|
+
"tailwindcss-interaction-media": "^0.1.0"
|
|
73
66
|
},
|
|
74
67
|
"peerDependencies": {
|
|
68
|
+
"@hookform/resolvers": "^3.3.2",
|
|
69
|
+
"lucide-react": "^0.344.0",
|
|
75
70
|
"next": "^14.1.0",
|
|
76
71
|
"next-themes": "^0.2.1",
|
|
77
72
|
"react": "^18.2.0",
|
|
78
|
-
"react-dom": "^18.2.0"
|
|
73
|
+
"react-dom": "^18.2.0",
|
|
74
|
+
"react-hook-form": "^7.47.0",
|
|
75
|
+
"validator": "^13.11.0",
|
|
76
|
+
"zod": "3.21.4"
|
|
79
77
|
},
|
|
80
78
|
"devDependencies": {
|
|
81
79
|
"@mdx-js/loader": "^3.0.0",
|
|
@@ -84,7 +82,7 @@
|
|
|
84
82
|
"@types/gtag.js": "^0.0.19",
|
|
85
83
|
"@types/lodash.merge": "^4.6.9",
|
|
86
84
|
"@types/mdx": "^2.0.9",
|
|
87
|
-
"@types/react": "^18.2.
|
|
85
|
+
"@types/react": "^18.2.64",
|
|
88
86
|
"@types/react-dom": "^18.2.18",
|
|
89
87
|
"tailwindcss": "^3.4.1",
|
|
90
88
|
"typescript": "5.3.3"
|
package/tailwind/index.ts
CHANGED
|
@@ -1,21 +1,7 @@
|
|
|
1
|
-
import colors from './colors.tailwind'
|
|
2
|
-
import fontSize from './fontSize.tailwind'
|
|
3
|
-
import fontFamily from './fontFamily.tailwind'
|
|
4
|
-
import safelist from './safelist.tailwind'
|
|
5
|
-
import screens from './screens.tailwind'
|
|
6
|
-
import spacing from './spacing.tailwind'
|
|
7
|
-
import typographyPlugin from './typo-plugin'
|
|
8
1
|
import preset from './tailwind.config.hanzo-preset'
|
|
9
2
|
import type TwFontDesc from './tw-font-desc'
|
|
10
3
|
|
|
11
4
|
export {
|
|
12
|
-
colors,
|
|
13
5
|
preset,
|
|
14
|
-
fontSize,
|
|
15
|
-
fontFamily,
|
|
16
|
-
safelist,
|
|
17
|
-
screens,
|
|
18
|
-
spacing,
|
|
19
|
-
typographyPlugin,
|
|
20
6
|
type TwFontDesc
|
|
21
7
|
}
|