├── .angular-cli.json ├── .editorconfig ├── .firebaserc ├── .gitignore ├── .travis.yml ├── GETTING_STARTED.md ├── README.md ├── database.rules.json ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.e2e.json ├── firebase.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src ├── app │ ├── app.component.css │ ├── app.component.html │ ├── app.component.ts │ ├── app.module.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.spec.ts │ │ └── hero-detail.component.ts │ ├── hero-search │ │ ├── hero-search.component.css │ │ ├── hero-search.component.html │ │ ├── hero-search.component.spec.ts │ │ └── hero-search.component.ts │ ├── heroes │ │ ├── heroes.component.css │ │ ├── heroes.component.html │ │ ├── heroes.component.spec.ts │ │ └── heroes.component.ts │ ├── models │ │ └── hero.ts │ ├── routing.module.ts │ └── services │ │ ├── hero-search │ │ ├── hero-search.service.spec.ts │ │ └── hero-search.service.ts │ │ ├── hero.service.spec.ts │ │ ├── hero.service.ts │ │ └── in-memory-data.service.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── typings.d.ts ├── tsconfig.json └── tslint.json /.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/.angular-cli.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/.editorconfig -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/.travis.yml -------------------------------------------------------------------------------- /GETTING_STARTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/GETTING_STARTED.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/README.md -------------------------------------------------------------------------------- /database.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/database.rules.json -------------------------------------------------------------------------------- /e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/e2e/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/firebase.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | .main-content { 2 | padding: 32px; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/dashboard/dashboard.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/app/dashboard/dashboard.component.css -------------------------------------------------------------------------------- /src/app/dashboard/dashboard.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/app/dashboard/dashboard.component.html -------------------------------------------------------------------------------- /src/app/dashboard/dashboard.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/app/dashboard/dashboard.component.spec.ts -------------------------------------------------------------------------------- /src/app/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/app/dashboard/dashboard.component.ts -------------------------------------------------------------------------------- /src/app/hero-detail/hero-detail.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/hero-detail/hero-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/app/hero-detail/hero-detail.component.html -------------------------------------------------------------------------------- /src/app/hero-detail/hero-detail.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/app/hero-detail/hero-detail.component.spec.ts -------------------------------------------------------------------------------- /src/app/hero-detail/hero-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/app/hero-detail/hero-detail.component.ts -------------------------------------------------------------------------------- /src/app/hero-search/hero-search.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/app/hero-search/hero-search.component.css -------------------------------------------------------------------------------- /src/app/hero-search/hero-search.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/app/hero-search/hero-search.component.html -------------------------------------------------------------------------------- /src/app/hero-search/hero-search.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/app/hero-search/hero-search.component.spec.ts -------------------------------------------------------------------------------- /src/app/hero-search/hero-search.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/app/hero-search/hero-search.component.ts -------------------------------------------------------------------------------- /src/app/heroes/heroes.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/app/heroes/heroes.component.css -------------------------------------------------------------------------------- /src/app/heroes/heroes.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/app/heroes/heroes.component.html -------------------------------------------------------------------------------- /src/app/heroes/heroes.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/app/heroes/heroes.component.spec.ts -------------------------------------------------------------------------------- /src/app/heroes/heroes.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/app/heroes/heroes.component.ts -------------------------------------------------------------------------------- /src/app/models/hero.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/app/models/hero.ts -------------------------------------------------------------------------------- /src/app/routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/app/routing.module.ts -------------------------------------------------------------------------------- /src/app/services/hero-search/hero-search.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/app/services/hero-search/hero-search.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/hero-search/hero-search.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/app/services/hero-search/hero-search.service.ts -------------------------------------------------------------------------------- /src/app/services/hero.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/app/services/hero.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/hero.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/app/services/hero.service.ts -------------------------------------------------------------------------------- /src/app/services/in-memory-data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/app/services/in-memory-data.service.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-family: Roboto, 'Helvetica Neue', sans-serif; 3 | } -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamzi/Angular2Workshop-material2/HEAD/tslint.json --------------------------------------------------------------------------------