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.
Files changed (60) hide show
  1. package/dist/{index-rs3rPsJU.js → index-BmAcoJrZ.js} +79 -79
  2. package/dist/{index-c6q1So03.mjs → index-CpXkGSDD.mjs} +13012 -12493
  3. package/dist/index.d.ts +1 -0
  4. package/dist/interests/index.d.ts +4 -0
  5. package/dist/interests/interestIcon/CardGamesInterestIcons.d.ts +6 -0
  6. package/dist/interests/interestIcon/CardGamesInterestIcons.stories.d.ts +7 -0
  7. package/dist/interests/interestIcon/InterestIcon.d.ts +9 -0
  8. package/dist/interests/interestIcon/LeisureInterestIcons.d.ts +6 -0
  9. package/dist/interests/interestIcon/LeisureInterestIcons.stories.d.ts +7 -0
  10. package/dist/interests/interestIcon/MusicInterestIcons.d.ts +6 -0
  11. package/dist/interests/interestIcon/MusicInterestIcons.stories.d.ts +7 -0
  12. package/dist/interests/interestIcon/PetsInterestIcons.d.ts +6 -0
  13. package/dist/interests/interestIcon/PetsInterestIcons.stories.d.ts +7 -0
  14. package/dist/interests/interestIcon/SportsInterestIcons.d.ts +6 -0
  15. package/dist/interests/interestIcon/SportsInterestIcons.stories.d.ts +7 -0
  16. package/dist/interests/interestIcon/TravelInterestIcons.d.ts +6 -0
  17. package/dist/interests/interestIcon/TravelInterestIcons.stories.d.ts +7 -0
  18. package/dist/interests/interestIcon/index.d.ts +7 -0
  19. package/dist/interests/interestIconTooltip/CardGamesInterestIconTooltips.d.ts +8 -0
  20. package/dist/interests/interestIconTooltip/CardGamesInterestIconTooltips.stories.d.ts +7 -0
  21. package/dist/interests/interestIconTooltip/LeisureInterestIconTooltips.d.ts +8 -0
  22. package/dist/interests/interestIconTooltip/LeisureInterestIconTooltips.stories.d.ts +7 -0
  23. package/dist/interests/interestIconTooltip/MusicInterestIconTooltips.d.ts +8 -0
  24. package/dist/interests/interestIconTooltip/MusicInterestIconTooltips.stories.d.ts +7 -0
  25. package/dist/interests/interestIconTooltip/PetsInterestIconTooltips.d.ts +8 -0
  26. package/dist/interests/interestIconTooltip/PetsInterestIconTooltips.stories.d.ts +7 -0
  27. package/dist/interests/interestIconTooltip/SportsInterestIconTooltips.d.ts +8 -0
  28. package/dist/interests/interestIconTooltip/SportsInterestIconTooltips.stories.d.ts +7 -0
  29. package/dist/interests/interestIconTooltip/TravelInterestIconTooltips.d.ts +8 -0
  30. package/dist/interests/interestIconTooltip/TravelInterestIconTooltips.stories.d.ts +7 -0
  31. package/dist/interests/interestIconTooltip/index.d.ts +7 -0
  32. package/dist/interests/interestTag/CardGamesInterestTags.d.ts +6 -0
  33. package/dist/interests/interestTag/CardGamesInterestTags.stories.d.ts +7 -0
  34. package/dist/interests/interestTag/LeisureInterestTags.d.ts +6 -0
  35. package/dist/interests/interestTag/LeisureInterestTags.stories.d.ts +7 -0
  36. package/dist/interests/interestTag/MusicInterestTags.d.ts +6 -0
  37. package/dist/interests/interestTag/MusicInterestTags.stories.d.ts +7 -0
  38. package/dist/interests/interestTag/PetsInterestTags.d.ts +6 -0
  39. package/dist/interests/interestTag/PetsInterestTags.stories.d.ts +7 -0
  40. package/dist/interests/interestTag/SportsInterestTags.d.ts +6 -0
  41. package/dist/interests/interestTag/SportsInterestTags.stories.d.ts +7 -0
  42. package/dist/interests/interestTag/TravelInterestTags.d.ts +6 -0
  43. package/dist/interests/interestTag/TravelInterestTags.stories.d.ts +7 -0
  44. package/dist/interests/interestTag/index.d.ts +7 -0
  45. package/dist/{mapbox-gl-5oox9TYb.mjs → mapbox-gl-CRf3K4Li.mjs} +1 -1
  46. package/dist/{mapbox-gl-BOh-KSHi.js → mapbox-gl-xdC_jU2Q.js} +1 -1
  47. package/dist/{maplibre-gl-BlfHO_gj.mjs → maplibre-gl-Vo5Ls2Y8.mjs} +1 -1
  48. package/dist/{maplibre-gl-BowYfrF-.js → maplibre-gl-hQUwaAr3.js} +1 -1
  49. package/dist/svgTags/index.d.ts +0 -3
  50. package/dist/tootips/index.d.ts +0 -1
  51. package/dist/wacomm.cjs.js +1 -1
  52. package/dist/wacomm.css +1 -1
  53. package/dist/wacomm.es.js +146 -128
  54. package/package.json +2 -2
  55. package/dist/svgTags/VerticalStaticInterestTag.d.ts +0 -11
  56. /package/dist/{svgTags → interests}/CategoryTag.d.ts +0 -0
  57. /package/dist/{svgTags → interests}/CategoryTag.stories.d.ts +0 -0
  58. /package/dist/{tootips → interests/interestIconTooltip}/InterestIconTooltip.d.ts +0 -0
  59. /package/dist/{svgTags → interests/interestTag}/InterestTag.d.ts +0 -0
  60. /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,4 @@
1
+ export { default as CategoryTag } from './CategoryTag';
2
+ export * from './interestIcon';
3
+ export * from './interestTag';
4
+ export * from './interestIconTooltip';
@@ -0,0 +1,6 @@
1
+ interface CardGamesInterestIconsProps {
2
+ isHighlighted?: boolean;
3
+ className?: string;
4
+ }
5
+ export default function CardGamesInterestIcons({ isHighlighted, className }: CardGamesInterestIconsProps): import("react/jsx-runtime").JSX.Element;
6
+ export {};
@@ -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,6 @@
1
+ interface LeisureInterestIconsProps {
2
+ isHighlighted?: boolean;
3
+ className?: string;
4
+ }
5
+ export default function LeisureInterestIcons({ isHighlighted, className }: LeisureInterestIconsProps): import("react/jsx-runtime").JSX.Element;
6
+ 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,6 @@
1
+ interface MusicInterestIconsProps {
2
+ isHighlighted?: boolean;
3
+ className?: string;
4
+ }
5
+ export default function MusicInterestIcons({ isHighlighted, className }: MusicInterestIconsProps): import("react/jsx-runtime").JSX.Element;
6
+ export {};
@@ -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,6 @@
1
+ interface PetsInterestIconsProps {
2
+ isHighlighted?: boolean;
3
+ className?: string;
4
+ }
5
+ export default function PetsInterestIcons({ isHighlighted, className }: PetsInterestIconsProps): import("react/jsx-runtime").JSX.Element;
6
+ export {};
@@ -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,6 @@
1
+ interface SportsInterestIconsProps {
2
+ isHighlighted?: boolean;
3
+ className?: string;
4
+ }
5
+ export default function SportsInterestIcons({ isHighlighted, className }: SportsInterestIconsProps): import("react/jsx-runtime").JSX.Element;
6
+ export {};
@@ -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,6 @@
1
+ interface TravelInterestIconsProps {
2
+ isHighlighted?: boolean;
3
+ className?: string;
4
+ }
5
+ export default function TravelInterestIcons({ isHighlighted, className }: TravelInterestIconsProps): import("react/jsx-runtime").JSX.Element;
6
+ export {};
@@ -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,6 @@
1
+ interface CardGamesInterestTagsProps {
2
+ isHighlighted?: boolean;
3
+ className?: string;
4
+ }
5
+ export default function CardGamesInterestTags({ isHighlighted, className }: CardGamesInterestTagsProps): import("react/jsx-runtime").JSX.Element;
6
+ export {};
@@ -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,6 @@
1
+ interface LeisureInterestTagsProps {
2
+ isHighlighted?: boolean;
3
+ className?: string;
4
+ }
5
+ export default function LeisureInterestTags({ isHighlighted, className }: LeisureInterestTagsProps): import("react/jsx-runtime").JSX.Element;
6
+ export {};
@@ -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,6 @@
1
+ interface MusicInterestTagsProps {
2
+ isHighlighted?: boolean;
3
+ className?: string;
4
+ }
5
+ export default function MusicInterestTags({ isHighlighted, className }: MusicInterestTagsProps): import("react/jsx-runtime").JSX.Element;
6
+ export {};
@@ -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,6 @@
1
+ interface PetsInterestTagsProps {
2
+ isHighlighted?: boolean;
3
+ className?: string;
4
+ }
5
+ export default function PetsInterestTags({ isHighlighted, className }: PetsInterestTagsProps): import("react/jsx-runtime").JSX.Element;
6
+ export {};
@@ -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,6 @@
1
+ interface SportsInterestTagsProps {
2
+ isHighlighted?: boolean;
3
+ className?: string;
4
+ }
5
+ export default function SportsInterestTags({ isHighlighted, className }: SportsInterestTagsProps): import("react/jsx-runtime").JSX.Element;
6
+ export {};
@@ -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,6 @@
1
+ interface TravelInterestTagsProps {
2
+ isHighlighted?: boolean;
3
+ className?: string;
4
+ }
5
+ export default function TravelInterestTags({ isHighlighted, className }: TravelInterestTagsProps): import("react/jsx-runtime").JSX.Element;
6
+ export {};
@@ -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';
@@ -1,4 +1,4 @@
1
- import { g as qT } from "./index-c6q1So03.mjs";
1
+ import { g as qT } from "./index-CpXkGSDD.mjs";
2
2
  function $T(Cu, gm) {
3
3
  for (var Io = 0; Io < gm.length; Io++) {
4
4
  const gs = gm[Io];