@croquiscom/pds 4.1.1 → 4.1.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 +8 -0
- package/dist/components/date-picker/DatePicker.d.ts +0 -3
- package/dist/components/date-picker/constants.d.ts +3 -0
- package/dist/components/date-picker/index.d.ts +1 -0
- package/dist/components/message/MessageManager.d.ts +2 -2
- package/dist/components/modal/ConfirmModal.stories.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/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @croquiscom/pds
|
|
2
2
|
|
|
3
|
+
## 4.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8c4ae92: - ConfirmModal이 연속해서 사용하는 경우 후속 모달이 사라지는 이슈 수정 - fixes #406
|
|
8
|
+
- Message, Notification, Toast와 DatePicker 내 순환참조 이슈 수정
|
|
9
|
+
- rollup babelHelper 옵션의 명시적 사용 권고에 따라 수정
|
|
10
|
+
|
|
3
11
|
## 4.1.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -6,9 +6,6 @@ import { InputSize } from '../input/types';
|
|
|
6
6
|
export type DisplayTimeFormat = 'hourMinute' | 'hourMinuteSecond';
|
|
7
7
|
export type DisplayMode = 'popover' | 'bottomSheet';
|
|
8
8
|
export type CaptionLabelType = 'month' | 'year';
|
|
9
|
-
export declare const DATE_FORMAT = "yyyy.MM.dd";
|
|
10
|
-
export declare const DATE_HOUR_MINUTE_FORMAT = "yyyy.MM.dd HH:mm";
|
|
11
|
-
export declare const DATE_HOUR_MINUTE_SECOND_FORMAT = "yyyy.MM.dd HH:mm:ss";
|
|
12
9
|
export interface DatePickerBaseProps {
|
|
13
10
|
/**
|
|
14
11
|
* Input 너비를 지정할 수 있습니다.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { FunctionComponent } from 'react';
|
|
2
|
-
import { NotificationComponentProps } from '../notification';
|
|
3
|
-
import { ToastComponentProps } from '../toast';
|
|
2
|
+
import { NotificationComponentProps } from '../notification/Notification';
|
|
3
|
+
import { ToastComponentProps } from '../toast/Toast';
|
|
4
4
|
import type { MessageDirection, MessagePositionType } from './types';
|
|
5
5
|
export interface MessageContainerProps {
|
|
6
6
|
/**
|
|
@@ -5,3 +5,4 @@ declare const _default: ComponentMeta<({ title, width, zIndex, dense, fill, text
|
|
|
5
5
|
export default _default;
|
|
6
6
|
export declare const Base: ComponentStory<typeof ConfirmModal>;
|
|
7
7
|
export declare const Dense: ComponentStory<typeof ConfirmModal>;
|
|
8
|
+
export declare const ContinuosOpen: ComponentStory<typeof ConfirmModal>;
|