@croquiscom/pds 0.15.0 → 0.17.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 +17 -0
- package/assets/icons/InfoFill20.svg +12 -0
- package/assets/icons/Subscription24.svg +5 -0
- package/dist/divider/Divider.d.ts +1 -3
- package/dist/icons/generated/InfoFill20.d.ts +4 -0
- package/dist/icons/generated/Subscription24.d.ts +4 -0
- package/dist/icons/generated/index.d.ts +2 -0
- package/dist/index.es.js +2 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/menu/Menu.d.ts +4 -0
- package/dist/menu/Menu.stories.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @croquiscom/pds
|
|
2
2
|
|
|
3
|
+
## 0.17.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- bb08e31: 인사이트 구독 아이콘 추가
|
|
8
|
+
|
|
9
|
+
## 0.16.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 5bafcd9: Menu 컴포넌트 토글 기능 추가
|
|
14
|
+
- 7b709e9: IconInfoFill20 아이콘 추가
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- cadac30: Divider의 구현 예정인 orientaion 속성 주석처리
|
|
19
|
+
|
|
3
20
|
## 0.15.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>
|
|
@@ -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
|
+
<path d="M16.9427 7.82653H11.1338V9.05102H16.9427V7.82653Z" fill="#363644"/>
|
|
3
|
+
<path d="M11.1338 10.8878H16.9427V12.1122H11.1338V10.8878Z" fill="#363644"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.07643 4H20V15.3265C20 17.3553 18.3574 19 16.3312 19H6.52229V18.997C5.11807 18.9304 4 17.7694 4 16.3469V7.82653H8.07643V4ZM9.29936 16.3469C9.29936 16.8729 9.1465 17.3631 8.88283 17.7755H16.3312C17.682 17.7755 18.7771 16.6791 18.7771 15.3265V5.22449H9.29936L9.29936 16.3469ZM8.07643 9.05102H5.22293V16.3469C5.22293 17.1359 5.86171 17.7755 6.64968 17.7755C7.43765 17.7755 8.07643 17.1359 8.07643 16.3469V9.05102Z" fill="#363644"/>
|
|
5
|
+
</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
|
-
|
|
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 {};
|
|
@@ -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';
|
|
@@ -143,6 +144,7 @@ export { default as IconStatusYes16 } from './StatusYes16';
|
|
|
143
144
|
export { default as IconSteadySeller16 } from './SteadySeller16';
|
|
144
145
|
export { default as IconStore24 } from './Store24';
|
|
145
146
|
export { default as IconStore50 } from './Store50';
|
|
147
|
+
export { default as IconSubscription24 } from './Subscription24';
|
|
146
148
|
export { default as IconTableMove16 } from './TableMove16';
|
|
147
149
|
export { default as IconThumbup14 } from './Thumbup14';
|
|
148
150
|
export { default as IconTip18 } from './Tip18';
|