@croquiscom/pds 7.0.1 → 7.1.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 +13 -0
- package/assets/icons/PieChart.svg +4 -0
- package/dist/components/date-picker/DatePicker.d.ts +1 -1
- package/dist/components/date-picker/DatePicker.stories.d.ts +2 -1
- package/dist/components/icons/generated/PieChart.d.ts +4 -0
- package/dist/components/icons/generated/index.d.ts +1 -0
- package/dist/index.es.js +5 -5
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @croquiscom/pds
|
|
2
2
|
|
|
3
|
+
## 7.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- dc724a1: DatePicker에서 showTimePicker true인 경우에도 displayTimeFormat 설정 가능하도록 수정
|
|
8
|
+
- de9be05: DatePicker, DateRangePicker 유효성 체크 시 error 상태는 체크하지 않도록 수정
|
|
9
|
+
|
|
10
|
+
## 7.1.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- 71165ff: 파플 연말 리포트 아이콘 추가
|
|
15
|
+
|
|
3
16
|
## 7.0.1
|
|
4
17
|
|
|
5
18
|
### Patch 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 fill-rule="evenodd" clip-rule="evenodd" d="M22.5 10.5C22.5 9.99617 22.4577 9.49445 22.3741 9C22.2616 8.33456 22.0744 7.6823 21.8149 7.05585C21.3626 5.96392 20.6997 4.97177 19.864 4.13604C19.0282 3.30031 18.0361 2.63738 16.9442 2.18508C16.3177 1.9256 15.6654 1.73836 15 1.62588C14.5056 1.5423 14.0038 1.5 13.5 1.5V10.5H22.5ZM15 3.15153C15.4679 3.24705 15.9268 3.38726 16.3701 3.5709C17.2801 3.94781 18.1069 4.50026 18.8033 5.1967C19.4997 5.89314 20.0522 6.71993 20.4291 7.62987C20.6127 8.07322 20.753 8.53208 20.8485 9L15 9V3.15153Z" fill="#363644"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.5 2.5V12.5H21.5C21.5 13.0042 21.4619 13.5056 21.3869 14C21.1677 15.4449 20.6334 16.8305 19.8147 18.0557C18.7159 19.7002 17.1541 20.9819 15.3268 21.7388C13.4996 22.4957 11.4889 22.6937 9.5491 22.3078C7.60929 21.922 5.82746 20.9696 4.42894 19.5711C3.03041 18.1725 2.078 16.3907 1.69215 14.4509C1.3063 12.5111 1.50433 10.5004 2.26121 8.67316C3.01809 6.8459 4.29981 5.28412 5.9443 4.1853C7.16953 3.36663 8.55514 2.83235 10 2.61313C10.4944 2.53812 10.9958 2.5 11.5 2.5ZM10 14H19.8666C19.661 15.1468 19.2208 16.2447 18.5675 17.2223C17.6335 18.6202 16.306 19.7096 14.7528 20.353C13.1996 20.9963 11.4906 21.1646 9.84173 20.8367C8.1929 20.5087 6.67834 19.6992 5.4896 18.5104C4.30085 17.3217 3.4913 15.8071 3.16333 14.1583C2.83536 12.5094 3.00368 10.8004 3.64703 9.24719C4.29037 7.69402 5.37984 6.3665 6.77766 5.43251C7.75534 4.77924 8.85316 4.33901 10 4.13339V14Z" fill="#363644"/>
|
|
4
|
+
</svg>
|
|
@@ -62,7 +62,7 @@ export interface DatePickerProps extends DatePickerBaseProps {
|
|
|
62
62
|
* 타임 노출이 필요한 경우 포멧을 지정할 수 있습니다.
|
|
63
63
|
* - 'hourMinute'일 경우 yyyy.MM.dd HH:mm
|
|
64
64
|
* - 'hourMinuteSecond' 일 경우 yyyy.MM.dd HH:mm:ss
|
|
65
|
-
* - showTimePicker 속성이 true일 경우 displayTimeFormat은 hourMinute
|
|
65
|
+
* - showTimePicker 속성이 true일 경우 displayTimeFormat은 'hourMinute'로 기본 적용됩니다.
|
|
66
66
|
*/
|
|
67
67
|
displayTimeFormat?: DisplayTimeFormat;
|
|
68
68
|
/**
|
|
@@ -5,13 +5,14 @@ declare const _default: ComponentMeta<({ width, error, disabled, className, plac
|
|
|
5
5
|
export default _default;
|
|
6
6
|
export declare const Base: any;
|
|
7
7
|
export declare const Disabled: any;
|
|
8
|
-
export declare const Error:
|
|
8
|
+
export declare const Error: ComponentStory<typeof DatePicker>;
|
|
9
9
|
export declare const ErrorValidation: ComponentStory<typeof DatePicker>;
|
|
10
10
|
export declare const Size: ComponentStory<typeof DatePicker>;
|
|
11
11
|
export declare const ShowRemoveButton: any;
|
|
12
12
|
export declare const ShowFooter: any;
|
|
13
13
|
export declare const ShowTodayButton: any;
|
|
14
14
|
export declare const ShowTimePicker: any;
|
|
15
|
+
export declare const ShowTimePickerWithHourMinuteSecond: any;
|
|
15
16
|
export declare const ShowTimeHourMinute: any;
|
|
16
17
|
export declare const ShowTimeHourMinuteSecond: any;
|
|
17
18
|
export declare const DisableDays: any;
|
|
@@ -182,6 +182,7 @@ export { default as IconNumTwoFill } from './NumTwoFill';
|
|
|
182
182
|
export { default as IconPauseFill } from './PauseFill';
|
|
183
183
|
export { default as IconPicture } from './Picture';
|
|
184
184
|
export { default as IconPictureX } from './PictureX';
|
|
185
|
+
export { default as IconPieChart } from './PieChart';
|
|
185
186
|
export { default as IconPin } from './Pin';
|
|
186
187
|
export { default as IconPinColor } from './PinColor';
|
|
187
188
|
export { default as IconPinFill } from './PinFill';
|