├── angular-forms ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── home │ │ │ ├── home.component.css │ │ │ ├── home.component.html │ │ │ ├── home.component.spec.ts │ │ │ └── home.component.ts │ │ ├── reactive │ │ │ ├── reactive.component.css │ │ │ ├── reactive.component.html │ │ │ ├── reactive.component.spec.ts │ │ │ └── reactive.component.ts │ │ └── template-driven │ │ │ ├── template-driven.component.css │ │ │ ├── template-driven.component.html │ │ │ ├── template-driven.component.spec.ts │ │ │ └── template-driven.component.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json ├── angular-http ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ └── app.module.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.scss │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json ├── angular-pipes ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── initials.pipe.spec.ts │ │ └── initials.pipe.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.scss │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json ├── angular-routing ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── about │ │ │ ├── about.component.css │ │ │ ├── about.component.html │ │ │ ├── about.component.spec.ts │ │ │ └── about.component.ts │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── contact │ │ │ ├── contact.component.css │ │ │ ├── contact.component.html │ │ │ ├── contact.component.spec.ts │ │ │ └── contact.component.ts │ │ ├── header │ │ │ ├── header.component.css │ │ │ ├── header.component.html │ │ │ ├── header.component.spec.ts │ │ │ └── header.component.ts │ │ ├── home │ │ │ ├── home.component.css │ │ │ ├── home.component.html │ │ │ ├── home.component.spec.ts │ │ │ └── home.component.ts │ │ ├── product │ │ │ ├── product.component.css │ │ │ ├── product.component.html │ │ │ ├── product.component.spec.ts │ │ │ └── product.component.ts │ │ └── products │ │ │ ├── products.component.css │ │ │ ├── products.component.html │ │ │ ├── products.component.spec.ts │ │ │ └── products.component.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json ├── components-handson ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── footer │ │ │ ├── footer.component.css │ │ │ ├── footer.component.html │ │ │ ├── footer.component.spec.ts │ │ │ └── footer.component.ts │ │ ├── header │ │ │ ├── header.component.css │ │ │ ├── header.component.html │ │ │ ├── header.component.spec.ts │ │ │ └── header.component.ts │ │ ├── main │ │ │ ├── main.component.css │ │ │ ├── main.component.html │ │ │ ├── main.component.spec.ts │ │ │ └── main.component.ts │ │ └── sidenav │ │ │ ├── sidenav.component.css │ │ │ ├── sidenav.component.html │ │ │ ├── sidenav.component.spec.ts │ │ │ └── sidenav.component.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json ├── data-binding ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ └── app.module.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json ├── directives-handson ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ └── app.module.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json ├── final-project ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── feature │ │ │ ├── feature.module.ts │ │ │ └── star-rating │ │ │ │ ├── star-rating.component.html │ │ │ │ ├── star-rating.component.scss │ │ │ │ ├── star-rating.component.spec.ts │ │ │ │ └── star-rating.component.ts │ │ ├── header │ │ │ ├── header.component.html │ │ │ ├── header.component.scss │ │ │ ├── header.component.spec.ts │ │ │ └── header.component.ts │ │ ├── home │ │ │ ├── home.component.html │ │ │ ├── home.component.scss │ │ │ ├── home.component.spec.ts │ │ │ └── home.component.ts │ │ ├── login │ │ │ ├── login.component.html │ │ │ ├── login.component.scss │ │ │ ├── login.component.spec.ts │ │ │ └── login.component.ts │ │ ├── movie │ │ │ ├── movie.component.html │ │ │ ├── movie.component.scss │ │ │ ├── movie.component.spec.ts │ │ │ └── movie.component.ts │ │ └── services │ │ │ ├── auth.service.spec.ts │ │ │ └── auth.service.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── data │ │ │ ├── popular-movies.json │ │ │ ├── theatre-movies.json │ │ │ └── trending-movies.json │ │ └── images │ │ │ └── film.png │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.scss │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json ├── input-output-handson ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ └── child │ │ │ ├── child.component.css │ │ │ ├── child.component.html │ │ │ ├── child.component.spec.ts │ │ │ └── child.component.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json ├── life-cycle-hooks ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── child │ │ │ ├── child.component.css │ │ │ ├── child.component.html │ │ │ ├── child.component.spec.ts │ │ │ └── child.component.ts │ │ └── parent │ │ │ ├── parent.component.css │ │ │ ├── parent.component.html │ │ │ ├── parent.component.spec.ts │ │ │ └── parent.component.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json ├── services-handson ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── first │ │ │ ├── first.component.css │ │ │ ├── first.component.html │ │ │ ├── first.component.spec.ts │ │ │ └── first.component.ts │ │ ├── second │ │ │ ├── second.component.css │ │ │ ├── second.component.html │ │ │ ├── second.component.spec.ts │ │ │ └── second.component.ts │ │ ├── shapes.service.spec.ts │ │ └── shapes.service.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json └── template-reference-handson ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── src ├── app │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ └── app.module.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /angular-forms/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/.browserslistrc -------------------------------------------------------------------------------- /angular-forms/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/.editorconfig -------------------------------------------------------------------------------- /angular-forms/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/.gitignore -------------------------------------------------------------------------------- /angular-forms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/README.md -------------------------------------------------------------------------------- /angular-forms/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/angular.json -------------------------------------------------------------------------------- /angular-forms/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/e2e/protractor.conf.js -------------------------------------------------------------------------------- /angular-forms/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /angular-forms/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/e2e/src/app.po.ts -------------------------------------------------------------------------------- /angular-forms/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/e2e/tsconfig.json -------------------------------------------------------------------------------- /angular-forms/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/karma.conf.js -------------------------------------------------------------------------------- /angular-forms/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/package-lock.json -------------------------------------------------------------------------------- /angular-forms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/package.json -------------------------------------------------------------------------------- /angular-forms/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /angular-forms/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-forms/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/src/app/app.component.html -------------------------------------------------------------------------------- /angular-forms/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /angular-forms/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/src/app/app.component.ts -------------------------------------------------------------------------------- /angular-forms/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/src/app/app.module.ts -------------------------------------------------------------------------------- /angular-forms/src/app/home/home.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/src/app/home/home.component.css -------------------------------------------------------------------------------- /angular-forms/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/src/app/home/home.component.html -------------------------------------------------------------------------------- /angular-forms/src/app/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/src/app/home/home.component.spec.ts -------------------------------------------------------------------------------- /angular-forms/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/src/app/home/home.component.ts -------------------------------------------------------------------------------- /angular-forms/src/app/reactive/reactive.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/src/app/reactive/reactive.component.css -------------------------------------------------------------------------------- /angular-forms/src/app/reactive/reactive.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/src/app/reactive/reactive.component.html -------------------------------------------------------------------------------- /angular-forms/src/app/reactive/reactive.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/src/app/reactive/reactive.component.spec.ts -------------------------------------------------------------------------------- /angular-forms/src/app/reactive/reactive.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/src/app/reactive/reactive.component.ts -------------------------------------------------------------------------------- /angular-forms/src/app/template-driven/template-driven.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/src/app/template-driven/template-driven.component.css -------------------------------------------------------------------------------- /angular-forms/src/app/template-driven/template-driven.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/src/app/template-driven/template-driven.component.html -------------------------------------------------------------------------------- /angular-forms/src/app/template-driven/template-driven.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/src/app/template-driven/template-driven.component.spec.ts -------------------------------------------------------------------------------- /angular-forms/src/app/template-driven/template-driven.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/src/app/template-driven/template-driven.component.ts -------------------------------------------------------------------------------- /angular-forms/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-forms/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /angular-forms/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/src/environments/environment.ts -------------------------------------------------------------------------------- /angular-forms/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/src/favicon.ico -------------------------------------------------------------------------------- /angular-forms/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/src/index.html -------------------------------------------------------------------------------- /angular-forms/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/src/main.ts -------------------------------------------------------------------------------- /angular-forms/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/src/polyfills.ts -------------------------------------------------------------------------------- /angular-forms/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/src/styles.css -------------------------------------------------------------------------------- /angular-forms/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/src/test.ts -------------------------------------------------------------------------------- /angular-forms/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/tsconfig.app.json -------------------------------------------------------------------------------- /angular-forms/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/tsconfig.json -------------------------------------------------------------------------------- /angular-forms/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/tsconfig.spec.json -------------------------------------------------------------------------------- /angular-forms/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-forms/tslint.json -------------------------------------------------------------------------------- /angular-http/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-http/.browserslistrc -------------------------------------------------------------------------------- /angular-http/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-http/.editorconfig -------------------------------------------------------------------------------- /angular-http/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-http/.gitignore -------------------------------------------------------------------------------- /angular-http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-http/README.md -------------------------------------------------------------------------------- /angular-http/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-http/angular.json -------------------------------------------------------------------------------- /angular-http/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-http/e2e/protractor.conf.js -------------------------------------------------------------------------------- /angular-http/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-http/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /angular-http/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-http/e2e/src/app.po.ts -------------------------------------------------------------------------------- /angular-http/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-http/e2e/tsconfig.json -------------------------------------------------------------------------------- /angular-http/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-http/karma.conf.js -------------------------------------------------------------------------------- /angular-http/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-http/package-lock.json -------------------------------------------------------------------------------- /angular-http/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-http/package.json -------------------------------------------------------------------------------- /angular-http/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-http/src/app/app.component.html -------------------------------------------------------------------------------- /angular-http/src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-http/src/app/app.component.scss -------------------------------------------------------------------------------- /angular-http/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-http/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /angular-http/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-http/src/app/app.component.ts -------------------------------------------------------------------------------- /angular-http/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-http/src/app/app.module.ts -------------------------------------------------------------------------------- /angular-http/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-http/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /angular-http/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-http/src/environments/environment.ts -------------------------------------------------------------------------------- /angular-http/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-http/src/favicon.ico -------------------------------------------------------------------------------- /angular-http/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-http/src/index.html -------------------------------------------------------------------------------- /angular-http/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-http/src/main.ts -------------------------------------------------------------------------------- /angular-http/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-http/src/polyfills.ts -------------------------------------------------------------------------------- /angular-http/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-http/src/styles.scss -------------------------------------------------------------------------------- /angular-http/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-http/src/test.ts -------------------------------------------------------------------------------- /angular-http/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-http/tsconfig.app.json -------------------------------------------------------------------------------- /angular-http/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-http/tsconfig.json -------------------------------------------------------------------------------- /angular-http/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-http/tsconfig.spec.json -------------------------------------------------------------------------------- /angular-http/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-http/tslint.json -------------------------------------------------------------------------------- /angular-pipes/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/.browserslistrc -------------------------------------------------------------------------------- /angular-pipes/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/.editorconfig -------------------------------------------------------------------------------- /angular-pipes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/.gitignore -------------------------------------------------------------------------------- /angular-pipes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/README.md -------------------------------------------------------------------------------- /angular-pipes/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/angular.json -------------------------------------------------------------------------------- /angular-pipes/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/e2e/protractor.conf.js -------------------------------------------------------------------------------- /angular-pipes/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /angular-pipes/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/e2e/src/app.po.ts -------------------------------------------------------------------------------- /angular-pipes/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/e2e/tsconfig.json -------------------------------------------------------------------------------- /angular-pipes/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/karma.conf.js -------------------------------------------------------------------------------- /angular-pipes/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/package-lock.json -------------------------------------------------------------------------------- /angular-pipes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/package.json -------------------------------------------------------------------------------- /angular-pipes/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/src/app/app.component.html -------------------------------------------------------------------------------- /angular-pipes/src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/src/app/app.component.scss -------------------------------------------------------------------------------- /angular-pipes/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /angular-pipes/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/src/app/app.component.ts -------------------------------------------------------------------------------- /angular-pipes/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/src/app/app.module.ts -------------------------------------------------------------------------------- /angular-pipes/src/app/initials.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/src/app/initials.pipe.spec.ts -------------------------------------------------------------------------------- /angular-pipes/src/app/initials.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/src/app/initials.pipe.ts -------------------------------------------------------------------------------- /angular-pipes/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-pipes/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /angular-pipes/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/src/environments/environment.ts -------------------------------------------------------------------------------- /angular-pipes/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/src/favicon.ico -------------------------------------------------------------------------------- /angular-pipes/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/src/index.html -------------------------------------------------------------------------------- /angular-pipes/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/src/main.ts -------------------------------------------------------------------------------- /angular-pipes/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/src/polyfills.ts -------------------------------------------------------------------------------- /angular-pipes/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/src/styles.scss -------------------------------------------------------------------------------- /angular-pipes/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/src/test.ts -------------------------------------------------------------------------------- /angular-pipes/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/tsconfig.app.json -------------------------------------------------------------------------------- /angular-pipes/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/tsconfig.json -------------------------------------------------------------------------------- /angular-pipes/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/tsconfig.spec.json -------------------------------------------------------------------------------- /angular-pipes/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-pipes/tslint.json -------------------------------------------------------------------------------- /angular-routing/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/.browserslistrc -------------------------------------------------------------------------------- /angular-routing/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/.editorconfig -------------------------------------------------------------------------------- /angular-routing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/.gitignore -------------------------------------------------------------------------------- /angular-routing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/README.md -------------------------------------------------------------------------------- /angular-routing/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/angular.json -------------------------------------------------------------------------------- /angular-routing/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/e2e/protractor.conf.js -------------------------------------------------------------------------------- /angular-routing/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /angular-routing/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/e2e/src/app.po.ts -------------------------------------------------------------------------------- /angular-routing/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/e2e/tsconfig.json -------------------------------------------------------------------------------- /angular-routing/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/karma.conf.js -------------------------------------------------------------------------------- /angular-routing/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/package-lock.json -------------------------------------------------------------------------------- /angular-routing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/package.json -------------------------------------------------------------------------------- /angular-routing/src/app/about/about.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/about/about.component.css -------------------------------------------------------------------------------- /angular-routing/src/app/about/about.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/about/about.component.html -------------------------------------------------------------------------------- /angular-routing/src/app/about/about.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/about/about.component.spec.ts -------------------------------------------------------------------------------- /angular-routing/src/app/about/about.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/about/about.component.ts -------------------------------------------------------------------------------- /angular-routing/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /angular-routing/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-routing/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/app.component.html -------------------------------------------------------------------------------- /angular-routing/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /angular-routing/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/app.component.ts -------------------------------------------------------------------------------- /angular-routing/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/app.module.ts -------------------------------------------------------------------------------- /angular-routing/src/app/contact/contact.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/contact/contact.component.css -------------------------------------------------------------------------------- /angular-routing/src/app/contact/contact.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/contact/contact.component.html -------------------------------------------------------------------------------- /angular-routing/src/app/contact/contact.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/contact/contact.component.spec.ts -------------------------------------------------------------------------------- /angular-routing/src/app/contact/contact.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/contact/contact.component.ts -------------------------------------------------------------------------------- /angular-routing/src/app/header/header.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/header/header.component.css -------------------------------------------------------------------------------- /angular-routing/src/app/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/header/header.component.html -------------------------------------------------------------------------------- /angular-routing/src/app/header/header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/header/header.component.spec.ts -------------------------------------------------------------------------------- /angular-routing/src/app/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/header/header.component.ts -------------------------------------------------------------------------------- /angular-routing/src/app/home/home.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/home/home.component.css -------------------------------------------------------------------------------- /angular-routing/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/home/home.component.html -------------------------------------------------------------------------------- /angular-routing/src/app/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/home/home.component.spec.ts -------------------------------------------------------------------------------- /angular-routing/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/home/home.component.ts -------------------------------------------------------------------------------- /angular-routing/src/app/product/product.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/product/product.component.css -------------------------------------------------------------------------------- /angular-routing/src/app/product/product.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/product/product.component.html -------------------------------------------------------------------------------- /angular-routing/src/app/product/product.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/product/product.component.spec.ts -------------------------------------------------------------------------------- /angular-routing/src/app/product/product.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/product/product.component.ts -------------------------------------------------------------------------------- /angular-routing/src/app/products/products.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/products/products.component.css -------------------------------------------------------------------------------- /angular-routing/src/app/products/products.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/products/products.component.html -------------------------------------------------------------------------------- /angular-routing/src/app/products/products.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/products/products.component.spec.ts -------------------------------------------------------------------------------- /angular-routing/src/app/products/products.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/app/products/products.component.ts -------------------------------------------------------------------------------- /angular-routing/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-routing/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /angular-routing/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/environments/environment.ts -------------------------------------------------------------------------------- /angular-routing/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/favicon.ico -------------------------------------------------------------------------------- /angular-routing/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/index.html -------------------------------------------------------------------------------- /angular-routing/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/main.ts -------------------------------------------------------------------------------- /angular-routing/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/polyfills.ts -------------------------------------------------------------------------------- /angular-routing/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/styles.css -------------------------------------------------------------------------------- /angular-routing/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/src/test.ts -------------------------------------------------------------------------------- /angular-routing/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/tsconfig.app.json -------------------------------------------------------------------------------- /angular-routing/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/tsconfig.json -------------------------------------------------------------------------------- /angular-routing/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/tsconfig.spec.json -------------------------------------------------------------------------------- /angular-routing/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/angular-routing/tslint.json -------------------------------------------------------------------------------- /components-handson/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/.browserslistrc -------------------------------------------------------------------------------- /components-handson/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/.editorconfig -------------------------------------------------------------------------------- /components-handson/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/.gitignore -------------------------------------------------------------------------------- /components-handson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/README.md -------------------------------------------------------------------------------- /components-handson/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/angular.json -------------------------------------------------------------------------------- /components-handson/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/e2e/protractor.conf.js -------------------------------------------------------------------------------- /components-handson/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /components-handson/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/e2e/src/app.po.ts -------------------------------------------------------------------------------- /components-handson/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/e2e/tsconfig.json -------------------------------------------------------------------------------- /components-handson/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/karma.conf.js -------------------------------------------------------------------------------- /components-handson/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/package-lock.json -------------------------------------------------------------------------------- /components-handson/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/package.json -------------------------------------------------------------------------------- /components-handson/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/src/app/app.component.css -------------------------------------------------------------------------------- /components-handson/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/src/app/app.component.html -------------------------------------------------------------------------------- /components-handson/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /components-handson/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/src/app/app.component.ts -------------------------------------------------------------------------------- /components-handson/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/src/app/app.module.ts -------------------------------------------------------------------------------- /components-handson/src/app/footer/footer.component.css: -------------------------------------------------------------------------------- 1 | h5 { 2 | color: #fff; 3 | } -------------------------------------------------------------------------------- /components-handson/src/app/footer/footer.component.html: -------------------------------------------------------------------------------- 1 |
Copyright information
2 | -------------------------------------------------------------------------------- /components-handson/src/app/footer/footer.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/src/app/footer/footer.component.spec.ts -------------------------------------------------------------------------------- /components-handson/src/app/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/src/app/footer/footer.component.ts -------------------------------------------------------------------------------- /components-handson/src/app/header/header.component.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: #fff; 3 | } -------------------------------------------------------------------------------- /components-handson/src/app/header/header.component.html: -------------------------------------------------------------------------------- 1 |

Website Header

-------------------------------------------------------------------------------- /components-handson/src/app/header/header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/src/app/header/header.component.spec.ts -------------------------------------------------------------------------------- /components-handson/src/app/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/src/app/header/header.component.ts -------------------------------------------------------------------------------- /components-handson/src/app/main/main.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/src/app/main/main.component.css -------------------------------------------------------------------------------- /components-handson/src/app/main/main.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/src/app/main/main.component.html -------------------------------------------------------------------------------- /components-handson/src/app/main/main.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/src/app/main/main.component.spec.ts -------------------------------------------------------------------------------- /components-handson/src/app/main/main.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/src/app/main/main.component.ts -------------------------------------------------------------------------------- /components-handson/src/app/sidenav/sidenav.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/src/app/sidenav/sidenav.component.css -------------------------------------------------------------------------------- /components-handson/src/app/sidenav/sidenav.component.html: -------------------------------------------------------------------------------- 1 |
Side Navigation
2 | -------------------------------------------------------------------------------- /components-handson/src/app/sidenav/sidenav.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/src/app/sidenav/sidenav.component.spec.ts -------------------------------------------------------------------------------- /components-handson/src/app/sidenav/sidenav.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/src/app/sidenav/sidenav.component.ts -------------------------------------------------------------------------------- /components-handson/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components-handson/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /components-handson/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/src/environments/environment.ts -------------------------------------------------------------------------------- /components-handson/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/src/favicon.ico -------------------------------------------------------------------------------- /components-handson/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/src/index.html -------------------------------------------------------------------------------- /components-handson/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/src/main.ts -------------------------------------------------------------------------------- /components-handson/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/src/polyfills.ts -------------------------------------------------------------------------------- /components-handson/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/src/styles.css -------------------------------------------------------------------------------- /components-handson/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/src/test.ts -------------------------------------------------------------------------------- /components-handson/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/tsconfig.app.json -------------------------------------------------------------------------------- /components-handson/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/tsconfig.json -------------------------------------------------------------------------------- /components-handson/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/tsconfig.spec.json -------------------------------------------------------------------------------- /components-handson/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/components-handson/tslint.json -------------------------------------------------------------------------------- /data-binding/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/data-binding/.browserslistrc -------------------------------------------------------------------------------- /data-binding/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/data-binding/.editorconfig -------------------------------------------------------------------------------- /data-binding/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/data-binding/.gitignore -------------------------------------------------------------------------------- /data-binding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/data-binding/README.md -------------------------------------------------------------------------------- /data-binding/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/data-binding/angular.json -------------------------------------------------------------------------------- /data-binding/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/data-binding/e2e/protractor.conf.js -------------------------------------------------------------------------------- /data-binding/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/data-binding/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /data-binding/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/data-binding/e2e/src/app.po.ts -------------------------------------------------------------------------------- /data-binding/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/data-binding/e2e/tsconfig.json -------------------------------------------------------------------------------- /data-binding/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/data-binding/karma.conf.js -------------------------------------------------------------------------------- /data-binding/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/data-binding/package-lock.json -------------------------------------------------------------------------------- /data-binding/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/data-binding/package.json -------------------------------------------------------------------------------- /data-binding/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data-binding/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/data-binding/src/app/app.component.html -------------------------------------------------------------------------------- /data-binding/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/data-binding/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /data-binding/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/data-binding/src/app/app.component.ts -------------------------------------------------------------------------------- /data-binding/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/data-binding/src/app/app.module.ts -------------------------------------------------------------------------------- /data-binding/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data-binding/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /data-binding/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/data-binding/src/environments/environment.ts -------------------------------------------------------------------------------- /data-binding/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/data-binding/src/favicon.ico -------------------------------------------------------------------------------- /data-binding/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/data-binding/src/index.html -------------------------------------------------------------------------------- /data-binding/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/data-binding/src/main.ts -------------------------------------------------------------------------------- /data-binding/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/data-binding/src/polyfills.ts -------------------------------------------------------------------------------- /data-binding/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/data-binding/src/styles.css -------------------------------------------------------------------------------- /data-binding/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/data-binding/src/test.ts -------------------------------------------------------------------------------- /data-binding/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/data-binding/tsconfig.app.json -------------------------------------------------------------------------------- /data-binding/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/data-binding/tsconfig.json -------------------------------------------------------------------------------- /data-binding/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/data-binding/tsconfig.spec.json -------------------------------------------------------------------------------- /data-binding/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/data-binding/tslint.json -------------------------------------------------------------------------------- /directives-handson/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/directives-handson/.browserslistrc -------------------------------------------------------------------------------- /directives-handson/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/directives-handson/.editorconfig -------------------------------------------------------------------------------- /directives-handson/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/directives-handson/.gitignore -------------------------------------------------------------------------------- /directives-handson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/directives-handson/README.md -------------------------------------------------------------------------------- /directives-handson/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/directives-handson/angular.json -------------------------------------------------------------------------------- /directives-handson/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/directives-handson/e2e/protractor.conf.js -------------------------------------------------------------------------------- /directives-handson/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/directives-handson/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /directives-handson/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/directives-handson/e2e/src/app.po.ts -------------------------------------------------------------------------------- /directives-handson/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/directives-handson/e2e/tsconfig.json -------------------------------------------------------------------------------- /directives-handson/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/directives-handson/karma.conf.js -------------------------------------------------------------------------------- /directives-handson/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/directives-handson/package-lock.json -------------------------------------------------------------------------------- /directives-handson/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/directives-handson/package.json -------------------------------------------------------------------------------- /directives-handson/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/directives-handson/src/app/app.component.css -------------------------------------------------------------------------------- /directives-handson/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/directives-handson/src/app/app.component.html -------------------------------------------------------------------------------- /directives-handson/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/directives-handson/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /directives-handson/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/directives-handson/src/app/app.component.ts -------------------------------------------------------------------------------- /directives-handson/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/directives-handson/src/app/app.module.ts -------------------------------------------------------------------------------- /directives-handson/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /directives-handson/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /directives-handson/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/directives-handson/src/environments/environment.ts -------------------------------------------------------------------------------- /directives-handson/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/directives-handson/src/favicon.ico -------------------------------------------------------------------------------- /directives-handson/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/directives-handson/src/index.html -------------------------------------------------------------------------------- /directives-handson/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/directives-handson/src/main.ts -------------------------------------------------------------------------------- /directives-handson/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/directives-handson/src/polyfills.ts -------------------------------------------------------------------------------- /directives-handson/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/directives-handson/src/styles.css -------------------------------------------------------------------------------- /directives-handson/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/directives-handson/src/test.ts -------------------------------------------------------------------------------- /directives-handson/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/directives-handson/tsconfig.app.json -------------------------------------------------------------------------------- /directives-handson/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/directives-handson/tsconfig.json -------------------------------------------------------------------------------- /directives-handson/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/directives-handson/tsconfig.spec.json -------------------------------------------------------------------------------- /directives-handson/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/directives-handson/tslint.json -------------------------------------------------------------------------------- /final-project/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/.browserslistrc -------------------------------------------------------------------------------- /final-project/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/.editorconfig -------------------------------------------------------------------------------- /final-project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/.gitignore -------------------------------------------------------------------------------- /final-project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/README.md -------------------------------------------------------------------------------- /final-project/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/angular.json -------------------------------------------------------------------------------- /final-project/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/e2e/protractor.conf.js -------------------------------------------------------------------------------- /final-project/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /final-project/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/e2e/src/app.po.ts -------------------------------------------------------------------------------- /final-project/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/e2e/tsconfig.json -------------------------------------------------------------------------------- /final-project/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/karma.conf.js -------------------------------------------------------------------------------- /final-project/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/package-lock.json -------------------------------------------------------------------------------- /final-project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/package.json -------------------------------------------------------------------------------- /final-project/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /final-project/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/app/app.component.html -------------------------------------------------------------------------------- /final-project/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /final-project/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /final-project/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/app/app.component.ts -------------------------------------------------------------------------------- /final-project/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/app/app.module.ts -------------------------------------------------------------------------------- /final-project/src/app/feature/feature.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/app/feature/feature.module.ts -------------------------------------------------------------------------------- /final-project/src/app/feature/star-rating/star-rating.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/app/feature/star-rating/star-rating.component.html -------------------------------------------------------------------------------- /final-project/src/app/feature/star-rating/star-rating.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/app/feature/star-rating/star-rating.component.scss -------------------------------------------------------------------------------- /final-project/src/app/feature/star-rating/star-rating.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/app/feature/star-rating/star-rating.component.spec.ts -------------------------------------------------------------------------------- /final-project/src/app/feature/star-rating/star-rating.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/app/feature/star-rating/star-rating.component.ts -------------------------------------------------------------------------------- /final-project/src/app/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/app/header/header.component.html -------------------------------------------------------------------------------- /final-project/src/app/header/header.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/app/header/header.component.scss -------------------------------------------------------------------------------- /final-project/src/app/header/header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/app/header/header.component.spec.ts -------------------------------------------------------------------------------- /final-project/src/app/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/app/header/header.component.ts -------------------------------------------------------------------------------- /final-project/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/app/home/home.component.html -------------------------------------------------------------------------------- /final-project/src/app/home/home.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/app/home/home.component.scss -------------------------------------------------------------------------------- /final-project/src/app/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/app/home/home.component.spec.ts -------------------------------------------------------------------------------- /final-project/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/app/home/home.component.ts -------------------------------------------------------------------------------- /final-project/src/app/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/app/login/login.component.html -------------------------------------------------------------------------------- /final-project/src/app/login/login.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/app/login/login.component.scss -------------------------------------------------------------------------------- /final-project/src/app/login/login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/app/login/login.component.spec.ts -------------------------------------------------------------------------------- /final-project/src/app/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/app/login/login.component.ts -------------------------------------------------------------------------------- /final-project/src/app/movie/movie.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/app/movie/movie.component.html -------------------------------------------------------------------------------- /final-project/src/app/movie/movie.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/app/movie/movie.component.scss -------------------------------------------------------------------------------- /final-project/src/app/movie/movie.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/app/movie/movie.component.spec.ts -------------------------------------------------------------------------------- /final-project/src/app/movie/movie.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/app/movie/movie.component.ts -------------------------------------------------------------------------------- /final-project/src/app/services/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/app/services/auth.service.spec.ts -------------------------------------------------------------------------------- /final-project/src/app/services/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/app/services/auth.service.ts -------------------------------------------------------------------------------- /final-project/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /final-project/src/assets/data/popular-movies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/assets/data/popular-movies.json -------------------------------------------------------------------------------- /final-project/src/assets/data/theatre-movies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/assets/data/theatre-movies.json -------------------------------------------------------------------------------- /final-project/src/assets/data/trending-movies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/assets/data/trending-movies.json -------------------------------------------------------------------------------- /final-project/src/assets/images/film.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/assets/images/film.png -------------------------------------------------------------------------------- /final-project/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /final-project/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/environments/environment.ts -------------------------------------------------------------------------------- /final-project/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/favicon.ico -------------------------------------------------------------------------------- /final-project/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/index.html -------------------------------------------------------------------------------- /final-project/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/main.ts -------------------------------------------------------------------------------- /final-project/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/polyfills.ts -------------------------------------------------------------------------------- /final-project/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/styles.scss -------------------------------------------------------------------------------- /final-project/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/src/test.ts -------------------------------------------------------------------------------- /final-project/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/tsconfig.app.json -------------------------------------------------------------------------------- /final-project/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/tsconfig.json -------------------------------------------------------------------------------- /final-project/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/tsconfig.spec.json -------------------------------------------------------------------------------- /final-project/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/final-project/tslint.json -------------------------------------------------------------------------------- /input-output-handson/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/.browserslistrc -------------------------------------------------------------------------------- /input-output-handson/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/.editorconfig -------------------------------------------------------------------------------- /input-output-handson/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/.gitignore -------------------------------------------------------------------------------- /input-output-handson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/README.md -------------------------------------------------------------------------------- /input-output-handson/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/angular.json -------------------------------------------------------------------------------- /input-output-handson/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/e2e/protractor.conf.js -------------------------------------------------------------------------------- /input-output-handson/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /input-output-handson/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/e2e/src/app.po.ts -------------------------------------------------------------------------------- /input-output-handson/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/e2e/tsconfig.json -------------------------------------------------------------------------------- /input-output-handson/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/karma.conf.js -------------------------------------------------------------------------------- /input-output-handson/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/package-lock.json -------------------------------------------------------------------------------- /input-output-handson/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/package.json -------------------------------------------------------------------------------- /input-output-handson/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/src/app/app.component.css -------------------------------------------------------------------------------- /input-output-handson/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/src/app/app.component.html -------------------------------------------------------------------------------- /input-output-handson/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /input-output-handson/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/src/app/app.component.ts -------------------------------------------------------------------------------- /input-output-handson/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/src/app/app.module.ts -------------------------------------------------------------------------------- /input-output-handson/src/app/child/child.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/src/app/child/child.component.css -------------------------------------------------------------------------------- /input-output-handson/src/app/child/child.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/src/app/child/child.component.html -------------------------------------------------------------------------------- /input-output-handson/src/app/child/child.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/src/app/child/child.component.spec.ts -------------------------------------------------------------------------------- /input-output-handson/src/app/child/child.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/src/app/child/child.component.ts -------------------------------------------------------------------------------- /input-output-handson/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /input-output-handson/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /input-output-handson/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/src/environments/environment.ts -------------------------------------------------------------------------------- /input-output-handson/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/src/favicon.ico -------------------------------------------------------------------------------- /input-output-handson/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/src/index.html -------------------------------------------------------------------------------- /input-output-handson/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/src/main.ts -------------------------------------------------------------------------------- /input-output-handson/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/src/polyfills.ts -------------------------------------------------------------------------------- /input-output-handson/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/src/styles.css -------------------------------------------------------------------------------- /input-output-handson/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/src/test.ts -------------------------------------------------------------------------------- /input-output-handson/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/tsconfig.app.json -------------------------------------------------------------------------------- /input-output-handson/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/tsconfig.json -------------------------------------------------------------------------------- /input-output-handson/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/tsconfig.spec.json -------------------------------------------------------------------------------- /input-output-handson/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/input-output-handson/tslint.json -------------------------------------------------------------------------------- /life-cycle-hooks/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/.browserslistrc -------------------------------------------------------------------------------- /life-cycle-hooks/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/.editorconfig -------------------------------------------------------------------------------- /life-cycle-hooks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/.gitignore -------------------------------------------------------------------------------- /life-cycle-hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/README.md -------------------------------------------------------------------------------- /life-cycle-hooks/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/angular.json -------------------------------------------------------------------------------- /life-cycle-hooks/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/e2e/protractor.conf.js -------------------------------------------------------------------------------- /life-cycle-hooks/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /life-cycle-hooks/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/e2e/src/app.po.ts -------------------------------------------------------------------------------- /life-cycle-hooks/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/e2e/tsconfig.json -------------------------------------------------------------------------------- /life-cycle-hooks/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/karma.conf.js -------------------------------------------------------------------------------- /life-cycle-hooks/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/package-lock.json -------------------------------------------------------------------------------- /life-cycle-hooks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/package.json -------------------------------------------------------------------------------- /life-cycle-hooks/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /life-cycle-hooks/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/src/app/app.component.html -------------------------------------------------------------------------------- /life-cycle-hooks/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /life-cycle-hooks/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/src/app/app.component.ts -------------------------------------------------------------------------------- /life-cycle-hooks/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/src/app/app.module.ts -------------------------------------------------------------------------------- /life-cycle-hooks/src/app/child/child.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /life-cycle-hooks/src/app/child/child.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/src/app/child/child.component.html -------------------------------------------------------------------------------- /life-cycle-hooks/src/app/child/child.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/src/app/child/child.component.spec.ts -------------------------------------------------------------------------------- /life-cycle-hooks/src/app/child/child.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/src/app/child/child.component.ts -------------------------------------------------------------------------------- /life-cycle-hooks/src/app/parent/parent.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /life-cycle-hooks/src/app/parent/parent.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/src/app/parent/parent.component.html -------------------------------------------------------------------------------- /life-cycle-hooks/src/app/parent/parent.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/src/app/parent/parent.component.spec.ts -------------------------------------------------------------------------------- /life-cycle-hooks/src/app/parent/parent.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/src/app/parent/parent.component.ts -------------------------------------------------------------------------------- /life-cycle-hooks/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /life-cycle-hooks/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /life-cycle-hooks/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/src/environments/environment.ts -------------------------------------------------------------------------------- /life-cycle-hooks/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/src/favicon.ico -------------------------------------------------------------------------------- /life-cycle-hooks/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/src/index.html -------------------------------------------------------------------------------- /life-cycle-hooks/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/src/main.ts -------------------------------------------------------------------------------- /life-cycle-hooks/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/src/polyfills.ts -------------------------------------------------------------------------------- /life-cycle-hooks/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/src/styles.css -------------------------------------------------------------------------------- /life-cycle-hooks/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/src/test.ts -------------------------------------------------------------------------------- /life-cycle-hooks/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/tsconfig.app.json -------------------------------------------------------------------------------- /life-cycle-hooks/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/tsconfig.json -------------------------------------------------------------------------------- /life-cycle-hooks/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/tsconfig.spec.json -------------------------------------------------------------------------------- /life-cycle-hooks/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/life-cycle-hooks/tslint.json -------------------------------------------------------------------------------- /services-handson/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/.browserslistrc -------------------------------------------------------------------------------- /services-handson/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/.editorconfig -------------------------------------------------------------------------------- /services-handson/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/.gitignore -------------------------------------------------------------------------------- /services-handson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/README.md -------------------------------------------------------------------------------- /services-handson/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/angular.json -------------------------------------------------------------------------------- /services-handson/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/e2e/protractor.conf.js -------------------------------------------------------------------------------- /services-handson/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /services-handson/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/e2e/src/app.po.ts -------------------------------------------------------------------------------- /services-handson/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/e2e/tsconfig.json -------------------------------------------------------------------------------- /services-handson/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/karma.conf.js -------------------------------------------------------------------------------- /services-handson/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/package-lock.json -------------------------------------------------------------------------------- /services-handson/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/package.json -------------------------------------------------------------------------------- /services-handson/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services-handson/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/src/app/app.component.html -------------------------------------------------------------------------------- /services-handson/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /services-handson/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/src/app/app.component.ts -------------------------------------------------------------------------------- /services-handson/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/src/app/app.module.ts -------------------------------------------------------------------------------- /services-handson/src/app/first/first.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/src/app/first/first.component.css -------------------------------------------------------------------------------- /services-handson/src/app/first/first.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/src/app/first/first.component.html -------------------------------------------------------------------------------- /services-handson/src/app/first/first.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/src/app/first/first.component.spec.ts -------------------------------------------------------------------------------- /services-handson/src/app/first/first.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/src/app/first/first.component.ts -------------------------------------------------------------------------------- /services-handson/src/app/second/second.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/src/app/second/second.component.css -------------------------------------------------------------------------------- /services-handson/src/app/second/second.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/src/app/second/second.component.html -------------------------------------------------------------------------------- /services-handson/src/app/second/second.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/src/app/second/second.component.spec.ts -------------------------------------------------------------------------------- /services-handson/src/app/second/second.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/src/app/second/second.component.ts -------------------------------------------------------------------------------- /services-handson/src/app/shapes.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/src/app/shapes.service.spec.ts -------------------------------------------------------------------------------- /services-handson/src/app/shapes.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/src/app/shapes.service.ts -------------------------------------------------------------------------------- /services-handson/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services-handson/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /services-handson/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/src/environments/environment.ts -------------------------------------------------------------------------------- /services-handson/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/src/favicon.ico -------------------------------------------------------------------------------- /services-handson/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/src/index.html -------------------------------------------------------------------------------- /services-handson/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/src/main.ts -------------------------------------------------------------------------------- /services-handson/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/src/polyfills.ts -------------------------------------------------------------------------------- /services-handson/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/src/styles.css -------------------------------------------------------------------------------- /services-handson/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/src/test.ts -------------------------------------------------------------------------------- /services-handson/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/tsconfig.app.json -------------------------------------------------------------------------------- /services-handson/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/tsconfig.json -------------------------------------------------------------------------------- /services-handson/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/tsconfig.spec.json -------------------------------------------------------------------------------- /services-handson/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/services-handson/tslint.json -------------------------------------------------------------------------------- /template-reference-handson/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/template-reference-handson/.browserslistrc -------------------------------------------------------------------------------- /template-reference-handson/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/template-reference-handson/.editorconfig -------------------------------------------------------------------------------- /template-reference-handson/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/template-reference-handson/.gitignore -------------------------------------------------------------------------------- /template-reference-handson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/template-reference-handson/README.md -------------------------------------------------------------------------------- /template-reference-handson/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/template-reference-handson/angular.json -------------------------------------------------------------------------------- /template-reference-handson/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/template-reference-handson/e2e/protractor.conf.js -------------------------------------------------------------------------------- /template-reference-handson/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/template-reference-handson/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /template-reference-handson/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/template-reference-handson/e2e/src/app.po.ts -------------------------------------------------------------------------------- /template-reference-handson/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/template-reference-handson/e2e/tsconfig.json -------------------------------------------------------------------------------- /template-reference-handson/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/template-reference-handson/karma.conf.js -------------------------------------------------------------------------------- /template-reference-handson/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/template-reference-handson/package-lock.json -------------------------------------------------------------------------------- /template-reference-handson/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/template-reference-handson/package.json -------------------------------------------------------------------------------- /template-reference-handson/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/template-reference-handson/src/app/app.component.css -------------------------------------------------------------------------------- /template-reference-handson/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/template-reference-handson/src/app/app.component.html -------------------------------------------------------------------------------- /template-reference-handson/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/template-reference-handson/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /template-reference-handson/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/template-reference-handson/src/app/app.component.ts -------------------------------------------------------------------------------- /template-reference-handson/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/template-reference-handson/src/app/app.module.ts -------------------------------------------------------------------------------- /template-reference-handson/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template-reference-handson/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /template-reference-handson/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/template-reference-handson/src/environments/environment.ts -------------------------------------------------------------------------------- /template-reference-handson/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/template-reference-handson/src/favicon.ico -------------------------------------------------------------------------------- /template-reference-handson/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/template-reference-handson/src/index.html -------------------------------------------------------------------------------- /template-reference-handson/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/template-reference-handson/src/main.ts -------------------------------------------------------------------------------- /template-reference-handson/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/template-reference-handson/src/polyfills.ts -------------------------------------------------------------------------------- /template-reference-handson/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/template-reference-handson/src/styles.css -------------------------------------------------------------------------------- /template-reference-handson/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/template-reference-handson/src/test.ts -------------------------------------------------------------------------------- /template-reference-handson/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/template-reference-handson/tsconfig.app.json -------------------------------------------------------------------------------- /template-reference-handson/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/template-reference-handson/tsconfig.json -------------------------------------------------------------------------------- /template-reference-handson/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/template-reference-handson/tsconfig.spec.json -------------------------------------------------------------------------------- /template-reference-handson/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelancer-surender/Angular---Zero-to-Hero/HEAD/template-reference-handson/tslint.json --------------------------------------------------------------------------------