├── .editorconfig ├── .gitignore ├── README.md ├── angular-cli-build.js ├── angular-cli.json ├── config ├── environment.dev.ts ├── environment.js ├── environment.prod.ts ├── karma-test-shim.js ├── karma.conf.js └── protractor.conf.js ├── e2e ├── app.e2e-spec.ts ├── app.po.ts ├── tsconfig.json └── typings.d.ts ├── package.json ├── public └── .npmignore ├── src ├── app │ ├── app.component.html │ ├── app.component.less │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── environment.ts │ ├── index.ts │ ├── shared │ │ └── index.ts │ ├── todo-app │ │ ├── index.ts │ │ ├── todo-app.component.html │ │ ├── todo-app.component.less │ │ ├── todo-app.component.spec.ts │ │ └── todo-app.component.ts │ ├── todo.service.spec.ts │ ├── todo.service.ts │ ├── todo.spec.ts │ └── todo.ts ├── css │ ├── global.less │ └── todo-mvc.less ├── favicon.ico ├── index.html ├── main.ts ├── system-config.ts ├── tsconfig.json └── typings.d.ts ├── tslint.json └── typings.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/README.md -------------------------------------------------------------------------------- /angular-cli-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/angular-cli-build.js -------------------------------------------------------------------------------- /angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/angular-cli.json -------------------------------------------------------------------------------- /config/environment.dev.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: false 3 | }; 4 | -------------------------------------------------------------------------------- /config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/config/environment.js -------------------------------------------------------------------------------- /config/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /config/karma-test-shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/config/karma-test-shim.js -------------------------------------------------------------------------------- /config/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/config/karma.conf.js -------------------------------------------------------------------------------- /config/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/config/protractor.conf.js -------------------------------------------------------------------------------- /e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/e2e/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /e2e/typings.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/package.json -------------------------------------------------------------------------------- /public/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/src/app/environment.ts -------------------------------------------------------------------------------- /src/app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/src/app/index.ts -------------------------------------------------------------------------------- /src/app/shared/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/todo-app/index.ts: -------------------------------------------------------------------------------- 1 | export * from './todo-app.component'; 2 | -------------------------------------------------------------------------------- /src/app/todo-app/todo-app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/src/app/todo-app/todo-app.component.html -------------------------------------------------------------------------------- /src/app/todo-app/todo-app.component.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/todo-app/todo-app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/src/app/todo-app/todo-app.component.spec.ts -------------------------------------------------------------------------------- /src/app/todo-app/todo-app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/src/app/todo-app/todo-app.component.ts -------------------------------------------------------------------------------- /src/app/todo.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/src/app/todo.service.spec.ts -------------------------------------------------------------------------------- /src/app/todo.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/src/app/todo.service.ts -------------------------------------------------------------------------------- /src/app/todo.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/src/app/todo.spec.ts -------------------------------------------------------------------------------- /src/app/todo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/src/app/todo.ts -------------------------------------------------------------------------------- /src/css/global.less: -------------------------------------------------------------------------------- 1 | .app-root-loader{ 2 | text-align: center; 3 | padding: 30px; 4 | } 5 | -------------------------------------------------------------------------------- /src/css/todo-mvc.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/src/css/todo-mvc.less -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/system-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/src/system-config.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/tslint.json -------------------------------------------------------------------------------- /typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/angular2-todo-app/HEAD/typings.json --------------------------------------------------------------------------------