@croquiscom/pds 8.30.0 → 8.30.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 8.30.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 9ddca85: fix: 테이블 렌더링 버그 수정
8
+
3
9
  ## 8.30.0
4
10
 
5
11
  ### Minor Changes
package/README.md CHANGED
@@ -135,7 +135,7 @@ yarn storybook
135
135
  Github Action을 통해 자동으로 배포하고 있습니다.
136
136
 
137
137
  changeset 파일을 포함한 PR이 main에 머지되면, Github Action 워크플로우가 동작되며, 버전 배포를 위한 Version Packages PR이 생성됩니다.
138
- 해당 PR 머지하게 되면 Github Action의 워크플로우가 동작되며 패키지가 배포됩니다.
138
+ 해당 PR 셀프로 Approve 후 머지하게 되면 Github Action의 워크플로우가 동작되며 패키지가 배포됩니다.
139
139
 
140
140
  #### Github Action을 통한 배포가 불가능할 경우
141
141
 
@@ -12,6 +12,7 @@ interface TableColProps extends ThHTMLAttributes<HTMLTableCellElement> {
12
12
  resize?: boolean;
13
13
  align?: ColumnAlign;
14
14
  sortProps?: TableSortIndicatorProps;
15
+ showRightBorder?: boolean;
15
16
  onClick?: () => void;
16
17
  }
17
18
  export declare const TableCol: React.ForwardRefExoticComponent<TableColProps & React.RefAttributes<HTMLTableCellElement>>;