mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 20:33:32 +08:00
chore(package): update to stencil 0.9.8
This commit is contained in:
29
core/src/components.d.ts
vendored
29
core/src/components.d.ts
vendored
@ -1,7 +1,6 @@
|
||||
/**
|
||||
* This is an autogenerated file created by the Stencil build process.
|
||||
* It contains typing information for all components that exist in this project
|
||||
* and imports for stencil collections that might be configured in your stencil.config.js file
|
||||
* This is an autogenerated file created by the Stencil compiler.
|
||||
* It contains typing information for all components that exist in this project.
|
||||
*/
|
||||
|
||||
import '@stencil/core';
|
||||
@ -1703,6 +1702,9 @@ declare global {
|
||||
* If true, the content will scroll behind the headers and footers. This effect can easily be seen by setting the toolbar to transparent.
|
||||
*/
|
||||
'fullscreen': boolean;
|
||||
/**
|
||||
* Scroll by a specific X/Y distance
|
||||
*/
|
||||
'scrollByPoint': (x: number, y: number, duration: number, done?: Function | undefined) => Promise<any>;
|
||||
'scrollEnabled': boolean;
|
||||
'scrollEvents': boolean;
|
||||
@ -1710,6 +1712,9 @@ declare global {
|
||||
* Scroll to the bottom of the content component. Duration of the scroll animation in milliseconds. Defaults to `300`. Returns a promise which is resolved when the scroll has completed.
|
||||
*/
|
||||
'scrollToBottom': (duration?: number) => Promise<void>;
|
||||
/**
|
||||
* Scroll to a specific X/Y coordinate in the content
|
||||
*/
|
||||
'scrollToPoint': (x: number, y: number, duration: number, done?: Function | undefined) => Promise<any>;
|
||||
/**
|
||||
* Scroll to the top of the content component. Duration of the scroll animation in milliseconds. Defaults to `300`. Returns a promise which is resolved when the scroll has completed.
|
||||
@ -1967,6 +1972,9 @@ declare global {
|
||||
* The mode determines which platform styles to use. Possible values are: `"ios"` or `"md"`.
|
||||
*/
|
||||
'mode': Mode;
|
||||
/**
|
||||
* If true, the fab button will show when in a fab-list.
|
||||
*/
|
||||
'show': boolean;
|
||||
/**
|
||||
* If true, the fab button will be translucent. Defaults to `false`.
|
||||
@ -2014,6 +2022,9 @@ declare global {
|
||||
* The mode determines which platform styles to use. Possible values are: `"ios"` or `"md"`.
|
||||
*/
|
||||
'mode'?: Mode;
|
||||
/**
|
||||
* If true, the fab button will show when in a fab-list.
|
||||
*/
|
||||
'show'?: boolean;
|
||||
/**
|
||||
* If true, the fab button will be translucent. Defaults to `false`.
|
||||
@ -2530,6 +2541,9 @@ declare global {
|
||||
* This attribute defines the alternative text describing the image. Users will see this text displayed if the image URL is wrong, the image is not in one of the supported formats, or if the image is not yet downloaded.
|
||||
*/
|
||||
'alt'?: string;
|
||||
/**
|
||||
* Emitted when the img src is loaded
|
||||
*/
|
||||
'onIonImgDidLoad'?: (event: CustomEvent<void>) => void;
|
||||
/**
|
||||
* The image URL. This attribute is mandatory for the <img> element.
|
||||
@ -3498,6 +3512,9 @@ declare global {
|
||||
* Animation to use when the loading indicator is presented.
|
||||
*/
|
||||
'enterAnimation': AnimationBuilder;
|
||||
/**
|
||||
* If true, the loading will blur any inputs and hide the keyboard
|
||||
*/
|
||||
'keyboardClose': boolean;
|
||||
/**
|
||||
* Animation to use when the loading indicator is dismissed.
|
||||
@ -3578,6 +3595,9 @@ declare global {
|
||||
* Animation to use when the loading indicator is presented.
|
||||
*/
|
||||
'enterAnimation'?: AnimationBuilder;
|
||||
/**
|
||||
* If true, the loading will blur any inputs and hide the keyboard
|
||||
*/
|
||||
'keyboardClose'?: boolean;
|
||||
/**
|
||||
* Animation to use when the loading indicator is dismissed.
|
||||
@ -3889,6 +3909,9 @@ declare global {
|
||||
* Emitted when the menu is closed.
|
||||
*/
|
||||
'onIonClose'?: (event: CustomEvent<void>) => void;
|
||||
/**
|
||||
* Emitted when the menu state is changed.
|
||||
*/
|
||||
'onIonMenuChange'?: (event: CustomEvent<MenuChangeEventDetail>) => void;
|
||||
/**
|
||||
* Emitted when the menu is open.
|
||||
|
Reference in New Issue
Block a user