@ionic/angular 8.8.12-dev.11782342444.186b6e9c → 8.8.12-dev.11782931922.18ba507c
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/README.md +5 -5
- package/fesm2022/{ionic-angular-standalone.mjs → ionic-angular-lazy.mjs} +1250 -1355
- package/fesm2022/ionic-angular-lazy.mjs.map +1 -0
- package/fesm2022/ionic-angular.mjs +1351 -1246
- package/fesm2022/ionic-angular.mjs.map +1 -1
- package/package.json +5 -5
- package/schematics/add/index.js +3 -3
- package/schematics/utils/ast.js +1 -1
- package/types/{ionic-angular-standalone.d.ts → ionic-angular-lazy.d.ts} +589 -496
- package/types/ionic-angular.d.ts +493 -586
- package/fesm2022/ionic-angular-standalone.mjs.map +0 -1
package/README.md
CHANGED
|
@@ -99,16 +99,16 @@ The local Ionic Framework build is now active in the Angular app. Changes to the
|
|
|
99
99
|
|
|
100
100
|
This is where logic that is shared between lazy loaded and standalone components live. For example, the lazy loaded IonPopover and standalone IonPopover components extend from a base IonPopover implementation that exists in this directory.
|
|
101
101
|
|
|
102
|
-
**Note:** This directory exposes internal APIs and is only accessed in the `standalone` and `
|
|
102
|
+
**Note:** This directory exposes internal APIs and is only accessed in the `standalone` and `lazy` submodules. Ionic developers should never import directly from `@ionic/angular/common`. Instead, they should import from `@ionic/angular` or `@ionic/angular/lazy`.
|
|
103
103
|
|
|
104
104
|
**standalone**
|
|
105
105
|
|
|
106
|
-
This is where the standalone component implementations live. It was added as a separate entry point to avoid any lazy loaded logic from accidentally being pulled in to the final build. Having a separate directory allows the lazy loaded implementation to remain accessible from `@ionic/angular` for backwards compatibility.
|
|
106
|
+
This is where the standalone component implementations live. It was added as a separate entry point to avoid any lazy loaded logic from accidentally being pulled in to the final build. Having a separate directory allows the lazy loaded implementation to remain accessible from `@ionic/angular/lazy` for backwards compatibility.
|
|
107
107
|
|
|
108
|
-
Ionic developers can access this by importing from `@ionic/angular
|
|
108
|
+
Ionic developers can access this by importing from `@ionic/angular`.
|
|
109
109
|
|
|
110
|
-
**
|
|
110
|
+
**lazy**
|
|
111
111
|
|
|
112
112
|
This is where the lazy loaded component implementations live.
|
|
113
113
|
|
|
114
|
-
Ionic developers can access this by importing from `@ionic/angular`.
|
|
114
|
+
Ionic developers can access this by importing from `@ionic/angular/lazy`.
|