@ionic/angular 8.6.2-dev.11749668763.17db572c → 8.6.2-dev.11749759855.198287b7
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 +4 -5
- package/esm2022/directives/proxies.mjs +1 -1
- package/esm2022/standalone/directives/proxies.mjs +1 -1
- package/fesm2022/ionic-angular-standalone.mjs.map +1 -1
- package/fesm2022/ionic-angular.mjs.map +1 -1
- package/package.json +2 -2
- package/standalone/directives/proxies.d.ts +4 -5
package/directives/proxies.d.ts
CHANGED
|
@@ -1010,11 +1010,10 @@ export declare class IonReorderGroup {
|
|
|
1010
1010
|
}
|
|
1011
1011
|
export declare interface IonReorderGroup extends Components.IonReorderGroup {
|
|
1012
1012
|
/**
|
|
1013
|
-
*
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
they are always emitted in `ionReorderEnd`, even when they are the same.
|
|
1013
|
+
* Event that needs to be listened to in order to complete the reorder action. @deprecated Use `ionReorderEnd` instead. If you are accessing
|
|
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.
|
|
1018
1017
|
*/
|
|
1019
1018
|
ionItemReorder: EventEmitter<CustomEvent<IIonReorderGroupItemReorderEventDetail>>;
|
|
1020
1019
|
/**
|