├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.e2e.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── breadcrumb │ │ ├── breadcrumb.component.html │ │ ├── breadcrumb.component.scss │ │ ├── breadcrumb.component.spec.ts │ │ ├── breadcrumb.component.ts │ │ └── breadcrumb.ts │ └── content │ │ ├── content.component.html │ │ ├── content.component.scss │ │ ├── content.component.spec.ts │ │ └── content.component.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.spec.json └── typings.d.ts ├── tsconfig.json ├── tslint.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/angular.json -------------------------------------------------------------------------------- /e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/e2e/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/src/app/app.component.scss -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/breadcrumb/breadcrumb.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/src/app/breadcrumb/breadcrumb.component.html -------------------------------------------------------------------------------- /src/app/breadcrumb/breadcrumb.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/src/app/breadcrumb/breadcrumb.component.scss -------------------------------------------------------------------------------- /src/app/breadcrumb/breadcrumb.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/src/app/breadcrumb/breadcrumb.component.spec.ts -------------------------------------------------------------------------------- /src/app/breadcrumb/breadcrumb.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/src/app/breadcrumb/breadcrumb.component.ts -------------------------------------------------------------------------------- /src/app/breadcrumb/breadcrumb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/src/app/breadcrumb/breadcrumb.ts -------------------------------------------------------------------------------- /src/app/content/content.component.html: -------------------------------------------------------------------------------- 1 | This is some content of the route 2 | -------------------------------------------------------------------------------- /src/app/content/content.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/content/content.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/src/app/content/content.component.spec.ts -------------------------------------------------------------------------------- /src/app/content/content.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/src/app/content/content.component.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/bovandersteene/ngx-breadcrumb/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/ngx-breadcrumb/HEAD/yarn.lock --------------------------------------------------------------------------------