@croquiscom/pds 8.38.1 → 9.0.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,16 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 9.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - 93c6a43: IconPickingOut -> IconHandPickingOut, IconPicking -> IconHandPicking
8
+ - abcc82c: Badge, BottomSheet deprecated 속성 제거
9
+
10
+ ### Patch Changes
11
+
12
+ - eddc6e3: FormField Top Position row-gap 4px -> 8px 수정
13
+
3
14
  ## 8.38.1
4
15
 
5
16
  ### Patch Changes
@@ -9,10 +9,6 @@ export interface BadgeProps {
9
9
  size?: BadgeSize;
10
10
  /** @default black */
11
11
  color?: BadgeColor;
12
- /**
13
- * @deprecated endIcon이 있을 경우 무시됩니다. endIcon을 사용해주세요.
14
- */
15
- icon?: ReactElement<IconProps>;
16
12
  /**
17
13
  * 라벨 좌측 영역에 렌더링 될 아이콘 요소
18
14
  * - Icon 컴포넌트 color props가 있더라도 BadgeColor에 따라 currentColor가 지정됩니다.
@@ -26,4 +22,4 @@ export interface BadgeProps {
26
22
  */
27
23
  endIcon?: ReactElement<IconProps>;
28
24
  }
29
- export declare const Badge: ({ className, kind, size, color, icon, startIcon, endIcon, children, }: PropsWithChildren<BadgeProps>) => React.JSX.Element;
25
+ export declare const Badge: ({ className, kind, size, color, startIcon, endIcon, children, }: PropsWithChildren<BadgeProps>) => React.JSX.Element;
@@ -6,4 +6,3 @@ type Story = StoryObj<typeof Badge>;
6
6
  export declare const Outline: Story;
7
7
  export declare const Fill: Story;
8
8
  export declare const Icon: Story;
9
- export declare const DeprecatedIconProp: Story;
@@ -16,10 +16,6 @@ export interface BottomSheetProps {
16
16
  zIndex?: number;
17
17
  title?: ReactNode;
18
18
  subTitle?: ReactNode;
19
- /**
20
- * @deprecated children으로도 내용을 지정할 수 있습니다.
21
- */
22
- content?: ReactNode | BottomSheetContentWithCloseAction;
23
19
  children?: ReactNode | BottomSheetContentWithCloseAction;
24
20
  /**
25
21
  * 콘텐츠 영역 space, maxHeight 속성 커스텀이 가능합니다.
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from '.';
3
+ declare const SvgHandPicking: ({ size, color, secondaryColor, ...props }: IconProps) => JSX.Element;
4
+ export default SvgHandPicking;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from '.';
3
+ declare const SvgHandPickingOut: ({ size, color, secondaryColor, ...props }: IconProps) => JSX.Element;
4
+ export default SvgHandPickingOut;
@@ -181,6 +181,8 @@ export { default as IconFaceNeutralFill } from './FaceNeutralFill';
181
181
  export { default as IconFaceSmileFill } from './FaceSmileFill';
182
182
  export { default as IconFaceVeryGoodFill } from './FaceVeryGoodFill';
183
183
  export { default as IconFilter } from './Filter';
184
+ export { default as IconHandPicking } from './HandPicking';
185
+ export { default as IconHandPickingOut } from './HandPickingOut';
184
186
  export { default as IconHandshake } from './Handshake';
185
187
  export { default as IconHanger } from './Hanger';
186
188
  export { default as IconHome } from './Home';
@@ -214,8 +216,6 @@ export { default as IconNumThreeFill } from './NumThreeFill';
214
216
  export { default as IconNumTwoFill } from './NumTwoFill';
215
217
  export { default as IconPauseFill } from './PauseFill';
216
218
  export { default as IconPerson } from './Person';
217
- export { default as IconPicking } from './Picking';
218
- export { default as IconPickingOut } from './PickingOut';
219
219
  export { default as IconPicture } from './Picture';
220
220
  export { default as IconPictureX } from './PictureX';
221
221
  export { default as IconPieChart } from './PieChart';