@croquiscom/pds 0.26.0 → 0.28.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 +21 -0
- package/dist/button/IconButton.stories.d.ts +3 -1
- package/dist/checkbox/Checkbox.stories.d.ts +4 -0
- package/dist/constants/floating.d.ts +1 -0
- package/dist/constants/index.d.ts +1 -0
- package/dist/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/message/MessageManager.d.ts +11 -5
- package/dist/message/types.d.ts +2 -0
- package/dist/modal/AlertModal.d.ts +11 -0
- package/dist/modal/ConfirmModal.d.ts +10 -0
- package/dist/modal/Modal.d.ts +26 -0
- package/dist/modal/Modal.stories.d.ts +16 -0
- package/dist/modal/ModalOverlay.d.ts +32 -0
- package/dist/modal/NoticeModal.d.ts +17 -0
- package/dist/modal/index.d.ts +4 -0
- package/dist/modal/renderModal.d.ts +2 -0
- package/dist/toast/Toast.d.ts +1 -0
- package/dist/toast/Toast.stories.d.ts +2 -0
- package/dist/toast/types.d.ts +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @croquiscom/pds
|
|
2
2
|
|
|
3
|
+
## 0.28.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 5ca7158: NoticeModal 컴포넌트 추가
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- da13e9c: feat: 체크박스 라벨 오른쪽에 링크 있는 케이스 스토리북 추가
|
|
12
|
+
|
|
13
|
+
## 0.27.0
|
|
14
|
+
|
|
15
|
+
### Minor Changes
|
|
16
|
+
|
|
17
|
+
- 2d92485: Modal 컴포넌트 추가
|
|
18
|
+
- 095aaa8: feat: Toast 컴포넌트 fill prop 추가
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- 715d097: 아이콘 버튼 크기 유지를 위한 스타일 추가
|
|
23
|
+
|
|
3
24
|
## 0.26.0
|
|
4
25
|
|
|
5
26
|
### Minor Changes
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { IconButton } from './IconButton';
|
|
3
|
+
import { ComponentStory, ComponentMeta } from '@storybook/react';
|
|
3
4
|
declare const _default: ComponentMeta<React.ForwardRefExoticComponent<import("./IconButton").IconButtonProps & React.RefAttributes<HTMLButtonElement>>>;
|
|
4
5
|
export default _default;
|
|
5
6
|
export declare const Rectangle: any;
|
|
6
7
|
export declare const Circle: any;
|
|
8
|
+
export declare const WithInput: ComponentStory<typeof IconButton>;
|
|
@@ -6,3 +6,7 @@ export declare const Default: any;
|
|
|
6
6
|
export declare const Checked: any;
|
|
7
7
|
export declare const Disabled: any;
|
|
8
8
|
export declare const CheckedDisabled: any;
|
|
9
|
+
export declare const Link: ({ disabled, ...args }: {
|
|
10
|
+
[x: string]: any;
|
|
11
|
+
disabled: any;
|
|
12
|
+
}) => JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const FLOATING_ROOT_ID = "pds-floating-root";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './floating';
|