├── .bowerrc ├── .gitignore ├── .jscsrc ├── .vscode └── settings.json ├── README.md ├── appveyor.yml ├── assets └── css │ └── styles.css ├── bower.json ├── favicon.ico ├── gulp.config.js ├── gulpfile.js ├── index.html ├── licence ├── package.json ├── src ├── app │ ├── app.component.html │ ├── app.component.ts │ ├── app.module.ts │ ├── app.routes.ts │ ├── home │ │ ├── home.component.html │ │ └── home.component.ts │ ├── main.ts │ ├── rxjs-operators.ts │ ├── schedules │ │ ├── schedule-edit.component.html │ │ ├── schedule-edit.component.ts │ │ ├── schedule-list.component.html │ │ └── schedule-list.component.ts │ ├── shared │ │ ├── directives │ │ │ ├── highlight.directive.ts │ │ │ └── mobile-hide.directive.ts │ │ ├── interfaces.ts │ │ ├── pipes │ │ │ └── date-format.pipe.ts │ │ ├── services │ │ │ └── data.service.ts │ │ └── utils │ │ │ ├── config.service.ts │ │ │ ├── items.service.ts │ │ │ ├── lower-case-url-serializer.ts │ │ │ ├── mapping.service.ts │ │ │ └── notification.service.ts │ └── users │ │ ├── user-card.component.html │ │ ├── user-card.component.ts │ │ ├── user-list.component.html │ │ └── user-list.component.ts └── server │ ├── index.js │ └── package.json ├── systemjs.config.js └── tsconfig.json /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/.gitignore -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/.jscsrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/appveyor.yml -------------------------------------------------------------------------------- /assets/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/assets/css/styles.css -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/bower.json -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/favicon.ico -------------------------------------------------------------------------------- /gulp.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/gulp.config.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/index.html -------------------------------------------------------------------------------- /licence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/licence -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/src/app/app.routes.ts -------------------------------------------------------------------------------- /src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/src/app/home/home.component.html -------------------------------------------------------------------------------- /src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/src/app/home/home.component.ts -------------------------------------------------------------------------------- /src/app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/src/app/main.ts -------------------------------------------------------------------------------- /src/app/rxjs-operators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/src/app/rxjs-operators.ts -------------------------------------------------------------------------------- /src/app/schedules/schedule-edit.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/src/app/schedules/schedule-edit.component.html -------------------------------------------------------------------------------- /src/app/schedules/schedule-edit.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/src/app/schedules/schedule-edit.component.ts -------------------------------------------------------------------------------- /src/app/schedules/schedule-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/src/app/schedules/schedule-list.component.html -------------------------------------------------------------------------------- /src/app/schedules/schedule-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/src/app/schedules/schedule-list.component.ts -------------------------------------------------------------------------------- /src/app/shared/directives/highlight.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/src/app/shared/directives/highlight.directive.ts -------------------------------------------------------------------------------- /src/app/shared/directives/mobile-hide.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/src/app/shared/directives/mobile-hide.directive.ts -------------------------------------------------------------------------------- /src/app/shared/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/src/app/shared/interfaces.ts -------------------------------------------------------------------------------- /src/app/shared/pipes/date-format.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/src/app/shared/pipes/date-format.pipe.ts -------------------------------------------------------------------------------- /src/app/shared/services/data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/src/app/shared/services/data.service.ts -------------------------------------------------------------------------------- /src/app/shared/utils/config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/src/app/shared/utils/config.service.ts -------------------------------------------------------------------------------- /src/app/shared/utils/items.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/src/app/shared/utils/items.service.ts -------------------------------------------------------------------------------- /src/app/shared/utils/lower-case-url-serializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/src/app/shared/utils/lower-case-url-serializer.ts -------------------------------------------------------------------------------- /src/app/shared/utils/mapping.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/src/app/shared/utils/mapping.service.ts -------------------------------------------------------------------------------- /src/app/shared/utils/notification.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/src/app/shared/utils/notification.service.ts -------------------------------------------------------------------------------- /src/app/users/user-card.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/src/app/users/user-card.component.html -------------------------------------------------------------------------------- /src/app/users/user-card.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/src/app/users/user-card.component.ts -------------------------------------------------------------------------------- /src/app/users/user-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/src/app/users/user-list.component.html -------------------------------------------------------------------------------- /src/app/users/user-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/src/app/users/user-list.component.ts -------------------------------------------------------------------------------- /src/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/src/server/index.js -------------------------------------------------------------------------------- /src/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/src/server/package.json -------------------------------------------------------------------------------- /systemjs.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/systemjs.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/angular2-features/HEAD/tsconfig.json --------------------------------------------------------------------------------