gitextract_ejxkiitx/ ├── .angulardoc.json ├── .editorconfig ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .travis.yml ├── LICENSE ├── README.md ├── angular.json ├── browserslist ├── e2e/ │ ├── src/ │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.e2e.json ├── package.json ├── src/ │ ├── app/ │ │ ├── access-denied/ │ │ │ ├── access-denied-routing.module.ts │ │ │ ├── access-denied.component.html │ │ │ ├── access-denied.component.scss │ │ │ ├── access-denied.component.spec.ts │ │ │ ├── access-denied.component.ts │ │ │ ├── access-denied.module.spec.ts │ │ │ └── access-denied.module.ts │ │ ├── app-routing.module.ts │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.spec.ts │ │ ├── app.module.ts │ │ ├── layout/ │ │ │ ├── blank-page/ │ │ │ │ ├── blank-page-routing.module.ts │ │ │ │ ├── blank-page.component.html │ │ │ │ ├── blank-page.component.scss │ │ │ │ ├── blank-page.component.spec.ts │ │ │ │ ├── blank-page.component.ts │ │ │ │ ├── blank-page.module.spec.ts │ │ │ │ └── blank-page.module.ts │ │ │ ├── bs-component/ │ │ │ │ ├── bs-component-routing.module.ts │ │ │ │ ├── bs-component.component.html │ │ │ │ ├── bs-component.component.scss │ │ │ │ ├── bs-component.component.spec.ts │ │ │ │ ├── bs-component.component.ts │ │ │ │ ├── bs-component.module.spec.ts │ │ │ │ ├── bs-component.module.ts │ │ │ │ └── components/ │ │ │ │ ├── alert/ │ │ │ │ │ ├── alert.component.html │ │ │ │ │ ├── alert.component.scss │ │ │ │ │ ├── alert.component.spec.ts │ │ │ │ │ └── alert.component.ts │ │ │ │ ├── buttons/ │ │ │ │ │ ├── buttons.component.html │ │ │ │ │ ├── buttons.component.scss │ │ │ │ │ ├── buttons.component.spec.ts │ │ │ │ │ └── buttons.component.ts │ │ │ │ ├── collapse/ │ │ │ │ │ ├── collapse.component.html │ │ │ │ │ ├── collapse.component.scss │ │ │ │ │ ├── collapse.component.spec.ts │ │ │ │ │ └── collapse.component.ts │ │ │ │ ├── date-picker/ │ │ │ │ │ ├── date-picker.component.html │ │ │ │ │ ├── date-picker.component.scss │ │ │ │ │ ├── date-picker.component.spec.ts │ │ │ │ │ └── date-picker.component.ts │ │ │ │ ├── dropdown/ │ │ │ │ │ ├── dropdown.component.html │ │ │ │ │ ├── dropdown.component.scss │ │ │ │ │ ├── dropdown.component.spec.ts │ │ │ │ │ └── dropdown.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── modal/ │ │ │ │ │ ├── modal.component.html │ │ │ │ │ ├── modal.component.scss │ │ │ │ │ ├── modal.component.spec.ts │ │ │ │ │ └── modal.component.ts │ │ │ │ ├── pagination/ │ │ │ │ │ ├── pagination.component.html │ │ │ │ │ ├── pagination.component.scss │ │ │ │ │ ├── pagination.component.spec.ts │ │ │ │ │ └── pagination.component.ts │ │ │ │ ├── pop-over/ │ │ │ │ │ ├── pop-over.component.html │ │ │ │ │ ├── pop-over.component.scss │ │ │ │ │ ├── pop-over.component.spec.ts │ │ │ │ │ └── pop-over.component.ts │ │ │ │ ├── progressbar/ │ │ │ │ │ ├── progressbar.component.html │ │ │ │ │ ├── progressbar.component.scss │ │ │ │ │ ├── progressbar.component.spec.ts │ │ │ │ │ └── progressbar.component.ts │ │ │ │ ├── rating/ │ │ │ │ │ ├── rating.component.html │ │ │ │ │ ├── rating.component.scss │ │ │ │ │ ├── rating.component.spec.ts │ │ │ │ │ └── rating.component.ts │ │ │ │ ├── tabs/ │ │ │ │ │ ├── tabs.component.html │ │ │ │ │ ├── tabs.component.scss │ │ │ │ │ ├── tabs.component.spec.ts │ │ │ │ │ └── tabs.component.ts │ │ │ │ ├── timepicker/ │ │ │ │ │ ├── timepicker.component.html │ │ │ │ │ ├── timepicker.component.scss │ │ │ │ │ ├── timepicker.component.spec.ts │ │ │ │ │ └── timepicker.component.ts │ │ │ │ └── tooltip/ │ │ │ │ ├── tooltip.component.html │ │ │ │ ├── tooltip.component.scss │ │ │ │ ├── tooltip.component.spec.ts │ │ │ │ └── tooltip.component.ts │ │ │ ├── bs-element/ │ │ │ │ ├── bs-element-routing.module.ts │ │ │ │ ├── bs-element.component.html │ │ │ │ ├── bs-element.component.scss │ │ │ │ ├── bs-element.component.spec.ts │ │ │ │ ├── bs-element.component.ts │ │ │ │ ├── bs-element.module.spec.ts │ │ │ │ └── bs-element.module.ts │ │ │ ├── charts/ │ │ │ │ ├── charts-routing.module.ts │ │ │ │ ├── charts.component.html │ │ │ │ ├── charts.component.scss │ │ │ │ ├── charts.component.spec.ts │ │ │ │ ├── charts.component.ts │ │ │ │ ├── charts.module.spec.ts │ │ │ │ └── charts.module.ts │ │ │ ├── components/ │ │ │ │ ├── header/ │ │ │ │ │ ├── header.component.html │ │ │ │ │ ├── header.component.scss │ │ │ │ │ ├── header.component.spec.ts │ │ │ │ │ └── header.component.ts │ │ │ │ └── sidebar/ │ │ │ │ ├── sidebar.component.html │ │ │ │ ├── sidebar.component.scss │ │ │ │ ├── sidebar.component.spec.ts │ │ │ │ └── sidebar.component.ts │ │ │ ├── dashboard/ │ │ │ │ ├── components/ │ │ │ │ │ ├── chat/ │ │ │ │ │ │ ├── chat.component.html │ │ │ │ │ │ ├── chat.component.scss │ │ │ │ │ │ ├── chat.component.spec.ts │ │ │ │ │ │ └── chat.component.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── notification/ │ │ │ │ │ │ ├── notification.component.html │ │ │ │ │ │ ├── notification.component.scss │ │ │ │ │ │ ├── notification.component.spec.ts │ │ │ │ │ │ └── notification.component.ts │ │ │ │ │ └── timeline/ │ │ │ │ │ ├── timeline.component.html │ │ │ │ │ ├── timeline.component.scss │ │ │ │ │ ├── timeline.component.spec.ts │ │ │ │ │ └── timeline.component.ts │ │ │ │ ├── dashboard-routing.module.ts │ │ │ │ ├── dashboard.component.html │ │ │ │ ├── dashboard.component.scss │ │ │ │ ├── dashboard.component.spec.ts │ │ │ │ ├── dashboard.component.ts │ │ │ │ ├── dashboard.module.spec.ts │ │ │ │ └── dashboard.module.ts │ │ │ ├── form/ │ │ │ │ ├── form-routing.module.ts │ │ │ │ ├── form.component.html │ │ │ │ ├── form.component.scss │ │ │ │ ├── form.component.spec.ts │ │ │ │ ├── form.component.ts │ │ │ │ ├── form.module.spec.ts │ │ │ │ └── form.module.ts │ │ │ ├── grid/ │ │ │ │ ├── grid-routing.module.ts │ │ │ │ ├── grid.component.html │ │ │ │ ├── grid.component.scss │ │ │ │ ├── grid.component.spec.ts │ │ │ │ ├── grid.component.ts │ │ │ │ ├── grid.module.spec.ts │ │ │ │ └── grid.module.ts │ │ │ ├── layout-routing.module.ts │ │ │ ├── layout.component.html │ │ │ ├── layout.component.scss │ │ │ ├── layout.component.spec.ts │ │ │ ├── layout.component.ts │ │ │ ├── layout.module.spec.ts │ │ │ ├── layout.module.ts │ │ │ └── tables/ │ │ │ ├── tables-routing.module.ts │ │ │ ├── tables.component.html │ │ │ ├── tables.component.scss │ │ │ ├── tables.component.spec.ts │ │ │ ├── tables.component.ts │ │ │ ├── tables.module.spec.ts │ │ │ └── tables.module.ts │ │ ├── login/ │ │ │ ├── login-routing.module.ts │ │ │ ├── login.component.html │ │ │ ├── login.component.scss │ │ │ ├── login.component.spec.ts │ │ │ ├── login.component.ts │ │ │ ├── login.module.spec.ts │ │ │ └── login.module.ts │ │ ├── not-found/ │ │ │ ├── not-found-routing.module.ts │ │ │ ├── not-found.component.html │ │ │ ├── not-found.component.scss │ │ │ ├── not-found.component.spec.ts │ │ │ ├── not-found.component.ts │ │ │ ├── not-found.module.spec.ts │ │ │ └── not-found.module.ts │ │ ├── router.animations.ts │ │ ├── server-error/ │ │ │ ├── server-error-routing.module.ts │ │ │ ├── server-error.component.html │ │ │ ├── server-error.component.scss │ │ │ ├── server-error.component.spec.ts │ │ │ ├── server-error.component.ts │ │ │ ├── server-error.module.spec.ts │ │ │ └── server-error.module.ts │ │ ├── shared/ │ │ │ ├── guard/ │ │ │ │ ├── auth.guard.spec.ts │ │ │ │ ├── auth.guard.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── modules/ │ │ │ │ ├── index.ts │ │ │ │ ├── language-translation/ │ │ │ │ │ └── language-translation.module.ts │ │ │ │ ├── page-header/ │ │ │ │ │ ├── page-header.component.html │ │ │ │ │ ├── page-header.component.scss │ │ │ │ │ ├── page-header.component.spec.ts │ │ │ │ │ ├── page-header.component.ts │ │ │ │ │ ├── page-header.module.spec.ts │ │ │ │ │ └── page-header.module.ts │ │ │ │ └── stat/ │ │ │ │ ├── stat.component.html │ │ │ │ ├── stat.component.scss │ │ │ │ ├── stat.component.spec.ts │ │ │ │ ├── stat.component.ts │ │ │ │ ├── stat.module.spec.ts │ │ │ │ └── stat.module.ts │ │ │ ├── pipes/ │ │ │ │ └── shared-pipes.module.ts │ │ │ └── services/ │ │ │ └── index.ts │ │ └── signup/ │ │ ├── signup-routing.module.ts │ │ ├── signup.component.html │ │ ├── signup.component.scss │ │ ├── signup.component.spec.ts │ │ ├── signup.component.ts │ │ ├── signup.module.spec.ts │ │ └── signup.module.ts │ ├── assets/ │ │ └── i18n/ │ │ ├── de.json │ │ ├── en.json │ │ ├── es.json │ │ ├── fa.json │ │ ├── fr.json │ │ ├── it.json │ │ ├── ur.json │ │ └── zh-CHS.json │ ├── environments/ │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── index.html │ ├── karma.conf.js │ ├── main.ts │ ├── polyfills.ts │ ├── styles/ │ │ ├── _responsive.scss │ │ ├── _rtl.scss │ │ ├── _spinner.scss │ │ ├── _utils.scss │ │ └── app.scss │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── typings.d.ts ├── tsconfig.json └── tslint.json