wacomm 1.97.3 → 1.98.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/ShowMore.d.ts +7 -0
- package/dist/ShowMore.stories.d.ts +6 -0
- package/dist/avatar/AvatarTimeTag.d.ts +11 -0
- package/dist/avatar/AvatarTimeTag.stories.d.ts +7 -0
- package/dist/avatar/index.d.ts +1 -0
- package/dist/{index-C0fR677m.js → index-B0BscLt_.js} +57 -57
- package/dist/{index-BD5AZpfG.mjs → index-DGTn113J.mjs} +5297 -5261
- package/dist/index.d.ts +1 -0
- package/dist/{mapbox-gl-Jab1Z3yS.mjs → mapbox-gl-BY4apVOU.mjs} +1 -1
- package/dist/{mapbox-gl-CsPXaNpt.js → mapbox-gl-CBxwcYcB.js} +1 -1
- package/dist/{maplibre-gl-CTGLv0Y3.mjs → maplibre-gl-6mfNZM6Q.mjs} +1 -1
- package/dist/{maplibre-gl-BnnmV6Sg.js → maplibre-gl-B1NKI16A.js} +1 -1
- package/dist/wacomm.cjs.js +1 -1
- package/dist/wacomm.css +1 -1
- package/dist/wacomm.es.js +110 -108
- package/package.json +1 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ZeroFuncType } from 'waujs';
|
|
2
|
+
interface AvatarTimeTagProps {
|
|
3
|
+
name: string;
|
|
4
|
+
timestamp: number;
|
|
5
|
+
onClick?: ZeroFuncType;
|
|
6
|
+
className?: string;
|
|
7
|
+
avatarClassName?: string;
|
|
8
|
+
imgSrc?: string;
|
|
9
|
+
}
|
|
10
|
+
declare function AvatarTimeTag({ name, timestamp, onClick, className, avatarClassName, imgSrc }: AvatarTimeTagProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export default AvatarTimeTag;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as AvatarTimeTag } from './AvatarTimeTag';
|
|
3
|
+
declare const meta: Meta<typeof AvatarTimeTag>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const WithAvatar: Story;
|
package/dist/avatar/index.d.ts
CHANGED