Skip to content

Commit 43a666b

Browse files
committed
updated as per leos suggestions
- bumped version to `2.0.0` - added avatar component export to lib index - added avatar types export to lib types index
1 parent b3a490f commit 43a666b

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@code4rena/components-library",
3-
"version": "1.2.0",
3+
"version": "2.0.0",
44
"description": "Code4rena's official components library ",
55
"types": "./dist/lib.d.ts",
66
"exports": {

src/lib/index.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
export * from "./Alert";
2+
export * from "./Avatar";
23
export * from "./Button";
4+
export * from "./Card";
35
export * from "./ContestStatus";
46
export * from "./ContestTile";
57
export * from "./Dropdown";
68
export * from "./EyebrowBar";
79
export * from "./Input";
810
export * from "./NavBar";
9-
export * from "./Tag";
10-
export * from "./Card";
11+
export * from "./Tag";

src/lib/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
export * from "./Alert/Alert.types";
2+
export * from "./Avatar/Avatar.types";
23
export * from "./Button/Button.types";
34
export * from "./Card/Card.types";
45
export * from "./ContestStatus/ContestStatus.types";

0 commit comments

Comments
 (0)