@croquiscom/pds 8.16.1 → 8.16.2

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.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 7b6aada: SelectChip export 추가
8
+
3
9
  ## 8.16.1
4
10
 
5
11
  ### 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';