@croquiscom/pds 6.2.0 → 6.3.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
CHANGED
|
@@ -19,6 +19,9 @@ export interface PopoverProps {
|
|
|
19
19
|
*/
|
|
20
20
|
content?: PopoverContent | PopoverWithCloseAction;
|
|
21
21
|
title?: string;
|
|
22
|
+
/**
|
|
23
|
+
* 기본 폰트 Body_13_Regular적용
|
|
24
|
+
*/
|
|
22
25
|
description?: ReactNode;
|
|
23
26
|
/**
|
|
24
27
|
* 닫힘버튼 사용 유무
|
|
@@ -57,6 +60,11 @@ export interface PopoverProps {
|
|
|
57
60
|
* @default 16,20(arrow)
|
|
58
61
|
*/
|
|
59
62
|
padding?: number;
|
|
63
|
+
/**
|
|
64
|
+
* 팝오버 너비
|
|
65
|
+
* @default 300
|
|
66
|
+
*/
|
|
67
|
+
width?: number;
|
|
60
68
|
}
|
|
61
69
|
export declare const Popover: React.FC<PopoverProps>;
|
|
62
70
|
export {};
|
|
@@ -4,6 +4,7 @@ import { Popover } from './Popover';
|
|
|
4
4
|
declare const _default: ComponentMeta<React.FC<import("./Popover").PopoverProps>>;
|
|
5
5
|
export default _default;
|
|
6
6
|
export declare const Base: any;
|
|
7
|
+
export declare const Width: any;
|
|
7
8
|
export declare const HoverIcon: () => JSX.Element;
|
|
8
9
|
export declare const Placement: ComponentStory<typeof Popover>;
|
|
9
10
|
export declare const Trigger: () => JSX.Element;
|