@designbasekorea/ui 0.5.6 → 0.6.0

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
@@ -1069,7 +1069,7 @@ declare const Chip: React$1.FC<ChipProps>;
1069
1069
 
1070
1070
  type ColorPickerSize = 's' | 'm' | 'l';
1071
1071
  type ColorPickerType = 'dropdown' | 'modal';
1072
- type ColorPickerPosition = 'bottom-left' | 'bottom-right' | 'top-left' | 'top-right';
1072
+ type ColorPickerPosition = 'bottom-start' | 'bottom-end' | 'top-start' | 'top-end';
1073
1073
  interface ColorPickerProps {
1074
1074
  size?: ColorPickerSize;
1075
1075
  type?: ColorPickerType;
@@ -1329,6 +1329,7 @@ interface DatePickerProps {
1329
1329
  className?: string;
1330
1330
  disabled?: boolean;
1331
1331
  readonly?: boolean;
1332
+ dropdownPosition?: 'bottom-start' | 'bottom-end';
1332
1333
  inline?: boolean;
1333
1334
  }
1334
1335
  declare const DatePicker: React$1.FC<DatePickerProps>;
@@ -4119,6 +4120,7 @@ interface TimePickerProps {
4119
4120
  minuteStep?: number;
4120
4121
  disabled?: boolean;
4121
4122
  readonly?: boolean;
4123
+ dropdownPosition?: 'bottom-start' | 'bottom-end';
4122
4124
  onChange?: (time24: string) => void;
4123
4125
  className?: string;
4124
4126
  }