1
1
// Global state (used for theming)
2
2
import { AppState } from './app.global' ;
3
3
4
- // Home Page
5
- import { HomePage } from '../pages/_home/home' ;
6
-
7
- import { IonicOfficialComponentsPage } from '../pages/ionic-official-components/ionic-official-components' ;
8
-
9
- // Theme
10
- import { ThemingPage } from '../pages/theming/theming' ;
11
-
12
- // Profile list
13
- import { ProfileListPage } from '../pages/profile/profile' ;
14
- import { ProfileOnePage } from '../pages/profile/profile-one/profile-one' ;
15
- import { ProfileTwoPage } from '../pages/profile/profile-two/profile-two' ;
16
- import { ProfileThreePage } from '../pages/profile/profile-three/profile-three' ;
17
- import { ProfileFourPage } from '../pages/profile/profile-four/profile-four' ;
18
- import { ProfileSettingsPage } from '../pages/profile/profile-settings/profile-settings' ;
19
-
20
- // Lists list
21
- import { ListsPage } from '../pages/list/list' ;
22
- import { SlidingItemPage } from '../pages/list/sliding-item/sliding-item' ;
23
- import { SettingsListPage } from '../pages/list/settings/settings' ;
24
-
25
- // Login
26
- import { LoginListPage } from '../pages/login/login' ;
27
- import { LoginOnePage } from '../pages/login/login-one/login-one' ;
28
- import { LoginInstagramPage } from '../pages/login/login-instagram/login-instagram' ;
29
- import { LoginSliderPage } from '../pages/login/login-slider/login-slider' ;
30
- import { LoginBackgroundVideoPage } from '../pages/login/login-background-video/login-background-video' ;
31
- import { LoginBackgroundSliderPage } from '../pages/login/login-background-slider/login-background-slider' ;
32
-
33
- // Popup Menu list
34
- import { PopupMenuListPage } from '../pages/popup-menu/popup-menu' ;
35
- import { PopupMenuOnePage } from '../pages/popup-menu/popup-menu-one/popup-menu-one' ;
36
-
37
- // Cards list
38
- import { CardListPage } from '../pages/ionic-official-components/card/card' ;
39
- import { CardSocialPage } from '../pages/ionic-official-components/card/card-social/card-social' ;
40
- import { CardImagePage } from '../pages/ionic-official-components/card/card-image/card-image' ;
41
- import { CardMapPage } from '../pages/ionic-official-components/card/card-map/card-map' ;
42
- import { CardBackgroundPage } from '../pages/ionic-official-components/card/card-background/card-background' ;
43
- import { CardBadgePage } from '../pages/ionic-official-components/card/card-badge/card-badge' ;
44
-
45
- // Buttons list
46
- import { ButtonsListPage } from '../pages/ionic-official-components/button/button' ;
47
- import { ButtonStylesPage } from '../pages/ionic-official-components/button/button-styles/button-styles' ;
48
- import { IconButtonsPage } from '../pages/ionic-official-components/button/icon-buttons/icon-buttons' ;
49
- import { ButtonComponentsPage } from '../pages/ionic-official-components/button/button-components/button-components' ;
50
-
51
- // Modals
52
- import { PopupModalsPage } from '../pages/popup-modal/popup-modal' ;
53
- import { HintModalPage } from '../pages/popup-modal/hint-modal/hint-modal' ;
54
- import { SignupModalPage } from '../pages/popup-modal/signup-modal/signup-modal' ;
55
- import { WalkthroughModalPage } from '../pages/popup-modal/walkthrough-modal/walkthrough-modal' ;
56
-
57
- // Alerts
58
- import { AlertsPage } from '../pages/ionic-official-components/alert/alert' ;
59
-
60
4
// Slides
61
5
import { SlidesPage } from '../pages/slide/slide' ;
62
6
import { SlideTransitionsPage } from '../pages/slide/slide-transitions/slide-transitions' ;
@@ -71,32 +15,8 @@ import { SlideFreeModePage } from '../pages/slide/slide-free-mode/slide-free-mod
71
15
import { SlideNestedPage } from '../pages/slide/slide-nested/slide-nested' ;
72
16
import { SlideColorChangingPage } from '../pages/slide/slide-color-changing/slide-color-changing' ;
73
17
74
- // Miscellaneous list
75
- import { MiscellaneousListPage } from '../pages/miscellaneous/miscellaneous' ;
76
- import { ClockPage } from '../pages/miscellaneous/clock/clock' ;
77
- import { CountdownPage } from '../pages/miscellaneous/countdown/countdown' ;
78
- import { TinderCardsPage } from '../pages/miscellaneous/tinder-cards/tinder-cards' ;
79
- import { TestimonialsPage } from '../pages/miscellaneous/testimonials/testimonials' ;
80
- import { CurrencyConverterPage } from '../pages/miscellaneous/currency-converter/currency-converter' ;
81
- import { WeatherPage } from '../pages/miscellaneous/weather/weather' ;
82
- import { MessagesPage } from '../pages/miscellaneous/chat/messages/messages' ;
83
- import { ChatsPage } from '../pages/miscellaneous/chat/chats' ;
84
- import { BlogPostPage } from '../pages/miscellaneous/blog-post/blog-post' ;
85
- import { ChartsPage } from '../pages/miscellaneous/charts/charts' ;
86
- import { ExpandableHeaderPage } from '../pages/miscellaneous/expandable-header/expandable-header' ;
87
- import { FlashCardPage } from '../pages/miscellaneous/flash-card/flash-card' ;
88
- import { SideMenuPage } from '../pages/side-menu/side-menu' ;
89
- import { AutosizingTextarea } from '../pages/miscellaneous/autosizing-textarea/autosizing-textarea' ;
90
-
91
- // Ionic Native Features
92
- import { IonicNativePage } from '../pages/ionic-native/ionic-native' ;
93
- import { CreditCardScanPage } from '../pages/ionic-native/credit-card-scan/credit-card-scan' ;
94
- import { RuntimePermissionsPage } from '../pages/ionic-native/runtime-permissions/runtime-permissions' ;
95
- import { BarcodescannerPage } from '../pages/ionic-native/barcodescanner/barcodescanner' ;
96
- import { GetImagePage } from '../pages/ionic-native/get-image/get-image' ;
97
-
98
18
// Providers
99
- import { WeatherService } from '../pages/miscellaneous/weather/weather.service' ;
19
+ // import { WeatherService } from '../pages/miscellaneous/weather/weather.service';
100
20
import { ToastService } from '../providers/util/toast.service' ;
101
21
import { AlertService } from '../providers/util/alert.service' ;
102
22
import { CameraProvider } from '../providers/util/camera.provider' ;
@@ -140,85 +60,6 @@ export const Modules = [
140
60
]
141
61
142
62
export const Pages = [
143
- // Home
144
- HomePage ,
145
-
146
- // Theming
147
- ThemingPage ,
148
-
149
- // Ionic Official Components
150
- IonicOfficialComponentsPage ,
151
-
152
- IonicNativePage ,
153
-
154
- // Buttons
155
- ButtonsListPage ,
156
- IconButtonsPage ,
157
- ButtonComponentsPage ,
158
- ButtonStylesPage ,
159
-
160
- // Lists
161
- ListsPage ,
162
- SettingsListPage ,
163
- SlidingItemPage ,
164
-
165
- // Alerts
166
- AlertsPage ,
167
-
168
- // Cards
169
- CardListPage ,
170
- CardBackgroundPage ,
171
- CardMapPage ,
172
- CardImagePage ,
173
- CardSocialPage ,
174
- CardBadgePage ,
175
-
176
- // Profile
177
- ProfileListPage ,
178
- ProfileOnePage ,
179
- ProfileTwoPage ,
180
- ProfileThreePage ,
181
- ProfileFourPage ,
182
- ProfileSettingsPage ,
183
-
184
- LoginListPage ,
185
- LoginOnePage ,
186
- LoginInstagramPage ,
187
- LoginSliderPage ,
188
- LoginBackgroundVideoPage ,
189
- LoginBackgroundSliderPage ,
190
-
191
- // Side Menu
192
- SideMenuPage ,
193
-
194
- // Miscellaneous
195
- MiscellaneousListPage ,
196
- PopupMenuListPage ,
197
- PopupMenuOnePage ,
198
- TestimonialsPage ,
199
- TinderCardsPage ,
200
- CountdownPage ,
201
- CurrencyConverterPage ,
202
- CreditCardScanPage ,
203
- ClockPage ,
204
- WeatherPage ,
205
- ChatsPage ,
206
- MessagesPage ,
207
- BlogPostPage ,
208
- ChartsPage ,
209
- RuntimePermissionsPage ,
210
- GetImagePage ,
211
- FlashCardPage ,
212
- BarcodescannerPage ,
213
- ExpandableHeaderPage ,
214
- AutosizingTextarea ,
215
-
216
- // Modals
217
- PopupModalsPage ,
218
- SignupModalPage ,
219
- WalkthroughModalPage ,
220
- HintModalPage ,
221
-
222
63
// Slides
223
64
SlidesPage ,
224
65
SlideCarouselPage ,
@@ -232,18 +73,14 @@ export const Pages = [
232
73
SliderListTwoPage ,
233
74
SlideCustomPaginationPage ,
234
75
SlideColorChangingPage ,
235
-
236
- // Popup Menu
237
- PopupMenuListPage ,
238
- PopupMenuOnePage ,
239
76
]
240
77
241
78
export const Pipes = [
242
79
TemperaturePipe , MomentPipe , OrderByPipe , CapitalizePipe , ShortenStringPipe
243
80
]
244
81
245
82
export const Providers = [
246
- WeatherService ,
83
+ // WeatherService,
247
84
AlertService ,
248
85
ToastService ,
249
86
AppState ,
@@ -268,6 +105,5 @@ export const Components = [
268
105
export const Directives = [
269
106
SlidingDrawer ,
270
107
Timer ,
271
- TypingEffect ,
272
108
Autosize ,
273
109
]
0 commit comments