@croquiscom/pds 0.13.0 → 0.15.0
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 +18 -0
- package/dist/form/FormHelperText.stories.d.ts +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +3 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/input/Input.stories.d.ts +1 -1
- package/dist/input/types.d.ts +1 -1
- package/dist/toast/Toast.d.ts +23 -0
- package/dist/toast/Toast.stories.d.ts +7 -0
- package/dist/toast/ToastManager.d.ts +50 -0
- package/dist/toast/index.d.ts +1 -0
- package/dist/toast/styles.d.ts +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @croquiscom/pds
|
|
2
2
|
|
|
3
|
+
## 0.15.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- d07b45a: Toast 컴포넌트 추가
|
|
8
|
+
|
|
9
|
+
## 0.14.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- a35bcda: Input, FormHelperText status variant 변경
|
|
14
|
+
|
|
15
|
+
## BreakPoint
|
|
16
|
+
|
|
17
|
+
Status Variant가 다음과 같이 변경되었습니다.
|
|
18
|
+
|
|
19
|
+
- confirm => success
|
|
20
|
+
|
|
3
21
|
## 0.13.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
|
@@ -3,6 +3,6 @@ import { ComponentMeta } from '@storybook/react';
|
|
|
3
3
|
declare const _default: ComponentMeta<React.FC<import("./FormHelperText").FormHelperTextProps & (React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> | React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement> | React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>)>>;
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const Base: any;
|
|
6
|
-
export declare const
|
|
6
|
+
export declare const Success: any;
|
|
7
7
|
export declare const Error: any;
|
|
8
8
|
export declare const WithButton: () => JSX.Element;
|