@x-plat/design-system 0.3.7 → 0.3.8

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.
@@ -8,6 +8,7 @@ interface InputDatePickerProps {
8
8
  minDate?: Date;
9
9
  maxDate?: Date;
10
10
  disabled?: boolean;
11
+ locale?: "ko" | "en";
11
12
  }
12
13
  declare const InputDatePicker: React.FC<InputDatePickerProps>;
13
14
 
@@ -31,6 +32,7 @@ interface RangePickerProps$1 {
31
32
  }
32
33
  interface PopupPickerBaseProps {
33
34
  component: React.ReactElement<React.HTMLAttributes<HTMLElement>>;
35
+ locale?: "ko" | "en";
34
36
  }
35
37
  type PopupPickerProps = PopupPickerBaseProps & (SinglePickerProps | RangePickerProps$1);
36
38
  declare const PopupPicker: React.FC<PopupPickerProps>;
@@ -44,6 +46,7 @@ interface RangePickerProps extends Partial<ColorProps> {
44
46
  }) => void;
45
47
  minDate?: Date;
46
48
  maxDate?: Date;
49
+ locale?: "ko" | "en";
47
50
  }
48
51
  declare const RangePicker: {
49
52
  (props: RangePickerProps): react_jsx_runtime.JSX.Element;
@@ -56,6 +59,7 @@ interface SingleDatePickerProps extends Partial<ColorProps> {
56
59
  minDate?: Date;
57
60
  maxDate?: Date;
58
61
  highlightDates?: Date[];
62
+ locale?: "ko" | "en";
59
63
  }
60
64
  declare const SingleDatePicker: {
61
65
  (props: SingleDatePickerProps): react_jsx_runtime.JSX.Element;
@@ -8,6 +8,7 @@ interface InputDatePickerProps {
8
8
  minDate?: Date;
9
9
  maxDate?: Date;
10
10
  disabled?: boolean;
11
+ locale?: "ko" | "en";
11
12
  }
12
13
  declare const InputDatePicker: React.FC<InputDatePickerProps>;
13
14
 
@@ -31,6 +32,7 @@ interface RangePickerProps$1 {
31
32
  }
32
33
  interface PopupPickerBaseProps {
33
34
  component: React.ReactElement<React.HTMLAttributes<HTMLElement>>;
35
+ locale?: "ko" | "en";
34
36
  }
35
37
  type PopupPickerProps = PopupPickerBaseProps & (SinglePickerProps | RangePickerProps$1);
36
38
  declare const PopupPicker: React.FC<PopupPickerProps>;
@@ -44,6 +46,7 @@ interface RangePickerProps extends Partial<ColorProps> {
44
46
  }) => void;
45
47
  minDate?: Date;
46
48
  maxDate?: Date;
49
+ locale?: "ko" | "en";
47
50
  }
48
51
  declare const RangePicker: {
49
52
  (props: RangePickerProps): react_jsx_runtime.JSX.Element;
@@ -56,6 +59,7 @@ interface SingleDatePickerProps extends Partial<ColorProps> {
56
59
  minDate?: Date;
57
60
  maxDate?: Date;
58
61
  highlightDates?: Date[];
62
+ locale?: "ko" | "en";
59
63
  }
60
64
  declare const SingleDatePicker: {
61
65
  (props: SingleDatePickerProps): react_jsx_runtime.JSX.Element;