gitextract_yort2r37/ ├── .browserslistrc ├── .editorconfig ├── .eslintrc.json ├── .github/ │ ├── ISSUE_TEMPLATE.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ ├── ACTION_TRIGGER_GUIDE.md │ ├── demoDeploy.yml │ └── docsDeploy.yml ├── .gitignore ├── .prettierignore ├── .stylelintrc.json ├── .travis.yml ├── .vscode/ │ ├── launch.json │ └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEV_DOCS.md ├── LICENSE ├── README.md ├── angular.json ├── e2e/ │ ├── .eslintrc.json │ └── tsconfig.e2e.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src/ │ ├── app/ │ │ ├── @core/ │ │ │ ├── core.module.ts │ │ │ ├── data/ │ │ │ │ ├── .gitkeep │ │ │ │ ├── README.md │ │ │ │ ├── country-order.ts │ │ │ │ ├── earning.ts │ │ │ │ ├── electricity.ts │ │ │ │ ├── orders-chart.ts │ │ │ │ ├── orders-profit-chart.ts │ │ │ │ ├── profit-bar-animation-chart.ts │ │ │ │ ├── profit-chart.ts │ │ │ │ ├── security-cameras.ts │ │ │ │ ├── smart-table.ts │ │ │ │ ├── solar.ts │ │ │ │ ├── stats-bar.ts │ │ │ │ ├── stats-progress-bar.ts │ │ │ │ ├── temperature-humidity.ts │ │ │ │ ├── traffic-bar.ts │ │ │ │ ├── traffic-chart.ts │ │ │ │ ├── traffic-list.ts │ │ │ │ ├── user-activity.ts │ │ │ │ ├── users.ts │ │ │ │ └── visitors-analytics.ts │ │ │ ├── mock/ │ │ │ │ ├── README.md │ │ │ │ ├── country-order.service.ts │ │ │ │ ├── earning.service.ts │ │ │ │ ├── electricity.service.ts │ │ │ │ ├── mock-data.module.ts │ │ │ │ ├── orders-chart.service.ts │ │ │ │ ├── orders-profit-chart.service.ts │ │ │ │ ├── periods.service.ts │ │ │ │ ├── profit-bar-animation-chart.service.ts │ │ │ │ ├── profit-chart.service.ts │ │ │ │ ├── security-cameras.service.ts │ │ │ │ ├── smart-table.service.ts │ │ │ │ ├── solar.service.ts │ │ │ │ ├── stats-bar.service.ts │ │ │ │ ├── stats-progress-bar.service.ts │ │ │ │ ├── temperature-humidity.service.ts │ │ │ │ ├── traffic-bar.service.ts │ │ │ │ ├── traffic-chart.service.ts │ │ │ │ ├── traffic-list.service.ts │ │ │ │ ├── user-activity.service.ts │ │ │ │ ├── users.service.ts │ │ │ │ └── visitors-analytics.service.ts │ │ │ ├── module-import-guard.ts │ │ │ └── utils/ │ │ │ ├── .gitkeep │ │ │ ├── analytics.service.ts │ │ │ ├── index.ts │ │ │ ├── layout.service.ts │ │ │ ├── player.service.ts │ │ │ ├── seo.service.ts │ │ │ └── state.service.ts │ │ ├── @theme/ │ │ │ ├── components/ │ │ │ │ ├── footer/ │ │ │ │ │ ├── footer.component.scss │ │ │ │ │ └── footer.component.ts │ │ │ │ ├── header/ │ │ │ │ │ ├── header.component.html │ │ │ │ │ ├── header.component.scss │ │ │ │ │ └── header.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── search-input/ │ │ │ │ │ ├── search-input.component.scss │ │ │ │ │ └── search-input.component.ts │ │ │ │ └── tiny-mce/ │ │ │ │ └── tiny-mce.component.ts │ │ │ ├── directives/ │ │ │ │ └── .gitkeep │ │ │ ├── layouts/ │ │ │ │ ├── index.ts │ │ │ │ ├── one-column/ │ │ │ │ │ ├── one-column.layout.scss │ │ │ │ │ └── one-column.layout.ts │ │ │ │ ├── three-columns/ │ │ │ │ │ ├── three-columns.layout.scss │ │ │ │ │ └── three-columns.layout.ts │ │ │ │ └── two-columns/ │ │ │ │ ├── two-columns.layout.scss │ │ │ │ └── two-columns.layout.ts │ │ │ ├── pipes/ │ │ │ │ ├── .gitkeep │ │ │ │ ├── capitalize.pipe.ts │ │ │ │ ├── index.ts │ │ │ │ ├── number-with-commas.pipe.ts │ │ │ │ ├── plural.pipe.ts │ │ │ │ ├── round.pipe.ts │ │ │ │ └── timing.pipe.ts │ │ │ ├── styles/ │ │ │ │ ├── _layout.scss │ │ │ │ ├── _overrides.scss │ │ │ │ ├── pace.theme.scss │ │ │ │ ├── styles.scss │ │ │ │ ├── theme.corporate.ts │ │ │ │ ├── theme.cosmic.ts │ │ │ │ ├── theme.dark.ts │ │ │ │ ├── theme.default.ts │ │ │ │ └── themes.scss │ │ │ └── theme.module.ts │ │ ├── app-routing.module.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ └── pages/ │ │ ├── charts/ │ │ │ ├── chartjs/ │ │ │ │ ├── chartjs-bar-horizontal.component.ts │ │ │ │ ├── chartjs-bar.component.ts │ │ │ │ ├── chartjs-line.component.ts │ │ │ │ ├── chartjs-multiple-xaxis.component.ts │ │ │ │ ├── chartjs-pie.component.ts │ │ │ │ ├── chartjs-radar.component.ts │ │ │ │ ├── chartjs.component.html │ │ │ │ ├── chartjs.component.scss │ │ │ │ └── chartjs.component.ts │ │ │ ├── charts-routing.module.ts │ │ │ ├── charts.component.ts │ │ │ ├── charts.module.ts │ │ │ ├── d3/ │ │ │ │ ├── d3-advanced-pie.component.ts │ │ │ │ ├── d3-area-stack.component.ts │ │ │ │ ├── d3-bar.component.ts │ │ │ │ ├── d3-line.component.ts │ │ │ │ ├── d3-pie.component.ts │ │ │ │ ├── d3-polar.component.ts │ │ │ │ ├── d3.component.html │ │ │ │ ├── d3.component.scss │ │ │ │ └── d3.component.ts │ │ │ └── echarts/ │ │ │ ├── echarts-area-stack.component.ts │ │ │ ├── echarts-bar-animation.component.ts │ │ │ ├── echarts-bar.component.ts │ │ │ ├── echarts-line.component.ts │ │ │ ├── echarts-multiple-xaxis.component.ts │ │ │ ├── echarts-pie.component.ts │ │ │ ├── echarts-radar.component.ts │ │ │ ├── echarts.component.html │ │ │ ├── echarts.component.scss │ │ │ └── echarts.component.ts │ │ ├── dashboard/ │ │ │ ├── contacts/ │ │ │ │ ├── contacts.component.html │ │ │ │ ├── contacts.component.scss │ │ │ │ └── contacts.component.ts │ │ │ ├── dashboard.component.html │ │ │ ├── dashboard.component.scss │ │ │ ├── dashboard.component.ts │ │ │ ├── dashboard.module.ts │ │ │ ├── electricity/ │ │ │ │ ├── electricity-chart/ │ │ │ │ │ ├── electricity-chart.component.scss │ │ │ │ │ └── electricity-chart.component.ts │ │ │ │ ├── electricity.component.html │ │ │ │ ├── electricity.component.scss │ │ │ │ └── electricity.component.ts │ │ │ ├── kitten/ │ │ │ │ ├── kitten.component.html │ │ │ │ ├── kitten.component.scss │ │ │ │ └── kitten.component.ts │ │ │ ├── rooms/ │ │ │ │ ├── player/ │ │ │ │ │ ├── player.component.html │ │ │ │ │ ├── player.component.scss │ │ │ │ │ └── player.component.ts │ │ │ │ ├── room-selector/ │ │ │ │ │ ├── room-selector.component.html │ │ │ │ │ ├── room-selector.component.scss │ │ │ │ │ └── room-selector.component.ts │ │ │ │ ├── rooms.component.scss │ │ │ │ └── rooms.component.ts │ │ │ ├── security-cameras/ │ │ │ │ ├── security-cameras.component.html │ │ │ │ ├── security-cameras.component.scss │ │ │ │ └── security-cameras.component.ts │ │ │ ├── solar/ │ │ │ │ ├── solar.component.scss │ │ │ │ └── solar.component.ts │ │ │ ├── status-card/ │ │ │ │ ├── status-card.component.scss │ │ │ │ └── status-card.component.ts │ │ │ ├── temperature/ │ │ │ │ ├── temperature-dragger/ │ │ │ │ │ ├── temperature-dragger.component.html │ │ │ │ │ ├── temperature-dragger.component.scss │ │ │ │ │ └── temperature-dragger.component.ts │ │ │ │ ├── temperature.component.html │ │ │ │ ├── temperature.component.scss │ │ │ │ └── temperature.component.ts │ │ │ ├── traffic/ │ │ │ │ ├── traffic-chart.component.ts │ │ │ │ ├── traffic.component.scss │ │ │ │ └── traffic.component.ts │ │ │ └── weather/ │ │ │ ├── weather.component.html │ │ │ ├── weather.component.scss │ │ │ └── weather.component.ts │ │ ├── e-commerce/ │ │ │ ├── charts-panel/ │ │ │ │ ├── chart-panel-header/ │ │ │ │ │ ├── chart-panel-header.component.html │ │ │ │ │ ├── chart-panel-header.component.scss │ │ │ │ │ └── chart-panel-header.component.ts │ │ │ │ ├── chart-panel-summary/ │ │ │ │ │ ├── chart-panel-summary.component.scss │ │ │ │ │ └── chart-panel-summary.component.ts │ │ │ │ ├── charts/ │ │ │ │ │ ├── charts-common.component.scss │ │ │ │ │ ├── orders-chart.component.ts │ │ │ │ │ └── profit-chart.component.ts │ │ │ │ ├── charts-panel.component.html │ │ │ │ ├── charts-panel.component.scss │ │ │ │ └── charts-panel.component.ts │ │ │ ├── country-orders/ │ │ │ │ ├── chart/ │ │ │ │ │ ├── country-orders-chart.component.scss │ │ │ │ │ └── country-orders-chart.component.ts │ │ │ │ ├── country-orders.component.scss │ │ │ │ ├── country-orders.component.ts │ │ │ │ └── map/ │ │ │ │ ├── country-orders-map.component.scss │ │ │ │ ├── country-orders-map.component.ts │ │ │ │ └── country-orders-map.service.ts │ │ │ ├── e-commerce.component.html │ │ │ ├── e-commerce.component.ts │ │ │ ├── e-commerce.module.ts │ │ │ ├── earning-card/ │ │ │ │ ├── back-side/ │ │ │ │ │ ├── earning-card-back.component.html │ │ │ │ │ ├── earning-card-back.component.scss │ │ │ │ │ ├── earning-card-back.component.ts │ │ │ │ │ └── earning-pie-chart.component.ts │ │ │ │ ├── earning-card.component.html │ │ │ │ ├── earning-card.component.scss │ │ │ │ ├── earning-card.component.ts │ │ │ │ └── front-side/ │ │ │ │ ├── earning-card-front.component.html │ │ │ │ ├── earning-card-front.component.scss │ │ │ │ ├── earning-card-front.component.ts │ │ │ │ └── earning-live-update-chart.component.ts │ │ │ ├── legend-chart/ │ │ │ │ ├── enum.legend-item-color.ts │ │ │ │ ├── legend-chart.component.html │ │ │ │ ├── legend-chart.component.scss │ │ │ │ └── legend-chart.component.ts │ │ │ ├── profit-card/ │ │ │ │ ├── back-side/ │ │ │ │ │ ├── stats-area-chart.component.ts │ │ │ │ │ ├── stats-card-back.component.html │ │ │ │ │ ├── stats-card-back.component.scss │ │ │ │ │ └── stats-card-back.component.ts │ │ │ │ ├── front-side/ │ │ │ │ │ ├── stats-bar-animation-chart.component.ts │ │ │ │ │ ├── stats-card-front.component.html │ │ │ │ │ ├── stats-card-front.component.scss │ │ │ │ │ └── stats-card-front.component.ts │ │ │ │ ├── profit-card.component.html │ │ │ │ ├── profit-card.component.scss │ │ │ │ └── profit-card.component.ts │ │ │ ├── progress-section/ │ │ │ │ ├── progress-section.component.html │ │ │ │ ├── progress-section.component.scss │ │ │ │ └── progress-section.component.ts │ │ │ ├── slide-out/ │ │ │ │ ├── slide-out.component.html │ │ │ │ ├── slide-out.component.scss │ │ │ │ └── slide-out.component.ts │ │ │ ├── traffic-reveal-card/ │ │ │ │ ├── back-side/ │ │ │ │ │ ├── traffic-back-card.component.html │ │ │ │ │ ├── traffic-back-card.component.scss │ │ │ │ │ ├── traffic-back-card.component.ts │ │ │ │ │ └── traffic-bar-chart.component.ts │ │ │ │ ├── front-side/ │ │ │ │ │ ├── traffic-bar/ │ │ │ │ │ │ ├── traffic-bar.component.html │ │ │ │ │ │ ├── traffic-bar.component.scss │ │ │ │ │ │ └── traffic-bar.component.ts │ │ │ │ │ ├── traffic-front-card.component.html │ │ │ │ │ ├── traffic-front-card.component.scss │ │ │ │ │ └── traffic-front-card.component.ts │ │ │ │ ├── traffic-cards-header/ │ │ │ │ │ ├── traffic-cards-header.component.html │ │ │ │ │ ├── traffic-cards-header.component.scss │ │ │ │ │ └── traffic-cards-header.component.ts │ │ │ │ ├── traffic-reveal-card.component.html │ │ │ │ ├── traffic-reveal-card.component.scss │ │ │ │ └── traffic-reveal-card.component.ts │ │ │ ├── user-activity/ │ │ │ │ ├── user-activity.component.html │ │ │ │ ├── user-activity.component.scss │ │ │ │ └── user-activity.component.ts │ │ │ └── visitors-analytics/ │ │ │ ├── visitors-analytics-chart/ │ │ │ │ ├── visitors-analytics-chart.component.scss │ │ │ │ └── visitors-analytics-chart.component.ts │ │ │ ├── visitors-analytics.component.html │ │ │ ├── visitors-analytics.component.scss │ │ │ ├── visitors-analytics.component.ts │ │ │ └── visitors-statistics/ │ │ │ ├── visitors-statistics.component.html │ │ │ ├── visitors-statistics.component.scss │ │ │ └── visitors-statistics.component.ts │ │ ├── editors/ │ │ │ ├── ckeditor/ │ │ │ │ ├── ckeditor.component.ts │ │ │ │ └── ckeditor.loader.ts │ │ │ ├── editors-routing.module.ts │ │ │ ├── editors.component.ts │ │ │ ├── editors.module.ts │ │ │ └── tiny-mce/ │ │ │ └── tiny-mce.component.ts │ │ ├── extra-components/ │ │ │ ├── alert/ │ │ │ │ ├── alert.component.html │ │ │ │ └── alert.component.ts │ │ │ ├── calendar/ │ │ │ │ ├── calendar.component.html │ │ │ │ ├── calendar.component.scss │ │ │ │ ├── calendar.component.ts │ │ │ │ └── day-cell/ │ │ │ │ ├── day-cell.component.html │ │ │ │ ├── day-cell.component.scss │ │ │ │ └── day-cell.component.ts │ │ │ ├── calendar-kit/ │ │ │ │ ├── calendar-kit.component.html │ │ │ │ ├── calendar-kit.component.scss │ │ │ │ ├── calendar-kit.component.ts │ │ │ │ └── month-cell/ │ │ │ │ ├── month-cell.component.html │ │ │ │ ├── month-cell.component.scss │ │ │ │ └── month-cell.component.ts │ │ │ ├── chat/ │ │ │ │ ├── bot-replies.ts │ │ │ │ ├── chat.component.html │ │ │ │ ├── chat.component.scss │ │ │ │ ├── chat.component.ts │ │ │ │ ├── chat.service.ts │ │ │ │ └── messages.ts │ │ │ ├── extra-components-routing.module.ts │ │ │ ├── extra-components.component.ts │ │ │ ├── extra-components.module.ts │ │ │ ├── form-inputs/ │ │ │ │ ├── nebular-form-inputs.component.html │ │ │ │ ├── nebular-form-inputs.component.scss │ │ │ │ ├── nebular-form-inputs.component.ts │ │ │ │ └── nebular-select/ │ │ │ │ ├── nebular-select.component.html │ │ │ │ ├── nebular-select.component.scss │ │ │ │ └── nebular-select.component.ts │ │ │ ├── progress-bar/ │ │ │ │ ├── interactive-progress-bar/ │ │ │ │ │ ├── interactive-progress-bar.component.html │ │ │ │ │ ├── interactive-progress-bar.component.scss │ │ │ │ │ └── interactive-progress-bar.component.ts │ │ │ │ ├── progress-bar.component.html │ │ │ │ ├── progress-bar.component.scss │ │ │ │ └── progress-bar.component.ts │ │ │ └── spinner/ │ │ │ ├── spinner-color/ │ │ │ │ ├── spinner-color.component.html │ │ │ │ └── spinner-color.component.ts │ │ │ ├── spinner-in-buttons/ │ │ │ │ ├── spinner-in-buttons.component.html │ │ │ │ ├── spinner-in-buttons.component.scss │ │ │ │ └── spinner-in-buttons.component.ts │ │ │ ├── spinner-in-tabs/ │ │ │ │ ├── spinner-in-tabs.component.html │ │ │ │ ├── spinner-in-tabs.component.scss │ │ │ │ └── spinner-in-tabs.component.ts │ │ │ ├── spinner-sizes/ │ │ │ │ ├── spinner-sizes.component.html │ │ │ │ └── spinner-sizes.component.ts │ │ │ ├── spinner.component.html │ │ │ ├── spinner.component.scss │ │ │ └── spinner.component.ts │ │ ├── forms/ │ │ │ ├── buttons/ │ │ │ │ ├── buttons.component.html │ │ │ │ ├── buttons.component.scss │ │ │ │ └── buttons.component.ts │ │ │ ├── datepicker/ │ │ │ │ ├── datepicker.component.html │ │ │ │ ├── datepicker.component.scss │ │ │ │ └── datepicker.component.ts │ │ │ ├── form-inputs/ │ │ │ │ ├── form-inputs.component.html │ │ │ │ ├── form-inputs.component.scss │ │ │ │ └── form-inputs.component.ts │ │ │ ├── form-layouts/ │ │ │ │ ├── form-layouts.component.html │ │ │ │ ├── form-layouts.component.scss │ │ │ │ └── form-layouts.component.ts │ │ │ ├── forms-routing.module.ts │ │ │ ├── forms.component.ts │ │ │ └── forms.module.ts │ │ ├── layout/ │ │ │ ├── accordion/ │ │ │ │ ├── accordion.component.html │ │ │ │ ├── accordion.component.scss │ │ │ │ └── accordion.component.ts │ │ │ ├── infinite-list/ │ │ │ │ ├── infinite-list.component.html │ │ │ │ ├── infinite-list.component.scss │ │ │ │ ├── infinite-list.component.ts │ │ │ │ ├── news-post/ │ │ │ │ │ ├── news-post.component.html │ │ │ │ │ └── news-post.component.ts │ │ │ │ └── news-post-placeholder/ │ │ │ │ ├── news-post-placeholder.component.html │ │ │ │ ├── news-post-placeholder.component.scss │ │ │ │ └── news-post-placeholder.component.ts │ │ │ ├── layout-routing.module.ts │ │ │ ├── layout.component.ts │ │ │ ├── layout.module.ts │ │ │ ├── list/ │ │ │ │ ├── fruits-list.ts │ │ │ │ ├── list.component.html │ │ │ │ ├── list.component.scss │ │ │ │ └── list.component.ts │ │ │ ├── news.service.ts │ │ │ ├── stepper/ │ │ │ │ ├── stepper.component.html │ │ │ │ ├── stepper.component.scss │ │ │ │ └── stepper.component.ts │ │ │ └── tabs/ │ │ │ ├── tabs.component.html │ │ │ ├── tabs.component.scss │ │ │ └── tabs.component.ts │ │ ├── maps/ │ │ │ ├── bubble/ │ │ │ │ ├── bubble-map.component.scss │ │ │ │ └── bubble-map.component.ts │ │ │ ├── gmaps/ │ │ │ │ ├── gmaps.component.html │ │ │ │ ├── gmaps.component.scss │ │ │ │ └── gmaps.component.ts │ │ │ ├── leaflet/ │ │ │ │ ├── leaflet.component.scss │ │ │ │ └── leaflet.component.ts │ │ │ ├── maps-routing.module.ts │ │ │ ├── maps.component.ts │ │ │ ├── maps.module.ts │ │ │ └── search-map/ │ │ │ ├── entity/ │ │ │ │ └── position.model.ts │ │ │ ├── map/ │ │ │ │ ├── map.component.html │ │ │ │ ├── map.component.scss │ │ │ │ └── map.component.ts │ │ │ ├── search/ │ │ │ │ ├── search.component.html │ │ │ │ └── search.component.ts │ │ │ ├── search-map.component.html │ │ │ └── search-map.component.ts │ │ ├── miscellaneous/ │ │ │ ├── miscellaneous-routing.module.ts │ │ │ ├── miscellaneous.component.ts │ │ │ ├── miscellaneous.module.ts │ │ │ └── not-found/ │ │ │ ├── not-found.component.html │ │ │ ├── not-found.component.scss │ │ │ └── not-found.component.ts │ │ ├── modal-overlays/ │ │ │ ├── dialog/ │ │ │ │ ├── dialog-name-prompt/ │ │ │ │ │ ├── dialog-name-prompt.component.html │ │ │ │ │ ├── dialog-name-prompt.component.scss │ │ │ │ │ └── dialog-name-prompt.component.ts │ │ │ │ ├── dialog.component.html │ │ │ │ ├── dialog.component.scss │ │ │ │ ├── dialog.component.ts │ │ │ │ └── showcase-dialog/ │ │ │ │ ├── showcase-dialog.component.html │ │ │ │ ├── showcase-dialog.component.scss │ │ │ │ └── showcase-dialog.component.ts │ │ │ ├── modal-overlays-routing.module.ts │ │ │ ├── modal-overlays.component.ts │ │ │ ├── modal-overlays.module.ts │ │ │ ├── popovers/ │ │ │ │ ├── popover-examples.component.ts │ │ │ │ ├── popovers.component.html │ │ │ │ ├── popovers.component.scss │ │ │ │ └── popovers.component.ts │ │ │ ├── toastr/ │ │ │ │ ├── toastr.component.html │ │ │ │ ├── toastr.component.scss │ │ │ │ └── toastr.component.ts │ │ │ ├── tooltip/ │ │ │ │ ├── tooltip.component.html │ │ │ │ ├── tooltip.component.scss │ │ │ │ └── tooltip.component.ts │ │ │ └── window/ │ │ │ ├── window-form/ │ │ │ │ ├── window-form.component.scss │ │ │ │ └── window-form.component.ts │ │ │ ├── window.component.html │ │ │ ├── window.component.scss │ │ │ └── window.component.ts │ │ ├── pages-menu.ts │ │ ├── pages-routing.module.ts │ │ ├── pages.component.scss │ │ ├── pages.component.ts │ │ ├── pages.module.ts │ │ ├── tables/ │ │ │ ├── smart-table/ │ │ │ │ ├── smart-table.component.html │ │ │ │ ├── smart-table.component.scss │ │ │ │ └── smart-table.component.ts │ │ │ ├── tables-routing.module.ts │ │ │ ├── tables.component.ts │ │ │ ├── tables.module.ts │ │ │ └── tree-grid/ │ │ │ ├── tree-grid.component.html │ │ │ ├── tree-grid.component.scss │ │ │ └── tree-grid.component.ts │ │ └── ui-features/ │ │ ├── grid/ │ │ │ ├── grid.component.html │ │ │ ├── grid.component.scss │ │ │ └── grid.component.ts │ │ ├── icons/ │ │ │ ├── icons.component.html │ │ │ ├── icons.component.scss │ │ │ └── icons.component.ts │ │ ├── search-fields/ │ │ │ ├── search-fields.component.html │ │ │ └── search-fields.component.ts │ │ ├── typography/ │ │ │ ├── typography.component.html │ │ │ ├── typography.component.scss │ │ │ └── typography.component.ts │ │ ├── ui-features-routing.module.ts │ │ ├── ui-features.component.ts │ │ └── ui-features.module.ts │ ├── assets/ │ │ ├── .gitkeep │ │ ├── data/ │ │ │ └── news.json │ │ ├── leaflet-countries/ │ │ │ └── countries.geo.json │ │ └── map/ │ │ └── world.json │ ├── environments/ │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── typings.d.ts ├── tsconfig.json └── tslint.json