├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── browserslist ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.e2e.json ├── package.json ├── src ├── app │ ├── actions │ │ └── todo.action.ts │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── form │ │ ├── form.component.html │ │ ├── form.component.scss │ │ └── form.component.ts │ ├── list │ │ ├── list.component.html │ │ ├── list.component.scss │ │ └── list.component.ts │ ├── models │ │ └── Todo.ts │ ├── states │ │ └── todo.state.ts │ └── todo.service.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── karma.conf.js ├── main.ts ├── polyfills.ts ├── styles.scss ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── tslint.json ├── tsconfig.json ├── tslint.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/angular.json -------------------------------------------------------------------------------- /browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/browserslist -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/package.json -------------------------------------------------------------------------------- /src/app/actions/todo.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/src/app/actions/todo.action.ts -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/form/form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/src/app/form/form.component.html -------------------------------------------------------------------------------- /src/app/form/form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/form/form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/src/app/form/form.component.ts -------------------------------------------------------------------------------- /src/app/list/list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/src/app/list/list.component.html -------------------------------------------------------------------------------- /src/app/list/list.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/list/list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/src/app/list/list.component.ts -------------------------------------------------------------------------------- /src/app/models/Todo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/src/app/models/Todo.ts -------------------------------------------------------------------------------- /src/app/states/todo.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/src/app/states/todo.state.ts -------------------------------------------------------------------------------- /src/app/todo.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/src/app/todo.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/daptontech/ngxs-crud-app/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/src/index.html -------------------------------------------------------------------------------- /src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/src/karma.conf.js -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/src/tslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daptontech/ngxs-crud-app/HEAD/yarn.lock --------------------------------------------------------------------------------