@ionic/angular 8.7.17-dev.11770147425.1bfcd5e5 → 8.7.17-dev.11770319814.172b4f50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/directives/proxies.d.ts +13 -1
- package/esm2022/directives/proxies.mjs +5 -5
- package/esm2022/standalone/directives/proxies.mjs +5 -5
- package/fesm2022/ionic-angular-standalone.mjs +4 -4
- package/fesm2022/ionic-angular-standalone.mjs.map +1 -1
- package/fesm2022/ionic-angular.mjs +4 -4
- package/fesm2022/ionic-angular.mjs.map +1 -1
- package/package.json +2 -2
- package/standalone/directives/proxies.d.ts +13 -1
package/directives/proxies.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ import type { RangeChangeEventDetail as IIonRangeRangeChangeEventDetail } from '
|
|
|
22
22
|
import type { RangeKnobMoveStartEventDetail as IIonRangeRangeKnobMoveStartEventDetail } from '@ionic/core';
|
|
23
23
|
import type { RangeKnobMoveEndEventDetail as IIonRangeRangeKnobMoveEndEventDetail } from '@ionic/core';
|
|
24
24
|
import type { RefresherEventDetail as IIonRefresherRefresherEventDetail } from '@ionic/core';
|
|
25
|
+
import type { RefresherPullEndEventDetail as IIonRefresherRefresherPullEndEventDetail } from '@ionic/core';
|
|
25
26
|
import type { ItemReorderEventDetail as IIonReorderGroupItemReorderEventDetail } from '@ionic/core';
|
|
26
27
|
import type { ReorderMoveEventDetail as IIonReorderGroupReorderMoveEventDetail } from '@ionic/core';
|
|
27
28
|
import type { ReorderEndEventDetail as IIonReorderGroupReorderEndEventDetail } from '@ionic/core';
|
|
@@ -980,8 +981,19 @@ export declare interface IonRefresher extends Components.IonRefresher {
|
|
|
980
981
|
ionPull: EventEmitter<CustomEvent<void>>;
|
|
981
982
|
/**
|
|
982
983
|
* Emitted when the user begins to start pulling down.
|
|
984
|
+
TODO(FW-7044): Remove this in a major release @deprecated Use `ionPullStart` instead.
|
|
983
985
|
*/
|
|
984
986
|
ionStart: EventEmitter<CustomEvent<void>>;
|
|
987
|
+
/**
|
|
988
|
+
* Emitted when the user begins to start pulling down.
|
|
989
|
+
*/
|
|
990
|
+
ionPullStart: EventEmitter<CustomEvent<void>>;
|
|
991
|
+
/**
|
|
992
|
+
* Emitted when the refresher has returned to the inactive state
|
|
993
|
+
after a pull gesture. This fires whether the refresh completed
|
|
994
|
+
successfully or was canceled.
|
|
995
|
+
*/
|
|
996
|
+
ionPullEnd: EventEmitter<CustomEvent<IIonRefresherRefresherPullEndEventDetail>>;
|
|
985
997
|
}
|
|
986
998
|
export declare class IonRefresherContent {
|
|
987
999
|
protected z: NgZone;
|
|
@@ -1176,7 +1188,7 @@ export declare class IonSelectModal {
|
|
|
1176
1188
|
protected el: HTMLIonSelectModalElement;
|
|
1177
1189
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1178
1190
|
static ɵfac: i0.ɵɵFactoryDeclaration<IonSelectModal, never>;
|
|
1179
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IonSelectModal, "ion-select-modal", never, { "header": { "alias": "header"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1191
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IonSelectModal, "ion-select-modal", never, { "cancelText": { "alias": "cancelText"; "required": false; }; "header": { "alias": "header"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1180
1192
|
}
|
|
1181
1193
|
export declare interface IonSelectModal extends Components.IonSelectModal {
|
|
1182
1194
|
}
|