wacomm 1.90.2 → 1.92.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/index.d.ts CHANGED
@@ -37,6 +37,7 @@ export * from './pickers';
37
37
  export * from './static';
38
38
  export * from './errors';
39
39
  export * from './tags';
40
+ export { default as Text } from './Text';
40
41
  export { default as Carousel } from './carousel/Carousel';
41
42
  export type { EditableBlockEditProps, EditableBlockDisplayProps } from './EditableBlock';
42
43
  export type { PickerOptionProps, onChangeType } from './pickers/Picker';
@@ -0,0 +1,8 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { default as LikeSection } from './LikeSection';
3
+ declare const meta: Meta<typeof LikeSection>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const Default: Story;
7
+ export declare const WithLikes: Story;
8
+ export declare const Highlighted: Story;
@@ -4,6 +4,7 @@ interface LikesCountProps {
4
4
  onClick: ZeroFuncType;
5
5
  className?: string;
6
6
  textClassName?: string;
7
+ isHighlighted?: boolean;
7
8
  }
8
- export default function LikesCount({ count, onClick, className, textClassName }: LikesCountProps): import("react/jsx-runtime").JSX.Element;
9
+ export default function LikesCount({ count, onClick, className, textClassName, isHighlighted }: LikesCountProps): import("react/jsx-runtime").JSX.Element;
9
10
  export {};
@@ -0,0 +1,8 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { default as LikesCount } from './LikesCount';
3
+ declare const meta: Meta<typeof LikesCount>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const Default: Story;
7
+ export declare const Zero: Story;
8
+ export declare const Highlighted: Story;