├── .editorconfig ├── .gitignore ├── .npmrc ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── README.md ├── angular.json ├── db.json ├── package.json ├── src ├── app │ ├── app.component.css │ ├── app.component.html │ ├── app.component.ts │ ├── dashboard │ │ ├── dashboard.component.css │ │ ├── dashboard.component.html │ │ ├── dashboard.component.spec.ts │ │ └── dashboard.component.ts │ ├── hero-detail │ │ ├── hero-detail.component.css │ │ ├── hero-detail.component.html │ │ └── hero-detail.component.ts │ ├── hero-search │ │ ├── hero-search.component.css │ │ ├── hero-search.component.html │ │ └── hero-search.component.ts │ ├── hero.service.ts │ ├── hero.ts │ ├── heroes │ │ ├── heroes.component.css │ │ ├── heroes.component.html │ │ └── heroes.component.ts │ ├── in-memory-data.service.ts │ ├── message.service.ts │ ├── messages │ │ ├── messages.component.css │ │ ├── messages.component.html │ │ └── messages.component.ts │ ├── mock-heroes.ts │ └── utils.ts ├── assets │ └── .gitkeep ├── favicon.ico ├── index.html ├── main.ts └── styles.css ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/angular.json -------------------------------------------------------------------------------- /db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/db.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/src/app/app.component.css -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/dashboard/dashboard.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/src/app/dashboard/dashboard.component.css -------------------------------------------------------------------------------- /src/app/dashboard/dashboard.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/src/app/dashboard/dashboard.component.html -------------------------------------------------------------------------------- /src/app/dashboard/dashboard.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/src/app/dashboard/dashboard.component.spec.ts -------------------------------------------------------------------------------- /src/app/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/src/app/dashboard/dashboard.component.ts -------------------------------------------------------------------------------- /src/app/hero-detail/hero-detail.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/src/app/hero-detail/hero-detail.component.css -------------------------------------------------------------------------------- /src/app/hero-detail/hero-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/src/app/hero-detail/hero-detail.component.html -------------------------------------------------------------------------------- /src/app/hero-detail/hero-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/src/app/hero-detail/hero-detail.component.ts -------------------------------------------------------------------------------- /src/app/hero-search/hero-search.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/src/app/hero-search/hero-search.component.css -------------------------------------------------------------------------------- /src/app/hero-search/hero-search.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/src/app/hero-search/hero-search.component.html -------------------------------------------------------------------------------- /src/app/hero-search/hero-search.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/src/app/hero-search/hero-search.component.ts -------------------------------------------------------------------------------- /src/app/hero.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/src/app/hero.service.ts -------------------------------------------------------------------------------- /src/app/hero.ts: -------------------------------------------------------------------------------- 1 | export interface Hero { 2 | id: number; 3 | name: string; 4 | } 5 | -------------------------------------------------------------------------------- /src/app/heroes/heroes.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/src/app/heroes/heroes.component.css -------------------------------------------------------------------------------- /src/app/heroes/heroes.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/src/app/heroes/heroes.component.html -------------------------------------------------------------------------------- /src/app/heroes/heroes.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/src/app/heroes/heroes.component.ts -------------------------------------------------------------------------------- /src/app/in-memory-data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/src/app/in-memory-data.service.ts -------------------------------------------------------------------------------- /src/app/message.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/src/app/message.service.ts -------------------------------------------------------------------------------- /src/app/messages/messages.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/src/app/messages/messages.component.css -------------------------------------------------------------------------------- /src/app/messages/messages.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/src/app/messages/messages.component.html -------------------------------------------------------------------------------- /src/app/messages/messages.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/src/app/messages/messages.component.ts -------------------------------------------------------------------------------- /src/app/mock-heroes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/src/app/mock-heroes.ts -------------------------------------------------------------------------------- /src/app/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/src/app/utils.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/src/styles.css -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/angular-tour-of-heroes-signals/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------