@olwiba/ui 0.0.32 → 0.0.33
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/dist/index.d.ts +19 -1
- package/dist/index.js +34 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +4 -0
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -100,6 +100,10 @@ export { DevBanner, type DevBannerProps } from './components/DevBanner';
|
|
|
100
100
|
export { RegisterHotkeys, type Hotkey } from './components/RegisterHotkeys';
|
|
101
101
|
export { RootErrorFallback } from './components/RootErrorFallback';
|
|
102
102
|
|
|
103
|
+
// ─── Blog ────────────────────────────────────────────────────────────────────
|
|
104
|
+
export { PostCard, type PostCardProps } from './blog/PostCard';
|
|
105
|
+
export { PostList, type PostListProps } from './blog/PostList';
|
|
106
|
+
|
|
103
107
|
// ─── Hooks ────────────────────────────────────────────────────────────────────
|
|
104
108
|
export { useMounted } from './hooks/use-mounted';
|
|
105
109
|
export { useConfirm, type ConfirmOptions, type UseConfirmReturn } from './hooks/use-confirm';
|