diff --git a/src/bindings/angular/components/boolean-input.ts b/src/bindings/angular/components/boolean-input.ts index 4dd0f724da..8da15f3860 100644 --- a/src/bindings/angular/components/boolean-input.ts +++ b/src/bindings/angular/components/boolean-input.ts @@ -121,4 +121,4 @@ export class BooleanInput { setDisabledState(isDisabled: boolean) { this.disabled = isDisabled; } -} +} \ No newline at end of file diff --git a/src/components/action-sheet/test/basic/app/app.module.ts b/src/components/action-sheet/test/basic/app/app.module.ts index f5432e7566..e0eaf50070 100644 --- a/src/components/action-sheet/test/basic/app/app.module.ts +++ b/src/components/action-sheet/test/basic/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/action-sheet/test/basic/pages/modal-page/modal-page.module.ts b/src/components/action-sheet/test/basic/pages/modal-page/modal-page.module.ts index e6fb972815..86aed15d61 100644 --- a/src/components/action-sheet/test/basic/pages/modal-page/modal-page.module.ts +++ b/src/components/action-sheet/test/basic/pages/modal-page/modal-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { ModalPage } from './modal-page'; diff --git a/src/components/action-sheet/test/basic/pages/page-one/page-one.module.ts b/src/components/action-sheet/test/basic/pages/page-one/page-one.module.ts index ce4ba72e2f..2ab8b04476 100644 --- a/src/components/action-sheet/test/basic/pages/page-one/page-one.module.ts +++ b/src/components/action-sheet/test/basic/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; diff --git a/src/components/alert/test/basic/app/app.module.ts b/src/components/alert/test/basic/app/app.module.ts index 0d9888227b..0575dce36d 100644 --- a/src/components/alert/test/basic/app/app.module.ts +++ b/src/components/alert/test/basic/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/alert/test/basic/pages/modal-page/modal-page.module.ts b/src/components/alert/test/basic/pages/modal-page/modal-page.module.ts index e6fb972815..86aed15d61 100644 --- a/src/components/alert/test/basic/pages/modal-page/modal-page.module.ts +++ b/src/components/alert/test/basic/pages/modal-page/modal-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { ModalPage } from './modal-page'; diff --git a/src/components/alert/test/basic/pages/page-one/page-one.module.ts b/src/components/alert/test/basic/pages/page-one/page-one.module.ts index ce4ba72e2f..2ab8b04476 100644 --- a/src/components/alert/test/basic/pages/page-one/page-one.module.ts +++ b/src/components/alert/test/basic/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; diff --git a/src/components/alert/test/dismiss/app.module.ts b/src/components/alert/test/dismiss/app.module.ts index 3349a11265..2c1a7398d5 100644 --- a/src/components/alert/test/dismiss/app.module.ts +++ b/src/components/alert/test/dismiss/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule, AlertController, LoadingController, NavController } from '../../../..'; import { FormBuilder, Validators } from '@angular/forms'; diff --git a/src/components/app/test/animations/app.module.ts b/src/components/app/test/animations/app.module.ts index a1b9960356..bacf8f9dc0 100644 --- a/src/components/app/test/animations/app.module.ts +++ b/src/components/app/test/animations/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { Animation, IonicApp, IonicModule, Platform } from '../../../..'; diff --git a/src/components/app/test/cordova/app/app.module.ts b/src/components/app/test/cordova/app/app.module.ts index f89ee5ec4c..6a3d9b4bb3 100644 --- a/src/components/app/test/cordova/app/app.module.ts +++ b/src/components/app/test/cordova/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/app/test/cordova/pages/modal/modal-page.module.ts b/src/components/app/test/cordova/pages/modal/modal-page.module.ts index f2caa5d013..b233bc0018 100644 --- a/src/components/app/test/cordova/pages/modal/modal-page.module.ts +++ b/src/components/app/test/cordova/pages/modal/modal-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { ModalPage } from './modal-page'; diff --git a/src/components/app/test/cordova/pages/page-one/page-one.module.ts b/src/components/app/test/cordova/pages/page-one/page-one.module.ts index 4bbe465d66..beb6db9057 100644 --- a/src/components/app/test/cordova/pages/page-one/page-one.module.ts +++ b/src/components/app/test/cordova/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; diff --git a/src/components/app/test/cordova/pages/page-three/page-three.module.ts b/src/components/app/test/cordova/pages/page-three/page-three.module.ts index 9aa7259342..4c9c9f4f68 100644 --- a/src/components/app/test/cordova/pages/page-three/page-three.module.ts +++ b/src/components/app/test/cordova/pages/page-three/page-three.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageThree } from './page-three'; diff --git a/src/components/app/test/cordova/pages/page-two/page-two.module.ts b/src/components/app/test/cordova/pages/page-two/page-two.module.ts index 3a65919629..cfc4bcf4ab 100644 --- a/src/components/app/test/cordova/pages/page-two/page-two.module.ts +++ b/src/components/app/test/cordova/pages/page-two/page-two.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageTwo } from './page-two'; diff --git a/src/components/app/test/cordova/pages/tabs-page-one/tabs-page-one.module.ts b/src/components/app/test/cordova/pages/tabs-page-one/tabs-page-one.module.ts index 3fa431429a..1b2e6d2ad3 100644 --- a/src/components/app/test/cordova/pages/tabs-page-one/tabs-page-one.module.ts +++ b/src/components/app/test/cordova/pages/tabs-page-one/tabs-page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { TabsPageOne } from './tabs-page-one'; diff --git a/src/components/app/test/cordova/pages/tabs/tabs-page.module.ts b/src/components/app/test/cordova/pages/tabs/tabs-page.module.ts index 5a1c7ac266..d3ae57626f 100644 --- a/src/components/app/test/cordova/pages/tabs/tabs-page.module.ts +++ b/src/components/app/test/cordova/pages/tabs/tabs-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { TabsPage } from './tabs-page'; diff --git a/src/components/app/test/gesture-collision/app/app.module.ts b/src/components/app/test/gesture-collision/app/app.module.ts index 6545ec0e12..49c8d25ff7 100644 --- a/src/components/app/test/gesture-collision/app/app.module.ts +++ b/src/components/app/test/gesture-collision/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/app/test/gesture-collision/pages/page-one/page-one.module.ts b/src/components/app/test/gesture-collision/pages/page-one/page-one.module.ts index ce4ba72e2f..2ab8b04476 100644 --- a/src/components/app/test/gesture-collision/pages/page-one/page-one.module.ts +++ b/src/components/app/test/gesture-collision/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; diff --git a/src/components/app/test/gesture-collision/pages/page-two/page-two.module.ts b/src/components/app/test/gesture-collision/pages/page-two/page-two.module.ts index de550e3416..09238422da 100644 --- a/src/components/app/test/gesture-collision/pages/page-two/page-two.module.ts +++ b/src/components/app/test/gesture-collision/pages/page-two/page-two.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageTwo } from './page-two'; diff --git a/src/components/app/test/gestures/app.module.ts b/src/components/app/test/gestures/app.module.ts index 3983c41851..1acc582e49 100644 --- a/src/components/app/test/gestures/app.module.ts +++ b/src/components/app/test/gestures/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/app/test/typography/app/app.module.ts b/src/components/app/test/typography/app/app.module.ts index 6545ec0e12..49c8d25ff7 100644 --- a/src/components/app/test/typography/app/app.module.ts +++ b/src/components/app/test/typography/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/app/test/typography/pages/page-one/page-one.module.ts b/src/components/app/test/typography/pages/page-one/page-one.module.ts index ce4ba72e2f..2ab8b04476 100644 --- a/src/components/app/test/typography/pages/page-one/page-one.module.ts +++ b/src/components/app/test/typography/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; diff --git a/src/components/app/test/utilities/app/app.module.ts b/src/components/app/test/utilities/app/app.module.ts index 248877c0dc..72bb557311 100644 --- a/src/components/app/test/utilities/app/app.module.ts +++ b/src/components/app/test/utilities/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/badge/test/basic/app/app.module.ts b/src/components/badge/test/basic/app/app.module.ts index df836f7612..87c559541b 100644 --- a/src/components/badge/test/basic/app/app.module.ts +++ b/src/components/badge/test/basic/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/badge/test/basic/pages/page-one/page-one.module.ts b/src/components/badge/test/basic/pages/page-one/page-one.module.ts index ea5c47c577..c125b09f44 100644 --- a/src/components/badge/test/basic/pages/page-one/page-one.module.ts +++ b/src/components/badge/test/basic/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; diff --git a/src/components/button/test/block/pages/page-one/page-one.module.ts b/src/components/button/test/block/pages/page-one/page-one.module.ts index 8b48a5850d..2ab8b04476 100644 --- a/src/components/button/test/block/pages/page-one/page-one.module.ts +++ b/src/components/button/test/block/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; @@ -12,6 +12,7 @@ import { PageOne } from './page-one'; ], entryComponents: [ PageOne, - ] + ], + schemas: [CUSTOM_ELEMENTS_SCHEMA] }) export class PageOneModule {} diff --git a/src/components/button/test/dynamic/pages/page-one/page-one.module.ts b/src/components/button/test/dynamic/pages/page-one/page-one.module.ts index 8b48a5850d..ea713e796e 100644 --- a/src/components/button/test/dynamic/pages/page-one/page-one.module.ts +++ b/src/components/button/test/dynamic/pages/page-one/page-one.module.ts @@ -1,4 +1,5 @@ -import { NgModule } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; + import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; @@ -12,6 +13,7 @@ import { PageOne } from './page-one'; ], entryComponents: [ PageOne, - ] + ], + schemas: [CUSTOM_ELEMENTS_SCHEMA] }) export class PageOneModule {} diff --git a/src/components/button/test/full/pages/page-one/page-one.module.ts b/src/components/button/test/full/pages/page-one/page-one.module.ts index 8b48a5850d..ea713e796e 100644 --- a/src/components/button/test/full/pages/page-one/page-one.module.ts +++ b/src/components/button/test/full/pages/page-one/page-one.module.ts @@ -1,4 +1,5 @@ -import { NgModule } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; + import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; @@ -12,6 +13,7 @@ import { PageOne } from './page-one'; ], entryComponents: [ PageOne, - ] + ], + schemas: [CUSTOM_ELEMENTS_SCHEMA] }) export class PageOneModule {} diff --git a/src/components/button/test/icons/pages/page-one/page-one.module.ts b/src/components/button/test/icons/pages/page-one/page-one.module.ts index 8b48a5850d..ea713e796e 100644 --- a/src/components/button/test/icons/pages/page-one/page-one.module.ts +++ b/src/components/button/test/icons/pages/page-one/page-one.module.ts @@ -1,4 +1,5 @@ -import { NgModule } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; + import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; @@ -12,6 +13,7 @@ import { PageOne } from './page-one'; ], entryComponents: [ PageOne, - ] + ], + schemas: [CUSTOM_ELEMENTS_SCHEMA] }) export class PageOneModule {} diff --git a/src/components/card/test/advanced/app/app.module.ts b/src/components/card/test/advanced/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/card/test/advanced/app/app.module.ts +++ b/src/components/card/test/advanced/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/card/test/advanced/pages/root-page/root-page.module.ts b/src/components/card/test/advanced/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/card/test/advanced/pages/root-page/root-page.module.ts +++ b/src/components/card/test/advanced/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/card/test/basic/app/app.module.ts b/src/components/card/test/basic/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/card/test/basic/app/app.module.ts +++ b/src/components/card/test/basic/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/card/test/basic/pages/root-page/root-page.module.ts b/src/components/card/test/basic/pages/root-page/root-page.module.ts index 1ef16a67da..572b7ef676 100644 --- a/src/components/card/test/basic/pages/root-page/root-page.module.ts +++ b/src/components/card/test/basic/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/card/test/colors/app/app.module.ts b/src/components/card/test/colors/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/card/test/colors/app/app.module.ts +++ b/src/components/card/test/colors/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/card/test/colors/pages/root-page/root-page.module.ts b/src/components/card/test/colors/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/card/test/colors/pages/root-page/root-page.module.ts +++ b/src/components/card/test/colors/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/card/test/images/app/app.module.ts b/src/components/card/test/images/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/card/test/images/app/app.module.ts +++ b/src/components/card/test/images/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/card/test/images/pages/root-page/root-page.module.ts b/src/components/card/test/images/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/card/test/images/pages/root-page/root-page.module.ts +++ b/src/components/card/test/images/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/card/test/list/app/app.module.ts b/src/components/card/test/list/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/card/test/list/app/app.module.ts +++ b/src/components/card/test/list/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/card/test/list/pages/root-page/root-page.module.ts b/src/components/card/test/list/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/card/test/list/pages/root-page/root-page.module.ts +++ b/src/components/card/test/list/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/card/test/map/app.module.ts b/src/components/card/test/map/app.module.ts index 6050e94740..7ccfa92b76 100644 --- a/src/components/card/test/map/app.module.ts +++ b/src/components/card/test/map/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/card/test/social/app.module.ts b/src/components/card/test/social/app.module.ts index 6050e94740..7ccfa92b76 100644 --- a/src/components/card/test/social/app.module.ts +++ b/src/components/card/test/social/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/checkbox/test/basic/app/app.module.ts b/src/components/checkbox/test/basic/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/checkbox/test/basic/app/app.module.ts +++ b/src/components/checkbox/test/basic/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/checkbox/test/basic/pages/root-page/root-page.module.ts b/src/components/checkbox/test/basic/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/checkbox/test/basic/pages/root-page/root-page.module.ts +++ b/src/components/checkbox/test/basic/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/chip/test/basic/app/app.module.ts b/src/components/chip/test/basic/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/chip/test/basic/app/app.module.ts +++ b/src/components/chip/test/basic/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/chip/test/basic/pages/root-page/root-page.module.ts b/src/components/chip/test/basic/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/chip/test/basic/pages/root-page/root-page.module.ts +++ b/src/components/chip/test/basic/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/content/test/basic/app/app.module.ts b/src/components/content/test/basic/app/app.module.ts index 37e039e3e6..71217e7a27 100644 --- a/src/components/content/test/basic/app/app.module.ts +++ b/src/components/content/test/basic/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/content/test/basic/pages/page-five/page-five.module.ts b/src/components/content/test/basic/pages/page-five/page-five.module.ts index c6b5da94df..e42e59f5c3 100644 --- a/src/components/content/test/basic/pages/page-five/page-five.module.ts +++ b/src/components/content/test/basic/pages/page-five/page-five.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageFive } from './page-five'; diff --git a/src/components/content/test/basic/pages/page-four/page-four.module.ts b/src/components/content/test/basic/pages/page-four/page-four.module.ts index 4ccb833825..63a040c6a6 100644 --- a/src/components/content/test/basic/pages/page-four/page-four.module.ts +++ b/src/components/content/test/basic/pages/page-four/page-four.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageFour } from './page-four'; diff --git a/src/components/content/test/basic/pages/page-one/page-one.module.ts b/src/components/content/test/basic/pages/page-one/page-one.module.ts index e132ff2173..b19e0b654f 100644 --- a/src/components/content/test/basic/pages/page-one/page-one.module.ts +++ b/src/components/content/test/basic/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; diff --git a/src/components/content/test/basic/pages/page-three/page-three.module.ts b/src/components/content/test/basic/pages/page-three/page-three.module.ts index 162bb68d1a..97420caa0a 100644 --- a/src/components/content/test/basic/pages/page-three/page-three.module.ts +++ b/src/components/content/test/basic/pages/page-three/page-three.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageThree } from './page-three'; diff --git a/src/components/content/test/basic/pages/page-two/page-two.module.ts b/src/components/content/test/basic/pages/page-two/page-two.module.ts index 05154fddb4..7ec0b16ee1 100644 --- a/src/components/content/test/basic/pages/page-two/page-two.module.ts +++ b/src/components/content/test/basic/pages/page-two/page-two.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageTwo } from './page-two'; diff --git a/src/components/content/test/basic/pages/tabs-page/tabs-page.module.ts b/src/components/content/test/basic/pages/tabs-page/tabs-page.module.ts index 55a27502bc..3db96e38bc 100644 --- a/src/components/content/test/basic/pages/tabs-page/tabs-page.module.ts +++ b/src/components/content/test/basic/pages/tabs-page/tabs-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { TabsPage } from './tabs-page'; diff --git a/src/components/content/test/fullscreen/app/app.module.ts b/src/components/content/test/fullscreen/app/app.module.ts index 37e039e3e6..71217e7a27 100644 --- a/src/components/content/test/fullscreen/app/app.module.ts +++ b/src/components/content/test/fullscreen/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/content/test/fullscreen/pages/page-five/page-five.module.ts b/src/components/content/test/fullscreen/pages/page-five/page-five.module.ts index c6b5da94df..e42e59f5c3 100644 --- a/src/components/content/test/fullscreen/pages/page-five/page-five.module.ts +++ b/src/components/content/test/fullscreen/pages/page-five/page-five.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageFive } from './page-five'; diff --git a/src/components/content/test/fullscreen/pages/page-four/page-four.module.ts b/src/components/content/test/fullscreen/pages/page-four/page-four.module.ts index 4ccb833825..63a040c6a6 100644 --- a/src/components/content/test/fullscreen/pages/page-four/page-four.module.ts +++ b/src/components/content/test/fullscreen/pages/page-four/page-four.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageFour } from './page-four'; diff --git a/src/components/content/test/fullscreen/pages/page-one/page-one.module.ts b/src/components/content/test/fullscreen/pages/page-one/page-one.module.ts index e132ff2173..b19e0b654f 100644 --- a/src/components/content/test/fullscreen/pages/page-one/page-one.module.ts +++ b/src/components/content/test/fullscreen/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; diff --git a/src/components/content/test/fullscreen/pages/page-three/page-three.module.ts b/src/components/content/test/fullscreen/pages/page-three/page-three.module.ts index 162bb68d1a..97420caa0a 100644 --- a/src/components/content/test/fullscreen/pages/page-three/page-three.module.ts +++ b/src/components/content/test/fullscreen/pages/page-three/page-three.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageThree } from './page-three'; diff --git a/src/components/content/test/fullscreen/pages/page-two/page-two.module.ts b/src/components/content/test/fullscreen/pages/page-two/page-two.module.ts index 05154fddb4..7ec0b16ee1 100644 --- a/src/components/content/test/fullscreen/pages/page-two/page-two.module.ts +++ b/src/components/content/test/fullscreen/pages/page-two/page-two.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageTwo } from './page-two'; diff --git a/src/components/content/test/fullscreen/pages/tabs-page/tabs-page.module.ts b/src/components/content/test/fullscreen/pages/tabs-page/tabs-page.module.ts index 55a27502bc..3db96e38bc 100644 --- a/src/components/content/test/fullscreen/pages/tabs-page/tabs-page.module.ts +++ b/src/components/content/test/fullscreen/pages/tabs-page/tabs-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { TabsPage } from './tabs-page'; diff --git a/src/components/content/test/header-scroll/app.module.ts b/src/components/content/test/header-scroll/app.module.ts index ced09ec3d3..a8f76c8dd4 100644 --- a/src/components/content/test/header-scroll/app.module.ts +++ b/src/components/content/test/header-scroll/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule, ScrollEvent } from '../../../..'; diff --git a/src/components/content/test/no-bounce/app/app.module.ts b/src/components/content/test/no-bounce/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/content/test/no-bounce/app/app.module.ts +++ b/src/components/content/test/no-bounce/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/content/test/no-bounce/pages/root-page/root-page.module.ts b/src/components/content/test/no-bounce/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/content/test/no-bounce/pages/root-page/root-page.module.ts +++ b/src/components/content/test/no-bounce/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/content/test/scroll-down-on-load/app/app.module.ts b/src/components/content/test/scroll-down-on-load/app/app.module.ts index 029d689828..d8a6f48fae 100644 --- a/src/components/content/test/scroll-down-on-load/app/app.module.ts +++ b/src/components/content/test/scroll-down-on-load/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/datetime/test/basic/app/app.module.ts b/src/components/datetime/test/basic/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/datetime/test/basic/app/app.module.ts +++ b/src/components/datetime/test/basic/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/datetime/test/basic/pages/root-page/root-page.module.ts b/src/components/datetime/test/basic/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/datetime/test/basic/pages/root-page/root-page.module.ts +++ b/src/components/datetime/test/basic/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/datetime/test/form/app.module.ts b/src/components/datetime/test/form/app.module.ts index cfbb688ea4..f9a8f4243e 100644 --- a/src/components/datetime/test/form/app.module.ts +++ b/src/components/datetime/test/form/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormControl, FormGroup } from '@angular/forms'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/datetime/test/issues/app/app.module.ts b/src/components/datetime/test/issues/app/app.module.ts index 029d689828..d8a6f48fae 100644 --- a/src/components/datetime/test/issues/app/app.module.ts +++ b/src/components/datetime/test/issues/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/datetime/test/labels/app/app.module.ts b/src/components/datetime/test/labels/app/app.module.ts index 9289976baa..c12c677257 100644 --- a/src/components/datetime/test/labels/app/app.module.ts +++ b/src/components/datetime/test/labels/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/datetime/test/labels/pages/root-page/root-page.module.ts b/src/components/datetime/test/labels/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/datetime/test/labels/pages/root-page/root-page.module.ts +++ b/src/components/datetime/test/labels/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/fab/test/basic/app/app.module.ts b/src/components/fab/test/basic/app/app.module.ts index 9289976baa..c12c677257 100644 --- a/src/components/fab/test/basic/app/app.module.ts +++ b/src/components/fab/test/basic/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/fab/test/basic/pages/root-page/root-page.module.ts b/src/components/fab/test/basic/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/fab/test/basic/pages/root-page/root-page.module.ts +++ b/src/components/fab/test/basic/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/grid/test/alignment/app.module.ts b/src/components/grid/test/alignment/app.module.ts index 7a7db5fa96..20ce547203 100644 --- a/src/components/grid/test/alignment/app.module.ts +++ b/src/components/grid/test/alignment/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/grid/test/basic/app/app.module.ts b/src/components/grid/test/basic/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/grid/test/basic/app/app.module.ts +++ b/src/components/grid/test/basic/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/grid/test/basic/pages/root-page/root-page.module.ts b/src/components/grid/test/basic/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/grid/test/basic/pages/root-page/root-page.module.ts +++ b/src/components/grid/test/basic/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/grid/test/card/app.module.ts b/src/components/grid/test/card/app.module.ts index 8542255235..ee48b9dd66 100644 --- a/src/components/grid/test/card/app.module.ts +++ b/src/components/grid/test/card/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/grid/test/full/app.module.ts b/src/components/grid/test/full/app.module.ts index 0d461a3ca6..0678c177f5 100644 --- a/src/components/grid/test/full/app.module.ts +++ b/src/components/grid/test/full/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/grid/test/responsive/app.module.ts b/src/components/grid/test/responsive/app.module.ts index d2995f044f..6a7ee20b5b 100644 --- a/src/components/grid/test/responsive/app.module.ts +++ b/src/components/grid/test/responsive/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/icon/test/basic/app/app.module.ts b/src/components/icon/test/basic/app/app.module.ts index 029d689828..d8a6f48fae 100644 --- a/src/components/icon/test/basic/app/app.module.ts +++ b/src/components/icon/test/basic/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/img/test/basic/app/app.module.ts b/src/components/img/test/basic/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/img/test/basic/app/app.module.ts +++ b/src/components/img/test/basic/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/img/test/basic/pages/my-img/my-img.module.ts b/src/components/img/test/basic/pages/my-img/my-img.module.ts index 62023353e7..a135bfdc48 100644 --- a/src/components/img/test/basic/pages/my-img/my-img.module.ts +++ b/src/components/img/test/basic/pages/my-img/my-img.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; diff --git a/src/components/img/test/basic/pages/root-page/root-page.module.ts b/src/components/img/test/basic/pages/root-page/root-page.module.ts index 03c0731d92..9e085fd8ca 100644 --- a/src/components/img/test/basic/pages/root-page/root-page.module.ts +++ b/src/components/img/test/basic/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/img/test/cards/app.module.ts b/src/components/img/test/cards/app.module.ts index adc2bf4ebe..ffb2f3121c 100644 --- a/src/components/img/test/cards/app.module.ts +++ b/src/components/img/test/cards/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/img/test/lazy-load/app.module.ts b/src/components/img/test/lazy-load/app.module.ts index ef151972bd..3f16bde6d8 100644 --- a/src/components/img/test/lazy-load/app.module.ts +++ b/src/components/img/test/lazy-load/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/img/test/list/app.module.ts b/src/components/img/test/list/app.module.ts index badfa89e2f..4f9e5176fd 100644 --- a/src/components/img/test/list/app.module.ts +++ b/src/components/img/test/list/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/infinite-scroll/test/basic/app.module.ts b/src/components/infinite-scroll/test/basic/app.module.ts index f4ff1d6721..9e06f22f6b 100644 --- a/src/components/infinite-scroll/test/basic/app.module.ts +++ b/src/components/infinite-scroll/test/basic/app.module.ts @@ -1,4 +1,4 @@ -import { Component, ViewChild, NgModule } from '@angular/core'; +import { Component, NgModule, ViewChild } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule, InfiniteScroll, NavController } from '../../../..'; diff --git a/src/components/infinite-scroll/test/position-top/app/app.module.ts b/src/components/infinite-scroll/test/position-top/app/app.module.ts index 01f9697964..45be08ac46 100644 --- a/src/components/infinite-scroll/test/position-top/app/app.module.ts +++ b/src/components/infinite-scroll/test/position-top/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/infinite-scroll/test/short-list/app.module.ts b/src/components/infinite-scroll/test/short-list/app.module.ts index c7a1e1e1e2..52e1bd802b 100644 --- a/src/components/infinite-scroll/test/short-list/app.module.ts +++ b/src/components/infinite-scroll/test/short-list/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule, InfiniteScroll } from '../../../..'; diff --git a/src/components/input/test/basic-form/app/app.module.ts b/src/components/input/test/basic-form/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/input/test/basic-form/app/app.module.ts +++ b/src/components/input/test/basic-form/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/input/test/basic-form/pages/root-page/root-page.module.ts b/src/components/input/test/basic-form/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/input/test/basic-form/pages/root-page/root-page.module.ts +++ b/src/components/input/test/basic-form/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/input/test/clear-after-edit/app/app.module.ts b/src/components/input/test/clear-after-edit/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/input/test/clear-after-edit/app/app.module.ts +++ b/src/components/input/test/clear-after-edit/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/input/test/clear-after-edit/pages/root-page/root-page.module.ts b/src/components/input/test/clear-after-edit/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/input/test/clear-after-edit/pages/root-page/root-page.module.ts +++ b/src/components/input/test/clear-after-edit/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/input/test/clear-input/app/app.module.ts b/src/components/input/test/clear-input/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/input/test/clear-input/app/app.module.ts +++ b/src/components/input/test/clear-input/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/input/test/clear-input/pages/root-page/root-page.module.ts b/src/components/input/test/clear-input/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/input/test/clear-input/pages/root-page/root-page.module.ts +++ b/src/components/input/test/clear-input/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/input/test/events/app/app.module.ts b/src/components/input/test/events/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/input/test/events/app/app.module.ts +++ b/src/components/input/test/events/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/input/test/events/pages/root-page/root-page.module.ts b/src/components/input/test/events/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/input/test/events/pages/root-page/root-page.module.ts +++ b/src/components/input/test/events/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/input/test/fixed-inline-labels/app/app.module.ts b/src/components/input/test/fixed-inline-labels/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/input/test/fixed-inline-labels/app/app.module.ts +++ b/src/components/input/test/fixed-inline-labels/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/input/test/fixed-inline-labels/pages/root-page/root-page.module.ts b/src/components/input/test/fixed-inline-labels/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/input/test/fixed-inline-labels/pages/root-page/root-page.module.ts +++ b/src/components/input/test/fixed-inline-labels/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/input/test/floating-labels/app/app.module.ts b/src/components/input/test/floating-labels/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/input/test/floating-labels/app/app.module.ts +++ b/src/components/input/test/floating-labels/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/input/test/floating-labels/pages/root-page/root-page.module.ts b/src/components/input/test/floating-labels/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/input/test/floating-labels/pages/root-page/root-page.module.ts +++ b/src/components/input/test/floating-labels/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/input/test/footer-inputs/app/app.module.ts b/src/components/input/test/footer-inputs/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/input/test/footer-inputs/app/app.module.ts +++ b/src/components/input/test/footer-inputs/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/input/test/footer-inputs/pages/root-page/root-page.module.ts b/src/components/input/test/footer-inputs/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/input/test/footer-inputs/pages/root-page/root-page.module.ts +++ b/src/components/input/test/footer-inputs/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/input/test/form-inputs/app/app.module.ts b/src/components/input/test/form-inputs/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/input/test/form-inputs/app/app.module.ts +++ b/src/components/input/test/form-inputs/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/input/test/form-inputs/pages/root-page/root-page.module.ts b/src/components/input/test/form-inputs/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/input/test/form-inputs/pages/root-page/root-page.module.ts +++ b/src/components/input/test/form-inputs/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/input/test/highlight/app/app.module.ts b/src/components/input/test/highlight/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/input/test/highlight/app/app.module.ts +++ b/src/components/input/test/highlight/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/input/test/highlight/pages/root-page/root-page.module.ts b/src/components/input/test/highlight/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/input/test/highlight/pages/root-page/root-page.module.ts +++ b/src/components/input/test/highlight/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/input/test/inline-labels/app/app.module.ts b/src/components/input/test/inline-labels/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/input/test/inline-labels/app/app.module.ts +++ b/src/components/input/test/inline-labels/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/input/test/inline-labels/pages/root-page/root-page.module.ts b/src/components/input/test/inline-labels/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/input/test/inline-labels/pages/root-page/root-page.module.ts +++ b/src/components/input/test/inline-labels/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/input/test/input-focus/app/app.module.ts b/src/components/input/test/input-focus/app/app.module.ts index 837727eed8..b6cd8789d8 100644 --- a/src/components/input/test/input-focus/app/app.module.ts +++ b/src/components/input/test/input-focus/app/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/input/test/inset-inputs/app/app.module.ts b/src/components/input/test/inset-inputs/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/input/test/inset-inputs/app/app.module.ts +++ b/src/components/input/test/inset-inputs/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/input/test/inset-inputs/pages/root-page/root-page.module.ts b/src/components/input/test/inset-inputs/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/input/test/inset-inputs/pages/root-page/root-page.module.ts +++ b/src/components/input/test/inset-inputs/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/input/test/placeholder-labels/app/app.module.ts b/src/components/input/test/placeholder-labels/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/input/test/placeholder-labels/app/app.module.ts +++ b/src/components/input/test/placeholder-labels/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/input/test/placeholder-labels/pages/root-page/root-page.module.ts b/src/components/input/test/placeholder-labels/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/input/test/placeholder-labels/pages/root-page/root-page.module.ts +++ b/src/components/input/test/placeholder-labels/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/input/test/stacked-labels/app/app.module.ts b/src/components/input/test/stacked-labels/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/input/test/stacked-labels/app/app.module.ts +++ b/src/components/input/test/stacked-labels/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/input/test/stacked-labels/pages/root-page/root-page.module.ts b/src/components/input/test/stacked-labels/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/input/test/stacked-labels/pages/root-page/root-page.module.ts +++ b/src/components/input/test/stacked-labels/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/item/test/buttons/app/app.module.ts b/src/components/item/test/buttons/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/item/test/buttons/app/app.module.ts +++ b/src/components/item/test/buttons/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/item/test/buttons/pages/root-page/root-page.module.ts b/src/components/item/test/buttons/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/item/test/buttons/pages/root-page/root-page.module.ts +++ b/src/components/item/test/buttons/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/item/test/colors/app/app.module.ts b/src/components/item/test/colors/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/item/test/colors/app/app.module.ts +++ b/src/components/item/test/colors/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/item/test/colors/pages/root-page/root-page.module.ts b/src/components/item/test/colors/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/item/test/colors/pages/root-page/root-page.module.ts +++ b/src/components/item/test/colors/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/item/test/dividers/app/app.module.ts b/src/components/item/test/dividers/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/item/test/dividers/app/app.module.ts +++ b/src/components/item/test/dividers/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/item/test/dividers/pages/root-page/root-page.module.ts b/src/components/item/test/dividers/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/item/test/dividers/pages/root-page/root-page.module.ts +++ b/src/components/item/test/dividers/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/item/test/groups/app/app.module.ts b/src/components/item/test/groups/app/app.module.ts index cadd313925..502ba6fdbf 100644 --- a/src/components/item/test/groups/app/app.module.ts +++ b/src/components/item/test/groups/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/item/test/groups/pages/session-detail/session-detail.module.ts b/src/components/item/test/groups/pages/session-detail/session-detail.module.ts index 53fbf88eb2..6a54dbcfa6 100644 --- a/src/components/item/test/groups/pages/session-detail/session-detail.module.ts +++ b/src/components/item/test/groups/pages/session-detail/session-detail.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { SessionDetail } from './session-detail'; import { IonicPageModule } from '../../../../../..'; diff --git a/src/components/item/test/groups/pages/session-list/session-list.module.ts b/src/components/item/test/groups/pages/session-list/session-list.module.ts index bb1b246ea6..67469d0f20 100644 --- a/src/components/item/test/groups/pages/session-list/session-list.module.ts +++ b/src/components/item/test/groups/pages/session-list/session-list.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { SessionList } from './session-list'; import { IonicPageModule } from '../../../../../..'; diff --git a/src/components/item/test/icons/app/app.module.ts b/src/components/item/test/icons/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/item/test/icons/app/app.module.ts +++ b/src/components/item/test/icons/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/item/test/icons/pages/root-page/root-page.module.ts b/src/components/item/test/icons/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/item/test/icons/pages/root-page/root-page.module.ts +++ b/src/components/item/test/icons/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/item/test/images/app/app.module.ts b/src/components/item/test/images/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/item/test/images/app/app.module.ts +++ b/src/components/item/test/images/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/item/test/images/pages/root-page/root-page.module.ts b/src/components/item/test/images/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/item/test/images/pages/root-page/root-page.module.ts +++ b/src/components/item/test/images/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/item/test/inputs/app/app.module.ts b/src/components/item/test/inputs/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/item/test/inputs/app/app.module.ts +++ b/src/components/item/test/inputs/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/item/test/inputs/pages/root-page/root-page.module.ts b/src/components/item/test/inputs/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/item/test/inputs/pages/root-page/root-page.module.ts +++ b/src/components/item/test/inputs/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/item/test/media/app/app.module.ts b/src/components/item/test/media/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/item/test/media/app/app.module.ts +++ b/src/components/item/test/media/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/item/test/media/pages/root-page/root-page.module.ts b/src/components/item/test/media/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/item/test/media/pages/root-page/root-page.module.ts +++ b/src/components/item/test/media/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/item/test/reorder/app/app.module.ts b/src/components/item/test/reorder/app/app.module.ts index 50723209d5..d650439685 100644 --- a/src/components/item/test/reorder/app/app.module.ts +++ b/src/components/item/test/reorder/app/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/item/test/sliding/app/app.module.ts b/src/components/item/test/sliding/app/app.module.ts index 51dc787e56..b9e784ba0b 100644 --- a/src/components/item/test/sliding/app/app.module.ts +++ b/src/components/item/test/sliding/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/item/test/sliding/pages/root-page/root-page.module.ts b/src/components/item/test/sliding/pages/root-page/root-page.module.ts index 13d3d7ee01..c38a9cc607 100644 --- a/src/components/item/test/sliding/pages/root-page/root-page.module.ts +++ b/src/components/item/test/sliding/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/item/test/text/app/app.module.ts b/src/components/item/test/text/app/app.module.ts index e8ad88f86f..f1a75c17a5 100644 --- a/src/components/item/test/text/app/app.module.ts +++ b/src/components/item/test/text/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/item/test/text/pages/root-page/root-page.module.ts b/src/components/item/test/text/pages/root-page/root-page.module.ts index 56182834f3..555d7820da 100644 --- a/src/components/item/test/text/pages/root-page/root-page.module.ts +++ b/src/components/item/test/text/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/list/test/chat-list/app.module.ts b/src/components/list/test/chat-list/app.module.ts index 7c9678767f..3ef458d83b 100644 --- a/src/components/list/test/chat-list/app.module.ts +++ b/src/components/list/test/chat-list/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/list/test/header-scenarios/app/app.module.ts b/src/components/list/test/header-scenarios/app/app.module.ts index fec6d9c4fb..41395bb53f 100644 --- a/src/components/list/test/header-scenarios/app/app.module.ts +++ b/src/components/list/test/header-scenarios/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/list/test/header-scenarios/pages/main/main.module.ts b/src/components/list/test/header-scenarios/pages/main/main.module.ts index 6a59c0ef45..4b2ca2ff42 100644 --- a/src/components/list/test/header-scenarios/pages/main/main.module.ts +++ b/src/components/list/test/header-scenarios/pages/main/main.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { E2EPage } from './main'; diff --git a/src/components/list/test/headers/app/app.module.ts b/src/components/list/test/headers/app/app.module.ts index a139d523dc..845b886160 100644 --- a/src/components/list/test/headers/app/app.module.ts +++ b/src/components/list/test/headers/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/list/test/headers/pages/page-one/page-one.module.ts b/src/components/list/test/headers/pages/page-one/page-one.module.ts index cc7bcb692e..68b21e782a 100644 --- a/src/components/list/test/headers/pages/page-one/page-one.module.ts +++ b/src/components/list/test/headers/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; diff --git a/src/components/list/test/inset/app/app.module.ts b/src/components/list/test/inset/app/app.module.ts index d90c85ed4c..6ed77b1b0c 100644 --- a/src/components/list/test/inset/app/app.module.ts +++ b/src/components/list/test/inset/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/list/test/inset/pages/page-one/page-one.module.ts b/src/components/list/test/inset/pages/page-one/page-one.module.ts index cc7bcb692e..68b21e782a 100644 --- a/src/components/list/test/inset/pages/page-one/page-one.module.ts +++ b/src/components/list/test/inset/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; diff --git a/src/components/list/test/no-lines/app/app.module.ts b/src/components/list/test/no-lines/app/app.module.ts index 37c221659c..7ca9c67a1e 100644 --- a/src/components/list/test/no-lines/app/app.module.ts +++ b/src/components/list/test/no-lines/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/list/test/no-lines/pages/page-one/page-one.module.ts b/src/components/list/test/no-lines/pages/page-one/page-one.module.ts index cc7bcb692e..68b21e782a 100644 --- a/src/components/list/test/no-lines/pages/page-one/page-one.module.ts +++ b/src/components/list/test/no-lines/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; diff --git a/src/components/list/test/repeat-headers/app.module.ts b/src/components/list/test/repeat-headers/app.module.ts index ac5d73e6b5..32663ebeb9 100644 --- a/src/components/list/test/repeat-headers/app.module.ts +++ b/src/components/list/test/repeat-headers/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/list/test/sticky/app.module.ts b/src/components/list/test/sticky/app.module.ts index 85b311b8a1..baff0d319c 100644 --- a/src/components/list/test/sticky/app.module.ts +++ b/src/components/list/test/sticky/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/loading/test/basic/app/app.module.ts b/src/components/loading/test/basic/app/app.module.ts index a6d5348261..1002202963 100644 --- a/src/components/loading/test/basic/app/app.module.ts +++ b/src/components/loading/test/basic/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/loading/test/basic/pages/page-one/page-one.module.ts b/src/components/loading/test/basic/pages/page-one/page-one.module.ts index 8f3e845559..5adae5da8c 100644 --- a/src/components/loading/test/basic/pages/page-one/page-one.module.ts +++ b/src/components/loading/test/basic/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; diff --git a/src/components/loading/test/basic/pages/page-three/page-three.module.ts b/src/components/loading/test/basic/pages/page-three/page-three.module.ts index ca542cd675..e4aec5b30f 100644 --- a/src/components/loading/test/basic/pages/page-three/page-three.module.ts +++ b/src/components/loading/test/basic/pages/page-three/page-three.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageThree } from './page-three'; diff --git a/src/components/loading/test/basic/pages/page-two/page-two.module.ts b/src/components/loading/test/basic/pages/page-two/page-two.module.ts index e182969596..369ecae449 100644 --- a/src/components/loading/test/basic/pages/page-two/page-two.module.ts +++ b/src/components/loading/test/basic/pages/page-two/page-two.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageTwo } from './page-two'; diff --git a/src/components/loading/test/tabs/app/app.module.ts b/src/components/loading/test/tabs/app/app.module.ts index d22eb86f10..0264a3ae3f 100644 --- a/src/components/loading/test/tabs/app/app.module.ts +++ b/src/components/loading/test/tabs/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/loading/test/tabs/pages/page-one/page-one.module.ts b/src/components/loading/test/tabs/pages/page-one/page-one.module.ts index e132ff2173..b19e0b654f 100644 --- a/src/components/loading/test/tabs/pages/page-one/page-one.module.ts +++ b/src/components/loading/test/tabs/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; diff --git a/src/components/loading/test/tabs/pages/page-two/page-two.module.ts b/src/components/loading/test/tabs/pages/page-two/page-two.module.ts index 05154fddb4..7ec0b16ee1 100644 --- a/src/components/loading/test/tabs/pages/page-two/page-two.module.ts +++ b/src/components/loading/test/tabs/pages/page-two/page-two.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageTwo } from './page-two'; diff --git a/src/components/loading/test/tabs/pages/tabs-page/tabs-page.module.ts b/src/components/loading/test/tabs/pages/tabs-page/tabs-page.module.ts index ffa91dc335..ebf997dbd0 100644 --- a/src/components/loading/test/tabs/pages/tabs-page/tabs-page.module.ts +++ b/src/components/loading/test/tabs/pages/tabs-page/tabs-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { TabsPage } from './tabs-page'; diff --git a/src/components/menu/test/basic/app/app.module.ts b/src/components/menu/test/basic/app/app.module.ts index d90c85ed4c..6ed77b1b0c 100644 --- a/src/components/menu/test/basic/app/app.module.ts +++ b/src/components/menu/test/basic/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/menu/test/basic/pages/modal-page/modal-page.module.ts b/src/components/menu/test/basic/pages/modal-page/modal-page.module.ts index 2c06bafc99..b9159304af 100644 --- a/src/components/menu/test/basic/pages/modal-page/modal-page.module.ts +++ b/src/components/menu/test/basic/pages/modal-page/modal-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { ModalPage } from './modal-page'; diff --git a/src/components/menu/test/basic/pages/page-four/page-four.module.ts b/src/components/menu/test/basic/pages/page-four/page-four.module.ts index 4ccb833825..63a040c6a6 100644 --- a/src/components/menu/test/basic/pages/page-four/page-four.module.ts +++ b/src/components/menu/test/basic/pages/page-four/page-four.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageFour } from './page-four'; diff --git a/src/components/menu/test/basic/pages/page-one/page-one.module.ts b/src/components/menu/test/basic/pages/page-one/page-one.module.ts index 10ef1ba6ec..5f7800c480 100644 --- a/src/components/menu/test/basic/pages/page-one/page-one.module.ts +++ b/src/components/menu/test/basic/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; diff --git a/src/components/menu/test/basic/pages/page-three/page-three.module.ts b/src/components/menu/test/basic/pages/page-three/page-three.module.ts index 162bb68d1a..97420caa0a 100644 --- a/src/components/menu/test/basic/pages/page-three/page-three.module.ts +++ b/src/components/menu/test/basic/pages/page-three/page-three.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageThree } from './page-three'; diff --git a/src/components/menu/test/basic/pages/page-two/page-two.module.ts b/src/components/menu/test/basic/pages/page-two/page-two.module.ts index 05154fddb4..7ec0b16ee1 100644 --- a/src/components/menu/test/basic/pages/page-two/page-two.module.ts +++ b/src/components/menu/test/basic/pages/page-two/page-two.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageTwo } from './page-two'; diff --git a/src/components/menu/test/disable-swipe/app.module.ts b/src/components/menu/test/disable-swipe/app.module.ts index b021427e8d..05a37fbb68 100644 --- a/src/components/menu/test/disable-swipe/app.module.ts +++ b/src/components/menu/test/disable-swipe/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule, MenuController } from '../../../..'; diff --git a/src/components/menu/test/enable-disable/app.module.ts b/src/components/menu/test/enable-disable/app.module.ts index b1e6304360..514404d3a6 100644 --- a/src/components/menu/test/enable-disable/app.module.ts +++ b/src/components/menu/test/enable-disable/app.module.ts @@ -1,4 +1,4 @@ -import { Component, ViewChild, NgModule } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule, ViewChild } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule, App, MenuController, Nav } from '../../../..'; @@ -62,6 +62,7 @@ export class AppComponent { AppComponent, Page1, Page2 - ] + ], + schemas: [CUSTOM_ELEMENTS_SCHEMA] }) export class AppModule {} diff --git a/src/components/menu/test/multiple/app/app.module.ts b/src/components/menu/test/multiple/app/app.module.ts index d90c85ed4c..6ed77b1b0c 100644 --- a/src/components/menu/test/multiple/app/app.module.ts +++ b/src/components/menu/test/multiple/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/menu/test/multiple/pages/page-one/page-one.module.ts b/src/components/menu/test/multiple/pages/page-one/page-one.module.ts index e132ff2173..b19e0b654f 100644 --- a/src/components/menu/test/multiple/pages/page-one/page-one.module.ts +++ b/src/components/menu/test/multiple/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; diff --git a/src/components/menu/test/overlay/app.module.ts b/src/components/menu/test/overlay/app.module.ts index e49268830d..f416ca6b95 100644 --- a/src/components/menu/test/overlay/app.module.ts +++ b/src/components/menu/test/overlay/app.module.ts @@ -1,4 +1,4 @@ -import { Component, ViewChild, NgModule } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule, ViewChild } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule, Nav, AlertController } from '../../../..'; @@ -48,6 +48,7 @@ export class AppComponent { entryComponents: [ AppComponent, Page1 - ] + ], + schemas: [CUSTOM_ELEMENTS_SCHEMA] }) export class AppModule {} diff --git a/src/components/menu/test/push/app.module.ts b/src/components/menu/test/push/app.module.ts index e49268830d..f416ca6b95 100644 --- a/src/components/menu/test/push/app.module.ts +++ b/src/components/menu/test/push/app.module.ts @@ -1,4 +1,4 @@ -import { Component, ViewChild, NgModule } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule, ViewChild } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule, Nav, AlertController } from '../../../..'; @@ -48,6 +48,7 @@ export class AppComponent { entryComponents: [ AppComponent, Page1 - ] + ], + schemas: [CUSTOM_ELEMENTS_SCHEMA] }) export class AppModule {} diff --git a/src/components/menu/test/reveal/app.module.ts b/src/components/menu/test/reveal/app.module.ts index 9c6a4dab45..bd88e19d75 100644 --- a/src/components/menu/test/reveal/app.module.ts +++ b/src/components/menu/test/reveal/app.module.ts @@ -1,4 +1,4 @@ -import { Component, ViewChild, NgModule } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule, ViewChild } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule, Nav } from '../../../..'; @@ -38,6 +38,7 @@ export class AppComponent { entryComponents: [ AppComponent, Page1 - ] + ], + schemas: [CUSTOM_ELEMENTS_SCHEMA] }) export class AppModule {} diff --git a/src/components/modal/test/basic/app/app.module.ts b/src/components/modal/test/basic/app/app.module.ts index f18111a277..b82a6b27a8 100644 --- a/src/components/modal/test/basic/app/app.module.ts +++ b/src/components/modal/test/basic/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicModule, IonicApp } from '../../../../..'; diff --git a/src/components/modal/test/basic/pages/contact-us/contact-us.module.ts b/src/components/modal/test/basic/pages/contact-us/contact-us.module.ts index a4d8a78fda..cdd94477fc 100644 --- a/src/components/modal/test/basic/pages/contact-us/contact-us.module.ts +++ b/src/components/modal/test/basic/pages/contact-us/contact-us.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { ContactUs } from './contact-us'; diff --git a/src/components/modal/test/basic/pages/modal-pass-data/modal-pass-data.module.ts b/src/components/modal/test/basic/pages/modal-pass-data/modal-pass-data.module.ts index abe65ba068..50d3dc5309 100644 --- a/src/components/modal/test/basic/pages/modal-pass-data/modal-pass-data.module.ts +++ b/src/components/modal/test/basic/pages/modal-pass-data/modal-pass-data.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { ModalPassData } from './modal-pass-data'; diff --git a/src/components/modal/test/basic/pages/modal-with-inputs/modal-with-inputs.module.ts b/src/components/modal/test/basic/pages/modal-with-inputs/modal-with-inputs.module.ts index a3f21b5be0..bb27b71d43 100644 --- a/src/components/modal/test/basic/pages/modal-with-inputs/modal-with-inputs.module.ts +++ b/src/components/modal/test/basic/pages/modal-with-inputs/modal-with-inputs.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { ModalWithInputs } from './modal-with-inputs'; diff --git a/src/components/modal/test/basic/pages/page-one/page-one.module.ts b/src/components/modal/test/basic/pages/page-one/page-one.module.ts index e132ff2173..b19e0b654f 100644 --- a/src/components/modal/test/basic/pages/page-one/page-one.module.ts +++ b/src/components/modal/test/basic/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; diff --git a/src/components/modal/test/basic/pages/page-three/page-three.module.ts b/src/components/modal/test/basic/pages/page-three/page-three.module.ts index 162bb68d1a..97420caa0a 100644 --- a/src/components/modal/test/basic/pages/page-three/page-three.module.ts +++ b/src/components/modal/test/basic/pages/page-three/page-three.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageThree } from './page-three'; diff --git a/src/components/modal/test/basic/pages/page-two/page-two.module.ts b/src/components/modal/test/basic/pages/page-two/page-two.module.ts index 05154fddb4..7ec0b16ee1 100644 --- a/src/components/modal/test/basic/pages/page-two/page-two.module.ts +++ b/src/components/modal/test/basic/pages/page-two/page-two.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageTwo } from './page-two'; diff --git a/src/components/modal/test/basic/pages/toolbar/toolbar.module.ts b/src/components/modal/test/basic/pages/toolbar/toolbar.module.ts index f6a535747b..c5d31404c4 100644 --- a/src/components/modal/test/basic/pages/toolbar/toolbar.module.ts +++ b/src/components/modal/test/basic/pages/toolbar/toolbar.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { ToolbarModal } from './toolbar'; diff --git a/src/components/nav/test/basic/app/app.module.ts b/src/components/nav/test/basic/app/app.module.ts index edc7220b28..6cdab4d0d3 100644 --- a/src/components/nav/test/basic/app/app.module.ts +++ b/src/components/nav/test/basic/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/nav/test/basic/pages/another-page/another-page.module.ts b/src/components/nav/test/basic/pages/another-page/another-page.module.ts index f70b020510..d7706b9af3 100644 --- a/src/components/nav/test/basic/pages/another-page/another-page.module.ts +++ b/src/components/nav/test/basic/pages/another-page/another-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { AnotherPage } from './another-page'; diff --git a/src/components/nav/test/basic/pages/first-page/first-page.module.ts b/src/components/nav/test/basic/pages/first-page/first-page.module.ts index d28d4e3ae0..a69a728e06 100644 --- a/src/components/nav/test/basic/pages/first-page/first-page.module.ts +++ b/src/components/nav/test/basic/pages/first-page/first-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { FirstPage } from './first-page'; diff --git a/src/components/nav/test/basic/pages/full-page/full-page.module.ts b/src/components/nav/test/basic/pages/full-page/full-page.module.ts index 488868ed03..436fc8a38a 100644 --- a/src/components/nav/test/basic/pages/full-page/full-page.module.ts +++ b/src/components/nav/test/basic/pages/full-page/full-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { FullPage } from './full-page'; diff --git a/src/components/nav/test/basic/pages/primary-header-page/primary-header-page.module.ts b/src/components/nav/test/basic/pages/primary-header-page/primary-header-page.module.ts index 34358f06f0..a54029418a 100644 --- a/src/components/nav/test/basic/pages/primary-header-page/primary-header-page.module.ts +++ b/src/components/nav/test/basic/pages/primary-header-page/primary-header-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PrimaryHeaderPage } from './primary-header-page'; diff --git a/src/components/nav/test/basic/pages/redirect-page/redirect-page.module.ts b/src/components/nav/test/basic/pages/redirect-page/redirect-page.module.ts index 78c7c64dae..35e5d41c08 100644 --- a/src/components/nav/test/basic/pages/redirect-page/redirect-page.module.ts +++ b/src/components/nav/test/basic/pages/redirect-page/redirect-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RedirectPage } from './redirect-page'; diff --git a/src/components/nav/test/basic/pages/tab-item-page/tab-item-page.module.ts b/src/components/nav/test/basic/pages/tab-item-page/tab-item-page.module.ts index 29b057b195..9b8cb3c586 100644 --- a/src/components/nav/test/basic/pages/tab-item-page/tab-item-page.module.ts +++ b/src/components/nav/test/basic/pages/tab-item-page/tab-item-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { TabItemPage } from './tab-item-page'; diff --git a/src/components/nav/test/basic/pages/tab-one/tab-one.module.ts b/src/components/nav/test/basic/pages/tab-one/tab-one.module.ts index 74aa41646d..7ed3b1df73 100644 --- a/src/components/nav/test/basic/pages/tab-one/tab-one.module.ts +++ b/src/components/nav/test/basic/pages/tab-one/tab-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { Tab1 } from './tab-one'; diff --git a/src/components/nav/test/basic/pages/tab-three/tab-three.module.ts b/src/components/nav/test/basic/pages/tab-three/tab-three.module.ts index b6456f76de..a546bb0b25 100644 --- a/src/components/nav/test/basic/pages/tab-three/tab-three.module.ts +++ b/src/components/nav/test/basic/pages/tab-three/tab-three.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { Tab3 } from './tab-three'; diff --git a/src/components/nav/test/basic/pages/tab-two/tab-two.module.ts b/src/components/nav/test/basic/pages/tab-two/tab-two.module.ts index c5e79759cd..9bb6268ebe 100644 --- a/src/components/nav/test/basic/pages/tab-two/tab-two.module.ts +++ b/src/components/nav/test/basic/pages/tab-two/tab-two.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { Tab2 } from './tab-two'; diff --git a/src/components/nav/test/basic/pages/tabs/tabs.module.ts b/src/components/nav/test/basic/pages/tabs/tabs.module.ts index b8b0335341..8f727c1423 100644 --- a/src/components/nav/test/basic/pages/tabs/tabs.module.ts +++ b/src/components/nav/test/basic/pages/tabs/tabs.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { TabsPage } from './tabs'; diff --git a/src/components/nav/test/child-navs/app/app.module.ts b/src/components/nav/test/child-navs/app/app.module.ts index 096c1d2cda..1f71ca1eed 100644 --- a/src/components/nav/test/child-navs/app/app.module.ts +++ b/src/components/nav/test/child-navs/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/nav/test/child-navs/pages/first-page/first-page.module.ts b/src/components/nav/test/child-navs/pages/first-page/first-page.module.ts index 185614c60c..84afb2e23a 100644 --- a/src/components/nav/test/child-navs/pages/first-page/first-page.module.ts +++ b/src/components/nav/test/child-navs/pages/first-page/first-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { FirstPage } from './first-page'; diff --git a/src/components/nav/test/child-navs/pages/fourth-page/fourth-page.module.ts b/src/components/nav/test/child-navs/pages/fourth-page/fourth-page.module.ts index 4f9c7d6893..2b209bb410 100644 --- a/src/components/nav/test/child-navs/pages/fourth-page/fourth-page.module.ts +++ b/src/components/nav/test/child-navs/pages/fourth-page/fourth-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { FourthPage } from './fourth-page'; diff --git a/src/components/nav/test/child-navs/pages/landing-page/landing-page.module.ts b/src/components/nav/test/child-navs/pages/landing-page/landing-page.module.ts index 88ae6c280d..ff883c1f79 100644 --- a/src/components/nav/test/child-navs/pages/landing-page/landing-page.module.ts +++ b/src/components/nav/test/child-navs/pages/landing-page/landing-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { LandingPage } from './landing-page'; diff --git a/src/components/nav/test/child-navs/pages/second-page/second-page.module.ts b/src/components/nav/test/child-navs/pages/second-page/second-page.module.ts index 243c5fe8b0..693311550b 100644 --- a/src/components/nav/test/child-navs/pages/second-page/second-page.module.ts +++ b/src/components/nav/test/child-navs/pages/second-page/second-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { SecondPage } from './second-page'; diff --git a/src/components/nav/test/child-navs/pages/third-page/third-page.module.ts b/src/components/nav/test/child-navs/pages/third-page/third-page.module.ts index 6e6dc26e23..f6b7a07d2a 100644 --- a/src/components/nav/test/child-navs/pages/third-page/third-page.module.ts +++ b/src/components/nav/test/child-navs/pages/third-page/third-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { ThirdPage } from './third-page'; diff --git a/src/components/nav/test/init-async/app.module.ts b/src/components/nav/test/init-async/app.module.ts index 2ed4ae5f54..34113e11fd 100644 --- a/src/components/nav/test/init-async/app.module.ts +++ b/src/components/nav/test/init-async/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/nav/test/insert-views/app.module.ts b/src/components/nav/test/insert-views/app.module.ts index 7f95fa92ce..8fb03a91ff 100644 --- a/src/components/nav/test/insert-views/app.module.ts +++ b/src/components/nav/test/insert-views/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule, NavController, NavParams } from '../../../..'; diff --git a/src/components/nav/test/memory/app.module.ts b/src/components/nav/test/memory/app.module.ts index d5efd85be9..cd5824953c 100644 --- a/src/components/nav/test/memory/app.module.ts +++ b/src/components/nav/test/memory/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule, NavController } from '../../../..'; diff --git a/src/components/nav/test/nav-push-pop/app.module.ts b/src/components/nav/test/nav-push-pop/app.module.ts index 9d3c5629d6..4db5c6b5fb 100644 --- a/src/components/nav/test/nav-push-pop/app.module.ts +++ b/src/components/nav/test/nav-push-pop/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule, NavParams } from '../../../..'; diff --git a/src/components/nav/test/worst-case/app.module.ts b/src/components/nav/test/worst-case/app.module.ts index 91372c029c..46866b93c1 100644 --- a/src/components/nav/test/worst-case/app.module.ts +++ b/src/components/nav/test/worst-case/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule, NavController, NavParams } from '../../../..'; import { DomSanitizer } from '@angular/platform-browser'; diff --git a/src/components/picker/test/basic/app/app.module.ts b/src/components/picker/test/basic/app/app.module.ts index 0d9888227b..0575dce36d 100644 --- a/src/components/picker/test/basic/app/app.module.ts +++ b/src/components/picker/test/basic/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/picker/test/basic/pages/page-one/page-one.module.ts b/src/components/picker/test/basic/pages/page-one/page-one.module.ts index e132ff2173..b19e0b654f 100644 --- a/src/components/picker/test/basic/pages/page-one/page-one.module.ts +++ b/src/components/picker/test/basic/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; diff --git a/src/components/popover/test/basic/app/app.module.ts b/src/components/popover/test/basic/app/app.module.ts index f69e17776f..a83ca7e2d6 100644 --- a/src/components/popover/test/basic/app/app.module.ts +++ b/src/components/popover/test/basic/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/popover/test/basic/pages/page-one/page-one.module.ts b/src/components/popover/test/basic/pages/page-one/page-one.module.ts index e132ff2173..b19e0b654f 100644 --- a/src/components/popover/test/basic/pages/page-one/page-one.module.ts +++ b/src/components/popover/test/basic/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; diff --git a/src/components/popover/test/basic/pages/popover-list-page/popover-list-page.module.ts b/src/components/popover/test/basic/pages/popover-list-page/popover-list-page.module.ts index ee26c01b57..e34128b1fa 100644 --- a/src/components/popover/test/basic/pages/popover-list-page/popover-list-page.module.ts +++ b/src/components/popover/test/basic/pages/popover-list-page/popover-list-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PopoverListPage } from './popover-list-page'; diff --git a/src/components/popover/test/basic/pages/popover-long-list-page/popover-long-list-page.module.ts b/src/components/popover/test/basic/pages/popover-long-list-page/popover-long-list-page.module.ts index 75b1f877a0..b6734d93d5 100644 --- a/src/components/popover/test/basic/pages/popover-long-list-page/popover-long-list-page.module.ts +++ b/src/components/popover/test/basic/pages/popover-long-list-page/popover-long-list-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PopoverLongListPage } from './popover-long-list-page'; diff --git a/src/components/popover/test/basic/pages/popover-radio-page/popover-radio-page.module.ts b/src/components/popover/test/basic/pages/popover-radio-page/popover-radio-page.module.ts index 0534e0146a..36d80c091e 100644 --- a/src/components/popover/test/basic/pages/popover-radio-page/popover-radio-page.module.ts +++ b/src/components/popover/test/basic/pages/popover-radio-page/popover-radio-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PopoverRadioPage } from './popover-radio-page'; diff --git a/src/components/radio/test/basic/app/app.module.ts b/src/components/radio/test/basic/app/app.module.ts index f69e17776f..a83ca7e2d6 100644 --- a/src/components/radio/test/basic/app/app.module.ts +++ b/src/components/radio/test/basic/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/radio/test/basic/pages/page-one/page-one.module.ts b/src/components/radio/test/basic/pages/page-one/page-one.module.ts index e132ff2173..b19e0b654f 100644 --- a/src/components/radio/test/basic/pages/page-one/page-one.module.ts +++ b/src/components/radio/test/basic/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; diff --git a/src/components/range/test/basic/app/app.module.ts b/src/components/range/test/basic/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/range/test/basic/app/app.module.ts +++ b/src/components/range/test/basic/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/range/test/basic/pages/root-page/root-page.module.ts b/src/components/range/test/basic/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/range/test/basic/pages/root-page/root-page.module.ts +++ b/src/components/range/test/basic/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/refresher/test/basic/app.module.ts b/src/components/refresher/test/basic/app.module.ts index a4fc243772..a4898638a9 100644 --- a/src/components/refresher/test/basic/app.module.ts +++ b/src/components/refresher/test/basic/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule, Refresher } from '../../../..'; diff --git a/src/components/refresher/test/navigation/app.module.ts b/src/components/refresher/test/navigation/app.module.ts index 7b9673a413..20a82616c9 100644 --- a/src/components/refresher/test/navigation/app.module.ts +++ b/src/components/refresher/test/navigation/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicApp, IonicModule, Refresher, NavController } from '../../../..'; diff --git a/src/components/scroll/test/basic/app.module.ts b/src/components/scroll/test/basic/app.module.ts index 50cdc1b7b8..3cb58f0613 100644 --- a/src/components/scroll/test/basic/app.module.ts +++ b/src/components/scroll/test/basic/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/searchbar/test/basic/app/app.module.ts b/src/components/searchbar/test/basic/app/app.module.ts index 51dc787e56..b9e784ba0b 100644 --- a/src/components/searchbar/test/basic/app/app.module.ts +++ b/src/components/searchbar/test/basic/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/searchbar/test/basic/pages/root-page/root-page.module.ts b/src/components/searchbar/test/basic/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/searchbar/test/basic/pages/root-page/root-page.module.ts +++ b/src/components/searchbar/test/basic/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/searchbar/test/nav/app/app.module.ts b/src/components/searchbar/test/nav/app/app.module.ts index e496b60df9..60969b0be6 100644 --- a/src/components/searchbar/test/nav/app/app.module.ts +++ b/src/components/searchbar/test/nav/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/searchbar/test/nav/pages/detail-page/detail-page.module.ts b/src/components/searchbar/test/nav/pages/detail-page/detail-page.module.ts index 38d3ef9559..a03624dddc 100644 --- a/src/components/searchbar/test/nav/pages/detail-page/detail-page.module.ts +++ b/src/components/searchbar/test/nav/pages/detail-page/detail-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { DetailPage } from './detail-page'; diff --git a/src/components/searchbar/test/nav/pages/main-page/main-page.module.ts b/src/components/searchbar/test/nav/pages/main-page/main-page.module.ts index 0cda25bd68..069d056749 100644 --- a/src/components/searchbar/test/nav/pages/main-page/main-page.module.ts +++ b/src/components/searchbar/test/nav/pages/main-page/main-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { MainPage } from './main-page'; diff --git a/src/components/searchbar/test/nav/pages/modal-page/modal-page.module.ts b/src/components/searchbar/test/nav/pages/modal-page/modal-page.module.ts index 2c06bafc99..b9159304af 100644 --- a/src/components/searchbar/test/nav/pages/modal-page/modal-page.module.ts +++ b/src/components/searchbar/test/nav/pages/modal-page/modal-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { ModalPage } from './modal-page'; diff --git a/src/components/searchbar/test/nav/pages/search-page/search-page.module.ts b/src/components/searchbar/test/nav/pages/search-page/search-page.module.ts index 3b2efd4fe8..24f9b62401 100644 --- a/src/components/searchbar/test/nav/pages/search-page/search-page.module.ts +++ b/src/components/searchbar/test/nav/pages/search-page/search-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { SearchPage } from './search-page'; diff --git a/src/components/searchbar/test/nav/pages/tabs-page/tabs-page.module.ts b/src/components/searchbar/test/nav/pages/tabs-page/tabs-page.module.ts index c2651aaed0..eeb86684ee 100644 --- a/src/components/searchbar/test/nav/pages/tabs-page/tabs-page.module.ts +++ b/src/components/searchbar/test/nav/pages/tabs-page/tabs-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { TabsPage } from './tabs-page'; diff --git a/src/components/searchbar/test/toolbar/app/app.module.ts b/src/components/searchbar/test/toolbar/app/app.module.ts index c638e147ee..dd569ed52e 100644 --- a/src/components/searchbar/test/toolbar/app/app.module.ts +++ b/src/components/searchbar/test/toolbar/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/searchbar/test/toolbar/pages/home-page/home-page.module.ts b/src/components/searchbar/test/toolbar/pages/home-page/home-page.module.ts index b4d6b104a0..dc5dab980f 100644 --- a/src/components/searchbar/test/toolbar/pages/home-page/home-page.module.ts +++ b/src/components/searchbar/test/toolbar/pages/home-page/home-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { HomePage } from './home-page'; diff --git a/src/components/segment/test/basic/app/app.module.ts b/src/components/segment/test/basic/app/app.module.ts index 470585e08a..4aae46a7da 100644 --- a/src/components/segment/test/basic/app/app.module.ts +++ b/src/components/segment/test/basic/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/segment/test/basic/pages/home-page/home-page.module.ts b/src/components/segment/test/basic/pages/home-page/home-page.module.ts index b4d6b104a0..dc5dab980f 100644 --- a/src/components/segment/test/basic/pages/home-page/home-page.module.ts +++ b/src/components/segment/test/basic/pages/home-page/home-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { HomePage } from './home-page'; diff --git a/src/components/segment/test/nav/app/app.module.ts b/src/components/segment/test/nav/app/app.module.ts index cd748ab043..8a7af90cc4 100644 --- a/src/components/segment/test/nav/app/app.module.ts +++ b/src/components/segment/test/nav/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/segment/test/nav/pages/first-page/first-page.module.ts b/src/components/segment/test/nav/pages/first-page/first-page.module.ts index 5595c3eddb..df0f2d4c24 100644 --- a/src/components/segment/test/nav/pages/first-page/first-page.module.ts +++ b/src/components/segment/test/nav/pages/first-page/first-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { FirstPage } from './first-page'; diff --git a/src/components/segment/test/nav/pages/second-page/second-page.module.ts b/src/components/segment/test/nav/pages/second-page/second-page.module.ts index 51aa0688aa..f4712d73fb 100644 --- a/src/components/segment/test/nav/pages/second-page/second-page.module.ts +++ b/src/components/segment/test/nav/pages/second-page/second-page.module.ts @@ -1,6 +1,7 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { SecondPage } from './second-page'; + @NgModule({ imports: [ IonicPageModule.forChild(SecondPage) diff --git a/src/components/segment/test/swipe/app/app.module.ts b/src/components/segment/test/swipe/app/app.module.ts index 93848bbc29..852f0dc25a 100644 --- a/src/components/segment/test/swipe/app/app.module.ts +++ b/src/components/segment/test/swipe/app/app.module.ts @@ -1,9 +1,10 @@ -import { NgModule } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; import {AppComponent} from './app.component'; import {E2EPage} from '../pages/e2e-page/e2e-page'; + @NgModule({ declarations: [ AppComponent, @@ -17,6 +18,7 @@ import {E2EPage} from '../pages/e2e-page/e2e-page'; entryComponents: [ AppComponent, E2EPage - ] + ], + schemas: [CUSTOM_ELEMENTS_SCHEMA] }) export class AppModule {} diff --git a/src/components/select/test/multiple-value/app/app.module.ts b/src/components/select/test/multiple-value/app/app.module.ts index a7d2c794c5..0956633011 100644 --- a/src/components/select/test/multiple-value/app/app.module.ts +++ b/src/components/select/test/multiple-value/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/select/test/multiple-value/pages/page-one/page-one.module.ts b/src/components/select/test/multiple-value/pages/page-one/page-one.module.ts index e132ff2173..b19e0b654f 100644 --- a/src/components/select/test/multiple-value/pages/page-one/page-one.module.ts +++ b/src/components/select/test/multiple-value/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; diff --git a/src/components/select/test/single-value/app/app.module.ts b/src/components/select/test/single-value/app/app.module.ts index a139d523dc..845b886160 100644 --- a/src/components/select/test/single-value/app/app.module.ts +++ b/src/components/select/test/single-value/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/select/test/single-value/pages/page-one/page-one.module.ts b/src/components/select/test/single-value/pages/page-one/page-one.module.ts index e132ff2173..b19e0b654f 100644 --- a/src/components/select/test/single-value/pages/page-one/page-one.module.ts +++ b/src/components/select/test/single-value/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; diff --git a/src/components/show-hide-when/test/basic/app.module.ts b/src/components/show-hide-when/test/basic/app.module.ts index 77471f6c1a..f79d74708b 100644 --- a/src/components/show-hide-when/test/basic/app.module.ts +++ b/src/components/show-hide-when/test/basic/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/slides/test/basic/app.module.ts b/src/components/slides/test/basic/app.module.ts index 50599b7caf..84a7ecb590 100644 --- a/src/components/slides/test/basic/app.module.ts +++ b/src/components/slides/test/basic/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/slides/test/control/app.module.ts b/src/components/slides/test/control/app.module.ts index 0af527d10d..ac70a2c666 100644 --- a/src/components/slides/test/control/app.module.ts +++ b/src/components/slides/test/control/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/slides/test/controller/app.module.ts b/src/components/slides/test/controller/app.module.ts index bef9c744b1..ec660f1f03 100644 --- a/src/components/slides/test/controller/app.module.ts +++ b/src/components/slides/test/controller/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/slides/test/images/app.module.ts b/src/components/slides/test/images/app.module.ts index a767c19f6b..31bbb17c58 100644 --- a/src/components/slides/test/images/app.module.ts +++ b/src/components/slides/test/images/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { Http } from '@angular/http'; diff --git a/src/components/slides/test/intro/app.module.ts b/src/components/slides/test/intro/app.module.ts index 06f8d130da..de93c7326c 100644 --- a/src/components/slides/test/intro/app.module.ts +++ b/src/components/slides/test/intro/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule, NavController } from '../../../..'; diff --git a/src/components/slides/test/loop/app.module.ts b/src/components/slides/test/loop/app.module.ts index 28165f3b20..8bfa87163f 100644 --- a/src/components/slides/test/loop/app.module.ts +++ b/src/components/slides/test/loop/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/slides/test/options/app.module.ts b/src/components/slides/test/options/app.module.ts index 35be8d1bf6..c9fd85fd83 100644 --- a/src/components/slides/test/options/app.module.ts +++ b/src/components/slides/test/options/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/slides/test/rtl/app.module.ts b/src/components/slides/test/rtl/app.module.ts index dbd0ed283b..817ca99bbb 100644 --- a/src/components/slides/test/rtl/app.module.ts +++ b/src/components/slides/test/rtl/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/slides/test/scroll/app.module.ts b/src/components/slides/test/scroll/app.module.ts index fc8121d339..b6e192053f 100644 --- a/src/components/slides/test/scroll/app.module.ts +++ b/src/components/slides/test/scroll/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/snapshot/test/basic/app/app.module.ts b/src/components/snapshot/test/basic/app/app.module.ts index 221ebd6038..bb35b8b13c 100644 --- a/src/components/snapshot/test/basic/app/app.module.ts +++ b/src/components/snapshot/test/basic/app/app.module.ts @@ -4,7 +4,7 @@ import { IonicApp, IonicModule } from '../../../../../'; import { AppComponent } from './app.component'; import { ComponentsModule } from '../pages/components/components.module'; -import {AssistiveTouchComponentModule} from '../components/assistive-touch/assistive-touch.module'; +import { AssistiveTouchComponentModule } from '../components/assistive-touch/assistive-touch.module'; @NgModule({ declarations: [ diff --git a/src/components/snapshot/test/basic/components/assistive-touch/assistive-touch.module.ts b/src/components/snapshot/test/basic/components/assistive-touch/assistive-touch.module.ts index 51c1f3e153..6d15121b99 100644 --- a/src/components/snapshot/test/basic/components/assistive-touch/assistive-touch.module.ts +++ b/src/components/snapshot/test/basic/components/assistive-touch/assistive-touch.module.ts @@ -1,4 +1,4 @@ -import { NgModule } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { AssistiveTouchComponent } from './assistive-touch'; import { IonicPageModule } from '../../../../../../module'; import { AssistivePopoverModule } from './assistive-popover/assistive-popover.module'; @@ -13,7 +13,8 @@ import { AssistivePopoverModule } from './assistive-popover/assistive-popover.mo ], exports: [ AssistiveTouchComponent - ] + ], + schemas: [CUSTOM_ELEMENTS_SCHEMA] }) export class AssistiveTouchComponentModule { } diff --git a/src/components/snapshot/test/basic/pages/components/components.module.ts b/src/components/snapshot/test/basic/pages/components/components.module.ts index c55f6d8c3e..5a6a152046 100644 --- a/src/components/snapshot/test/basic/pages/components/components.module.ts +++ b/src/components/snapshot/test/basic/pages/components/components.module.ts @@ -1,206 +1,206 @@ -import {NgModule} from '@angular/core'; -import {IonicPageModule} from '../../../../../../'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; +import { IonicPageModule } from '../../../../../../'; -import {ComponentsPage} from './components'; +import { ComponentsPage } from './components'; -import {AppModule as ActionSheetBasic} from '../../../../../action-sheet/test/basic/app/app.module'; +import { AppModule as ActionSheetBasic } from '../../../../../action-sheet/test/basic/app/app.module'; -import {AppModule as AlertBasic} from '../../../../../alert/test/basic/app/app.module'; -import {AppModule as AlertDismiss} from '../../../../../alert/test/dismiss/app.module'; +import { AppModule as AlertBasic } from '../../../../../alert/test/basic/app/app.module'; +import { AppModule as AlertDismiss } from '../../../../../alert/test/dismiss/app.module'; -import {AppModule as AppAnimations} from '../../../../../app/test/animations/app.module'; -import {AppModule as AppCordova} from '../../../../../app/test/cordova/app/app.module'; -import {AppModule as AppGestureCollision} from '../../../../../app/test/gesture-collision/app/app.module'; -import {AppModule as AppGestures} from '../../../../../app/test/gestures/app.module'; -import {AppModule as AppTypography} from '../../../../../app/test/typography/app/app.module'; -import {AppModule as AppUtilities} from '../../../../../app/test/utilities/app/app.module'; +import { AppModule as AppAnimations } from '../../../../../app/test/animations/app.module'; +import { AppModule as AppCordova } from '../../../../../app/test/cordova/app/app.module'; +import { AppModule as AppGestureCollision } from '../../../../../app/test/gesture-collision/app/app.module'; +import { AppModule as AppGestures } from '../../../../../app/test/gestures/app.module'; +import { AppModule as AppTypography } from '../../../../../app/test/typography/app/app.module'; +import { AppModule as AppUtilities } from '../../../../../app/test/utilities/app/app.module'; -import {AppModule as BadgeBasic} from '../../../../../badge/test/basic/app/app.module'; +import { AppModule as BadgeBasic } from '../../../../../badge/test/basic/app/app.module'; -import {AppModule as ButtonAnchors} from '../../../../../button/test/anchors/app/app.module'; -import {AppModule as ButtonAttributes} from '../../../../../button/test/attributes/app/app.module'; -import {AppModule as ButtonBasic} from '../../../../../button/test/basic/app/app.module'; -import {AppModule as ButtonBlock} from '../../../../../button/test/block/app/app.module'; -import {AppModule as ButtonClear} from '../../../../../button/test/clear/app/app.module'; -import {AppModule as ButtonDecorator} from '../../../../../button/test/decorator/app/app.module'; -import {AppModule as ButtonDynamic} from '../../../../../button/test/dynamic/app/app.module'; -import {AppModule as ButtonFull} from '../../../../../button/test/full/app/app.module'; -import {AppModule as ButtonIcons} from '../../../../../button/test/icons/app/app.module'; -import {AppModule as ButtonOutline} from '../../../../../button/test/outline/app/app.module'; -import {AppModule as ButtonRaised} from '../../../../../button/test/raised/app.module'; -import {AppModule as ButtonRound} from '../../../../../button/test/round/app/app.module'; -import {AppModule as ButtonSizes} from '../../../../../button/test/sizes/app/app.module'; +import { AppModule as ButtonAnchors } from '../../../../../button/test/anchors/app/app.module'; +import { AppModule as ButtonAttributes } from '../../../../../button/test/attributes/app/app.module'; +import { AppModule as ButtonBasic } from '../../../../../button/test/basic/app/app.module'; +import { AppModule as ButtonBlock } from '../../../../../button/test/block/app/app.module'; +import { AppModule as ButtonClear } from '../../../../../button/test/clear/app/app.module'; +import { AppModule as ButtonDecorator } from '../../../../../button/test/decorator/app/app.module'; +import { AppModule as ButtonDynamic } from '../../../../../button/test/dynamic/app/app.module'; +import { AppModule as ButtonFull } from '../../../../../button/test/full/app/app.module'; +import { AppModule as ButtonIcons } from '../../../../../button/test/icons/app/app.module'; +import { AppModule as ButtonOutline } from '../../../../../button/test/outline/app/app.module'; +import { AppModule as ButtonRaised } from '../../../../../button/test/raised/app.module'; +import { AppModule as ButtonRound } from '../../../../../button/test/round/app/app.module'; +import { AppModule as ButtonSizes } from '../../../../../button/test/sizes/app/app.module'; -import {AppModule as CardAdvanced} from '../../../../../card/test/advanced/app/app.module'; -import {AppModule as CardBasic} from '../../../../../card/test/basic/app/app.module'; -import {AppModule as CardColors} from '../../../../../card/test/colors/app/app.module'; -import {AppModule as CardImages} from '../../../../../card/test/images/app/app.module'; -import {AppModule as CardList} from '../../../../../card/test/list/app/app.module'; -import {AppModule as CardMap} from '../../../../../card/test/map/app.module'; -import {AppModule as CardSocial} from '../../../../../card/test/social/app.module'; +import { AppModule as CardAdvanced } from '../../../../../card/test/advanced/app/app.module'; +import { AppModule as CardBasic } from '../../../../../card/test/basic/app/app.module'; +import { AppModule as CardColors } from '../../../../../card/test/colors/app/app.module'; +import { AppModule as CardImages } from '../../../../../card/test/images/app/app.module'; +import { AppModule as CardList } from '../../../../../card/test/list/app/app.module'; +import { AppModule as CardMap } from '../../../../../card/test/map/app.module'; +import { AppModule as CardSocial } from '../../../../../card/test/social/app.module'; -import {AppModule as CheckboxBasic} from '../../../../../checkbox/test/basic/app/app.module'; +import { AppModule as CheckboxBasic } from '../../../../../checkbox/test/basic/app/app.module'; -import {AppModule as ChipBasic} from '../../../../../chip/test/basic/app/app.module'; +import { AppModule as ChipBasic } from '../../../../../chip/test/basic/app/app.module'; -import {AppModule as ContentBasic} from '../../../../../content/test/basic/app/app.module'; -import {AppModule as ContentFullscreen} from '../../../../../content/test/fullscreen/app/app.module'; -import {AppModule as ContentHeaderScroll} from '../../../../../content/test/header-scroll/app.module'; -import {AppModule as ContentNoBounce} from '../../../../../content/test/no-bounce/app/app.module'; -import {AppModule as ContentScrollDownOnLoad} from '../../../../../content/test/scroll-down-on-load/app/app.module'; +import { AppModule as ContentBasic } from '../../../../../content/test/basic/app/app.module'; +import { AppModule as ContentFullscreen } from '../../../../../content/test/fullscreen/app/app.module'; +import { AppModule as ContentHeaderScroll } from '../../../../../content/test/header-scroll/app.module'; +import { AppModule as ContentNoBounce } from '../../../../../content/test/no-bounce/app/app.module'; +import { AppModule as ContentScrollDownOnLoad } from '../../../../../content/test/scroll-down-on-load/app/app.module'; -import {AppModule as DatetimeBasic} from '../../../../../datetime/test/basic/app/app.module'; -import {AppModule as DatetimeForm} from '../../../../../datetime/test/form/app.module'; -import {AppModule as DatetimeIssues} from '../../../../../datetime/test/issues/app/app.module'; -import {AppModule as DatetimeLabels} from '../../../../../datetime/test/labels/app/app.module'; +import { AppModule as DatetimeBasic } from '../../../../../datetime/test/basic/app/app.module'; +import { AppModule as DatetimeForm } from '../../../../../datetime/test/form/app.module'; +import { AppModule as DatetimeIssues } from '../../../../../datetime/test/issues/app/app.module'; +import { AppModule as DatetimeLabels } from '../../../../../datetime/test/labels/app/app.module'; -import {AppModule as FabBasic} from '../../../../../fab/test/basic/app/app.module'; +import { AppModule as FabBasic } from '../../../../../fab/test/basic/app/app.module'; -import {AppModule as GridAlignment} from '../../../../../grid/test/alignment/app.module'; -import {AppModule as GridBasic} from '../../../../../grid/test/basic/app/app.module'; -import {AppModule as GridCard} from '../../../../../grid/test/card/app.module'; -import {AppModule as GridFull} from '../../../../../grid/test/full/app.module'; -import {AppModule as GridResponsive} from '../../../../../grid/test/responsive/app.module'; +import { AppModule as GridAlignment } from '../../../../../grid/test/alignment/app.module'; +import { AppModule as GridBasic } from '../../../../../grid/test/basic/app/app.module'; +import { AppModule as GridCard } from '../../../../../grid/test/card/app.module'; +import { AppModule as GridFull } from '../../../../../grid/test/full/app.module'; +import { AppModule as GridResponsive } from '../../../../../grid/test/responsive/app.module'; -import {AppModule as IconBasic} from '../../../../../icon/test/basic/app/app.module'; +import { AppModule as IconBasic } from '../../../../../icon/test/basic/app/app.module'; -import {AppModule as ImgBasic} from '../../../../../img/test/basic/app/app.module'; -import {AppModule as ImgCards} from '../../../../../img/test/cards/app.module'; -import {AppModule as ImgLazyLoad} from '../../../../../img/test/lazy-load/app.module'; -import {AppModule as ImgList} from '../../../../../img/test/list/app.module'; +import { AppModule as ImgBasic } from '../../../../../img/test/basic/app/app.module'; +import { AppModule as ImgCards } from '../../../../../img/test/cards/app.module'; +import { AppModule as ImgLazyLoad } from '../../../../../img/test/lazy-load/app.module'; +import { AppModule as ImgList } from '../../../../../img/test/list/app.module'; -import {AppModule as InfiniteScrollBasic} from '../../../../../infinite-scroll/test/basic/app.module'; -import {AppModule as InfiniteScrollPositionTop} from '../../../../../infinite-scroll/test/position-top/app/app.module'; -import {AppModule as InfiniteScrollShortList} from '../../../../../infinite-scroll/test/short-list/app.module'; +import { AppModule as InfiniteScrollBasic } from '../../../../../infinite-scroll/test/basic/app.module'; +import { AppModule as InfiniteScrollPositionTop } from '../../../../../infinite-scroll/test/position-top/app/app.module'; +import { AppModule as InfiniteScrollShortList } from '../../../../../infinite-scroll/test/short-list/app.module'; -import {AppModule as InputBasicForm} from '../../../../../input/test/basic-form/app/app.module'; -import {AppModule as InputClearAfterEdit} from '../../../../../input/test/clear-after-edit/app/app.module'; -import {AppModule as InputClearInput} from '../../../../../input/test/clear-input/app/app.module'; -import {AppModule as InputEvents} from '../../../../../input/test/events/app/app.module'; -import {AppModule as InputFixedInlineLabels} from '../../../../../input/test/fixed-inline-labels/app/app.module'; -import {AppModule as InputFloatingLabels} from '../../../../../input/test/floating-labels/app/app.module'; -import {AppModule as InputFooterInputs} from '../../../../../input/test/footer-inputs/app/app.module'; -import {AppModule as InputFormInputs} from '../../../../../input/test/form-inputs/app/app.module'; -import {AppModule as InputHighlight} from '../../../../../input/test/highlight/app/app.module'; -import {AppModule as InputInlineLabels} from '../../../../../input/test/inline-labels/app/app.module'; -import {AppModule as InputInputFocus} from '../../../../../input/test/input-focus/app/app.module'; -import {AppModule as InputInsetInputs} from '../../../../../input/test/inset-inputs/app/app.module'; -import {AppModule as InputPlaceholderLabels} from '../../../../../input/test/placeholder-labels/app/app.module'; -import {AppModule as InputStackedLabels} from '../../../../../input/test/stacked-labels/app/app.module'; +import { AppModule as InputBasicForm } from '../../../../../input/test/basic-form/app/app.module'; +import { AppModule as InputClearAfterEdit } from '../../../../../input/test/clear-after-edit/app/app.module'; +import { AppModule as InputClearInput } from '../../../../../input/test/clear-input/app/app.module'; +import { AppModule as InputEvents } from '../../../../../input/test/events/app/app.module'; +import { AppModule as InputFixedInlineLabels } from '../../../../../input/test/fixed-inline-labels/app/app.module'; +import { AppModule as InputFloatingLabels } from '../../../../../input/test/floating-labels/app/app.module'; +import { AppModule as InputFooterInputs } from '../../../../../input/test/footer-inputs/app/app.module'; +import { AppModule as InputFormInputs } from '../../../../../input/test/form-inputs/app/app.module'; +import { AppModule as InputHighlight } from '../../../../../input/test/highlight/app/app.module'; +import { AppModule as InputInlineLabels } from '../../../../../input/test/inline-labels/app/app.module'; +import { AppModule as InputInputFocus } from '../../../../../input/test/input-focus/app/app.module'; +import { AppModule as InputInsetInputs } from '../../../../../input/test/inset-inputs/app/app.module'; +import { AppModule as InputPlaceholderLabels } from '../../../../../input/test/placeholder-labels/app/app.module'; +import { AppModule as InputStackedLabels } from '../../../../../input/test/stacked-labels/app/app.module'; -import {AppModule as ItemButtons} from '../../../../../item/test/buttons/app/app.module'; -import {AppModule as ItemColors} from '../../../../../item/test/colors/app/app.module'; -import {AppModule as ItemDividers} from '../../../../../item/test/dividers/app/app.module'; -import {AppModule as ItemGroups} from '../../../../../item/test/groups/app/app.module'; -import {AppModule as ItemIcons} from '../../../../../item/test/icons/app/app.module'; -import {AppModule as ItemImages} from '../../../../../item/test/images/app/app.module'; -import {AppModule as ItemInputs} from '../../../../../item/test/inputs/app/app.module'; -import {AppModule as ItemMedia} from '../../../../../item/test/media/app/app.module'; -import {AppModule as ItemReorder} from '../../../../../item/test/reorder/app/app.module'; -import {AppModule as ItemSliding} from '../../../../../item/test/sliding/app/app.module'; -import {AppModule as ItemText} from '../../../../../item/test/text/app/app.module'; +import { AppModule as ItemButtons } from '../../../../../item/test/buttons/app/app.module'; +import { AppModule as ItemColors } from '../../../../../item/test/colors/app/app.module'; +import { AppModule as ItemDividers } from '../../../../../item/test/dividers/app/app.module'; +import { AppModule as ItemGroups } from '../../../../../item/test/groups/app/app.module'; +import { AppModule as ItemIcons } from '../../../../../item/test/icons/app/app.module'; +import { AppModule as ItemImages } from '../../../../../item/test/images/app/app.module'; +import { AppModule as ItemInputs } from '../../../../../item/test/inputs/app/app.module'; +import { AppModule as ItemMedia } from '../../../../../item/test/media/app/app.module'; +import { AppModule as ItemReorder } from '../../../../../item/test/reorder/app/app.module'; +import { AppModule as ItemSliding } from '../../../../../item/test/sliding/app/app.module'; +import { AppModule as ItemText } from '../../../../../item/test/text/app/app.module'; -import {AppModule as ListChatList} from '../../../../../list/test/chat-list/app.module'; -import {AppModule as ListHeaderScenarios} from '../../../../../list/test/header-scenarios/app/app.module'; -import {AppModule as ListHeaders} from '../../../../../list/test/headers/app/app.module'; -import {AppModule as ListInset} from '../../../../../list/test/inset/app/app.module'; -import {AppModule as ListNoLines} from '../../../../../list/test/no-lines/app/app.module'; -import {AppModule as ListRepeatHeaders} from '../../../../../list/test/repeat-headers/app.module'; -import {AppModule as ListSticky} from '../../../../../list/test/sticky/app.module'; +import { AppModule as ListChatList } from '../../../../../list/test/chat-list/app.module'; +import { AppModule as ListHeaderScenarios } from '../../../../../list/test/header-scenarios/app/app.module'; +import { AppModule as ListHeaders } from '../../../../../list/test/headers/app/app.module'; +import { AppModule as ListInset } from '../../../../../list/test/inset/app/app.module'; +import { AppModule as ListNoLines } from '../../../../../list/test/no-lines/app/app.module'; +import { AppModule as ListRepeatHeaders } from '../../../../../list/test/repeat-headers/app.module'; +import { AppModule as ListSticky } from '../../../../../list/test/sticky/app.module'; -import {AppModule as LoadingBasic} from '../../../../../loading/test/basic/app/app.module'; -import {AppModule as LoadingTabs} from '../../../../../tabs/test/basic/app/app.module'; +import { AppModule as LoadingBasic } from '../../../../../loading/test/basic/app/app.module'; +import { AppModule as LoadingTabs } from '../../../../../tabs/test/basic/app/app.module'; -import {AppModule as MenuBasic} from '../../../../../menu/test/basic/app/app.module'; -// import {AppModule as MenuDisableSwipe} from '../../../../../menu/test/disable-swipe/app.module'; TODO -// import {AppModule as MenuEnableDisable} from '../../../../../menu/test/enable-disable/app.module'; TODO -import {AppModule as MenuMultiple} from '../../../../../menu/test/multiple/app/app.module'; -import {AppModule as MenuOverlay} from '../../../../../menu/test/overlay/app.module'; -import {AppModule as MenuPush} from '../../../../../menu/test/push/app.module'; -import {AppModule as MenuReveal} from '../../../../../menu/test/reveal/app.module'; +import { AppModule as MenuBasic } from '../../../../../menu/test/basic/app/app.module'; +// import { AppModule as MenuDisableSwipe } from '../../../../../menu/test/disable-swipe/app.module'; TODO +// import { AppModule as MenuEnableDisable } from '../../../../../menu/test/enable-disable/app.module'; TODO +import { AppModule as MenuMultiple } from '../../../../../menu/test/multiple/app/app.module'; +import { AppModule as MenuOverlay } from '../../../../../menu/test/overlay/app.module'; +import { AppModule as MenuPush } from '../../../../../menu/test/push/app.module'; +import { AppModule as MenuReveal } from '../../../../../menu/test/reveal/app.module'; -import {AppModule as ModalBasic} from '../../../../../modal/test/basic/app/app.module'; +import { AppModule as ModalBasic } from '../../../../../modal/test/basic/app/app.module'; -import {AppModule as NavBasic} from '../../../../../nav/test/basic/app/app.module'; -import {AppModule as NavChildNavs} from '../../../../../nav/test/child-navs/app/app.module'; -import {AppModule as NavInitAsync} from '../../../../../nav/test/init-async/app.module'; -import {AppModule as NavInsertViews} from '../../../../../nav/test/insert-views/app.module'; -import {AppModule as NavMemory} from '../../../../../nav/test/memory/app.module'; -import {AppModule as NavNavPushPop} from '../../../../../nav/test/nav-push-pop/app.module'; -import {AppModule as NavWorstCase} from '../../../../../nav/test/worst-case/app.module'; +import { AppModule as NavBasic } from '../../../../../nav/test/basic/app/app.module'; +import { AppModule as NavChildNavs } from '../../../../../nav/test/child-navs/app/app.module'; +import { AppModule as NavInitAsync } from '../../../../../nav/test/init-async/app.module'; +import { AppModule as NavInsertViews } from '../../../../../nav/test/insert-views/app.module'; +import { AppModule as NavMemory } from '../../../../../nav/test/memory/app.module'; +import { AppModule as NavNavPushPop } from '../../../../../nav/test/nav-push-pop/app.module'; +import { AppModule as NavWorstCase } from '../../../../../nav/test/worst-case/app.module'; -import {AppModule as PickerBasic} from '../../../../../picker/test/basic/app/app.module'; +import { AppModule as PickerBasic } from '../../../../../picker/test/basic/app/app.module'; -import {AppModule as PopoverBasic} from '../../../../../popover/test/basic/app/app.module'; +import { AppModule as PopoverBasic } from '../../../../../popover/test/basic/app/app.module'; -import {AppModule as RadioBasic} from '../../../../../radio/test/basic/app/app.module'; +import { AppModule as RadioBasic } from '../../../../../radio/test/basic/app/app.module'; -import {AppModule as RangeBasic} from '../../../../../range/test/basic/app/app.module'; +import { AppModule as RangeBasic } from '../../../../../range/test/basic/app/app.module'; -import {AppModule as RefresherBasic} from '../../../../../refresher/test/basic/app.module'; -// import {AppModule as RefresherNavigation} from '../../../../../refresher/test/navigation/app.module'; TODO +import { AppModule as RefresherBasic } from '../../../../../refresher/test/basic/app.module'; +// import { AppModule as RefresherNavigation } from '../../../../../refresher/test/navigation/app.module'; TODO -import {AppModule as ScrollBasic} from '../../../../../scroll/test/basic/app.module'; +import { AppModule as ScrollBasic } from '../../../../../scroll/test/basic/app.module'; -import {AppModule as SearchbarBasic} from '../../../../../searchbar/test/basic/app/app.module'; -import {AppModule as SearchbarNav} from '../../../../../searchbar/test/nav/app/app.module'; -import {AppModule as SearchbarToolbar} from '../../../../../searchbar/test/toolbar/app/app.module'; +import { AppModule as SearchbarBasic } from '../../../../../searchbar/test/basic/app/app.module'; +import { AppModule as SearchbarNav } from '../../../../../searchbar/test/nav/app/app.module'; +import { AppModule as SearchbarToolbar } from '../../../../../searchbar/test/toolbar/app/app.module'; -import {AppModule as SegmentBasic} from '../../../../../segment/test/basic/app/app.module'; -import {AppModule as SegmentNav} from '../../../../../segment/test/nav/app/app.module'; -import {AppModule as SegmentSwipe} from '../../../../../segment/test/swipe/app/app.module'; +import { AppModule as SegmentBasic } from '../../../../../segment/test/basic/app/app.module'; +import { AppModule as SegmentNav } from '../../../../../segment/test/nav/app/app.module'; +import { AppModule as SegmentSwipe } from '../../../../../segment/test/swipe/app/app.module'; -import {AppModule as SelectMultipleValue} from '../../../../../select/test/multiple-value/app/app.module'; -import {AppModule as SelectSingleValue} from '../../../../../select/test/single-value/app/app.module'; +import { AppModule as SelectMultipleValue } from '../../../../../select/test/multiple-value/app/app.module'; +import { AppModule as SelectSingleValue } from '../../../../../select/test/single-value/app/app.module'; -import {AppModule as ShowHideWhenBasic} from '../../../../../show-hide-when/test/basic/app.module'; +import { AppModule as ShowHideWhenBasic } from '../../../../../show-hide-when/test/basic/app.module'; -import {AppModule as SlidesBasic} from '../../../../../slides/test/basic/app.module'; -import {AppModule as SlidesControl} from '../../../../../slides/test/control/app.module'; -import {AppModule as SlidesController} from '../../../../../slides/test/controller/app.module'; -import {AppModule as SlidesImages} from '../../../../../slides/test/images/app.module'; -import {AppModule as SlidesIntro} from '../../../../../slides/test/intro/app.module'; -import {AppModule as SlidesLoop} from '../../../../../slides/test/loop/app.module'; -import {AppModule as SlidesOptions} from '../../../../../slides/test/options/app.module'; -import {AppModule as SlidesRTL} from '../../../../../slides/test/rtl/app.module'; -import {AppModule as SlidesScroll} from '../../../../../slides/test/scroll/app.module'; +import { AppModule as SlidesBasic } from '../../../../../slides/test/basic/app.module'; +import { AppModule as SlidesControl } from '../../../../../slides/test/control/app.module'; +import { AppModule as SlidesController } from '../../../../../slides/test/controller/app.module'; +import { AppModule as SlidesImages } from '../../../../../slides/test/images/app.module'; +import { AppModule as SlidesIntro } from '../../../../../slides/test/intro/app.module'; +import { AppModule as SlidesLoop } from '../../../../../slides/test/loop/app.module'; +import { AppModule as SlidesOptions } from '../../../../../slides/test/options/app.module'; +import { AppModule as SlidesRTL } from '../../../../../slides/test/rtl/app.module'; +import { AppModule as SlidesScroll } from '../../../../../slides/test/scroll/app.module'; -import {AppModule as SpinnerBasic} from '../../../../../spinner/test/basic/app.module'; -import {AppModule as SpinnerColors} from '../../../../../spinner/test/colors/app.module'; +import { AppModule as SpinnerBasic } from '../../../../../spinner/test/basic/app.module'; +import { AppModule as SpinnerColors } from '../../../../../spinner/test/colors/app.module'; -import {AppModule as SplitPaneBasic} from '../../../../../split-pane/test/basic/app/app.module'; -import {AppModule as SplitPaneMenus} from '../../../../../split-pane/test/menus/app/app.module'; -import {AppModule as SplitPaneNested} from '../../../../../split-pane/test/nested/app/app.module'; -import {AppModule as SplitPaneTabs} from '../../../../../split-pane/test/tabs/app/app.module'; +import { AppModule as SplitPaneBasic } from '../../../../../split-pane/test/basic/app/app.module'; +import { AppModule as SplitPaneMenus } from '../../../../../split-pane/test/menus/app/app.module'; +import { AppModule as SplitPaneNested } from '../../../../../split-pane/test/nested/app/app.module'; +import { AppModule as SplitPaneTabs } from '../../../../../split-pane/test/tabs/app/app.module'; -import {AppModule as TabsAdvanced} from '../../../../../tabs/test/advanced/app/app.module'; -import {AppModule as TabsBadges} from '../../../../../tabs/test/badges/app/app.module'; -import {AppModule as TabsBasic} from '../../../../../tabs/test/basic/app/app.module'; -import {AppModule as TabsColors} from '../../../../../tabs/test/colors/app/app.module'; -import {AppModule as TabsEvents} from '../../../../../tabs/test/events/app.module'; -import {AppModule as TabsGhost} from '../../../../../tabs/test/ghost/app.module'; -import {AppModule as TabsLifecycle} from '../../../../../tabs/test/lifecyles/app.module'; -import {AppModule as TabsTabBarScenarios} from '../../../../../tabs/test/tab-bar-scenarios/app/app.module'; -import {AppModule as TabsTop} from '../../../../../tabs/test/top/app.module'; +import { AppModule as TabsAdvanced } from '../../../../../tabs/test/advanced/app/app.module'; +import { AppModule as TabsBadges } from '../../../../../tabs/test/badges/app/app.module'; +import { AppModule as TabsBasic } from '../../../../../tabs/test/basic/app/app.module'; +import { AppModule as TabsColors } from '../../../../../tabs/test/colors/app/app.module'; +import { AppModule as TabsEvents } from '../../../../../tabs/test/events/app.module'; +import { AppModule as TabsGhost } from '../../../../../tabs/test/ghost/app.module'; +import { AppModule as TabsLifecycle } from '../../../../../tabs/test/lifecyles/app.module'; +import { AppModule as TabsTabBarScenarios } from '../../../../../tabs/test/tab-bar-scenarios/app/app.module'; +import { AppModule as TabsTop } from '../../../../../tabs/test/top/app.module'; -import {AppModule as ToastBasic} from '../../../../../toast/test/basic/app/app.module'; +import { AppModule as ToastBasic } from '../../../../../toast/test/basic/app/app.module'; -import {AppModule as ToggleBasic} from '../../../../../toggle/test/basic/app/app.module'; +import { AppModule as ToggleBasic } from '../../../../../toggle/test/basic/app/app.module'; -import {AppModule as ToolbarBasic} from '../../../../../toolbar/test/basic/app/app.module'; -import {AppModule as ToolbarColors} from '../../../../../toolbar/test/colors/app/app.module'; -import {AppModule as ToolbarScenarios} from '../../../../../toolbar/test/scenarios/app/app.module'; +import { AppModule as ToolbarBasic } from '../../../../../toolbar/test/basic/app/app.module'; +import { AppModule as ToolbarColors } from '../../../../../toolbar/test/colors/app/app.module'; +import { AppModule as ToolbarScenarios } from '../../../../../toolbar/test/scenarios/app/app.module'; -import {AppModule as TypographyBasic} from '../../../../../typography/test/basic/app/app.module'; +import { AppModule as TypographyBasic } from '../../../../../typography/test/basic/app/app.module'; -import {AppModule as VirtualScrollBasic} from '../../../../../virtual-scroll/test/basic/app.module'; -import {AppModule as VirtualScrollCards} from '../../../../../virtual-scroll/test/cards/app.module'; -import {AppModule as VirtualScrollImageGallery} from '../../../../../virtual-scroll/test/image-gallery/app.module'; -import {AppModule as VirtualScrollInfiniteScroll} from '../../../../../virtual-scroll/test/infinite-scroll/app.module'; -import {AppModule as VirtualScrollList} from '../../../../../virtual-scroll/test/list/app.module'; -import {AppModule as VirtualScrollMedia} from '../../../../../virtual-scroll/test/media/app/app.module'; -import {AppModule as VirtualScrollSlidingItem} from '../../../../../virtual-scroll/test/sliding-item/app.module'; -import {AppModule as VirtualScrollVariableSize} from '../../../../../virtual-scroll/test/variable-size/app.module'; +import { AppModule as VirtualScrollBasic } from '../../../../../virtual-scroll/test/basic/app.module'; +import { AppModule as VirtualScrollCards } from '../../../../../virtual-scroll/test/cards/app.module'; +import { AppModule as VirtualScrollImageGallery } from '../../../../../virtual-scroll/test/image-gallery/app.module'; +import { AppModule as VirtualScrollInfiniteScroll } from '../../../../../virtual-scroll/test/infinite-scroll/app.module'; +import { AppModule as VirtualScrollList } from '../../../../../virtual-scroll/test/list/app.module'; +import { AppModule as VirtualScrollMedia } from '../../../../../virtual-scroll/test/media/app/app.module'; +import { AppModule as VirtualScrollSlidingItem } from '../../../../../virtual-scroll/test/sliding-item/app.module'; +import { AppModule as VirtualScrollVariableSize } from '../../../../../virtual-scroll/test/variable-size/app.module'; @NgModule({ @@ -411,7 +411,8 @@ import {AppModule as VirtualScrollVariableSize} from '../../../../../virtual-scr ], entryComponents: [ ComponentsPage - ] + ], + schemas: [CUSTOM_ELEMENTS_SCHEMA] }) export class ComponentsModule { } diff --git a/src/components/spinner/test/basic/app.module.ts b/src/components/spinner/test/basic/app.module.ts index 984716223c..db30b6284d 100644 --- a/src/components/spinner/test/basic/app.module.ts +++ b/src/components/spinner/test/basic/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/spinner/test/colors/app.module.ts b/src/components/spinner/test/colors/app.module.ts index 984716223c..db30b6284d 100644 --- a/src/components/spinner/test/colors/app.module.ts +++ b/src/components/spinner/test/colors/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/split-pane/test/basic/app/app.module.ts b/src/components/split-pane/test/basic/app/app.module.ts index ab3b52ccc2..0bb9b216b3 100644 --- a/src/components/split-pane/test/basic/app/app.module.ts +++ b/src/components/split-pane/test/basic/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/split-pane/test/basic/pages/page-one/page-one.module.ts b/src/components/split-pane/test/basic/pages/page-one/page-one.module.ts index e132ff2173..b19e0b654f 100644 --- a/src/components/split-pane/test/basic/pages/page-one/page-one.module.ts +++ b/src/components/split-pane/test/basic/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; diff --git a/src/components/split-pane/test/basic/pages/page-two/page-two.module.ts b/src/components/split-pane/test/basic/pages/page-two/page-two.module.ts index 05154fddb4..7ec0b16ee1 100644 --- a/src/components/split-pane/test/basic/pages/page-two/page-two.module.ts +++ b/src/components/split-pane/test/basic/pages/page-two/page-two.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageTwo } from './page-two'; diff --git a/src/components/split-pane/test/basic/pages/side-page/side-page.module.ts b/src/components/split-pane/test/basic/pages/side-page/side-page.module.ts index d7e1b0062a..7bc7046899 100644 --- a/src/components/split-pane/test/basic/pages/side-page/side-page.module.ts +++ b/src/components/split-pane/test/basic/pages/side-page/side-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { SidePage } from './side-page'; diff --git a/src/components/split-pane/test/menus/app/app.module.ts b/src/components/split-pane/test/menus/app/app.module.ts index b531b6cf50..a5d84979e3 100644 --- a/src/components/split-pane/test/menus/app/app.module.ts +++ b/src/components/split-pane/test/menus/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/split-pane/test/menus/pages/page-one/page-one.module.ts b/src/components/split-pane/test/menus/pages/page-one/page-one.module.ts index e132ff2173..b19e0b654f 100644 --- a/src/components/split-pane/test/menus/pages/page-one/page-one.module.ts +++ b/src/components/split-pane/test/menus/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; diff --git a/src/components/split-pane/test/menus/pages/page-two/page-two.module.ts b/src/components/split-pane/test/menus/pages/page-two/page-two.module.ts index 05154fddb4..7ec0b16ee1 100644 --- a/src/components/split-pane/test/menus/pages/page-two/page-two.module.ts +++ b/src/components/split-pane/test/menus/pages/page-two/page-two.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageTwo } from './page-two'; diff --git a/src/components/split-pane/test/nested/app/app.module.ts b/src/components/split-pane/test/nested/app/app.module.ts index ab3b52ccc2..0bb9b216b3 100644 --- a/src/components/split-pane/test/nested/app/app.module.ts +++ b/src/components/split-pane/test/nested/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/split-pane/test/nested/pages/page-four/page-four.module.ts b/src/components/split-pane/test/nested/pages/page-four/page-four.module.ts index 4ccb833825..63a040c6a6 100644 --- a/src/components/split-pane/test/nested/pages/page-four/page-four.module.ts +++ b/src/components/split-pane/test/nested/pages/page-four/page-four.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageFour } from './page-four'; diff --git a/src/components/split-pane/test/nested/pages/page-one/page-one.module.ts b/src/components/split-pane/test/nested/pages/page-one/page-one.module.ts index a8c5ddeb01..89e441de0b 100644 --- a/src/components/split-pane/test/nested/pages/page-one/page-one.module.ts +++ b/src/components/split-pane/test/nested/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; diff --git a/src/components/split-pane/test/nested/pages/page-three/page-three.module.ts b/src/components/split-pane/test/nested/pages/page-three/page-three.module.ts index 162bb68d1a..97420caa0a 100644 --- a/src/components/split-pane/test/nested/pages/page-three/page-three.module.ts +++ b/src/components/split-pane/test/nested/pages/page-three/page-three.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageThree } from './page-three'; diff --git a/src/components/split-pane/test/nested/pages/page-two/page-two.module.ts b/src/components/split-pane/test/nested/pages/page-two/page-two.module.ts index 05154fddb4..7ec0b16ee1 100644 --- a/src/components/split-pane/test/nested/pages/page-two/page-two.module.ts +++ b/src/components/split-pane/test/nested/pages/page-two/page-two.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageTwo } from './page-two'; diff --git a/src/components/split-pane/test/nested/pages/side-page/side-page.module.ts b/src/components/split-pane/test/nested/pages/side-page/side-page.module.ts index d7e1b0062a..7bc7046899 100644 --- a/src/components/split-pane/test/nested/pages/side-page/side-page.module.ts +++ b/src/components/split-pane/test/nested/pages/side-page/side-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { SidePage } from './side-page'; diff --git a/src/components/split-pane/test/tabs/app/app.module.ts b/src/components/split-pane/test/tabs/app/app.module.ts index ab3b52ccc2..0bb9b216b3 100644 --- a/src/components/split-pane/test/tabs/app/app.module.ts +++ b/src/components/split-pane/test/tabs/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/split-pane/test/tabs/pages/page-one/page-one.module.ts b/src/components/split-pane/test/tabs/pages/page-one/page-one.module.ts index e132ff2173..b19e0b654f 100644 --- a/src/components/split-pane/test/tabs/pages/page-one/page-one.module.ts +++ b/src/components/split-pane/test/tabs/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; diff --git a/src/components/split-pane/test/tabs/pages/side-page/side-page.module.ts b/src/components/split-pane/test/tabs/pages/side-page/side-page.module.ts index d7e1b0062a..7bc7046899 100644 --- a/src/components/split-pane/test/tabs/pages/side-page/side-page.module.ts +++ b/src/components/split-pane/test/tabs/pages/side-page/side-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { SidePage } from './side-page'; diff --git a/src/components/tabs/test/advanced/app/app.module.ts b/src/components/tabs/test/advanced/app/app.module.ts index e93974d32f..a5f4495bb9 100644 --- a/src/components/tabs/test/advanced/app/app.module.ts +++ b/src/components/tabs/test/advanced/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/tabs/test/advanced/pages/modal-chat-page/modal-chat-page.module.ts b/src/components/tabs/test/advanced/pages/modal-chat-page/modal-chat-page.module.ts index 4a4bf0cefa..d07016c832 100644 --- a/src/components/tabs/test/advanced/pages/modal-chat-page/modal-chat-page.module.ts +++ b/src/components/tabs/test/advanced/pages/modal-chat-page/modal-chat-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { ModalChatPage } from './modal-chat-page'; diff --git a/src/components/tabs/test/advanced/pages/signin-page/sign-in-page.module.ts b/src/components/tabs/test/advanced/pages/signin-page/sign-in-page.module.ts index f51de438ae..2e7e60b333 100644 --- a/src/components/tabs/test/advanced/pages/signin-page/sign-in-page.module.ts +++ b/src/components/tabs/test/advanced/pages/signin-page/sign-in-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { SignInPage } from './sign-in-page'; diff --git a/src/components/tabs/test/advanced/pages/tab1-page1/tab1-page1.module.ts b/src/components/tabs/test/advanced/pages/tab1-page1/tab1-page1.module.ts index 11ebc5b129..0b850326d6 100644 --- a/src/components/tabs/test/advanced/pages/tab1-page1/tab1-page1.module.ts +++ b/src/components/tabs/test/advanced/pages/tab1-page1/tab1-page1.module.ts @@ -1,5 +1,5 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { Tab1Page1 } from './tab1-page1'; diff --git a/src/components/tabs/test/advanced/pages/tab1-page2/tab1-page2.module.ts b/src/components/tabs/test/advanced/pages/tab1-page2/tab1-page2.module.ts index 49489266c6..b78315c911 100644 --- a/src/components/tabs/test/advanced/pages/tab1-page2/tab1-page2.module.ts +++ b/src/components/tabs/test/advanced/pages/tab1-page2/tab1-page2.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { Tab1Page2 } from './tab1-page2'; diff --git a/src/components/tabs/test/advanced/pages/tab1-page3/tab1-page3.module.ts b/src/components/tabs/test/advanced/pages/tab1-page3/tab1-page3.module.ts index fdefb92001..96eb715c92 100644 --- a/src/components/tabs/test/advanced/pages/tab1-page3/tab1-page3.module.ts +++ b/src/components/tabs/test/advanced/pages/tab1-page3/tab1-page3.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { Tab1Page3 } from './tab1-page3'; diff --git a/src/components/tabs/test/advanced/pages/tab2-page1/tab2-page1.module.ts b/src/components/tabs/test/advanced/pages/tab2-page1/tab2-page1.module.ts index c15c6bd6b7..30530e464b 100644 --- a/src/components/tabs/test/advanced/pages/tab2-page1/tab2-page1.module.ts +++ b/src/components/tabs/test/advanced/pages/tab2-page1/tab2-page1.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { Tab2Page1 } from './tab2-page1'; diff --git a/src/components/tabs/test/advanced/pages/tab2-page2/tab2-page2.module.ts b/src/components/tabs/test/advanced/pages/tab2-page2/tab2-page2.module.ts index 7b2c93f89b..241c8f7ff6 100644 --- a/src/components/tabs/test/advanced/pages/tab2-page2/tab2-page2.module.ts +++ b/src/components/tabs/test/advanced/pages/tab2-page2/tab2-page2.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { Tab2Page2 } from './tab2-page2'; diff --git a/src/components/tabs/test/advanced/pages/tab2-page3/tab2-page3.module.ts b/src/components/tabs/test/advanced/pages/tab2-page3/tab2-page3.module.ts index d410b0d984..ad6413c2b5 100644 --- a/src/components/tabs/test/advanced/pages/tab2-page3/tab2-page3.module.ts +++ b/src/components/tabs/test/advanced/pages/tab2-page3/tab2-page3.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { Tab2Page3 } from './tab2-page3'; diff --git a/src/components/tabs/test/advanced/pages/tab3-page1/tab3-page1.module.ts b/src/components/tabs/test/advanced/pages/tab3-page1/tab3-page1.module.ts index 97048d7085..4acbe7ed27 100644 --- a/src/components/tabs/test/advanced/pages/tab3-page1/tab3-page1.module.ts +++ b/src/components/tabs/test/advanced/pages/tab3-page1/tab3-page1.module.ts @@ -1,5 +1,5 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { Tab3Page1 } from './tab3-page1'; diff --git a/src/components/tabs/test/advanced/pages/tabs-page/tabs.module.ts b/src/components/tabs/test/advanced/pages/tabs-page/tabs.module.ts index 9fe2780baa..eda9e1c8e0 100644 --- a/src/components/tabs/test/advanced/pages/tabs-page/tabs.module.ts +++ b/src/components/tabs/test/advanced/pages/tabs-page/tabs.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { TabsPage } from './tabs'; diff --git a/src/components/tabs/test/badges/app/app.module.ts b/src/components/tabs/test/badges/app/app.module.ts index f69e17776f..a83ca7e2d6 100644 --- a/src/components/tabs/test/badges/app/app.module.ts +++ b/src/components/tabs/test/badges/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/tabs/test/badges/pages/page-one/page-one.module.ts b/src/components/tabs/test/badges/pages/page-one/page-one.module.ts index e132ff2173..b19e0b654f 100644 --- a/src/components/tabs/test/badges/pages/page-one/page-one.module.ts +++ b/src/components/tabs/test/badges/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; diff --git a/src/components/tabs/test/basic/app/app.module.ts b/src/components/tabs/test/basic/app/app.module.ts index 2b3ff55169..6ff6592a7d 100644 --- a/src/components/tabs/test/basic/app/app.module.ts +++ b/src/components/tabs/test/basic/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/tabs/test/basic/components/modal/modal.module.ts b/src/components/tabs/test/basic/components/modal/modal.module.ts index 8f227cd1e6..a599388610 100644 --- a/src/components/tabs/test/basic/components/modal/modal.module.ts +++ b/src/components/tabs/test/basic/components/modal/modal.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { MyModal } from './modal'; diff --git a/src/components/tabs/test/basic/pages/modal-page/modal-page.module.ts b/src/components/tabs/test/basic/pages/modal-page/modal-page.module.ts index 2c06bafc99..b9159304af 100644 --- a/src/components/tabs/test/basic/pages/modal-page/modal-page.module.ts +++ b/src/components/tabs/test/basic/pages/modal-page/modal-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { ModalPage } from './modal-page'; diff --git a/src/components/tabs/test/basic/pages/tab-one/tab-one.module.ts b/src/components/tabs/test/basic/pages/tab-one/tab-one.module.ts index a5bd78ea3b..3e95f6e6c6 100644 --- a/src/components/tabs/test/basic/pages/tab-one/tab-one.module.ts +++ b/src/components/tabs/test/basic/pages/tab-one/tab-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { TabOne } from './tab-one'; diff --git a/src/components/tabs/test/basic/pages/tab-three/tab-three.module.ts b/src/components/tabs/test/basic/pages/tab-three/tab-three.module.ts index 3e41923cc3..4e60501603 100644 --- a/src/components/tabs/test/basic/pages/tab-three/tab-three.module.ts +++ b/src/components/tabs/test/basic/pages/tab-three/tab-three.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { TabThree } from './tab-three'; diff --git a/src/components/tabs/test/basic/pages/tab-two/tab-two.module.ts b/src/components/tabs/test/basic/pages/tab-two/tab-two.module.ts index 48fd5413f4..8d0fd7428b 100644 --- a/src/components/tabs/test/basic/pages/tab-two/tab-two.module.ts +++ b/src/components/tabs/test/basic/pages/tab-two/tab-two.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { TabTwo } from './tab-two'; diff --git a/src/components/tabs/test/basic/pages/tabs-page/tabs-page.module.ts b/src/components/tabs/test/basic/pages/tabs-page/tabs-page.module.ts index 864817baa2..1f9339409a 100644 --- a/src/components/tabs/test/basic/pages/tabs-page/tabs-page.module.ts +++ b/src/components/tabs/test/basic/pages/tabs-page/tabs-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { TabsPage } from './tabs-page'; diff --git a/src/components/tabs/test/colors/app/app.module.ts b/src/components/tabs/test/colors/app/app.module.ts index f69e17776f..a83ca7e2d6 100644 --- a/src/components/tabs/test/colors/app/app.module.ts +++ b/src/components/tabs/test/colors/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/tabs/test/colors/pages/page-one/page-one.module.ts b/src/components/tabs/test/colors/pages/page-one/page-one.module.ts index e132ff2173..b19e0b654f 100644 --- a/src/components/tabs/test/colors/pages/page-one/page-one.module.ts +++ b/src/components/tabs/test/colors/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { PageOne } from './page-one'; diff --git a/src/components/tabs/test/events/app.module.ts b/src/components/tabs/test/events/app.module.ts index d92cf9f378..d299e0a905 100644 --- a/src/components/tabs/test/events/app.module.ts +++ b/src/components/tabs/test/events/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule, Events } from '../../../..'; diff --git a/src/components/tabs/test/ghost/app.module.ts b/src/components/tabs/test/ghost/app.module.ts index 5f24b56683..982e0aa259 100644 --- a/src/components/tabs/test/ghost/app.module.ts +++ b/src/components/tabs/test/ghost/app.module.ts @@ -1,4 +1,4 @@ -import { Component, QueryList, ViewChildren, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, QueryList, ViewChildren, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule, Tab } from '../../../..'; diff --git a/src/components/tabs/test/lifecyles/app.module.ts b/src/components/tabs/test/lifecyles/app.module.ts index d3a779988f..41341d8263 100644 --- a/src/components/tabs/test/lifecyles/app.module.ts +++ b/src/components/tabs/test/lifecyles/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule, NavController, AlertController } from '../../../..'; diff --git a/src/components/tabs/test/tab-bar-scenarios/app/app.module.ts b/src/components/tabs/test/tab-bar-scenarios/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/tabs/test/tab-bar-scenarios/app/app.module.ts +++ b/src/components/tabs/test/tab-bar-scenarios/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/tabs/test/tab-bar-scenarios/pages/root-page/root-page.module.ts b/src/components/tabs/test/tab-bar-scenarios/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/tabs/test/tab-bar-scenarios/pages/root-page/root-page.module.ts +++ b/src/components/tabs/test/tab-bar-scenarios/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/tabs/test/top/app.module.ts b/src/components/tabs/test/top/app.module.ts index e3aa869e1e..bd9deccf78 100644 --- a/src/components/tabs/test/top/app.module.ts +++ b/src/components/tabs/test/top/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/toast/test/basic/app/app.module.ts b/src/components/toast/test/basic/app/app.module.ts index 0d9888227b..0575dce36d 100644 --- a/src/components/toast/test/basic/app/app.module.ts +++ b/src/components/toast/test/basic/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/toast/test/basic/pages/page-one/page-one.module.ts b/src/components/toast/test/basic/pages/page-one/page-one.module.ts index d07d0d7628..a734abdd64 100644 --- a/src/components/toast/test/basic/pages/page-one/page-one.module.ts +++ b/src/components/toast/test/basic/pages/page-one/page-one.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../../'; import { PageOne } from './page-one'; diff --git a/src/components/toast/test/basic/pages/page-two/page-two.module.ts b/src/components/toast/test/basic/pages/page-two/page-two.module.ts index 21042bc362..54803ce7c3 100644 --- a/src/components/toast/test/basic/pages/page-two/page-two.module.ts +++ b/src/components/toast/test/basic/pages/page-two/page-two.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../../'; import { PageTwo } from './page-two'; diff --git a/src/components/toggle/test/basic/app/app.module.ts b/src/components/toggle/test/basic/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/toggle/test/basic/app/app.module.ts +++ b/src/components/toggle/test/basic/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/toggle/test/basic/pages/root-page/root-page.module.ts b/src/components/toggle/test/basic/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/toggle/test/basic/pages/root-page/root-page.module.ts +++ b/src/components/toggle/test/basic/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/toolbar/test/basic/app/app.module.ts b/src/components/toolbar/test/basic/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/toolbar/test/basic/app/app.module.ts +++ b/src/components/toolbar/test/basic/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/toolbar/test/basic/pages/root-page/root-page.module.ts b/src/components/toolbar/test/basic/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/toolbar/test/basic/pages/root-page/root-page.module.ts +++ b/src/components/toolbar/test/basic/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/toolbar/test/colors/app/app.module.ts b/src/components/toolbar/test/colors/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/toolbar/test/colors/app/app.module.ts +++ b/src/components/toolbar/test/colors/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/toolbar/test/colors/pages/root-page/root-page.module.ts b/src/components/toolbar/test/colors/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/toolbar/test/colors/pages/root-page/root-page.module.ts +++ b/src/components/toolbar/test/colors/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/toolbar/test/scenarios/app/app.module.ts b/src/components/toolbar/test/scenarios/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/toolbar/test/scenarios/app/app.module.ts +++ b/src/components/toolbar/test/scenarios/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/toolbar/test/scenarios/pages/root-page/root-page.module.ts b/src/components/toolbar/test/scenarios/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/toolbar/test/scenarios/pages/root-page/root-page.module.ts +++ b/src/components/toolbar/test/scenarios/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/typography/test/basic/app/app.module.ts b/src/components/typography/test/basic/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/typography/test/basic/app/app.module.ts +++ b/src/components/typography/test/basic/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/typography/test/basic/pages/root-page/root-page.module.ts b/src/components/typography/test/basic/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/typography/test/basic/pages/root-page/root-page.module.ts +++ b/src/components/typography/test/basic/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/virtual-scroll/test/basic/app.module.ts b/src/components/virtual-scroll/test/basic/app.module.ts index 723538ac4a..414fd144aa 100644 --- a/src/components/virtual-scroll/test/basic/app.module.ts +++ b/src/components/virtual-scroll/test/basic/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule, NavController, Platform } from '../../../..'; diff --git a/src/components/virtual-scroll/test/cards/app.module.ts b/src/components/virtual-scroll/test/cards/app.module.ts index 7c6d8e6a4b..45773efb36 100644 --- a/src/components/virtual-scroll/test/cards/app.module.ts +++ b/src/components/virtual-scroll/test/cards/app.module.ts @@ -1,4 +1,4 @@ -import { Component, ViewEncapsulation, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, ViewEncapsulation, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/virtual-scroll/test/image-gallery/app.module.ts b/src/components/virtual-scroll/test/image-gallery/app.module.ts index 27a9427409..4ca8969a4a 100644 --- a/src/components/virtual-scroll/test/image-gallery/app.module.ts +++ b/src/components/virtual-scroll/test/image-gallery/app.module.ts @@ -1,4 +1,4 @@ -import { Component, ViewEncapsulation, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, ViewEncapsulation, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/virtual-scroll/test/infinite-scroll/app.module.ts b/src/components/virtual-scroll/test/infinite-scroll/app.module.ts index cb55a32579..0cdf45c2b5 100644 --- a/src/components/virtual-scroll/test/infinite-scroll/app.module.ts +++ b/src/components/virtual-scroll/test/infinite-scroll/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/virtual-scroll/test/list/app.module.ts b/src/components/virtual-scroll/test/list/app.module.ts index 7120b45a08..eb24bcfe8c 100644 --- a/src/components/virtual-scroll/test/list/app.module.ts +++ b/src/components/virtual-scroll/test/list/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..'; diff --git a/src/components/virtual-scroll/test/media/app/app.module.ts b/src/components/virtual-scroll/test/media/app/app.module.ts index 35f89d67d5..71052d30de 100644 --- a/src/components/virtual-scroll/test/media/app/app.module.ts +++ b/src/components/virtual-scroll/test/media/app/app.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../../..'; diff --git a/src/components/virtual-scroll/test/media/pages/root-page/root-page.module.ts b/src/components/virtual-scroll/test/media/pages/root-page/root-page.module.ts index 66ac3223e7..a733cb4529 100644 --- a/src/components/virtual-scroll/test/media/pages/root-page/root-page.module.ts +++ b/src/components/virtual-scroll/test/media/pages/root-page/root-page.module.ts @@ -1,4 +1,4 @@ -import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { IonicPageModule } from '../../../../../..'; import { RootPage } from './root-page'; diff --git a/src/components/virtual-scroll/test/sliding-item/app.module.ts b/src/components/virtual-scroll/test/sliding-item/app.module.ts index 8044c32910..d0964e17af 100644 --- a/src/components/virtual-scroll/test/sliding-item/app.module.ts +++ b/src/components/virtual-scroll/test/sliding-item/app.module.ts @@ -1,4 +1,4 @@ -import { Component, ViewChild, ElementRef, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, ViewChild, ElementRef, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule, Platform } from '../../../..'; diff --git a/src/components/virtual-scroll/test/variable-size/app.module.ts b/src/components/virtual-scroll/test/variable-size/app.module.ts index 9ae473e2e8..79ffb4d585 100644 --- a/src/components/virtual-scroll/test/variable-size/app.module.ts +++ b/src/components/virtual-scroll/test/variable-size/app.module.ts @@ -1,4 +1,4 @@ -import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..';