@hanzo/ui 3.8.1 → 3.8.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": "3.8.1",
3
+ "version": "3.8.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/",
@@ -84,7 +84,7 @@
84
84
  "tailwind-merge": "^2.3.0",
85
85
  "tailwindcss-animate": "^1.0.7",
86
86
  "tailwindcss-interaction-media": "^0.1.0",
87
- "@hanzo/vaul-fork": "0.99.21"
87
+ "@hanzo/react-drawer": "0.1.0"
88
88
  },
89
89
  "peerDependencies": {
90
90
  "@hookform/resolvers": "^3.3.2",
@@ -1,7 +1,7 @@
1
1
  'use client'
2
2
 
3
3
  import * as React from 'react'
4
- import { Drawer as DrawerPrimitive, useDrawerContext } from '@hanzo/vaul-fork'
4
+ import { Drawer as DrawerPrimitive } from '@hanzo/react-drawer'
5
5
 
6
6
  import { cn } from '../util'
7
7
 
@@ -134,6 +134,5 @@ export {
134
134
  DrawerHeader,
135
135
  DrawerFooter,
136
136
  DrawerTitle,
137
- DrawerDescription,
138
- useDrawerContext
137
+ DrawerDescription
139
138
  }
@@ -71,7 +71,6 @@ export {
71
71
  DrawerFooter,
72
72
  DrawerTitle,
73
73
  DrawerDescription,
74
- useDrawerContext
75
74
  } from './drawer'
76
75
 
77
76
  export {
@@ -1,3 +1,4 @@
1
+ 'use client'
1
2
  import React from 'react'
2
3
 
3
4
  import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu'