@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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ionic/angular",
|
|
3
|
-
"version": "8.6.2-dev.
|
|
3
|
+
"version": "8.6.2-dev.11749759855.198287b7",
|
|
4
4
|
"description": "Angular specific wrappers for @ionic/core",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ionic",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
}
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@ionic/core": "8.6.2-dev.
|
|
53
|
+
"@ionic/core": "8.6.2-dev.11749759855.198287b7",
|
|
54
54
|
"ionicons": "^7.0.0",
|
|
55
55
|
"jsonc-parser": "^3.0.0",
|
|
56
56
|
"tslib": "^2.3.0"
|
|
@@ -790,11 +790,10 @@ export declare class IonReorderGroup {
|
|
|
790
790
|
}
|
|
791
791
|
export declare interface IonReorderGroup extends Components.IonReorderGroup {
|
|
792
792
|
/**
|
|
793
|
-
*
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
they are always emitted in `ionReorderEnd`, even when they are the same.
|
|
793
|
+
* Event that needs to be listened to in order to complete the reorder action. @deprecated Use `ionReorderEnd` instead. If you are accessing
|
|
794
|
+
`event.detail.from` or `event.detail.to` and relying on them
|
|
795
|
+
being different you should now add checks as they are always emitted
|
|
796
|
+
in `ionReorderEnd`, even when they are the same.
|
|
798
797
|
*/
|
|
799
798
|
ionItemReorder: EventEmitter<CustomEvent<IIonReorderGroupItemReorderEventDetail>>;
|
|
800
799
|
/**
|