@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 +6 -0
- package/README.md +1 -1
- package/dist/components/table/TableCol.d.ts +1 -0
- package/dist/index.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
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
|
|
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>>;
|