mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 04:14:21 +08:00
docs(content): set scrollEvents to true to listen to scroll events (#25314)
Resolves #25308
This commit is contained in:
6
core/src/components.d.ts
vendored
6
core/src/components.d.ts
vendored
@ -4402,15 +4402,15 @@ declare namespace LocalJSX {
|
||||
*/
|
||||
"fullscreen"?: boolean;
|
||||
/**
|
||||
* Emitted while scrolling. This event is disabled by default. Look at the property: `scrollEvents`
|
||||
* Emitted while scrolling. This event is disabled by default. Set `scrollEvents` to `true` to enable.
|
||||
*/
|
||||
"onIonScroll"?: (event: CustomEvent<ScrollDetail>) => void;
|
||||
/**
|
||||
* Emitted when the scroll has ended.
|
||||
* Emitted when the scroll has ended. This event is disabled by default. Set `scrollEvents` to `true` to enable.
|
||||
*/
|
||||
"onIonScrollEnd"?: (event: CustomEvent<ScrollBaseDetail>) => void;
|
||||
/**
|
||||
* Emitted when the scroll has started.
|
||||
* Emitted when the scroll has started. This event is disabled by default. Set `scrollEvents` to `true` to enable.
|
||||
*/
|
||||
"onIonScrollStart"?: (event: CustomEvent<ScrollBaseDetail>) => void;
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user