mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 13:32:54 +08:00
chore(dependencies): use stencil 0.4.0 prerelease
This commit is contained in:
18
packages/core/package-lock.json
generated
18
packages/core/package-lock.json
generated
@ -14,9 +14,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@stencil/core": {
|
"@stencil/core": {
|
||||||
"version": "0.3.0",
|
"version": "0.4.0-0",
|
||||||
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-0.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-0.4.0-0.tgz",
|
||||||
"integrity": "sha512-D8WGTSfqfNAaAFLso+PT+s5egchcyjxQcNpPOFs7ebGaLPwnnUicMHLCTJezTUal8kd6p+NQY+o7pPJwW/Bo9g==",
|
"integrity": "sha512-s5/dfezhD2PZoeHevxZRe7GNLmOL+vf/MRtngZCUOjFrdswwCAEnURnhTTQMh+CQi6r6cdKIgdEzzMI9WGI/rA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"chokidar": "2.0.0",
|
"chokidar": "2.0.0",
|
||||||
@ -1472,9 +1472,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"commander": {
|
"commander": {
|
||||||
"version": "2.14.0",
|
"version": "2.14.1",
|
||||||
"resolved": "https://registry.npmjs.org/commander/-/commander-2.14.0.tgz",
|
"resolved": "https://registry.npmjs.org/commander/-/commander-2.14.1.tgz",
|
||||||
"integrity": "sha512-okPpdvdJr6mUGi2XzupC+irQxzwGLVaBzacFC14hjLv8NColXEsxsU+QaeuSSXpQUak5g2K0vQ7WjA1e8svczg==",
|
"integrity": "sha512-+YR16o3rK53SmWHU3rEM3tPAh2rwb1yPcQX5irVn7mb0gXbwuCCrnkbV5+PBfETdfg1vui07nM6PCG1zndcjQw==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"common-tags": {
|
"common-tags": {
|
||||||
@ -7611,7 +7611,7 @@
|
|||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"chalk": "1.1.3",
|
"chalk": "1.1.3",
|
||||||
"commander": "2.14.0",
|
"commander": "2.14.1",
|
||||||
"is-my-json-valid": "2.17.1",
|
"is-my-json-valid": "2.17.1",
|
||||||
"pinkie-promise": "2.0.1"
|
"pinkie-promise": "2.0.1"
|
||||||
}
|
}
|
||||||
@ -9370,7 +9370,7 @@
|
|||||||
"integrity": "sha1-Yw9pwhaqIGuCMvsqqQe98zNrbYM=",
|
"integrity": "sha1-Yw9pwhaqIGuCMvsqqQe98zNrbYM=",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"commander": "2.14.0",
|
"commander": "2.14.1",
|
||||||
"eslint": "2.13.1",
|
"eslint": "2.13.1",
|
||||||
"front-matter": "2.1.2",
|
"front-matter": "2.1.2",
|
||||||
"fs-extra": "3.0.1",
|
"fs-extra": "3.0.1",
|
||||||
@ -10460,7 +10460,7 @@
|
|||||||
"babel-code-frame": "6.26.0",
|
"babel-code-frame": "6.26.0",
|
||||||
"builtin-modules": "1.1.1",
|
"builtin-modules": "1.1.1",
|
||||||
"chalk": "2.3.0",
|
"chalk": "2.3.0",
|
||||||
"commander": "2.14.0",
|
"commander": "2.14.1",
|
||||||
"diff": "3.4.0",
|
"diff": "3.4.0",
|
||||||
"glob": "7.1.2",
|
"glob": "7.1.2",
|
||||||
"js-yaml": "3.10.0",
|
"js-yaml": "3.10.0",
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
"dist/"
|
"dist/"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@stencil/core": "0.3.0",
|
"@stencil/core": "next",
|
||||||
"@stencil/dev-server": "latest",
|
"@stencil/dev-server": "latest",
|
||||||
"@stencil/utils": "latest",
|
"@stencil/utils": "latest",
|
||||||
"@types/jest": "^21.1.6",
|
"@types/jest": "^21.1.6",
|
||||||
|
211
packages/core/src/components.d.ts
vendored
211
packages/core/src/components.d.ts
vendored
@ -48,12 +48,21 @@ import {
|
|||||||
NodeHeightFn,
|
NodeHeightFn,
|
||||||
} from './components/virtual-scroll/virtual-scroll-utils';
|
} from './components/virtual-scroll/virtual-scroll-utils';
|
||||||
|
|
||||||
|
declare global {
|
||||||
|
interface HTMLStencilElement extends HTMLElement {
|
||||||
|
componentOnReady(): Promise<this>;
|
||||||
|
componentOnReady(done: (ele?: this) => void): void;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
import {
|
import {
|
||||||
ActionSheetController as IonActionSheetController
|
ActionSheetController as IonActionSheetController
|
||||||
} from './components/action-sheet-controller/action-sheet-controller';
|
} from './components/action-sheet-controller/action-sheet-controller';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonActionSheetControllerElement extends IonActionSheetController, HTMLElement {
|
interface HTMLIonActionSheetControllerElement extends IonActionSheetController, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonActionSheetControllerElement: {
|
var HTMLIonActionSheetControllerElement: {
|
||||||
prototype: HTMLIonActionSheetControllerElement;
|
prototype: HTMLIonActionSheetControllerElement;
|
||||||
@ -83,7 +92,7 @@ import {
|
|||||||
} from './components/action-sheet/action-sheet';
|
} from './components/action-sheet/action-sheet';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonActionSheetElement extends IonActionSheet, HTMLElement {
|
interface HTMLIonActionSheetElement extends IonActionSheet, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonActionSheetElement: {
|
var HTMLIonActionSheetElement: {
|
||||||
prototype: HTMLIonActionSheetElement;
|
prototype: HTMLIonActionSheetElement;
|
||||||
@ -121,7 +130,7 @@ import {
|
|||||||
} from './components/alert-controller/alert-controller';
|
} from './components/alert-controller/alert-controller';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonAlertControllerElement extends IonAlertController, HTMLElement {
|
interface HTMLIonAlertControllerElement extends IonAlertController, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonAlertControllerElement: {
|
var HTMLIonAlertControllerElement: {
|
||||||
prototype: HTMLIonAlertControllerElement;
|
prototype: HTMLIonAlertControllerElement;
|
||||||
@ -151,7 +160,7 @@ import {
|
|||||||
} from './components/alert/alert';
|
} from './components/alert/alert';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonAlertElement extends IonAlert, HTMLElement {
|
interface HTMLIonAlertElement extends IonAlert, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonAlertElement: {
|
var HTMLIonAlertElement: {
|
||||||
prototype: HTMLIonAlertElement;
|
prototype: HTMLIonAlertElement;
|
||||||
@ -191,7 +200,7 @@ import {
|
|||||||
} from './components/animation-controller/animation-controller';
|
} from './components/animation-controller/animation-controller';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonAnimationControllerElement extends IonAnimationController, HTMLElement {
|
interface HTMLIonAnimationControllerElement extends IonAnimationController, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonAnimationControllerElement: {
|
var HTMLIonAnimationControllerElement: {
|
||||||
prototype: HTMLIonAnimationControllerElement;
|
prototype: HTMLIonAnimationControllerElement;
|
||||||
@ -221,7 +230,7 @@ import {
|
|||||||
} from './components/app/app';
|
} from './components/app/app';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonAppElement extends IonApp, HTMLElement {
|
interface HTMLIonAppElement extends IonApp, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonAppElement: {
|
var HTMLIonAppElement: {
|
||||||
prototype: HTMLIonAppElement;
|
prototype: HTMLIonAppElement;
|
||||||
@ -251,7 +260,7 @@ import {
|
|||||||
} from './components/avatar/avatar';
|
} from './components/avatar/avatar';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonAvatarElement extends IonAvatar, HTMLElement {
|
interface HTMLIonAvatarElement extends IonAvatar, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonAvatarElement: {
|
var HTMLIonAvatarElement: {
|
||||||
prototype: HTMLIonAvatarElement;
|
prototype: HTMLIonAvatarElement;
|
||||||
@ -281,7 +290,7 @@ import {
|
|||||||
} from './components/back-button/back-button';
|
} from './components/back-button/back-button';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonBackButtonElement extends IonBackButton, HTMLElement {
|
interface HTMLIonBackButtonElement extends IonBackButton, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonBackButtonElement: {
|
var HTMLIonBackButtonElement: {
|
||||||
prototype: HTMLIonBackButtonElement;
|
prototype: HTMLIonBackButtonElement;
|
||||||
@ -311,7 +320,7 @@ import {
|
|||||||
} from './components/backdrop/backdrop';
|
} from './components/backdrop/backdrop';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonBackdropElement extends IonBackdrop, HTMLElement {
|
interface HTMLIonBackdropElement extends IonBackdrop, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonBackdropElement: {
|
var HTMLIonBackdropElement: {
|
||||||
prototype: HTMLIonBackdropElement;
|
prototype: HTMLIonBackdropElement;
|
||||||
@ -341,7 +350,7 @@ import {
|
|||||||
} from './components/badge/badge';
|
} from './components/badge/badge';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonBadgeElement extends IonBadge, HTMLElement {
|
interface HTMLIonBadgeElement extends IonBadge, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonBadgeElement: {
|
var HTMLIonBadgeElement: {
|
||||||
prototype: HTMLIonBadgeElement;
|
prototype: HTMLIonBadgeElement;
|
||||||
@ -372,7 +381,7 @@ import {
|
|||||||
} from './components/button/button';
|
} from './components/button/button';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonButtonElement extends IonButton, HTMLElement {
|
interface HTMLIonButtonElement extends IonButton, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonButtonElement: {
|
var HTMLIonButtonElement: {
|
||||||
prototype: HTMLIonButtonElement;
|
prototype: HTMLIonButtonElement;
|
||||||
@ -411,7 +420,7 @@ import {
|
|||||||
} from './components/buttons/buttons';
|
} from './components/buttons/buttons';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonButtonsElement extends IonButtons, HTMLElement {
|
interface HTMLIonButtonsElement extends IonButtons, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonButtonsElement: {
|
var HTMLIonButtonsElement: {
|
||||||
prototype: HTMLIonButtonsElement;
|
prototype: HTMLIonButtonsElement;
|
||||||
@ -441,7 +450,7 @@ import {
|
|||||||
} from './components/card-content/card-content';
|
} from './components/card-content/card-content';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonCardContentElement extends IonCardContent, HTMLElement {
|
interface HTMLIonCardContentElement extends IonCardContent, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonCardContentElement: {
|
var HTMLIonCardContentElement: {
|
||||||
prototype: HTMLIonCardContentElement;
|
prototype: HTMLIonCardContentElement;
|
||||||
@ -472,7 +481,7 @@ import {
|
|||||||
} from './components/card-header/card-header';
|
} from './components/card-header/card-header';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonCardHeaderElement extends IonCardHeader, HTMLElement {
|
interface HTMLIonCardHeaderElement extends IonCardHeader, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonCardHeaderElement: {
|
var HTMLIonCardHeaderElement: {
|
||||||
prototype: HTMLIonCardHeaderElement;
|
prototype: HTMLIonCardHeaderElement;
|
||||||
@ -504,7 +513,7 @@ import {
|
|||||||
} from './components/card-subtitle/card-subtitle';
|
} from './components/card-subtitle/card-subtitle';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonCardSubtitleElement extends IonCardSubtitle, HTMLElement {
|
interface HTMLIonCardSubtitleElement extends IonCardSubtitle, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonCardSubtitleElement: {
|
var HTMLIonCardSubtitleElement: {
|
||||||
prototype: HTMLIonCardSubtitleElement;
|
prototype: HTMLIonCardSubtitleElement;
|
||||||
@ -535,7 +544,7 @@ import {
|
|||||||
} from './components/card-title/card-title';
|
} from './components/card-title/card-title';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonCardTitleElement extends IonCardTitle, HTMLElement {
|
interface HTMLIonCardTitleElement extends IonCardTitle, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonCardTitleElement: {
|
var HTMLIonCardTitleElement: {
|
||||||
prototype: HTMLIonCardTitleElement;
|
prototype: HTMLIonCardTitleElement;
|
||||||
@ -566,7 +575,7 @@ import {
|
|||||||
} from './components/card/card';
|
} from './components/card/card';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonCardElement extends IonCard, HTMLElement {
|
interface HTMLIonCardElement extends IonCard, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonCardElement: {
|
var HTMLIonCardElement: {
|
||||||
prototype: HTMLIonCardElement;
|
prototype: HTMLIonCardElement;
|
||||||
@ -597,7 +606,7 @@ import {
|
|||||||
} from './components/checkbox/checkbox';
|
} from './components/checkbox/checkbox';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonCheckboxElement extends IonCheckbox, HTMLElement {
|
interface HTMLIonCheckboxElement extends IonCheckbox, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonCheckboxElement: {
|
var HTMLIonCheckboxElement: {
|
||||||
prototype: HTMLIonCheckboxElement;
|
prototype: HTMLIonCheckboxElement;
|
||||||
@ -632,7 +641,7 @@ import {
|
|||||||
} from './components/chip-button/chip-button';
|
} from './components/chip-button/chip-button';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonChipButtonElement extends IonChipButton, HTMLElement {
|
interface HTMLIonChipButtonElement extends IonChipButton, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonChipButtonElement: {
|
var HTMLIonChipButtonElement: {
|
||||||
prototype: HTMLIonChipButtonElement;
|
prototype: HTMLIonChipButtonElement;
|
||||||
@ -666,7 +675,7 @@ import {
|
|||||||
} from './components/chip/chip';
|
} from './components/chip/chip';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonChipElement extends IonChip, HTMLElement {
|
interface HTMLIonChipElement extends IonChip, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonChipElement: {
|
var HTMLIonChipElement: {
|
||||||
prototype: HTMLIonChipElement;
|
prototype: HTMLIonChipElement;
|
||||||
@ -697,7 +706,7 @@ import {
|
|||||||
} from './components/col/col';
|
} from './components/col/col';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonColElement extends IonCol, HTMLElement {
|
interface HTMLIonColElement extends IonCol, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonColElement: {
|
var HTMLIonColElement: {
|
||||||
prototype: HTMLIonColElement;
|
prototype: HTMLIonColElement;
|
||||||
@ -727,7 +736,7 @@ import {
|
|||||||
} from './components/content/content';
|
} from './components/content/content';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonContentElement extends IonContent, HTMLElement {
|
interface HTMLIonContentElement extends IonContent, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonContentElement: {
|
var HTMLIonContentElement: {
|
||||||
prototype: HTMLIonContentElement;
|
prototype: HTMLIonContentElement;
|
||||||
@ -760,7 +769,7 @@ import {
|
|||||||
} from './components/cordova-platform/cordova-platform';
|
} from './components/cordova-platform/cordova-platform';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonCordovaPlatformElement extends IonCordovaPlatform, HTMLElement {
|
interface HTMLIonCordovaPlatformElement extends IonCordovaPlatform, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonCordovaPlatformElement: {
|
var HTMLIonCordovaPlatformElement: {
|
||||||
prototype: HTMLIonCordovaPlatformElement;
|
prototype: HTMLIonCordovaPlatformElement;
|
||||||
@ -790,7 +799,7 @@ import {
|
|||||||
} from './components/datetime/datetime';
|
} from './components/datetime/datetime';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonDatetimeElement extends IonDatetime, HTMLElement {
|
interface HTMLIonDatetimeElement extends IonDatetime, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonDatetimeElement: {
|
var HTMLIonDatetimeElement: {
|
||||||
prototype: HTMLIonDatetimeElement;
|
prototype: HTMLIonDatetimeElement;
|
||||||
@ -838,7 +847,7 @@ import {
|
|||||||
} from './components/events/events';
|
} from './components/events/events';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonEventsElement extends IonEvents, HTMLElement {
|
interface HTMLIonEventsElement extends IonEvents, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonEventsElement: {
|
var HTMLIonEventsElement: {
|
||||||
prototype: HTMLIonEventsElement;
|
prototype: HTMLIonEventsElement;
|
||||||
@ -868,7 +877,7 @@ import {
|
|||||||
} from './components/fab-button/fab-button';
|
} from './components/fab-button/fab-button';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonFabButtonElement extends IonFabButton, HTMLElement {
|
interface HTMLIonFabButtonElement extends IonFabButton, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonFabButtonElement: {
|
var HTMLIonFabButtonElement: {
|
||||||
prototype: HTMLIonFabButtonElement;
|
prototype: HTMLIonFabButtonElement;
|
||||||
@ -905,7 +914,7 @@ import {
|
|||||||
} from './components/fab-list/fab-list';
|
} from './components/fab-list/fab-list';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonFabListElement extends IonFabList, HTMLElement {
|
interface HTMLIonFabListElement extends IonFabList, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonFabListElement: {
|
var HTMLIonFabListElement: {
|
||||||
prototype: HTMLIonFabListElement;
|
prototype: HTMLIonFabListElement;
|
||||||
@ -935,7 +944,7 @@ import {
|
|||||||
} from './components/fab/fab';
|
} from './components/fab/fab';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonFabElement extends IonFab, HTMLElement {
|
interface HTMLIonFabElement extends IonFab, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonFabElement: {
|
var HTMLIonFabElement: {
|
||||||
prototype: HTMLIonFabElement;
|
prototype: HTMLIonFabElement;
|
||||||
@ -965,7 +974,7 @@ import {
|
|||||||
} from './components/footer/footer';
|
} from './components/footer/footer';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonFooterElement extends IonFooter, HTMLElement {
|
interface HTMLIonFooterElement extends IonFooter, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonFooterElement: {
|
var HTMLIonFooterElement: {
|
||||||
prototype: HTMLIonFooterElement;
|
prototype: HTMLIonFooterElement;
|
||||||
@ -995,7 +1004,7 @@ import {
|
|||||||
} from './components/gesture/gesture';
|
} from './components/gesture/gesture';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonGestureElement extends IonGesture, HTMLElement {
|
interface HTMLIonGestureElement extends IonGesture, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonGestureElement: {
|
var HTMLIonGestureElement: {
|
||||||
prototype: HTMLIonGestureElement;
|
prototype: HTMLIonGestureElement;
|
||||||
@ -1043,7 +1052,7 @@ import {
|
|||||||
} from './components/grid/grid';
|
} from './components/grid/grid';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonGridElement extends IonGrid, HTMLElement {
|
interface HTMLIonGridElement extends IonGrid, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonGridElement: {
|
var HTMLIonGridElement: {
|
||||||
prototype: HTMLIonGridElement;
|
prototype: HTMLIonGridElement;
|
||||||
@ -1073,7 +1082,7 @@ import {
|
|||||||
} from './components/header/header';
|
} from './components/header/header';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonHeaderElement extends IonHeader, HTMLElement {
|
interface HTMLIonHeaderElement extends IonHeader, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonHeaderElement: {
|
var HTMLIonHeaderElement: {
|
||||||
prototype: HTMLIonHeaderElement;
|
prototype: HTMLIonHeaderElement;
|
||||||
@ -1103,7 +1112,7 @@ import {
|
|||||||
} from './components/infinite-scroll-content/infinite-scroll-content';
|
} from './components/infinite-scroll-content/infinite-scroll-content';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonInfiniteScrollContentElement extends IonInfiniteScrollContent, HTMLElement {
|
interface HTMLIonInfiniteScrollContentElement extends IonInfiniteScrollContent, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonInfiniteScrollContentElement: {
|
var HTMLIonInfiniteScrollContentElement: {
|
||||||
prototype: HTMLIonInfiniteScrollContentElement;
|
prototype: HTMLIonInfiniteScrollContentElement;
|
||||||
@ -1134,7 +1143,7 @@ import {
|
|||||||
} from './components/infinite-scroll/infinite-scroll';
|
} from './components/infinite-scroll/infinite-scroll';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonInfiniteScrollElement extends IonInfiniteScroll, HTMLElement {
|
interface HTMLIonInfiniteScrollElement extends IonInfiniteScroll, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonInfiniteScrollElement: {
|
var HTMLIonInfiniteScrollElement: {
|
||||||
prototype: HTMLIonInfiniteScrollElement;
|
prototype: HTMLIonInfiniteScrollElement;
|
||||||
@ -1166,7 +1175,7 @@ import {
|
|||||||
} from './components/input/input';
|
} from './components/input/input';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonInputElement extends IonInput, HTMLElement {
|
interface HTMLIonInputElement extends IonInput, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonInputElement: {
|
var HTMLIonInputElement: {
|
||||||
prototype: HTMLIonInputElement;
|
prototype: HTMLIonInputElement;
|
||||||
@ -1222,7 +1231,7 @@ import {
|
|||||||
} from './components/item-divider/item-divider';
|
} from './components/item-divider/item-divider';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonItemDividerElement extends IonItemDivider, HTMLElement {
|
interface HTMLIonItemDividerElement extends IonItemDivider, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonItemDividerElement: {
|
var HTMLIonItemDividerElement: {
|
||||||
prototype: HTMLIonItemDividerElement;
|
prototype: HTMLIonItemDividerElement;
|
||||||
@ -1253,7 +1262,7 @@ import {
|
|||||||
} from './components/item-group/item-group';
|
} from './components/item-group/item-group';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonItemGroupElement extends IonItemGroup, HTMLElement {
|
interface HTMLIonItemGroupElement extends IonItemGroup, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonItemGroupElement: {
|
var HTMLIonItemGroupElement: {
|
||||||
prototype: HTMLIonItemGroupElement;
|
prototype: HTMLIonItemGroupElement;
|
||||||
@ -1283,7 +1292,7 @@ import {
|
|||||||
} from './components/item-option/item-option';
|
} from './components/item-option/item-option';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonItemOptionElement extends IonItemOption, HTMLElement {
|
interface HTMLIonItemOptionElement extends IonItemOption, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonItemOptionElement: {
|
var HTMLIonItemOptionElement: {
|
||||||
prototype: HTMLIonItemOptionElement;
|
prototype: HTMLIonItemOptionElement;
|
||||||
@ -1316,7 +1325,7 @@ import {
|
|||||||
} from './components/item-options/item-options';
|
} from './components/item-options/item-options';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonItemOptionsElement extends IonItemOptions, HTMLElement {
|
interface HTMLIonItemOptionsElement extends IonItemOptions, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonItemOptionsElement: {
|
var HTMLIonItemOptionsElement: {
|
||||||
prototype: HTMLIonItemOptionsElement;
|
prototype: HTMLIonItemOptionsElement;
|
||||||
@ -1346,7 +1355,7 @@ import {
|
|||||||
} from './components/item-sliding/item-sliding';
|
} from './components/item-sliding/item-sliding';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonItemSlidingElement extends IonItemSliding, HTMLElement {
|
interface HTMLIonItemSlidingElement extends IonItemSliding, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonItemSlidingElement: {
|
var HTMLIonItemSlidingElement: {
|
||||||
prototype: HTMLIonItemSlidingElement;
|
prototype: HTMLIonItemSlidingElement;
|
||||||
@ -1376,7 +1385,7 @@ import {
|
|||||||
} from './components/item/item';
|
} from './components/item/item';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonItemElement extends IonItem, HTMLElement {
|
interface HTMLIonItemElement extends IonItem, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonItemElement: {
|
var HTMLIonItemElement: {
|
||||||
prototype: HTMLIonItemElement;
|
prototype: HTMLIonItemElement;
|
||||||
@ -1410,7 +1419,7 @@ import {
|
|||||||
} from './components/keyboard-controller/keyboard-controller';
|
} from './components/keyboard-controller/keyboard-controller';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonKeyboardControllerElement extends IonKeyboardController, HTMLElement {
|
interface HTMLIonKeyboardControllerElement extends IonKeyboardController, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonKeyboardControllerElement: {
|
var HTMLIonKeyboardControllerElement: {
|
||||||
prototype: HTMLIonKeyboardControllerElement;
|
prototype: HTMLIonKeyboardControllerElement;
|
||||||
@ -1440,7 +1449,7 @@ import {
|
|||||||
} from './components/label/label';
|
} from './components/label/label';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonLabelElement extends IonLabel, HTMLElement {
|
interface HTMLIonLabelElement extends IonLabel, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonLabelElement: {
|
var HTMLIonLabelElement: {
|
||||||
prototype: HTMLIonLabelElement;
|
prototype: HTMLIonLabelElement;
|
||||||
@ -1474,7 +1483,7 @@ import {
|
|||||||
} from './components/list-header/list-header';
|
} from './components/list-header/list-header';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonListHeaderElement extends IonListHeader, HTMLElement {
|
interface HTMLIonListHeaderElement extends IonListHeader, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonListHeaderElement: {
|
var HTMLIonListHeaderElement: {
|
||||||
prototype: HTMLIonListHeaderElement;
|
prototype: HTMLIonListHeaderElement;
|
||||||
@ -1505,7 +1514,7 @@ import {
|
|||||||
} from './components/list/list';
|
} from './components/list/list';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonListElement extends IonList, HTMLElement {
|
interface HTMLIonListElement extends IonList, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonListElement: {
|
var HTMLIonListElement: {
|
||||||
prototype: HTMLIonListElement;
|
prototype: HTMLIonListElement;
|
||||||
@ -1535,7 +1544,7 @@ import {
|
|||||||
} from './components/loading-controller/loading-controller';
|
} from './components/loading-controller/loading-controller';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonLoadingControllerElement extends IonLoadingController, HTMLElement {
|
interface HTMLIonLoadingControllerElement extends IonLoadingController, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonLoadingControllerElement: {
|
var HTMLIonLoadingControllerElement: {
|
||||||
prototype: HTMLIonLoadingControllerElement;
|
prototype: HTMLIonLoadingControllerElement;
|
||||||
@ -1565,7 +1574,7 @@ import {
|
|||||||
} from './components/loading/loading';
|
} from './components/loading/loading';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonLoadingElement extends IonLoading, HTMLElement {
|
interface HTMLIonLoadingElement extends IonLoading, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonLoadingElement: {
|
var HTMLIonLoadingElement: {
|
||||||
prototype: HTMLIonLoadingElement;
|
prototype: HTMLIonLoadingElement;
|
||||||
@ -1604,7 +1613,7 @@ import {
|
|||||||
} from './components/menu-controller/menu-controller';
|
} from './components/menu-controller/menu-controller';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonMenuControllerElement extends IonMenuController, HTMLElement {
|
interface HTMLIonMenuControllerElement extends IonMenuController, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonMenuControllerElement: {
|
var HTMLIonMenuControllerElement: {
|
||||||
prototype: HTMLIonMenuControllerElement;
|
prototype: HTMLIonMenuControllerElement;
|
||||||
@ -1634,7 +1643,7 @@ import {
|
|||||||
} from './components/menu-toggle/menu-toggle';
|
} from './components/menu-toggle/menu-toggle';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonMenuToggleElement extends IonMenuToggle, HTMLElement {
|
interface HTMLIonMenuToggleElement extends IonMenuToggle, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonMenuToggleElement: {
|
var HTMLIonMenuToggleElement: {
|
||||||
prototype: HTMLIonMenuToggleElement;
|
prototype: HTMLIonMenuToggleElement;
|
||||||
@ -1664,7 +1673,7 @@ import {
|
|||||||
} from './components/menu/menu';
|
} from './components/menu/menu';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonMenuElement extends IonMenu, HTMLElement {
|
interface HTMLIonMenuElement extends IonMenu, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonMenuElement: {
|
var HTMLIonMenuElement: {
|
||||||
prototype: HTMLIonMenuElement;
|
prototype: HTMLIonMenuElement;
|
||||||
@ -1701,7 +1710,7 @@ import {
|
|||||||
} from './components/modal-controller/modal-controller';
|
} from './components/modal-controller/modal-controller';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonModalControllerElement extends IonModalController, HTMLElement {
|
interface HTMLIonModalControllerElement extends IonModalController, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonModalControllerElement: {
|
var HTMLIonModalControllerElement: {
|
||||||
prototype: HTMLIonModalControllerElement;
|
prototype: HTMLIonModalControllerElement;
|
||||||
@ -1731,7 +1740,7 @@ import {
|
|||||||
} from './components/modal/modal';
|
} from './components/modal/modal';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonModalElement extends IonModal, HTMLElement {
|
interface HTMLIonModalElement extends IonModal, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonModalElement: {
|
var HTMLIonModalElement: {
|
||||||
prototype: HTMLIonModalElement;
|
prototype: HTMLIonModalElement;
|
||||||
@ -1772,7 +1781,7 @@ import {
|
|||||||
} from './components/nav-pop/nav-pop';
|
} from './components/nav-pop/nav-pop';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonNavPopElement extends IonNavPop, HTMLElement {
|
interface HTMLIonNavPopElement extends IonNavPop, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonNavPopElement: {
|
var HTMLIonNavPopElement: {
|
||||||
prototype: HTMLIonNavPopElement;
|
prototype: HTMLIonNavPopElement;
|
||||||
@ -1802,7 +1811,7 @@ import {
|
|||||||
} from './components/nav/nav';
|
} from './components/nav/nav';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonNavElement extends IonNav, HTMLElement {
|
interface HTMLIonNavElement extends IonNav, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonNavElement: {
|
var HTMLIonNavElement: {
|
||||||
prototype: HTMLIonNavElement;
|
prototype: HTMLIonNavElement;
|
||||||
@ -1836,7 +1845,7 @@ import {
|
|||||||
} from './components/note/note';
|
} from './components/note/note';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonNoteElement extends IonNote, HTMLElement {
|
interface HTMLIonNoteElement extends IonNote, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonNoteElement: {
|
var HTMLIonNoteElement: {
|
||||||
prototype: HTMLIonNoteElement;
|
prototype: HTMLIonNoteElement;
|
||||||
@ -1867,7 +1876,7 @@ import {
|
|||||||
} from './components/page/page';
|
} from './components/page/page';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonPageElement extends IonPage, HTMLElement {
|
interface HTMLIonPageElement extends IonPage, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonPageElement: {
|
var HTMLIonPageElement: {
|
||||||
prototype: HTMLIonPageElement;
|
prototype: HTMLIonPageElement;
|
||||||
@ -1897,7 +1906,7 @@ import {
|
|||||||
} from './components/picker-column/picker-column';
|
} from './components/picker-column/picker-column';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonPickerColumnElement extends IonPickerColumn, HTMLElement {
|
interface HTMLIonPickerColumnElement extends IonPickerColumn, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonPickerColumnElement: {
|
var HTMLIonPickerColumnElement: {
|
||||||
prototype: HTMLIonPickerColumnElement;
|
prototype: HTMLIonPickerColumnElement;
|
||||||
@ -1927,7 +1936,7 @@ import {
|
|||||||
} from './components/picker-controller/picker-controller';
|
} from './components/picker-controller/picker-controller';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonPickerControllerElement extends IonPickerController, HTMLElement {
|
interface HTMLIonPickerControllerElement extends IonPickerController, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonPickerControllerElement: {
|
var HTMLIonPickerControllerElement: {
|
||||||
prototype: HTMLIonPickerControllerElement;
|
prototype: HTMLIonPickerControllerElement;
|
||||||
@ -1957,7 +1966,7 @@ import {
|
|||||||
} from './components/picker/picker';
|
} from './components/picker/picker';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonPickerElement extends IonPicker, HTMLElement {
|
interface HTMLIonPickerElement extends IonPicker, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonPickerElement: {
|
var HTMLIonPickerElement: {
|
||||||
prototype: HTMLIonPickerElement;
|
prototype: HTMLIonPickerElement;
|
||||||
@ -1998,7 +2007,7 @@ import {
|
|||||||
} from './components/popover-controller/popover-controller';
|
} from './components/popover-controller/popover-controller';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonPopoverControllerElement extends IonPopoverController, HTMLElement {
|
interface HTMLIonPopoverControllerElement extends IonPopoverController, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonPopoverControllerElement: {
|
var HTMLIonPopoverControllerElement: {
|
||||||
prototype: HTMLIonPopoverControllerElement;
|
prototype: HTMLIonPopoverControllerElement;
|
||||||
@ -2028,7 +2037,7 @@ import {
|
|||||||
} from './components/popover/popover';
|
} from './components/popover/popover';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonPopoverElement extends IonPopover, HTMLElement {
|
interface HTMLIonPopoverElement extends IonPopover, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonPopoverElement: {
|
var HTMLIonPopoverElement: {
|
||||||
prototype: HTMLIonPopoverElement;
|
prototype: HTMLIonPopoverElement;
|
||||||
@ -2071,7 +2080,7 @@ import {
|
|||||||
} from './components/radio-group/radio-group';
|
} from './components/radio-group/radio-group';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonRadioGroupElement extends IonRadioGroup, HTMLElement {
|
interface HTMLIonRadioGroupElement extends IonRadioGroup, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonRadioGroupElement: {
|
var HTMLIonRadioGroupElement: {
|
||||||
prototype: HTMLIonRadioGroupElement;
|
prototype: HTMLIonRadioGroupElement;
|
||||||
@ -2104,7 +2113,7 @@ import {
|
|||||||
} from './components/radio/radio';
|
} from './components/radio/radio';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonRadioElement extends IonRadio, HTMLElement {
|
interface HTMLIonRadioElement extends IonRadio, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonRadioElement: {
|
var HTMLIonRadioElement: {
|
||||||
prototype: HTMLIonRadioElement;
|
prototype: HTMLIonRadioElement;
|
||||||
@ -2139,7 +2148,7 @@ import {
|
|||||||
} from './components/range-knob/range-knob';
|
} from './components/range-knob/range-knob';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonRangeKnobElement extends IonRangeKnob, HTMLElement {
|
interface HTMLIonRangeKnobElement extends IonRangeKnob, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonRangeKnobElement: {
|
var HTMLIonRangeKnobElement: {
|
||||||
prototype: HTMLIonRangeKnobElement;
|
prototype: HTMLIonRangeKnobElement;
|
||||||
@ -2177,7 +2186,7 @@ import {
|
|||||||
} from './components/range/range';
|
} from './components/range/range';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonRangeElement extends IonRange, HTMLElement {
|
interface HTMLIonRangeElement extends IonRange, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonRangeElement: {
|
var HTMLIonRangeElement: {
|
||||||
prototype: HTMLIonRangeElement;
|
prototype: HTMLIonRangeElement;
|
||||||
@ -2217,7 +2226,7 @@ import {
|
|||||||
} from './components/refresher-content/refresher-content';
|
} from './components/refresher-content/refresher-content';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonRefresherContentElement extends IonRefresherContent, HTMLElement {
|
interface HTMLIonRefresherContentElement extends IonRefresherContent, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonRefresherContentElement: {
|
var HTMLIonRefresherContentElement: {
|
||||||
prototype: HTMLIonRefresherContentElement;
|
prototype: HTMLIonRefresherContentElement;
|
||||||
@ -2250,7 +2259,7 @@ import {
|
|||||||
} from './components/refresher/refresher';
|
} from './components/refresher/refresher';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonRefresherElement extends IonRefresher, HTMLElement {
|
interface HTMLIonRefresherElement extends IonRefresher, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonRefresherElement: {
|
var HTMLIonRefresherElement: {
|
||||||
prototype: HTMLIonRefresherElement;
|
prototype: HTMLIonRefresherElement;
|
||||||
@ -2284,7 +2293,7 @@ import {
|
|||||||
} from './components/reorder-group/reorder-group';
|
} from './components/reorder-group/reorder-group';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonReorderGroupElement extends IonReorderGroup, HTMLElement {
|
interface HTMLIonReorderGroupElement extends IonReorderGroup, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonReorderGroupElement: {
|
var HTMLIonReorderGroupElement: {
|
||||||
prototype: HTMLIonReorderGroupElement;
|
prototype: HTMLIonReorderGroupElement;
|
||||||
@ -2314,7 +2323,7 @@ import {
|
|||||||
} from './components/reorder/reorder';
|
} from './components/reorder/reorder';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonReorderElement extends IonReorder, HTMLElement {
|
interface HTMLIonReorderElement extends IonReorder, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonReorderElement: {
|
var HTMLIonReorderElement: {
|
||||||
prototype: HTMLIonReorderElement;
|
prototype: HTMLIonReorderElement;
|
||||||
@ -2344,7 +2353,7 @@ import {
|
|||||||
} from './components/ripple-effect/ripple-effect';
|
} from './components/ripple-effect/ripple-effect';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonRippleEffectElement extends IonRippleEffect, HTMLElement {
|
interface HTMLIonRippleEffectElement extends IonRippleEffect, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonRippleEffectElement: {
|
var HTMLIonRippleEffectElement: {
|
||||||
prototype: HTMLIonRippleEffectElement;
|
prototype: HTMLIonRippleEffectElement;
|
||||||
@ -2374,7 +2383,7 @@ import {
|
|||||||
} from './components/route-link/route-link';
|
} from './components/route-link/route-link';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonRouteLinkElement extends IonRouteLink, HTMLElement {
|
interface HTMLIonRouteLinkElement extends IonRouteLink, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonRouteLinkElement: {
|
var HTMLIonRouteLinkElement: {
|
||||||
prototype: HTMLIonRouteLinkElement;
|
prototype: HTMLIonRouteLinkElement;
|
||||||
@ -2405,7 +2414,7 @@ import {
|
|||||||
} from './components/route/route';
|
} from './components/route/route';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonRouteElement extends IonRoute, HTMLElement {
|
interface HTMLIonRouteElement extends IonRoute, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonRouteElement: {
|
var HTMLIonRouteElement: {
|
||||||
prototype: HTMLIonRouteElement;
|
prototype: HTMLIonRouteElement;
|
||||||
@ -2437,7 +2446,7 @@ import {
|
|||||||
} from './components/router-controller/router-controller';
|
} from './components/router-controller/router-controller';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonRouterControllerElement extends IonRouterController, HTMLElement {
|
interface HTMLIonRouterControllerElement extends IonRouterController, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonRouterControllerElement: {
|
var HTMLIonRouterControllerElement: {
|
||||||
prototype: HTMLIonRouterControllerElement;
|
prototype: HTMLIonRouterControllerElement;
|
||||||
@ -2467,7 +2476,7 @@ import {
|
|||||||
} from './components/row/row';
|
} from './components/row/row';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonRowElement extends IonRow, HTMLElement {
|
interface HTMLIonRowElement extends IonRow, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonRowElement: {
|
var HTMLIonRowElement: {
|
||||||
prototype: HTMLIonRowElement;
|
prototype: HTMLIonRowElement;
|
||||||
@ -2497,7 +2506,7 @@ import {
|
|||||||
} from './components/scroll/scroll';
|
} from './components/scroll/scroll';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonScrollElement extends IonScroll, HTMLElement {
|
interface HTMLIonScrollElement extends IonScroll, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonScrollElement: {
|
var HTMLIonScrollElement: {
|
||||||
prototype: HTMLIonScrollElement;
|
prototype: HTMLIonScrollElement;
|
||||||
@ -2530,7 +2539,7 @@ import {
|
|||||||
} from './components/searchbar/searchbar';
|
} from './components/searchbar/searchbar';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonSearchbarElement extends IonSearchbar, HTMLElement {
|
interface HTMLIonSearchbarElement extends IonSearchbar, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonSearchbarElement: {
|
var HTMLIonSearchbarElement: {
|
||||||
prototype: HTMLIonSearchbarElement;
|
prototype: HTMLIonSearchbarElement;
|
||||||
@ -2571,7 +2580,7 @@ import {
|
|||||||
} from './components/segment-button/segment-button';
|
} from './components/segment-button/segment-button';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonSegmentButtonElement extends IonSegmentButton, HTMLElement {
|
interface HTMLIonSegmentButtonElement extends IonSegmentButton, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonSegmentButtonElement: {
|
var HTMLIonSegmentButtonElement: {
|
||||||
prototype: HTMLIonSegmentButtonElement;
|
prototype: HTMLIonSegmentButtonElement;
|
||||||
@ -2607,7 +2616,7 @@ import {
|
|||||||
} from './components/segment/segment';
|
} from './components/segment/segment';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonSegmentElement extends IonSegment, HTMLElement {
|
interface HTMLIonSegmentElement extends IonSegment, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonSegmentElement: {
|
var HTMLIonSegmentElement: {
|
||||||
prototype: HTMLIonSegmentElement;
|
prototype: HTMLIonSegmentElement;
|
||||||
@ -2640,7 +2649,7 @@ import {
|
|||||||
} from './components/select-option/select-option';
|
} from './components/select-option/select-option';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonSelectOptionElement extends IonSelectOption, HTMLElement {
|
interface HTMLIonSelectOptionElement extends IonSelectOption, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonSelectOptionElement: {
|
var HTMLIonSelectOptionElement: {
|
||||||
prototype: HTMLIonSelectOptionElement;
|
prototype: HTMLIonSelectOptionElement;
|
||||||
@ -2672,7 +2681,7 @@ import {
|
|||||||
} from './components/select-popover/select-popover';
|
} from './components/select-popover/select-popover';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonSelectPopoverElement extends IonSelectPopover, HTMLElement {
|
interface HTMLIonSelectPopoverElement extends IonSelectPopover, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonSelectPopoverElement: {
|
var HTMLIonSelectPopoverElement: {
|
||||||
prototype: HTMLIonSelectPopoverElement;
|
prototype: HTMLIonSelectPopoverElement;
|
||||||
@ -2705,7 +2714,7 @@ import {
|
|||||||
} from './components/select/select';
|
} from './components/select/select';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonSelectElement extends IonSelect, HTMLElement {
|
interface HTMLIonSelectElement extends IonSelect, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonSelectElement: {
|
var HTMLIonSelectElement: {
|
||||||
prototype: HTMLIonSelectElement;
|
prototype: HTMLIonSelectElement;
|
||||||
@ -2744,7 +2753,7 @@ import {
|
|||||||
} from './components/skeleton-text/skeleton-text';
|
} from './components/skeleton-text/skeleton-text';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonSkeletonTextElement extends IonSkeletonText, HTMLElement {
|
interface HTMLIonSkeletonTextElement extends IonSkeletonText, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonSkeletonTextElement: {
|
var HTMLIonSkeletonTextElement: {
|
||||||
prototype: HTMLIonSkeletonTextElement;
|
prototype: HTMLIonSkeletonTextElement;
|
||||||
@ -2774,7 +2783,7 @@ import {
|
|||||||
} from './components/slide/slide';
|
} from './components/slide/slide';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonSlideElement extends IonSlide, HTMLElement {
|
interface HTMLIonSlideElement extends IonSlide, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonSlideElement: {
|
var HTMLIonSlideElement: {
|
||||||
prototype: HTMLIonSlideElement;
|
prototype: HTMLIonSlideElement;
|
||||||
@ -2804,7 +2813,7 @@ import {
|
|||||||
} from './components/slides/slides';
|
} from './components/slides/slides';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonSlidesElement extends IonSlides, HTMLElement {
|
interface HTMLIonSlidesElement extends IonSlides, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonSlidesElement: {
|
var HTMLIonSlidesElement: {
|
||||||
prototype: HTMLIonSlidesElement;
|
prototype: HTMLIonSlidesElement;
|
||||||
@ -2835,7 +2844,7 @@ import {
|
|||||||
} from './components/spinner/spinner';
|
} from './components/spinner/spinner';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonSpinnerElement extends IonSpinner, HTMLElement {
|
interface HTMLIonSpinnerElement extends IonSpinner, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonSpinnerElement: {
|
var HTMLIonSpinnerElement: {
|
||||||
prototype: HTMLIonSpinnerElement;
|
prototype: HTMLIonSpinnerElement;
|
||||||
@ -2869,7 +2878,7 @@ import {
|
|||||||
} from './components/split-pane/split-pane';
|
} from './components/split-pane/split-pane';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonSplitPaneElement extends IonSplitPane, HTMLElement {
|
interface HTMLIonSplitPaneElement extends IonSplitPane, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonSplitPaneElement: {
|
var HTMLIonSplitPaneElement: {
|
||||||
prototype: HTMLIonSplitPaneElement;
|
prototype: HTMLIonSplitPaneElement;
|
||||||
@ -2900,7 +2909,7 @@ import {
|
|||||||
} from './components/status-tap/status-tap';
|
} from './components/status-tap/status-tap';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonStatusTapElement extends IonStatusTap, HTMLElement {
|
interface HTMLIonStatusTapElement extends IonStatusTap, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonStatusTapElement: {
|
var HTMLIonStatusTapElement: {
|
||||||
prototype: HTMLIonStatusTapElement;
|
prototype: HTMLIonStatusTapElement;
|
||||||
@ -2930,7 +2939,7 @@ import {
|
|||||||
} from './components/tab-button/tab-button';
|
} from './components/tab-button/tab-button';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonTabButtonElement extends IonTabButton, HTMLElement {
|
interface HTMLIonTabButtonElement extends IonTabButton, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonTabButtonElement: {
|
var HTMLIonTabButtonElement: {
|
||||||
prototype: HTMLIonTabButtonElement;
|
prototype: HTMLIonTabButtonElement;
|
||||||
@ -2962,7 +2971,7 @@ import {
|
|||||||
} from './components/tab/tab';
|
} from './components/tab/tab';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonTabElement extends IonTab, HTMLElement {
|
interface HTMLIonTabElement extends IonTab, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonTabElement: {
|
var HTMLIonTabElement: {
|
||||||
prototype: HTMLIonTabElement;
|
prototype: HTMLIonTabElement;
|
||||||
@ -3001,7 +3010,7 @@ import {
|
|||||||
} from './components/tabbar/tabbar';
|
} from './components/tabbar/tabbar';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonTabbarElement extends IonTabbar, HTMLElement {
|
interface HTMLIonTabbarElement extends IonTabbar, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonTabbarElement: {
|
var HTMLIonTabbarElement: {
|
||||||
prototype: HTMLIonTabbarElement;
|
prototype: HTMLIonTabbarElement;
|
||||||
@ -3037,7 +3046,7 @@ import {
|
|||||||
} from './components/tabs/tabs';
|
} from './components/tabs/tabs';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonTabsElement extends IonTabs, HTMLElement {
|
interface HTMLIonTabsElement extends IonTabs, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonTabsElement: {
|
var HTMLIonTabsElement: {
|
||||||
prototype: HTMLIonTabsElement;
|
prototype: HTMLIonTabsElement;
|
||||||
@ -3074,7 +3083,7 @@ import {
|
|||||||
} from './components/tap-click/tap-click';
|
} from './components/tap-click/tap-click';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonTapClickElement extends IonTapClick, HTMLElement {
|
interface HTMLIonTapClickElement extends IonTapClick, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonTapClickElement: {
|
var HTMLIonTapClickElement: {
|
||||||
prototype: HTMLIonTapClickElement;
|
prototype: HTMLIonTapClickElement;
|
||||||
@ -3104,7 +3113,7 @@ import {
|
|||||||
} from './components/text/text';
|
} from './components/text/text';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonTextElement extends IonText, HTMLElement {
|
interface HTMLIonTextElement extends IonText, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonTextElement: {
|
var HTMLIonTextElement: {
|
||||||
prototype: HTMLIonTextElement;
|
prototype: HTMLIonTextElement;
|
||||||
@ -3135,7 +3144,7 @@ import {
|
|||||||
} from './components/textarea/textarea';
|
} from './components/textarea/textarea';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonTextareaElement extends IonTextarea, HTMLElement {
|
interface HTMLIonTextareaElement extends IonTextarea, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonTextareaElement: {
|
var HTMLIonTextareaElement: {
|
||||||
prototype: HTMLIonTextareaElement;
|
prototype: HTMLIonTextareaElement;
|
||||||
@ -3181,7 +3190,7 @@ import {
|
|||||||
} from './components/thumbnail/thumbnail';
|
} from './components/thumbnail/thumbnail';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonThumbnailElement extends IonThumbnail, HTMLElement {
|
interface HTMLIonThumbnailElement extends IonThumbnail, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonThumbnailElement: {
|
var HTMLIonThumbnailElement: {
|
||||||
prototype: HTMLIonThumbnailElement;
|
prototype: HTMLIonThumbnailElement;
|
||||||
@ -3211,7 +3220,7 @@ import {
|
|||||||
} from './components/title/title';
|
} from './components/title/title';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonTitleElement extends IonTitle, HTMLElement {
|
interface HTMLIonTitleElement extends IonTitle, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonTitleElement: {
|
var HTMLIonTitleElement: {
|
||||||
prototype: HTMLIonTitleElement;
|
prototype: HTMLIonTitleElement;
|
||||||
@ -3241,7 +3250,7 @@ import {
|
|||||||
} from './components/toast-controller/toast-controller';
|
} from './components/toast-controller/toast-controller';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonToastControllerElement extends IonToastController, HTMLElement {
|
interface HTMLIonToastControllerElement extends IonToastController, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonToastControllerElement: {
|
var HTMLIonToastControllerElement: {
|
||||||
prototype: HTMLIonToastControllerElement;
|
prototype: HTMLIonToastControllerElement;
|
||||||
@ -3271,7 +3280,7 @@ import {
|
|||||||
} from './components/toast/toast';
|
} from './components/toast/toast';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonToastElement extends IonToast, HTMLElement {
|
interface HTMLIonToastElement extends IonToast, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonToastElement: {
|
var HTMLIonToastElement: {
|
||||||
prototype: HTMLIonToastElement;
|
prototype: HTMLIonToastElement;
|
||||||
@ -3312,7 +3321,7 @@ import {
|
|||||||
} from './components/toggle/toggle';
|
} from './components/toggle/toggle';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonToggleElement extends IonToggle, HTMLElement {
|
interface HTMLIonToggleElement extends IonToggle, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonToggleElement: {
|
var HTMLIonToggleElement: {
|
||||||
prototype: HTMLIonToggleElement;
|
prototype: HTMLIonToggleElement;
|
||||||
@ -3347,7 +3356,7 @@ import {
|
|||||||
} from './components/toolbar/toolbar';
|
} from './components/toolbar/toolbar';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonToolbarElement extends IonToolbar, HTMLElement {
|
interface HTMLIonToolbarElement extends IonToolbar, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonToolbarElement: {
|
var HTMLIonToolbarElement: {
|
||||||
prototype: HTMLIonToolbarElement;
|
prototype: HTMLIonToolbarElement;
|
||||||
@ -3379,7 +3388,7 @@ import {
|
|||||||
} from './components/virtual-scroll/virtual-scroll';
|
} from './components/virtual-scroll/virtual-scroll';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLIonVirtualScrollElement extends IonVirtualScroll, HTMLElement {
|
interface HTMLIonVirtualScrollElement extends IonVirtualScroll, HTMLStencilElement {
|
||||||
}
|
}
|
||||||
var HTMLIonVirtualScrollElement: {
|
var HTMLIonVirtualScrollElement: {
|
||||||
prototype: HTMLIonVirtualScrollElement;
|
prototype: HTMLIonVirtualScrollElement;
|
||||||
|
Reference in New Issue
Block a user