Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
iJungleboy committed Feb 26, 2021
2 parents 6365f16 + 426b8b8 commit fa52fa9
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 37 deletions.
27 changes: 0 additions & 27 deletions ng/README.md

This file was deleted.

8 changes: 4 additions & 4 deletions ng/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions ng/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-app",
"version": "11.0.0",
"version": "11.01.0",
"config": {
"publish_path_ex": "..",
"publish_path": "\\\\srv-devweb-03\\Projects\\2sxc Apps Dev\\Web\\Portals\\app-template-angular8\\2sxc\\Template-Angular11"
Expand All @@ -12,15 +12,15 @@
"lint": "ng lint",
"e2e": "ng e2e",
"local": "ng serve --public-host localhost:4200 --disable-host-check true --ssl false",
"local-ssl": "ng serve --public-host localhost:4200 --disable-host-check true --ssl true",
"local-ssl": "ng serve --public-host=localhost:4200 --disable-host-check=true --ssl=true",
"watch-api": "node deploy/watch-local-api.js",
"build-to-staging": "ng build --prod && node deploy/publish.js staging",
"build-to-live": "ng build --prod && node deploy/publish.js live"
},
"private": true,
"dependencies": {
"@2sic.com/2sxc-typings": "^11.0.0",
"@2sic.com/dnn-sxc-angular": "^11.0.5",
"@2sic.com/dnn-sxc-angular": "^11.1.0",
"@angular/animations": "~11.2.2",
"@angular/common": "~11.2.2",
"@angular/compiler": "~11.2.2",
Expand Down
5 changes: 2 additions & 3 deletions ng/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import { AppRoutingModule } from "./app-routing.module";
import { AppComponent } from "./app.component";
import { TitleComponent } from "./layout/title.component";
import { NavigationComponent } from "./layout/navigation.component";
import { ExamplesModule } from './examples/examples.module';

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

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

// 2sxc Module #StepBootstrap
DnnSxcRootModule, // this is important in the app-root, as it ensures that context is shared in sub-modules
Expand Down
5 changes: 5 additions & 0 deletions ng/src/app/examples/team/person/person.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,8 @@ img {
border-radius: 50%;
width: 50px;
}

div:hover {
color: #0088F4;
text-decoration: underline;
}

0 comments on commit fa52fa9

Please sign in to comment.