mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 21:48:42 +08:00
docs(backdrop): spell propagation correctly
This commit is contained in:
4
core/src/components.d.ts
vendored
4
core/src/components.d.ts
vendored
@ -648,7 +648,7 @@ declare global {
|
|||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonBackdropElement extends HTMLStencilElement {
|
interface HTMLIonBackdropElement extends HTMLStencilElement {
|
||||||
/**
|
/**
|
||||||
* If true, the backdrop will stop propogation on tap. Defaults to `true`.
|
* If true, the backdrop will stop propagation on tap. Defaults to `true`.
|
||||||
*/
|
*/
|
||||||
'stopPropagation': boolean;
|
'stopPropagation': boolean;
|
||||||
/**
|
/**
|
||||||
@ -682,7 +682,7 @@ declare global {
|
|||||||
*/
|
*/
|
||||||
'onIonBackdropTap'?: (event: CustomEvent) => void;
|
'onIonBackdropTap'?: (event: CustomEvent) => void;
|
||||||
/**
|
/**
|
||||||
* If true, the backdrop will stop propogation on tap. Defaults to `true`.
|
* If true, the backdrop will stop propagation on tap. Defaults to `true`.
|
||||||
*/
|
*/
|
||||||
'stopPropagation'?: boolean;
|
'stopPropagation'?: boolean;
|
||||||
/**
|
/**
|
||||||
|
@ -26,7 +26,7 @@ export class Backdrop {
|
|||||||
@Prop() tappable = true;
|
@Prop() tappable = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* If true, the backdrop will stop propogation on tap. Defaults to `true`.
|
* If true, the backdrop will stop propagation on tap. Defaults to `true`.
|
||||||
*/
|
*/
|
||||||
@Prop() stopPropagation = true;
|
@Prop() stopPropagation = true;
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ Backdrops are full screen components that overlay other components. They are use
|
|||||||
|
|
||||||
boolean
|
boolean
|
||||||
|
|
||||||
If true, the backdrop will stop propogation on tap. Defaults to `true`.
|
If true, the backdrop will stop propagation on tap. Defaults to `true`.
|
||||||
|
|
||||||
|
|
||||||
#### tappable
|
#### tappable
|
||||||
@ -35,7 +35,7 @@ If true, the backdrop will be visible. Defaults to `true`.
|
|||||||
|
|
||||||
boolean
|
boolean
|
||||||
|
|
||||||
If true, the backdrop will stop propogation on tap. Defaults to `true`.
|
If true, the backdrop will stop propagation on tap. Defaults to `true`.
|
||||||
|
|
||||||
|
|
||||||
#### tappable
|
#### tappable
|
||||||
|
Reference in New Issue
Block a user