* fix(navigation): fixes bug where navigating to page with child-nav immediately re-enables app
fixes bug where navigating to page with child-nav immediately re-enables app
closes#6752
* test(navigation): added some additional tests
added some additional tests
* test(tabs): added multiple nested children test
added multiple nested children test
* fix(navigation): keep the click block up longer if the keyboard is open
keep the click block up longer if the keyboard is open
closes #6540
* refactor(navigation): changed formatting, reduced keyboard duration padding
changed formatting, reduced keyboard duration padding
BREAKING CHANGES:
- Lifecycle method prefixes have changed to `ionView`
- `onPageLoaded` renamed to `ionViewLoaded`
- `onPageWillEnter` renamed to `ionViewWillEnter`
- `onPageDidEnter` renamed to `ionViewDidEnter`
- `onPageWillLeave` renamed to `ionViewWillLeave`
- `onPageDidLeave` renamed to `ionViewDidLeave`
- `onPageWillUnload` renamed to `ionViewWillUnload`
- `onPageDidUnload` renamed to `ionViewDidUnload`
BREAKING CHANGES:
- Ionic's custom decorators have been removed.
- `@App` and `@Page` should be replaced with `@Component`.
- `IonicApp` has been renamed to `App`.
- `ionicBootstrap` is required to bootstrap the app.
- Config is now the 3rd parameter in `ionicBootstrap(rootComponent,
providers, config)`.
- Property `prodMode` is now a config option, enabling or disabling
production mode.