Dashboard skeleton
authorArtem Motchanyi <a.motchanyi@samsung.com>
Tue, 20 Feb 2018 11:45:26 +0000 (13:45 +0200)
committerDmytro Lomtiev <d.lomtev@samsung.com>
Fri, 16 Mar 2018 14:16:49 +0000 (16:16 +0200)
commitac5bf5c667a1292e25ddbd6588ced65f9021caed
tree37651953b70f76429f0970695675a3174667732c
parenteaf8fc4f1581d490423d986df5492a5334ffab2a
Dashboard skeleton

Change-Id: I2c79a96d9f51ffa6beeefec4b15ad2dc09c47a0b
73 files changed:
dashboard/.angular-cli.json [new file with mode: 0644]
dashboard/.editorconfig [new file with mode: 0644]
dashboard/.gitignore [new file with mode: 0644]
dashboard/.stylelintrc.json [new file with mode: 0644]
dashboard/LICENSE [new file with mode: 0644]
dashboard/README.md [new file with mode: 0644]
dashboard/e2e/tsconfig.e2e.json [new file with mode: 0644]
dashboard/karma.conf.js [new file with mode: 0644]
dashboard/package-lock.json [new file with mode: 0644]
dashboard/package.json [new file with mode: 0644]
dashboard/protractor.conf.js [new file with mode: 0644]
dashboard/src/app/@core/core.module.ts [new file with mode: 0644]
dashboard/src/app/@core/data/.gitkeep [moved from dashboard/.gitkeep with 100% similarity]
dashboard/src/app/@core/data/data.module.ts [new file with mode: 0644]
dashboard/src/app/@core/data/state.service.ts [new file with mode: 0644]
dashboard/src/app/@core/data/users.service.ts [new file with mode: 0644]
dashboard/src/app/@core/module-import-guard.ts [new file with mode: 0644]
dashboard/src/app/@core/utils/.gitkeep [new file with mode: 0644]
dashboard/src/app/@core/utils/analytics.service.ts [new file with mode: 0644]
dashboard/src/app/@theme/components/footer/footer.component.scss [new file with mode: 0644]
dashboard/src/app/@theme/components/footer/footer.component.ts [new file with mode: 0644]
dashboard/src/app/@theme/components/header/header.component.html [new file with mode: 0644]
dashboard/src/app/@theme/components/header/header.component.scss [new file with mode: 0644]
dashboard/src/app/@theme/components/header/header.component.ts [new file with mode: 0644]
dashboard/src/app/@theme/components/index.ts [new file with mode: 0644]
dashboard/src/app/@theme/components/search-input/search-input.component.scss [new file with mode: 0644]
dashboard/src/app/@theme/components/search-input/search-input.component.ts [new file with mode: 0644]
dashboard/src/app/@theme/directives/.gitkeep [new file with mode: 0644]
dashboard/src/app/@theme/layout/index.ts [new file with mode: 0644]
dashboard/src/app/@theme/layout/main.layout.html [new file with mode: 0644]
dashboard/src/app/@theme/layout/main.layout.scss [new file with mode: 0644]
dashboard/src/app/@theme/layout/main.layout.ts [new file with mode: 0644]
dashboard/src/app/@theme/pipes/.gitkeep [new file with mode: 0644]
dashboard/src/app/@theme/pipes/capitalize.pipe.ts [new file with mode: 0644]
dashboard/src/app/@theme/pipes/index.ts [new file with mode: 0644]
dashboard/src/app/@theme/pipes/plural.pipe.ts [new file with mode: 0644]
dashboard/src/app/@theme/pipes/round.pipe.ts [new file with mode: 0644]
dashboard/src/app/@theme/pipes/timing.pipe.ts [new file with mode: 0644]
dashboard/src/app/@theme/styles/pace.theme.scss [new file with mode: 0644]
dashboard/src/app/@theme/styles/styles.scss [new file with mode: 0644]
dashboard/src/app/@theme/styles/theme.cosmic.ts [new file with mode: 0644]
dashboard/src/app/@theme/styles/theme.default.ts [new file with mode: 0644]
dashboard/src/app/@theme/styles/themes.scss [new file with mode: 0644]
dashboard/src/app/@theme/theme.module.ts [new file with mode: 0644]
dashboard/src/app/app-routing.module.ts [new file with mode: 0644]
dashboard/src/app/app.component.ts [new file with mode: 0644]
dashboard/src/app/app.module.ts [new file with mode: 0644]
dashboard/src/app/pages/dashboard/dashboard.component.html [new file with mode: 0644]
dashboard/src/app/pages/dashboard/dashboard.component.ts [new file with mode: 0644]
dashboard/src/app/pages/dashboard/dashboard.module.ts [new file with mode: 0644]
dashboard/src/app/pages/devices/devices.component.html [new file with mode: 0644]
dashboard/src/app/pages/devices/devices.component.ts [new file with mode: 0644]
dashboard/src/app/pages/devices/devices.module.ts [new file with mode: 0644]
dashboard/src/app/pages/pages-menu.ts [new file with mode: 0644]
dashboard/src/app/pages/pages-routing.module.ts [new file with mode: 0644]
dashboard/src/app/pages/pages.component.ts [new file with mode: 0644]
dashboard/src/app/pages/pages.module.ts [new file with mode: 0644]
dashboard/src/assets/.gitkeep [new file with mode: 0644]
dashboard/src/assets/images/default.png [new file with mode: 0644]
dashboard/src/assets/images/nick.png [new file with mode: 0644]
dashboard/src/environments/environment.prod.ts [new file with mode: 0644]
dashboard/src/environments/environment.ts [new file with mode: 0644]
dashboard/src/favicon.ico [new file with mode: 0644]
dashboard/src/favicon.png [new file with mode: 0644]
dashboard/src/index.html [new file with mode: 0644]
dashboard/src/main.ts [new file with mode: 0644]
dashboard/src/polyfills.ts [new file with mode: 0644]
dashboard/src/test.ts [new file with mode: 0644]
dashboard/src/tsconfig.app.json [new file with mode: 0644]
dashboard/src/tsconfig.spec.json [new file with mode: 0644]
dashboard/src/typings.d.ts [new file with mode: 0644]
dashboard/tsconfig.json [new file with mode: 0644]
dashboard/tslint.json [new file with mode: 0644]