Skip to content

Commit 4de28a6

Browse files
committed
Add modules for all pages
1 parent af732c7 commit 4de28a6

File tree

63 files changed

+1071
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+1071
-0
lines changed

src/pages/_home/home.module.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { HomePage } from './home';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
HomePage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(HomePage),
11+
],
12+
exports: [
13+
HomePage
14+
]
15+
})
16+
17+
export class HomePageModule { };
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { AlertsPagePage } from './alerts-page';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
AlertsPagePage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(AlertsPagePage),
11+
],
12+
exports: [
13+
AlertsPagePage
14+
]
15+
})
16+
17+
export class AlertsPagePageModule { };
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { ButtonComponentsPage } from './button-components';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
ButtonComponentsPage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(ButtonComponentsPage),
11+
],
12+
exports: [
13+
ButtonComponentsPage
14+
]
15+
})
16+
17+
export class ButtonComponentsPageModule { };
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { ButtonsListPage } from './buttons-list';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
ButtonsListPage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(ButtonsListPage),
11+
],
12+
exports: [
13+
ButtonsListPage
14+
]
15+
})
16+
17+
export class ButtonsListPageModule { };
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { CardBackgroundPage } from './card-background';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
CardBackgroundPage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(CardBackgroundPage),
11+
],
12+
exports: [
13+
CardBackgroundPage
14+
]
15+
})
16+
17+
export class CardBackgroundPageModule { };
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { CardBadgePage } from './card-badge';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
CardBadgePage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(CardBadgePage),
11+
],
12+
exports: [
13+
CardBadgePage
14+
]
15+
})
16+
17+
export class CardBadgePageModule { };
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { CardImagePage } from './card-image';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
CardImagePage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(CardImagePage),
11+
],
12+
exports: [
13+
CardImagePage
14+
]
15+
})
16+
17+
export class CardImagePageModule { };
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { CardListPage } from './card-list';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
CardListPage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(CardListPage),
11+
],
12+
exports: [
13+
CardListPage
14+
]
15+
})
16+
17+
export class CardListPageModule { };
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { CardMapPage } from './card-map';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
CardMapPage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(CardMapPage),
11+
],
12+
exports: [
13+
CardMapPage
14+
]
15+
})
16+
17+
export class CardMapPageModule { };
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { CardSocialPage } from './card-social';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
CardSocialPage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(CardSocialPage),
11+
],
12+
exports: [
13+
CardSocialPage
14+
]
15+
})
16+
17+
export class CardSocialPageModule { };
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { IonicOfficialComponentsPage } from './ionic-official-components';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
IonicOfficialComponentsPage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(IonicOfficialComponentsPage),
11+
],
12+
exports: [
13+
IonicOfficialComponentsPage
14+
]
15+
})
16+
17+
export class IonicOfficialComponentsPageModule { };

src/pages/list/lists.module.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { ListsPage } from './lists';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
ListsPage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(ListsPage),
11+
],
12+
exports: [
13+
ListsPage
14+
]
15+
})
16+
17+
export class ListsPageModule { };
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { SettingsPage } from './settings';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
SettingsPage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(SettingsPage),
11+
],
12+
exports: [
13+
SettingsPage
14+
]
15+
})
16+
17+
export class SettingsPageModule { };
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { SlidingItemPage } from './sliding-item';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
SlidingItemPage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(SlidingItemPage),
11+
],
12+
exports: [
13+
SlidingItemPage
14+
]
15+
})
16+
17+
export class SlidingItemPageModule { };
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { LoginBackgroundSliderPage } from './login-background-slider';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
LoginBackgroundSliderPage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(LoginBackgroundSliderPage),
11+
],
12+
exports: [
13+
LoginBackgroundSliderPage
14+
]
15+
})
16+
17+
export class LoginBackgroundSliderPageModule { };
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { LoginBackgroundVideoPage } from './login-background-video';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
LoginBackgroundVideoPage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(LoginBackgroundVideoPage),
11+
],
12+
exports: [
13+
LoginBackgroundVideoPage
14+
]
15+
})
16+
17+
export class LoginBackgroundVideoPageModule { };
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { LoginInstagramPage } from './login-instagram';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
LoginInstagramPage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(LoginInstagramPage),
11+
],
12+
exports: [
13+
LoginInstagramPage
14+
]
15+
})
16+
17+
export class LoginInstagramPageModule { };

src/pages/login/login-list.module.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { LoginListPage } from './login-list';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
LoginListPage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(LoginListPage),
11+
],
12+
exports: [
13+
LoginListPage
14+
]
15+
})
16+
17+
export class LoginListPageModule { };
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { LoginOnePage } from './login-one';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
LoginOnePage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(LoginOnePage),
11+
],
12+
exports: [
13+
LoginOnePage
14+
]
15+
})
16+
17+
export class LoginOnePageModule { };
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { LoginSliderPage } from './login-slider';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
LoginSliderPage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(LoginSliderPage),
11+
],
12+
exports: [
13+
LoginSliderPage
14+
]
15+
})
16+
17+
export class LoginSliderPageModule { };
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { AutosizingTextareaPage } from './autosizing-textarea';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
AutosizingTextareaPage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(AutosizingTextareaPage),
11+
],
12+
exports: [
13+
AutosizingTextareaPage
14+
]
15+
})
16+
17+
export class AutosizingTextareaPageModule { };
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { BarcodeScannerPage } from './barcode-scanner';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
BarcodeScannerPage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(BarcodeScannerPage),
11+
],
12+
exports: [
13+
BarcodeScannerPage
14+
]
15+
})
16+
17+
export class BarcodeScannerPageModule { };

0 commit comments

Comments
 (0)