docs(modal, popover): improve showBackdrop clarity (#25462)

This commit is contained in:
Liam DeBeasi
2022-06-14 09:49:42 -04:00
committed by GitHub
parent 377c4f597b
commit 35c1adf10c
3 changed files with 12 additions and 4 deletions

View File

@ -166,6 +166,10 @@ export class Modal implements ComponentInterface, OverlayInterface {
/**
* If `true`, a backdrop will be displayed behind the modal.
* This property controls whether or not the backdrop
* darkens the screen when the modal is presented.
* It does not control whether or not the backdrop
* is active or present in the DOM.
*/
@Prop() showBackdrop = true;

View File

@ -128,6 +128,10 @@ export class Popover implements ComponentInterface, PopoverInterface {
/**
* If `true`, a backdrop will be displayed behind the popover.
* This property controls whether or not the backdrop
* darkens the screen when the popover is presented.
* It does not control whether or not the backdrop
* is active or present in the DOM.
*/
@Prop() showBackdrop = true;