@designbasekorea/ui 0.2.12 → 0.2.13
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/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.esm.css +1 -1
- package/dist/index.esm.css.map +1 -1
- package/dist/index.esm.js +7 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +7 -2
- package/dist/index.js.map +1 -1
- package/dist/index.umd.css +1 -1
- package/dist/index.umd.css.map +1 -1
- package/dist/index.umd.js +7 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1054,11 +1054,14 @@ declare const Chip: React$1.FC<ChipProps>;
|
|
|
1054
1054
|
|
|
1055
1055
|
type ColorPickerSize = 's' | 'm' | 'l';
|
|
1056
1056
|
type ColorPickerType = 'dropdown' | 'modal';
|
|
1057
|
+
type ColorPickerPosition = 'bottom-left' | 'bottom-right' | 'top-left' | 'top-right';
|
|
1057
1058
|
interface ColorPickerProps {
|
|
1058
1059
|
/** 컬러 피커 크기 */
|
|
1059
1060
|
size?: ColorPickerSize;
|
|
1060
1061
|
/** 컬러 피커 타입 (dropdown/modal) */
|
|
1061
1062
|
type?: ColorPickerType;
|
|
1063
|
+
/** 드롭다운 위치 (dropdown 타입일 때만 적용) */
|
|
1064
|
+
position?: ColorPickerPosition;
|
|
1062
1065
|
/** 현재 선택된 색상 (HEX) */
|
|
1063
1066
|
value?: string;
|
|
1064
1067
|
/** 기본 색상 */
|