@designbasekorea/ui 0.2.13 → 0.2.16

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
@@ -2994,6 +2994,7 @@ declare const Radio: React$1.ForwardRefExoticComponent<Omit<RadioProps, "ref"> &
2994
2994
 
2995
2995
  type RangeSliderSize = 's' | 'm' | 'l';
2996
2996
  type RangeSliderVariant = 'default' | 'primary' | 'success' | 'warning' | 'danger';
2997
+ type RangeSliderValuePosition = 'top' | 'left' | 'right' | 'bottom';
2997
2998
  interface RangeSliderProps {
2998
2999
  /** 현재 값 (단일 값) */
2999
3000
  value?: number;
@@ -3011,6 +3012,8 @@ interface RangeSliderProps {
3011
3012
  variant?: RangeSliderVariant;
3012
3013
  /** 수치 표시 여부 */
3013
3014
  showValue?: boolean;
3015
+ /** 수치 표시 위치 */
3016
+ valuePosition?: RangeSliderValuePosition;
3014
3017
  /** 마커 표시 여부 */
3015
3018
  showMarks?: boolean;
3016
3019
  /** 마커 값들 */