@hanzo/ui 3.8.18 → 3.8.19
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.
|
@@ -88,6 +88,7 @@ const ScreenfulComponent: React.FC<{
|
|
|
88
88
|
...cwclx,
|
|
89
89
|
snapTile ? 'absolute left-0 right-0 top-0 bottom-0 ' : 'flex min-h-screen w-full',
|
|
90
90
|
contentClx,
|
|
91
|
+
// TODO :aa py-0 breaks padding for header! Investigate why I would have done this!
|
|
91
92
|
vertCenter ? 'self-center ' + (oneColumn ? '!py-0' : '' ) : ''
|
|
92
93
|
)}
|
|
93
94
|
>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hanzo/ui",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.19",
|
|
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/",
|
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
"./util-client": "./util/index-client.ts"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
+
"@hanzo/react-drawer": "0.1.7",
|
|
46
47
|
"@next/third-parties": "^14.1.0",
|
|
47
48
|
"@radix-ui/react-accordion": "^1.1.2",
|
|
48
49
|
"@radix-ui/react-aspect-ratio": "^1.0.3",
|
|
@@ -83,8 +84,7 @@
|
|
|
83
84
|
"sonner": "^1.4.41",
|
|
84
85
|
"tailwind-merge": "^2.3.0",
|
|
85
86
|
"tailwindcss-animate": "^1.0.7",
|
|
86
|
-
"tailwindcss-interaction-media": "^0.1.0"
|
|
87
|
-
"@hanzo/react-drawer": "0.1.6"
|
|
87
|
+
"tailwindcss-interaction-media": "^0.1.0"
|
|
88
88
|
},
|
|
89
89
|
"peerDependencies": {
|
|
90
90
|
"@hookform/resolvers": "^3.3.2",
|
|
@@ -18,6 +18,8 @@ const StepIndicator: React.FC<{
|
|
|
18
18
|
|
|
19
19
|
const pX = `calc(${1 / (steps.length * 2) * 100}% - ${dotSizeRem / 2}rem)`
|
|
20
20
|
|
|
21
|
+
// This code current throws 'Warning: Each child in a list should have a unique "key" prop.'
|
|
22
|
+
// As is evident, we supply keys that should suffice. < shrug >
|
|
21
23
|
return (
|
|
22
24
|
<div className={cn('flex flex-col', className)}>
|
|
23
25
|
<div
|