@ionic/angular 8.7.18-dev.11770238549.14c2a85f → 8.7.18-dev.11770316772.1e7b64e5

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.
@@ -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;