@croquiscom/pds 8.16.1 → 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,17 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 8.16.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 04b3f84: TableCell에 span 적용된 경우, 마지막 요소로 인식하도록 변경
8
+
9
+ ## 8.16.2
10
+
11
+ ### Patch Changes
12
+
13
+ - 7b6aada: SelectChip export 추가
14
+
3
15
  ## 8.16.1
4
16
 
5
17
  ### Patch Changes
@@ -1,9 +1,9 @@
1
1
  import React, { ButtonHTMLAttributes, ReactElement } from 'react';
2
2
  import { IconProps } from '../icons/generated';
3
- export interface ChipProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, 'type' | 'children'> {
3
+ export interface SelectChipProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, 'type' | 'children'> {
4
4
  label: string;
5
5
  selected?: boolean;
6
6
  /** label 좌측 렌더링될 Icon (size, 변경 가능한 color 고정) */
7
7
  leftIcon?: ReactElement<IconProps>;
8
8
  }
9
- export declare const SelectChip: React.ForwardRefExoticComponent<ChipProps & React.RefAttributes<HTMLButtonElement>>;
9
+ export declare const SelectChip: React.ForwardRefExoticComponent<SelectChipProps & React.RefAttributes<HTMLButtonElement>>;
@@ -1 +1,2 @@
1
1
  export * from './Chip';
2
+ export * from './SelectChip';
@@ -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 {};