@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.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
  /** 기본 색상 */