@luscii-healthtech/web-ui 0.4.0 → 0.4.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.
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { TagSize } from "./TagGroup";
2
+ import { TagSize } from "./Tag.utils";
3
3
  export declare enum TagColorTheme {
4
4
  Red = "red",
5
5
  Amber = "amber",
@@ -0,0 +1,4 @@
1
+ export declare enum TagSize {
2
+ "small" = "small",
3
+ "base" = "base"
4
+ }
@@ -1,13 +1,10 @@
1
1
  /// <reference types="react" />
2
2
  import { TagProps } from "./Tag";
3
- export declare enum TagSize {
4
- "small" = "small",
5
- "base" = "base"
6
- }
3
+ import { TagSize } from "./Tag.utils";
7
4
  interface TagGroupProps {
8
5
  tags: TagProps[];
9
6
  tagSize?: TagSize;
10
7
  className?: string;
11
8
  }
12
- declare const TagGroup: ({ tags, tagSize, className }: TagGroupProps) => JSX.Element;
9
+ declare const TagGroup: ({ tags, tagSize, className, }: TagGroupProps) => JSX.Element;
13
10
  export default TagGroup;