@ionic/angular 8.6.2-dev.11749668763.17db572c → 8.6.2-dev.11749761258.1b46b6a9
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 +2 -23
- package/esm2022/directives/proxies.mjs +2 -2
- package/esm2022/index.mjs +1 -1
- package/esm2022/standalone/directives/proxies.mjs +2 -2
- package/esm2022/standalone/index.mjs +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/index.d.ts +1 -1
- package/package.json +2 -2
- package/standalone/directives/proxies.d.ts +2 -23
- package/standalone/index.d.ts +1 -1
package/directives/proxies.d.ts
CHANGED
|
@@ -23,8 +23,6 @@ import type { RangeKnobMoveStartEventDetail as IIonRangeRangeKnobMoveStartEventD
|
|
|
23
23
|
import type { RangeKnobMoveEndEventDetail as IIonRangeRangeKnobMoveEndEventDetail } from '@ionic/core';
|
|
24
24
|
import type { RefresherEventDetail as IIonRefresherRefresherEventDetail } from '@ionic/core';
|
|
25
25
|
import type { ItemReorderEventDetail as IIonReorderGroupItemReorderEventDetail } from '@ionic/core';
|
|
26
|
-
import type { ReorderMoveEventDetail as IIonReorderGroupReorderMoveEventDetail } from '@ionic/core';
|
|
27
|
-
import type { ReorderEndEventDetail as IIonReorderGroupReorderEndEventDetail } from '@ionic/core';
|
|
28
26
|
import type { SearchbarInputEventDetail as IIonSearchbarSearchbarInputEventDetail } from '@ionic/core';
|
|
29
27
|
import type { SearchbarChangeEventDetail as IIonSearchbarSearchbarChangeEventDetail } from '@ionic/core';
|
|
30
28
|
import type { SegmentChangeEventDetail as IIonSegmentSegmentChangeEventDetail } from '@ionic/core';
|
|
@@ -1010,30 +1008,11 @@ export declare class IonReorderGroup {
|
|
|
1010
1008
|
}
|
|
1011
1009
|
export declare interface IonReorderGroup extends Components.IonReorderGroup {
|
|
1012
1010
|
/**
|
|
1013
|
-
*
|
|
1014
|
-
at the end of every reorder gesture, even if the positions do not
|
|
1015
|
-
change. If you were accessing `event.detail.from` or `event.detail.to`
|
|
1016
|
-
before and relying on them being different you should now add checks as
|
|
1017
|
-
they are always emitted in `ionReorderEnd`, even when they are the same.
|
|
1018
|
-
*/
|
|
1019
|
-
ionItemReorder: EventEmitter<CustomEvent<IIonReorderGroupItemReorderEventDetail>>;
|
|
1020
|
-
/**
|
|
1021
|
-
* Event that is emitted when the reorder gesture starts.
|
|
1022
|
-
*/
|
|
1023
|
-
ionReorderStart: EventEmitter<CustomEvent<void>>;
|
|
1024
|
-
/**
|
|
1025
|
-
* Event that is emitted as the reorder gesture moves.
|
|
1026
|
-
*/
|
|
1027
|
-
ionReorderMove: EventEmitter<CustomEvent<IIonReorderGroupReorderMoveEventDetail>>;
|
|
1028
|
-
/**
|
|
1029
|
-
* Event that is emitted when the reorder gesture ends.
|
|
1030
|
-
The from and to properties are always available, regardless of
|
|
1031
|
-
if the reorder gesture moved the item. If the item did not change
|
|
1032
|
-
from its start position, the from and to properties will be the same.
|
|
1011
|
+
* Event that needs to be listened to in order to complete the reorder action.
|
|
1033
1012
|
Once the event has been emitted, the `complete()` method then needs
|
|
1034
1013
|
to be called in order to finalize the reorder action.
|
|
1035
1014
|
*/
|
|
1036
|
-
|
|
1015
|
+
ionItemReorder: EventEmitter<CustomEvent<IIonReorderGroupItemReorderEventDetail>>;
|
|
1037
1016
|
}
|
|
1038
1017
|
export declare class IonRippleEffect {
|
|
1039
1018
|
protected z: NgZone;
|