@ionic/angular 8.7.18-dev.11770238549.14c2a85f → 8.7.18-dev.11770316329.126ef4af
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 +12 -1
- package/esm2022/directives/proxies.mjs +2 -2
- package/esm2022/standalone/directives/proxies.mjs +2 -2
- package/fesm2022/ionic-angular-standalone.mjs +1 -1
- package/fesm2022/ionic-angular-standalone.mjs.map +1 -1
- package/fesm2022/ionic-angular.mjs +1 -1
- package/fesm2022/ionic-angular.mjs.map +1 -1
- package/package.json +2 -2
- package/standalone/directives/proxies.d.ts +12 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ionic/angular",
|
|
3
|
-
"version": "8.7.18-dev.
|
|
3
|
+
"version": "8.7.18-dev.11770316329.126ef4af",
|
|
4
4
|
"description": "Angular specific wrappers for @ionic/core",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ionic",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
}
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@ionic/core": "8.7.18-dev.
|
|
53
|
+
"@ionic/core": "8.7.18-dev.11770316329.126ef4af",
|
|
54
54
|
"ionicons": "^8.0.13",
|
|
55
55
|
"jsonc-parser": "^3.0.0",
|
|
56
56
|
"tslib": "^2.3.0"
|
|
@@ -11,6 +11,7 @@ import type { MenuCloseEventDetail as IIonMenuMenuCloseEventDetail } from '@ioni
|
|
|
11
11
|
import type { PickerColumnChangeEventDetail as IIonPickerColumnPickerColumnChangeEventDetail } from '@ionic/core/components';
|
|
12
12
|
import type { OverlayEventDetail as IIonPickerLegacyOverlayEventDetail } from '@ionic/core/components';
|
|
13
13
|
import type { RefresherEventDetail as IIonRefresherRefresherEventDetail } from '@ionic/core/components';
|
|
14
|
+
import type { RefresherPullEndEventDetail as IIonRefresherRefresherPullEndEventDetail } from '@ionic/core/components';
|
|
14
15
|
import type { ItemReorderEventDetail as IIonReorderGroupItemReorderEventDetail } from '@ionic/core/components';
|
|
15
16
|
import type { ReorderMoveEventDetail as IIonReorderGroupReorderMoveEventDetail } from '@ionic/core/components';
|
|
16
17
|
import type { ReorderEndEventDetail as IIonReorderGroupReorderEndEventDetail } from '@ionic/core/components';
|
|
@@ -759,9 +760,19 @@ export declare interface IonRefresher extends Components.IonRefresher {
|
|
|
759
760
|
*/
|
|
760
761
|
ionPull: EventEmitter<CustomEvent<void>>;
|
|
761
762
|
/**
|
|
762
|
-
* Emitted when the user begins to start pulling down.
|
|
763
|
+
* Emitted when the user begins to start pulling down. @deprecated Use `ionPullStart` instead.
|
|
763
764
|
*/
|
|
764
765
|
ionStart: EventEmitter<CustomEvent<void>>;
|
|
766
|
+
/**
|
|
767
|
+
* Emitted when the user begins to start pulling down.
|
|
768
|
+
*/
|
|
769
|
+
ionPullStart: EventEmitter<CustomEvent<void>>;
|
|
770
|
+
/**
|
|
771
|
+
* Emitted when the refresher has returned to the inactive state
|
|
772
|
+
after a pull gesture. This fires whether the refresh completed
|
|
773
|
+
successfully or was canceled.
|
|
774
|
+
*/
|
|
775
|
+
ionPullEnd: EventEmitter<CustomEvent<IIonRefresherRefresherPullEndEventDetail>>;
|
|
765
776
|
}
|
|
766
777
|
export declare class IonRefresherContent {
|
|
767
778
|
protected z: NgZone;
|