wacomm 2.19.0 → 2.20.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.
@@ -0,0 +1,8 @@
1
+ import { ZeroFuncType } from 'waujs';
2
+ interface CloseAccountButtonProps {
3
+ onConfirm?: ZeroFuncType;
4
+ message?: string;
5
+ className?: string;
6
+ }
7
+ declare function CloseAccountButton({ onConfirm, message, className }: CloseAccountButtonProps): import("react/jsx-runtime").JSX.Element;
8
+ export default CloseAccountButton;
@@ -0,0 +1,7 @@
1
+ import { Meta, StoryObj } from '@storybook/react-vite';
2
+ import { default as CloseAccountButton } from './CloseAccountButton';
3
+ declare const meta: Meta<typeof CloseAccountButton>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const Default: Story;
7
+ export declare const CustomMessage: Story;
File without changes
@@ -7,3 +7,4 @@ export { default as StyledButton } from './StyledButton';
7
7
  export { default as AddButton } from './AddButton';
8
8
  export { default as InviteByEmails } from '../inviteByEmails/InviteByEmails';
9
9
  export { default as SaveCancelButtons } from './SaveCancelButtons';
10
+ export { default as CloseAccountButton } from './CloseAccountButton';
@@ -0,0 +1,8 @@
1
+ import { ZeroFuncType } from 'waujs';
2
+ interface SettingsTagProps {
3
+ label: string;
4
+ onClick: ZeroFuncType;
5
+ className?: string;
6
+ }
7
+ declare function SettingsTag({ label, onClick, className }: SettingsTagProps): import("react/jsx-runtime").JSX.Element;
8
+ export default SettingsTag;
@@ -0,0 +1,6 @@
1
+ import { Meta, StoryObj } from '@storybook/react-vite';
2
+ import { default as SettingsTag } from './SettingsTag';
3
+ declare const meta: Meta<typeof SettingsTag>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const Default: Story;
@@ -15,6 +15,7 @@ export { default as GoBackTag } from './GoBackTag';
15
15
  export { default as MessageTag } from './MessageTag';
16
16
  export { default as ReportTag } from './ReportTag';
17
17
  export { default as BlockTag } from './BlockTag';
18
+ export { default as SettingsTag } from './SettingsTag';
18
19
  export * from './profiles';
19
20
  export * from './posts';
20
21
  export * from './locations';