@@ -4,11 +4,21 @@ import {
4
4
NgModuleFactoryLoader
5
5
} from "@angular/core" ;
6
6
7
- import { NativeScriptModule } from "nativescript-angular/nativescript.module" ;
8
- import { NativeScriptAnimationsModule } from "nativescript-angular/animations" ;
9
- import { NSModuleFactoryLoader } from "nativescript-angular/router" ;
7
+ import { NativeScriptModule } from "@nativescript/angular" ;
8
+ import { NativeScriptAnimationsModule } from "@nativescript/angular/animations" ;
9
+ import { NSModuleFactoryLoader } from "@nativescript/angular/router" ;
10
+
11
+ import { AppRoutingModule } from "./app.routing" ;
12
+ import { AnimationsListComponent } from "./animations-list.component" ;
13
+ import { AnimationBuilderComponent } from "./animation-builder.component" ;
14
+ import { ExternalAnimationComponent } from "./external-animation.component" ;
15
+ import { FadeInOutComponent } from "./fade-in-out.component" ;
16
+ import { OptionsComponent } from "./options.component" ;
17
+ import { OptionsDefaultComponent } from "./options-default.component" ;
18
+ import { AnimateChildComponent } from "./animate-child.component" ;
19
+ import { SelectorAllComponent } from "./selector-all.component" ;
20
+ import { QueryStaggerComponent } from "./query-stagger.component" ;
10
21
11
- import { AppRoutingModule , routedComponents } from "./app.routing" ;
12
22
import { AppComponent } from "./app.component" ;
13
23
14
24
@NgModule ( {
@@ -17,7 +27,15 @@ import { AppComponent } from "./app.component";
17
27
] ,
18
28
declarations : [
19
29
AppComponent ,
20
- ...routedComponents ,
30
+ AnimationsListComponent ,
31
+ AnimationBuilderComponent ,
32
+ ExternalAnimationComponent ,
33
+ FadeInOutComponent ,
34
+ OptionsComponent ,
35
+ OptionsDefaultComponent ,
36
+ AnimateChildComponent ,
37
+ SelectorAllComponent ,
38
+ QueryStaggerComponent ,
21
39
] ,
22
40
imports : [
23
41
NativeScriptModule ,
0 commit comments