wacomm 1.93.2 → 1.95.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.
@@ -0,0 +1,10 @@
1
+ import { ZeroFuncType } from 'waujs';
2
+ interface CommentReplyCountProps {
3
+ singleLabel: string;
4
+ pluralLabel: string;
5
+ count?: number;
6
+ onClick: ZeroFuncType;
7
+ className?: string;
8
+ }
9
+ export default function CommentReplyCount({ singleLabel, pluralLabel, count, onClick, className }: CommentReplyCountProps): import("react/jsx-runtime").JSX.Element;
10
+ export {};
@@ -0,0 +1,8 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { default as CommentReplyCount } from './CommentReplyCount';
3
+ declare const meta: Meta<typeof CommentReplyCount>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const Comments: Story;
7
+ export declare const Replies: Story;
8
+ export declare const SingleItem: Story;
@@ -0,0 +1,11 @@
1
+ import { ZeroFuncType } from 'waujs';
2
+ interface CommentReplyProps {
3
+ singleLabel: string;
4
+ pluralLabel: string;
5
+ className?: string;
6
+ textClassName?: string;
7
+ count?: number;
8
+ onClick: ZeroFuncType;
9
+ }
10
+ export default function CommentReplySection({ singleLabel, pluralLabel, className, textClassName, count, onClick }: CommentReplyProps): import("react/jsx-runtime").JSX.Element;
11
+ export {};
@@ -0,0 +1,9 @@
1
+ import { ZeroFuncType } from 'waujs';
2
+ interface CommentsSectionProps {
3
+ className?: string;
4
+ textClassName?: string;
5
+ count?: number;
6
+ onClick: ZeroFuncType;
7
+ }
8
+ export default function CommentsSection({ className, textClassName, count, onClick }: CommentsSectionProps): import("react/jsx-runtime").JSX.Element;
9
+ export {};
@@ -0,0 +1,8 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { default as CommentsSection } from './CommentsSection';
3
+ declare const meta: Meta<typeof CommentsSection>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const Default: Story;
7
+ export declare const WithComments: Story;
8
+ export declare const SingleComment: Story;
@@ -0,0 +1,9 @@
1
+ import { ZeroFuncType } from 'waujs';
2
+ interface RepliesSectionProps {
3
+ className?: string;
4
+ textClassName?: string;
5
+ count?: number;
6
+ onClick: ZeroFuncType;
7
+ }
8
+ export default function RepliesSection({ className, textClassName, count, onClick }: RepliesSectionProps): import("react/jsx-runtime").JSX.Element;
9
+ export {};
@@ -0,0 +1,8 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { default as RepliesSection } from './RepliesSection';
3
+ declare const meta: Meta<typeof RepliesSection>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const Default: Story;
7
+ export declare const WithReplies: Story;
8
+ export declare const SingleReply: Story;
@@ -0,0 +1,2 @@
1
+ export { default as CommentsSection } from './CommentsSection';
2
+ export { default as RepliesSection } from './RepliesSection';