@croquiscom/pds 7.1.0 → 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 +7 -0
- package/dist/components/date-picker/DatePicker.d.ts +1 -1
- package/dist/components/date-picker/DatePicker.stories.d.ts +2 -1
- package/dist/index.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -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;
|