├── .gitignore
├── Demos
├── 00 HelloWorld
│ └── game-catalog
│ │ ├── .angular-cli.json
│ │ ├── .editorconfig
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── e2e
│ │ ├── app.e2e-spec.ts
│ │ ├── app.po.ts
│ │ └── tsconfig.e2e.json
│ │ ├── karma.conf.js
│ │ ├── package.json
│ │ ├── protractor.conf.js
│ │ ├── src
│ │ ├── app
│ │ │ ├── app.component.css
│ │ │ ├── app.component.html
│ │ │ ├── app.component.spec.ts
│ │ │ ├── app.component.ts
│ │ │ └── app.module.ts
│ │ ├── assets
│ │ │ └── .gitkeep
│ │ ├── environments
│ │ │ ├── environment.prod.ts
│ │ │ └── environment.ts
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── main.ts
│ │ ├── polyfills.ts
│ │ ├── styles.css
│ │ ├── test.ts
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.spec.json
│ │ └── typings.d.ts
│ │ ├── tsconfig.json
│ │ └── tslint.json
├── 01 Displaying Data
│ └── game-catalog
│ │ ├── .angular-cli.json
│ │ ├── .editorconfig
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── e2e
│ │ ├── app.e2e-spec.ts
│ │ ├── app.po.ts
│ │ └── tsconfig.e2e.json
│ │ ├── karma.conf.js
│ │ ├── package.json
│ │ ├── protractor.conf.js
│ │ ├── src
│ │ ├── app
│ │ │ ├── app.component.css
│ │ │ ├── app.component.html
│ │ │ ├── app.component.spec.ts
│ │ │ ├── app.component.ts
│ │ │ ├── app.module.ts
│ │ │ └── models
│ │ │ │ └── game.model.ts
│ │ ├── assets
│ │ │ └── .gitkeep
│ │ ├── environments
│ │ │ ├── environment.prod.ts
│ │ │ └── environment.ts
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── main.ts
│ │ ├── polyfills.ts
│ │ ├── styles.css
│ │ ├── test.ts
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.spec.json
│ │ └── typings.d.ts
│ │ ├── tsconfig.json
│ │ └── tslint.json
├── 02 Displaying Collections
│ └── game-catalog
│ │ ├── .angular-cli.json
│ │ ├── .editorconfig
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── e2e
│ │ ├── app.e2e-spec.ts
│ │ ├── app.po.ts
│ │ └── tsconfig.e2e.json
│ │ ├── karma.conf.js
│ │ ├── package.json
│ │ ├── protractor.conf.js
│ │ ├── src
│ │ ├── app
│ │ │ ├── app.component.css
│ │ │ ├── app.component.html
│ │ │ ├── app.component.spec.ts
│ │ │ ├── app.component.ts
│ │ │ ├── app.module.ts
│ │ │ ├── game
│ │ │ │ ├── game-summary.component.html
│ │ │ │ └── game-summary.component.ts
│ │ │ └── models
│ │ │ │ └── game.model.ts
│ │ ├── assets
│ │ │ └── .gitkeep
│ │ ├── environments
│ │ │ ├── environment.prod.ts
│ │ │ └── environment.ts
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── main.ts
│ │ ├── polyfills.ts
│ │ ├── styles.css
│ │ ├── test.ts
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.spec.json
│ │ └── typings.d.ts
│ │ ├── tsconfig.json
│ │ └── tslint.json
├── 03 User Interactions
│ └── game-catalog
│ │ ├── .angular-cli.json
│ │ ├── .editorconfig
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── e2e
│ │ ├── app.e2e-spec.ts
│ │ ├── app.po.ts
│ │ └── tsconfig.e2e.json
│ │ ├── karma.conf.js
│ │ ├── package.json
│ │ ├── protractor.conf.js
│ │ ├── src
│ │ ├── app
│ │ │ ├── app.component.css
│ │ │ ├── app.component.html
│ │ │ ├── app.component.spec.ts
│ │ │ ├── app.component.ts
│ │ │ ├── app.module.ts
│ │ │ ├── game-sellers
│ │ │ │ ├── game-sellers.component.html
│ │ │ │ └── game-sellers.component.ts
│ │ │ ├── game
│ │ │ │ ├── game-summary.component.html
│ │ │ │ └── game-summary.component.ts
│ │ │ ├── models
│ │ │ │ ├── game.model.ts
│ │ │ │ └── seller.model.ts
│ │ │ └── services
│ │ │ │ └── gameStock.service.ts
│ │ ├── assets
│ │ │ └── .gitkeep
│ │ ├── environments
│ │ │ ├── environment.prod.ts
│ │ │ └── environment.ts
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── main.ts
│ │ ├── polyfills.ts
│ │ ├── styles.css
│ │ ├── test.ts
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.spec.json
│ │ └── typings.d.ts
│ │ ├── tsconfig.json
│ │ └── tslint.json
├── 04 Template Form
│ └── game-catalog
│ │ ├── .angular-cli.json
│ │ ├── .editorconfig
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── e2e
│ │ ├── app.e2e-spec.ts
│ │ ├── app.po.ts
│ │ └── tsconfig.e2e.json
│ │ ├── karma.conf.js
│ │ ├── package.json
│ │ ├── protractor.conf.js
│ │ ├── src
│ │ ├── app
│ │ │ ├── app.component.css
│ │ │ ├── app.component.html
│ │ │ ├── app.component.spec.ts
│ │ │ ├── app.component.ts
│ │ │ ├── app.module.ts
│ │ │ ├── game-sellers
│ │ │ │ ├── game-sellers.component.html
│ │ │ │ └── game-sellers.component.ts
│ │ │ ├── game
│ │ │ │ ├── create-game
│ │ │ │ │ ├── create-game.component.html
│ │ │ │ │ └── create-game.component.ts
│ │ │ │ ├── game-summary.component.html
│ │ │ │ └── game-summary.component.ts
│ │ │ ├── models
│ │ │ │ ├── game.model.ts
│ │ │ │ └── seller.model.ts
│ │ │ └── services
│ │ │ │ └── gameStock.service.ts
│ │ ├── assets
│ │ │ └── .gitkeep
│ │ ├── environments
│ │ │ ├── environment.prod.ts
│ │ │ └── environment.ts
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── main.ts
│ │ ├── polyfills.ts
│ │ ├── styles.css
│ │ ├── test.ts
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.spec.json
│ │ └── typings.d.ts
│ │ ├── tsconfig.json
│ │ └── tslint.json
├── 05 Registering Routes
│ └── game-catalog
│ │ ├── .angular-cli.json
│ │ ├── .editorconfig
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── e2e
│ │ ├── app.e2e-spec.ts
│ │ ├── app.po.ts
│ │ └── tsconfig.e2e.json
│ │ ├── karma.conf.js
│ │ ├── package.json
│ │ ├── protractor.conf.js
│ │ ├── src
│ │ ├── app
│ │ │ ├── app.component.css
│ │ │ ├── app.component.html
│ │ │ ├── app.component.spec.ts
│ │ │ ├── app.component.ts
│ │ │ ├── app.module.ts
│ │ │ ├── app.routes.ts
│ │ │ ├── game-sellers
│ │ │ │ ├── game-sellers.component.html
│ │ │ │ └── game-sellers.component.ts
│ │ │ ├── game
│ │ │ │ ├── create-game
│ │ │ │ │ ├── create-game.component.html
│ │ │ │ │ └── create-game.component.ts
│ │ │ │ ├── game-list
│ │ │ │ │ ├── game-list.component.html
│ │ │ │ │ └── game-list.component.ts
│ │ │ │ ├── game-summary.component.html
│ │ │ │ └── game-summary.component.ts
│ │ │ ├── models
│ │ │ │ ├── game.model.ts
│ │ │ │ └── seller.model.ts
│ │ │ └── services
│ │ │ │ └── gameStock.service.ts
│ │ ├── assets
│ │ │ └── .gitkeep
│ │ ├── environments
│ │ │ ├── environment.prod.ts
│ │ │ └── environment.ts
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── main.ts
│ │ ├── polyfills.ts
│ │ ├── styles.css
│ │ ├── test.ts
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.spec.json
│ │ └── typings.d.ts
│ │ ├── tsconfig.json
│ │ └── tslint.json
├── 06 Reactive Form
│ └── game-catalog
│ │ ├── .angular-cli.json
│ │ ├── .editorconfig
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── e2e
│ │ ├── app.e2e-spec.ts
│ │ ├── app.po.ts
│ │ └── tsconfig.e2e.json
│ │ ├── karma.conf.js
│ │ ├── package.json
│ │ ├── protractor.conf.js
│ │ ├── src
│ │ ├── app
│ │ │ ├── app.component.css
│ │ │ ├── app.component.html
│ │ │ ├── app.component.spec.ts
│ │ │ ├── app.component.ts
│ │ │ ├── app.module.ts
│ │ │ ├── app.routes.ts
│ │ │ ├── game-sellers
│ │ │ │ ├── game-sellers.component.html
│ │ │ │ └── game-sellers.component.ts
│ │ │ ├── game
│ │ │ │ ├── create-game
│ │ │ │ │ ├── create-game.component.html
│ │ │ │ │ └── create-game.component.ts
│ │ │ │ ├── game-list
│ │ │ │ │ ├── game-list.component.html
│ │ │ │ │ └── game-list.component.ts
│ │ │ │ ├── game-summary.component.html
│ │ │ │ └── game-summary.component.ts
│ │ │ ├── models
│ │ │ │ ├── game.model.ts
│ │ │ │ ├── seller.model.ts
│ │ │ │ ├── sellerCategory.model.ts
│ │ │ │ └── tax.model.ts
│ │ │ ├── seller
│ │ │ │ └── create-seller
│ │ │ │ │ ├── create-seller.component.html
│ │ │ │ │ └── create-seller.component.ts
│ │ │ └── services
│ │ │ │ ├── gameStock.service.ts
│ │ │ │ └── sellerCategory.service.ts
│ │ ├── assets
│ │ │ └── .gitkeep
│ │ ├── environments
│ │ │ ├── environment.prod.ts
│ │ │ └── environment.ts
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── main.ts
│ │ ├── polyfills.ts
│ │ ├── styles.css
│ │ ├── test.ts
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.spec.json
│ │ └── typings.d.ts
│ │ ├── tsconfig.json
│ │ └── tslint.json
├── 07 Navigation
│ └── game-catalog
│ │ ├── .angular-cli.json
│ │ ├── .editorconfig
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── e2e
│ │ ├── app.e2e-spec.ts
│ │ ├── app.po.ts
│ │ └── tsconfig.e2e.json
│ │ ├── karma.conf.js
│ │ ├── package.json
│ │ ├── protractor.conf.js
│ │ ├── src
│ │ ├── app
│ │ │ ├── app.component.css
│ │ │ ├── app.component.html
│ │ │ ├── app.component.spec.ts
│ │ │ ├── app.component.ts
│ │ │ ├── app.module.ts
│ │ │ ├── app.routes.ts
│ │ │ ├── game-sellers
│ │ │ │ ├── game-sellers.component.html
│ │ │ │ └── game-sellers.component.ts
│ │ │ ├── game
│ │ │ │ ├── create-game
│ │ │ │ │ ├── create-game.component.html
│ │ │ │ │ └── create-game.component.ts
│ │ │ │ ├── game-list
│ │ │ │ │ ├── game-list.component.html
│ │ │ │ │ └── game-list.component.ts
│ │ │ │ ├── game-summary.component.html
│ │ │ │ └── game-summary.component.ts
│ │ │ ├── models
│ │ │ │ ├── game.model.ts
│ │ │ │ ├── seller.model.ts
│ │ │ │ ├── sellerCategory.model.ts
│ │ │ │ └── tax.model.ts
│ │ │ ├── navbar
│ │ │ │ ├── navbar.component.html
│ │ │ │ └── navbar.component.ts
│ │ │ ├── seller
│ │ │ │ └── create-seller
│ │ │ │ │ ├── create-seller.component.html
│ │ │ │ │ └── create-seller.component.ts
│ │ │ └── services
│ │ │ │ ├── gameStock.service.ts
│ │ │ │ └── sellerCategory.service.ts
│ │ ├── assets
│ │ │ └── .gitkeep
│ │ ├── environments
│ │ │ ├── environment.prod.ts
│ │ │ └── environment.ts
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── main.ts
│ │ ├── polyfills.ts
│ │ ├── styles.css
│ │ ├── test.ts
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.spec.json
│ │ └── typings.d.ts
│ │ ├── tsconfig.json
│ │ └── tslint.json
├── 08 Guards
│ └── game-catalog
│ │ ├── .angular-cli.json
│ │ ├── .editorconfig
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── e2e
│ │ ├── app.e2e-spec.ts
│ │ ├── app.po.ts
│ │ └── tsconfig.e2e.json
│ │ ├── karma.conf.js
│ │ ├── package.json
│ │ ├── protractor.conf.js
│ │ ├── src
│ │ ├── app
│ │ │ ├── app.component.css
│ │ │ ├── app.component.html
│ │ │ ├── app.component.spec.ts
│ │ │ ├── app.component.ts
│ │ │ ├── app.module.ts
│ │ │ ├── app.routes.ts
│ │ │ ├── errors
│ │ │ │ └── 404.component.ts
│ │ │ ├── game-sellers
│ │ │ │ ├── game-sellers.component.html
│ │ │ │ └── game-sellers.component.ts
│ │ │ ├── game
│ │ │ │ ├── create-game
│ │ │ │ │ ├── create-game.component.html
│ │ │ │ │ └── create-game.component.ts
│ │ │ │ ├── game-list
│ │ │ │ │ ├── game-list.component.html
│ │ │ │ │ └── game-list.component.ts
│ │ │ │ ├── game-summary.component.html
│ │ │ │ └── game-summary.component.ts
│ │ │ ├── models
│ │ │ │ ├── game.model.ts
│ │ │ │ ├── seller.model.ts
│ │ │ │ ├── sellerCategory.model.ts
│ │ │ │ └── tax.model.ts
│ │ │ ├── navbar
│ │ │ │ ├── navbar.component.html
│ │ │ │ └── navbar.component.ts
│ │ │ ├── seller
│ │ │ │ └── create-seller
│ │ │ │ │ ├── create-seller.component.html
│ │ │ │ │ └── create-seller.component.ts
│ │ │ └── services
│ │ │ │ ├── checkDirty.service.ts
│ │ │ │ ├── game-router-activator.service.ts
│ │ │ │ ├── gameStock.service.ts
│ │ │ │ └── sellerCategory.service.ts
│ │ ├── assets
│ │ │ └── .gitkeep
│ │ ├── environments
│ │ │ ├── environment.prod.ts
│ │ │ └── environment.ts
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── main.ts
│ │ ├── polyfills.ts
│ │ ├── styles.css
│ │ ├── test.ts
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.spec.json
│ │ └── typings.d.ts
│ │ ├── tsconfig.json
│ │ └── tslint.json
├── 09 Pipes
│ └── game-catalog
│ │ ├── .angular-cli.json
│ │ ├── .editorconfig
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── e2e
│ │ ├── app.e2e-spec.ts
│ │ ├── app.po.ts
│ │ └── tsconfig.e2e.json
│ │ ├── karma.conf.js
│ │ ├── package.json
│ │ ├── protractor.conf.js
│ │ ├── src
│ │ ├── app
│ │ │ ├── app.component.css
│ │ │ ├── app.component.html
│ │ │ ├── app.component.spec.ts
│ │ │ ├── app.component.ts
│ │ │ ├── app.module.ts
│ │ │ ├── app.routes.ts
│ │ │ ├── errors
│ │ │ │ └── 404.component.ts
│ │ │ ├── game-sellers
│ │ │ │ ├── game-sellers.component.html
│ │ │ │ └── game-sellers.component.ts
│ │ │ ├── game
│ │ │ │ ├── create-game
│ │ │ │ │ ├── create-game.component.html
│ │ │ │ │ └── create-game.component.ts
│ │ │ │ ├── game-list
│ │ │ │ │ ├── game-list.component.html
│ │ │ │ │ └── game-list.component.ts
│ │ │ │ ├── game-summary.component.html
│ │ │ │ └── game-summary.component.ts
│ │ │ ├── models
│ │ │ │ ├── game.model.ts
│ │ │ │ ├── seller.model.ts
│ │ │ │ ├── sellerCategory.model.ts
│ │ │ │ └── tax.model.ts
│ │ │ ├── navbar
│ │ │ │ ├── navbar.component.html
│ │ │ │ └── navbar.component.ts
│ │ │ ├── pipes
│ │ │ │ └── available.pipe.ts
│ │ │ ├── seller
│ │ │ │ ├── create-seller
│ │ │ │ │ ├── create-seller.component.html
│ │ │ │ │ └── create-seller.component.ts
│ │ │ │ └── seller-details
│ │ │ │ │ ├── seller-details.component.html
│ │ │ │ │ └── seller-details.component.ts
│ │ │ └── services
│ │ │ │ ├── checkDirty.service.ts
│ │ │ │ ├── game-router-activator.service.ts
│ │ │ │ ├── gameStock.service.ts
│ │ │ │ └── sellerCategory.service.ts
│ │ ├── assets
│ │ │ └── .gitkeep
│ │ ├── environments
│ │ │ ├── environment.prod.ts
│ │ │ └── environment.ts
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── main.ts
│ │ ├── polyfills.ts
│ │ ├── styles.css
│ │ ├── test.ts
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.spec.json
│ │ └── typings.d.ts
│ │ ├── tsconfig.json
│ │ └── tslint.json
├── 10 Filtering Sorting
│ └── game-catalog
│ │ ├── .angular-cli.json
│ │ ├── .editorconfig
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── e2e
│ │ ├── app.e2e-spec.ts
│ │ ├── app.po.ts
│ │ └── tsconfig.e2e.json
│ │ ├── karma.conf.js
│ │ ├── package.json
│ │ ├── protractor.conf.js
│ │ ├── src
│ │ ├── app
│ │ │ ├── app.component.css
│ │ │ ├── app.component.html
│ │ │ ├── app.component.spec.ts
│ │ │ ├── app.component.ts
│ │ │ ├── app.module.ts
│ │ │ ├── app.routes.ts
│ │ │ ├── errors
│ │ │ │ └── 404.component.ts
│ │ │ ├── game-sellers
│ │ │ │ ├── game-sellers.component.html
│ │ │ │ └── game-sellers.component.ts
│ │ │ ├── game
│ │ │ │ ├── create-game
│ │ │ │ │ ├── create-game.component.html
│ │ │ │ │ └── create-game.component.ts
│ │ │ │ ├── game-list
│ │ │ │ │ ├── game-list.component.html
│ │ │ │ │ └── game-list.component.ts
│ │ │ │ ├── game-summary.component.html
│ │ │ │ └── game-summary.component.ts
│ │ │ ├── models
│ │ │ │ ├── game.model.ts
│ │ │ │ ├── seller.model.ts
│ │ │ │ ├── sellerCategory.model.ts
│ │ │ │ └── tax.model.ts
│ │ │ ├── navbar
│ │ │ │ ├── navbar.component.html
│ │ │ │ └── navbar.component.ts
│ │ │ ├── pipes
│ │ │ │ └── available.pipe.ts
│ │ │ ├── seller
│ │ │ │ ├── create-seller
│ │ │ │ │ ├── create-seller.component.html
│ │ │ │ │ └── create-seller.component.ts
│ │ │ │ ├── seller-details
│ │ │ │ │ ├── seller-details.component.html
│ │ │ │ │ └── seller-details.component.ts
│ │ │ │ └── seller-list
│ │ │ │ │ ├── seller-list.component.html
│ │ │ │ │ └── seller-list.component.ts
│ │ │ └── services
│ │ │ │ ├── checkDirty.service.ts
│ │ │ │ ├── game-router-activator.service.ts
│ │ │ │ ├── gameStock.service.ts
│ │ │ │ └── sellerCategory.service.ts
│ │ ├── assets
│ │ │ └── .gitkeep
│ │ ├── environments
│ │ │ ├── environment.prod.ts
│ │ │ └── environment.ts
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── main.ts
│ │ ├── polyfills.ts
│ │ ├── styles.css
│ │ ├── test.ts
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.spec.json
│ │ └── typings.d.ts
│ │ ├── tsconfig.json
│ │ └── tslint.json
├── 11 HTTP GET
│ └── game-catalog
│ │ ├── .angular-cli.json
│ │ ├── .editorconfig
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── e2e
│ │ ├── app.e2e-spec.ts
│ │ ├── app.po.ts
│ │ └── tsconfig.e2e.json
│ │ ├── karma.conf.js
│ │ ├── package.json
│ │ ├── protractor.conf.js
│ │ ├── proxy.conf.json
│ │ ├── server
│ │ ├── index.js
│ │ ├── models
│ │ │ ├── gameModel.js
│ │ │ ├── sellerCategoryModel.js
│ │ │ └── userModel.js
│ │ └── routes
│ │ │ ├── gameRoutes.js
│ │ │ ├── sellerCategoryRoutes.js
│ │ │ └── userRoutes.js
│ │ ├── src
│ │ ├── app
│ │ │ ├── app.component.css
│ │ │ ├── app.component.html
│ │ │ ├── app.component.spec.ts
│ │ │ ├── app.component.ts
│ │ │ ├── app.module.ts
│ │ │ ├── app.routes.ts
│ │ │ ├── errors
│ │ │ │ └── 404.component.ts
│ │ │ ├── game-sellers
│ │ │ │ ├── game-sellers.component.html
│ │ │ │ └── game-sellers.component.ts
│ │ │ ├── game
│ │ │ │ ├── create-game
│ │ │ │ │ ├── create-game.component.html
│ │ │ │ │ └── create-game.component.ts
│ │ │ │ ├── game-list
│ │ │ │ │ ├── game-list.component.html
│ │ │ │ │ └── game-list.component.ts
│ │ │ │ ├── game-summary.component.html
│ │ │ │ └── game-summary.component.ts
│ │ │ ├── models
│ │ │ │ ├── game.model.ts
│ │ │ │ ├── seller.model.ts
│ │ │ │ ├── sellerCategory.model.ts
│ │ │ │ └── tax.model.ts
│ │ │ ├── navbar
│ │ │ │ ├── navbar.component.html
│ │ │ │ └── navbar.component.ts
│ │ │ ├── pipes
│ │ │ │ └── available.pipe.ts
│ │ │ ├── seller
│ │ │ │ ├── create-seller
│ │ │ │ │ ├── create-seller.component.html
│ │ │ │ │ └── create-seller.component.ts
│ │ │ │ ├── seller-details
│ │ │ │ │ ├── seller-details.component.html
│ │ │ │ │ └── seller-details.component.ts
│ │ │ │ └── seller-list
│ │ │ │ │ ├── seller-list.component.html
│ │ │ │ │ └── seller-list.component.ts
│ │ │ └── services
│ │ │ │ ├── checkDirty.service.ts
│ │ │ │ ├── game-router-activator.service.ts
│ │ │ │ ├── gameStock.service.ts
│ │ │ │ └── sellerCategory.service.ts
│ │ ├── assets
│ │ │ └── .gitkeep
│ │ ├── environments
│ │ │ ├── environment.prod.ts
│ │ │ └── environment.ts
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── main.ts
│ │ ├── polyfills.ts
│ │ ├── styles.css
│ │ ├── test.ts
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.spec.json
│ │ └── typings.d.ts
│ │ ├── tsconfig.json
│ │ └── tslint.json
├── 12 HTTP POST
│ └── game-catalog
│ │ ├── .angular-cli.json
│ │ ├── .editorconfig
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── e2e
│ │ ├── app.e2e-spec.ts
│ │ ├── app.po.ts
│ │ └── tsconfig.e2e.json
│ │ ├── karma.conf.js
│ │ ├── package.json
│ │ ├── protractor.conf.js
│ │ ├── proxy.conf.json
│ │ ├── server
│ │ ├── index.js
│ │ ├── models
│ │ │ ├── gameModel.js
│ │ │ ├── sellerCategoryModel.js
│ │ │ └── userModel.js
│ │ └── routes
│ │ │ ├── gameRoutes.js
│ │ │ ├── sellerCategoryRoutes.js
│ │ │ └── userRoutes.js
│ │ ├── src
│ │ ├── app
│ │ │ ├── app.component.css
│ │ │ ├── app.component.html
│ │ │ ├── app.component.spec.ts
│ │ │ ├── app.component.ts
│ │ │ ├── app.module.ts
│ │ │ ├── app.routes.ts
│ │ │ ├── errors
│ │ │ │ └── 404.component.ts
│ │ │ ├── game-sellers
│ │ │ │ ├── game-sellers.component.html
│ │ │ │ └── game-sellers.component.ts
│ │ │ ├── game
│ │ │ │ ├── create-game
│ │ │ │ │ ├── create-game.component.html
│ │ │ │ │ └── create-game.component.ts
│ │ │ │ ├── game-list
│ │ │ │ │ ├── game-list.component.html
│ │ │ │ │ └── game-list.component.ts
│ │ │ │ ├── game-summary.component.html
│ │ │ │ └── game-summary.component.ts
│ │ │ ├── models
│ │ │ │ ├── game.model.ts
│ │ │ │ ├── seller.model.ts
│ │ │ │ ├── sellerCategory.model.ts
│ │ │ │ └── tax.model.ts
│ │ │ ├── navbar
│ │ │ │ ├── navbar.component.html
│ │ │ │ └── navbar.component.ts
│ │ │ ├── pipes
│ │ │ │ └── available.pipe.ts
│ │ │ ├── seller
│ │ │ │ ├── create-seller
│ │ │ │ │ ├── create-seller.component.html
│ │ │ │ │ └── create-seller.component.ts
│ │ │ │ ├── seller-details
│ │ │ │ │ ├── seller-details.component.html
│ │ │ │ │ └── seller-details.component.ts
│ │ │ │ └── seller-list
│ │ │ │ │ ├── seller-list.component.html
│ │ │ │ │ └── seller-list.component.ts
│ │ │ └── services
│ │ │ │ ├── checkDirty.service.ts
│ │ │ │ ├── game-router-activator.service.ts
│ │ │ │ ├── gameStock.service.ts
│ │ │ │ └── sellerCategory.service.ts
│ │ ├── assets
│ │ │ └── .gitkeep
│ │ ├── environments
│ │ │ ├── environment.prod.ts
│ │ │ └── environment.ts
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── main.ts
│ │ ├── polyfills.ts
│ │ ├── styles.css
│ │ ├── test.ts
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.spec.json
│ │ └── typings.d.ts
│ │ ├── tsconfig.json
│ │ └── tslint.json
├── 13 Using ng-content
│ └── game-catalog
│ │ ├── .angular-cli.json
│ │ ├── .editorconfig
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── e2e
│ │ ├── app.e2e-spec.ts
│ │ ├── app.po.ts
│ │ └── tsconfig.e2e.json
│ │ ├── karma.conf.js
│ │ ├── package.json
│ │ ├── protractor.conf.js
│ │ ├── proxy.conf.json
│ │ ├── server
│ │ ├── index.js
│ │ ├── models
│ │ │ ├── gameModel.js
│ │ │ ├── sellerCategoryModel.js
│ │ │ └── userModel.js
│ │ └── routes
│ │ │ ├── gameRoutes.js
│ │ │ ├── sellerCategoryRoutes.js
│ │ │ └── userRoutes.js
│ │ ├── src
│ │ ├── app
│ │ │ ├── app.component.css
│ │ │ ├── app.component.html
│ │ │ ├── app.component.spec.ts
│ │ │ ├── app.component.ts
│ │ │ ├── app.module.ts
│ │ │ ├── app.routes.ts
│ │ │ ├── common
│ │ │ │ └── collapsible-card.component.ts
│ │ │ ├── errors
│ │ │ │ └── 404.component.ts
│ │ │ ├── game-sellers
│ │ │ │ ├── game-sellers.component.html
│ │ │ │ └── game-sellers.component.ts
│ │ │ ├── game
│ │ │ │ ├── create-game
│ │ │ │ │ ├── create-game.component.html
│ │ │ │ │ └── create-game.component.ts
│ │ │ │ ├── game-list
│ │ │ │ │ ├── game-list.component.html
│ │ │ │ │ └── game-list.component.ts
│ │ │ │ ├── game-summary.component.html
│ │ │ │ └── game-summary.component.ts
│ │ │ ├── models
│ │ │ │ ├── game.model.ts
│ │ │ │ ├── seller.model.ts
│ │ │ │ ├── sellerCategory.model.ts
│ │ │ │ └── tax.model.ts
│ │ │ ├── navbar
│ │ │ │ ├── navbar.component.html
│ │ │ │ └── navbar.component.ts
│ │ │ ├── pipes
│ │ │ │ └── available.pipe.ts
│ │ │ ├── seller
│ │ │ │ ├── create-seller
│ │ │ │ │ ├── create-seller.component.html
│ │ │ │ │ └── create-seller.component.ts
│ │ │ │ ├── seller-details
│ │ │ │ │ ├── seller-details.component.html
│ │ │ │ │ └── seller-details.component.ts
│ │ │ │ └── seller-list
│ │ │ │ │ ├── seller-list.component.html
│ │ │ │ │ └── seller-list.component.ts
│ │ │ └── services
│ │ │ │ ├── checkDirty.service.ts
│ │ │ │ ├── game-router-activator.service.ts
│ │ │ │ ├── gameStock.service.ts
│ │ │ │ └── sellerCategory.service.ts
│ │ ├── assets
│ │ │ └── .gitkeep
│ │ ├── environments
│ │ │ ├── environment.prod.ts
│ │ │ └── environment.ts
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── main.ts
│ │ ├── polyfills.ts
│ │ ├── styles.css
│ │ ├── test.ts
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.spec.json
│ │ └── typings.d.ts
│ │ ├── tsconfig.json
│ │ └── tslint.json
└── 14 Directives
│ └── game-catalog
│ ├── .angular-cli.json
│ ├── .editorconfig
│ ├── .gitignore
│ ├── README.md
│ ├── e2e
│ ├── app.e2e-spec.ts
│ ├── app.po.ts
│ └── tsconfig.e2e.json
│ ├── karma.conf.js
│ ├── package.json
│ ├── protractor.conf.js
│ ├── proxy.conf.json
│ ├── server
│ ├── index.js
│ ├── models
│ │ ├── gameModel.js
│ │ ├── sellerCategoryModel.js
│ │ └── userModel.js
│ └── routes
│ │ ├── gameRoutes.js
│ │ ├── sellerCategoryRoutes.js
│ │ └── userRoutes.js
│ ├── src
│ ├── app
│ │ ├── app.component.css
│ │ ├── app.component.html
│ │ ├── app.component.spec.ts
│ │ ├── app.component.ts
│ │ ├── app.module.ts
│ │ ├── app.routes.ts
│ │ ├── common
│ │ │ ├── collapsible-card.component.ts
│ │ │ ├── message-toastr.directive.ts
│ │ │ └── toastr.service.ts
│ │ ├── errors
│ │ │ └── 404.component.ts
│ │ ├── game-sellers
│ │ │ ├── game-sellers.component.html
│ │ │ └── game-sellers.component.ts
│ │ ├── game
│ │ │ ├── create-game
│ │ │ │ ├── create-game.component.html
│ │ │ │ └── create-game.component.ts
│ │ │ ├── game-list
│ │ │ │ ├── game-list.component.html
│ │ │ │ └── game-list.component.ts
│ │ │ ├── game-summary.component.html
│ │ │ └── game-summary.component.ts
│ │ ├── models
│ │ │ ├── game.model.ts
│ │ │ ├── seller.model.ts
│ │ │ ├── sellerCategory.model.ts
│ │ │ └── tax.model.ts
│ │ ├── navbar
│ │ │ ├── navbar.component.html
│ │ │ └── navbar.component.ts
│ │ ├── pipes
│ │ │ └── available.pipe.ts
│ │ ├── seller
│ │ │ ├── create-seller
│ │ │ │ ├── create-seller.component.html
│ │ │ │ └── create-seller.component.ts
│ │ │ ├── seller-details
│ │ │ │ ├── seller-details.component.html
│ │ │ │ └── seller-details.component.ts
│ │ │ └── seller-list
│ │ │ │ ├── seller-list.component.html
│ │ │ │ └── seller-list.component.ts
│ │ └── services
│ │ │ ├── checkDirty.service.ts
│ │ │ ├── game-router-activator.service.ts
│ │ │ ├── gameStock.service.ts
│ │ │ └── sellerCategory.service.ts
│ ├── assets
│ │ └── .gitkeep
│ ├── environments
│ │ ├── environment.prod.ts
│ │ └── environment.ts
│ ├── favicon.ico
│ ├── index.html
│ ├── main.ts
│ ├── polyfills.ts
│ ├── styles.css
│ ├── test.ts
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ └── typings.d.ts
│ ├── tsconfig.json
│ └── tslint.json
├── LICENSE
└── README.md
/.gitignore:
--------------------------------------------------------------------------------
1 | /node_modules
2 | package-lock.json
3 |
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/.angular-cli.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/00 HelloWorld/game-catalog/.angular-cli.json
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/00 HelloWorld/game-catalog/.editorconfig
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/00 HelloWorld/game-catalog/.gitignore
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/00 HelloWorld/game-catalog/README.md
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/e2e/app.e2e-spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/00 HelloWorld/game-catalog/e2e/app.e2e-spec.ts
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/e2e/app.po.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/00 HelloWorld/game-catalog/e2e/app.po.ts
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/e2e/tsconfig.e2e.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/00 HelloWorld/game-catalog/e2e/tsconfig.e2e.json
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/karma.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/00 HelloWorld/game-catalog/karma.conf.js
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/00 HelloWorld/game-catalog/package.json
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/protractor.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/00 HelloWorld/game-catalog/protractor.conf.js
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/src/app/app.component.html:
--------------------------------------------------------------------------------
1 |
2 | {{title}}
3 |
4 |
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/00 HelloWorld/game-catalog/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/00 HelloWorld/game-catalog/src/app/app.component.ts
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/src/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/00 HelloWorld/game-catalog/src/app/app.module.ts
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true
3 | };
4 |
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/src/environments/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/00 HelloWorld/game-catalog/src/environments/environment.ts
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/00 HelloWorld/game-catalog/src/favicon.ico
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/00 HelloWorld/game-catalog/src/index.html
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/00 HelloWorld/game-catalog/src/main.ts
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/src/polyfills.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/00 HelloWorld/game-catalog/src/polyfills.ts
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/src/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/00 HelloWorld/game-catalog/src/styles.css
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/src/test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/00 HelloWorld/game-catalog/src/test.ts
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/src/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/00 HelloWorld/game-catalog/src/tsconfig.app.json
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/src/tsconfig.spec.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/00 HelloWorld/game-catalog/src/tsconfig.spec.json
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/src/typings.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/00 HelloWorld/game-catalog/src/typings.d.ts
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/00 HelloWorld/game-catalog/tsconfig.json
--------------------------------------------------------------------------------
/Demos/00 HelloWorld/game-catalog/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/00 HelloWorld/game-catalog/tslint.json
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/.angular-cli.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/01 Displaying Data/game-catalog/.angular-cli.json
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/01 Displaying Data/game-catalog/.editorconfig
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/01 Displaying Data/game-catalog/.gitignore
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/01 Displaying Data/game-catalog/README.md
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/e2e/app.e2e-spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/01 Displaying Data/game-catalog/e2e/app.e2e-spec.ts
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/e2e/app.po.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/01 Displaying Data/game-catalog/e2e/app.po.ts
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/e2e/tsconfig.e2e.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/01 Displaying Data/game-catalog/e2e/tsconfig.e2e.json
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/karma.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/01 Displaying Data/game-catalog/karma.conf.js
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/01 Displaying Data/game-catalog/package.json
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/protractor.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/01 Displaying Data/game-catalog/protractor.conf.js
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/01 Displaying Data/game-catalog/src/app/app.component.html
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/01 Displaying Data/game-catalog/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/01 Displaying Data/game-catalog/src/app/app.component.ts
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/src/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/01 Displaying Data/game-catalog/src/app/app.module.ts
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/src/app/models/game.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/01 Displaying Data/game-catalog/src/app/models/game.model.ts
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true
3 | };
4 |
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/src/environments/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/01 Displaying Data/game-catalog/src/environments/environment.ts
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/01 Displaying Data/game-catalog/src/favicon.ico
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/01 Displaying Data/game-catalog/src/index.html
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/01 Displaying Data/game-catalog/src/main.ts
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/src/polyfills.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/01 Displaying Data/game-catalog/src/polyfills.ts
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/src/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/01 Displaying Data/game-catalog/src/styles.css
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/src/test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/01 Displaying Data/game-catalog/src/test.ts
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/src/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/01 Displaying Data/game-catalog/src/tsconfig.app.json
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/src/tsconfig.spec.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/01 Displaying Data/game-catalog/src/tsconfig.spec.json
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/src/typings.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/01 Displaying Data/game-catalog/src/typings.d.ts
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/01 Displaying Data/game-catalog/tsconfig.json
--------------------------------------------------------------------------------
/Demos/01 Displaying Data/game-catalog/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/01 Displaying Data/game-catalog/tslint.json
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/.angular-cli.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/.angular-cli.json
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/.editorconfig
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/.gitignore
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/README.md
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/e2e/app.e2e-spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/e2e/app.e2e-spec.ts
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/e2e/app.po.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/e2e/app.po.ts
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/e2e/tsconfig.e2e.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/e2e/tsconfig.e2e.json
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/karma.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/karma.conf.js
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/package.json
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/protractor.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/protractor.conf.js
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/src/app/app.component.html
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/src/app/app.component.ts
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/src/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/src/app/app.module.ts
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/src/app/game/game-summary.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/src/app/game/game-summary.component.html
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/src/app/game/game-summary.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/src/app/game/game-summary.component.ts
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/src/app/models/game.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/src/app/models/game.model.ts
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true
3 | };
4 |
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/src/environments/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/src/environments/environment.ts
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/src/favicon.ico
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/src/index.html
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/src/main.ts
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/src/polyfills.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/src/polyfills.ts
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/src/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/src/styles.css
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/src/test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/src/test.ts
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/src/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/src/tsconfig.app.json
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/src/tsconfig.spec.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/src/tsconfig.spec.json
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/src/typings.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/src/typings.d.ts
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/tsconfig.json
--------------------------------------------------------------------------------
/Demos/02 Displaying Collections/game-catalog/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/02 Displaying Collections/game-catalog/tslint.json
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/.angular-cli.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/.angular-cli.json
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/.editorconfig
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/.gitignore
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/README.md
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/e2e/app.e2e-spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/e2e/app.e2e-spec.ts
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/e2e/app.po.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/e2e/app.po.ts
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/e2e/tsconfig.e2e.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/e2e/tsconfig.e2e.json
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/karma.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/karma.conf.js
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/package.json
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/protractor.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/protractor.conf.js
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/src/app/app.component.css:
--------------------------------------------------------------------------------
1 | .games-container {
2 | padding-top: 3rem;
3 | }
4 |
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/src/app/app.component.html
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/src/app/app.component.ts
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/src/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/src/app/app.module.ts
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/src/app/game-sellers/game-sellers.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/src/app/game-sellers/game-sellers.component.html
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/src/app/game-sellers/game-sellers.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/src/app/game-sellers/game-sellers.component.ts
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/src/app/game/game-summary.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/src/app/game/game-summary.component.html
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/src/app/game/game-summary.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/src/app/game/game-summary.component.ts
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/src/app/models/game.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/src/app/models/game.model.ts
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/src/app/models/seller.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/src/app/models/seller.model.ts
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/src/app/services/gameStock.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/src/app/services/gameStock.service.ts
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true
3 | };
4 |
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/src/environments/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/src/environments/environment.ts
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/src/favicon.ico
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/src/index.html
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/src/main.ts
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/src/polyfills.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/src/polyfills.ts
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/src/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/src/styles.css
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/src/test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/src/test.ts
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/src/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/src/tsconfig.app.json
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/src/tsconfig.spec.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/src/tsconfig.spec.json
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/src/typings.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/src/typings.d.ts
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/tsconfig.json
--------------------------------------------------------------------------------
/Demos/03 User Interactions/game-catalog/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/03 User Interactions/game-catalog/tslint.json
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/.angular-cli.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/.angular-cli.json
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/.editorconfig
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/.gitignore
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/README.md
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/e2e/app.e2e-spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/e2e/app.e2e-spec.ts
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/e2e/app.po.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/e2e/app.po.ts
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/e2e/tsconfig.e2e.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/e2e/tsconfig.e2e.json
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/karma.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/karma.conf.js
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/package.json
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/protractor.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/protractor.conf.js
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/src/app/app.component.css:
--------------------------------------------------------------------------------
1 | .games-container {
2 | padding-top: 3rem;
3 | }
4 |
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/src/app/app.component.html
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/src/app/app.component.ts
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/src/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/src/app/app.module.ts
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/src/app/game-sellers/game-sellers.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/src/app/game-sellers/game-sellers.component.html
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/src/app/game-sellers/game-sellers.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/src/app/game-sellers/game-sellers.component.ts
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/src/app/game/create-game/create-game.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/src/app/game/create-game/create-game.component.html
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/src/app/game/create-game/create-game.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/src/app/game/create-game/create-game.component.ts
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/src/app/game/game-summary.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/src/app/game/game-summary.component.html
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/src/app/game/game-summary.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/src/app/game/game-summary.component.ts
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/src/app/models/game.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/src/app/models/game.model.ts
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/src/app/models/seller.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/src/app/models/seller.model.ts
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/src/app/services/gameStock.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/src/app/services/gameStock.service.ts
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true
3 | };
4 |
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/src/environments/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/src/environments/environment.ts
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/src/favicon.ico
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/src/index.html
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/src/main.ts
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/src/polyfills.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/src/polyfills.ts
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/src/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/src/styles.css
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/src/test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/src/test.ts
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/src/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/src/tsconfig.app.json
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/src/tsconfig.spec.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/src/tsconfig.spec.json
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/src/typings.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/src/typings.d.ts
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/tsconfig.json
--------------------------------------------------------------------------------
/Demos/04 Template Form/game-catalog/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/04 Template Form/game-catalog/tslint.json
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/.angular-cli.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/.angular-cli.json
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/.editorconfig
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/.gitignore
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/README.md
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/e2e/app.e2e-spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/e2e/app.e2e-spec.ts
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/e2e/app.po.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/e2e/app.po.ts
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/e2e/tsconfig.e2e.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/e2e/tsconfig.e2e.json
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/karma.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/karma.conf.js
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/package.json
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/protractor.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/protractor.conf.js
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/src/app/app.component.css:
--------------------------------------------------------------------------------
1 | .games-container {
2 | padding-top: 3rem;
3 | }
4 |
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/src/app/app.component.html
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/src/app/app.component.ts
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/src/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/src/app/app.module.ts
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/src/app/app.routes.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/src/app/app.routes.ts
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/src/app/game-sellers/game-sellers.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/src/app/game-sellers/game-sellers.component.html
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/src/app/game-sellers/game-sellers.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/src/app/game-sellers/game-sellers.component.ts
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/src/app/game/create-game/create-game.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/src/app/game/create-game/create-game.component.ts
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/src/app/game/game-list/game-list.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/src/app/game/game-list/game-list.component.html
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/src/app/game/game-list/game-list.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/src/app/game/game-list/game-list.component.ts
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/src/app/game/game-summary.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/src/app/game/game-summary.component.html
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/src/app/game/game-summary.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/src/app/game/game-summary.component.ts
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/src/app/models/game.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/src/app/models/game.model.ts
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/src/app/models/seller.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/src/app/models/seller.model.ts
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/src/app/services/gameStock.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/src/app/services/gameStock.service.ts
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true
3 | };
4 |
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/src/environments/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/src/environments/environment.ts
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/src/favicon.ico
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/src/index.html
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/src/main.ts
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/src/polyfills.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/src/polyfills.ts
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/src/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/src/styles.css
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/src/test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/src/test.ts
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/src/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/src/tsconfig.app.json
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/src/tsconfig.spec.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/src/tsconfig.spec.json
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/src/typings.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/src/typings.d.ts
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/tsconfig.json
--------------------------------------------------------------------------------
/Demos/05 Registering Routes/game-catalog/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/05 Registering Routes/game-catalog/tslint.json
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/.angular-cli.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/.angular-cli.json
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/.editorconfig
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/.gitignore
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/README.md
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/e2e/app.e2e-spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/e2e/app.e2e-spec.ts
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/e2e/app.po.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/e2e/app.po.ts
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/e2e/tsconfig.e2e.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/e2e/tsconfig.e2e.json
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/karma.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/karma.conf.js
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/package.json
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/protractor.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/protractor.conf.js
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/app/app.component.css:
--------------------------------------------------------------------------------
1 | .games-container {
2 | padding-top: 3rem;
3 | }
4 |
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/app/app.component.html
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/app/app.component.ts
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/app/app.module.ts
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/app/app.routes.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/app/app.routes.ts
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/app/game-sellers/game-sellers.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/app/game-sellers/game-sellers.component.html
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/app/game-sellers/game-sellers.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/app/game-sellers/game-sellers.component.ts
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/app/game/create-game/create-game.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/app/game/create-game/create-game.component.html
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/app/game/create-game/create-game.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/app/game/create-game/create-game.component.ts
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/app/game/game-list/game-list.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/app/game/game-list/game-list.component.html
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/app/game/game-list/game-list.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/app/game/game-list/game-list.component.ts
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/app/game/game-summary.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/app/game/game-summary.component.html
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/app/game/game-summary.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/app/game/game-summary.component.ts
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/app/models/game.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/app/models/game.model.ts
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/app/models/seller.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/app/models/seller.model.ts
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/app/models/sellerCategory.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/app/models/sellerCategory.model.ts
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/app/models/tax.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/app/models/tax.model.ts
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/app/seller/create-seller/create-seller.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/app/seller/create-seller/create-seller.component.ts
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/app/services/gameStock.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/app/services/gameStock.service.ts
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/app/services/sellerCategory.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/app/services/sellerCategory.service.ts
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true
3 | };
4 |
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/environments/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/environments/environment.ts
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/favicon.ico
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/index.html
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/main.ts
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/polyfills.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/polyfills.ts
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/styles.css
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/test.ts
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/tsconfig.app.json
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/tsconfig.spec.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/tsconfig.spec.json
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/src/typings.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/src/typings.d.ts
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/tsconfig.json
--------------------------------------------------------------------------------
/Demos/06 Reactive Form/game-catalog/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/06 Reactive Form/game-catalog/tslint.json
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/.angular-cli.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/.angular-cli.json
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/.editorconfig
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/.gitignore
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/README.md
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/e2e/app.e2e-spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/e2e/app.e2e-spec.ts
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/e2e/app.po.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/e2e/app.po.ts
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/e2e/tsconfig.e2e.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/e2e/tsconfig.e2e.json
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/karma.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/karma.conf.js
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/package.json
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/protractor.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/protractor.conf.js
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/app/app.component.css:
--------------------------------------------------------------------------------
1 | .games-container {
2 | padding-top: 3rem;
3 | }
4 |
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/app/app.component.html
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/app/app.component.ts
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/app/app.module.ts
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/app/app.routes.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/app/app.routes.ts
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/app/game-sellers/game-sellers.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/app/game-sellers/game-sellers.component.html
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/app/game-sellers/game-sellers.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/app/game-sellers/game-sellers.component.ts
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/app/game/create-game/create-game.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/app/game/create-game/create-game.component.html
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/app/game/create-game/create-game.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/app/game/create-game/create-game.component.ts
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/app/game/game-list/game-list.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/app/game/game-list/game-list.component.html
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/app/game/game-list/game-list.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/app/game/game-list/game-list.component.ts
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/app/game/game-summary.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/app/game/game-summary.component.html
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/app/game/game-summary.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/app/game/game-summary.component.ts
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/app/models/game.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/app/models/game.model.ts
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/app/models/seller.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/app/models/seller.model.ts
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/app/models/sellerCategory.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/app/models/sellerCategory.model.ts
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/app/models/tax.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/app/models/tax.model.ts
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/app/navbar/navbar.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/app/navbar/navbar.component.html
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/app/navbar/navbar.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/app/navbar/navbar.component.ts
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/app/seller/create-seller/create-seller.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/app/seller/create-seller/create-seller.component.html
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/app/seller/create-seller/create-seller.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/app/seller/create-seller/create-seller.component.ts
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/app/services/gameStock.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/app/services/gameStock.service.ts
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/app/services/sellerCategory.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/app/services/sellerCategory.service.ts
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true
3 | };
4 |
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/environments/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/environments/environment.ts
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/favicon.ico
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/index.html
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/main.ts
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/polyfills.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/polyfills.ts
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/styles.css
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/test.ts
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/tsconfig.app.json
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/tsconfig.spec.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/tsconfig.spec.json
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/src/typings.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/src/typings.d.ts
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/tsconfig.json
--------------------------------------------------------------------------------
/Demos/07 Navigation/game-catalog/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/07 Navigation/game-catalog/tslint.json
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/.angular-cli.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/.angular-cli.json
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/.editorconfig
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/.gitignore
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/README.md
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/e2e/app.e2e-spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/e2e/app.e2e-spec.ts
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/e2e/app.po.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/e2e/app.po.ts
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/e2e/tsconfig.e2e.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/e2e/tsconfig.e2e.json
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/karma.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/karma.conf.js
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/package.json
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/protractor.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/protractor.conf.js
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/app/app.component.css:
--------------------------------------------------------------------------------
1 | .games-container {
2 | padding-top: 3rem;
3 | }
4 |
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/app/app.component.html
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/app/app.component.ts
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/app/app.module.ts
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/app/app.routes.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/app/app.routes.ts
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/app/errors/404.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/app/errors/404.component.ts
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/app/game-sellers/game-sellers.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/app/game-sellers/game-sellers.component.html
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/app/game-sellers/game-sellers.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/app/game-sellers/game-sellers.component.ts
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/app/game/create-game/create-game.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/app/game/create-game/create-game.component.html
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/app/game/create-game/create-game.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/app/game/create-game/create-game.component.ts
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/app/game/game-list/game-list.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/app/game/game-list/game-list.component.html
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/app/game/game-list/game-list.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/app/game/game-list/game-list.component.ts
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/app/game/game-summary.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/app/game/game-summary.component.html
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/app/game/game-summary.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/app/game/game-summary.component.ts
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/app/models/game.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/app/models/game.model.ts
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/app/models/seller.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/app/models/seller.model.ts
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/app/models/sellerCategory.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/app/models/sellerCategory.model.ts
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/app/models/tax.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/app/models/tax.model.ts
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/app/navbar/navbar.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/app/navbar/navbar.component.html
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/app/navbar/navbar.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/app/navbar/navbar.component.ts
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/app/seller/create-seller/create-seller.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/app/seller/create-seller/create-seller.component.html
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/app/seller/create-seller/create-seller.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/app/seller/create-seller/create-seller.component.ts
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/app/services/checkDirty.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/app/services/checkDirty.service.ts
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/app/services/game-router-activator.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/app/services/game-router-activator.service.ts
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/app/services/gameStock.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/app/services/gameStock.service.ts
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/app/services/sellerCategory.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/app/services/sellerCategory.service.ts
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true
3 | };
4 |
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/environments/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/environments/environment.ts
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/favicon.ico
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/index.html
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/main.ts
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/polyfills.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/polyfills.ts
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/styles.css
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/test.ts
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/tsconfig.app.json
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/tsconfig.spec.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/tsconfig.spec.json
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/src/typings.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/src/typings.d.ts
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/tsconfig.json
--------------------------------------------------------------------------------
/Demos/08 Guards/game-catalog/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/08 Guards/game-catalog/tslint.json
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/.angular-cli.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/.angular-cli.json
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/.editorconfig
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/.gitignore
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/README.md
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/e2e/app.e2e-spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/e2e/app.e2e-spec.ts
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/e2e/app.po.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/e2e/app.po.ts
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/e2e/tsconfig.e2e.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/e2e/tsconfig.e2e.json
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/karma.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/karma.conf.js
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/package.json
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/protractor.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/protractor.conf.js
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/app.component.css:
--------------------------------------------------------------------------------
1 | .games-container {
2 | padding-top: 3rem;
3 | }
4 |
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/app.component.html
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/app.component.ts
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/app.module.ts
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/app.routes.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/app.routes.ts
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/errors/404.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/errors/404.component.ts
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/game-sellers/game-sellers.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/game-sellers/game-sellers.component.html
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/game-sellers/game-sellers.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/game-sellers/game-sellers.component.ts
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/game/create-game/create-game.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/game/create-game/create-game.component.html
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/game/create-game/create-game.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/game/create-game/create-game.component.ts
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/game/game-list/game-list.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/game/game-list/game-list.component.html
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/game/game-list/game-list.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/game/game-list/game-list.component.ts
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/game/game-summary.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/game/game-summary.component.html
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/game/game-summary.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/game/game-summary.component.ts
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/models/game.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/models/game.model.ts
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/models/seller.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/models/seller.model.ts
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/models/sellerCategory.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/models/sellerCategory.model.ts
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/models/tax.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/models/tax.model.ts
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/navbar/navbar.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/navbar/navbar.component.html
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/navbar/navbar.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/navbar/navbar.component.ts
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/pipes/available.pipe.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/pipes/available.pipe.ts
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/seller/create-seller/create-seller.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/seller/create-seller/create-seller.component.html
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/seller/create-seller/create-seller.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/seller/create-seller/create-seller.component.ts
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/seller/seller-details/seller-details.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/seller/seller-details/seller-details.component.html
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/seller/seller-details/seller-details.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/seller/seller-details/seller-details.component.ts
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/services/checkDirty.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/services/checkDirty.service.ts
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/services/game-router-activator.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/services/game-router-activator.service.ts
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/services/gameStock.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/services/gameStock.service.ts
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/app/services/sellerCategory.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/app/services/sellerCategory.service.ts
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true
3 | };
4 |
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/environments/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/environments/environment.ts
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/favicon.ico
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/index.html
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/main.ts
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/polyfills.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/polyfills.ts
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/styles.css
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/test.ts
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/tsconfig.app.json
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/tsconfig.spec.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/tsconfig.spec.json
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/src/typings.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/src/typings.d.ts
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/tsconfig.json
--------------------------------------------------------------------------------
/Demos/09 Pipes/game-catalog/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/09 Pipes/game-catalog/tslint.json
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/.angular-cli.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/.angular-cli.json
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/.editorconfig
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/.gitignore
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/README.md
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/e2e/app.e2e-spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/e2e/app.e2e-spec.ts
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/e2e/app.po.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/e2e/app.po.ts
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/e2e/tsconfig.e2e.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/e2e/tsconfig.e2e.json
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/karma.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/karma.conf.js
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/package.json
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/protractor.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/protractor.conf.js
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/app/app.component.css:
--------------------------------------------------------------------------------
1 | .games-container {
2 | padding-top: 3rem;
3 | }
4 |
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/app/app.component.html
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/app/app.component.ts
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/app/app.module.ts
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/app/app.routes.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/app/app.routes.ts
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/app/errors/404.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/app/errors/404.component.ts
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/app/game-sellers/game-sellers.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/app/game-sellers/game-sellers.component.html
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/app/game-sellers/game-sellers.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/app/game-sellers/game-sellers.component.ts
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/app/game/create-game/create-game.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/app/game/create-game/create-game.component.html
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/app/game/create-game/create-game.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/app/game/create-game/create-game.component.ts
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/app/game/game-list/game-list.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/app/game/game-list/game-list.component.html
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/app/game/game-list/game-list.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/app/game/game-list/game-list.component.ts
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/app/game/game-summary.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/app/game/game-summary.component.html
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/app/game/game-summary.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/app/game/game-summary.component.ts
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/app/models/game.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/app/models/game.model.ts
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/app/models/seller.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/app/models/seller.model.ts
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/app/models/sellerCategory.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/app/models/sellerCategory.model.ts
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/app/models/tax.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/app/models/tax.model.ts
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/app/navbar/navbar.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/app/navbar/navbar.component.html
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/app/navbar/navbar.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/app/navbar/navbar.component.ts
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/app/pipes/available.pipe.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/app/pipes/available.pipe.ts
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/app/seller/seller-list/seller-list.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/app/seller/seller-list/seller-list.component.ts
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/app/services/checkDirty.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/app/services/checkDirty.service.ts
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/app/services/game-router-activator.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/app/services/game-router-activator.service.ts
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/app/services/gameStock.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/app/services/gameStock.service.ts
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/app/services/sellerCategory.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/app/services/sellerCategory.service.ts
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true
3 | };
4 |
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/environments/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/environments/environment.ts
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/favicon.ico
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/index.html
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/main.ts
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/polyfills.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/polyfills.ts
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/styles.css
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/test.ts
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/tsconfig.app.json
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/tsconfig.spec.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/tsconfig.spec.json
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/src/typings.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/src/typings.d.ts
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/tsconfig.json
--------------------------------------------------------------------------------
/Demos/10 Filtering Sorting/game-catalog/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/10 Filtering Sorting/game-catalog/tslint.json
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/.angular-cli.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/.angular-cli.json
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/.editorconfig
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/.gitignore
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/README.md
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/e2e/app.e2e-spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/e2e/app.e2e-spec.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/e2e/app.po.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/e2e/app.po.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/e2e/tsconfig.e2e.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/e2e/tsconfig.e2e.json
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/karma.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/karma.conf.js
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/package.json
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/protractor.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/protractor.conf.js
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/proxy.conf.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/proxy.conf.json
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/server/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/server/index.js
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/server/models/gameModel.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/server/models/gameModel.js
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/server/models/sellerCategoryModel.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/server/models/sellerCategoryModel.js
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/server/models/userModel.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/server/models/userModel.js
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/server/routes/gameRoutes.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/server/routes/gameRoutes.js
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/server/routes/sellerCategoryRoutes.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/server/routes/sellerCategoryRoutes.js
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/server/routes/userRoutes.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/server/routes/userRoutes.js
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/app.component.css:
--------------------------------------------------------------------------------
1 | .games-container {
2 | padding-top: 3rem;
3 | }
4 |
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/app.component.html
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/app.component.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/app.module.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/app.routes.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/app.routes.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/errors/404.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/errors/404.component.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/game-sellers/game-sellers.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/game-sellers/game-sellers.component.html
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/game-sellers/game-sellers.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/game-sellers/game-sellers.component.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/game/create-game/create-game.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/game/create-game/create-game.component.html
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/game/create-game/create-game.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/game/create-game/create-game.component.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/game/game-list/game-list.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/game/game-list/game-list.component.html
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/game/game-list/game-list.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/game/game-list/game-list.component.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/game/game-summary.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/game/game-summary.component.html
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/game/game-summary.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/game/game-summary.component.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/models/game.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/models/game.model.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/models/seller.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/models/seller.model.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/models/sellerCategory.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/models/sellerCategory.model.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/models/tax.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/models/tax.model.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/navbar/navbar.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/navbar/navbar.component.html
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/navbar/navbar.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/navbar/navbar.component.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/pipes/available.pipe.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/pipes/available.pipe.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/seller/create-seller/create-seller.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/seller/create-seller/create-seller.component.html
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/seller/create-seller/create-seller.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/seller/create-seller/create-seller.component.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/seller/seller-details/seller-details.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/seller/seller-details/seller-details.component.html
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/seller/seller-details/seller-details.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/seller/seller-details/seller-details.component.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/seller/seller-list/seller-list.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/seller/seller-list/seller-list.component.html
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/seller/seller-list/seller-list.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/seller/seller-list/seller-list.component.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/services/checkDirty.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/services/checkDirty.service.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/services/game-router-activator.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/services/game-router-activator.service.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/services/gameStock.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/services/gameStock.service.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/app/services/sellerCategory.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/app/services/sellerCategory.service.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true
3 | };
4 |
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/environments/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/environments/environment.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/favicon.ico
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/index.html
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/main.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/polyfills.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/polyfills.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/styles.css
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/test.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/tsconfig.app.json
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/tsconfig.spec.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/tsconfig.spec.json
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/src/typings.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/src/typings.d.ts
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/tsconfig.json
--------------------------------------------------------------------------------
/Demos/11 HTTP GET/game-catalog/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/11 HTTP GET/game-catalog/tslint.json
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/.angular-cli.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/.angular-cli.json
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/.editorconfig
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/.gitignore
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/README.md
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/e2e/app.e2e-spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/e2e/app.e2e-spec.ts
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/e2e/app.po.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/e2e/app.po.ts
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/e2e/tsconfig.e2e.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/e2e/tsconfig.e2e.json
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/karma.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/karma.conf.js
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/package.json
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/protractor.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/protractor.conf.js
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/proxy.conf.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/proxy.conf.json
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/server/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/server/index.js
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/server/models/gameModel.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/server/models/gameModel.js
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/server/models/sellerCategoryModel.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/server/models/sellerCategoryModel.js
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/server/models/userModel.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/server/models/userModel.js
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/server/routes/gameRoutes.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/server/routes/gameRoutes.js
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/server/routes/sellerCategoryRoutes.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/server/routes/sellerCategoryRoutes.js
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/server/routes/userRoutes.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/server/routes/userRoutes.js
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/app.component.css:
--------------------------------------------------------------------------------
1 | .games-container {
2 | padding-top: 3rem;
3 | }
4 |
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/app/app.component.html
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/app/app.component.ts
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/app/app.module.ts
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/app.routes.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/app/app.routes.ts
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/errors/404.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/app/errors/404.component.ts
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/game-sellers/game-sellers.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/app/game-sellers/game-sellers.component.html
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/game-sellers/game-sellers.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/app/game-sellers/game-sellers.component.ts
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/game/create-game/create-game.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/app/game/create-game/create-game.component.html
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/game/create-game/create-game.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/app/game/create-game/create-game.component.ts
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/game/game-list/game-list.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/app/game/game-list/game-list.component.html
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/game/game-list/game-list.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/app/game/game-list/game-list.component.ts
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/game/game-summary.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/app/game/game-summary.component.html
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/game/game-summary.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/app/game/game-summary.component.ts
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/models/game.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/app/models/game.model.ts
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/models/seller.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/app/models/seller.model.ts
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/models/sellerCategory.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/app/models/sellerCategory.model.ts
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/models/tax.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/app/models/tax.model.ts
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/navbar/navbar.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/app/navbar/navbar.component.html
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/navbar/navbar.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/app/navbar/navbar.component.ts
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/pipes/available.pipe.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/app/pipes/available.pipe.ts
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/seller/create-seller/create-seller.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/app/seller/create-seller/create-seller.component.ts
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/seller/seller-list/seller-list.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/app/seller/seller-list/seller-list.component.html
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/seller/seller-list/seller-list.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/app/seller/seller-list/seller-list.component.ts
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/services/checkDirty.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/app/services/checkDirty.service.ts
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/services/game-router-activator.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/app/services/game-router-activator.service.ts
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/services/gameStock.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/app/services/gameStock.service.ts
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/app/services/sellerCategory.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/app/services/sellerCategory.service.ts
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true
3 | };
4 |
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/environments/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/environments/environment.ts
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/favicon.ico
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/index.html
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/main.ts
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/polyfills.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/polyfills.ts
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/styles.css
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/test.ts
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/tsconfig.app.json
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/tsconfig.spec.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/tsconfig.spec.json
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/src/typings.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/src/typings.d.ts
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/tsconfig.json
--------------------------------------------------------------------------------
/Demos/12 HTTP POST/game-catalog/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/12 HTTP POST/game-catalog/tslint.json
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/.angular-cli.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/.angular-cli.json
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/.editorconfig
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/.gitignore
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/README.md
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/e2e/app.e2e-spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/e2e/app.e2e-spec.ts
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/e2e/app.po.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/e2e/app.po.ts
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/e2e/tsconfig.e2e.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/e2e/tsconfig.e2e.json
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/karma.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/karma.conf.js
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/package.json
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/protractor.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/protractor.conf.js
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/proxy.conf.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/proxy.conf.json
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/server/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/server/index.js
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/server/models/gameModel.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/server/models/gameModel.js
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/server/models/sellerCategoryModel.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/server/models/sellerCategoryModel.js
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/server/models/userModel.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/server/models/userModel.js
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/server/routes/gameRoutes.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/server/routes/gameRoutes.js
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/server/routes/sellerCategoryRoutes.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/server/routes/sellerCategoryRoutes.js
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/server/routes/userRoutes.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/server/routes/userRoutes.js
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/app/app.component.css:
--------------------------------------------------------------------------------
1 | .games-container {
2 | padding-top: 3rem;
3 | }
4 |
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/app/app.component.html
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/app/app.component.ts
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/app/app.module.ts
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/app/app.routes.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/app/app.routes.ts
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/app/common/collapsible-card.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/app/common/collapsible-card.component.ts
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/app/errors/404.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/app/errors/404.component.ts
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/app/game-sellers/game-sellers.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/app/game-sellers/game-sellers.component.html
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/app/game-sellers/game-sellers.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/app/game-sellers/game-sellers.component.ts
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/app/game/create-game/create-game.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/app/game/create-game/create-game.component.ts
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/app/game/game-list/game-list.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/app/game/game-list/game-list.component.html
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/app/game/game-list/game-list.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/app/game/game-list/game-list.component.ts
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/app/game/game-summary.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/app/game/game-summary.component.html
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/app/game/game-summary.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/app/game/game-summary.component.ts
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/app/models/game.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/app/models/game.model.ts
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/app/models/seller.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/app/models/seller.model.ts
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/app/models/sellerCategory.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/app/models/sellerCategory.model.ts
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/app/models/tax.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/app/models/tax.model.ts
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/app/navbar/navbar.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/app/navbar/navbar.component.html
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/app/navbar/navbar.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/app/navbar/navbar.component.ts
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/app/pipes/available.pipe.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/app/pipes/available.pipe.ts
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/app/services/checkDirty.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/app/services/checkDirty.service.ts
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/app/services/game-router-activator.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/app/services/game-router-activator.service.ts
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/app/services/gameStock.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/app/services/gameStock.service.ts
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/app/services/sellerCategory.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/app/services/sellerCategory.service.ts
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true
3 | };
4 |
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/environments/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/environments/environment.ts
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/favicon.ico
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/index.html
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/main.ts
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/polyfills.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/polyfills.ts
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/styles.css
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/test.ts
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/tsconfig.app.json
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/tsconfig.spec.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/tsconfig.spec.json
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/src/typings.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/src/typings.d.ts
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/tsconfig.json
--------------------------------------------------------------------------------
/Demos/13 Using ng-content/game-catalog/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/13 Using ng-content/game-catalog/tslint.json
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/.angular-cli.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/.angular-cli.json
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/.editorconfig
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/.gitignore
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/README.md
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/e2e/app.e2e-spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/e2e/app.e2e-spec.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/e2e/app.po.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/e2e/app.po.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/e2e/tsconfig.e2e.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/e2e/tsconfig.e2e.json
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/karma.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/karma.conf.js
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/package.json
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/protractor.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/protractor.conf.js
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/proxy.conf.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/proxy.conf.json
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/server/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/server/index.js
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/server/models/gameModel.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/server/models/gameModel.js
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/server/models/sellerCategoryModel.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/server/models/sellerCategoryModel.js
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/server/models/userModel.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/server/models/userModel.js
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/server/routes/gameRoutes.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/server/routes/gameRoutes.js
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/server/routes/sellerCategoryRoutes.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/server/routes/sellerCategoryRoutes.js
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/server/routes/userRoutes.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/server/routes/userRoutes.js
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/app.component.css:
--------------------------------------------------------------------------------
1 | .games-container {
2 | padding-top: 3rem;
3 | }
4 |
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/app.component.html
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/app.component.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/app.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/app.module.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/app.routes.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/app.routes.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/common/collapsible-card.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/common/collapsible-card.component.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/common/message-toastr.directive.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/common/message-toastr.directive.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/common/toastr.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/common/toastr.service.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/errors/404.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/errors/404.component.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/game-sellers/game-sellers.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/game-sellers/game-sellers.component.html
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/game-sellers/game-sellers.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/game-sellers/game-sellers.component.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/game/create-game/create-game.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/game/create-game/create-game.component.html
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/game/create-game/create-game.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/game/create-game/create-game.component.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/game/game-list/game-list.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/game/game-list/game-list.component.html
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/game/game-list/game-list.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/game/game-list/game-list.component.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/game/game-summary.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/game/game-summary.component.html
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/game/game-summary.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/game/game-summary.component.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/models/game.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/models/game.model.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/models/seller.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/models/seller.model.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/models/sellerCategory.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/models/sellerCategory.model.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/models/tax.model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/models/tax.model.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/navbar/navbar.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/navbar/navbar.component.html
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/navbar/navbar.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/navbar/navbar.component.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/pipes/available.pipe.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/pipes/available.pipe.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/seller/create-seller/create-seller.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/seller/create-seller/create-seller.component.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/seller/seller-list/seller-list.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/seller/seller-list/seller-list.component.html
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/seller/seller-list/seller-list.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/seller/seller-list/seller-list.component.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/services/checkDirty.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/services/checkDirty.service.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/services/game-router-activator.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/services/game-router-activator.service.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/services/gameStock.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/services/gameStock.service.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/app/services/sellerCategory.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/app/services/sellerCategory.service.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true
3 | };
4 |
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/environments/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/environments/environment.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/favicon.ico
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/index.html
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/main.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/polyfills.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/polyfills.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/styles.css
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/test.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/tsconfig.app.json
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/tsconfig.spec.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/tsconfig.spec.json
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/src/typings.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/src/typings.d.ts
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/tsconfig.json
--------------------------------------------------------------------------------
/Demos/14 Directives/game-catalog/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/Demos/14 Directives/game-catalog/tslint.json
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/LICENSE
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lemoncode/angular-5-sample-app/HEAD/README.md
--------------------------------------------------------------------------------