├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── browserslist ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── karma.conf.js ├── package.json ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── default-view.directive.spec.ts │ ├── default-view.directive.ts │ ├── error-view.directive.spec.ts │ ├── error-view.directive.ts │ ├── fallback-view.directive.spec.ts │ ├── fallback-view.directive.ts │ ├── not-lazy │ │ ├── not-lazy.component.html │ │ ├── not-lazy.component.scss │ │ ├── not-lazy.component.spec.ts │ │ └── not-lazy.component.ts │ ├── not-lazy2 │ │ ├── not-lazy2.component.html │ │ ├── not-lazy2.component.scss │ │ ├── not-lazy2.component.spec.ts │ │ └── not-lazy2.component.ts │ ├── suspense │ │ ├── suspense.component.html │ │ ├── suspense.component.scss │ │ ├── suspense.component.spec.ts │ │ └── suspense.component.ts │ ├── test │ │ ├── test.component.html │ │ ├── test.component.scss │ │ ├── test.component.spec.ts │ │ └── test.component.ts │ └── types.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.scss └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/angular.json -------------------------------------------------------------------------------- /browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/browserslist -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/default-view.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/src/app/default-view.directive.spec.ts -------------------------------------------------------------------------------- /src/app/default-view.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/src/app/default-view.directive.ts -------------------------------------------------------------------------------- /src/app/error-view.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/src/app/error-view.directive.spec.ts -------------------------------------------------------------------------------- /src/app/error-view.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/src/app/error-view.directive.ts -------------------------------------------------------------------------------- /src/app/fallback-view.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/src/app/fallback-view.directive.spec.ts -------------------------------------------------------------------------------- /src/app/fallback-view.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/src/app/fallback-view.directive.ts -------------------------------------------------------------------------------- /src/app/not-lazy/not-lazy.component.html: -------------------------------------------------------------------------------- 1 |

not-lazy works!

2 | -------------------------------------------------------------------------------- /src/app/not-lazy/not-lazy.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/not-lazy/not-lazy.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/src/app/not-lazy/not-lazy.component.spec.ts -------------------------------------------------------------------------------- /src/app/not-lazy/not-lazy.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/src/app/not-lazy/not-lazy.component.ts -------------------------------------------------------------------------------- /src/app/not-lazy2/not-lazy2.component.html: -------------------------------------------------------------------------------- 1 |

not-lazy2 works!

2 | -------------------------------------------------------------------------------- /src/app/not-lazy2/not-lazy2.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/not-lazy2/not-lazy2.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/src/app/not-lazy2/not-lazy2.component.spec.ts -------------------------------------------------------------------------------- /src/app/not-lazy2/not-lazy2.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/src/app/not-lazy2/not-lazy2.component.ts -------------------------------------------------------------------------------- /src/app/suspense/suspense.component.html: -------------------------------------------------------------------------------- 1 |

suspense works!

2 | -------------------------------------------------------------------------------- /src/app/suspense/suspense.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/suspense/suspense.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/src/app/suspense/suspense.component.spec.ts -------------------------------------------------------------------------------- /src/app/suspense/suspense.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/src/app/suspense/suspense.component.ts -------------------------------------------------------------------------------- /src/app/test/test.component.html: -------------------------------------------------------------------------------- 1 |

test works!

2 | -------------------------------------------------------------------------------- /src/app/test/test.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/test/test.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/src/app/test/test.component.spec.ts -------------------------------------------------------------------------------- /src/app/test/test.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/src/app/test/test.component.ts -------------------------------------------------------------------------------- /src/app/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/src/app/types.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/NetanelBasal/ng-suspense/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelBasal/ng-suspense/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | {} 2 | --------------------------------------------------------------------------------