@croquiscom/pds 0.28.0 → 0.29.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 +31 -0
- package/assets/icons/Picture24.svg +4 -0
- package/dist/icons/generated/Picture24.d.ts +4 -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/input/Input.d.ts +1 -1
- package/dist/input/Input.stories.d.ts +3 -1
- package/dist/input/InputBase.d.ts +4 -2
- package/dist/input/NumericInput.stories.d.ts +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# @croquiscom/pds
|
|
2
2
|
|
|
3
|
+
## 0.29.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ba26595: Input, NumericInput의 누락된 width, className props drilling 추가
|
|
8
|
+
|
|
9
|
+
## 0.29.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 3c98176: Button 스타일 변경
|
|
14
|
+
|
|
15
|
+
## BreakPoint
|
|
16
|
+
|
|
17
|
+
Button 간격 및 폰트 사이즈가 변경되었습니다.
|
|
18
|
+
|
|
19
|
+
- xlarge
|
|
20
|
+
- height: 58px => 64px
|
|
21
|
+
- fontSize: Heading_15_SemiBold => Heading_17_SemiBold
|
|
22
|
+
- padding: 0 24px => 0 28px
|
|
23
|
+
- large
|
|
24
|
+
- height: 48px => 56px
|
|
25
|
+
- padding: 0 20px => 0 24px
|
|
26
|
+
- medium
|
|
27
|
+
- height: 38px => 46px
|
|
28
|
+
- padding: 0 16px => 0 20px
|
|
29
|
+
- small
|
|
30
|
+
- height: 34px => 38px
|
|
31
|
+
|
|
32
|
+
- d8d64d5: IconPicture24 아이콘 추가
|
|
33
|
+
|
|
3
34
|
## 0.28.0
|
|
4
35
|
|
|
5
36
|
### Minor Changes
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M9.88074 9.49426C9.56427 9.17779 9.13505 9 8.6875 9C8.23995 9 7.81073 9.17779 7.49426 9.49426C7.17779 9.81073 7 10.2399 7 10.6875C7 11.1351 7.17779 11.5643 7.49426 11.8807C7.81073 12.1972 8.23995 12.375 8.6875 12.375C9.13505 12.375 9.56427 12.1972 9.88074 11.8807C10.1972 11.5643 10.375 11.1351 10.375 10.6875C10.375 10.2399 10.1972 9.81073 9.88074 9.49426Z" fill="#363644"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 6C2 4.34315 3.34315 3 5 3H19C20.6569 3 22 4.34315 22 6V18C22 19.6569 20.6569 21 19 21H5C3.34315 21 2 19.6569 2 18V6ZM5 5H19C19.5523 5 20 5.44771 20 6V18C20 18.164 19.9605 18.3187 19.8906 18.4553L16.5506 12.7295C15.9706 11.7354 14.5334 11.7377 13.9568 12.7338L11.8224 16.4204C11.5232 16.9371 10.7695 16.9141 10.5025 16.38L9.94915 15.2733C9.45321 14.2814 8.08961 14.152 7.41598 15.033L4.48941 18.86C4.19636 18.6856 4 18.3658 4 18V6C4 5.44772 4.44772 5 5 5Z" fill="#363644"/>
|
|
4
|
+
</svg>
|
|
@@ -119,6 +119,7 @@ export { default as IconOutlinkTwo14 } from './OutlinkTwo14';
|
|
|
119
119
|
export { default as IconPenaltyBad20 } from './PenaltyBad20';
|
|
120
120
|
export { default as IconPenaltyGood20 } from './PenaltyGood20';
|
|
121
121
|
export { default as IconPenaltyNotsobad20 } from './PenaltyNotsobad20';
|
|
122
|
+
export { default as IconPicture24 } from './Picture24';
|
|
122
123
|
export { default as IconPin16 } from './Pin16';
|
|
123
124
|
export { default as IconPin24 } from './Pin24';
|
|
124
125
|
export { default as IconPlay20 } from './Play20';
|