@ionic/angular 8.6.2-dev.11749759855.198287b7 → 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 -22
- 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 -22
- 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,29 +1008,11 @@ export declare class IonReorderGroup {
|
|
|
1010
1008
|
}
|
|
1011
1009
|
export declare interface IonReorderGroup extends Components.IonReorderGroup {
|
|
1012
1010
|
/**
|
|
1013
|
-
* Event that needs to be listened to in order to complete the reorder action.
|
|
1014
|
-
`event.detail.from` or `event.detail.to` and relying on them
|
|
1015
|
-
being different you should now add checks as they are always emitted
|
|
1016
|
-
in `ionReorderEnd`, even when they are the same.
|
|
1017
|
-
*/
|
|
1018
|
-
ionItemReorder: EventEmitter<CustomEvent<IIonReorderGroupItemReorderEventDetail>>;
|
|
1019
|
-
/**
|
|
1020
|
-
* Event that is emitted when the reorder gesture starts.
|
|
1021
|
-
*/
|
|
1022
|
-
ionReorderStart: EventEmitter<CustomEvent<void>>;
|
|
1023
|
-
/**
|
|
1024
|
-
* Event that is emitted as the reorder gesture moves.
|
|
1025
|
-
*/
|
|
1026
|
-
ionReorderMove: EventEmitter<CustomEvent<IIonReorderGroupReorderMoveEventDetail>>;
|
|
1027
|
-
/**
|
|
1028
|
-
* Event that is emitted when the reorder gesture ends.
|
|
1029
|
-
The from and to properties are always available, regardless of
|
|
1030
|
-
if the reorder gesture moved the item. If the item did not change
|
|
1031
|
-
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.
|
|
1032
1012
|
Once the event has been emitted, the `complete()` method then needs
|
|
1033
1013
|
to be called in order to finalize the reorder action.
|
|
1034
1014
|
*/
|
|
1035
|
-
|
|
1015
|
+
ionItemReorder: EventEmitter<CustomEvent<IIonReorderGroupItemReorderEventDetail>>;
|
|
1036
1016
|
}
|
|
1037
1017
|
export declare class IonRippleEffect {
|
|
1038
1018
|
protected z: NgZone;
|