1.3.0 • Published 2 years ago
@illa-design/popover v1.3.0
Popover
Popover is a dialog that floats around a trigger. It is used to display contextual information to the user.
Installation
yarn add @illa-design/popoverImport component
import { Popover } from "@illa-design/popover"API
Popover Basic Properties
| Props | Desc | Type | Default |
|---|---|---|---|
| colorScheme | Set background color | "white" | "blackAlpha" | "gray" | "grayBlue" | "red" | "orange" | "yellow" | "green" | "blue" | "cyan" | "purple" | string | "gray" |
| title | The header of the popover | string | - |
| content | The content shown in popup | string | ReactNode | - |
| trigger | Types of events that cause the popup to show | "hover" | "click" | "focus" | "hover" |
| position | The position of the popup relative to the target. | "top" | "tl" | "tr" | "bottom" | "bl" | "br" | "left" | "lt" | "lb" | "right" | "rt" | "rb" | "top" |
| showArrow | Whether to display arrow node | boolean | true |
| closeDelay | Delay time to close | number | 150 |
| openDelay | Delay time to show | number | 150 |
| autoFitPosition | Whether to automatically adjust the position of the popup according to the viewport | boolean | true |
| closeOnClick | Whether to close popup when clicking the child node | boolean | true |
| defaultPopupVisible | Whether the popup is visible by default | boolean | - |
| popupVisible | Set whether the popup is visible | boolean | - |
| disabled | Whether to disable the popup | boolean | - |
Popover Events
| Props | Desc | Type | Default |
|---|---|---|---|
| onVisibleChange | Callback when the visibility of the popup is changed | (visible: boolean) => void | - |
Example
Basic usage
<Popover title="This is title" content="Popover">
<Button>Popover</Button>
</Popover>Set popup position
<Popover title="This is title" content="Popover" position="top">
<Button>Popover</Button>
</Popover>Set popup's background color
<Popover
title="This is title"
content="Popover"
position="top"
colorScheme="cyan"
>
<Button>Popover</Button>
</Popover>Set arrow
<Popover
title="This is title"
content="Popover"
position="top"
colorScheme="cyan"
showArrow={false}
>
<Button>Popover</Button>
</Popover>Show close icon
<Popover
title="This is title"
content="Popover"
position="top"
colorScheme="cyan"
hasCloseIcon
>
<Button>Popover</Button>
</Popover>Set popup's default visibility status
<Popover
title="This is title"
content="Popover"
position="top"
colorScheme="cyan"
defaultPopupVisible
>
<Button>Popover</Button>
</Popover>Set popup's delay time to open
<Popover
title="This is title"
content="Popover"
position="top"
colorScheme="cyan"
openDelay={1000}
closeDelay={1000}
>
<Button>Popover</Button>
</Popover>1.2.0
2 years ago
1.3.0
2 years ago
1.0.29
2 years ago
1.0.28
2 years ago
1.0.27
2 years ago
1.0.31
2 years ago
1.0.30
2 years ago
1.1.0
2 years ago
1.0.22
3 years ago
1.0.21
3 years ago
1.0.26
2 years ago
1.0.25
2 years ago
1.0.24
2 years ago
1.0.23
2 years ago
1.0.19
3 years ago
1.0.18
3 years ago
1.0.17
3 years ago
1.0.20
3 years ago
1.0.16
3 years ago
1.0.15
3 years ago
1.0.14
3 years ago
1.0.9
3 years ago
1.0.8
3 years ago
1.0.7
3 years ago
1.0.6
3 years ago
1.0.11
3 years ago
1.0.10
3 years ago
1.0.13
3 years ago
1.0.12
3 years ago
1.0.5
3 years ago
1.0.4
3 years ago
1.0.3
3 years ago
1.0.2
3 years ago
1.0.1
3 years ago
1.0.0
3 years ago
0.0.10
3 years ago
0.0.11
3 years ago
0.0.12
3 years ago
0.0.13
3 years ago
0.0.14
3 years ago
0.0.15
3 years ago
0.0.9
3 years ago
0.0.16
3 years ago
0.0.17
3 years ago
0.0.8
3 years ago
0.0.5
3 years ago
0.0.4
3 years ago
0.0.7
3 years ago
0.0.6
3 years ago
0.0.3
4 years ago
0.0.2
4 years ago
0.0.1
4 years ago