@papernote/ui 1.9.2 → 1.10.0
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/components/NotificationBell.d.ts +7 -1
- package/dist/components/NotificationBell.d.ts.map +1 -1
- package/dist/components/Tabs.d.ts +112 -1
- package/dist/components/Tabs.d.ts.map +1 -1
- package/dist/components/index.d.ts +2 -2
- package/dist/components/index.d.ts.map +1 -1
- package/dist/index.d.ts +120 -4
- package/dist/index.esm.js +437 -125
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +439 -123
- package/dist/index.js.map +1 -1
- package/dist/styles.css +23 -0
- package/package.json +1 -1
- package/src/components/NotificationBell.stories.tsx +71 -0
- package/src/components/NotificationBell.tsx +12 -4
- package/src/components/Tabs.stories.tsx +649 -6
- package/src/components/Tabs.tsx +613 -19
- package/src/components/index.ts +2 -2
package/src/components/index.ts
CHANGED
|
@@ -217,8 +217,8 @@ export type { CompactStatProps, CompactStatTrend } from './CompactStat';
|
|
|
217
217
|
export { default as Breadcrumbs, useBreadcrumbReset } from './Breadcrumbs';
|
|
218
218
|
export type { BreadcrumbsProps, BreadcrumbItem, BreadcrumbNavigationState } from './Breadcrumbs';
|
|
219
219
|
|
|
220
|
-
export { default as Tabs } from './Tabs';
|
|
221
|
-
export type { TabsProps, Tab } from './Tabs';
|
|
220
|
+
export { default as Tabs, TabsRoot, TabsList, TabsTrigger, TabsContent } from './Tabs';
|
|
221
|
+
export type { TabsProps, Tab, TabsRootProps, TabsListProps, TabsTriggerProps, TabsContentProps } from './Tabs';
|
|
222
222
|
|
|
223
223
|
export { default as Pagination } from './Pagination';
|
|
224
224
|
export type { PaginationProps } from './Pagination';
|