├── src ├── assets │ └── .gitkeep ├── app │ ├── app.component.scss │ ├── components │ │ └── dashboard │ │ │ ├── dashboard.component.css │ │ │ ├── dashboard.component.html │ │ │ ├── dashboard-routing.module.ts │ │ │ ├── dashboard.module.ts │ │ │ ├── dashboard.component.spec.ts │ │ │ └── dashboard.component.ts │ ├── shared │ │ ├── fragments │ │ │ ├── footer │ │ │ │ ├── footer.component.css │ │ │ │ ├── footer.component.html │ │ │ │ ├── footer.component.ts │ │ │ │ └── footer.component.spec.ts │ │ │ ├── main-shell │ │ │ │ ├── main-shell.component.css │ │ │ │ ├── main-shell.component.html │ │ │ │ ├── main-shell.component.ts │ │ │ │ └── main-shell.component.spec.ts │ │ │ └── sidebar │ │ │ │ ├── sidebar.component.spec.ts │ │ │ │ ├── sidebar.component.ts │ │ │ │ ├── sidebar.component.css │ │ │ │ └── sidebar.component.html │ │ ├── components │ │ │ └── mat-custom-table │ │ │ │ ├── components │ │ │ │ └── action-buttons │ │ │ │ │ ├── action-buttons.component.css │ │ │ │ │ ├── action-buttons.component.html │ │ │ │ │ ├── action-buttons.component.spec.ts │ │ │ │ │ └── action-buttons.component.ts │ │ │ │ ├── consts │ │ │ │ └── table.ts │ │ │ │ ├── directives │ │ │ │ ├── table-action.directive.ts │ │ │ │ └── table-action.directive.spec.ts │ │ │ │ ├── mat-custom-table.component.spec.ts │ │ │ │ ├── mat-custom-table.component.css │ │ │ │ ├── mat-custom-table.module.ts │ │ │ │ ├── mat-custom-table.component.html │ │ │ │ └── mat-custom-table.component.ts │ │ ├── models │ │ │ ├── tableButtonAction.ts │ │ │ └── tableColumn.ts │ │ ├── shared.module.ts │ │ └── material.module.ts │ ├── app.component.html │ ├── app.component.ts │ ├── app.module.ts │ ├── app.routing.module.ts │ └── app.component.spec.ts ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── styles.scss ├── main.ts ├── index.html ├── test.ts └── polyfills.ts ├── .editorconfig ├── tsconfig.app.json ├── tsconfig.spec.json ├── .browserslistrc ├── .gitignore ├── README.md ├── package.json ├── tsconfig.json ├── karma.conf.js └── angular.json /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/dashboard/dashboard.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/fragments/footer/footer.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/fragments/main-shell/main-shell.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/fragments/footer/footer.component.html: -------------------------------------------------------------------------------- 1 |
footer works!
2 | -------------------------------------------------------------------------------- /src/app/shared/fragments/main-shell/main-shell.component.html: -------------------------------------------------------------------------------- 1 |