wacomm 2.10.2 → 2.11.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/buttons/InviteFriendByEmailButton.d.ts +6 -0
- package/dist/buttons/InviteFriendByEmailButton.stories.d.ts +6 -0
- package/dist/buttons/index.d.ts +1 -0
- package/dist/{index-BU185rE_.js → index-BE6IaDot.js} +66 -66
- package/dist/{index-C8jpnem2.mjs → index-Ddz6PAm9.mjs} +3769 -3756
- package/dist/{mapbox-gl-CmYouAcA.mjs → mapbox-gl-CHDZjXgH.mjs} +1 -1
- package/dist/{mapbox-gl-C7fpym8e.js → mapbox-gl-CWjaNT6z.js} +1 -1
- package/dist/{maplibre-gl-wEEqh6k1.js → maplibre-gl-BIfLCJ6l.js} +1 -1
- package/dist/{maplibre-gl-BJEE9pkj.mjs → maplibre-gl-BMTO6ycS.mjs} +1 -1
- package/dist/wacomm.cjs.js +1 -1
- package/dist/wacomm.es.js +76 -75
- package/package.json +1 -1
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ZeroFuncType } from 'waujs';
|
|
2
|
+
interface InviteFriendByEmailButtonProps {
|
|
3
|
+
onClick: ZeroFuncType;
|
|
4
|
+
}
|
|
5
|
+
declare function InviteFriendByEmailButton({ onClick }: InviteFriendByEmailButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export default InviteFriendByEmailButton;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as InviteFriendByEmailButton } from './InviteFriendByEmailButton';
|
|
3
|
+
declare const meta: Meta<typeof InviteFriendByEmailButton>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
package/dist/buttons/index.d.ts
CHANGED
|
@@ -5,4 +5,5 @@ export { default as CacheButton } from './CacheButton';
|
|
|
5
5
|
export { default as ModalButton } from './ModalButton';
|
|
6
6
|
export { default as StyledButton } from './StyledButton';
|
|
7
7
|
export { default as AddButton } from './AddButton';
|
|
8
|
+
export { default as InviteFriendByEmailButton } from './InviteFriendByEmailButton';
|
|
8
9
|
export { default as SaveCancelButtons } from './SaveCancelButtons';
|