├── .vscode └── extensions.json ├── Chapter01 ├── .editorconfig ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json ├── README.md ├── angular.json ├── 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 │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ └── styles.css ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── Chapter02 ├── .editorconfig ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json ├── README.md ├── angular.json ├── mdfiles │ ├── 2023-06-22-posts.md │ └── angular-and-scully.md ├── package-lock.json ├── package.json ├── scully.my-blog.config.ts ├── src │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── articles │ │ │ ├── articles-routing.module.ts │ │ │ ├── articles.component.html │ │ │ ├── articles.component.scss │ │ │ ├── articles.component.spec.ts │ │ │ ├── articles.component.ts │ │ │ └── articles.module.ts │ │ ├── contact │ │ │ ├── contact.component.html │ │ │ ├── contact.component.scss │ │ │ ├── contact.component.spec.ts │ │ │ ├── contact.component.ts │ │ │ └── contact.module.ts │ │ ├── core │ │ │ ├── core.module.ts │ │ │ └── header │ │ │ │ ├── header.component.html │ │ │ │ ├── header.component.scss │ │ │ │ ├── header.component.spec.ts │ │ │ │ └── header.component.ts │ │ ├── posts │ │ │ ├── posts-routing.module.ts │ │ │ ├── posts.component.html │ │ │ ├── posts.component.scss │ │ │ ├── posts.component.spec.ts │ │ │ ├── posts.component.ts │ │ │ └── posts.module.ts │ │ └── shared │ │ │ ├── footer │ │ │ ├── footer.component.html │ │ │ ├── footer.component.scss │ │ │ ├── footer.component.spec.ts │ │ │ └── footer.component.ts │ │ │ └── shared.module.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── angular.png │ │ └── scully-routes.json │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ └── styles.scss ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── Chapter03 ├── .editorconfig ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json ├── README.md ├── angular.json ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── confirm-dialog │ │ │ ├── confirm-dialog.component.css │ │ │ ├── confirm-dialog.component.html │ │ │ ├── confirm-dialog.component.spec.ts │ │ │ └── confirm-dialog.component.ts │ │ ├── issue-list │ │ │ ├── issue-list.component.css │ │ │ ├── issue-list.component.html │ │ │ ├── issue-list.component.spec.ts │ │ │ └── issue-list.component.ts │ │ ├── issue-report │ │ │ ├── issue-report.component.css │ │ │ ├── issue-report.component.html │ │ │ ├── issue-report.component.spec.ts │ │ │ └── issue-report.component.ts │ │ ├── issue.ts │ │ ├── issues.service.spec.ts │ │ └── issues.service.ts │ ├── assets │ │ ├── .gitkeep │ │ └── mock-issues.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ └── styles.css ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── Chapter04 ├── .editorconfig ├── .firebaserc ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json ├── README.md ├── angular.json ├── firebase.json ├── ngsw-config.json ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── header │ │ │ ├── header.component.html │ │ │ ├── header.component.scss │ │ │ ├── header.component.spec.ts │ │ │ └── header.component.ts │ │ ├── weather.service.spec.ts │ │ ├── weather.service.ts │ │ ├── weather.ts │ │ └── weather │ │ │ ├── weather.component.html │ │ │ ├── weather.component.scss │ │ │ ├── weather.component.spec.ts │ │ │ └── weather.component.ts │ ├── assets │ │ ├── .gitkeep │ │ └── icons │ │ │ ├── icon-128x128.png │ │ │ ├── icon-144x144.png │ │ │ ├── icon-152x152.png │ │ │ ├── icon-192x192.png │ │ │ ├── icon-384x384.png │ │ │ ├── icon-512x512.png │ │ │ ├── icon-72x72.png │ │ │ └── icon-96x96.png │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── manifest.webmanifest │ └── styles.scss ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── Chapter05 ├── .editorconfig ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json ├── README.md ├── angular.json ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── editor.service.spec.ts │ │ ├── editor.service.ts │ │ └── editor │ │ │ ├── editor.component.css │ │ │ ├── editor.component.html │ │ │ ├── editor.component.spec.ts │ │ │ └── editor.component.ts │ ├── assets │ │ └── .gitkeep │ ├── electron │ │ ├── main.ts │ │ ├── package.json │ │ └── tsconfig.json │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ └── styles.css ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json ├── webpack.config.js ├── webpack.dev.config.js └── webpack.prod.config.js ├── Chapter06 ├── .browserslistrc ├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── .vscode │ └── extensions.json ├── angular.json ├── capacitor.config.ts ├── extra-webpack.config.js ├── firebase.json ├── ionic.config.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.routes.ts │ │ ├── capture │ │ │ ├── capture.page.html │ │ │ ├── capture.page.scss │ │ │ ├── capture.page.spec.ts │ │ │ └── capture.page.ts │ │ ├── cesium.service.spec.ts │ │ ├── cesium.service.ts │ │ ├── photo.service.spec.ts │ │ ├── photo.service.ts │ │ └── view │ │ │ ├── view.page.html │ │ │ ├── view.page.scss │ │ │ ├── view.page.spec.ts │ │ │ └── view.page.ts │ ├── assets │ │ ├── icon │ │ │ └── favicon.png │ │ └── shapes.svg │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── global.scss │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── test.ts │ ├── theme │ │ └── variables.scss │ └── zone-flags.ts ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── Chapter07 ├── .editorconfig ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json ├── README.md ├── angular.json ├── package-lock.json ├── package.json ├── server.ts ├── src │ ├── app │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── app.server.module.ts │ │ ├── github.service.spec.ts │ │ ├── github.service.ts │ │ ├── organization.ts │ │ ├── organizations │ │ │ ├── organizations.component.html │ │ │ ├── organizations.component.scss │ │ │ ├── organizations.component.spec.ts │ │ │ └── organizations.component.ts │ │ ├── panel │ │ │ ├── panel.component.html │ │ │ ├── panel.component.scss │ │ │ ├── panel.component.spec.ts │ │ │ └── panel.component.ts │ │ ├── personal-info │ │ │ ├── personal-info.component.html │ │ │ ├── personal-info.component.scss │ │ │ ├── personal-info.component.spec.ts │ │ │ └── personal-info.component.ts │ │ ├── repositories │ │ │ ├── repositories.component.html │ │ │ ├── repositories.component.scss │ │ │ ├── repositories.component.spec.ts │ │ │ └── repositories.component.ts │ │ ├── repository.ts │ │ └── user.ts │ ├── assets │ │ ├── .gitkeep │ │ └── angular.png │ ├── favicon.ico │ ├── index.html │ ├── main.server.ts │ ├── main.ts │ └── styles.scss ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.server.json └── tsconfig.spec.json ├── Chapter08 ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode │ └── extensions.json ├── README.md ├── apps │ ├── .gitkeep │ ├── tour-e2e │ │ ├── .eslintrc.json │ │ ├── cypress.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── e2e │ │ │ │ └── app.cy.ts │ │ │ ├── fixtures │ │ │ │ └── example.json │ │ │ └── support │ │ │ │ ├── app.po.ts │ │ │ │ ├── commands.ts │ │ │ │ └── e2e.ts │ │ └── tsconfig.json │ └── tour │ │ ├── .eslintrc.json │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── app.routes.ts │ │ │ └── nx-welcome.component.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ └── poi.json │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── styles.css │ │ └── test-setup.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.editor.json │ │ ├── tsconfig.json │ │ └── tsconfig.spec.json ├── jest.config.ts ├── jest.preset.js ├── libs │ ├── .gitkeep │ ├── admin │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── admin.component.css │ │ │ │ ├── admin.component.html │ │ │ │ ├── admin.component.spec.ts │ │ │ │ ├── admin.component.ts │ │ │ │ ├── admin.module.ts │ │ │ │ ├── admin.service.spec.ts │ │ │ │ └── admin.service.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── poi │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── +state │ │ │ │ │ ├── poi.actions.ts │ │ │ │ │ ├── poi.effects.spec.ts │ │ │ │ │ ├── poi.effects.ts │ │ │ │ │ ├── poi.models.ts │ │ │ │ │ ├── poi.reducer.spec.ts │ │ │ │ │ ├── poi.reducer.ts │ │ │ │ │ ├── poi.selectors.spec.ts │ │ │ │ │ └── poi.selectors.ts │ │ │ │ ├── poi.module.ts │ │ │ │ ├── poi.service.spec.ts │ │ │ │ └── poi.service.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ └── visitor │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── map │ │ │ │ ├── map.component.css │ │ │ │ ├── map.component.html │ │ │ │ ├── map.component.spec.ts │ │ │ │ └── map.component.ts │ │ │ ├── poi-list │ │ │ │ ├── poi-list.component.css │ │ │ │ ├── poi-list.component.html │ │ │ │ ├── poi-list.component.spec.ts │ │ │ │ └── poi-list.component.ts │ │ │ ├── visitor.component.css │ │ │ ├── visitor.component.html │ │ │ ├── visitor.component.spec.ts │ │ │ ├── visitor.component.ts │ │ │ └── visitor.module.ts │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json ├── nx.json ├── package-lock.json ├── package.json ├── tools │ └── tsconfig.tools.json └── tsconfig.base.json ├── Chapter09 ├── .editorconfig ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json ├── README.md ├── angular.json ├── package-lock.json ├── package.json ├── projects │ ├── ui-controls │ │ ├── README.md │ │ ├── ng-package.json │ │ ├── package.json │ │ ├── src │ │ │ ├── lib │ │ │ │ ├── card-list │ │ │ │ │ ├── card-list.component.css │ │ │ │ │ ├── card-list.component.html │ │ │ │ │ ├── card-list.component.spec.ts │ │ │ │ │ └── card-list.component.ts │ │ │ │ ├── card.ts │ │ │ │ ├── copy-button │ │ │ │ │ ├── copy-button.component.css │ │ │ │ │ ├── copy-button.component.html │ │ │ │ │ ├── copy-button.component.spec.ts │ │ │ │ │ └── copy-button.component.ts │ │ │ │ ├── ui-controls.component.spec.ts │ │ │ │ ├── ui-controls.component.ts │ │ │ │ ├── ui-controls.module.ts │ │ │ │ ├── ui-controls.service.spec.ts │ │ │ │ └── ui-controls.service.ts │ │ │ └── public-api.ts │ │ ├── tsconfig.lib.json │ │ ├── tsconfig.lib.prod.json │ │ └── tsconfig.spec.json │ └── ui-elements │ │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ └── app.module.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ └── styles.css │ │ ├── tsconfig.app.json │ │ └── tsconfig.spec.json ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ └── assassins.ts │ ├── assets │ │ └── .gitkeep │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ └── styles.css ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── Chapter10 ├── .gitignore ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── collection.json │ ├── crud-service │ │ ├── files │ │ │ └── __name@dasherize__.service.ts.template │ │ ├── index.ts │ │ └── index_spec.ts │ ├── my-schematics │ │ ├── index.ts │ │ └── index_spec.ts │ └── tailwind-container │ │ ├── files │ │ ├── __name@dasherize__.component.html.template │ │ └── __name@dasherize__.component.ts.template │ │ ├── index.ts │ │ ├── index_spec.ts │ │ ├── schema.json │ │ └── schema.ts └── tsconfig.json ├── LICENSE └── README.md /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /Chapter01/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter01/.editorconfig -------------------------------------------------------------------------------- /Chapter01/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter01/.gitignore -------------------------------------------------------------------------------- /Chapter01/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter01/.vscode/extensions.json -------------------------------------------------------------------------------- /Chapter01/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter01/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter01/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter01/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter01/README.md -------------------------------------------------------------------------------- /Chapter01/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter01/angular.json -------------------------------------------------------------------------------- /Chapter01/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter01/package-lock.json -------------------------------------------------------------------------------- /Chapter01/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter01/package.json -------------------------------------------------------------------------------- /Chapter01/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter01/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter01/src/app/app.component.html -------------------------------------------------------------------------------- /Chapter01/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter01/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Chapter01/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter01/src/app/app.component.ts -------------------------------------------------------------------------------- /Chapter01/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter01/src/app/app.module.ts -------------------------------------------------------------------------------- /Chapter01/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter01/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter01/src/favicon.ico -------------------------------------------------------------------------------- /Chapter01/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter01/src/index.html -------------------------------------------------------------------------------- /Chapter01/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter01/src/main.ts -------------------------------------------------------------------------------- /Chapter01/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter01/src/styles.css -------------------------------------------------------------------------------- /Chapter01/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter01/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter01/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter01/tsconfig.json -------------------------------------------------------------------------------- /Chapter01/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter01/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter02/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/.editorconfig -------------------------------------------------------------------------------- /Chapter02/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/.gitignore -------------------------------------------------------------------------------- /Chapter02/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/.vscode/extensions.json -------------------------------------------------------------------------------- /Chapter02/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter02/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/README.md -------------------------------------------------------------------------------- /Chapter02/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/angular.json -------------------------------------------------------------------------------- /Chapter02/mdfiles/2023-06-22-posts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/mdfiles/2023-06-22-posts.md -------------------------------------------------------------------------------- /Chapter02/mdfiles/angular-and-scully.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/mdfiles/angular-and-scully.md -------------------------------------------------------------------------------- /Chapter02/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/package-lock.json -------------------------------------------------------------------------------- /Chapter02/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/package.json -------------------------------------------------------------------------------- /Chapter02/scully.my-blog.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/scully.my-blog.config.ts -------------------------------------------------------------------------------- /Chapter02/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /Chapter02/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/app/app.component.html -------------------------------------------------------------------------------- /Chapter02/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Chapter02/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/app/app.component.ts -------------------------------------------------------------------------------- /Chapter02/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/app/app.module.ts -------------------------------------------------------------------------------- /Chapter02/src/app/articles/articles-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/app/articles/articles-routing.module.ts -------------------------------------------------------------------------------- /Chapter02/src/app/articles/articles.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/app/articles/articles.component.html -------------------------------------------------------------------------------- /Chapter02/src/app/articles/articles.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/src/app/articles/articles.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/app/articles/articles.component.spec.ts -------------------------------------------------------------------------------- /Chapter02/src/app/articles/articles.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/app/articles/articles.component.ts -------------------------------------------------------------------------------- /Chapter02/src/app/articles/articles.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/app/articles/articles.module.ts -------------------------------------------------------------------------------- /Chapter02/src/app/contact/contact.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/app/contact/contact.component.html -------------------------------------------------------------------------------- /Chapter02/src/app/contact/contact.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/src/app/contact/contact.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/app/contact/contact.component.spec.ts -------------------------------------------------------------------------------- /Chapter02/src/app/contact/contact.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/app/contact/contact.component.ts -------------------------------------------------------------------------------- /Chapter02/src/app/contact/contact.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/app/contact/contact.module.ts -------------------------------------------------------------------------------- /Chapter02/src/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/app/core/core.module.ts -------------------------------------------------------------------------------- /Chapter02/src/app/core/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/app/core/header/header.component.html -------------------------------------------------------------------------------- /Chapter02/src/app/core/header/header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/src/app/core/header/header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/app/core/header/header.component.spec.ts -------------------------------------------------------------------------------- /Chapter02/src/app/core/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/app/core/header/header.component.ts -------------------------------------------------------------------------------- /Chapter02/src/app/posts/posts-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/app/posts/posts-routing.module.ts -------------------------------------------------------------------------------- /Chapter02/src/app/posts/posts.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/app/posts/posts.component.html -------------------------------------------------------------------------------- /Chapter02/src/app/posts/posts.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/app/posts/posts.component.scss -------------------------------------------------------------------------------- /Chapter02/src/app/posts/posts.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/app/posts/posts.component.spec.ts -------------------------------------------------------------------------------- /Chapter02/src/app/posts/posts.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/app/posts/posts.component.ts -------------------------------------------------------------------------------- /Chapter02/src/app/posts/posts.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/app/posts/posts.module.ts -------------------------------------------------------------------------------- /Chapter02/src/app/shared/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/app/shared/footer/footer.component.html -------------------------------------------------------------------------------- /Chapter02/src/app/shared/footer/footer.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/src/app/shared/footer/footer.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/app/shared/footer/footer.component.spec.ts -------------------------------------------------------------------------------- /Chapter02/src/app/shared/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/app/shared/footer/footer.component.ts -------------------------------------------------------------------------------- /Chapter02/src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /Chapter02/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/src/assets/angular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/assets/angular.png -------------------------------------------------------------------------------- /Chapter02/src/assets/scully-routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/assets/scully-routes.json -------------------------------------------------------------------------------- /Chapter02/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/favicon.ico -------------------------------------------------------------------------------- /Chapter02/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/index.html -------------------------------------------------------------------------------- /Chapter02/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/main.ts -------------------------------------------------------------------------------- /Chapter02/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/src/styles.scss -------------------------------------------------------------------------------- /Chapter02/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter02/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/tsconfig.json -------------------------------------------------------------------------------- /Chapter02/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter02/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter03/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/.editorconfig -------------------------------------------------------------------------------- /Chapter03/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/.gitignore -------------------------------------------------------------------------------- /Chapter03/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/.vscode/extensions.json -------------------------------------------------------------------------------- /Chapter03/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter03/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/README.md -------------------------------------------------------------------------------- /Chapter03/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/angular.json -------------------------------------------------------------------------------- /Chapter03/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/package-lock.json -------------------------------------------------------------------------------- /Chapter03/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/package.json -------------------------------------------------------------------------------- /Chapter03/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/src/app/app.component.html -------------------------------------------------------------------------------- /Chapter03/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Chapter03/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/src/app/app.component.ts -------------------------------------------------------------------------------- /Chapter03/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/src/app/app.module.ts -------------------------------------------------------------------------------- /Chapter03/src/app/confirm-dialog/confirm-dialog.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/src/app/confirm-dialog/confirm-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/src/app/confirm-dialog/confirm-dialog.component.html -------------------------------------------------------------------------------- /Chapter03/src/app/confirm-dialog/confirm-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/src/app/confirm-dialog/confirm-dialog.component.spec.ts -------------------------------------------------------------------------------- /Chapter03/src/app/confirm-dialog/confirm-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/src/app/confirm-dialog/confirm-dialog.component.ts -------------------------------------------------------------------------------- /Chapter03/src/app/issue-list/issue-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/src/app/issue-list/issue-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/src/app/issue-list/issue-list.component.html -------------------------------------------------------------------------------- /Chapter03/src/app/issue-list/issue-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/src/app/issue-list/issue-list.component.spec.ts -------------------------------------------------------------------------------- /Chapter03/src/app/issue-list/issue-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/src/app/issue-list/issue-list.component.ts -------------------------------------------------------------------------------- /Chapter03/src/app/issue-report/issue-report.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/src/app/issue-report/issue-report.component.css -------------------------------------------------------------------------------- /Chapter03/src/app/issue-report/issue-report.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/src/app/issue-report/issue-report.component.html -------------------------------------------------------------------------------- /Chapter03/src/app/issue-report/issue-report.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/src/app/issue-report/issue-report.component.spec.ts -------------------------------------------------------------------------------- /Chapter03/src/app/issue-report/issue-report.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/src/app/issue-report/issue-report.component.ts -------------------------------------------------------------------------------- /Chapter03/src/app/issue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/src/app/issue.ts -------------------------------------------------------------------------------- /Chapter03/src/app/issues.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/src/app/issues.service.spec.ts -------------------------------------------------------------------------------- /Chapter03/src/app/issues.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/src/app/issues.service.ts -------------------------------------------------------------------------------- /Chapter03/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/src/assets/mock-issues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/src/assets/mock-issues.ts -------------------------------------------------------------------------------- /Chapter03/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/src/favicon.ico -------------------------------------------------------------------------------- /Chapter03/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/src/index.html -------------------------------------------------------------------------------- /Chapter03/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/src/main.ts -------------------------------------------------------------------------------- /Chapter03/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/src/styles.css -------------------------------------------------------------------------------- /Chapter03/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter03/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/tsconfig.json -------------------------------------------------------------------------------- /Chapter03/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter03/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter04/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/.editorconfig -------------------------------------------------------------------------------- /Chapter04/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/.firebaserc -------------------------------------------------------------------------------- /Chapter04/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/.gitignore -------------------------------------------------------------------------------- /Chapter04/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/.vscode/extensions.json -------------------------------------------------------------------------------- /Chapter04/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter04/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/README.md -------------------------------------------------------------------------------- /Chapter04/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/angular.json -------------------------------------------------------------------------------- /Chapter04/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/firebase.json -------------------------------------------------------------------------------- /Chapter04/ngsw-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/ngsw-config.json -------------------------------------------------------------------------------- /Chapter04/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/package-lock.json -------------------------------------------------------------------------------- /Chapter04/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/package.json -------------------------------------------------------------------------------- /Chapter04/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/src/app/app.component.html -------------------------------------------------------------------------------- /Chapter04/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Chapter04/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/src/app/app.component.ts -------------------------------------------------------------------------------- /Chapter04/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/src/app/app.module.ts -------------------------------------------------------------------------------- /Chapter04/src/app/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/src/app/header/header.component.html -------------------------------------------------------------------------------- /Chapter04/src/app/header/header.component.scss: -------------------------------------------------------------------------------- 1 | .spacer { 2 | flex: 1 1 auto; 3 | } 4 | -------------------------------------------------------------------------------- /Chapter04/src/app/header/header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/src/app/header/header.component.spec.ts -------------------------------------------------------------------------------- /Chapter04/src/app/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/src/app/header/header.component.ts -------------------------------------------------------------------------------- /Chapter04/src/app/weather.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/src/app/weather.service.spec.ts -------------------------------------------------------------------------------- /Chapter04/src/app/weather.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/src/app/weather.service.ts -------------------------------------------------------------------------------- /Chapter04/src/app/weather.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/src/app/weather.ts -------------------------------------------------------------------------------- /Chapter04/src/app/weather/weather.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/src/app/weather/weather.component.html -------------------------------------------------------------------------------- /Chapter04/src/app/weather/weather.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/src/app/weather/weather.component.scss -------------------------------------------------------------------------------- /Chapter04/src/app/weather/weather.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/src/app/weather/weather.component.spec.ts -------------------------------------------------------------------------------- /Chapter04/src/app/weather/weather.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/src/app/weather/weather.component.ts -------------------------------------------------------------------------------- /Chapter04/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/src/assets/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/src/assets/icons/icon-128x128.png -------------------------------------------------------------------------------- /Chapter04/src/assets/icons/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/src/assets/icons/icon-144x144.png -------------------------------------------------------------------------------- /Chapter04/src/assets/icons/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/src/assets/icons/icon-152x152.png -------------------------------------------------------------------------------- /Chapter04/src/assets/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/src/assets/icons/icon-192x192.png -------------------------------------------------------------------------------- /Chapter04/src/assets/icons/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/src/assets/icons/icon-384x384.png -------------------------------------------------------------------------------- /Chapter04/src/assets/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/src/assets/icons/icon-512x512.png -------------------------------------------------------------------------------- /Chapter04/src/assets/icons/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/src/assets/icons/icon-72x72.png -------------------------------------------------------------------------------- /Chapter04/src/assets/icons/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/src/assets/icons/icon-96x96.png -------------------------------------------------------------------------------- /Chapter04/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/src/favicon.ico -------------------------------------------------------------------------------- /Chapter04/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/src/index.html -------------------------------------------------------------------------------- /Chapter04/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/src/main.ts -------------------------------------------------------------------------------- /Chapter04/src/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/src/manifest.webmanifest -------------------------------------------------------------------------------- /Chapter04/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/src/styles.scss -------------------------------------------------------------------------------- /Chapter04/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter04/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/tsconfig.json -------------------------------------------------------------------------------- /Chapter04/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter04/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter05/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/.editorconfig -------------------------------------------------------------------------------- /Chapter05/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/.gitignore -------------------------------------------------------------------------------- /Chapter05/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/.vscode/extensions.json -------------------------------------------------------------------------------- /Chapter05/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter05/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter05/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/README.md -------------------------------------------------------------------------------- /Chapter05/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/angular.json -------------------------------------------------------------------------------- /Chapter05/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/package-lock.json -------------------------------------------------------------------------------- /Chapter05/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/package.json -------------------------------------------------------------------------------- /Chapter05/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/src/app/app.component.html -------------------------------------------------------------------------------- /Chapter05/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Chapter05/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/src/app/app.component.ts -------------------------------------------------------------------------------- /Chapter05/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/src/app/app.module.ts -------------------------------------------------------------------------------- /Chapter05/src/app/editor.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/src/app/editor.service.spec.ts -------------------------------------------------------------------------------- /Chapter05/src/app/editor.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/src/app/editor.service.ts -------------------------------------------------------------------------------- /Chapter05/src/app/editor/editor.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/src/app/editor/editor.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/src/app/editor/editor.component.html -------------------------------------------------------------------------------- /Chapter05/src/app/editor/editor.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/src/app/editor/editor.component.spec.ts -------------------------------------------------------------------------------- /Chapter05/src/app/editor/editor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/src/app/editor/editor.component.ts -------------------------------------------------------------------------------- /Chapter05/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/src/electron/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/src/electron/main.ts -------------------------------------------------------------------------------- /Chapter05/src/electron/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/src/electron/package.json -------------------------------------------------------------------------------- /Chapter05/src/electron/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/src/electron/tsconfig.json -------------------------------------------------------------------------------- /Chapter05/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/src/favicon.ico -------------------------------------------------------------------------------- /Chapter05/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/src/index.html -------------------------------------------------------------------------------- /Chapter05/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/src/main.ts -------------------------------------------------------------------------------- /Chapter05/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/src/styles.css -------------------------------------------------------------------------------- /Chapter05/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter05/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/tsconfig.json -------------------------------------------------------------------------------- /Chapter05/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter05/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/webpack.config.js -------------------------------------------------------------------------------- /Chapter05/webpack.dev.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/webpack.dev.config.js -------------------------------------------------------------------------------- /Chapter05/webpack.prod.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter05/webpack.prod.config.js -------------------------------------------------------------------------------- /Chapter06/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/.browserslistrc -------------------------------------------------------------------------------- /Chapter06/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/.editorconfig -------------------------------------------------------------------------------- /Chapter06/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/.eslintrc.json -------------------------------------------------------------------------------- /Chapter06/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/.gitignore -------------------------------------------------------------------------------- /Chapter06/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/.vscode/extensions.json -------------------------------------------------------------------------------- /Chapter06/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/angular.json -------------------------------------------------------------------------------- /Chapter06/capacitor.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/capacitor.config.ts -------------------------------------------------------------------------------- /Chapter06/extra-webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/extra-webpack.config.js -------------------------------------------------------------------------------- /Chapter06/firebase.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Chapter06/ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/ionic.config.json -------------------------------------------------------------------------------- /Chapter06/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/karma.conf.js -------------------------------------------------------------------------------- /Chapter06/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/package-lock.json -------------------------------------------------------------------------------- /Chapter06/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/package.json -------------------------------------------------------------------------------- /Chapter06/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/src/app/app.component.html -------------------------------------------------------------------------------- /Chapter06/src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/src/app/app.component.scss -------------------------------------------------------------------------------- /Chapter06/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Chapter06/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/src/app/app.component.ts -------------------------------------------------------------------------------- /Chapter06/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/src/app/app.routes.ts -------------------------------------------------------------------------------- /Chapter06/src/app/capture/capture.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/src/app/capture/capture.page.html -------------------------------------------------------------------------------- /Chapter06/src/app/capture/capture.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/src/app/capture/capture.page.scss -------------------------------------------------------------------------------- /Chapter06/src/app/capture/capture.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/src/app/capture/capture.page.spec.ts -------------------------------------------------------------------------------- /Chapter06/src/app/capture/capture.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/src/app/capture/capture.page.ts -------------------------------------------------------------------------------- /Chapter06/src/app/cesium.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/src/app/cesium.service.spec.ts -------------------------------------------------------------------------------- /Chapter06/src/app/cesium.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/src/app/cesium.service.ts -------------------------------------------------------------------------------- /Chapter06/src/app/photo.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/src/app/photo.service.spec.ts -------------------------------------------------------------------------------- /Chapter06/src/app/photo.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/src/app/photo.service.ts -------------------------------------------------------------------------------- /Chapter06/src/app/view/view.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/src/app/view/view.page.html -------------------------------------------------------------------------------- /Chapter06/src/app/view/view.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/src/app/view/view.page.scss -------------------------------------------------------------------------------- /Chapter06/src/app/view/view.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/src/app/view/view.page.spec.ts -------------------------------------------------------------------------------- /Chapter06/src/app/view/view.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/src/app/view/view.page.ts -------------------------------------------------------------------------------- /Chapter06/src/assets/icon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/src/assets/icon/favicon.png -------------------------------------------------------------------------------- /Chapter06/src/assets/shapes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/src/assets/shapes.svg -------------------------------------------------------------------------------- /Chapter06/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Chapter06/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/src/environments/environment.ts -------------------------------------------------------------------------------- /Chapter06/src/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/src/global.scss -------------------------------------------------------------------------------- /Chapter06/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/src/index.html -------------------------------------------------------------------------------- /Chapter06/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/src/main.ts -------------------------------------------------------------------------------- /Chapter06/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/src/polyfills.ts -------------------------------------------------------------------------------- /Chapter06/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/src/test.ts -------------------------------------------------------------------------------- /Chapter06/src/theme/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/src/theme/variables.scss -------------------------------------------------------------------------------- /Chapter06/src/zone-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/src/zone-flags.ts -------------------------------------------------------------------------------- /Chapter06/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter06/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/tsconfig.json -------------------------------------------------------------------------------- /Chapter06/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter06/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter07/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/.editorconfig -------------------------------------------------------------------------------- /Chapter07/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/.gitignore -------------------------------------------------------------------------------- /Chapter07/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/.vscode/extensions.json -------------------------------------------------------------------------------- /Chapter07/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter07/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter07/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/README.md -------------------------------------------------------------------------------- /Chapter07/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/angular.json -------------------------------------------------------------------------------- /Chapter07/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/package-lock.json -------------------------------------------------------------------------------- /Chapter07/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/package.json -------------------------------------------------------------------------------- /Chapter07/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/server.ts -------------------------------------------------------------------------------- /Chapter07/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/app/app.component.html -------------------------------------------------------------------------------- /Chapter07/src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/app/app.component.scss -------------------------------------------------------------------------------- /Chapter07/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Chapter07/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/app/app.component.ts -------------------------------------------------------------------------------- /Chapter07/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/app/app.module.ts -------------------------------------------------------------------------------- /Chapter07/src/app/app.server.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/app/app.server.module.ts -------------------------------------------------------------------------------- /Chapter07/src/app/github.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/app/github.service.spec.ts -------------------------------------------------------------------------------- /Chapter07/src/app/github.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/app/github.service.ts -------------------------------------------------------------------------------- /Chapter07/src/app/organization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/app/organization.ts -------------------------------------------------------------------------------- /Chapter07/src/app/organizations/organizations.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/app/organizations/organizations.component.html -------------------------------------------------------------------------------- /Chapter07/src/app/organizations/organizations.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/app/organizations/organizations.component.scss -------------------------------------------------------------------------------- /Chapter07/src/app/organizations/organizations.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/app/organizations/organizations.component.spec.ts -------------------------------------------------------------------------------- /Chapter07/src/app/organizations/organizations.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/app/organizations/organizations.component.ts -------------------------------------------------------------------------------- /Chapter07/src/app/panel/panel.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/app/panel/panel.component.html -------------------------------------------------------------------------------- /Chapter07/src/app/panel/panel.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/src/app/panel/panel.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/app/panel/panel.component.spec.ts -------------------------------------------------------------------------------- /Chapter07/src/app/panel/panel.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/app/panel/panel.component.ts -------------------------------------------------------------------------------- /Chapter07/src/app/personal-info/personal-info.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/app/personal-info/personal-info.component.html -------------------------------------------------------------------------------- /Chapter07/src/app/personal-info/personal-info.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/src/app/personal-info/personal-info.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/app/personal-info/personal-info.component.spec.ts -------------------------------------------------------------------------------- /Chapter07/src/app/personal-info/personal-info.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/app/personal-info/personal-info.component.ts -------------------------------------------------------------------------------- /Chapter07/src/app/repositories/repositories.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/app/repositories/repositories.component.html -------------------------------------------------------------------------------- /Chapter07/src/app/repositories/repositories.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/src/app/repositories/repositories.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/app/repositories/repositories.component.spec.ts -------------------------------------------------------------------------------- /Chapter07/src/app/repositories/repositories.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/app/repositories/repositories.component.ts -------------------------------------------------------------------------------- /Chapter07/src/app/repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/app/repository.ts -------------------------------------------------------------------------------- /Chapter07/src/app/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/app/user.ts -------------------------------------------------------------------------------- /Chapter07/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/src/assets/angular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/assets/angular.png -------------------------------------------------------------------------------- /Chapter07/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/favicon.ico -------------------------------------------------------------------------------- /Chapter07/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/index.html -------------------------------------------------------------------------------- /Chapter07/src/main.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/main.server.ts -------------------------------------------------------------------------------- /Chapter07/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/main.ts -------------------------------------------------------------------------------- /Chapter07/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/src/styles.scss -------------------------------------------------------------------------------- /Chapter07/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter07/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/tsconfig.json -------------------------------------------------------------------------------- /Chapter07/tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/tsconfig.server.json -------------------------------------------------------------------------------- /Chapter07/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter07/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter08/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/.editorconfig -------------------------------------------------------------------------------- /Chapter08/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Chapter08/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/.eslintrc.json -------------------------------------------------------------------------------- /Chapter08/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/.gitignore -------------------------------------------------------------------------------- /Chapter08/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/.prettierignore -------------------------------------------------------------------------------- /Chapter08/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /Chapter08/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/.vscode/extensions.json -------------------------------------------------------------------------------- /Chapter08/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/README.md -------------------------------------------------------------------------------- /Chapter08/apps/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/apps/tour-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/apps/tour-e2e/.eslintrc.json -------------------------------------------------------------------------------- /Chapter08/apps/tour-e2e/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/apps/tour-e2e/cypress.config.ts -------------------------------------------------------------------------------- /Chapter08/apps/tour-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/apps/tour-e2e/project.json -------------------------------------------------------------------------------- /Chapter08/apps/tour-e2e/src/e2e/app.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/apps/tour-e2e/src/e2e/app.cy.ts -------------------------------------------------------------------------------- /Chapter08/apps/tour-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/apps/tour-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /Chapter08/apps/tour-e2e/src/support/app.po.ts: -------------------------------------------------------------------------------- 1 | export const getGreeting = () => cy.get('h1'); 2 | -------------------------------------------------------------------------------- /Chapter08/apps/tour-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/apps/tour-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /Chapter08/apps/tour-e2e/src/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/apps/tour-e2e/src/support/e2e.ts -------------------------------------------------------------------------------- /Chapter08/apps/tour-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/apps/tour-e2e/tsconfig.json -------------------------------------------------------------------------------- /Chapter08/apps/tour/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/apps/tour/.eslintrc.json -------------------------------------------------------------------------------- /Chapter08/apps/tour/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/apps/tour/jest.config.ts -------------------------------------------------------------------------------- /Chapter08/apps/tour/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/apps/tour/project.json -------------------------------------------------------------------------------- /Chapter08/apps/tour/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/apps/tour/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/apps/tour/src/app/app.component.html -------------------------------------------------------------------------------- /Chapter08/apps/tour/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/apps/tour/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Chapter08/apps/tour/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/apps/tour/src/app/app.component.ts -------------------------------------------------------------------------------- /Chapter08/apps/tour/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/apps/tour/src/app/app.module.ts -------------------------------------------------------------------------------- /Chapter08/apps/tour/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/apps/tour/src/app/app.routes.ts -------------------------------------------------------------------------------- /Chapter08/apps/tour/src/app/nx-welcome.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/apps/tour/src/app/nx-welcome.component.ts -------------------------------------------------------------------------------- /Chapter08/apps/tour/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/apps/tour/src/assets/poi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/apps/tour/src/assets/poi.json -------------------------------------------------------------------------------- /Chapter08/apps/tour/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/apps/tour/src/favicon.ico -------------------------------------------------------------------------------- /Chapter08/apps/tour/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/apps/tour/src/index.html -------------------------------------------------------------------------------- /Chapter08/apps/tour/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/apps/tour/src/main.ts -------------------------------------------------------------------------------- /Chapter08/apps/tour/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/apps/tour/src/styles.css -------------------------------------------------------------------------------- /Chapter08/apps/tour/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/apps/tour/src/test-setup.ts -------------------------------------------------------------------------------- /Chapter08/apps/tour/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/apps/tour/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter08/apps/tour/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/apps/tour/tsconfig.editor.json -------------------------------------------------------------------------------- /Chapter08/apps/tour/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/apps/tour/tsconfig.json -------------------------------------------------------------------------------- /Chapter08/apps/tour/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/apps/tour/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter08/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/jest.config.ts -------------------------------------------------------------------------------- /Chapter08/jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/jest.preset.js -------------------------------------------------------------------------------- /Chapter08/libs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/libs/admin/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/admin/.eslintrc.json -------------------------------------------------------------------------------- /Chapter08/libs/admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/admin/README.md -------------------------------------------------------------------------------- /Chapter08/libs/admin/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/admin/jest.config.ts -------------------------------------------------------------------------------- /Chapter08/libs/admin/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/admin/project.json -------------------------------------------------------------------------------- /Chapter08/libs/admin/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/admin.module'; 2 | -------------------------------------------------------------------------------- /Chapter08/libs/admin/src/lib/admin.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/libs/admin/src/lib/admin.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/admin/src/lib/admin.component.html -------------------------------------------------------------------------------- /Chapter08/libs/admin/src/lib/admin.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/admin/src/lib/admin.component.spec.ts -------------------------------------------------------------------------------- /Chapter08/libs/admin/src/lib/admin.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/admin/src/lib/admin.component.ts -------------------------------------------------------------------------------- /Chapter08/libs/admin/src/lib/admin.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/admin/src/lib/admin.module.ts -------------------------------------------------------------------------------- /Chapter08/libs/admin/src/lib/admin.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/admin/src/lib/admin.service.spec.ts -------------------------------------------------------------------------------- /Chapter08/libs/admin/src/lib/admin.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/admin/src/lib/admin.service.ts -------------------------------------------------------------------------------- /Chapter08/libs/admin/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/admin/src/test-setup.ts -------------------------------------------------------------------------------- /Chapter08/libs/admin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/admin/tsconfig.json -------------------------------------------------------------------------------- /Chapter08/libs/admin/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/admin/tsconfig.lib.json -------------------------------------------------------------------------------- /Chapter08/libs/admin/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/admin/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter08/libs/poi/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/poi/.eslintrc.json -------------------------------------------------------------------------------- /Chapter08/libs/poi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/poi/README.md -------------------------------------------------------------------------------- /Chapter08/libs/poi/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/poi/jest.config.ts -------------------------------------------------------------------------------- /Chapter08/libs/poi/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/poi/project.json -------------------------------------------------------------------------------- /Chapter08/libs/poi/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/poi/src/index.ts -------------------------------------------------------------------------------- /Chapter08/libs/poi/src/lib/+state/poi.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/poi/src/lib/+state/poi.actions.ts -------------------------------------------------------------------------------- /Chapter08/libs/poi/src/lib/+state/poi.effects.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/poi/src/lib/+state/poi.effects.spec.ts -------------------------------------------------------------------------------- /Chapter08/libs/poi/src/lib/+state/poi.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/poi/src/lib/+state/poi.effects.ts -------------------------------------------------------------------------------- /Chapter08/libs/poi/src/lib/+state/poi.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/poi/src/lib/+state/poi.models.ts -------------------------------------------------------------------------------- /Chapter08/libs/poi/src/lib/+state/poi.reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/poi/src/lib/+state/poi.reducer.spec.ts -------------------------------------------------------------------------------- /Chapter08/libs/poi/src/lib/+state/poi.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/poi/src/lib/+state/poi.reducer.ts -------------------------------------------------------------------------------- /Chapter08/libs/poi/src/lib/+state/poi.selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/poi/src/lib/+state/poi.selectors.spec.ts -------------------------------------------------------------------------------- /Chapter08/libs/poi/src/lib/+state/poi.selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/poi/src/lib/+state/poi.selectors.ts -------------------------------------------------------------------------------- /Chapter08/libs/poi/src/lib/poi.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/poi/src/lib/poi.module.ts -------------------------------------------------------------------------------- /Chapter08/libs/poi/src/lib/poi.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/poi/src/lib/poi.service.spec.ts -------------------------------------------------------------------------------- /Chapter08/libs/poi/src/lib/poi.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/poi/src/lib/poi.service.ts -------------------------------------------------------------------------------- /Chapter08/libs/poi/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/poi/src/test-setup.ts -------------------------------------------------------------------------------- /Chapter08/libs/poi/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/poi/tsconfig.json -------------------------------------------------------------------------------- /Chapter08/libs/poi/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/poi/tsconfig.lib.json -------------------------------------------------------------------------------- /Chapter08/libs/poi/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/poi/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter08/libs/visitor/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/visitor/.eslintrc.json -------------------------------------------------------------------------------- /Chapter08/libs/visitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/visitor/README.md -------------------------------------------------------------------------------- /Chapter08/libs/visitor/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/visitor/jest.config.ts -------------------------------------------------------------------------------- /Chapter08/libs/visitor/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/visitor/project.json -------------------------------------------------------------------------------- /Chapter08/libs/visitor/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/visitor.module'; 2 | -------------------------------------------------------------------------------- /Chapter08/libs/visitor/src/lib/map/map.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/libs/visitor/src/lib/map/map.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/visitor/src/lib/map/map.component.html -------------------------------------------------------------------------------- /Chapter08/libs/visitor/src/lib/map/map.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/visitor/src/lib/map/map.component.spec.ts -------------------------------------------------------------------------------- /Chapter08/libs/visitor/src/lib/map/map.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/visitor/src/lib/map/map.component.ts -------------------------------------------------------------------------------- /Chapter08/libs/visitor/src/lib/poi-list/poi-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/libs/visitor/src/lib/poi-list/poi-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/visitor/src/lib/poi-list/poi-list.component.html -------------------------------------------------------------------------------- /Chapter08/libs/visitor/src/lib/poi-list/poi-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/visitor/src/lib/poi-list/poi-list.component.spec.ts -------------------------------------------------------------------------------- /Chapter08/libs/visitor/src/lib/poi-list/poi-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/visitor/src/lib/poi-list/poi-list.component.ts -------------------------------------------------------------------------------- /Chapter08/libs/visitor/src/lib/visitor.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/visitor/src/lib/visitor.component.css -------------------------------------------------------------------------------- /Chapter08/libs/visitor/src/lib/visitor.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/visitor/src/lib/visitor.component.html -------------------------------------------------------------------------------- /Chapter08/libs/visitor/src/lib/visitor.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/visitor/src/lib/visitor.component.spec.ts -------------------------------------------------------------------------------- /Chapter08/libs/visitor/src/lib/visitor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/visitor/src/lib/visitor.component.ts -------------------------------------------------------------------------------- /Chapter08/libs/visitor/src/lib/visitor.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/visitor/src/lib/visitor.module.ts -------------------------------------------------------------------------------- /Chapter08/libs/visitor/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/visitor/src/test-setup.ts -------------------------------------------------------------------------------- /Chapter08/libs/visitor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/visitor/tsconfig.json -------------------------------------------------------------------------------- /Chapter08/libs/visitor/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/visitor/tsconfig.lib.json -------------------------------------------------------------------------------- /Chapter08/libs/visitor/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/libs/visitor/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter08/nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/nx.json -------------------------------------------------------------------------------- /Chapter08/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/package-lock.json -------------------------------------------------------------------------------- /Chapter08/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/package.json -------------------------------------------------------------------------------- /Chapter08/tools/tsconfig.tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/tools/tsconfig.tools.json -------------------------------------------------------------------------------- /Chapter08/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter08/tsconfig.base.json -------------------------------------------------------------------------------- /Chapter09/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/.editorconfig -------------------------------------------------------------------------------- /Chapter09/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/.gitignore -------------------------------------------------------------------------------- /Chapter09/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/.vscode/extensions.json -------------------------------------------------------------------------------- /Chapter09/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter09/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter09/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/README.md -------------------------------------------------------------------------------- /Chapter09/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/angular.json -------------------------------------------------------------------------------- /Chapter09/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/package-lock.json -------------------------------------------------------------------------------- /Chapter09/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/package.json -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-controls/README.md -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-controls/ng-package.json -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-controls/package.json -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/src/lib/card-list/card-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-controls/src/lib/card-list/card-list.component.css -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/src/lib/card-list/card-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-controls/src/lib/card-list/card-list.component.html -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/src/lib/card-list/card-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-controls/src/lib/card-list/card-list.component.spec.ts -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/src/lib/card-list/card-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-controls/src/lib/card-list/card-list.component.ts -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/src/lib/card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-controls/src/lib/card.ts -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/src/lib/copy-button/copy-button.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/src/lib/copy-button/copy-button.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-controls/src/lib/copy-button/copy-button.component.html -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/src/lib/copy-button/copy-button.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-controls/src/lib/copy-button/copy-button.component.spec.ts -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/src/lib/copy-button/copy-button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-controls/src/lib/copy-button/copy-button.component.ts -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/src/lib/ui-controls.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-controls/src/lib/ui-controls.component.spec.ts -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/src/lib/ui-controls.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-controls/src/lib/ui-controls.component.ts -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/src/lib/ui-controls.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-controls/src/lib/ui-controls.module.ts -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/src/lib/ui-controls.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-controls/src/lib/ui-controls.service.spec.ts -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/src/lib/ui-controls.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-controls/src/lib/ui-controls.service.ts -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-controls/src/public-api.ts -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-controls/tsconfig.lib.json -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-controls/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-controls/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter09/projects/ui-elements/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/projects/ui-elements/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-elements/src/app/app.component.html -------------------------------------------------------------------------------- /Chapter09/projects/ui-elements/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-elements/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Chapter09/projects/ui-elements/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-elements/src/app/app.component.ts -------------------------------------------------------------------------------- /Chapter09/projects/ui-elements/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-elements/src/app/app.module.ts -------------------------------------------------------------------------------- /Chapter09/projects/ui-elements/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/projects/ui-elements/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-elements/src/favicon.ico -------------------------------------------------------------------------------- /Chapter09/projects/ui-elements/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-elements/src/index.html -------------------------------------------------------------------------------- /Chapter09/projects/ui-elements/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-elements/src/main.ts -------------------------------------------------------------------------------- /Chapter09/projects/ui-elements/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-elements/src/styles.css -------------------------------------------------------------------------------- /Chapter09/projects/ui-elements/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-elements/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter09/projects/ui-elements/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/projects/ui-elements/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter09/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/src/app/app.component.html -------------------------------------------------------------------------------- /Chapter09/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Chapter09/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/src/app/app.component.ts -------------------------------------------------------------------------------- /Chapter09/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/src/app/app.module.ts -------------------------------------------------------------------------------- /Chapter09/src/app/assassins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/src/app/assassins.ts -------------------------------------------------------------------------------- /Chapter09/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/src/favicon.ico -------------------------------------------------------------------------------- /Chapter09/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/src/index.html -------------------------------------------------------------------------------- /Chapter09/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/src/main.ts -------------------------------------------------------------------------------- /Chapter09/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/src/styles.css -------------------------------------------------------------------------------- /Chapter09/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter09/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/tsconfig.json -------------------------------------------------------------------------------- /Chapter09/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter09/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter10/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter10/.gitignore -------------------------------------------------------------------------------- /Chapter10/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter10/.npmignore -------------------------------------------------------------------------------- /Chapter10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter10/README.md -------------------------------------------------------------------------------- /Chapter10/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter10/package-lock.json -------------------------------------------------------------------------------- /Chapter10/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter10/package.json -------------------------------------------------------------------------------- /Chapter10/src/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter10/src/collection.json -------------------------------------------------------------------------------- /Chapter10/src/crud-service/files/__name@dasherize__.service.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter10/src/crud-service/files/__name@dasherize__.service.ts.template -------------------------------------------------------------------------------- /Chapter10/src/crud-service/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter10/src/crud-service/index.ts -------------------------------------------------------------------------------- /Chapter10/src/crud-service/index_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter10/src/crud-service/index_spec.ts -------------------------------------------------------------------------------- /Chapter10/src/my-schematics/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter10/src/my-schematics/index.ts -------------------------------------------------------------------------------- /Chapter10/src/my-schematics/index_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter10/src/my-schematics/index_spec.ts -------------------------------------------------------------------------------- /Chapter10/src/tailwind-container/files/__name@dasherize__.component.html.template: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /Chapter10/src/tailwind-container/files/__name@dasherize__.component.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter10/src/tailwind-container/files/__name@dasherize__.component.ts.template -------------------------------------------------------------------------------- /Chapter10/src/tailwind-container/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter10/src/tailwind-container/index.ts -------------------------------------------------------------------------------- /Chapter10/src/tailwind-container/index_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter10/src/tailwind-container/index_spec.ts -------------------------------------------------------------------------------- /Chapter10/src/tailwind-container/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter10/src/tailwind-container/schema.json -------------------------------------------------------------------------------- /Chapter10/src/tailwind-container/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter10/src/tailwind-container/schema.ts -------------------------------------------------------------------------------- /Chapter10/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/Chapter10/tsconfig.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Third-Edition/HEAD/README.md --------------------------------------------------------------------------------