You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The delay for displaying and hiding the popover (in milliseconds). When a numerical value is provided, the delay applies to both the hide and show actions. The object structure for specifying the delay is as follows: delay: `{ 'show': 500, 'hide': 100 }`.
* Specify the desired order of fallback placements by providing a list of placements as an array. The placements should be prioritized based on preference.
* The delay for displaying and hiding the popover (in milliseconds). When a numerical value is provided, the delay applies to both the hide and show actions. The object structure for specifying the delay is as follows: delay: `{ 'show': 500, 'hide': 100 }`.
* Specify the desired order of fallback placements by providing a list of placements as an array. The placements should be prioritized based on preference.
|**content**| Content for your component. If you want to pass non-string value please use dedicated slot `<template #content>...</template>`| string | - | - |
14
-
|**offset**| Offset of the popover relative to its target. | array | - |[0, 8]|
15
-
|**placement**| Describes the placement of your component after Popper.js has applied all the modifiers that may have flipped or altered the originally provided placement property. | Placement | - | 'top' |
16
-
|**title**| Title for your component. If you want to pass non-string value please use dedicated slot `<template #title>...</template>`| string | - | - |
17
-
|**trigger**| Sets which event handlers you’d like provided to your toggle prop. You can specify one trigger or an array of them. | string \| string[]|`'click'`, `'focus'`, `'hover'`| 'click' |
18
-
|**visible**| Toggle the visibility of popover component. | boolean | - | - |
11
+
| Prop name | Description | Type | Values | Default |
|**animation** <br><divclass="badge bg-primary">4.9.0-rc.0+</div> | Apply a CSS fade transition to the popover. | boolean | - | true |
14
+
|**content**| Content for your component. If you want to pass non-string value please use dedicated slot `<template #content>...</template>`| string | - | - |
15
+
|**delay** <br><divclass="badge bg-primary">4.9.0-rc.0+</div> | The delay for displaying and hiding the popover (in milliseconds). When a numerical value is provided, the delay applies to both the hide and show actions. The object structure for specifying the delay is as follows: delay: `{ 'show': 500, 'hide': 100 }`. | number \| { show: number; hide: number } | - | 0 |
16
+
|**fallback-placements** <br><divclass="badge bg-primary">4.9.0-rc.0+</div> | Specify the desired order of fallback placements by providing a list of placements as an array. The placements should be prioritized based on preference. | Placements \| Placements[]| - | () => ['top', 'right', 'bottom', 'left']|
17
+
|**offset**| Offset of the popover relative to its target. | array | - |[0, 8]|
18
+
|**placement**| Describes the placement of your component after Popper.js has applied all the modifiers that may have flipped or altered the originally provided placement property. | Placement | - | 'top' |
19
+
|**title**| Title for your component. If you want to pass non-string value please use dedicated slot `<template #title>...</template>`| string | - | - |
20
+
|**trigger**| Sets which event handlers you’d like provided to your toggle prop. You can specify one trigger or an array of them. | Triggers \| Triggers[]|`'click'`, `'focus'`, `'hover'`| 'click' |
21
+
|**visible**| Toggle the visibility of popover component. | boolean | - | - |
0 commit comments