@croquiscom/pds 0.14.0 → 0.16.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,22 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 0.16.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 5bafcd9: Menu 컴포넌트 토글 기능 추가
8
+ - 7b709e9: IconInfoFill20 아이콘 추가
9
+
10
+ ### Patch Changes
11
+
12
+ - cadac30: Divider의 구현 예정인 orientaion 속성 주석처리
13
+
14
+ ## 0.15.0
15
+
16
+ ### Minor Changes
17
+
18
+ - d07b45a: Toast 컴포넌트 추가
19
+
3
20
  ## 0.14.0
4
21
 
5
22
  ### Minor Changes
@@ -0,0 +1,12 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_10575_29591)">
3
+ <circle cx="10" cy="10" r="10" fill="#363644"/>
4
+ <path d="M10.9999 15H8.99988V9H10.9999V15Z" fill="white"/>
5
+ <path d="M10.9999 7.00002H8.99988V5.00002H10.9999V7.00002Z" fill="white"/>
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_10575_29591">
9
+ <rect width="20" height="20" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -1,13 +1,11 @@
1
1
  /// <reference types="react" />
2
2
  import { SpaceProps } from '../styles';
3
3
  import { CSSValueWithLength } from '../styles/buildCSSWithLength';
4
- declare type orientation = 'horizontal' | 'vertical';
5
4
  export interface DividerProps extends SpaceProps {
6
- orientation?: orientation;
5
+ /** @default 'horizontal' */
7
6
  spacing?: CSSValueWithLength;
8
7
  }
9
8
  export declare const Divider: import("@emotion/styled").StyledComponent<{
10
9
  theme?: import("@emotion/react").Theme;
11
10
  as?: import("react").ElementType<any>;
12
11
  } & DividerProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHRElement>, HTMLHRElement>, {}>;
13
- export {};
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from '.';
3
+ declare const SvgInfoFill20: ({ size, color, secondaryColor, ...props }: IconProps) => JSX.Element;
4
+ export default SvgInfoFill20;
@@ -93,6 +93,7 @@ export { default as IconIndentArrow14 } from './IndentArrow14';
93
93
  export { default as IconInfo14 } from './Info14';
94
94
  export { default as IconInfo16 } from './Info16';
95
95
  export { default as IconInfo24 } from './Info24';
96
+ export { default as IconInfoFill20 } from './InfoFill20';
96
97
  export { default as IconInterest16 } from './Interest16';
97
98
  export { default as IconLife72 } from './Life72';
98
99
  export { default as IconLink16 } from './Link16';
package/dist/index.d.ts CHANGED
@@ -17,4 +17,5 @@ export * from './textarea';
17
17
  export * from './input';
18
18
  export * from './dropdown';
19
19
  export * from './menu';
20
+ export * from './toast';
20
21
  export * from './container';