@croquiscom/pds 8.16.2 → 8.16.3

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.16.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 04b3f84: TableCell에 span 적용된 경우, 마지막 요소로 인식하도록 변경
8
+
3
9
  ## 8.16.2
4
10
 
5
11
  ### Patch Changes
@@ -9,6 +9,8 @@ interface TableCellProps extends TdHTMLAttributes<HTMLTableCellElement> {
9
9
  align?: ColumnAlign;
10
10
  resize?: boolean;
11
11
  colSpan?: number;
12
+ isRowLast?: boolean;
13
+ isColumnLast?: boolean;
12
14
  }
13
15
  export declare const TableCell: React.ForwardRefExoticComponent<TableCellProps & React.RefAttributes<HTMLTableCellElement>>;
14
16
  export {};