wacomm 1.83.0 → 1.84.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/Tag.d.ts CHANGED
@@ -4,8 +4,9 @@ export interface TagProps {
4
4
  onClick?: ZeroFuncType;
5
5
  className?: string;
6
6
  labelSize?: TagLabelSize;
7
- color?: number;
7
+ isHighlighted?: boolean;
8
+ color?: number | string;
8
9
  }
9
10
  type TagLabelSize = 'lg' | 'sm' | 'xs' | 'base';
10
- declare function Tag({ label, onClick, className, labelSize, color }: TagProps): import("react/jsx-runtime").JSX.Element;
11
+ declare function Tag({ label, onClick, className, labelSize, isHighlighted, color }: TagProps): import("react/jsx-runtime").JSX.Element;
11
12
  export default Tag;
@@ -0,0 +1,13 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { default as Tag } from './Tag';
3
+ declare const meta: Meta<typeof Tag>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const Default: Story;
7
+ export declare const Highlighted: Story;
8
+ export declare const Small: Story;
9
+ export declare const ExtraSmall: Story;
10
+ export declare const Large: Story;
11
+ export declare const ColorVariants: Story;
12
+ export declare const HighlightedColorVariants: Story;
13
+ export declare const StringColor: Story;