@internxt/ui 0.1.10 → 0.1.12
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/mail/cheaps/MessageCheap.d.ts +1 -1
- package/dist/components/mail/cheaps/user/UserCheap.d.ts +15 -0
- package/dist/components/mail/index.d.ts +1 -0
- package/dist/components/mail/tray/TrayList.d.ts +1 -1
- package/dist/index.cjs.js +14 -14
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +501 -494
- package/dist/index.es.js.map +1 -1
- package/dist/stories/components/mail/cheaps/user/UserCheap.stories.d.ts +9 -0
- package/package.json +1 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react-vite';
|
|
2
|
+
import { default as UserCheap } from '../../../../../components/mail/cheaps/user/UserCheap';
|
|
3
|
+
declare const meta: Meta<typeof UserCheap>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const WithAvatar: Story;
|
|
8
|
+
export declare const LongName: Story;
|
|
9
|
+
export declare const LongEmail: Story;
|