wacomm 2.8.14 → 2.9.1

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.
@@ -2,5 +2,5 @@ import { AvatarProps } from './Avatar';
2
2
  export interface AvatarTagProps extends AvatarProps {
3
3
  avatarClassName?: string;
4
4
  }
5
- declare function AvatarTag({ label, onClick, className, imgSrc, fallbackImgSrc, avatarClassName, }: AvatarTagProps): import("react/jsx-runtime").JSX.Element;
5
+ declare function AvatarTag({ label, onClick, className, imgSrc, fallbackImgSrc, avatarClassName }: AvatarTagProps): import("react/jsx-runtime").JSX.Element;
6
6
  export default AvatarTag;
@@ -0,0 +1,8 @@
1
+ export type HeadingLevel = 1 | 2 | 3;
2
+ interface HeadingProps {
3
+ label: string;
4
+ className?: string;
5
+ level?: HeadingLevel;
6
+ }
7
+ export default function Heading({ label, className, level }: HeadingProps): import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,9 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { default as Heading } from './Heading';
3
+ declare const meta: Meta<typeof Heading>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const H1: Story;
7
+ export declare const H2: Story;
8
+ export declare const H3: Story;
9
+ export declare const CustomStyling: Story;
@@ -1,5 +1,5 @@
1
1
  export { default as A, ATarget } from './A';
2
- export { default as H1 } from './H1';
2
+ export { default as Heading } from './Heading';
3
3
  export { default as P } from './P';
4
4
  export { default as Textarea } from './Textarea';
5
5
  export { default as Span } from './Span';