@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,9 +1,9 @@
|
|
|
1
1
|
import React, { ButtonHTMLAttributes, ReactElement } from 'react';
|
|
2
2
|
import { IconProps } from '../icons/generated';
|
|
3
|
-
export interface
|
|
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<
|
|
9
|
+
export declare const SelectChip: React.ForwardRefExoticComponent<SelectChipProps & React.RefAttributes<HTMLButtonElement>>;
|