wacomm 2.29.2 → 2.31.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/icons/DeleteIcon.d.ts +8 -0
- package/dist/icons/DeleteIcon.stories.d.ts +7 -0
- package/dist/icons/RestartIcon.d.ts +8 -0
- package/dist/icons/RestartIcon.stories.d.ts +7 -0
- package/dist/icons/index.d.ts +2 -0
- package/dist/svgTags/tags/DeleteTag.d.ts +8 -0
- package/dist/svgTags/tags/DeleteTag.stories.d.ts +6 -0
- package/dist/svgTags/tags/RestartTag.d.ts +8 -0
- package/dist/svgTags/tags/RestartTag.stories.d.ts +6 -0
- package/dist/svgTags/tags/index.d.ts +2 -0
- package/dist/wacomm.cjs.js +14 -14
- package/dist/wacomm.css +1 -1
- package/dist/wacomm.es.js +3547 -3428
- package/package.json +2 -3
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ZeroFuncType } from 'waujs';
|
|
2
|
+
interface DeleteIconProps {
|
|
3
|
+
onClick?: ZeroFuncType;
|
|
4
|
+
className?: string;
|
|
5
|
+
hidden?: boolean;
|
|
6
|
+
}
|
|
7
|
+
declare function DeleteIcon({ onClick, className, hidden }: DeleteIconProps): import("react").JSX.Element;
|
|
8
|
+
export default DeleteIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react-vite';
|
|
2
|
+
import { default as DeleteIcon } from './DeleteIcon';
|
|
3
|
+
declare const meta: Meta<typeof DeleteIcon>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Hidden: Story;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ZeroFuncType } from 'waujs';
|
|
2
|
+
interface RestartIconProps {
|
|
3
|
+
onClick?: ZeroFuncType;
|
|
4
|
+
className?: string;
|
|
5
|
+
hidden?: boolean;
|
|
6
|
+
}
|
|
7
|
+
declare function RestartIcon({ onClick, className, hidden }: RestartIconProps): import("react").JSX.Element;
|
|
8
|
+
export default RestartIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react-vite';
|
|
2
|
+
import { default as RestartIcon } from './RestartIcon';
|
|
3
|
+
declare const meta: Meta<typeof RestartIcon>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Hidden: Story;
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export { default as EditIcon } from './EditIcon';
|
|
2
2
|
export { default as CloseIcon } from './CloseIcon';
|
|
3
|
+
export { default as DeleteIcon } from './DeleteIcon';
|
|
4
|
+
export { default as RestartIcon } from './RestartIcon';
|
|
3
5
|
export { default as SendIcon } from './SendIcon';
|
|
4
6
|
export { default as RedirectionArrowIcon } from './RedirectionArrowIcon';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ZeroFuncType } from 'waujs';
|
|
2
|
+
interface DeleteTagProps {
|
|
3
|
+
label?: string;
|
|
4
|
+
onClick?: ZeroFuncType;
|
|
5
|
+
className?: string;
|
|
6
|
+
}
|
|
7
|
+
declare function DeleteTag({ label, onClick, className }: DeleteTagProps): import("react").JSX.Element;
|
|
8
|
+
export default DeleteTag;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ZeroFuncType } from 'waujs';
|
|
2
|
+
interface RestartTagProps {
|
|
3
|
+
label?: string;
|
|
4
|
+
onClick?: ZeroFuncType;
|
|
5
|
+
className?: string;
|
|
6
|
+
}
|
|
7
|
+
declare function RestartTag({ label, onClick, className }: RestartTagProps): import("react").JSX.Element;
|
|
8
|
+
export default RestartTag;
|
|
@@ -16,6 +16,8 @@ export { default as MessageTag } from './MessageTag';
|
|
|
16
16
|
export { default as ReportTag } from './ReportTag';
|
|
17
17
|
export { default as BlockTag } from './BlockTag';
|
|
18
18
|
export { default as SettingsTag } from './SettingsTag';
|
|
19
|
+
export { default as DeleteTag } from './DeleteTag';
|
|
20
|
+
export { default as RestartTag } from './RestartTag';
|
|
19
21
|
export * from './profiles';
|
|
20
22
|
export * from './posts';
|
|
21
23
|
export * from './locations';
|