├── .browserslistrc ├── .editorconfig ├── .gitignore ├── FUNDING.yml ├── README.md ├── angular.json ├── 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 │ └── dashboard │ │ ├── components │ │ ├── dashboard │ │ │ ├── dashboard.component.html │ │ │ ├── dashboard.component.scss │ │ │ ├── dashboard.component.spec.ts │ │ │ └── dashboard.component.ts │ │ ├── info │ │ │ ├── info.component.html │ │ │ ├── info.component.scss │ │ │ ├── info.component.spec.ts │ │ │ └── info.component.ts │ │ ├── sidenav-wrapper │ │ │ ├── sidenav-wrapper.component.html │ │ │ ├── sidenav-wrapper.component.scss │ │ │ ├── sidenav-wrapper.component.spec.ts │ │ │ └── sidenav-wrapper.component.ts │ │ └── user │ │ │ ├── user.component.html │ │ │ ├── user.component.scss │ │ │ ├── user.component.spec.ts │ │ │ └── user.component.ts │ │ ├── dashboard-routing.module.ts │ │ └── dashboard.module.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 /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/.gitignore -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: ThomasOliver545 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/angular.json -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/dashboard/components/dashboard/dashboard.component.html: -------------------------------------------------------------------------------- 1 |

dashboard works!

2 | -------------------------------------------------------------------------------- /src/app/dashboard/components/dashboard/dashboard.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/dashboard/components/dashboard/dashboard.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/src/app/dashboard/components/dashboard/dashboard.component.spec.ts -------------------------------------------------------------------------------- /src/app/dashboard/components/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/src/app/dashboard/components/dashboard/dashboard.component.ts -------------------------------------------------------------------------------- /src/app/dashboard/components/info/info.component.html: -------------------------------------------------------------------------------- 1 |

info works!

2 | -------------------------------------------------------------------------------- /src/app/dashboard/components/info/info.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/dashboard/components/info/info.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/src/app/dashboard/components/info/info.component.spec.ts -------------------------------------------------------------------------------- /src/app/dashboard/components/info/info.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/src/app/dashboard/components/info/info.component.ts -------------------------------------------------------------------------------- /src/app/dashboard/components/sidenav-wrapper/sidenav-wrapper.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/src/app/dashboard/components/sidenav-wrapper/sidenav-wrapper.component.html -------------------------------------------------------------------------------- /src/app/dashboard/components/sidenav-wrapper/sidenav-wrapper.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/src/app/dashboard/components/sidenav-wrapper/sidenav-wrapper.component.scss -------------------------------------------------------------------------------- /src/app/dashboard/components/sidenav-wrapper/sidenav-wrapper.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/src/app/dashboard/components/sidenav-wrapper/sidenav-wrapper.component.spec.ts -------------------------------------------------------------------------------- /src/app/dashboard/components/sidenav-wrapper/sidenav-wrapper.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/src/app/dashboard/components/sidenav-wrapper/sidenav-wrapper.component.ts -------------------------------------------------------------------------------- /src/app/dashboard/components/user/user.component.html: -------------------------------------------------------------------------------- 1 |

user works!

2 | -------------------------------------------------------------------------------- /src/app/dashboard/components/user/user.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/dashboard/components/user/user.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/src/app/dashboard/components/user/user.component.spec.ts -------------------------------------------------------------------------------- /src/app/dashboard/components/user/user.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/src/app/dashboard/components/user/user.component.ts -------------------------------------------------------------------------------- /src/app/dashboard/dashboard-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/src/app/dashboard/dashboard-routing.module.ts -------------------------------------------------------------------------------- /src/app/dashboard/dashboard.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/src/app/dashboard/dashboard.module.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/TommiCodes/angular-material-sidenav-expandable/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiCodes/angular-material-sidenav-expandable/HEAD/tslint.json --------------------------------------------------------------------------------