Skip to content

chore: merge release to master #98

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 16, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/template-blank-ng/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"name": "tns-template-blank-ng",
"displayName": "Blank",
"templateType": "App template",
"version": "6.1.2",
"version": "6.1.3",
"description": "Blank template for NativeScript apps using Angular",
"author": "Telerik <support@telerik.com>",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/template-blank-ng/src/app/app-routing.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { NativeScriptRouterModule } from "nativescript-angular/router";

const routes: Routes = [
{ path: "", redirectTo: "/home", pathMatch: "full" },
{ path: "home", loadChildren: () => import(`~/app/home/home.module`).then((m) => m.HomeModule) }
{ path: "home", loadChildren: () => import("~/app/home/home.module").then((m) => m.HomeModule) }
];

@NgModule({
Expand Down
2 changes: 1 addition & 1 deletion packages/template-drawer-navigation-ng/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"name": "tns-template-drawer-navigation-ng",
"displayName": "Navigation Drawer",
"templateType": "App template",
"version": "6.1.2",
"version": "6.1.3",
"description": "Side navigation template",
"author": "Telerik <support@telerik.com>",
"license": "Apache-2.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import { NativeScriptRouterModule } from "nativescript-angular/router";

const routes: Routes = [
{ path: "", redirectTo: "/home", pathMatch: "full" },
{ path: "home", loadChildren: () => import(`~/app/home/home.module`).then(m => m.HomeModule) },
{ path: "browse", loadChildren: () => import(`~/app/browse/browse.module`).then(m => m.BrowseModule) },
{ path: "search", loadChildren: () => import(`~/app/search/search.module`).then(m => m.SearchModule) },
{ path: "featured", loadChildren: () => import(`~/app/featured/featured.module`).then(m => m.FeaturedModule) },
{ path: "settings", loadChildren: () => import(`~/app/settings/settings.module`).then(m => m.SettingsModule) }
{ path: "home", loadChildren: () => import("~/app/home/home.module").then(m => m.HomeModule) },
{ path: "browse", loadChildren: () => import("~/app/browse/browse.module").then(m => m.BrowseModule) },
{ path: "search", loadChildren: () => import("~/app/search/search.module").then(m => m.SearchModule) },
{ path: "featured", loadChildren: () => import("~/app/featured/featured.module").then(m => m.FeaturedModule) },
{ path: "settings", loadChildren: () => import("~/app/settings/settings.module").then(m => m.SettingsModule) }
];

@NgModule({
Expand Down
2 changes: 1 addition & 1 deletion packages/template-health-survey-ng/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"name": "tns-template-health-survey-ng",
"displayName": "Health Survey with Kinvey",
"version": "6.1.2",
"version": "6.1.3",
"description": "Health survey template that saves data to Kinvey database.",
"license": "SEE LICENSE IN <your-license-filename>",
"keywords": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import { LoggedInLazyLoadGuard } from "./logged-in-lazy-load.guard";

const routes: Routes = [
{ path: "", redirectTo: "/consent", pathMatch: "full" },
{ path: "login", loadChildren: () => import(`~/app/login/login.module`).then((m) => m.LoginModule) },
{ path: "consent", loadChildren: () => import(`~/app/consent/consent.module`).then((m) => m.ConsentModule), canLoad: [LoggedInLazyLoadGuard] },
{ path: "survey", loadChildren: () => import(`~/app/survey/survey.module`).then((m) => m.SurveyModule) }
{ path: "login", loadChildren: () => import("~/app/login/login.module").then((m) => m.LoginModule) },
{ path: "consent", loadChildren: () => import("~/app/consent/consent.module").then((m) => m.ConsentModule), canLoad: [LoggedInLazyLoadGuard] },
{ path: "survey", loadChildren: () => import("~/app/survey/survey.module").then((m) => m.SurveyModule) }
];

@NgModule({
Expand Down
2 changes: 1 addition & 1 deletion packages/template-master-detail-kinvey-ng/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"name": "tns-template-master-detail-kinvey-ng",
"displayName": "Master-Detail with Kinvey",
"templateType": "App template",
"version": "6.1.2",
"version": "6.1.3",
"description": "Master-detail interface to display collection of items from Kinvey and inspect and edit selected item properties. ",
"license": "SEE LICENSE IN <your-license-filename>",
"keywords": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { NativeScriptRouterModule } from "nativescript-angular/router";

const routes: Routes = [
{ path: "", redirectTo: "/cars", pathMatch: "full" },
{ path: "cars", loadChildren: () => import(`~/app/cars/cars.module`).then((m) => m.CarsModule) }
{ path: "cars", loadChildren: () => import("~/app/cars/cars.module").then((m) => m.CarsModule) }
];

@NgModule({
Expand Down
2 changes: 1 addition & 1 deletion packages/template-master-detail-ng/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"name": "tns-template-master-detail-ng",
"displayName": "Master-Detail with Firebase",
"templateType": "App template",
"version": "6.1.2",
"version": "6.1.3",
"description": "Master-detail interface to display collection of items from Firebase and inspect and edit selected item properties. ",
"author": "Telerik <support@telerik.com>",
"license": "Apache-2.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { NativeScriptRouterModule } from "nativescript-angular/router";

const routes: Routes = [
{ path: "", redirectTo: "/cars", pathMatch: "full" },
{ path: "cars", loadChildren: () => import(`~/app/cars/cars.module`).then((m) => m.CarsModule) }
{ path: "cars", loadChildren: () => import("~/app/cars/cars.module").then((m) => m.CarsModule) }
];

@NgModule({
Expand Down
2 changes: 1 addition & 1 deletion packages/template-patient-care-ng/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"name": "tns-template-patient-care-ng",
"displayName": "Patient Care with Kinvey",
"version": "6.1.2",
"version": "6.1.3",
"description": "Patient care template that saves data to Kinvey database.",
"license": "SEE LICENSE IN <your-license-filename>",
"keywords": [
Expand Down
4 changes: 2 additions & 2 deletions packages/template-patient-care-ng/src/app-routing.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import { LoggedInLazyLoadGuard } from "./logged-in-lazy-load.guard";

const routes: Routes = [
{ path: "", redirectTo: "/care", pathMatch: "full" },
{ path: "care", loadChildren: () => import(`./care/care.module`).then((m) => m.CareModule), canLoad: [LoggedInLazyLoadGuard] },
{ path: "login", loadChildren: () => import(`./login/login.module`).then((m) => m.LoginModule) }
{ path: "care", loadChildren: () => import("./care/care.module").then((m) => m.CareModule), canLoad: [LoggedInLazyLoadGuard] },
{ path: "login", loadChildren: () => import("./login/login.module").then((m) => m.LoginModule) }
];

@NgModule({
Expand Down
2 changes: 1 addition & 1 deletion packages/template-tab-navigation-ng/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"name": "tns-template-tab-navigation-ng",
"displayName": "Tabs",
"templateType": "App template",
"version": "6.1.2",
"version": "6.1.3",
"description": "Tabbed interface template",
"author": "Telerik <support@telerik.com>",
"license": "Apache-2.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@ const routes: Routes = [
{
path: "home",
component: NSEmptyOutletComponent,
loadChildren: () => import(`~/app/home/home.module`).then((m) => m.HomeModule),
loadChildren: () => import("~/app/home/home.module").then((m) => m.HomeModule),
outlet: "homeTab"
},
{
path: "browse",
component: NSEmptyOutletComponent,
loadChildren: () => import(`~/app/browse/browse.module`).then((m) => m.BrowseModule),
loadChildren: () => import("~/app/browse/browse.module").then((m) => m.BrowseModule),
outlet: "browseTab"
},
{
path: "search",
component: NSEmptyOutletComponent,
loadChildren: () => import(`~/app/search/search.module`).then((m) => m.SearchModule),
loadChildren: () => import("~/app/search/search.module").then((m) => m.SearchModule),
outlet: "searchTab"
}
];
Expand Down