├── .vscode └── extensions.json ├── Chapter01 ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ └── app.module.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── Chapter02 ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── karma.conf.js ├── mdfiles │ ├── 2021-05-20-posts.md │ └── angular-and-scully.md ├── package-lock.json ├── package.json ├── scully.my-blog.config.ts ├── scully │ ├── plugins │ │ └── plugin.ts │ └── tsconfig.json ├── 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 │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.scss │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── Chapter03 ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── 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 │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── Chapter04 ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── firebase.json ├── karma.conf.js ├── 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 │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── manifest.webmanifest │ ├── polyfills.ts │ ├── styles.scss │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── Chapter05 ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── .vscode │ └── launch.json ├── README.md ├── angular.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── editor.service.spec.ts │ │ ├── editor.service.ts │ │ ├── editor │ │ │ ├── editor.component.css │ │ │ ├── editor.component.html │ │ │ ├── editor.component.spec.ts │ │ │ └── editor.component.ts │ │ └── window.ts │ ├── assets │ │ └── .gitkeep │ ├── electron │ │ ├── main.ts │ │ ├── package.json │ │ └── tsconfig.json │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json ├── webpack.config.js ├── webpack.dev.config.js └── webpack.prod.config.js ├── Chapter06 ├── .browserslistrc ├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── android │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── compiler.xml │ │ ├── jarRepositories.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── capacitor.build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── getcapacitor │ │ │ │ └── myapp │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ │ ├── capacitor.config.json │ │ │ │ └── capacitor.plugins.json │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── ionic │ │ │ │ │ └── starter │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable-land-hdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-land-mdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-land-xhdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-land-xxhdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-land-xxxhdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-port-hdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-port-mdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-port-xhdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-port-xxhdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-port-xxxhdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ └── splash.png │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ │ └── xml │ │ │ │ ├── config.xml │ │ │ │ └── file_paths.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── getcapacitor │ │ │ └── myapp │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── capacitor.settings.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── variables.gradle ├── angular.json ├── capacitor.config.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json ├── extra-webpack.config.js ├── firebase.json ├── ionic.config.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── resources │ ├── icon.png │ └── splash.png ├── src │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── capture │ │ │ ├── capture-routing.module.ts │ │ │ ├── capture.module.ts │ │ │ ├── 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 │ │ ├── photo.ts │ │ └── view │ │ │ ├── view-routing.module.ts │ │ │ ├── view.module.ts │ │ │ ├── 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 ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── karma.conf.js ├── 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 │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.server.ts │ ├── main.ts │ ├── polyfills.ts │ ├── styles.scss │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.server.json └── tsconfig.spec.json ├── Chapter08 ├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode │ └── extensions.json ├── README.md ├── angular.json ├── apps │ ├── .gitkeep │ ├── tour-e2e │ │ ├── .eslintrc.json │ │ ├── cypress.json │ │ ├── src │ │ │ ├── fixtures │ │ │ │ └── example.json │ │ │ ├── integration │ │ │ │ └── app.spec.ts │ │ │ ├── plugins │ │ │ │ └── index.js │ │ │ └── support │ │ │ │ ├── app.po.ts │ │ │ │ ├── commands.ts │ │ │ │ └── index.ts │ │ ├── tsconfig.e2e.json │ │ └── tsconfig.json │ └── tour │ │ ├── .browserslistrc │ │ ├── .eslintrc.json │ │ ├── jest.config.js │ │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ └── app.module.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ └── poi.json │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test-setup.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.editor.json │ │ ├── tsconfig.json │ │ └── tsconfig.spec.json ├── decorate-angular-cli.js ├── jest.config.js ├── jest.preset.js ├── libs │ ├── .gitkeep │ ├── admin │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── 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.js │ │ ├── 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.js │ │ ├── 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 │ ├── generators │ │ └── .gitkeep │ └── tsconfig.tools.json └── tsconfig.base.json ├── Chapter09 ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── projects │ ├── ui-controls │ │ ├── README.md │ │ ├── karma.conf.js │ │ ├── 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 │ │ │ └── test.ts │ │ ├── tsconfig.lib.json │ │ ├── tsconfig.lib.prod.json │ │ └── tsconfig.spec.json │ └── ui-elements │ │ ├── .browserslistrc │ │ ├── karma.conf.js │ │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ └── app.module.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ └── tsconfig.spec.json ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ └── assassins.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── Chapter10 ├── .gitignore ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── collection.json │ ├── crud-service │ │ ├── files │ │ │ ├── __name@dasherize__.service.spec.ts.template │ │ │ └── __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-Second-Edition/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /Chapter01/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter01/.browserslistrc -------------------------------------------------------------------------------- /Chapter01/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter01/.editorconfig -------------------------------------------------------------------------------- /Chapter01/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter01/.gitignore -------------------------------------------------------------------------------- /Chapter01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter01/README.md -------------------------------------------------------------------------------- /Chapter01/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter01/angular.json -------------------------------------------------------------------------------- /Chapter01/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter01/karma.conf.js -------------------------------------------------------------------------------- /Chapter01/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter01/package-lock.json -------------------------------------------------------------------------------- /Chapter01/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-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-Second-Edition/HEAD/Chapter01/src/app/app.component.html -------------------------------------------------------------------------------- /Chapter01/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter01/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Chapter01/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter01/src/app/app.component.ts -------------------------------------------------------------------------------- /Chapter01/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter01/src/app/app.module.ts -------------------------------------------------------------------------------- /Chapter01/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter01/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Chapter01/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter01/src/environments/environment.ts -------------------------------------------------------------------------------- /Chapter01/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter01/src/favicon.ico -------------------------------------------------------------------------------- /Chapter01/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter01/src/index.html -------------------------------------------------------------------------------- /Chapter01/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter01/src/main.ts -------------------------------------------------------------------------------- /Chapter01/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter01/src/polyfills.ts -------------------------------------------------------------------------------- /Chapter01/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter01/src/styles.css -------------------------------------------------------------------------------- /Chapter01/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter01/src/test.ts -------------------------------------------------------------------------------- /Chapter01/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter01/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter01/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter01/tsconfig.json -------------------------------------------------------------------------------- /Chapter01/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter01/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter02/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/.browserslistrc -------------------------------------------------------------------------------- /Chapter02/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/.editorconfig -------------------------------------------------------------------------------- /Chapter02/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/.gitignore -------------------------------------------------------------------------------- /Chapter02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/README.md -------------------------------------------------------------------------------- /Chapter02/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/angular.json -------------------------------------------------------------------------------- /Chapter02/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/karma.conf.js -------------------------------------------------------------------------------- /Chapter02/mdfiles/2021-05-20-posts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/mdfiles/2021-05-20-posts.md -------------------------------------------------------------------------------- /Chapter02/mdfiles/angular-and-scully.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/mdfiles/angular-and-scully.md -------------------------------------------------------------------------------- /Chapter02/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/package-lock.json -------------------------------------------------------------------------------- /Chapter02/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/package.json -------------------------------------------------------------------------------- /Chapter02/scully.my-blog.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/scully.my-blog.config.ts -------------------------------------------------------------------------------- /Chapter02/scully/plugins/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/scully/plugins/plugin.ts -------------------------------------------------------------------------------- /Chapter02/scully/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/scully/tsconfig.json -------------------------------------------------------------------------------- /Chapter02/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /Chapter02/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-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-Second-Edition/HEAD/Chapter02/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Chapter02/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/src/app/app.component.ts -------------------------------------------------------------------------------- /Chapter02/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/src/app/app.module.ts -------------------------------------------------------------------------------- /Chapter02/src/app/articles/articles-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/src/app/articles/articles-routing.module.ts -------------------------------------------------------------------------------- /Chapter02/src/app/articles/articles.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-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-Second-Edition/HEAD/Chapter02/src/app/articles/articles.component.spec.ts -------------------------------------------------------------------------------- /Chapter02/src/app/articles/articles.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/src/app/articles/articles.component.ts -------------------------------------------------------------------------------- /Chapter02/src/app/articles/articles.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/src/app/articles/articles.module.ts -------------------------------------------------------------------------------- /Chapter02/src/app/contact/contact.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-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-Second-Edition/HEAD/Chapter02/src/app/contact/contact.component.spec.ts -------------------------------------------------------------------------------- /Chapter02/src/app/contact/contact.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/src/app/contact/contact.component.ts -------------------------------------------------------------------------------- /Chapter02/src/app/contact/contact.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/src/app/contact/contact.module.ts -------------------------------------------------------------------------------- /Chapter02/src/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/src/app/core/core.module.ts -------------------------------------------------------------------------------- /Chapter02/src/app/core/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-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-Second-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-Second-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-Second-Edition/HEAD/Chapter02/src/app/posts/posts-routing.module.ts -------------------------------------------------------------------------------- /Chapter02/src/app/posts/posts.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/src/app/posts/posts.component.html -------------------------------------------------------------------------------- /Chapter02/src/app/posts/posts.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/src/app/posts/posts.component.scss -------------------------------------------------------------------------------- /Chapter02/src/app/posts/posts.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/src/app/posts/posts.component.spec.ts -------------------------------------------------------------------------------- /Chapter02/src/app/posts/posts.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/src/app/posts/posts.component.ts -------------------------------------------------------------------------------- /Chapter02/src/app/posts/posts.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/src/app/posts/posts.module.ts -------------------------------------------------------------------------------- /Chapter02/src/app/shared/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-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-Second-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-Second-Edition/HEAD/Chapter02/src/app/shared/footer/footer.component.ts -------------------------------------------------------------------------------- /Chapter02/src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-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-Second-Edition/HEAD/Chapter02/src/assets/angular.png -------------------------------------------------------------------------------- /Chapter02/src/assets/scully-routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/src/assets/scully-routes.json -------------------------------------------------------------------------------- /Chapter02/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Chapter02/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/src/environments/environment.ts -------------------------------------------------------------------------------- /Chapter02/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/src/favicon.ico -------------------------------------------------------------------------------- /Chapter02/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/src/index.html -------------------------------------------------------------------------------- /Chapter02/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/src/main.ts -------------------------------------------------------------------------------- /Chapter02/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/src/polyfills.ts -------------------------------------------------------------------------------- /Chapter02/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/src/styles.scss -------------------------------------------------------------------------------- /Chapter02/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/src/test.ts -------------------------------------------------------------------------------- /Chapter02/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter02/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/tsconfig.json -------------------------------------------------------------------------------- /Chapter02/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter02/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter03/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter03/.browserslistrc -------------------------------------------------------------------------------- /Chapter03/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter03/.editorconfig -------------------------------------------------------------------------------- /Chapter03/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter03/.gitignore -------------------------------------------------------------------------------- /Chapter03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter03/README.md -------------------------------------------------------------------------------- /Chapter03/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter03/angular.json -------------------------------------------------------------------------------- /Chapter03/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter03/karma.conf.js -------------------------------------------------------------------------------- /Chapter03/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter03/package-lock.json -------------------------------------------------------------------------------- /Chapter03/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-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-Second-Edition/HEAD/Chapter03/src/app/app.component.html -------------------------------------------------------------------------------- /Chapter03/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter03/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Chapter03/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter03/src/app/app.component.ts -------------------------------------------------------------------------------- /Chapter03/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-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-Second-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-Second-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-Second-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-Second-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-Second-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-Second-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-Second-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-Second-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-Second-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-Second-Edition/HEAD/Chapter03/src/app/issue-report/issue-report.component.ts -------------------------------------------------------------------------------- /Chapter03/src/app/issue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter03/src/app/issue.ts -------------------------------------------------------------------------------- /Chapter03/src/app/issues.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter03/src/app/issues.service.spec.ts -------------------------------------------------------------------------------- /Chapter03/src/app/issues.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-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-Second-Edition/HEAD/Chapter03/src/assets/mock-issues.ts -------------------------------------------------------------------------------- /Chapter03/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Chapter03/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter03/src/environments/environment.ts -------------------------------------------------------------------------------- /Chapter03/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter03/src/favicon.ico -------------------------------------------------------------------------------- /Chapter03/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter03/src/index.html -------------------------------------------------------------------------------- /Chapter03/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter03/src/main.ts -------------------------------------------------------------------------------- /Chapter03/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter03/src/polyfills.ts -------------------------------------------------------------------------------- /Chapter03/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter03/src/styles.css -------------------------------------------------------------------------------- /Chapter03/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter03/src/test.ts -------------------------------------------------------------------------------- /Chapter03/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter03/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter03/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter03/tsconfig.json -------------------------------------------------------------------------------- /Chapter03/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter03/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter04/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/.browserslistrc -------------------------------------------------------------------------------- /Chapter04/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/.editorconfig -------------------------------------------------------------------------------- /Chapter04/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/.gitignore -------------------------------------------------------------------------------- /Chapter04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/README.md -------------------------------------------------------------------------------- /Chapter04/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/angular.json -------------------------------------------------------------------------------- /Chapter04/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/firebase.json -------------------------------------------------------------------------------- /Chapter04/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/karma.conf.js -------------------------------------------------------------------------------- /Chapter04/ngsw-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/ngsw-config.json -------------------------------------------------------------------------------- /Chapter04/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/package-lock.json -------------------------------------------------------------------------------- /Chapter04/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/package.json -------------------------------------------------------------------------------- /Chapter04/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-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-Second-Edition/HEAD/Chapter04/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Chapter04/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/src/app/app.component.ts -------------------------------------------------------------------------------- /Chapter04/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/src/app/app.module.ts -------------------------------------------------------------------------------- /Chapter04/src/app/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-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-Second-Edition/HEAD/Chapter04/src/app/header/header.component.spec.ts -------------------------------------------------------------------------------- /Chapter04/src/app/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/src/app/header/header.component.ts -------------------------------------------------------------------------------- /Chapter04/src/app/weather.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/src/app/weather.service.spec.ts -------------------------------------------------------------------------------- /Chapter04/src/app/weather.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/src/app/weather.service.ts -------------------------------------------------------------------------------- /Chapter04/src/app/weather.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/src/app/weather.ts -------------------------------------------------------------------------------- /Chapter04/src/app/weather/weather.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/src/app/weather/weather.component.html -------------------------------------------------------------------------------- /Chapter04/src/app/weather/weather.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/src/app/weather/weather.component.scss -------------------------------------------------------------------------------- /Chapter04/src/app/weather/weather.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/src/app/weather/weather.component.spec.ts -------------------------------------------------------------------------------- /Chapter04/src/app/weather/weather.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-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-Second-Edition/HEAD/Chapter04/src/assets/icons/icon-128x128.png -------------------------------------------------------------------------------- /Chapter04/src/assets/icons/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/src/assets/icons/icon-144x144.png -------------------------------------------------------------------------------- /Chapter04/src/assets/icons/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/src/assets/icons/icon-152x152.png -------------------------------------------------------------------------------- /Chapter04/src/assets/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/src/assets/icons/icon-192x192.png -------------------------------------------------------------------------------- /Chapter04/src/assets/icons/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/src/assets/icons/icon-384x384.png -------------------------------------------------------------------------------- /Chapter04/src/assets/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/src/assets/icons/icon-512x512.png -------------------------------------------------------------------------------- /Chapter04/src/assets/icons/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/src/assets/icons/icon-72x72.png -------------------------------------------------------------------------------- /Chapter04/src/assets/icons/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/src/assets/icons/icon-96x96.png -------------------------------------------------------------------------------- /Chapter04/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /Chapter04/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/src/environments/environment.ts -------------------------------------------------------------------------------- /Chapter04/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/src/favicon.ico -------------------------------------------------------------------------------- /Chapter04/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/src/index.html -------------------------------------------------------------------------------- /Chapter04/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/src/main.ts -------------------------------------------------------------------------------- /Chapter04/src/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/src/manifest.webmanifest -------------------------------------------------------------------------------- /Chapter04/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/src/polyfills.ts -------------------------------------------------------------------------------- /Chapter04/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/src/styles.scss -------------------------------------------------------------------------------- /Chapter04/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/src/test.ts -------------------------------------------------------------------------------- /Chapter04/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter04/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/tsconfig.json -------------------------------------------------------------------------------- /Chapter04/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter04/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter05/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/.browserslistrc -------------------------------------------------------------------------------- /Chapter05/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/.editorconfig -------------------------------------------------------------------------------- /Chapter05/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/.gitignore -------------------------------------------------------------------------------- /Chapter05/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter05/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/README.md -------------------------------------------------------------------------------- /Chapter05/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/angular.json -------------------------------------------------------------------------------- /Chapter05/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/karma.conf.js -------------------------------------------------------------------------------- /Chapter05/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/package-lock.json -------------------------------------------------------------------------------- /Chapter05/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-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-Second-Edition/HEAD/Chapter05/src/app/app.component.html -------------------------------------------------------------------------------- /Chapter05/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Chapter05/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/src/app/app.component.ts -------------------------------------------------------------------------------- /Chapter05/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/src/app/app.module.ts -------------------------------------------------------------------------------- /Chapter05/src/app/editor.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/src/app/editor.service.spec.ts -------------------------------------------------------------------------------- /Chapter05/src/app/editor.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-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-Second-Edition/HEAD/Chapter05/src/app/editor/editor.component.html -------------------------------------------------------------------------------- /Chapter05/src/app/editor/editor.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/src/app/editor/editor.component.spec.ts -------------------------------------------------------------------------------- /Chapter05/src/app/editor/editor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/src/app/editor/editor.component.ts -------------------------------------------------------------------------------- /Chapter05/src/app/window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/src/app/window.ts -------------------------------------------------------------------------------- /Chapter05/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/src/electron/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/src/electron/main.ts -------------------------------------------------------------------------------- /Chapter05/src/electron/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/src/electron/package.json -------------------------------------------------------------------------------- /Chapter05/src/electron/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/src/electron/tsconfig.json -------------------------------------------------------------------------------- /Chapter05/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Chapter05/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/src/environments/environment.ts -------------------------------------------------------------------------------- /Chapter05/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/src/favicon.ico -------------------------------------------------------------------------------- /Chapter05/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/src/index.html -------------------------------------------------------------------------------- /Chapter05/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/src/main.ts -------------------------------------------------------------------------------- /Chapter05/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/src/polyfills.ts -------------------------------------------------------------------------------- /Chapter05/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/src/styles.css -------------------------------------------------------------------------------- /Chapter05/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/src/test.ts -------------------------------------------------------------------------------- /Chapter05/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter05/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/tsconfig.json -------------------------------------------------------------------------------- /Chapter05/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter05/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/webpack.config.js -------------------------------------------------------------------------------- /Chapter05/webpack.dev.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/webpack.dev.config.js -------------------------------------------------------------------------------- /Chapter05/webpack.prod.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter05/webpack.prod.config.js -------------------------------------------------------------------------------- /Chapter06/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/.browserslistrc -------------------------------------------------------------------------------- /Chapter06/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/.editorconfig -------------------------------------------------------------------------------- /Chapter06/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/.eslintrc.json -------------------------------------------------------------------------------- /Chapter06/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/.gitignore -------------------------------------------------------------------------------- /Chapter06/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/.gitignore -------------------------------------------------------------------------------- /Chapter06/android/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Chapter06/android/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/.idea/compiler.xml -------------------------------------------------------------------------------- /Chapter06/android/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /Chapter06/android/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/.idea/misc.xml -------------------------------------------------------------------------------- /Chapter06/android/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Chapter06/android/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/.gitignore -------------------------------------------------------------------------------- /Chapter06/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/build.gradle -------------------------------------------------------------------------------- /Chapter06/android/app/capacitor.build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/capacitor.build.gradle -------------------------------------------------------------------------------- /Chapter06/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /Chapter06/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/assets/capacitor.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/assets/capacitor.config.json -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/assets/capacitor.plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/assets/capacitor.plugins.json -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/java/io/ionic/starter/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/java/io/ionic/starter/MainActivity.java -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/drawable-land-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/drawable-land-hdpi/splash.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/drawable-land-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/drawable-land-mdpi/splash.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/drawable-land-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/drawable-land-xhdpi/splash.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/drawable-land-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/drawable-land-xxhdpi/splash.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/drawable-land-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/drawable-land-xxxhdpi/splash.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/drawable-port-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/drawable-port-hdpi/splash.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/drawable-port-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/drawable-port-mdpi/splash.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/drawable-port-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/drawable-port-xhdpi/splash.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/drawable-port-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/drawable-port-xxhdpi/splash.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/drawable-port-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/drawable-port-xxxhdpi/splash.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/drawable/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/drawable/splash.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/xml/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/xml/config.xml -------------------------------------------------------------------------------- /Chapter06/android/app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/main/res/xml/file_paths.xml -------------------------------------------------------------------------------- /Chapter06/android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java -------------------------------------------------------------------------------- /Chapter06/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/build.gradle -------------------------------------------------------------------------------- /Chapter06/android/capacitor.settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/capacitor.settings.gradle -------------------------------------------------------------------------------- /Chapter06/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/gradle.properties -------------------------------------------------------------------------------- /Chapter06/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Chapter06/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter06/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/gradlew -------------------------------------------------------------------------------- /Chapter06/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/gradlew.bat -------------------------------------------------------------------------------- /Chapter06/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/settings.gradle -------------------------------------------------------------------------------- /Chapter06/android/variables.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/android/variables.gradle -------------------------------------------------------------------------------- /Chapter06/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/angular.json -------------------------------------------------------------------------------- /Chapter06/capacitor.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/capacitor.config.json -------------------------------------------------------------------------------- /Chapter06/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/e2e/protractor.conf.js -------------------------------------------------------------------------------- /Chapter06/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /Chapter06/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/e2e/src/app.po.ts -------------------------------------------------------------------------------- /Chapter06/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/e2e/tsconfig.json -------------------------------------------------------------------------------- /Chapter06/extra-webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/extra-webpack.config.js -------------------------------------------------------------------------------- /Chapter06/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/firebase.json -------------------------------------------------------------------------------- /Chapter06/ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/ionic.config.json -------------------------------------------------------------------------------- /Chapter06/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/karma.conf.js -------------------------------------------------------------------------------- /Chapter06/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/package-lock.json -------------------------------------------------------------------------------- /Chapter06/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/package.json -------------------------------------------------------------------------------- /Chapter06/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/resources/icon.png -------------------------------------------------------------------------------- /Chapter06/resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/resources/splash.png -------------------------------------------------------------------------------- /Chapter06/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /Chapter06/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/app/app.component.html -------------------------------------------------------------------------------- /Chapter06/src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/app/app.component.scss -------------------------------------------------------------------------------- /Chapter06/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Chapter06/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/app/app.component.ts -------------------------------------------------------------------------------- /Chapter06/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/app/app.module.ts -------------------------------------------------------------------------------- /Chapter06/src/app/capture/capture-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/app/capture/capture-routing.module.ts -------------------------------------------------------------------------------- /Chapter06/src/app/capture/capture.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/app/capture/capture.module.ts -------------------------------------------------------------------------------- /Chapter06/src/app/capture/capture.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/app/capture/capture.page.html -------------------------------------------------------------------------------- /Chapter06/src/app/capture/capture.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/app/capture/capture.page.scss -------------------------------------------------------------------------------- /Chapter06/src/app/capture/capture.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/app/capture/capture.page.spec.ts -------------------------------------------------------------------------------- /Chapter06/src/app/capture/capture.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/app/capture/capture.page.ts -------------------------------------------------------------------------------- /Chapter06/src/app/cesium.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/app/cesium.service.spec.ts -------------------------------------------------------------------------------- /Chapter06/src/app/cesium.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/app/cesium.service.ts -------------------------------------------------------------------------------- /Chapter06/src/app/photo.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/app/photo.service.spec.ts -------------------------------------------------------------------------------- /Chapter06/src/app/photo.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/app/photo.service.ts -------------------------------------------------------------------------------- /Chapter06/src/app/photo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/app/photo.ts -------------------------------------------------------------------------------- /Chapter06/src/app/view/view-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/app/view/view-routing.module.ts -------------------------------------------------------------------------------- /Chapter06/src/app/view/view.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/app/view/view.module.ts -------------------------------------------------------------------------------- /Chapter06/src/app/view/view.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/app/view/view.page.html -------------------------------------------------------------------------------- /Chapter06/src/app/view/view.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/app/view/view.page.scss -------------------------------------------------------------------------------- /Chapter06/src/app/view/view.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/app/view/view.page.spec.ts -------------------------------------------------------------------------------- /Chapter06/src/app/view/view.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/app/view/view.page.ts -------------------------------------------------------------------------------- /Chapter06/src/assets/icon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/assets/icon/favicon.png -------------------------------------------------------------------------------- /Chapter06/src/assets/shapes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/assets/shapes.svg -------------------------------------------------------------------------------- /Chapter06/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /Chapter06/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/environments/environment.ts -------------------------------------------------------------------------------- /Chapter06/src/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/global.scss -------------------------------------------------------------------------------- /Chapter06/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/index.html -------------------------------------------------------------------------------- /Chapter06/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/main.ts -------------------------------------------------------------------------------- /Chapter06/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/polyfills.ts -------------------------------------------------------------------------------- /Chapter06/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/test.ts -------------------------------------------------------------------------------- /Chapter06/src/theme/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/theme/variables.scss -------------------------------------------------------------------------------- /Chapter06/src/zone-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/src/zone-flags.ts -------------------------------------------------------------------------------- /Chapter06/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter06/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/tsconfig.json -------------------------------------------------------------------------------- /Chapter06/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter06/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter07/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/.browserslistrc -------------------------------------------------------------------------------- /Chapter07/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/.editorconfig -------------------------------------------------------------------------------- /Chapter07/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/.gitignore -------------------------------------------------------------------------------- /Chapter07/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/README.md -------------------------------------------------------------------------------- /Chapter07/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/angular.json -------------------------------------------------------------------------------- /Chapter07/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/karma.conf.js -------------------------------------------------------------------------------- /Chapter07/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/package-lock.json -------------------------------------------------------------------------------- /Chapter07/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/package.json -------------------------------------------------------------------------------- /Chapter07/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/server.ts -------------------------------------------------------------------------------- /Chapter07/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/src/app/app.component.html -------------------------------------------------------------------------------- /Chapter07/src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/src/app/app.component.scss -------------------------------------------------------------------------------- /Chapter07/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Chapter07/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/src/app/app.component.ts -------------------------------------------------------------------------------- /Chapter07/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/src/app/app.module.ts -------------------------------------------------------------------------------- /Chapter07/src/app/app.server.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/src/app/app.server.module.ts -------------------------------------------------------------------------------- /Chapter07/src/app/github.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/src/app/github.service.spec.ts -------------------------------------------------------------------------------- /Chapter07/src/app/github.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/src/app/github.service.ts -------------------------------------------------------------------------------- /Chapter07/src/app/organization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/src/app/organization.ts -------------------------------------------------------------------------------- /Chapter07/src/app/organizations/organizations.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/src/app/organizations/organizations.component.html -------------------------------------------------------------------------------- /Chapter07/src/app/organizations/organizations.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/src/app/organizations/organizations.component.scss -------------------------------------------------------------------------------- /Chapter07/src/app/organizations/organizations.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/src/app/organizations/organizations.component.spec.ts -------------------------------------------------------------------------------- /Chapter07/src/app/organizations/organizations.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/src/app/organizations/organizations.component.ts -------------------------------------------------------------------------------- /Chapter07/src/app/panel/panel.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-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-Second-Edition/HEAD/Chapter07/src/app/panel/panel.component.spec.ts -------------------------------------------------------------------------------- /Chapter07/src/app/panel/panel.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-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-Second-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-Second-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-Second-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-Second-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-Second-Edition/HEAD/Chapter07/src/app/repositories/repositories.component.spec.ts -------------------------------------------------------------------------------- /Chapter07/src/app/repositories/repositories.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/src/app/repositories/repositories.component.ts -------------------------------------------------------------------------------- /Chapter07/src/app/repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/src/app/repository.ts -------------------------------------------------------------------------------- /Chapter07/src/app/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/src/app/user.ts -------------------------------------------------------------------------------- /Chapter07/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/src/assets/angular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/src/assets/angular.png -------------------------------------------------------------------------------- /Chapter07/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /Chapter07/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/src/environments/environment.ts -------------------------------------------------------------------------------- /Chapter07/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/src/favicon.ico -------------------------------------------------------------------------------- /Chapter07/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/src/index.html -------------------------------------------------------------------------------- /Chapter07/src/main.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/src/main.server.ts -------------------------------------------------------------------------------- /Chapter07/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/src/main.ts -------------------------------------------------------------------------------- /Chapter07/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/src/polyfills.ts -------------------------------------------------------------------------------- /Chapter07/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/src/styles.scss -------------------------------------------------------------------------------- /Chapter07/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/src/test.ts -------------------------------------------------------------------------------- /Chapter07/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter07/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/tsconfig.json -------------------------------------------------------------------------------- /Chapter07/tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/tsconfig.server.json -------------------------------------------------------------------------------- /Chapter07/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter07/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter08/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/.editorconfig -------------------------------------------------------------------------------- /Chapter08/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/.eslintrc.json -------------------------------------------------------------------------------- /Chapter08/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/.gitignore -------------------------------------------------------------------------------- /Chapter08/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/.prettierignore -------------------------------------------------------------------------------- /Chapter08/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } -------------------------------------------------------------------------------- /Chapter08/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/.vscode/extensions.json -------------------------------------------------------------------------------- /Chapter08/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/README.md -------------------------------------------------------------------------------- /Chapter08/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/angular.json -------------------------------------------------------------------------------- /Chapter08/apps/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/apps/tour-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/apps/tour-e2e/.eslintrc.json -------------------------------------------------------------------------------- /Chapter08/apps/tour-e2e/cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/apps/tour-e2e/cypress.json -------------------------------------------------------------------------------- /Chapter08/apps/tour-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/apps/tour-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /Chapter08/apps/tour-e2e/src/integration/app.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/apps/tour-e2e/src/integration/app.spec.ts -------------------------------------------------------------------------------- /Chapter08/apps/tour-e2e/src/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/apps/tour-e2e/src/plugins/index.js -------------------------------------------------------------------------------- /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-Second-Edition/HEAD/Chapter08/apps/tour-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /Chapter08/apps/tour-e2e/src/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/apps/tour-e2e/src/support/index.ts -------------------------------------------------------------------------------- /Chapter08/apps/tour-e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/apps/tour-e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /Chapter08/apps/tour-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/apps/tour-e2e/tsconfig.json -------------------------------------------------------------------------------- /Chapter08/apps/tour/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/apps/tour/.browserslistrc -------------------------------------------------------------------------------- /Chapter08/apps/tour/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/apps/tour/.eslintrc.json -------------------------------------------------------------------------------- /Chapter08/apps/tour/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/apps/tour/jest.config.js -------------------------------------------------------------------------------- /Chapter08/apps/tour/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/apps/tour/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-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-Second-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-Second-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-Second-Edition/HEAD/Chapter08/apps/tour/src/app/app.module.ts -------------------------------------------------------------------------------- /Chapter08/apps/tour/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/apps/tour/src/assets/poi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/apps/tour/src/assets/poi.json -------------------------------------------------------------------------------- /Chapter08/apps/tour/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /Chapter08/apps/tour/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/apps/tour/src/environments/environment.ts -------------------------------------------------------------------------------- /Chapter08/apps/tour/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/apps/tour/src/favicon.ico -------------------------------------------------------------------------------- /Chapter08/apps/tour/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/apps/tour/src/index.html -------------------------------------------------------------------------------- /Chapter08/apps/tour/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/apps/tour/src/main.ts -------------------------------------------------------------------------------- /Chapter08/apps/tour/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/apps/tour/src/polyfills.ts -------------------------------------------------------------------------------- /Chapter08/apps/tour/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/apps/tour/src/styles.css -------------------------------------------------------------------------------- /Chapter08/apps/tour/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/apps/tour/src/test-setup.ts -------------------------------------------------------------------------------- /Chapter08/apps/tour/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/apps/tour/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter08/apps/tour/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/apps/tour/tsconfig.editor.json -------------------------------------------------------------------------------- /Chapter08/apps/tour/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/apps/tour/tsconfig.json -------------------------------------------------------------------------------- /Chapter08/apps/tour/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/apps/tour/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter08/decorate-angular-cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/decorate-angular-cli.js -------------------------------------------------------------------------------- /Chapter08/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/jest.config.js -------------------------------------------------------------------------------- /Chapter08/jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/jest.preset.js -------------------------------------------------------------------------------- /Chapter08/libs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/libs/admin/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/libs/admin/.eslintrc.json -------------------------------------------------------------------------------- /Chapter08/libs/admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/libs/admin/README.md -------------------------------------------------------------------------------- /Chapter08/libs/admin/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/libs/admin/jest.config.js -------------------------------------------------------------------------------- /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-Second-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-Second-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-Second-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-Second-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-Second-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-Second-Edition/HEAD/Chapter08/libs/admin/src/lib/admin.service.ts -------------------------------------------------------------------------------- /Chapter08/libs/admin/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/libs/admin/src/test-setup.ts -------------------------------------------------------------------------------- /Chapter08/libs/admin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/libs/admin/tsconfig.json -------------------------------------------------------------------------------- /Chapter08/libs/admin/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/libs/admin/tsconfig.lib.json -------------------------------------------------------------------------------- /Chapter08/libs/admin/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/libs/admin/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter08/libs/poi/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/libs/poi/.eslintrc.json -------------------------------------------------------------------------------- /Chapter08/libs/poi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/libs/poi/README.md -------------------------------------------------------------------------------- /Chapter08/libs/poi/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/libs/poi/jest.config.js -------------------------------------------------------------------------------- /Chapter08/libs/poi/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/libs/poi/src/index.ts -------------------------------------------------------------------------------- /Chapter08/libs/poi/src/lib/+state/poi.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-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-Second-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-Second-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-Second-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-Second-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-Second-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-Second-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-Second-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-Second-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-Second-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-Second-Edition/HEAD/Chapter08/libs/poi/src/lib/poi.service.ts -------------------------------------------------------------------------------- /Chapter08/libs/poi/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/libs/poi/src/test-setup.ts -------------------------------------------------------------------------------- /Chapter08/libs/poi/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/libs/poi/tsconfig.json -------------------------------------------------------------------------------- /Chapter08/libs/poi/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/libs/poi/tsconfig.lib.json -------------------------------------------------------------------------------- /Chapter08/libs/poi/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/libs/poi/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter08/libs/visitor/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/libs/visitor/.eslintrc.json -------------------------------------------------------------------------------- /Chapter08/libs/visitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/libs/visitor/README.md -------------------------------------------------------------------------------- /Chapter08/libs/visitor/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/libs/visitor/jest.config.js -------------------------------------------------------------------------------- /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-Second-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-Second-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-Second-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-Second-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-Second-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-Second-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-Second-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-Second-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-Second-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-Second-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-Second-Edition/HEAD/Chapter08/libs/visitor/src/lib/visitor.module.ts -------------------------------------------------------------------------------- /Chapter08/libs/visitor/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/libs/visitor/src/test-setup.ts -------------------------------------------------------------------------------- /Chapter08/libs/visitor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/libs/visitor/tsconfig.json -------------------------------------------------------------------------------- /Chapter08/libs/visitor/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/libs/visitor/tsconfig.lib.json -------------------------------------------------------------------------------- /Chapter08/libs/visitor/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/libs/visitor/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter08/nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/nx.json -------------------------------------------------------------------------------- /Chapter08/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/package-lock.json -------------------------------------------------------------------------------- /Chapter08/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/package.json -------------------------------------------------------------------------------- /Chapter08/tools/generators/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/tools/tsconfig.tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/tools/tsconfig.tools.json -------------------------------------------------------------------------------- /Chapter08/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter08/tsconfig.base.json -------------------------------------------------------------------------------- /Chapter09/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/.browserslistrc -------------------------------------------------------------------------------- /Chapter09/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/.editorconfig -------------------------------------------------------------------------------- /Chapter09/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/.gitignore -------------------------------------------------------------------------------- /Chapter09/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/README.md -------------------------------------------------------------------------------- /Chapter09/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/angular.json -------------------------------------------------------------------------------- /Chapter09/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/karma.conf.js -------------------------------------------------------------------------------- /Chapter09/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/package-lock.json -------------------------------------------------------------------------------- /Chapter09/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/package.json -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/projects/ui-controls/README.md -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/projects/ui-controls/karma.conf.js -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/projects/ui-controls/ng-package.json -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-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-Second-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-Second-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-Second-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-Second-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-Second-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-Second-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-Second-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-Second-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-Second-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-Second-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-Second-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-Second-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-Second-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-Second-Edition/HEAD/Chapter09/projects/ui-controls/src/public-api.ts -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/projects/ui-controls/src/test.ts -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/projects/ui-controls/tsconfig.lib.json -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/projects/ui-controls/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /Chapter09/projects/ui-controls/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/projects/ui-controls/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter09/projects/ui-elements/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/projects/ui-elements/.browserslistrc -------------------------------------------------------------------------------- /Chapter09/projects/ui-elements/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/projects/ui-elements/karma.conf.js -------------------------------------------------------------------------------- /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-Second-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-Second-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-Second-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-Second-Edition/HEAD/Chapter09/projects/ui-elements/src/app/app.module.ts -------------------------------------------------------------------------------- /Chapter09/projects/ui-elements/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/projects/ui-elements/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Chapter09/projects/ui-elements/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/projects/ui-elements/src/environments/environment.ts -------------------------------------------------------------------------------- /Chapter09/projects/ui-elements/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/projects/ui-elements/src/favicon.ico -------------------------------------------------------------------------------- /Chapter09/projects/ui-elements/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/projects/ui-elements/src/index.html -------------------------------------------------------------------------------- /Chapter09/projects/ui-elements/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/projects/ui-elements/src/main.ts -------------------------------------------------------------------------------- /Chapter09/projects/ui-elements/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/projects/ui-elements/src/polyfills.ts -------------------------------------------------------------------------------- /Chapter09/projects/ui-elements/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/projects/ui-elements/src/styles.css -------------------------------------------------------------------------------- /Chapter09/projects/ui-elements/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/projects/ui-elements/src/test.ts -------------------------------------------------------------------------------- /Chapter09/projects/ui-elements/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/projects/ui-elements/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter09/projects/ui-elements/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-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-Second-Edition/HEAD/Chapter09/src/app/app.component.html -------------------------------------------------------------------------------- /Chapter09/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Chapter09/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/src/app/app.component.ts -------------------------------------------------------------------------------- /Chapter09/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/src/app/app.module.ts -------------------------------------------------------------------------------- /Chapter09/src/app/assassins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/src/app/assassins.ts -------------------------------------------------------------------------------- /Chapter09/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Chapter09/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/src/environments/environment.ts -------------------------------------------------------------------------------- /Chapter09/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/src/favicon.ico -------------------------------------------------------------------------------- /Chapter09/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/src/index.html -------------------------------------------------------------------------------- /Chapter09/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/src/main.ts -------------------------------------------------------------------------------- /Chapter09/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/src/polyfills.ts -------------------------------------------------------------------------------- /Chapter09/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/src/styles.css -------------------------------------------------------------------------------- /Chapter09/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/src/test.ts -------------------------------------------------------------------------------- /Chapter09/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter09/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/tsconfig.json -------------------------------------------------------------------------------- /Chapter09/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter09/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter10/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter10/.gitignore -------------------------------------------------------------------------------- /Chapter10/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter10/.npmignore -------------------------------------------------------------------------------- /Chapter10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter10/README.md -------------------------------------------------------------------------------- /Chapter10/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter10/package-lock.json -------------------------------------------------------------------------------- /Chapter10/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter10/package.json -------------------------------------------------------------------------------- /Chapter10/src/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter10/src/collection.json -------------------------------------------------------------------------------- /Chapter10/src/crud-service/files/__name@dasherize__.service.spec.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter10/src/crud-service/files/__name@dasherize__.service.spec.ts.template -------------------------------------------------------------------------------- /Chapter10/src/crud-service/files/__name@dasherize__.service.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-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-Second-Edition/HEAD/Chapter10/src/crud-service/index.ts -------------------------------------------------------------------------------- /Chapter10/src/crud-service/index_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter10/src/crud-service/index_spec.ts -------------------------------------------------------------------------------- /Chapter10/src/my-schematics/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter10/src/my-schematics/index.ts -------------------------------------------------------------------------------- /Chapter10/src/my-schematics/index_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter10/src/my-schematics/index_spec.ts -------------------------------------------------------------------------------- /Chapter10/src/tailwind-container/files/__name@dasherize__.component.html.template: -------------------------------------------------------------------------------- 1 |
2 |
3 | -------------------------------------------------------------------------------- /Chapter10/src/tailwind-container/files/__name@dasherize__.component.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-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-Second-Edition/HEAD/Chapter10/src/tailwind-container/index.ts -------------------------------------------------------------------------------- /Chapter10/src/tailwind-container/index_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter10/src/tailwind-container/index_spec.ts -------------------------------------------------------------------------------- /Chapter10/src/tailwind-container/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter10/src/tailwind-container/schema.json -------------------------------------------------------------------------------- /Chapter10/src/tailwind-container/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter10/src/tailwind-container/schema.ts -------------------------------------------------------------------------------- /Chapter10/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/Chapter10/tsconfig.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Angular-Projects-Second-Edition/HEAD/README.md --------------------------------------------------------------------------------