@croquiscom/pds 0.26.0 → 0.27.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 CHANGED
@@ -1,5 +1,16 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 0.27.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 2d92485: Modal 컴포넌트 추가
8
+ - 095aaa8: feat: Toast 컴포넌트 fill prop 추가
9
+
10
+ ### Patch Changes
11
+
12
+ - 715d097: 아이콘 버튼 크기 유지를 위한 스타일 추가
13
+
3
14
  ## 0.26.0
4
15
 
5
16
  ### Minor Changes
@@ -1,6 +1,8 @@
1
1
  import React from 'react';
2
- import { ComponentMeta } from '@storybook/react';
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>;
@@ -0,0 +1 @@
1
+ export declare const FLOATING_ROOT_ID = "pds-floating-root";
@@ -0,0 +1 @@
1
+ export * from './floating';
package/dist/index.d.ts CHANGED
@@ -21,4 +21,5 @@ export * from './menu';
21
21
  export * from './toast';
22
22
  export * from './notification';
23
23
  export * from './bottomSheet';
24
+ export * from './modal';
24
25
  export * from './container';