@croquiscom/pds 4.1.6 → 4.2.1

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
+ ## 4.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 1333b3f: datepicker error 케이스 오류 수정
8
+
9
+ ## 4.2.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 0bea4c4: Toast 컴포넌트 디자인 개선 + CircleWarningFillBold 아이콘 추가
14
+
3
15
  ## 4.1.6
4
16
 
5
17
  ### Patch Changes
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="12" cy="12" r="11" fill="#363644"/>
3
+ <path d="M12 6V13" stroke="white" stroke-width="2.5"/>
4
+ <path d="M12 15.5V18" stroke="white" stroke-width="2.5"/>
5
+ </svg>
@@ -6,6 +6,7 @@ export default _default;
6
6
  export declare const Base: any;
7
7
  export declare const Disabled: any;
8
8
  export declare const Error: any;
9
+ export declare const ErrorValidation: ComponentStory<typeof DatePicker>;
9
10
  export declare const Size: ComponentStory<typeof DatePicker>;
10
11
  export declare const ShowRemoveButton: any;
11
12
  export declare const ShowFooter: any;
@@ -6,6 +6,7 @@ export default _default;
6
6
  export declare const Base: any;
7
7
  export declare const Disabled: any;
8
8
  export declare const Error: any;
9
+ export declare const ErrorValidation: ComponentStory<typeof DateRangePicker>;
9
10
  export declare const Size: ComponentStory<typeof DateRangePicker>;
10
11
  export declare const ShowRemoveButton: any;
11
12
  export declare const NumberOfMonths: any;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from '.';
3
+ declare const SvgCircleWarningFillBold: ({ size, color, secondaryColor, ...props }: IconProps) => JSX.Element;
4
+ export default SvgCircleWarningFillBold;
@@ -80,6 +80,7 @@ export { default as IconCircleQuestion } from './CircleQuestion';
80
80
  export { default as IconCircleTikTok } from './CircleTikTok';
81
81
  export { default as IconCircleWarning } from './CircleWarning';
82
82
  export { default as IconCircleWarningFill } from './CircleWarningFill';
83
+ export { default as IconCircleWarningFillBold } from './CircleWarningFillBold';
83
84
  export { default as IconCircleWon } from './CircleWon';
84
85
  export { default as IconCircleXFill } from './CircleXFill';
85
86
  export { default as IconCircleYouTube } from './CircleYouTube';
@@ -1,4 +1,4 @@
1
- export type CornerRadiusSize = 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
1
+ export type CornerRadiusSize = 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'full';
2
2
  export type ShadowScale = 'low' | 'medium' | 'high';
3
3
  interface Shapes {
4
4
  border_radius: Record<CornerRadiusSize, string>;