├── src
├── app
│ ├── app.component.scss
│ ├── app.component.html
│ ├── pages
│ │ ├── auth
│ │ │ ├── guards
│ │ │ │ ├── index.ts
│ │ │ │ └── auth.guard.ts
│ │ │ ├── pipes
│ │ │ │ ├── index.ts
│ │ │ │ └── year.pipe.ts
│ │ │ ├── containers
│ │ │ │ ├── index.ts
│ │ │ │ └── auth-page
│ │ │ │ │ ├── auth-page.component.ts
│ │ │ │ │ ├── auth-page.component.html
│ │ │ │ │ └── auth-page.component.scss
│ │ │ ├── models
│ │ │ │ ├── index.ts
│ │ │ │ ├── user.ts
│ │ │ │ └── email.ts
│ │ │ ├── services
│ │ │ │ ├── index.ts
│ │ │ │ ├── auth.service.ts
│ │ │ │ └── email.service.ts
│ │ │ ├── components
│ │ │ │ ├── index.ts
│ │ │ │ ├── sign-form
│ │ │ │ │ ├── sign-form.component.scss
│ │ │ │ │ ├── sign-form.component.html
│ │ │ │ │ └── sign-form.component.ts
│ │ │ │ └── login-form
│ │ │ │ │ ├── login-form.component.scss
│ │ │ │ │ ├── login-form.component.html
│ │ │ │ │ └── login-form.component.ts
│ │ │ ├── auth-routing.module.ts
│ │ │ └── auth.module.ts
│ │ ├── ui-elements
│ │ │ ├── consts
│ │ │ │ ├── index.ts
│ │ │ │ └── api.ts
│ │ │ ├── components
│ │ │ │ ├── pie-chart
│ │ │ │ │ ├── pie-chart.component.scss
│ │ │ │ │ ├── pie-chart.component.html
│ │ │ │ │ └── pie-chart.component.ts
│ │ │ │ ├── line-chart
│ │ │ │ │ ├── line-chart.component.scss
│ │ │ │ │ ├── line-chart.component.html
│ │ │ │ │ └── line-chart.component.ts
│ │ │ │ ├── heatmap-chart
│ │ │ │ │ ├── heatmap-chart.component.scss
│ │ │ │ │ ├── heatmap-chart.component.html
│ │ │ │ │ └── heatmap-chart.component.ts
│ │ │ │ ├── dashed-line-chart
│ │ │ │ │ ├── dashed-line-chart.component.scss
│ │ │ │ │ ├── dashed-line-chart.component.html
│ │ │ │ │ └── dashed-line-chart.component.ts
│ │ │ │ ├── index.ts
│ │ │ │ └── icons-page
│ │ │ │ │ ├── icons-page.component.html
│ │ │ │ │ └── icons-page.component.scss
│ │ │ ├── services
│ │ │ │ ├── index.ts
│ │ │ │ └── charts.service.ts
│ │ │ ├── containers
│ │ │ │ ├── map-page
│ │ │ │ │ ├── map-page.component.scss
│ │ │ │ │ ├── map-page.component.html
│ │ │ │ │ └── map-page.component.ts
│ │ │ │ ├── index.ts
│ │ │ │ └── charts-page
│ │ │ │ │ ├── charts-page.component.scss
│ │ │ │ │ ├── charts-page.component.ts
│ │ │ │ │ └── charts-page.component.html
│ │ │ ├── models
│ │ │ │ ├── pie-chart-data.ts
│ │ │ │ ├── heatmap-chart-data.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── line-chart-data.ts
│ │ │ │ └── dashed-line-chart-data.ts
│ │ │ ├── ui-elements-routing.module.ts
│ │ │ └── ui-elements.module.ts
│ │ ├── dashboard
│ │ │ ├── consts
│ │ │ │ ├── index.ts
│ │ │ │ └── custom-tooltip.ts
│ │ │ ├── services
│ │ │ │ └── index.ts
│ │ │ ├── containers
│ │ │ │ ├── index.ts
│ │ │ │ └── dashboard-page
│ │ │ │ │ ├── dashboard-page.component.scss
│ │ │ │ │ ├── dashboard-page.component.html
│ │ │ │ │ └── dashboard-page.component.ts
│ │ │ ├── models
│ │ │ │ ├── performance-chart-data.ts
│ │ │ │ ├── revenue-chart-data.ts
│ │ │ │ ├── visits-chart-data.ts
│ │ │ │ ├── support-request-data.ts
│ │ │ │ ├── server-chart-data.ts
│ │ │ │ ├── daily-line-chart-data.ts
│ │ │ │ ├── index.ts
│ │ │ │ └── project-stat-data.ts
│ │ │ ├── components
│ │ │ │ ├── index.ts
│ │ │ │ ├── performance-chart
│ │ │ │ │ ├── performance-chart.component.ts
│ │ │ │ │ ├── performance-chart.component.html
│ │ │ │ │ └── performance-chart.component.scss
│ │ │ │ ├── revenue-chart
│ │ │ │ │ ├── revenue-chart.component.html
│ │ │ │ │ ├── revenue-chart.component.scss
│ │ │ │ │ └── revenue-chart.component.ts
│ │ │ │ ├── visits-chart
│ │ │ │ │ ├── visits-chart.component.ts
│ │ │ │ │ ├── visits-chart.component.html
│ │ │ │ │ └── visits-chart.component.scss
│ │ │ │ ├── support-requests
│ │ │ │ │ ├── support-requests.component.ts
│ │ │ │ │ ├── support-requests.component.html
│ │ │ │ │ └── support-requests.component.scss
│ │ │ │ ├── server-chart
│ │ │ │ │ ├── server-chart.component.html
│ │ │ │ │ ├── server-chart.component.scss
│ │ │ │ │ └── server-chart.component.ts
│ │ │ │ ├── daily-line-chart
│ │ │ │ │ ├── daily-line-chart.component.html
│ │ │ │ │ └── daily-line-chart.component.scss
│ │ │ │ └── project-stat-chart
│ │ │ │ │ ├── project-stat-chart.component.scss
│ │ │ │ │ └── project-stat-chart.component.ts
│ │ │ └── dashboard.module.ts
│ │ ├── tables
│ │ │ ├── services
│ │ │ │ ├── index.ts
│ │ │ │ └── tables.service.ts
│ │ │ ├── containers
│ │ │ │ ├── index.ts
│ │ │ │ └── tables-page
│ │ │ │ │ ├── tables-page.component.scss
│ │ │ │ │ ├── tables-page.component.html
│ │ │ │ │ └── tables-page.component.ts
│ │ │ ├── models
│ │ │ │ ├── index.ts
│ │ │ │ ├── employee.ts
│ │ │ │ └── customer.ts
│ │ │ ├── components
│ │ │ │ ├── index.ts
│ │ │ │ ├── material-table
│ │ │ │ │ ├── material-table.component.ts
│ │ │ │ │ ├── material-table.component.html
│ │ │ │ │ └── material-table.component.scss
│ │ │ │ └── employee-table
│ │ │ │ │ ├── employee-table.component.scss
│ │ │ │ │ ├── employee-table.component.ts
│ │ │ │ │ └── employee-table.component.html
│ │ │ ├── tables-routing.module.ts
│ │ │ └── tables.module.ts
│ │ ├── typography
│ │ │ ├── containers
│ │ │ │ ├── index.ts
│ │ │ │ └── typography-page
│ │ │ │ │ ├── typography-page.component.ts
│ │ │ │ │ ├── typography-page.component.scss
│ │ │ │ │ └── typography-page.component.html
│ │ │ ├── typography-routing.module.ts
│ │ │ └── typography.module.ts
│ │ ├── notification
│ │ │ ├── containers
│ │ │ │ ├── index.ts
│ │ │ │ ├── error-toastr
│ │ │ │ │ ├── error-toastr.component.html
│ │ │ │ │ ├── error-toastr.component.scss
│ │ │ │ │ └── error-toastr.component.ts
│ │ │ │ ├── success-toast
│ │ │ │ │ ├── success-toast.component.html
│ │ │ │ │ ├── success-toast.component.scss
│ │ │ │ │ └── success-toast.component.ts
│ │ │ │ ├── info-toastr
│ │ │ │ │ ├── info-toastr.component.html
│ │ │ │ │ ├── info-toastr.component.scss
│ │ │ │ │ └── info-toastr.component.ts
│ │ │ │ └── notification-page
│ │ │ │ │ └── notification-page.component.ts
│ │ │ ├── notification-routing.module.ts
│ │ │ └── notification.module.ts
│ │ └── not-found
│ │ │ ├── not-found.component.ts
│ │ │ ├── not-found.component.html
│ │ │ └── not-found.component.scss
│ ├── shared
│ │ ├── header
│ │ │ ├── pipes
│ │ │ │ ├── index.ts
│ │ │ │ └── short-name.ts
│ │ │ ├── containers
│ │ │ │ ├── index.ts
│ │ │ │ └── header
│ │ │ │ │ ├── header.component.html
│ │ │ │ │ ├── header.component.ts
│ │ │ │ │ └── header.component.scss
│ │ │ ├── components
│ │ │ │ ├── index.ts
│ │ │ │ ├── search
│ │ │ │ │ ├── search.component.html
│ │ │ │ │ ├── search.component.ts
│ │ │ │ │ └── search.component.scss
│ │ │ │ ├── notifications
│ │ │ │ │ ├── notifications.component.ts
│ │ │ │ │ ├── notifications.component.scss
│ │ │ │ │ └── notifications.component.html
│ │ │ │ ├── email
│ │ │ │ │ ├── email.component.ts
│ │ │ │ │ ├── email.component.html
│ │ │ │ │ └── email.component.scss
│ │ │ │ └── user
│ │ │ │ │ ├── user.component.ts
│ │ │ │ │ ├── user.component.html
│ │ │ │ │ └── user.component.scss
│ │ │ └── header.module.ts
│ │ ├── ui-elements
│ │ │ ├── date-menu
│ │ │ │ ├── date-menu.component.scss
│ │ │ │ ├── date-menu.component.html
│ │ │ │ └── date-menu.component.ts
│ │ │ ├── index.ts
│ │ │ └── settings-menu
│ │ │ │ ├── settings-menu.component.ts
│ │ │ │ ├── settings-menu.component.html
│ │ │ │ └── settings-menu.component.scss
│ │ ├── footer
│ │ │ ├── footer.component.ts
│ │ │ ├── footer.component.html
│ │ │ └── footer.component.scss
│ │ ├── sidebar
│ │ │ ├── sidebar.component.ts
│ │ │ ├── sidebar.component.scss
│ │ │ └── sidebar.component.html
│ │ ├── layout
│ │ │ ├── layout.component.scss
│ │ │ ├── layout.component.html
│ │ │ └── layout.component.ts
│ │ └── shared.module.ts
│ ├── consts
│ │ ├── index.ts
│ │ ├── colors.ts
│ │ └── routes.ts
│ ├── app.component.ts
│ ├── styles
│ │ ├── font.scss
│ │ ├── colors.scss
│ │ ├── toasrt.scss
│ │ └── variables.scss
│ ├── app.module.ts
│ └── app-routing.module.ts
├── favicon.ico
├── environments
│ ├── environment.hmr.ts
│ ├── environment.prod.ts
│ └── environment.ts
├── assets
│ ├── auth
│ │ ├── logo.svg
│ │ └── google.svg
│ └── hot-found
│ │ └── logo.svg
├── hmr.ts
├── main.ts
├── index.html
└── polyfills.ts
├── docs
├── favicon.ico
├── fontawesome-webfont.1e59d2330b4c6deb84b3.ttf
├── fontawesome-webfont.8b43027f47b20503057d.eot
├── fontawesome-webfont.f691f37e57f04c152e23.woff
├── fontawesome-webfont.20fd1704ea223900efa9.woff2
├── assets
│ ├── auth
│ │ ├── logo.svg
│ │ └── google.svg
│ └── hot-found
│ │ └── logo.svg
├── runtime-es5.04ef36e01dd49e8130ab.js
└── runtime-es2015.04ef36e01dd49e8130ab.js
├── tsconfig.app.json
├── .editorconfig
├── .browserslistrc
├── tsconfig.json
├── .gitignore
├── LICENSE.txt
├── package.json
├── changelog.md
├── angular.json
├── tslint.json
└── README.md
/src/app/app.component.scss:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/app/app.component.html:
--------------------------------------------------------------------------------
1 |
Message was not sent!
7 |The item was shipped
7 |New user feedback received
7 |Oops. Looks like the page you're looking for no longer exists
13 |But we're here to bring you back to safety
14 | 15 | 16 | 17 |{{serverDataTitles[i]}}
11 || {{column}} | 11 |
12 | {{element[column]}}
13 |
14 | {{element[column]}}
15 |
16 | |
17 |
|---|
Daily Line Chart
4 || {{column}} | 12 |
13 | {{element[column]}}
14 |
15 | {{element[column]}}
16 |
17 | |
18 |
|---|
Registration
24 |{{visitsChartData.registration}}
25 |Sign Out
29 |{{visitsChartData.signOut}}
30 |Rate
34 |{{visitsChartData.rate}}%
35 |Apex Line Chart
13 |Apex Heatmap Chart
20 |Apex Dashed Line Chart
29 |Apex Pie Chart
36 |or
16 | 17 |Create you account
25 | 26 |or
31 | 32 |Headings
11 |Typography Colors
24 |Basic Text Settings
39 |Basic text
42 |Basic light text
43 |Basic medium text
44 |Basic bold text
45 |basic lowercase text
46 |basic lowercase text
47 |Basic Capitalized Text
48 |Basic Cursive Text
49 |Text Size
54 |Heading Typography SM Font Size
57 |Heading Typography Regular Font Size
58 |Heading Typography MD Font Size
59 |Heading Typography XL Font Size
60 |Heading Typography XXL Font Size
61 |Employee List
4 ||
23 | |
31 |
32 | |
40 | Name | 45 |{{element.name}} | 46 |Company | 51 |{{element.company}} | 52 |City | 57 |{{element.city}} | 58 |State | 63 |{{element.state}} | 64 |
|---|