@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 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 `src` submodules. Ionic developers should never import directly from `@ionic/angular/common`. Instead, they should import from `@ionic/angular` or `@ionic/angular/standalone`.
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/standalone`.
108
+ Ionic developers can access this by importing from `@ionic/angular`.
109
109
 
110
- **src**
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`.