Skip to content

Commit

Permalink
fix: export types
Browse files Browse the repository at this point in the history
  • Loading branch information
CaliCastle committed Oct 26, 2022
1 parent 04bc88a commit 4f75770
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
6 changes: 6 additions & 0 deletions packages/react/CHANGELOG.md
@@ -1,5 +1,11 @@
# @zolplay/react

## 0.5.1

### Patch Changes

- Fix types export

## 0.5.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
@@ -1,6 +1,6 @@
{
"name": "@zolplay/react",
"version": "0.5.0",
"version": "0.5.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
Expand Down
8 changes: 7 additions & 1 deletion packages/react/src/index.ts
Expand Up @@ -2,4 +2,10 @@ export * from './Avatar'
export * from './DropdownMenu'
export * from './ScrollArea'
export * from './Stacked'
export type { Component, PrimitiveComponent } from '@/types'
export type {
Component,
ComponentProps,
LayoutComponent,
LayoutProps,
PrimitiveComponent,
} from '@/types'

0 comments on commit 4f75770

Please sign in to comment.