Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ed16c12

Browse files
committedOct 17, 2019
initial commit
1 parent e1b9328 commit ed16c12

Some content is hidden

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

56 files changed

+678
-64
lines changed
 

‎e2e/modal-navigation-ng/app/app.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import { Component, ViewContainerRef } from "@angular/core";
22
import { Router, NavigationEnd } from "@angular/router";
3-
import { NSLocationStrategy } from "nativescript-angular/router/ns-location-strategy";
3+
// import { NSLocationStrategy } from "@nativescript/angular/router/ns-location-strategy";
44

55
import { ViewContainerRefService } from "./shared/ViewContainerRefService";
66

77
import { AppModule } from "./app.module";
8-
import { ModalDialogOptions, ModalDialogService } from "nativescript-angular";
8+
import { ModalDialogOptions, ModalDialogService, NSLocationStrategy } from "@nativescript/angular";
99
import { ModalViewComponent } from "./modal-shared/modal-view.component";
1010

1111
@Component({

‎e2e/modal-navigation-ng/app/app.module.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { NgModule, NO_ERRORS_SCHEMA } from "@angular/core";
2-
import { NativeScriptModule } from "nativescript-angular/nativescript.module";
2+
import { NativeScriptModule } from "@nativescript/angular/nativescript.module";
33
import { AppRoutingModule } from "./app.routing";
44
import { AppComponent } from "./app.component";
55
import { NamedRouterComponent } from "./named-router.component";
@@ -20,8 +20,7 @@ import { ModalSharedSecondComponent } from "./modal-shared/modal-shared-second.c
2020
import { ViewContainerRefService } from "./shared/ViewContainerRefService";
2121

2222
import { enable as traceEnable, addCategories } from "tns-core-modules/trace";
23-
import { routerTraceCategory } from "nativescript-angular/trace";
24-
import { NativeScriptPlatformRef } from "nativescript-angular";
23+
import { NativeScriptPlatformRef, routerTraceCategory } from "@nativescript/angular";
2524

2625
addCategories(routerTraceCategory);
2726
traceEnable();

0 commit comments

Comments
 (0)
Please sign in to comment.