├── .gitginore ├── .gitignore ├── README.md └── code ├── Season1-Content-generation ├── 1-contentchildren-by-service │ ├── .browserslistrc │ ├── README.md │ ├── angular.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── animal.ts │ │ │ ├── animals │ │ │ │ └── animals.component.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── cat │ │ │ │ └── cat.component.ts │ │ │ ├── dog │ │ │ │ └── dog.component.ts │ │ │ ├── fox │ │ │ │ └── fox.component.ts │ │ │ ├── link.directive.ts │ │ │ └── rock │ │ │ │ └── rock.component.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ └── styles.css │ ├── tsconfig.app.json │ └── tsconfig.json ├── 2-export-as │ ├── .browserslistrc │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ └── colory.directive.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ └── styles.css │ ├── tsconfig.app.json │ └── tsconfig.json ├── 3-attribute-decorator │ ├── .browserslistrc │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ └── greetings │ │ │ │ └── greetings.component.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ └── styles.css │ ├── tsconfig.app.json │ └── tsconfig.json ├── 4-structural-directive │ ├── .browserslistrc │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ └── delay.directive.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ └── styles.css │ ├── tsconfig.app.json │ └── tsconfig.json ├── 5-dynamic-component │ ├── .browserslistrc │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── banner │ │ │ │ └── banner.component.ts │ │ │ └── host.directive.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ └── styles.css │ ├── tsconfig.app.json │ └── tsconfig.json └── 6-angular-element │ ├── .browserslistrc │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── app │ │ ├── app.module.ts │ │ └── hello │ │ │ └── hello.component.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ └── styles.css │ ├── tsconfig.app.json │ └── tsconfig.json ├── Season2-Dependency-Injection ├── injection-decorators-host │ ├── .browserslistrc │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── extra.directive.ts │ │ │ ├── flower.service.ts │ │ │ └── sample │ │ │ │ └── sample.component.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ └── styles.css │ ├── tsconfig.app.json │ └── tsconfig.json ├── injection-decorators │ ├── .browserslistrc │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── extra.directive.ts │ │ │ ├── flower.service.ts │ │ │ └── sample │ │ │ │ └── sample.component.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ └── styles.css │ ├── tsconfig.app.json │ └── tsconfig.json ├── provide-in │ ├── di-diagram.png │ ├── provide-in-any │ │ ├── .browserslistrc │ │ ├── .gitignore │ │ ├── README.md │ │ ├── angular.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── data.service.ts │ │ │ │ ├── home │ │ │ │ │ └── home.component.ts │ │ │ │ └── lazy │ │ │ │ │ ├── lazy.module.ts │ │ │ │ │ └── lazy │ │ │ │ │ └── lazy.component.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ └── styles.css │ │ ├── tsconfig.app.json │ │ └── tsconfig.json │ └── provide-in-platform │ │ ├── .browserslistrc │ │ ├── .gitignore │ │ ├── README.md │ │ ├── angular.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── app │ │ │ ├── data.service.ts │ │ │ ├── first │ │ │ │ ├── first.component.ts │ │ │ │ └── first.module.ts │ │ │ └── second │ │ │ │ ├── second.component.ts │ │ │ │ └── second.module.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ └── styles.css │ │ ├── tsconfig.app.json │ │ └── tsconfig.json └── viewproviders │ ├── .browserslistrc │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── app │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── carousel-item.directive.ts │ │ ├── carousel │ │ │ ├── carousel.component.ts │ │ │ └── inner-logic.service.ts │ │ └── hacker │ │ │ └── hacker.component.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ └── styles.css │ ├── tsconfig.app.json │ └── tsconfig.json ├── Season3-Change-Detection ├── cd-detach │ ├── .browserslistrc │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── five │ │ │ │ └── five.component.ts │ │ │ ├── four │ │ │ │ └── four.component.ts │ │ │ ├── highlight.ts │ │ │ ├── one │ │ │ │ └── one.component.ts │ │ │ ├── seven │ │ │ │ └── seven.component.ts │ │ │ ├── six │ │ │ │ └── six.component.ts │ │ │ ├── three │ │ │ │ └── three.component.ts │ │ │ └── two │ │ │ │ └── two.component.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ └── styles.css │ ├── tsconfig.app.json │ └── tsconfig.json ├── markForCheck-vs-detectChanges │ ├── .browserslistrc │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── five │ │ │ │ └── five.component.ts │ │ │ ├── four │ │ │ │ └── four.component.ts │ │ │ ├── highlight.ts │ │ │ ├── one │ │ │ │ └── one.component.ts │ │ │ ├── seven │ │ │ │ └── seven.component.ts │ │ │ ├── six │ │ │ │ └── six.component.ts │ │ │ ├── three │ │ │ │ └── three.component.ts │ │ │ └── two │ │ │ │ └── two.component.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ └── styles.css │ ├── tsconfig.app.json │ └── tsconfig.json ├── ngzone │ ├── ngzone.js │ ├── zone-cd.png │ └── zone.js └── no-zones │ ├── .browserslistrc │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── app │ │ ├── app.component.ts │ │ └── app.module.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ └── styles.css │ ├── tsconfig.app.json │ └── tsconfig.json ├── Season4-Router-Features ├── guess-angular │ ├── .browserslistrc │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── extend.webpack.config.js │ ├── package-lock.json │ ├── package.json │ ├── routes.json │ ├── src │ │ ├── app │ │ │ ├── about │ │ │ │ ├── about-routing.module.ts │ │ │ │ ├── about.component.ts │ │ │ │ └── about.module.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── example │ │ │ │ ├── example-routing.module.ts │ │ │ │ ├── example.component.ts │ │ │ │ └── example.module.ts │ │ │ ├── index │ │ │ │ ├── index-routing.module.ts │ │ │ │ ├── index.component.ts │ │ │ │ └── index.module.ts │ │ │ └── media │ │ │ │ ├── media-routing.module.ts │ │ │ │ ├── media.component.ts │ │ │ │ └── media.module.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ └── styles.css │ ├── tsconfig.app.json │ └── tsconfig.json ├── preloading │ ├── .browserslistrc │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── custom-preloading.service.ts │ │ │ ├── home │ │ │ │ └── home.component.ts │ │ │ ├── lazy │ │ │ │ ├── lazy.module.ts │ │ │ │ └── lazy │ │ │ │ │ └── lazy.component.ts │ │ │ └── network-aware-preloading.service.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ └── styles.css │ ├── tsconfig.app.json │ └── tsconfig.json ├── reuse-strategy │ ├── .browserslistrc │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── package.json │ ├── pnpm-lock.yaml │ ├── src │ │ ├── app │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── base-route-reuse-strategy.service.ts │ │ │ ├── book.service.ts │ │ │ ├── book │ │ │ │ └── book.component.ts │ │ │ ├── curtom-route-reuse-strategy.service.ts │ │ │ └── list │ │ │ │ └── list.component.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ └── styles.css │ ├── tsconfig.app.json │ └── tsconfig.json └── router-animations │ ├── .browserslistrc │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── app │ │ ├── animations │ │ │ ├── 1.ts │ │ │ ├── 2.ts │ │ │ └── 3.ts │ │ ├── app-routing.module.ts │ │ ├── app.component.scss │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── fairy-tern │ │ │ ├── fairy-tern.component.scss │ │ │ └── fairy-tern.component.ts │ │ ├── kakapo │ │ │ ├── kakapo.component.scss │ │ │ └── kakapo.component.ts │ │ ├── nav-bar │ │ │ ├── nav-bar.component.scss │ │ │ └── nav-bar.component.ts │ │ └── takahe │ │ │ ├── takahe.component.scss │ │ │ └── takahe.component.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ └── styles.scss │ ├── tsconfig.app.json │ └── tsconfig.json └── Season5-Service-Workers ├── angular-sw ├── .editorconfig ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json ├── README.md ├── angular.json ├── ngsw-config.json ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.config.ts │ │ └── app.routes.ts │ ├── assets │ │ ├── .gitkeep │ │ └── icons │ │ │ ├── icon-128x128.png │ │ │ ├── icon-144x144.png │ │ │ ├── icon-152x152.png │ │ │ ├── icon-192x192.png │ │ │ ├── icon-384x384.png │ │ │ ├── icon-512x512.png │ │ │ ├── icon-72x72.png │ │ │ └── icon-96x96.png │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── manifest.webmanifest │ └── styles.css ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── pure ├── README.MD ├── backend │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── push.js │ │ └── server.js │ └── subscription.json ├── dino.html ├── index-0.html ├── index-1.html ├── index-2.html ├── index-3.html ├── index-4.html ├── index.html ├── package-lock.json ├── sw.js ├── sw0.js ├── sw1.js ├── sw2.js ├── sw3.js ├── sw4.js └── web-push-example-app-flow.png └── sw-storage-limits ├── README.md ├── index.html ├── storage ├── 1-cookie.js ├── 2-webStorage.js ├── 3-indexedDB.js ├── 4-cacheAPI.js ├── 5-fileAccessAPI.js ├── file.txt └── index.html └── sw.js /.gitginore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/.gitginore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/README.md -------------------------------------------------------------------------------- /code/Season1-Content-generation/1-contentchildren-by-service/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/1-contentchildren-by-service/.browserslistrc -------------------------------------------------------------------------------- /code/Season1-Content-generation/1-contentchildren-by-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/1-contentchildren-by-service/README.md -------------------------------------------------------------------------------- /code/Season1-Content-generation/1-contentchildren-by-service/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/1-contentchildren-by-service/angular.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/1-contentchildren-by-service/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/1-contentchildren-by-service/package-lock.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/1-contentchildren-by-service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/1-contentchildren-by-service/package.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/1-contentchildren-by-service/src/app/animal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/1-contentchildren-by-service/src/app/animal.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/1-contentchildren-by-service/src/app/animals/animals.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/1-contentchildren-by-service/src/app/animals/animals.component.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/1-contentchildren-by-service/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/1-contentchildren-by-service/src/app/app.component.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/1-contentchildren-by-service/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/1-contentchildren-by-service/src/app/app.module.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/1-contentchildren-by-service/src/app/cat/cat.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/1-contentchildren-by-service/src/app/cat/cat.component.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/1-contentchildren-by-service/src/app/dog/dog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/1-contentchildren-by-service/src/app/dog/dog.component.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/1-contentchildren-by-service/src/app/fox/fox.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/1-contentchildren-by-service/src/app/fox/fox.component.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/1-contentchildren-by-service/src/app/link.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/1-contentchildren-by-service/src/app/link.directive.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/1-contentchildren-by-service/src/app/rock/rock.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/1-contentchildren-by-service/src/app/rock/rock.component.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/1-contentchildren-by-service/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Season1-Content-generation/1-contentchildren-by-service/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /code/Season1-Content-generation/1-contentchildren-by-service/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/1-contentchildren-by-service/src/environments/environment.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/1-contentchildren-by-service/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/1-contentchildren-by-service/src/favicon.ico -------------------------------------------------------------------------------- /code/Season1-Content-generation/1-contentchildren-by-service/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/1-contentchildren-by-service/src/index.html -------------------------------------------------------------------------------- /code/Season1-Content-generation/1-contentchildren-by-service/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/1-contentchildren-by-service/src/main.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/1-contentchildren-by-service/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/1-contentchildren-by-service/src/polyfills.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/1-contentchildren-by-service/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/1-contentchildren-by-service/src/styles.css -------------------------------------------------------------------------------- /code/Season1-Content-generation/1-contentchildren-by-service/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/1-contentchildren-by-service/tsconfig.app.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/1-contentchildren-by-service/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/1-contentchildren-by-service/tsconfig.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/2-export-as/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/2-export-as/.browserslistrc -------------------------------------------------------------------------------- /code/Season1-Content-generation/2-export-as/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/2-export-as/.gitignore -------------------------------------------------------------------------------- /code/Season1-Content-generation/2-export-as/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/2-export-as/README.md -------------------------------------------------------------------------------- /code/Season1-Content-generation/2-export-as/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/2-export-as/angular.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/2-export-as/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/2-export-as/package-lock.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/2-export-as/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/2-export-as/package.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/2-export-as/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/2-export-as/src/app/app.component.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/2-export-as/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/2-export-as/src/app/app.module.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/2-export-as/src/app/colory.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/2-export-as/src/app/colory.directive.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/2-export-as/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Season1-Content-generation/2-export-as/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /code/Season1-Content-generation/2-export-as/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/2-export-as/src/environments/environment.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/2-export-as/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/2-export-as/src/favicon.ico -------------------------------------------------------------------------------- /code/Season1-Content-generation/2-export-as/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/2-export-as/src/index.html -------------------------------------------------------------------------------- /code/Season1-Content-generation/2-export-as/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/2-export-as/src/main.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/2-export-as/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/2-export-as/src/polyfills.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/2-export-as/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/2-export-as/src/styles.css -------------------------------------------------------------------------------- /code/Season1-Content-generation/2-export-as/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/2-export-as/tsconfig.app.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/2-export-as/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/2-export-as/tsconfig.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/3-attribute-decorator/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/3-attribute-decorator/.browserslistrc -------------------------------------------------------------------------------- /code/Season1-Content-generation/3-attribute-decorator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/3-attribute-decorator/.gitignore -------------------------------------------------------------------------------- /code/Season1-Content-generation/3-attribute-decorator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/3-attribute-decorator/README.md -------------------------------------------------------------------------------- /code/Season1-Content-generation/3-attribute-decorator/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/3-attribute-decorator/angular.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/3-attribute-decorator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/3-attribute-decorator/package-lock.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/3-attribute-decorator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/3-attribute-decorator/package.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/3-attribute-decorator/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/3-attribute-decorator/src/app/app.component.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/3-attribute-decorator/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/3-attribute-decorator/src/app/app.module.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/3-attribute-decorator/src/app/greetings/greetings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/3-attribute-decorator/src/app/greetings/greetings.component.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/3-attribute-decorator/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Season1-Content-generation/3-attribute-decorator/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /code/Season1-Content-generation/3-attribute-decorator/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/3-attribute-decorator/src/environments/environment.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/3-attribute-decorator/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/3-attribute-decorator/src/favicon.ico -------------------------------------------------------------------------------- /code/Season1-Content-generation/3-attribute-decorator/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/3-attribute-decorator/src/index.html -------------------------------------------------------------------------------- /code/Season1-Content-generation/3-attribute-decorator/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/3-attribute-decorator/src/main.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/3-attribute-decorator/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/3-attribute-decorator/src/polyfills.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/3-attribute-decorator/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/3-attribute-decorator/src/styles.css -------------------------------------------------------------------------------- /code/Season1-Content-generation/3-attribute-decorator/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/3-attribute-decorator/tsconfig.app.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/3-attribute-decorator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/3-attribute-decorator/tsconfig.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/4-structural-directive/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/4-structural-directive/.browserslistrc -------------------------------------------------------------------------------- /code/Season1-Content-generation/4-structural-directive/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/4-structural-directive/.gitignore -------------------------------------------------------------------------------- /code/Season1-Content-generation/4-structural-directive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/4-structural-directive/README.md -------------------------------------------------------------------------------- /code/Season1-Content-generation/4-structural-directive/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/4-structural-directive/angular.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/4-structural-directive/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/4-structural-directive/package-lock.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/4-structural-directive/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/4-structural-directive/package.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/4-structural-directive/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/4-structural-directive/src/app/app.component.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/4-structural-directive/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/4-structural-directive/src/app/app.module.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/4-structural-directive/src/app/delay.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/4-structural-directive/src/app/delay.directive.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/4-structural-directive/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Season1-Content-generation/4-structural-directive/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /code/Season1-Content-generation/4-structural-directive/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/4-structural-directive/src/environments/environment.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/4-structural-directive/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/4-structural-directive/src/favicon.ico -------------------------------------------------------------------------------- /code/Season1-Content-generation/4-structural-directive/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/4-structural-directive/src/index.html -------------------------------------------------------------------------------- /code/Season1-Content-generation/4-structural-directive/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/4-structural-directive/src/main.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/4-structural-directive/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/4-structural-directive/src/polyfills.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/4-structural-directive/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/4-structural-directive/src/styles.css -------------------------------------------------------------------------------- /code/Season1-Content-generation/4-structural-directive/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/4-structural-directive/tsconfig.app.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/4-structural-directive/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/4-structural-directive/tsconfig.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/5-dynamic-component/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/5-dynamic-component/.browserslistrc -------------------------------------------------------------------------------- /code/Season1-Content-generation/5-dynamic-component/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/5-dynamic-component/.gitignore -------------------------------------------------------------------------------- /code/Season1-Content-generation/5-dynamic-component/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/5-dynamic-component/README.md -------------------------------------------------------------------------------- /code/Season1-Content-generation/5-dynamic-component/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/5-dynamic-component/angular.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/5-dynamic-component/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/5-dynamic-component/package-lock.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/5-dynamic-component/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/5-dynamic-component/package.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/5-dynamic-component/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/5-dynamic-component/src/app/app.component.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/5-dynamic-component/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/5-dynamic-component/src/app/app.module.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/5-dynamic-component/src/app/banner/banner.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/5-dynamic-component/src/app/banner/banner.component.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/5-dynamic-component/src/app/host.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/5-dynamic-component/src/app/host.directive.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/5-dynamic-component/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Season1-Content-generation/5-dynamic-component/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /code/Season1-Content-generation/5-dynamic-component/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/5-dynamic-component/src/environments/environment.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/5-dynamic-component/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/5-dynamic-component/src/favicon.ico -------------------------------------------------------------------------------- /code/Season1-Content-generation/5-dynamic-component/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/5-dynamic-component/src/index.html -------------------------------------------------------------------------------- /code/Season1-Content-generation/5-dynamic-component/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/5-dynamic-component/src/main.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/5-dynamic-component/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/5-dynamic-component/src/polyfills.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/5-dynamic-component/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/5-dynamic-component/src/styles.css -------------------------------------------------------------------------------- /code/Season1-Content-generation/5-dynamic-component/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/5-dynamic-component/tsconfig.app.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/5-dynamic-component/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/5-dynamic-component/tsconfig.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/6-angular-element/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/6-angular-element/.browserslistrc -------------------------------------------------------------------------------- /code/Season1-Content-generation/6-angular-element/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/6-angular-element/.gitignore -------------------------------------------------------------------------------- /code/Season1-Content-generation/6-angular-element/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/6-angular-element/README.md -------------------------------------------------------------------------------- /code/Season1-Content-generation/6-angular-element/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/6-angular-element/angular.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/6-angular-element/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/6-angular-element/package-lock.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/6-angular-element/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/6-angular-element/package.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/6-angular-element/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/6-angular-element/src/app/app.module.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/6-angular-element/src/app/hello/hello.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/6-angular-element/src/app/hello/hello.component.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/6-angular-element/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Season1-Content-generation/6-angular-element/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /code/Season1-Content-generation/6-angular-element/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/6-angular-element/src/environments/environment.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/6-angular-element/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/6-angular-element/src/favicon.ico -------------------------------------------------------------------------------- /code/Season1-Content-generation/6-angular-element/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/6-angular-element/src/index.html -------------------------------------------------------------------------------- /code/Season1-Content-generation/6-angular-element/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/6-angular-element/src/main.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/6-angular-element/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/6-angular-element/src/polyfills.ts -------------------------------------------------------------------------------- /code/Season1-Content-generation/6-angular-element/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/6-angular-element/src/styles.css -------------------------------------------------------------------------------- /code/Season1-Content-generation/6-angular-element/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/6-angular-element/tsconfig.app.json -------------------------------------------------------------------------------- /code/Season1-Content-generation/6-angular-element/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season1-Content-generation/6-angular-element/tsconfig.json -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators-host/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators-host/.browserslistrc -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators-host/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators-host/.gitignore -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators-host/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators-host/README.md -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators-host/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators-host/angular.json -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators-host/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators-host/package-lock.json -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators-host/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators-host/package.json -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators-host/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators-host/src/app/app.component.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators-host/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators-host/src/app/app.module.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators-host/src/app/extra.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators-host/src/app/extra.directive.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators-host/src/app/flower.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators-host/src/app/flower.service.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators-host/src/app/sample/sample.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators-host/src/app/sample/sample.component.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators-host/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators-host/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators-host/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators-host/src/environments/environment.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators-host/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators-host/src/favicon.ico -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators-host/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators-host/src/index.html -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators-host/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators-host/src/main.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators-host/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators-host/src/polyfills.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators-host/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators-host/src/styles.css -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators-host/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators-host/tsconfig.app.json -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators-host/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators-host/tsconfig.json -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators/.browserslistrc -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators/.gitignore -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators/README.md -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators/angular.json -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators/package-lock.json -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators/package.json -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators/src/app/app.component.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators/src/app/app.module.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators/src/app/extra.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators/src/app/extra.directive.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators/src/app/flower.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators/src/app/flower.service.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators/src/app/sample/sample.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators/src/app/sample/sample.component.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators/src/environments/environment.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators/src/favicon.ico -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators/src/index.html -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators/src/main.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators/src/polyfills.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators/src/styles.css -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators/tsconfig.app.json -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/injection-decorators/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/injection-decorators/tsconfig.json -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/di-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/di-diagram.png -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-any/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-any/.browserslistrc -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-any/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-any/.gitignore -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-any/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-any/README.md -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-any/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-any/angular.json -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-any/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-any/package-lock.json -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-any/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-any/package.json -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-any/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-any/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-any/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-any/src/app/app.component.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-any/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-any/src/app/app.module.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-any/src/app/data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-any/src/app/data.service.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-any/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-any/src/app/home/home.component.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-any/src/app/lazy/lazy.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-any/src/app/lazy/lazy.module.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-any/src/app/lazy/lazy/lazy.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-any/src/app/lazy/lazy/lazy.component.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-any/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-any/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-any/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-any/src/environments/environment.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-any/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-any/src/favicon.ico -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-any/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-any/src/index.html -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-any/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-any/src/main.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-any/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-any/src/polyfills.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-any/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-any/src/styles.css -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-any/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-any/tsconfig.app.json -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-any/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-any/tsconfig.json -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-platform/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-platform/.browserslistrc -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-platform/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-platform/.gitignore -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-platform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-platform/README.md -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-platform/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-platform/angular.json -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-platform/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-platform/package-lock.json -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-platform/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-platform/package.json -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-platform/src/app/data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-platform/src/app/data.service.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-platform/src/app/first/first.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-platform/src/app/first/first.component.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-platform/src/app/first/first.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-platform/src/app/first/first.module.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-platform/src/app/second/second.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-platform/src/app/second/second.component.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-platform/src/app/second/second.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-platform/src/app/second/second.module.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-platform/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-platform/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-platform/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-platform/src/environments/environment.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-platform/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-platform/src/favicon.ico -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-platform/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-platform/src/index.html -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-platform/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-platform/src/main.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-platform/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-platform/src/polyfills.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-platform/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-platform/src/styles.css -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-platform/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-platform/tsconfig.app.json -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/provide-in/provide-in-platform/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/provide-in/provide-in-platform/tsconfig.json -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/viewproviders/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/viewproviders/.browserslistrc -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/viewproviders/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/viewproviders/.gitignore -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/viewproviders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/viewproviders/README.md -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/viewproviders/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/viewproviders/angular.json -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/viewproviders/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/viewproviders/package-lock.json -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/viewproviders/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/viewproviders/package.json -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/viewproviders/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/viewproviders/src/app/app.component.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/viewproviders/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/viewproviders/src/app/app.module.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/viewproviders/src/app/carousel-item.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/viewproviders/src/app/carousel-item.directive.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/viewproviders/src/app/carousel/carousel.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/viewproviders/src/app/carousel/carousel.component.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/viewproviders/src/app/carousel/inner-logic.service.ts: -------------------------------------------------------------------------------- 1 | 2 | export class InnerLogicService { 3 | public timer = 3000; 4 | } 5 | -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/viewproviders/src/app/hacker/hacker.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/viewproviders/src/app/hacker/hacker.component.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/viewproviders/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/viewproviders/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/viewproviders/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/viewproviders/src/environments/environment.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/viewproviders/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/viewproviders/src/favicon.ico -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/viewproviders/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/viewproviders/src/index.html -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/viewproviders/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/viewproviders/src/main.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/viewproviders/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/viewproviders/src/polyfills.ts -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/viewproviders/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/viewproviders/src/styles.css -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/viewproviders/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/viewproviders/tsconfig.app.json -------------------------------------------------------------------------------- /code/Season2-Dependency-Injection/viewproviders/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season2-Dependency-Injection/viewproviders/tsconfig.json -------------------------------------------------------------------------------- /code/Season3-Change-Detection/cd-detach/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/cd-detach/.browserslistrc -------------------------------------------------------------------------------- /code/Season3-Change-Detection/cd-detach/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/cd-detach/.gitignore -------------------------------------------------------------------------------- /code/Season3-Change-Detection/cd-detach/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/cd-detach/README.md -------------------------------------------------------------------------------- /code/Season3-Change-Detection/cd-detach/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/cd-detach/angular.json -------------------------------------------------------------------------------- /code/Season3-Change-Detection/cd-detach/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/cd-detach/package-lock.json -------------------------------------------------------------------------------- /code/Season3-Change-Detection/cd-detach/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/cd-detach/package.json -------------------------------------------------------------------------------- /code/Season3-Change-Detection/cd-detach/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/cd-detach/src/app/app.component.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/cd-detach/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/cd-detach/src/app/app.module.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/cd-detach/src/app/five/five.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/cd-detach/src/app/five/five.component.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/cd-detach/src/app/four/four.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/cd-detach/src/app/four/four.component.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/cd-detach/src/app/highlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/cd-detach/src/app/highlight.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/cd-detach/src/app/one/one.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/cd-detach/src/app/one/one.component.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/cd-detach/src/app/seven/seven.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/cd-detach/src/app/seven/seven.component.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/cd-detach/src/app/six/six.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/cd-detach/src/app/six/six.component.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/cd-detach/src/app/three/three.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/cd-detach/src/app/three/three.component.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/cd-detach/src/app/two/two.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/cd-detach/src/app/two/two.component.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/cd-detach/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Season3-Change-Detection/cd-detach/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /code/Season3-Change-Detection/cd-detach/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/cd-detach/src/environments/environment.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/cd-detach/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/cd-detach/src/favicon.ico -------------------------------------------------------------------------------- /code/Season3-Change-Detection/cd-detach/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/cd-detach/src/index.html -------------------------------------------------------------------------------- /code/Season3-Change-Detection/cd-detach/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/cd-detach/src/main.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/cd-detach/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/cd-detach/src/polyfills.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/cd-detach/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/cd-detach/src/styles.css -------------------------------------------------------------------------------- /code/Season3-Change-Detection/cd-detach/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/cd-detach/tsconfig.app.json -------------------------------------------------------------------------------- /code/Season3-Change-Detection/cd-detach/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/cd-detach/tsconfig.json -------------------------------------------------------------------------------- /code/Season3-Change-Detection/markForCheck-vs-detectChanges/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/markForCheck-vs-detectChanges/.browserslistrc -------------------------------------------------------------------------------- /code/Season3-Change-Detection/markForCheck-vs-detectChanges/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/markForCheck-vs-detectChanges/.gitignore -------------------------------------------------------------------------------- /code/Season3-Change-Detection/markForCheck-vs-detectChanges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/markForCheck-vs-detectChanges/README.md -------------------------------------------------------------------------------- /code/Season3-Change-Detection/markForCheck-vs-detectChanges/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/markForCheck-vs-detectChanges/angular.json -------------------------------------------------------------------------------- /code/Season3-Change-Detection/markForCheck-vs-detectChanges/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/markForCheck-vs-detectChanges/package-lock.json -------------------------------------------------------------------------------- /code/Season3-Change-Detection/markForCheck-vs-detectChanges/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/markForCheck-vs-detectChanges/package.json -------------------------------------------------------------------------------- /code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/app/app.component.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/app/app.module.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/app/five/five.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/app/five/five.component.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/app/four/four.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/app/four/four.component.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/app/highlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/app/highlight.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/app/one/one.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/app/one/one.component.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/app/seven/seven.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/app/seven/seven.component.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/app/six/six.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/app/six/six.component.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/app/three/three.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/app/three/three.component.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/app/two/two.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/app/two/two.component.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/environments/environment.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/favicon.ico -------------------------------------------------------------------------------- /code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/index.html -------------------------------------------------------------------------------- /code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/main.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/polyfills.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/markForCheck-vs-detectChanges/src/styles.css -------------------------------------------------------------------------------- /code/Season3-Change-Detection/markForCheck-vs-detectChanges/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/markForCheck-vs-detectChanges/tsconfig.app.json -------------------------------------------------------------------------------- /code/Season3-Change-Detection/markForCheck-vs-detectChanges/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/markForCheck-vs-detectChanges/tsconfig.json -------------------------------------------------------------------------------- /code/Season3-Change-Detection/ngzone/ngzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/ngzone/ngzone.js -------------------------------------------------------------------------------- /code/Season3-Change-Detection/ngzone/zone-cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/ngzone/zone-cd.png -------------------------------------------------------------------------------- /code/Season3-Change-Detection/ngzone/zone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/ngzone/zone.js -------------------------------------------------------------------------------- /code/Season3-Change-Detection/no-zones/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/no-zones/.browserslistrc -------------------------------------------------------------------------------- /code/Season3-Change-Detection/no-zones/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/no-zones/.gitignore -------------------------------------------------------------------------------- /code/Season3-Change-Detection/no-zones/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/no-zones/README.md -------------------------------------------------------------------------------- /code/Season3-Change-Detection/no-zones/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/no-zones/angular.json -------------------------------------------------------------------------------- /code/Season3-Change-Detection/no-zones/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/no-zones/package-lock.json -------------------------------------------------------------------------------- /code/Season3-Change-Detection/no-zones/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/no-zones/package.json -------------------------------------------------------------------------------- /code/Season3-Change-Detection/no-zones/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/no-zones/src/app/app.component.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/no-zones/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/no-zones/src/app/app.module.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/no-zones/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Season3-Change-Detection/no-zones/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /code/Season3-Change-Detection/no-zones/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/no-zones/src/environments/environment.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/no-zones/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/no-zones/src/favicon.ico -------------------------------------------------------------------------------- /code/Season3-Change-Detection/no-zones/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/no-zones/src/index.html -------------------------------------------------------------------------------- /code/Season3-Change-Detection/no-zones/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/no-zones/src/main.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/no-zones/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/no-zones/src/polyfills.ts -------------------------------------------------------------------------------- /code/Season3-Change-Detection/no-zones/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/no-zones/src/styles.css -------------------------------------------------------------------------------- /code/Season3-Change-Detection/no-zones/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/no-zones/tsconfig.app.json -------------------------------------------------------------------------------- /code/Season3-Change-Detection/no-zones/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season3-Change-Detection/no-zones/tsconfig.json -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/.browserslistrc -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/.gitignore -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/README.md -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/angular.json -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/extend.webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/extend.webpack.config.js -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/package-lock.json -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/package.json -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/routes.json -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/src/app/about/about-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/src/app/about/about-routing.module.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/src/app/about/about.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/src/app/about/about.component.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/src/app/about/about.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/src/app/about/about.module.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/src/app/app.component.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/src/app/app.module.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/src/app/example/example-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/src/app/example/example-routing.module.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/src/app/example/example.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/src/app/example/example.component.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/src/app/example/example.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/src/app/example/example.module.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/src/app/index/index-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/src/app/index/index-routing.module.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/src/app/index/index.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/src/app/index/index.component.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/src/app/index/index.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/src/app/index/index.module.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/src/app/media/media-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/src/app/media/media-routing.module.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/src/app/media/media.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/src/app/media/media.component.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/src/app/media/media.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/src/app/media/media.module.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/src/environments/environment.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/src/favicon.ico -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/src/index.html -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/src/main.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/src/polyfills.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/src/styles.css -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/tsconfig.app.json -------------------------------------------------------------------------------- /code/Season4-Router-Features/guess-angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/guess-angular/tsconfig.json -------------------------------------------------------------------------------- /code/Season4-Router-Features/preloading/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/preloading/.browserslistrc -------------------------------------------------------------------------------- /code/Season4-Router-Features/preloading/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/preloading/.gitignore -------------------------------------------------------------------------------- /code/Season4-Router-Features/preloading/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/preloading/README.md -------------------------------------------------------------------------------- /code/Season4-Router-Features/preloading/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/preloading/angular.json -------------------------------------------------------------------------------- /code/Season4-Router-Features/preloading/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/preloading/package-lock.json -------------------------------------------------------------------------------- /code/Season4-Router-Features/preloading/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/preloading/package.json -------------------------------------------------------------------------------- /code/Season4-Router-Features/preloading/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/preloading/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/preloading/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/preloading/src/app/app.component.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/preloading/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/preloading/src/app/app.module.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/preloading/src/app/custom-preloading.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/preloading/src/app/custom-preloading.service.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/preloading/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/preloading/src/app/home/home.component.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/preloading/src/app/lazy/lazy.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/preloading/src/app/lazy/lazy.module.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/preloading/src/app/lazy/lazy/lazy.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/preloading/src/app/lazy/lazy/lazy.component.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/preloading/src/app/network-aware-preloading.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/preloading/src/app/network-aware-preloading.service.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/preloading/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Season4-Router-Features/preloading/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /code/Season4-Router-Features/preloading/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/preloading/src/environments/environment.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/preloading/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/preloading/src/favicon.ico -------------------------------------------------------------------------------- /code/Season4-Router-Features/preloading/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/preloading/src/index.html -------------------------------------------------------------------------------- /code/Season4-Router-Features/preloading/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/preloading/src/main.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/preloading/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/preloading/src/polyfills.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/preloading/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/preloading/src/styles.css -------------------------------------------------------------------------------- /code/Season4-Router-Features/preloading/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/preloading/tsconfig.app.json -------------------------------------------------------------------------------- /code/Season4-Router-Features/preloading/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/preloading/tsconfig.json -------------------------------------------------------------------------------- /code/Season4-Router-Features/reuse-strategy/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/reuse-strategy/.browserslistrc -------------------------------------------------------------------------------- /code/Season4-Router-Features/reuse-strategy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/reuse-strategy/.gitignore -------------------------------------------------------------------------------- /code/Season4-Router-Features/reuse-strategy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/reuse-strategy/README.md -------------------------------------------------------------------------------- /code/Season4-Router-Features/reuse-strategy/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/reuse-strategy/angular.json -------------------------------------------------------------------------------- /code/Season4-Router-Features/reuse-strategy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/reuse-strategy/package.json -------------------------------------------------------------------------------- /code/Season4-Router-Features/reuse-strategy/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/reuse-strategy/pnpm-lock.yaml -------------------------------------------------------------------------------- /code/Season4-Router-Features/reuse-strategy/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/reuse-strategy/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/reuse-strategy/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/reuse-strategy/src/app/app.component.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/reuse-strategy/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/reuse-strategy/src/app/app.module.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/reuse-strategy/src/app/base-route-reuse-strategy.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/reuse-strategy/src/app/base-route-reuse-strategy.service.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/reuse-strategy/src/app/book.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/reuse-strategy/src/app/book.service.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/reuse-strategy/src/app/book/book.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/reuse-strategy/src/app/book/book.component.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/reuse-strategy/src/app/curtom-route-reuse-strategy.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/reuse-strategy/src/app/curtom-route-reuse-strategy.service.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/reuse-strategy/src/app/list/list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/reuse-strategy/src/app/list/list.component.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/reuse-strategy/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Season4-Router-Features/reuse-strategy/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /code/Season4-Router-Features/reuse-strategy/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/reuse-strategy/src/environments/environment.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/reuse-strategy/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/reuse-strategy/src/favicon.ico -------------------------------------------------------------------------------- /code/Season4-Router-Features/reuse-strategy/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/reuse-strategy/src/index.html -------------------------------------------------------------------------------- /code/Season4-Router-Features/reuse-strategy/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/reuse-strategy/src/main.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/reuse-strategy/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/reuse-strategy/src/polyfills.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/reuse-strategy/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/reuse-strategy/src/styles.css -------------------------------------------------------------------------------- /code/Season4-Router-Features/reuse-strategy/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/reuse-strategy/tsconfig.app.json -------------------------------------------------------------------------------- /code/Season4-Router-Features/reuse-strategy/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/reuse-strategy/tsconfig.json -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/.browserslistrc -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/.gitignore -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/README.md -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/angular.json -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/package-lock.json -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/package.json -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/src/app/animations/1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/src/app/animations/1.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/src/app/animations/2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/src/app/animations/2.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/src/app/animations/3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/src/app/animations/3.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/src/app/app.component.scss -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/src/app/app.component.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/src/app/app.module.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/src/app/fairy-tern/fairy-tern.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/src/app/fairy-tern/fairy-tern.component.scss -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/src/app/fairy-tern/fairy-tern.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/src/app/fairy-tern/fairy-tern.component.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/src/app/kakapo/kakapo.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/src/app/kakapo/kakapo.component.scss -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/src/app/kakapo/kakapo.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/src/app/kakapo/kakapo.component.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/src/app/nav-bar/nav-bar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/src/app/nav-bar/nav-bar.component.scss -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/src/app/nav-bar/nav-bar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/src/app/nav-bar/nav-bar.component.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/src/app/takahe/takahe.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/src/app/takahe/takahe.component.scss -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/src/app/takahe/takahe.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/src/app/takahe/takahe.component.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/src/environments/environment.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/src/favicon.ico -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/src/index.html -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/src/main.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/src/polyfills.ts -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/src/styles.scss -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/tsconfig.app.json -------------------------------------------------------------------------------- /code/Season4-Router-Features/router-animations/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season4-Router-Features/router-animations/tsconfig.json -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/.editorconfig -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/.gitignore -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/.vscode/extensions.json -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/.vscode/launch.json -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/.vscode/tasks.json -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/README.md -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/angular.json -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/ngsw-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/ngsw-config.json -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/package-lock.json -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/package.json -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/src/app/app.component.html -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/src/app/app.component.ts -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/src/app/app.config.ts -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/src/app/app.routes.ts -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/src/assets/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/src/assets/icons/icon-128x128.png -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/src/assets/icons/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/src/assets/icons/icon-144x144.png -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/src/assets/icons/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/src/assets/icons/icon-152x152.png -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/src/assets/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/src/assets/icons/icon-192x192.png -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/src/assets/icons/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/src/assets/icons/icon-384x384.png -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/src/assets/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/src/assets/icons/icon-512x512.png -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/src/assets/icons/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/src/assets/icons/icon-72x72.png -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/src/assets/icons/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/src/assets/icons/icon-96x96.png -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/src/favicon.ico -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/src/index.html -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/src/main.ts -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/src/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/src/manifest.webmanifest -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/src/styles.css -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/tsconfig.app.json -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/tsconfig.json -------------------------------------------------------------------------------- /code/Season5-Service-Workers/angular-sw/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/angular-sw/tsconfig.spec.json -------------------------------------------------------------------------------- /code/Season5-Service-Workers/pure/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/pure/README.MD -------------------------------------------------------------------------------- /code/Season5-Service-Workers/pure/backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/pure/backend/package-lock.json -------------------------------------------------------------------------------- /code/Season5-Service-Workers/pure/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/pure/backend/package.json -------------------------------------------------------------------------------- /code/Season5-Service-Workers/pure/backend/src/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/pure/backend/src/push.js -------------------------------------------------------------------------------- /code/Season5-Service-Workers/pure/backend/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/pure/backend/src/server.js -------------------------------------------------------------------------------- /code/Season5-Service-Workers/pure/backend/subscription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/pure/backend/subscription.json -------------------------------------------------------------------------------- /code/Season5-Service-Workers/pure/dino.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/pure/dino.html -------------------------------------------------------------------------------- /code/Season5-Service-Workers/pure/index-0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/pure/index-0.html -------------------------------------------------------------------------------- /code/Season5-Service-Workers/pure/index-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/pure/index-1.html -------------------------------------------------------------------------------- /code/Season5-Service-Workers/pure/index-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/pure/index-2.html -------------------------------------------------------------------------------- /code/Season5-Service-Workers/pure/index-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/pure/index-3.html -------------------------------------------------------------------------------- /code/Season5-Service-Workers/pure/index-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/pure/index-4.html -------------------------------------------------------------------------------- /code/Season5-Service-Workers/pure/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/pure/index.html -------------------------------------------------------------------------------- /code/Season5-Service-Workers/pure/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/pure/package-lock.json -------------------------------------------------------------------------------- /code/Season5-Service-Workers/pure/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/pure/sw.js -------------------------------------------------------------------------------- /code/Season5-Service-Workers/pure/sw0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/pure/sw0.js -------------------------------------------------------------------------------- /code/Season5-Service-Workers/pure/sw1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/pure/sw1.js -------------------------------------------------------------------------------- /code/Season5-Service-Workers/pure/sw2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/pure/sw2.js -------------------------------------------------------------------------------- /code/Season5-Service-Workers/pure/sw3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/pure/sw3.js -------------------------------------------------------------------------------- /code/Season5-Service-Workers/pure/sw4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/pure/sw4.js -------------------------------------------------------------------------------- /code/Season5-Service-Workers/pure/web-push-example-app-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/pure/web-push-example-app-flow.png -------------------------------------------------------------------------------- /code/Season5-Service-Workers/sw-storage-limits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/sw-storage-limits/README.md -------------------------------------------------------------------------------- /code/Season5-Service-Workers/sw-storage-limits/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/sw-storage-limits/index.html -------------------------------------------------------------------------------- /code/Season5-Service-Workers/sw-storage-limits/storage/1-cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/sw-storage-limits/storage/1-cookie.js -------------------------------------------------------------------------------- /code/Season5-Service-Workers/sw-storage-limits/storage/2-webStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/sw-storage-limits/storage/2-webStorage.js -------------------------------------------------------------------------------- /code/Season5-Service-Workers/sw-storage-limits/storage/3-indexedDB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/sw-storage-limits/storage/3-indexedDB.js -------------------------------------------------------------------------------- /code/Season5-Service-Workers/sw-storage-limits/storage/4-cacheAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/sw-storage-limits/storage/4-cacheAPI.js -------------------------------------------------------------------------------- /code/Season5-Service-Workers/sw-storage-limits/storage/5-fileAccessAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/sw-storage-limits/storage/5-fileAccessAPI.js -------------------------------------------------------------------------------- /code/Season5-Service-Workers/sw-storage-limits/storage/file.txt: -------------------------------------------------------------------------------- 1 | JohnDoe -------------------------------------------------------------------------------- /code/Season5-Service-Workers/sw-storage-limits/storage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/sw-storage-limits/storage/index.html -------------------------------------------------------------------------------- /code/Season5-Service-Workers/sw-storage-limits/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevermeister/AngularPro-Screencast/HEAD/code/Season5-Service-Workers/sw-storage-limits/sw.js --------------------------------------------------------------------------------