@ionic/angular 8.7.17-dev.11772118942.181221d4 → 8.7.17-dev.11772568074.1d7a4aea
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/common/overlays/modal.d.ts +13 -1
- package/directives/proxies.d.ts +12 -0
- package/esm2022/common/overlays/modal.mjs +1 -1
- package/esm2022/directives/proxies.mjs +2 -2
- package/esm2022/standalone/directives/proxies.mjs +2 -2
- package/fesm2022/ionic-angular-common.mjs.map +1 -1
- 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 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ionic/angular",
|
|
3
|
-
"version": "8.7.17-dev.
|
|
3
|
+
"version": "8.7.17-dev.11772568074.1d7a4aea",
|
|
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.17-dev.
|
|
53
|
+
"@ionic/core": "8.7.17-dev.11772568074.1d7a4aea",
|
|
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';
|
|
@@ -760,8 +761,19 @@ export declare interface IonRefresher extends Components.IonRefresher {
|
|
|
760
761
|
ionPull: EventEmitter<CustomEvent<void>>;
|
|
761
762
|
/**
|
|
762
763
|
* Emitted when the user begins to start pulling down.
|
|
764
|
+
TODO(FW-7044): Remove this in a major release @deprecated Use `ionPullStart` instead.
|
|
763
765
|
*/
|
|
764
766
|
ionStart: EventEmitter<CustomEvent<void>>;
|
|
767
|
+
/**
|
|
768
|
+
* Emitted when the user begins to start pulling down.
|
|
769
|
+
*/
|
|
770
|
+
ionPullStart: EventEmitter<CustomEvent<void>>;
|
|
771
|
+
/**
|
|
772
|
+
* Emitted when the refresher has returned to the inactive state
|
|
773
|
+
after a pull gesture. This fires whether the refresh completed
|
|
774
|
+
successfully or was canceled.
|
|
775
|
+
*/
|
|
776
|
+
ionPullEnd: EventEmitter<CustomEvent<IIonRefresherRefresherPullEndEventDetail>>;
|
|
765
777
|
}
|
|
766
778
|
export declare class IonRefresherContent {
|
|
767
779
|
protected z: NgZone;
|