Skip to content

Commit

Permalink
(#0) TableContainer export 누락 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
baegofda committed Nov 28, 2023
1 parent 24e3459 commit 89f77d8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bbodek-ui",
"version": "0.0.58",
"version": "0.0.59",
"type": "module",
"author": "Bbodek",
"license": "MIT",
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export { default as TableTabItem } from "@/core/components/Tab/TableTab/TableTab
export { default as Table } from "@/core/components/Table/Table";
export { default as TableBody } from "@/core/components/Table/TableBody";
export { default as TableCell } from "@/core/components/Table/TableCell";
export { default as TableContainer } from "@/core/components/Table/TableContainer";
export { default as TableHead } from "@/core/components/Table/TableHead";
export { default as TableRow } from "@/core/components/Table/TableRow";
export { default as Tooltip } from "@/core/components/Tooltip";
Expand Down
4 changes: 2 additions & 2 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,8 @@ export default {
},
keyframes: {
"fade-in": {
"0%": { opacity: "0" },
"100%": { opacity: "1" },
"0%": { opacity: 0 },
"100%": { opacity: 1 },
},
popup: {
"0%": { transform: "translateY(16px)" },
Expand Down

0 comments on commit 89f77d8

Please sign in to comment.