wacomm 2.26.6 → 2.27.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/icons/RedirectionArrowIcon.d.ts +7 -0
- package/dist/{svgTags/UpArrowTag.stories.d.ts → icons/RedirectionArrowIcon.stories.d.ts} +2 -2
- package/dist/icons/index.d.ts +1 -0
- package/dist/svgTags/index.d.ts +0 -1
- package/dist/wacomm.cjs.js +17 -17
- package/dist/wacomm.css +1 -1
- package/dist/wacomm.es.js +3278 -3274
- package/package.json +2 -2
- package/dist/svgTags/UpArrowTag.d.ts +0 -6
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ZeroFuncType } from 'waujs';
|
|
2
|
+
interface RedirectionArrowIconProps {
|
|
3
|
+
onClick: ZeroFuncType;
|
|
4
|
+
className?: string;
|
|
5
|
+
}
|
|
6
|
+
declare function RedirectionArrowIcon({ onClick, className }: RedirectionArrowIconProps): import("react").JSX.Element;
|
|
7
|
+
export default RedirectionArrowIcon;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Meta, StoryObj } from '@storybook/react-vite';
|
|
2
|
-
import { default as
|
|
3
|
-
declare const meta: Meta<typeof
|
|
2
|
+
import { default as RedirectionArrowIcon } from './RedirectionArrowIcon';
|
|
3
|
+
declare const meta: Meta<typeof RedirectionArrowIcon>;
|
|
4
4
|
export default meta;
|
|
5
5
|
type Story = StoryObj<typeof meta>;
|
|
6
6
|
export declare const Default: Story;
|
package/dist/icons/index.d.ts
CHANGED
package/dist/svgTags/index.d.ts
CHANGED
|
@@ -9,7 +9,6 @@ export { default as MapTag } from './MapTag';
|
|
|
9
9
|
export { default as CopyTag } from './CopyTag';
|
|
10
10
|
export { default as PrivateTag } from './PrivateTag';
|
|
11
11
|
export { default as LogoutTag } from './LogoutTag';
|
|
12
|
-
export { default as UpArrowTag } from './UpArrowTag';
|
|
13
12
|
export { default as CommentTag } from './CommentTag';
|
|
14
13
|
export { default as GoBackTag } from './GoBackTag';
|
|
15
14
|
export { default as MessageTag } from './MessageTag';
|