wacomm 2.12.3 → 2.13.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/{index-rs3rPsJU.js → index-BmAcoJrZ.js} +79 -79
- package/dist/{index-c6q1So03.mjs → index-CpXkGSDD.mjs} +13012 -12493
- package/dist/index.d.ts +1 -0
- package/dist/interests/index.d.ts +4 -0
- package/dist/interests/interestIcon/CardGamesInterestIcons.d.ts +6 -0
- package/dist/interests/interestIcon/CardGamesInterestIcons.stories.d.ts +7 -0
- package/dist/interests/interestIcon/InterestIcon.d.ts +9 -0
- package/dist/interests/interestIcon/LeisureInterestIcons.d.ts +6 -0
- package/dist/interests/interestIcon/LeisureInterestIcons.stories.d.ts +7 -0
- package/dist/interests/interestIcon/MusicInterestIcons.d.ts +6 -0
- package/dist/interests/interestIcon/MusicInterestIcons.stories.d.ts +7 -0
- package/dist/interests/interestIcon/PetsInterestIcons.d.ts +6 -0
- package/dist/interests/interestIcon/PetsInterestIcons.stories.d.ts +7 -0
- package/dist/interests/interestIcon/SportsInterestIcons.d.ts +6 -0
- package/dist/interests/interestIcon/SportsInterestIcons.stories.d.ts +7 -0
- package/dist/interests/interestIcon/TravelInterestIcons.d.ts +6 -0
- package/dist/interests/interestIcon/TravelInterestIcons.stories.d.ts +7 -0
- package/dist/interests/interestIcon/index.d.ts +7 -0
- package/dist/interests/interestIconTooltip/CardGamesInterestIconTooltips.d.ts +8 -0
- package/dist/interests/interestIconTooltip/CardGamesInterestIconTooltips.stories.d.ts +7 -0
- package/dist/interests/interestIconTooltip/LeisureInterestIconTooltips.d.ts +8 -0
- package/dist/interests/interestIconTooltip/LeisureInterestIconTooltips.stories.d.ts +7 -0
- package/dist/interests/interestIconTooltip/MusicInterestIconTooltips.d.ts +8 -0
- package/dist/interests/interestIconTooltip/MusicInterestIconTooltips.stories.d.ts +7 -0
- package/dist/interests/interestIconTooltip/PetsInterestIconTooltips.d.ts +8 -0
- package/dist/interests/interestIconTooltip/PetsInterestIconTooltips.stories.d.ts +7 -0
- package/dist/interests/interestIconTooltip/SportsInterestIconTooltips.d.ts +8 -0
- package/dist/interests/interestIconTooltip/SportsInterestIconTooltips.stories.d.ts +7 -0
- package/dist/interests/interestIconTooltip/TravelInterestIconTooltips.d.ts +8 -0
- package/dist/interests/interestIconTooltip/TravelInterestIconTooltips.stories.d.ts +7 -0
- package/dist/interests/interestIconTooltip/index.d.ts +7 -0
- package/dist/interests/interestTag/CardGamesInterestTags.d.ts +6 -0
- package/dist/interests/interestTag/CardGamesInterestTags.stories.d.ts +7 -0
- package/dist/interests/interestTag/LeisureInterestTags.d.ts +6 -0
- package/dist/interests/interestTag/LeisureInterestTags.stories.d.ts +7 -0
- package/dist/interests/interestTag/MusicInterestTags.d.ts +6 -0
- package/dist/interests/interestTag/MusicInterestTags.stories.d.ts +7 -0
- package/dist/interests/interestTag/PetsInterestTags.d.ts +6 -0
- package/dist/interests/interestTag/PetsInterestTags.stories.d.ts +7 -0
- package/dist/interests/interestTag/SportsInterestTags.d.ts +6 -0
- package/dist/interests/interestTag/SportsInterestTags.stories.d.ts +7 -0
- package/dist/interests/interestTag/TravelInterestTags.d.ts +6 -0
- package/dist/interests/interestTag/TravelInterestTags.stories.d.ts +7 -0
- package/dist/interests/interestTag/index.d.ts +7 -0
- package/dist/{mapbox-gl-5oox9TYb.mjs → mapbox-gl-CRf3K4Li.mjs} +1 -1
- package/dist/{mapbox-gl-BOh-KSHi.js → mapbox-gl-xdC_jU2Q.js} +1 -1
- package/dist/{maplibre-gl-BlfHO_gj.mjs → maplibre-gl-Vo5Ls2Y8.mjs} +1 -1
- package/dist/{maplibre-gl-BowYfrF-.js → maplibre-gl-hQUwaAr3.js} +1 -1
- package/dist/svgTags/index.d.ts +0 -3
- package/dist/tootips/index.d.ts +0 -1
- package/dist/wacomm.cjs.js +1 -1
- package/dist/wacomm.css +1 -1
- package/dist/wacomm.es.js +146 -128
- package/package.json +2 -2
- package/dist/svgTags/VerticalStaticInterestTag.d.ts +0 -11
- /package/dist/{svgTags → interests}/CategoryTag.d.ts +0 -0
- /package/dist/{svgTags → interests}/CategoryTag.stories.d.ts +0 -0
- /package/dist/{tootips → interests/interestIconTooltip}/InterestIconTooltip.d.ts +0 -0
- /package/dist/{svgTags → interests/interestTag}/InterestTag.d.ts +0 -0
- /package/dist/{svgTags → interests/interestTag}/InterestTag.stories.d.ts +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -37,6 +37,7 @@ export * from './pickers';
|
|
|
37
37
|
export * from './static';
|
|
38
38
|
export * from './errors';
|
|
39
39
|
export * from './tags';
|
|
40
|
+
export * from './interests';
|
|
40
41
|
export { default as Text } from './Text';
|
|
41
42
|
export { default as ShowMore } from './ShowMore';
|
|
42
43
|
export { default as RedStar } from './RedStar';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as CardGamesInterestIcons } from './CardGamesInterestIcons';
|
|
3
|
+
declare const meta: Meta<typeof CardGamesInterestIcons>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Highlighted: Story;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { CategoryType, InterestType } from 'wenum';
|
|
2
|
+
interface InterestIconProps {
|
|
3
|
+
isHighlighted: boolean;
|
|
4
|
+
className?: string;
|
|
5
|
+
categoryType: CategoryType;
|
|
6
|
+
interestType: InterestType;
|
|
7
|
+
}
|
|
8
|
+
export default function InterestIcon({ isHighlighted, className, categoryType, interestType }: InterestIconProps): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as LeisureInterestIcons } from './LeisureInterestIcons';
|
|
3
|
+
declare const meta: Meta<typeof LeisureInterestIcons>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Highlighted: Story;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as MusicInterestIcons } from './MusicInterestIcons';
|
|
3
|
+
declare const meta: Meta<typeof MusicInterestIcons>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Highlighted: Story;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as PetsInterestIcons } from './PetsInterestIcons';
|
|
3
|
+
declare const meta: Meta<typeof PetsInterestIcons>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Highlighted: Story;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as SportsInterestIcons } from './SportsInterestIcons';
|
|
3
|
+
declare const meta: Meta<typeof SportsInterestIcons>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Highlighted: Story;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as TravelInterestIcons } from './TravelInterestIcons';
|
|
3
|
+
declare const meta: Meta<typeof TravelInterestIcons>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Highlighted: Story;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { default as InterestIcon } from './InterestIcon';
|
|
2
|
+
export { default as SportsInterestIcons } from './SportsInterestIcons';
|
|
3
|
+
export { default as PetsInterestIcons } from './PetsInterestIcons';
|
|
4
|
+
export { default as CardGamesInterestIcons } from './CardGamesInterestIcons';
|
|
5
|
+
export { default as MusicInterestIcons } from './MusicInterestIcons';
|
|
6
|
+
export { default as TravelInterestIcons } from './TravelInterestIcons';
|
|
7
|
+
export { default as LeisureInterestIcons } from './LeisureInterestIcons';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ZeroFuncType } from 'waujs';
|
|
2
|
+
interface CardGamesInterestIconTooltipsProps {
|
|
3
|
+
isHighlighted?: boolean;
|
|
4
|
+
onClick?: ZeroFuncType;
|
|
5
|
+
className?: string;
|
|
6
|
+
}
|
|
7
|
+
export default function CardGamesInterestIconTooltips({ isHighlighted, onClick, className }: CardGamesInterestIconTooltipsProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as CardGamesInterestIconTooltips } from './CardGamesInterestIconTooltips';
|
|
3
|
+
declare const meta: Meta<typeof CardGamesInterestIconTooltips>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Highlighted: Story;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ZeroFuncType } from 'waujs';
|
|
2
|
+
interface LeisureInterestIconTooltipsProps {
|
|
3
|
+
isHighlighted?: boolean;
|
|
4
|
+
onClick?: ZeroFuncType;
|
|
5
|
+
className?: string;
|
|
6
|
+
}
|
|
7
|
+
export default function LeisureInterestIconTooltips({ isHighlighted, onClick, className }: LeisureInterestIconTooltipsProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as LeisureInterestIconTooltips } from './LeisureInterestIconTooltips';
|
|
3
|
+
declare const meta: Meta<typeof LeisureInterestIconTooltips>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Highlighted: Story;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ZeroFuncType } from 'waujs';
|
|
2
|
+
interface MusicInterestIconTooltipsProps {
|
|
3
|
+
isHighlighted?: boolean;
|
|
4
|
+
onClick?: ZeroFuncType;
|
|
5
|
+
className?: string;
|
|
6
|
+
}
|
|
7
|
+
export default function MusicInterestIconTooltips({ isHighlighted, onClick, className }: MusicInterestIconTooltipsProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as MusicInterestIconTooltips } from './MusicInterestIconTooltips';
|
|
3
|
+
declare const meta: Meta<typeof MusicInterestIconTooltips>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Highlighted: Story;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ZeroFuncType } from 'waujs';
|
|
2
|
+
interface PetsInterestIconTooltipsProps {
|
|
3
|
+
isHighlighted?: boolean;
|
|
4
|
+
onClick?: ZeroFuncType;
|
|
5
|
+
className?: string;
|
|
6
|
+
}
|
|
7
|
+
export default function PetsInterestIconTooltips({ isHighlighted, onClick, className }: PetsInterestIconTooltipsProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as PetsInterestIconTooltips } from './PetsInterestIconTooltips';
|
|
3
|
+
declare const meta: Meta<typeof PetsInterestIconTooltips>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Highlighted: Story;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ZeroFuncType } from 'waujs';
|
|
2
|
+
interface SportsInterestIconTooltipsProps {
|
|
3
|
+
isHighlighted?: boolean;
|
|
4
|
+
onClick?: ZeroFuncType;
|
|
5
|
+
className?: string;
|
|
6
|
+
}
|
|
7
|
+
export default function SportsInterestIconTooltips({ isHighlighted, onClick, className }: SportsInterestIconTooltipsProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as SportsInterestIconTooltips } from './SportsInterestIconTooltips';
|
|
3
|
+
declare const meta: Meta<typeof SportsInterestIconTooltips>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Highlighted: Story;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ZeroFuncType } from 'waujs';
|
|
2
|
+
interface TravelInterestIconTooltipsProps {
|
|
3
|
+
isHighlighted?: boolean;
|
|
4
|
+
onClick?: ZeroFuncType;
|
|
5
|
+
className?: string;
|
|
6
|
+
}
|
|
7
|
+
export default function TravelInterestIconTooltips({ isHighlighted, onClick, className }: TravelInterestIconTooltipsProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as TravelInterestIconTooltips } from './TravelInterestIconTooltips';
|
|
3
|
+
declare const meta: Meta<typeof TravelInterestIconTooltips>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Highlighted: Story;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { default as InterestIconTooltip } from './InterestIconTooltip';
|
|
2
|
+
export { default as SportsInterestIconTooltips } from './SportsInterestIconTooltips';
|
|
3
|
+
export { default as PetsInterestIconTooltips } from './PetsInterestIconTooltips';
|
|
4
|
+
export { default as CardGamesInterestIconTooltips } from './CardGamesInterestIconTooltips';
|
|
5
|
+
export { default as MusicInterestIconTooltips } from './MusicInterestIconTooltips';
|
|
6
|
+
export { default as TravelInterestIconTooltips } from './TravelInterestIconTooltips';
|
|
7
|
+
export { default as LeisureInterestIconTooltips } from './LeisureInterestIconTooltips';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as CardGamesInterestTags } from './CardGamesInterestTags';
|
|
3
|
+
declare const meta: Meta<typeof CardGamesInterestTags>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Highlighted: Story;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as LeisureInterestTags } from './LeisureInterestTags';
|
|
3
|
+
declare const meta: Meta<typeof LeisureInterestTags>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Highlighted: Story;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as MusicInterestTags } from './MusicInterestTags';
|
|
3
|
+
declare const meta: Meta<typeof MusicInterestTags>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Highlighted: Story;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as PetsInterestTags } from './PetsInterestTags';
|
|
3
|
+
declare const meta: Meta<typeof PetsInterestTags>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Highlighted: Story;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as SportsInterestTags } from './SportsInterestTags';
|
|
3
|
+
declare const meta: Meta<typeof SportsInterestTags>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Highlighted: Story;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as TravelInterestTags } from './TravelInterestTags';
|
|
3
|
+
declare const meta: Meta<typeof TravelInterestTags>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Highlighted: Story;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { default as InterestTag } from './InterestTag';
|
|
2
|
+
export { default as SportsInterestTags } from './SportsInterestTags';
|
|
3
|
+
export { default as PetsInterestTags } from './PetsInterestTags';
|
|
4
|
+
export { default as CardGamesInterestTags } from './CardGamesInterestTags';
|
|
5
|
+
export { default as MusicInterestTags } from './MusicInterestTags';
|
|
6
|
+
export { default as TravelInterestTags } from './TravelInterestTags';
|
|
7
|
+
export { default as LeisureInterestTags } from './LeisureInterestTags';
|