Skip to content

Commit

Permalink
feat: Table export 추가 및 빌드 스크립트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
SeieunYoo committed Aug 18, 2024
1 parent 91c1b3b commit e2889e7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- main
- dev
pull_request:
types: [opened, ready_for_review, converted_to_draft]
types: [opened, ready_for_review, converted_to_draft, synchronize]
branches:
- main
- dev
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/components/Table/Table.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Meta, StoryObj } from "@storybook/react";

import { Table } from "..";
import Text from "../Text";
import Table from ".";

const meta: Meta<typeof Table> = {
title: "Shared/Table",
Expand Down
2 changes: 2 additions & 0 deletions packages/ui/src/components/Table/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,5 @@ Table.Right = ({ children }: PropsWithChildren) => {
</Flex>
);
};

export default Table;
23 changes: 3 additions & 20 deletions packages/ui/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,6 @@ progress {
--colors-mono-950: #121212;
--colors-white: #ffffff;
--colors-black: #000000;
--spacing-xxs: 0.25rem;
--spacing-xs: 0.5rem;
--border-widths-button: 1px;
--colors-primary: #368ff7;
--colors-success: #2a8642;
Expand Down Expand Up @@ -400,18 +398,6 @@ progress {
.h_80px:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
height: 80px;
}
.gap_xxs:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
gap: var(--spacing-xxs);
}
.gap_xs:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
gap: var(--spacing-xs);
}
.c_sub:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
color: var(--colors-sub);
}
.c_blue:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
color: blue;
}
.c_textBlack:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
color: var(--colors-text-black);
}
Expand Down Expand Up @@ -658,6 +644,9 @@ progress {
.c_errorBackground:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
color: var(--colors-error-background);
}
.c_sub:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
color: var(--colors-sub);
}
.c_outline:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
color: var(--colors-outline);
}
Expand Down Expand Up @@ -793,9 +782,3 @@ progress {
.jc_flex-end:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
justify-content: flex-end;
}
.flex-d_column:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
flex-direction: column;
}
.jc_center:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
justify-content: center;
}

0 comments on commit e2889e7

Please sign in to comment.