├── .browserslistrc ├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── additional-doc ├── actions.md ├── actions │ ├── creation.md │ ├── delete.md │ ├── edition.md │ └── status.md ├── edition.md ├── introduction.md └── summary.json ├── angular.json ├── package.json ├── screenshots ├── about.png ├── actions │ ├── creation.png │ ├── delete.png │ ├── edition.png │ └── update-status.png ├── components │ ├── footer-list.png │ ├── footer.png │ ├── header.png │ └── list.png ├── home.png └── todo │ └── todo.png ├── src ├── app │ ├── about │ │ ├── about.component.html │ │ ├── about.component.ts │ │ ├── about.module.md │ │ ├── about.module.ts │ │ ├── about.routes.ts │ │ ├── compodoc │ │ │ ├── compodoc.component.html │ │ │ └── compodoc.component.ts │ │ ├── index.ts │ │ └── todomvc │ │ │ ├── todomvc.component.html │ │ │ └── todomvc.component.ts │ ├── app-routes.enum.ts │ ├── app-routing.module.ts │ ├── app.component-ext.css │ ├── app.component.css │ ├── app.component.html │ ├── app.component.ts │ ├── app.module.ts │ ├── file-to-exclude.ts │ ├── footer │ │ ├── footer.component.html │ │ ├── footer.component.ts │ │ ├── footer.module.ts │ │ └── index.ts │ ├── header │ │ ├── header.component.html │ │ ├── header.component.ts │ │ ├── header.module.ts │ │ └── index.ts │ ├── home │ │ ├── home-routing.module.ts │ │ ├── home.component.html │ │ ├── home.component.ts │ │ ├── home.module.ts │ │ └── index.ts │ ├── index.ts │ ├── list │ │ ├── index.ts │ │ ├── list.component.html │ │ ├── list.component.md │ │ ├── list.component.ts │ │ ├── list.module.ts │ │ └── todo │ │ │ ├── index.ts │ │ │ ├── todo.component.html │ │ │ ├── todo.component.md │ │ │ ├── todo.component.ts │ │ │ └── todo.module.ts │ └── shared │ │ ├── components │ │ ├── empty-component.ts │ │ └── empty-parent-component.ts │ │ ├── decorators │ │ └── log.decorator.ts │ │ ├── directives │ │ ├── border.directive.ts │ │ ├── do-nothing.directive.md │ │ ├── do-nothing.directive.ts │ │ ├── highlight-and-border.directive.ts │ │ └── highlight.directive.ts │ │ ├── enums │ │ └── enum.ts │ │ ├── guards │ │ └── noopguard.guard.ts │ │ ├── interceptors │ │ └── noopinterceptor.interceptor.ts │ │ ├── interfaces │ │ ├── clock.interface.md │ │ ├── clock.interface.ts │ │ ├── interfaces.ts │ │ └── time.interface.ts │ │ ├── miscellaneous │ │ ├── miscellaneous-types.ts │ │ └── miscellaneous.ts │ │ ├── models │ │ ├── todo.model.md │ │ └── todo.model.ts │ │ ├── pipes │ │ ├── first-upper.pipe.md │ │ ├── first-upper.pipe.ts │ │ └── standalone.pipe.ts │ │ └── services │ │ ├── emitter.service.ts │ │ ├── empty.service.ts │ │ ├── todo.store.md │ │ └── todo.store.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts └── styles.css ├── tsconfig.app.json ├── tsconfig.doc.json ├── tsconfig.json └── tslint.json /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/README.md -------------------------------------------------------------------------------- /additional-doc/actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/additional-doc/actions.md -------------------------------------------------------------------------------- /additional-doc/actions/creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/additional-doc/actions/creation.md -------------------------------------------------------------------------------- /additional-doc/actions/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/additional-doc/actions/delete.md -------------------------------------------------------------------------------- /additional-doc/actions/edition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/additional-doc/actions/edition.md -------------------------------------------------------------------------------- /additional-doc/actions/status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/additional-doc/actions/status.md -------------------------------------------------------------------------------- /additional-doc/edition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/additional-doc/edition.md -------------------------------------------------------------------------------- /additional-doc/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/additional-doc/introduction.md -------------------------------------------------------------------------------- /additional-doc/summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/additional-doc/summary.json -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/angular.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/screenshots/about.png -------------------------------------------------------------------------------- /screenshots/actions/creation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/screenshots/actions/creation.png -------------------------------------------------------------------------------- /screenshots/actions/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/screenshots/actions/delete.png -------------------------------------------------------------------------------- /screenshots/actions/edition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/screenshots/actions/edition.png -------------------------------------------------------------------------------- /screenshots/actions/update-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/screenshots/actions/update-status.png -------------------------------------------------------------------------------- /screenshots/components/footer-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/screenshots/components/footer-list.png -------------------------------------------------------------------------------- /screenshots/components/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/screenshots/components/footer.png -------------------------------------------------------------------------------- /screenshots/components/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/screenshots/components/header.png -------------------------------------------------------------------------------- /screenshots/components/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/screenshots/components/list.png -------------------------------------------------------------------------------- /screenshots/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/screenshots/home.png -------------------------------------------------------------------------------- /screenshots/todo/todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/screenshots/todo/todo.png -------------------------------------------------------------------------------- /src/app/about/about.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/about/about.component.html -------------------------------------------------------------------------------- /src/app/about/about.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/about/about.component.ts -------------------------------------------------------------------------------- /src/app/about/about.module.md: -------------------------------------------------------------------------------- 1 | # About module 2 | -------------------------------------------------------------------------------- /src/app/about/about.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/about/about.module.ts -------------------------------------------------------------------------------- /src/app/about/about.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/about/about.routes.ts -------------------------------------------------------------------------------- /src/app/about/compodoc/compodoc.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/about/compodoc/compodoc.component.html -------------------------------------------------------------------------------- /src/app/about/compodoc/compodoc.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/about/compodoc/compodoc.component.ts -------------------------------------------------------------------------------- /src/app/about/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/about/index.ts -------------------------------------------------------------------------------- /src/app/about/todomvc/todomvc.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/about/todomvc/todomvc.component.html -------------------------------------------------------------------------------- /src/app/about/todomvc/todomvc.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/about/todomvc/todomvc.component.ts -------------------------------------------------------------------------------- /src/app/app-routes.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/app-routes.enum.ts -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component-ext.css: -------------------------------------------------------------------------------- 1 | .links a { 2 | font-size: 14px; 3 | } -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | .links a { 2 | font-weight: bold; 3 | } -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/file-to-exclude.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/footer/footer.component.html -------------------------------------------------------------------------------- /src/app/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/footer/footer.component.ts -------------------------------------------------------------------------------- /src/app/footer/footer.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/footer/footer.module.ts -------------------------------------------------------------------------------- /src/app/footer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './footer.module'; 2 | -------------------------------------------------------------------------------- /src/app/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/header/header.component.html -------------------------------------------------------------------------------- /src/app/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/header/header.component.ts -------------------------------------------------------------------------------- /src/app/header/header.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/header/header.module.ts -------------------------------------------------------------------------------- /src/app/header/index.ts: -------------------------------------------------------------------------------- 1 | export * from './header.module'; 2 | -------------------------------------------------------------------------------- /src/app/home/home-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/home/home-routing.module.ts -------------------------------------------------------------------------------- /src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/home/home.component.html -------------------------------------------------------------------------------- /src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/home/home.component.ts -------------------------------------------------------------------------------- /src/app/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/home/home.module.ts -------------------------------------------------------------------------------- /src/app/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/home/index.ts -------------------------------------------------------------------------------- /src/app/index.ts: -------------------------------------------------------------------------------- 1 | export * from './app.module'; 2 | -------------------------------------------------------------------------------- /src/app/list/index.ts: -------------------------------------------------------------------------------- 1 | export * from './list.module'; 2 | -------------------------------------------------------------------------------- /src/app/list/list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/list/list.component.html -------------------------------------------------------------------------------- /src/app/list/list.component.md: -------------------------------------------------------------------------------- 1 | # List component 2 | 3 | It display the lines of todos. 4 | -------------------------------------------------------------------------------- /src/app/list/list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/list/list.component.ts -------------------------------------------------------------------------------- /src/app/list/list.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/list/list.module.ts -------------------------------------------------------------------------------- /src/app/list/todo/index.ts: -------------------------------------------------------------------------------- 1 | export * from './todo.module'; 2 | -------------------------------------------------------------------------------- /src/app/list/todo/todo.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/list/todo/todo.component.html -------------------------------------------------------------------------------- /src/app/list/todo/todo.component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/list/todo/todo.component.md -------------------------------------------------------------------------------- /src/app/list/todo/todo.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/list/todo/todo.component.ts -------------------------------------------------------------------------------- /src/app/list/todo/todo.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/list/todo/todo.module.ts -------------------------------------------------------------------------------- /src/app/shared/components/empty-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/shared/components/empty-component.ts -------------------------------------------------------------------------------- /src/app/shared/components/empty-parent-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/shared/components/empty-parent-component.ts -------------------------------------------------------------------------------- /src/app/shared/decorators/log.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/shared/decorators/log.decorator.ts -------------------------------------------------------------------------------- /src/app/shared/directives/border.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/shared/directives/border.directive.ts -------------------------------------------------------------------------------- /src/app/shared/directives/do-nothing.directive.md: -------------------------------------------------------------------------------- 1 | # Do-nothing 2 | -------------------------------------------------------------------------------- /src/app/shared/directives/do-nothing.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/shared/directives/do-nothing.directive.ts -------------------------------------------------------------------------------- /src/app/shared/directives/highlight-and-border.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/shared/directives/highlight-and-border.directive.ts -------------------------------------------------------------------------------- /src/app/shared/directives/highlight.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/shared/directives/highlight.directive.ts -------------------------------------------------------------------------------- /src/app/shared/enums/enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/shared/enums/enum.ts -------------------------------------------------------------------------------- /src/app/shared/guards/noopguard.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/shared/guards/noopguard.guard.ts -------------------------------------------------------------------------------- /src/app/shared/interceptors/noopinterceptor.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/shared/interceptors/noopinterceptor.interceptor.ts -------------------------------------------------------------------------------- /src/app/shared/interfaces/clock.interface.md: -------------------------------------------------------------------------------- 1 | # Clock interface 2 | -------------------------------------------------------------------------------- /src/app/shared/interfaces/clock.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/shared/interfaces/clock.interface.ts -------------------------------------------------------------------------------- /src/app/shared/interfaces/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/shared/interfaces/interfaces.ts -------------------------------------------------------------------------------- /src/app/shared/interfaces/time.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/shared/interfaces/time.interface.ts -------------------------------------------------------------------------------- /src/app/shared/miscellaneous/miscellaneous-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/shared/miscellaneous/miscellaneous-types.ts -------------------------------------------------------------------------------- /src/app/shared/miscellaneous/miscellaneous.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/shared/miscellaneous/miscellaneous.ts -------------------------------------------------------------------------------- /src/app/shared/models/todo.model.md: -------------------------------------------------------------------------------- 1 | # Todo class 2 | -------------------------------------------------------------------------------- /src/app/shared/models/todo.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/shared/models/todo.model.ts -------------------------------------------------------------------------------- /src/app/shared/pipes/first-upper.pipe.md: -------------------------------------------------------------------------------- 1 | # First upper pipe 2 | -------------------------------------------------------------------------------- /src/app/shared/pipes/first-upper.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/shared/pipes/first-upper.pipe.ts -------------------------------------------------------------------------------- /src/app/shared/pipes/standalone.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/shared/pipes/standalone.pipe.ts -------------------------------------------------------------------------------- /src/app/shared/services/emitter.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/shared/services/emitter.service.ts -------------------------------------------------------------------------------- /src/app/shared/services/empty.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/shared/services/empty.service.ts -------------------------------------------------------------------------------- /src/app/shared/services/todo.store.md: -------------------------------------------------------------------------------- 1 | # Todo store 2 | -------------------------------------------------------------------------------- /src/app/shared/services/todo.store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/app/shared/services/todo.store.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/compodoc/compodoc-demo-todomvc-angular/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/src/styles.css -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.doc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/tsconfig.doc.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compodoc/compodoc-demo-todomvc-angular/HEAD/tslint.json --------------------------------------------------------------------------------