|
16 | 16 |
|
17 | 17 | Things to know when using popover component:
|
18 | 18 |
|
19 |
| -- Popovers rely on the 3rd party library Popper.js for positioning. The library is bundled with |
20 |
| - BootstrapVue dist files! |
| 19 | +- Popovers rely on the 3rd party library [Popper.js](https://popper.js.org/) for positioning. |
21 | 20 | - Popovers with zero-length title _and_ content are never displayed.
|
22 | 21 | - Specify `container` as `null` (default, appends to `<body>`) to avoid rendering problems in more
|
23 | 22 | complex components (like input groups, button groups, etc). You can use `container` to optionally
|
24 |
| - specify a different element to append the popover to. |
| 23 | + specify a different element to append the rendered popover to. |
25 | 24 | - Triggering popovers on hidden elements will not work.
|
26 | 25 | - Popovers for `disabled` elements must be triggered on a wrapper element.
|
27 | 26 | - When triggered from hyperlinks that span multiple lines, popovers will be centered. Use
|
28 | 27 | `white-space: nowrap;` on your `<a>`s, `<b-link>`s and `<router-link>`s to avoid this behavior.
|
29 |
| -- Popovers must be hidden before their corresponding markup elements have been removed from the DOM. |
30 | 28 |
|
31 | 29 | The `<b-popover>` component inserts a hidden (`display: none;`) `<div>` intermediate container
|
32 | 30 | element at the point in the DOM where the `<b-popover>` component is placed. This may affect layout
|
@@ -266,6 +264,49 @@ The special `blur` trigger **must** be used in combination with the `click` trig
|
266 | 264 | | `container` | `null` | Element string ID to append rendered popover into. If `null` or element not found, popover is appended to `<body>` (default) | Any valid in-document unique element ID. |
|
267 | 265 | | `boundary` | `'scrollParent'` | The container that the popover will be constrained visually. The default should suffice in most cases, but you may need to change this if your target element is in a small container with overflow scroll | `'scrollParent'` (default), `'viewport'`, `'window'`, or a reference to an HTML element. |
|
268 | 266 | | `boundary-padding` | `5` | Amount of pixel used to define a minimum distance between the boundaries and the popover. This makes sure the popover always has a little padding between the edges of its container. | Any positive number |
|
| 267 | +| `variant` | `null` | Contextual color variant for the popover | Any contextual theme color variant name | |
| 268 | +| `customClass` | `null` | A custom classname to apply to the popover outer wrapper element | A string | |
| 269 | + |
| 270 | +### Variants and custom class |
| 271 | + |
| 272 | +<span class="badge badge-info small">NEW in 2.0.0-rc.26</span> |
| 273 | + |
| 274 | +BootstrapVue's popovers support contextual color variants via our custom CSS, via the `variant` |
| 275 | +prop: |
| 276 | + |
| 277 | +```html |
| 278 | +<div class="text-center"> |
| 279 | + <b-button id="popover-button-variant">Button</b-button> |
| 280 | + <b-popover target="popover-button-variant" variant="danger" triggers="focus"> |
| 281 | + <template slot="title">Danger!</template> |
| 282 | + Danger variant popover |
| 283 | + </b-popover> |
| 284 | +</div> |
| 285 | + |
| 286 | +<!-- b-popover-variant.vue --> |
| 287 | +``` |
| 288 | + |
| 289 | +Bootstrap default theme variants are: `danger`, `warning`, `success`, `primary`, `secondary`, |
| 290 | +`info`, `light`, and `dark`. You can change or add additional variants via Bootstrap |
| 291 | +[SCSS variables](/docs/reference/theming) |
| 292 | + |
| 293 | +A custom class can be applied to the popover outer wrapper `<div>` by using the `custom-class` prop: |
| 294 | + |
| 295 | +```html |
| 296 | +<div class="text-center"> |
| 297 | + <b-button id="my-button">Button</b-button> |
| 298 | + <b-popover target="my-button" custom-class="my-popover-class"> |
| 299 | + <template slot="title">Popover Title</template> |
| 300 | + Popover content |
| 301 | + </b-popover> |
| 302 | +</div> |
| 303 | +``` |
| 304 | + |
| 305 | +**Note:** Custom classes will not work with scoped styles, as the popovers are appended to the |
| 306 | +document `<body>` element by default. |
| 307 | + |
| 308 | +Refer to the [popover directive](/docs/directives/popover) docs on applying variants and custom |
| 309 | +class to the directive version. |
269 | 310 |
|
270 | 311 | ### Programmatically show and hide popover
|
271 | 312 |
|
|
0 commit comments