@croquiscom/pds 3.8.2 → 3.8.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 3.8.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 37d9647: Box radio default size(large)적용, storybook type 명시 오류 수정
8
+
3
9
  ## 3.8.2
4
10
 
5
11
  ### Patch Changes
@@ -3,9 +3,13 @@ import { AriaFocusProps } from '../../types/common';
3
3
  import { RadioSizeUnion } from './types';
4
4
  export type AlignType = 'horizontal' | 'vertical';
5
5
  export type RadioItemType = 'default' | 'box';
6
- export type RadioSizeType = RadioItemType extends 'box' ? RadioSizeUnion : RadioItemType extends 'default' ? number : never;
7
6
  export interface RadioCategoryType<T> {
8
7
  radioItemType?: T;
8
+ /**
9
+ * radioItmType - default일 경우 number 타입만 적용됩니다.
10
+ *
11
+ * radioItmType - box일 경우 'small', 'medium', 'large'만 적용됩니다.
12
+ */
9
13
  size?: T extends 'box' ? RadioSizeUnion : number;
10
14
  }
11
15
  interface RadioItem<RadioValue> {