@ionic/angular 8.7.18-dev.11769790854.11895f8f → 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.
@@ -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';
@@ -979,9 +980,19 @@ export declare interface IonRefresher extends Components.IonRefresher {
979
980
  */
980
981
  ionPull: EventEmitter<CustomEvent<void>>;
981
982
  /**
982
- * Emitted when the user begins to start pulling down.
983
+ * Emitted when the user begins to start pulling down. @deprecated Use `ionPullStart` instead.
983
984
  */
984
985
  ionStart: EventEmitter<CustomEvent<void>>;
986
+ /**
987
+ * Emitted when the user begins to start pulling down.
988
+ */
989
+ ionPullStart: EventEmitter<CustomEvent<void>>;
990
+ /**
991
+ * Emitted when the refresher has returned to the inactive state
992
+ after a pull gesture. This fires whether the refresh completed
993
+ successfully or was canceled.
994
+ */
995
+ ionPullEnd: EventEmitter<CustomEvent<IIonRefresherRefresherPullEndEventDetail>>;
985
996
  }
986
997
  export declare class IonRefresherContent {
987
998
  protected z: NgZone;