@croquiscom/pds 0.7.0 → 0.7.2
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 +12 -0
- package/assets/icons/CircleMinus14.svg +11 -0
- package/dist/icons/generated/CircleMinus14.d.ts +3 -0
- package/dist/icons/generated/index.d.ts +1 -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/styles/placement.d.ts +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @croquiscom/pds
|
|
2
2
|
|
|
3
|
+
## 0.7.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 72f6912: Popover 컴포넌트 offset 추가, CircleMinus 아이콘 추가
|
|
8
|
+
|
|
9
|
+
## 0.7.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 67fa9d2: Popover, Tooltip 플로팅 요소의 위치를 reference 위치에 따라 조정되도록 end/start align 타입을 제거
|
|
14
|
+
|
|
3
15
|
## 0.7.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_10054_24163)">
|
|
3
|
+
<rect x="0.5" y="0.5" width="13" height="13" rx="6.5" stroke="#363644"/>
|
|
4
|
+
<rect x="3.73355" y="6.53333" width="6.53333" height="0.933333" fill="#363644"/>
|
|
5
|
+
</g>
|
|
6
|
+
<defs>
|
|
7
|
+
<clipPath id="clip0_10054_24163">
|
|
8
|
+
<rect width="14" height="14" fill="white"/>
|
|
9
|
+
</clipPath>
|
|
10
|
+
</defs>
|
|
11
|
+
</svg>
|
|
@@ -45,6 +45,7 @@ export { default as IconCheck24 } from './Check24';
|
|
|
45
45
|
export { default as IconCircleCard24 } from './CircleCard24';
|
|
46
46
|
export { default as IconCircleCheckFill16 } from './CircleCheckFill16';
|
|
47
47
|
export { default as IconCircleCheckLine16 } from './CircleCheckLine16';
|
|
48
|
+
export { default as IconCircleMinus14 } from './CircleMinus14';
|
|
48
49
|
export { default as IconCirclePlus14 } from './CirclePlus14';
|
|
49
50
|
export { default as IconCircleWon18 } from './CircleWon18';
|
|
50
51
|
export { default as IconCircleWon24 } from './CircleWon24';
|