@croquiscom/pds 3.8.2 → 3.9.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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 3.9.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 7bcab9d: 마이스토어 icon 추가
8
+
9
+ ## 3.8.3
10
+
11
+ ### Patch Changes
12
+
13
+ - 37d9647: Box radio default size(large)적용, storybook type 명시 오류 수정
14
+
3
15
  ## 3.8.2
4
16
 
5
17
  ### Patch Changes
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M14 17H10V18.5H14V17Z" fill="#363644"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M5 22V2H19V22H5ZM6.5 3.5H17.5V20.5H6.5V3.5Z" fill="#363644"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2 3V18H11.25V20.75H7V22.25H17V20.75H12.75V18H22V3H2ZM20.5 4.5H3.5V16.5H20.5V4.5Z" fill="#363644"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from '.';
3
+ declare const SvgCellphone: ({ size, color, secondaryColor, ...props }: IconProps) => JSX.Element;
4
+ export default SvgCellphone;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from '.';
3
+ declare const SvgMonitor: ({ size, color, secondaryColor, ...props }: IconProps) => JSX.Element;
4
+ export default SvgMonitor;
@@ -55,6 +55,7 @@ export { default as IconCategoryKids } from './CategoryKids';
55
55
  export { default as IconCategoryLife } from './CategoryLife';
56
56
  export { default as IconCategoryShop } from './CategoryShop';
57
57
  export { default as IconCategoryZDelivery } from './CategoryZDelivery';
58
+ export { default as IconCellphone } from './Cellphone';
58
59
  export { default as IconCheck } from './Check';
59
60
  export { default as IconCheckBold } from './CheckBold';
60
61
  export { default as IconChecklist } from './Checklist';
@@ -143,6 +144,7 @@ export { default as IconLock } from './Lock';
143
144
  export { default as IconMegaphone } from './Megaphone';
144
145
  export { default as IconMessage } from './Message';
145
146
  export { default as IconMinus } from './Minus';
147
+ export { default as IconMonitor } from './Monitor';
146
148
  export { default as IconMove } from './Move';
147
149
  export { default as IconNew } from './New';
148
150
  export { default as IconNumEightFill } from './NumEightFill';
@@ -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> {