Skip to content

Commit fa52fa9

Browse files
committed
2 parents 6365f16 + 426b8b8 commit fa52fa9

5 files changed

Lines changed: 14 additions & 37 deletions

File tree

ng/README.md

Lines changed: 0 additions & 27 deletions
This file was deleted.

ng/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ng/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ng-app",
3-
"version": "11.0.0",
3+
"version": "11.01.0",
44
"config": {
55
"publish_path_ex": "..",
66
"publish_path": "\\\\srv-devweb-03\\Projects\\2sxc Apps Dev\\Web\\Portals\\app-template-angular8\\2sxc\\Template-Angular11"
@@ -12,15 +12,15 @@
1212
"lint": "ng lint",
1313
"e2e": "ng e2e",
1414
"local": "ng serve --public-host localhost:4200 --disable-host-check true --ssl false",
15-
"local-ssl": "ng serve --public-host localhost:4200 --disable-host-check true --ssl true",
15+
"local-ssl": "ng serve --public-host=localhost:4200 --disable-host-check=true --ssl=true",
1616
"watch-api": "node deploy/watch-local-api.js",
1717
"build-to-staging": "ng build --prod && node deploy/publish.js staging",
1818
"build-to-live": "ng build --prod && node deploy/publish.js live"
1919
},
2020
"private": true,
2121
"dependencies": {
2222
"@2sic.com/2sxc-typings": "^11.0.0",
23-
"@2sic.com/dnn-sxc-angular": "^11.0.5",
23+
"@2sic.com/dnn-sxc-angular": "^11.1.0",
2424
"@angular/animations": "~11.2.2",
2525
"@angular/common": "~11.2.2",
2626
"@angular/compiler": "~11.2.2",

ng/src/app/app.module.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import { AppRoutingModule } from "./app-routing.module";
1414
import { AppComponent } from "./app.component";
1515
import { TitleComponent } from "./layout/title.component";
1616
import { NavigationComponent } from "./layout/navigation.component";
17-
import { ExamplesModule } from './examples/examples.module';
1817

1918
@NgModule({
2019
declarations: [
@@ -27,8 +26,8 @@ import { ExamplesModule } from './examples/examples.module';
2726
AppRoutingModule, // this contains the application link-structure
2827
HttpClientModule, // this enables web-api calls and should only be included in the App root
2928

30-
// Examples
31-
ExamplesModule,
29+
// Impontant: don't load sub-modules here if you want lazy-loading to work
30+
// ExamplesModule, // not added here, as it should lazy-load
3231

3332
// 2sxc Module #StepBootstrap
3433
DnnSxcRootModule, // this is important in the app-root, as it ensures that context is shared in sub-modules

ng/src/app/examples/team/person/person.component.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,8 @@ img {
22
border-radius: 50%;
33
width: 50px;
44
}
5+
6+
div:hover {
7+
color: #0088F4;
8+
text-decoration: underline;
9+
}

0 commit comments

Comments
 (0)