├── .editorconfig ├── .gitignore ├── .idea ├── modules.xml └── vcs.xml ├── 2.7.2 ├── README.md ├── angular.json ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.json ├── karma.conf.js ├── myNodeTest.js ├── package.json ├── protractor.conf.js ├── server.js ├── src ├── 2.7.2 ├── app │ ├── angular4 │ │ ├── angular4.component.html │ │ └── angular4.component.ts │ ├── angularcli │ │ ├── angularcli.component.css │ │ ├── angularcli.component.html │ │ ├── angularcli.component.spec.ts │ │ └── angularcli.component.ts │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── app.routing.ts │ ├── basic │ │ ├── basic.component.css │ │ ├── basic.component.html │ │ ├── basic.component.spec.ts │ │ ├── basic.component.ts │ │ └── blinker.directive.ts │ ├── charts │ │ ├── charts.component.css │ │ ├── charts.component.html │ │ ├── charts.component.spec.ts │ │ └── charts.component.ts │ ├── childrenEg │ │ ├── tab.js │ │ ├── tab.js.map │ │ ├── tab.ts │ │ ├── tabs.js │ │ ├── tabs.js.map │ │ ├── tabs.ts │ │ ├── view-child-content-eg.component.js │ │ ├── view-child-content-eg.component.js.map │ │ ├── view-child-content-eg.component.ts │ │ └── view-child.html │ ├── comment │ │ ├── comment.component.css │ │ ├── comment.component.html │ │ ├── comment.component.spec.ts │ │ ├── comment.component.ts │ │ ├── fireauth.resolve.ts │ │ ├── realtiveTime.filter.pipe.ts │ │ └── string.filter.pipe.ts │ ├── dialog-result-example-dialog.html │ ├── directives │ │ ├── confirm.directive.spec.ts │ │ ├── confirm.directive.ts │ │ ├── directives.component.css │ │ ├── directives.component.html │ │ ├── directives.component.spec.ts │ │ └── directives.component.ts │ ├── dynamic-component │ │ ├── base-dynamic.component.ts │ │ ├── base.dynamic.component.html │ │ └── dynamic │ │ │ ├── dynamic.component.ts │ │ │ ├── hello-world-component.ts │ │ │ └── world-hello-component.ts │ ├── file-upload │ │ ├── file-upload.component.css │ │ ├── file-upload.component.html │ │ ├── file-upload.component.spec.ts │ │ └── file-upload.component.ts │ ├── firebase │ │ ├── firebase.component.css │ │ ├── firebase.component.html │ │ └── firebase.component.ts │ ├── guards │ │ ├── auth.guard.ts │ │ ├── check.component.css │ │ ├── check.component.html │ │ ├── check.component.ts │ │ ├── deactivate.guard.ts │ │ ├── guards.component.css │ │ ├── guards.component.html │ │ └── guards.component.ts │ ├── mywork │ │ ├── mywork.component.css │ │ ├── mywork.component.html │ │ └── mywork.component.ts │ ├── ngrx │ │ ├── ngrx.component.css │ │ ├── ngrx.component.html │ │ ├── ngrx.component.ts │ │ ├── rxjs │ │ │ ├── lazyDailog.html │ │ │ ├── rxjs.component.html │ │ │ ├── rxjs.component.ts │ │ │ ├── rxjs.module.ts │ │ │ └── rxjs.routing.ts │ │ └── state-management │ │ │ ├── ngrx-actions.ts │ │ │ └── ngrx-reducer.ts │ ├── notes │ │ ├── notes.component.css │ │ ├── notes.component.html │ │ ├── notes.component.spec.ts │ │ └── notes.component.ts │ ├── parent-host │ │ ├── child.component.css │ │ ├── child.component.html │ │ ├── child.component.ts │ │ ├── parent-host.component.css │ │ ├── parent-host.component.html │ │ └── parent-host.component.ts │ ├── parentchild │ │ ├── childparent.component.html │ │ ├── childparent.component.spec.ts │ │ ├── childparent.component.ts │ │ ├── parentchild.component.html │ │ ├── parentchild.component.spec.ts │ │ └── parentchild.component.ts │ ├── pipes │ │ ├── pipes.component.css │ │ ├── pipes.component.html │ │ ├── pipes.component.spec.ts │ │ ├── pipes.component.ts │ │ ├── square.pipe.spec.ts │ │ └── square.pipe.ts │ ├── reactive │ │ ├── reactive.component.css │ │ ├── reactive.component.html │ │ ├── reactive.component.ts │ │ ├── validateOnBlur.directive.ts │ │ └── validator.ts │ ├── services │ │ ├── fake.service.ts │ │ ├── services.component.css │ │ ├── services.component.html │ │ └── services.component.ts │ ├── shared │ │ ├── angular.interceptor.ts │ │ ├── angular.service.ts │ │ ├── dropdown.directive.spec.ts │ │ ├── dropdown.directive.ts │ │ ├── test.service.ts │ │ ├── theme.interface.ts │ │ └── user.interface.ts │ ├── template-driven │ │ ├── AsyncAgeValidator.ts │ │ ├── NameValidator.ts │ │ ├── template-driven.component.css │ │ ├── template-driven.component.html │ │ └── template-driven.component.ts │ ├── test │ │ ├── test.component.css │ │ ├── test.component.html │ │ ├── test.component.spec.ts │ │ └── test.component.ts │ └── viewencapsulation │ │ ├── viewencapsulation.component.html │ │ ├── viewencapsulation.component.js │ │ ├── viewencapsulation.component.spec.ts │ │ └── viewencapsulation.component.ts ├── assets │ ├── .gitkeep │ ├── Data │ ├── firebase-functions │ │ ├── index.js │ │ └── package.json │ ├── icons │ │ ├── f.png │ │ ├── g.png │ │ ├── l.png │ │ └── s.png │ └── images │ │ ├── angular.png │ │ ├── angular.svg │ │ ├── code.png │ │ ├── comment.png │ │ ├── guard.png │ │ ├── me.JPG │ │ ├── no.jpg │ │ └── user.png ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css ├── test.ts └── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /2.7.2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/angular.json -------------------------------------------------------------------------------- /e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/e2e/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/karma.conf.js -------------------------------------------------------------------------------- /myNodeTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/myNodeTest.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/server.js -------------------------------------------------------------------------------- /src/2.7.2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/angular4/angular4.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/angular4/angular4.component.html -------------------------------------------------------------------------------- /src/app/angular4/angular4.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/angular4/angular4.component.ts -------------------------------------------------------------------------------- /src/app/angularcli/angularcli.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/angularcli/angularcli.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/angularcli/angularcli.component.html -------------------------------------------------------------------------------- /src/app/angularcli/angularcli.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/angularcli/angularcli.component.spec.ts -------------------------------------------------------------------------------- /src/app/angularcli/angularcli.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/angularcli/angularcli.component.ts -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/app.component.css -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/app.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/app.routing.ts -------------------------------------------------------------------------------- /src/app/basic/basic.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/basic/basic.component.css -------------------------------------------------------------------------------- /src/app/basic/basic.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/basic/basic.component.html -------------------------------------------------------------------------------- /src/app/basic/basic.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/basic/basic.component.spec.ts -------------------------------------------------------------------------------- /src/app/basic/basic.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/basic/basic.component.ts -------------------------------------------------------------------------------- /src/app/basic/blinker.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/basic/blinker.directive.ts -------------------------------------------------------------------------------- /src/app/charts/charts.component.css: -------------------------------------------------------------------------------- 1 | chart { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/charts/charts.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/charts/charts.component.html -------------------------------------------------------------------------------- /src/app/charts/charts.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/charts/charts.component.spec.ts -------------------------------------------------------------------------------- /src/app/charts/charts.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/charts/charts.component.ts -------------------------------------------------------------------------------- /src/app/childrenEg/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/childrenEg/tab.js -------------------------------------------------------------------------------- /src/app/childrenEg/tab.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/childrenEg/tab.js.map -------------------------------------------------------------------------------- /src/app/childrenEg/tab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/childrenEg/tab.ts -------------------------------------------------------------------------------- /src/app/childrenEg/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/childrenEg/tabs.js -------------------------------------------------------------------------------- /src/app/childrenEg/tabs.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/childrenEg/tabs.js.map -------------------------------------------------------------------------------- /src/app/childrenEg/tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/childrenEg/tabs.ts -------------------------------------------------------------------------------- /src/app/childrenEg/view-child-content-eg.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/childrenEg/view-child-content-eg.component.js -------------------------------------------------------------------------------- /src/app/childrenEg/view-child-content-eg.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/childrenEg/view-child-content-eg.component.js.map -------------------------------------------------------------------------------- /src/app/childrenEg/view-child-content-eg.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/childrenEg/view-child-content-eg.component.ts -------------------------------------------------------------------------------- /src/app/childrenEg/view-child.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/childrenEg/view-child.html -------------------------------------------------------------------------------- /src/app/comment/comment.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/comment/comment.component.css -------------------------------------------------------------------------------- /src/app/comment/comment.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/comment/comment.component.html -------------------------------------------------------------------------------- /src/app/comment/comment.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/comment/comment.component.spec.ts -------------------------------------------------------------------------------- /src/app/comment/comment.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/comment/comment.component.ts -------------------------------------------------------------------------------- /src/app/comment/fireauth.resolve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/comment/fireauth.resolve.ts -------------------------------------------------------------------------------- /src/app/comment/realtiveTime.filter.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/comment/realtiveTime.filter.pipe.ts -------------------------------------------------------------------------------- /src/app/comment/string.filter.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/comment/string.filter.pipe.ts -------------------------------------------------------------------------------- /src/app/dialog-result-example-dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/dialog-result-example-dialog.html -------------------------------------------------------------------------------- /src/app/directives/confirm.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/directives/confirm.directive.spec.ts -------------------------------------------------------------------------------- /src/app/directives/confirm.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/directives/confirm.directive.ts -------------------------------------------------------------------------------- /src/app/directives/directives.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/directives/directives.component.css -------------------------------------------------------------------------------- /src/app/directives/directives.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/directives/directives.component.html -------------------------------------------------------------------------------- /src/app/directives/directives.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/directives/directives.component.spec.ts -------------------------------------------------------------------------------- /src/app/directives/directives.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/directives/directives.component.ts -------------------------------------------------------------------------------- /src/app/dynamic-component/base-dynamic.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/dynamic-component/base-dynamic.component.ts -------------------------------------------------------------------------------- /src/app/dynamic-component/base.dynamic.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/dynamic-component/base.dynamic.component.html -------------------------------------------------------------------------------- /src/app/dynamic-component/dynamic/dynamic.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/dynamic-component/dynamic/dynamic.component.ts -------------------------------------------------------------------------------- /src/app/dynamic-component/dynamic/hello-world-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/dynamic-component/dynamic/hello-world-component.ts -------------------------------------------------------------------------------- /src/app/dynamic-component/dynamic/world-hello-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/dynamic-component/dynamic/world-hello-component.ts -------------------------------------------------------------------------------- /src/app/file-upload/file-upload.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/file-upload/file-upload.component.css -------------------------------------------------------------------------------- /src/app/file-upload/file-upload.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/file-upload/file-upload.component.html -------------------------------------------------------------------------------- /src/app/file-upload/file-upload.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/file-upload/file-upload.component.spec.ts -------------------------------------------------------------------------------- /src/app/file-upload/file-upload.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/file-upload/file-upload.component.ts -------------------------------------------------------------------------------- /src/app/firebase/firebase.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/firebase/firebase.component.css -------------------------------------------------------------------------------- /src/app/firebase/firebase.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/firebase/firebase.component.html -------------------------------------------------------------------------------- /src/app/firebase/firebase.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/firebase/firebase.component.ts -------------------------------------------------------------------------------- /src/app/guards/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/guards/auth.guard.ts -------------------------------------------------------------------------------- /src/app/guards/check.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/guards/check.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/guards/check.component.html -------------------------------------------------------------------------------- /src/app/guards/check.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/guards/check.component.ts -------------------------------------------------------------------------------- /src/app/guards/deactivate.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/guards/deactivate.guard.ts -------------------------------------------------------------------------------- /src/app/guards/guards.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/guards/guards.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/guards/guards.component.html -------------------------------------------------------------------------------- /src/app/guards/guards.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/guards/guards.component.ts -------------------------------------------------------------------------------- /src/app/mywork/mywork.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/mywork/mywork.component.css -------------------------------------------------------------------------------- /src/app/mywork/mywork.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/mywork/mywork.component.html -------------------------------------------------------------------------------- /src/app/mywork/mywork.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/mywork/mywork.component.ts -------------------------------------------------------------------------------- /src/app/ngrx/ngrx.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/ngrx/ngrx.component.css -------------------------------------------------------------------------------- /src/app/ngrx/ngrx.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/ngrx/ngrx.component.html -------------------------------------------------------------------------------- /src/app/ngrx/ngrx.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/ngrx/ngrx.component.ts -------------------------------------------------------------------------------- /src/app/ngrx/rxjs/lazyDailog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/ngrx/rxjs/lazyDailog.html -------------------------------------------------------------------------------- /src/app/ngrx/rxjs/rxjs.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/ngrx/rxjs/rxjs.component.html -------------------------------------------------------------------------------- /src/app/ngrx/rxjs/rxjs.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/ngrx/rxjs/rxjs.component.ts -------------------------------------------------------------------------------- /src/app/ngrx/rxjs/rxjs.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/ngrx/rxjs/rxjs.module.ts -------------------------------------------------------------------------------- /src/app/ngrx/rxjs/rxjs.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/ngrx/rxjs/rxjs.routing.ts -------------------------------------------------------------------------------- /src/app/ngrx/state-management/ngrx-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/ngrx/state-management/ngrx-actions.ts -------------------------------------------------------------------------------- /src/app/ngrx/state-management/ngrx-reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/ngrx/state-management/ngrx-reducer.ts -------------------------------------------------------------------------------- /src/app/notes/notes.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/notes/notes.component.css -------------------------------------------------------------------------------- /src/app/notes/notes.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/notes/notes.component.html -------------------------------------------------------------------------------- /src/app/notes/notes.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/notes/notes.component.spec.ts -------------------------------------------------------------------------------- /src/app/notes/notes.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/notes/notes.component.ts -------------------------------------------------------------------------------- /src/app/parent-host/child.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/parent-host/child.component.css -------------------------------------------------------------------------------- /src/app/parent-host/child.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/parent-host/child.component.html -------------------------------------------------------------------------------- /src/app/parent-host/child.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/parent-host/child.component.ts -------------------------------------------------------------------------------- /src/app/parent-host/parent-host.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/parent-host/parent-host.component.css -------------------------------------------------------------------------------- /src/app/parent-host/parent-host.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/parent-host/parent-host.component.html -------------------------------------------------------------------------------- /src/app/parent-host/parent-host.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/parent-host/parent-host.component.ts -------------------------------------------------------------------------------- /src/app/parentchild/childparent.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/parentchild/childparent.component.html -------------------------------------------------------------------------------- /src/app/parentchild/childparent.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/parentchild/childparent.component.spec.ts -------------------------------------------------------------------------------- /src/app/parentchild/childparent.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/parentchild/childparent.component.ts -------------------------------------------------------------------------------- /src/app/parentchild/parentchild.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/parentchild/parentchild.component.html -------------------------------------------------------------------------------- /src/app/parentchild/parentchild.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/parentchild/parentchild.component.spec.ts -------------------------------------------------------------------------------- /src/app/parentchild/parentchild.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/parentchild/parentchild.component.ts -------------------------------------------------------------------------------- /src/app/pipes/pipes.component.css: -------------------------------------------------------------------------------- 1 | 2 | pre{ 3 | height: 500px; 4 | } 5 | -------------------------------------------------------------------------------- /src/app/pipes/pipes.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/pipes/pipes.component.html -------------------------------------------------------------------------------- /src/app/pipes/pipes.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/pipes/pipes.component.spec.ts -------------------------------------------------------------------------------- /src/app/pipes/pipes.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/pipes/pipes.component.ts -------------------------------------------------------------------------------- /src/app/pipes/square.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/pipes/square.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/pipes/square.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/pipes/square.pipe.ts -------------------------------------------------------------------------------- /src/app/reactive/reactive.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/reactive/reactive.component.css -------------------------------------------------------------------------------- /src/app/reactive/reactive.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/reactive/reactive.component.html -------------------------------------------------------------------------------- /src/app/reactive/reactive.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/reactive/reactive.component.ts -------------------------------------------------------------------------------- /src/app/reactive/validateOnBlur.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/reactive/validateOnBlur.directive.ts -------------------------------------------------------------------------------- /src/app/reactive/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/reactive/validator.ts -------------------------------------------------------------------------------- /src/app/services/fake.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/services/fake.service.ts -------------------------------------------------------------------------------- /src/app/services/services.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/services/services.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/services/services.component.html -------------------------------------------------------------------------------- /src/app/services/services.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/services/services.component.ts -------------------------------------------------------------------------------- /src/app/shared/angular.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/shared/angular.interceptor.ts -------------------------------------------------------------------------------- /src/app/shared/angular.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/shared/angular.service.ts -------------------------------------------------------------------------------- /src/app/shared/dropdown.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/shared/dropdown.directive.spec.ts -------------------------------------------------------------------------------- /src/app/shared/dropdown.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/shared/dropdown.directive.ts -------------------------------------------------------------------------------- /src/app/shared/test.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/shared/test.service.ts -------------------------------------------------------------------------------- /src/app/shared/theme.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/shared/theme.interface.ts -------------------------------------------------------------------------------- /src/app/shared/user.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/shared/user.interface.ts -------------------------------------------------------------------------------- /src/app/template-driven/AsyncAgeValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/template-driven/AsyncAgeValidator.ts -------------------------------------------------------------------------------- /src/app/template-driven/NameValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/template-driven/NameValidator.ts -------------------------------------------------------------------------------- /src/app/template-driven/template-driven.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/template-driven/template-driven.component.css -------------------------------------------------------------------------------- /src/app/template-driven/template-driven.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/template-driven/template-driven.component.html -------------------------------------------------------------------------------- /src/app/template-driven/template-driven.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/template-driven/template-driven.component.ts -------------------------------------------------------------------------------- /src/app/test/test.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/test/test.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/test/test.component.html -------------------------------------------------------------------------------- /src/app/test/test.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/test/test.component.spec.ts -------------------------------------------------------------------------------- /src/app/test/test.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/test/test.component.ts -------------------------------------------------------------------------------- /src/app/viewencapsulation/viewencapsulation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/viewencapsulation/viewencapsulation.component.html -------------------------------------------------------------------------------- /src/app/viewencapsulation/viewencapsulation.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/viewencapsulation/viewencapsulation.component.js -------------------------------------------------------------------------------- /src/app/viewencapsulation/viewencapsulation.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/viewencapsulation/viewencapsulation.component.spec.ts -------------------------------------------------------------------------------- /src/app/viewencapsulation/viewencapsulation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/app/viewencapsulation/viewencapsulation.component.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/assets/Data -------------------------------------------------------------------------------- /src/assets/firebase-functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/assets/firebase-functions/index.js -------------------------------------------------------------------------------- /src/assets/firebase-functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/assets/firebase-functions/package.json -------------------------------------------------------------------------------- /src/assets/icons/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/assets/icons/f.png -------------------------------------------------------------------------------- /src/assets/icons/g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/assets/icons/g.png -------------------------------------------------------------------------------- /src/assets/icons/l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/assets/icons/l.png -------------------------------------------------------------------------------- /src/assets/icons/s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/assets/icons/s.png -------------------------------------------------------------------------------- /src/assets/images/angular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/assets/images/angular.png -------------------------------------------------------------------------------- /src/assets/images/angular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/assets/images/angular.svg -------------------------------------------------------------------------------- /src/assets/images/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/assets/images/code.png -------------------------------------------------------------------------------- /src/assets/images/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/assets/images/comment.png -------------------------------------------------------------------------------- /src/assets/images/guard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/assets/images/guard.png -------------------------------------------------------------------------------- /src/assets/images/me.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/assets/images/me.JPG -------------------------------------------------------------------------------- /src/assets/images/no.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/assets/images/no.jpg -------------------------------------------------------------------------------- /src/assets/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/assets/images/user.png -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulrsingh09/AngularConcepts/HEAD/tslint.json --------------------------------------------------------------------------------