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.
- package/dist/avatar/AvatarTag.d.ts +1 -1
- package/dist/html/Heading.d.ts +8 -0
- package/dist/html/Heading.stories.d.ts +9 -0
- package/dist/html/index.d.ts +1 -1
- package/dist/{index-qHjth4sO.js → index-DVZIExpd.js} +5 -5
- package/dist/{index-C_63eFMS.mjs → index-DyaIn-qY.mjs} +16 -9
- package/dist/{mapbox-gl-DSt9esJ6.js → mapbox-gl-Bd-IWtG2.js} +1 -1
- package/dist/{mapbox-gl-CNikyA_C.mjs → mapbox-gl-SlUn3VRA.mjs} +1 -1
- package/dist/{maplibre-gl-bcTa5W3n.mjs → maplibre-gl-BPlV3kry.mjs} +1 -1
- package/dist/{maplibre-gl-D_k0K9YA.js → maplibre-gl-BaephgEq.js} +1 -1
- package/dist/wacomm.cjs.js +1 -1
- package/dist/wacomm.css +1 -1
- package/dist/wacomm.es.js +2 -2
- package/package.json +1 -1
- package/dist/html/H1.d.ts +0 -6
|
@@ -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
|
|
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,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;
|
package/dist/html/index.d.ts
CHANGED