├── .browserslistrc ├── .dependabot └── config.yml ├── .editorconfig ├── .eslintrc.json ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── .stylelintrc.json ├── .travis.yml ├── .vscode └── settings.json ├── Dockerfile ├── README.md ├── angular.json ├── azure-pipelines-prod.yml ├── azure-pipelines.yml ├── chart-test ├── go.mod ├── go.sum ├── k8s_test.go ├── valuesTest.yaml └── values_struct.go ├── e2e ├── protractor-ci.conf.js ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── greencity-client-chart ├── Chart.yaml ├── templates │ ├── greencity-client.yaml │ ├── ingress-client.yaml │ └── service-client.yaml └── values.yaml ├── karma.conf.js ├── nginx.conf ├── ngsw-config.json ├── package.json ├── scripts ├── delete-public-for-all-project.ts ├── delete-public-for-commit.ts └── setenv.ts ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── chat │ │ ├── chat-icons.ts │ │ ├── chat.module.ts │ │ ├── component │ │ │ ├── chat-page │ │ │ │ ├── chat-page.component.html │ │ │ │ ├── chat-page.component.scss │ │ │ │ ├── chat-page.component.spec.ts │ │ │ │ ├── chat-page.component.ts │ │ │ │ ├── mock-translate.mock.ts │ │ │ │ └── setupChatComponentTest.ts │ │ │ ├── client-info-panel │ │ │ │ ├── client-info-panel.component.html │ │ │ │ ├── client-info-panel.component.scss │ │ │ │ ├── client-info-panel.component.spec.ts │ │ │ │ ├── client-info-panel.component.ts │ │ │ │ └── mock-translate.mock.ts │ │ │ ├── contact-admin-pop-up │ │ │ │ ├── contact-admin-pop-up.component.html │ │ │ │ ├── contact-admin-pop-up.component.scss │ │ │ │ ├── contact-admin-pop-up.component.spec.ts │ │ │ │ └── contact-admin-pop-up.component.ts │ │ │ └── image-modal │ │ │ │ ├── image-modal.component.html │ │ │ │ ├── image-modal.component.scss │ │ │ │ ├── image-modal.component.spec.ts │ │ │ │ └── image-modal.component.ts │ │ ├── data │ │ │ ├── chat-api.service.spec.ts │ │ │ └── chat-api.service.ts │ │ ├── facade │ │ │ ├── chat-facade.spec.ts │ │ │ └── chat.facade.ts │ │ ├── model │ │ │ ├── chat-page.interface.ts │ │ │ ├── socket-chat-message.interface.ts │ │ │ └── socket-new-chat.interface.ts │ │ ├── service │ │ │ └── chats │ │ │ │ ├── telegram-socket.service.spec.ts │ │ │ │ └── telegram-socket.service.ts │ │ ├── ui │ │ │ ├── chat-sidebar │ │ │ │ ├── chat-sidebar.component.html │ │ │ │ ├── chat-sidebar.component.spec.ts │ │ │ │ └── chat-sidebar.component.ts │ │ │ ├── message-input │ │ │ │ ├── message-input.component.html │ │ │ │ ├── message-input.component.spec.ts │ │ │ │ └── message-input.component.ts │ │ │ ├── messages-list │ │ │ │ ├── messages-list.component.html │ │ │ │ ├── messages-list.component.spec.ts │ │ │ │ └── messages-list.component.ts │ │ │ └── status-ticks │ │ │ │ ├── status-ticks.component.html │ │ │ │ ├── status-ticks.component.spec.ts │ │ │ │ └── status-ticks.component.ts │ │ └── utils │ │ │ ├── chat-mappers.spec.ts │ │ │ └── chat-mappers.ts │ ├── focus-detection.service.ts │ ├── greencity │ │ ├── components │ │ │ ├── footer │ │ │ │ ├── footer.component.html │ │ │ │ ├── footer.component.scss │ │ │ │ ├── footer.component.spec.ts │ │ │ │ └── footer.component.ts │ │ │ ├── greencity-main │ │ │ │ ├── greencity-main.component.html │ │ │ │ ├── greencity-main.component.scss │ │ │ │ ├── greencity-main.component.spec.ts │ │ │ │ └── greencity-main.component.ts │ │ │ ├── search-all-results │ │ │ │ ├── search-all-results.component.html │ │ │ │ ├── search-all-results.component.scss │ │ │ │ ├── search-all-results.component.spec.ts │ │ │ │ └── search-all-results.component.ts │ │ │ ├── search-item │ │ │ │ ├── search-item.component.html │ │ │ │ ├── search-item.component.scss │ │ │ │ ├── search-item.component.spec.ts │ │ │ │ ├── search-item.component.ts │ │ │ │ └── search-item.model.ts │ │ │ ├── search-not-found │ │ │ │ ├── search-not-found.component.html │ │ │ │ ├── search-not-found.component.scss │ │ │ │ ├── search-not-found.component.spec.ts │ │ │ │ └── search-not-found.component.ts │ │ │ └── search-popup │ │ │ │ ├── model │ │ │ │ ├── eventsSearch.model.ts │ │ │ │ ├── newsSearch.model.ts │ │ │ │ ├── placesSearch.model.ts │ │ │ │ ├── search-popup.model.ts │ │ │ │ └── search.model.ts │ │ │ │ ├── search-consts.ts │ │ │ │ ├── search-popup.component.html │ │ │ │ ├── search-popup.component.scss │ │ │ │ ├── search-popup.component.spec.ts │ │ │ │ └── search-popup.component.ts │ │ ├── greencity.module.ts │ │ ├── greencity.routing.module.ts │ │ ├── image-paths │ │ │ ├── calendar-icons.ts │ │ │ ├── footer-icons.ts │ │ │ ├── habits-images.ts │ │ │ ├── places-icons.ts │ │ │ ├── profile-icons.ts │ │ │ ├── profile-images.ts │ │ │ ├── search-icons.ts │ │ │ └── single-news-images.ts │ │ ├── modules │ │ │ ├── about │ │ │ │ ├── about-routing.module.ts │ │ │ │ ├── about.module.ts │ │ │ │ ├── components │ │ │ │ │ ├── about-page │ │ │ │ │ │ ├── about-page.component.html │ │ │ │ │ │ ├── about-page.component.scss │ │ │ │ │ │ ├── about-page.component.spec.ts │ │ │ │ │ │ └── about-page.component.ts │ │ │ │ │ ├── constants │ │ │ │ │ │ └── vision-cards.const.ts │ │ │ │ │ └── vision-card │ │ │ │ │ │ ├── vision-card.component.html │ │ │ │ │ │ ├── vision-card.component.scss │ │ │ │ │ │ ├── vision-card.component.spec.ts │ │ │ │ │ │ └── vision-card.component.ts │ │ │ │ └── models │ │ │ │ │ └── vision-card.interface.ts │ │ │ ├── comments │ │ │ │ ├── comments.module.ts │ │ │ │ ├── components │ │ │ │ │ ├── add-comment │ │ │ │ │ │ ├── add-comment.component.html │ │ │ │ │ │ ├── add-comment.component.scss │ │ │ │ │ │ ├── add-comment.component.spec.ts │ │ │ │ │ │ └── add-comment.component.ts │ │ │ │ │ ├── add-emoji │ │ │ │ │ │ └── add-emoji.ts │ │ │ │ │ ├── comment-pagination │ │ │ │ │ │ ├── comment-pagination.component.html │ │ │ │ │ │ ├── comment-pagination.component.scss │ │ │ │ │ │ ├── comment-pagination.component.spec.ts │ │ │ │ │ │ └── comment-pagination.component.ts │ │ │ │ │ ├── comment-textarea │ │ │ │ │ │ ├── comment-textarea.component.html │ │ │ │ │ │ ├── comment-textarea.component.scss │ │ │ │ │ │ ├── comment-textarea.component.spec.ts │ │ │ │ │ │ └── comment-textarea.component.ts │ │ │ │ │ ├── comments-container │ │ │ │ │ │ ├── comments-container.component.html │ │ │ │ │ │ ├── comments-container.component.scss │ │ │ │ │ │ ├── comments-container.component.spec.ts │ │ │ │ │ │ └── comments-container.component.ts │ │ │ │ │ ├── comments-list │ │ │ │ │ │ ├── comments-list.component.html │ │ │ │ │ │ ├── comments-list.component.scss │ │ │ │ │ │ ├── comments-list.component.spec.ts │ │ │ │ │ │ ├── comments-list.component.ts │ │ │ │ │ │ └── reaction-type.enum.ts │ │ │ │ │ ├── delete-comment │ │ │ │ │ │ ├── delete-comment.component.html │ │ │ │ │ │ ├── delete-comment.component.scss │ │ │ │ │ │ ├── delete-comment.component.spec.ts │ │ │ │ │ │ └── delete-comment.component.ts │ │ │ │ │ ├── edit-comment │ │ │ │ │ │ ├── edit-comment.component.html │ │ │ │ │ │ ├── edit-comment.component.scss │ │ │ │ │ │ ├── edit-comment.component.spec.ts │ │ │ │ │ │ └── edit-comment.component.ts │ │ │ │ │ ├── like-comment │ │ │ │ │ │ ├── like-comment.component.html │ │ │ │ │ │ ├── like-comment.component.scss │ │ │ │ │ │ ├── like-comment.component.spec.ts │ │ │ │ │ │ └── like-comment.component.ts │ │ │ │ │ ├── reply-comment │ │ │ │ │ │ ├── reply-comment.component.html │ │ │ │ │ │ ├── reply-comment.component.scss │ │ │ │ │ │ ├── reply-comment.component.spec.ts │ │ │ │ │ │ └── reply-comment.component.ts │ │ │ │ │ └── view-replies │ │ │ │ │ │ ├── view-replies.component.html │ │ │ │ │ │ ├── view-replies.component.scss │ │ │ │ │ │ ├── view-replies.component.spec.ts │ │ │ │ │ │ └── view-replies.component.ts │ │ │ │ ├── directives │ │ │ │ │ ├── placeholder-for-div.directive.spec.ts │ │ │ │ │ └── placeholder-for-div.directive.ts │ │ │ │ ├── mocks │ │ │ │ │ └── comments-mock.ts │ │ │ │ ├── models │ │ │ │ │ └── comments-model.ts │ │ │ │ └── services │ │ │ │ │ ├── comments.service.spec.ts │ │ │ │ │ └── comments.service.ts │ │ │ ├── eco-news │ │ │ │ ├── components │ │ │ │ │ ├── create-edit-news │ │ │ │ │ │ ├── action.constants.ts │ │ │ │ │ │ ├── create-edit-news-form-builder.ts │ │ │ │ │ │ ├── create-edit-news.component.html │ │ │ │ │ │ ├── create-edit-news.component.scss │ │ │ │ │ │ ├── create-edit-news.component.spec.ts │ │ │ │ │ │ └── create-edit-news.component.ts │ │ │ │ │ ├── eco-news-detail │ │ │ │ │ │ ├── eco-news-detail.component.html │ │ │ │ │ │ ├── eco-news-detail.component.scss │ │ │ │ │ │ ├── eco-news-detail.component.spec.ts │ │ │ │ │ │ ├── eco-news-detail.component.ts │ │ │ │ │ │ └── eco-news-widget │ │ │ │ │ │ │ ├── eco-news-widget.component.html │ │ │ │ │ │ │ ├── eco-news-widget.component.scss │ │ │ │ │ │ │ ├── eco-news-widget.component.spec.ts │ │ │ │ │ │ │ └── eco-news-widget.component.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── news-list │ │ │ │ │ │ ├── change-view-button │ │ │ │ │ │ │ ├── change-view-button.component.html │ │ │ │ │ │ │ ├── change-view-button.component.scss │ │ │ │ │ │ │ ├── change-view-button.component.spec.ts │ │ │ │ │ │ │ └── change-view-button.component.ts │ │ │ │ │ │ ├── news-list-list-view │ │ │ │ │ │ │ ├── breakpoints.ts │ │ │ │ │ │ │ ├── news-list-list-view.component.html │ │ │ │ │ │ │ ├── news-list-list-view.component.scss │ │ │ │ │ │ │ ├── news-list-list-view.component.spec.ts │ │ │ │ │ │ │ └── news-list-list-view.component.ts │ │ │ │ │ │ ├── news-list.component.html │ │ │ │ │ │ ├── news-list.component.scss │ │ │ │ │ │ ├── news-list.component.spec.ts │ │ │ │ │ │ └── news-list.component.ts │ │ │ │ │ ├── news-preview-page │ │ │ │ │ │ ├── news-preview-page.component.html │ │ │ │ │ │ ├── news-preview-page.component.scss │ │ │ │ │ │ ├── news-preview-page.component.spec.ts │ │ │ │ │ │ └── news-preview-page.component.ts │ │ │ │ │ ├── post-news-loader │ │ │ │ │ │ ├── post-news-loader.component.html │ │ │ │ │ │ ├── post-news-loader.component.scss │ │ │ │ │ │ ├── post-news-loader.component.spec.ts │ │ │ │ │ │ └── post-news-loader.component.ts │ │ │ │ │ └── remaining-count │ │ │ │ │ │ ├── remaining-count.component.html │ │ │ │ │ │ ├── remaining-count.component.scss │ │ │ │ │ │ ├── remaining-count.component.spec.ts │ │ │ │ │ │ └── remaining-count.component.ts │ │ │ │ ├── directives │ │ │ │ │ ├── drag-and-drop.directive.spec.ts │ │ │ │ │ └── drag-and-drop.directive.ts │ │ │ │ ├── eco-news-routing.module.ts │ │ │ │ ├── eco-news.component.html │ │ │ │ ├── eco-news.component.scss │ │ │ │ ├── eco-news.component.spec.ts │ │ │ │ ├── eco-news.component.ts │ │ │ │ ├── eco-news.module.ts │ │ │ │ ├── mocks │ │ │ │ │ └── eco-news-mock.ts │ │ │ │ ├── models │ │ │ │ │ ├── action.interface.ts │ │ │ │ │ ├── create-news-interface.ts │ │ │ │ │ ├── eco-news-consts.ts │ │ │ │ │ ├── eco-news-dto.ts │ │ │ │ │ └── eco-news-model.ts │ │ │ │ ├── pipe │ │ │ │ │ ├── safe-html-pipe │ │ │ │ │ │ ├── safe-html.pipe.spec.ts │ │ │ │ │ │ └── safe-html.pipe.ts │ │ │ │ │ └── url-hostname-pipe │ │ │ │ │ │ ├── url-hostname.pipe.ts │ │ │ │ │ │ └── webpage-hostname.pipe.spec.ts │ │ │ │ └── services │ │ │ │ │ ├── create-eco-news.service.spec.ts │ │ │ │ │ ├── create-eco-news.service.ts │ │ │ │ │ ├── eco-news-comments.service.spec.ts │ │ │ │ │ ├── eco-news-comments.service.ts │ │ │ │ │ ├── eco-news.service.spec.ts │ │ │ │ │ └── eco-news.service.ts │ │ │ ├── events │ │ │ │ ├── components │ │ │ │ │ ├── event-details │ │ │ │ │ │ ├── event-details.component.html │ │ │ │ │ │ ├── event-details.component.scss │ │ │ │ │ │ ├── event-details.component.spec.ts │ │ │ │ │ │ ├── event-details.component.ts │ │ │ │ │ │ ├── event-schedule-overlay │ │ │ │ │ │ │ ├── event-schedule-overlay.component.html │ │ │ │ │ │ │ ├── event-schedule-overlay.component.scss │ │ │ │ │ │ │ ├── event-schedule-overlay.component.spec.ts │ │ │ │ │ │ │ └── event-schedule-overlay.component.ts │ │ │ │ │ │ ├── event-schedule │ │ │ │ │ │ │ ├── event-schedule.component.html │ │ │ │ │ │ │ ├── event-schedule.component.scss │ │ │ │ │ │ │ ├── event-schedule.component.spec.ts │ │ │ │ │ │ │ └── event-schedule.component.ts │ │ │ │ │ │ ├── images-slider │ │ │ │ │ │ │ ├── images-slider.component.html │ │ │ │ │ │ │ ├── images-slider.component.scss │ │ │ │ │ │ │ ├── images-slider.component.spec.ts │ │ │ │ │ │ │ └── images-slider.component.ts │ │ │ │ │ │ └── resizable-bottom-sheet │ │ │ │ │ │ │ ├── resizable-bottom-sheet.component.html │ │ │ │ │ │ │ ├── resizable-bottom-sheet.component.scss │ │ │ │ │ │ │ ├── resizable-bottom-sheet.component.spec.ts │ │ │ │ │ │ │ └── resizable-bottom-sheet.component.ts │ │ │ │ │ ├── event-editor │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── create-event-dates │ │ │ │ │ │ │ │ ├── date-time │ │ │ │ │ │ │ │ │ ├── date-time.component.html │ │ │ │ │ │ │ │ │ ├── date-time.component.scss │ │ │ │ │ │ │ │ │ ├── date-time.component.spec.ts │ │ │ │ │ │ │ │ │ └── date-time.component.ts │ │ │ │ │ │ │ │ └── place-online │ │ │ │ │ │ │ │ │ ├── place-online.component.html │ │ │ │ │ │ │ │ │ ├── place-online.component.scss │ │ │ │ │ │ │ │ │ ├── place-online.component.spec.ts │ │ │ │ │ │ │ │ │ └── place-online.component.ts │ │ │ │ │ │ │ ├── create-event-information │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ │ └── images-container │ │ │ │ │ │ │ │ │ │ ├── images-container.component.html │ │ │ │ │ │ │ │ │ │ ├── images-container.component.scss │ │ │ │ │ │ │ │ │ │ ├── images-container.component.spec.ts │ │ │ │ │ │ │ │ │ │ └── images-container.component.ts │ │ │ │ │ │ │ │ ├── create-event-information.component.html │ │ │ │ │ │ │ │ ├── create-event-information.component.scss │ │ │ │ │ │ │ │ ├── create-event-information.component.spec.ts │ │ │ │ │ │ │ │ └── create-event-information.component.ts │ │ │ │ │ │ │ └── edit-image-pop-up │ │ │ │ │ │ │ │ ├── edit-image-pop-up.component.html │ │ │ │ │ │ │ │ ├── edit-image-pop-up.component.scss │ │ │ │ │ │ │ │ ├── edit-image-pop-up.component.spec.ts │ │ │ │ │ │ │ │ └── edit-image-pop-up.component.ts │ │ │ │ │ │ ├── event-editor.component.html │ │ │ │ │ │ ├── event-editor.component.scss │ │ │ │ │ │ ├── event-editor.component.spec.ts │ │ │ │ │ │ ├── event-editor.component.ts │ │ │ │ │ │ ├── quillEditorFunc.ts │ │ │ │ │ │ └── validators │ │ │ │ │ │ │ ├── event-custom-validators.spec.ts │ │ │ │ │ │ │ └── event-custom-validators.ts │ │ │ │ │ ├── events-list │ │ │ │ │ │ ├── events-list.component.html │ │ │ │ │ │ ├── events-list.component.scss │ │ │ │ │ │ ├── events-list.component.spec.ts │ │ │ │ │ │ └── events-list.component.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── events-routing.module.ts │ │ │ │ ├── events.component.html │ │ │ │ ├── events.component.scss │ │ │ │ ├── events.component.spec.ts │ │ │ │ ├── events.component.ts │ │ │ │ ├── events.module.ts │ │ │ │ ├── models │ │ │ │ │ ├── event-consts.ts │ │ │ │ │ └── events.interface.ts │ │ │ │ └── services │ │ │ │ │ ├── LikeResponse.ts │ │ │ │ │ ├── event-store.service.spec.ts │ │ │ │ │ ├── event-store.service.ts │ │ │ │ │ ├── events-comments.service.spec.ts │ │ │ │ │ ├── events-comments.service.ts │ │ │ │ │ ├── events.effects.spec.ts │ │ │ │ │ ├── events.service.spec.ts │ │ │ │ │ └── events.service.ts │ │ │ ├── home │ │ │ │ ├── components │ │ │ │ │ ├── eco-events │ │ │ │ │ │ ├── eco-events-item │ │ │ │ │ │ │ ├── eco-events-item.component.html │ │ │ │ │ │ │ ├── eco-events-item.component.scss │ │ │ │ │ │ │ ├── eco-events-item.component.spec.ts │ │ │ │ │ │ │ └── eco-events-item.component.ts │ │ │ │ │ │ ├── eco-events.component.html │ │ │ │ │ │ ├── eco-events.component.scss │ │ │ │ │ │ ├── eco-events.component.spec.ts │ │ │ │ │ │ └── eco-events.component.ts │ │ │ │ │ ├── homepage │ │ │ │ │ │ ├── homepage.component.html │ │ │ │ │ │ ├── homepage.component.scss │ │ │ │ │ │ ├── homepage.component.spec.ts │ │ │ │ │ │ └── homepage.component.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── stat-row │ │ │ │ │ │ ├── stat-row.component.html │ │ │ │ │ │ ├── stat-row.component.scss │ │ │ │ │ │ ├── stat-row.component.spec.ts │ │ │ │ │ │ └── stat-row.component.ts │ │ │ │ │ ├── stat-rows │ │ │ │ │ │ ├── stat-rows.component.html │ │ │ │ │ │ ├── stat-rows.component.scss │ │ │ │ │ │ ├── stat-rows.component.spec.ts │ │ │ │ │ │ └── stat-rows.component.ts │ │ │ │ │ ├── subscribe │ │ │ │ │ │ ├── subscribe.component.html │ │ │ │ │ │ ├── subscribe.component.scss │ │ │ │ │ │ ├── subscribe.component.spec.ts │ │ │ │ │ │ └── subscribe.component.ts │ │ │ │ │ └── unsubscribe │ │ │ │ │ │ ├── unsubscribe.component.html │ │ │ │ │ │ ├── unsubscribe.component.scss │ │ │ │ │ │ ├── unsubscribe.component.spec.ts │ │ │ │ │ │ └── unsubscribe.component.ts │ │ │ │ ├── home.module.ts │ │ │ │ ├── models │ │ │ │ │ ├── NewsDto.ts │ │ │ │ │ └── SubscriptionDto.ts │ │ │ │ ├── pipes │ │ │ │ │ └── translate-date-pipe │ │ │ │ │ │ ├── translate-date.pipe.spec.ts │ │ │ │ │ │ └── translate-date.pipe.ts │ │ │ │ └── services │ │ │ │ │ └── subscription │ │ │ │ │ ├── subscription.service.spec.ts │ │ │ │ │ └── subscription.service.ts │ │ │ ├── places │ │ │ │ ├── components │ │ │ │ │ ├── add-place │ │ │ │ │ │ ├── add-place.component.html │ │ │ │ │ │ ├── add-place.component.scss │ │ │ │ │ │ ├── add-place.component.spec.ts │ │ │ │ │ │ └── add-place.component.ts │ │ │ │ │ ├── address-input │ │ │ │ │ │ ├── address-input.component.html │ │ │ │ │ │ ├── address-input.component.scss │ │ │ │ │ │ ├── address-input.component.spec.ts │ │ │ │ │ │ └── address-input.component.ts │ │ │ │ │ ├── more-options-filter │ │ │ │ │ │ ├── more-options-filter.component.html │ │ │ │ │ │ ├── more-options-filter.component.scss │ │ │ │ │ │ ├── more-options-filter.component.spec.ts │ │ │ │ │ │ ├── more-options-filter.component.ts │ │ │ │ │ │ └── more-options-filter.constant.ts │ │ │ │ │ └── time-picker-pop-up │ │ │ │ │ │ ├── time-picker-popup.component.html │ │ │ │ │ │ ├── time-picker-popup.component.scss │ │ │ │ │ │ ├── time-picker-popup.component.spec.ts │ │ │ │ │ │ └── time-picker-popup.component.ts │ │ │ │ ├── models │ │ │ │ │ ├── create-place.model.ts │ │ │ │ │ ├── favorite-place │ │ │ │ │ │ ├── favorite-place.spec.ts_ │ │ │ │ │ │ └── favorite-place.ts │ │ │ │ │ ├── location.model.ts │ │ │ │ │ ├── map-bounds-dto.ts │ │ │ │ │ ├── more-options-filter.model.ts │ │ │ │ │ ├── place.ts │ │ │ │ │ ├── places-consts.ts │ │ │ │ │ ├── places-filter.ts │ │ │ │ │ └── week-pick-model.ts │ │ │ │ ├── pipes │ │ │ │ │ ├── underscore-to-space.pipe.spec.ts │ │ │ │ │ └── underscore-to-space.pipe.ts │ │ │ │ ├── places-routing.module.ts │ │ │ │ ├── places.component.html │ │ │ │ ├── places.component.scss │ │ │ │ ├── places.component.spec.ts │ │ │ │ ├── places.component.ts │ │ │ │ ├── places.module.ts │ │ │ │ └── services │ │ │ │ │ └── favorite-place │ │ │ │ │ ├── favorite-place.service.spec.ts │ │ │ │ │ └── favorite-place.service.ts │ │ │ └── user │ │ │ │ ├── components │ │ │ │ ├── habit │ │ │ │ │ ├── add-edit-custom-habit │ │ │ │ │ │ ├── add-edit-custom-habit.component.html │ │ │ │ │ │ ├── add-edit-custom-habit.component.scss │ │ │ │ │ │ ├── add-edit-custom-habit.component.spec.ts │ │ │ │ │ │ └── add-edit-custom-habit.component.ts │ │ │ │ │ ├── add-new-habit │ │ │ │ │ │ ├── add-new-habit.component.html │ │ │ │ │ │ ├── add-new-habit.component.scss │ │ │ │ │ │ ├── add-new-habit.component.spec.ts │ │ │ │ │ │ ├── add-new-habit.component.ts │ │ │ │ │ │ ├── habit-const │ │ │ │ │ │ │ └── habit.const.ts │ │ │ │ │ │ ├── habit-duration │ │ │ │ │ │ │ ├── gradient.directive.spec.ts_ │ │ │ │ │ │ │ ├── gradient.directive.ts │ │ │ │ │ │ │ ├── habit-duration.component.html │ │ │ │ │ │ │ ├── habit-duration.component.scss │ │ │ │ │ │ │ ├── habit-duration.component.spec.ts │ │ │ │ │ │ │ └── habit-duration.component.ts │ │ │ │ │ │ ├── habit-edit-to-do-list │ │ │ │ │ │ │ ├── habit-edit-to-do-list.component.html │ │ │ │ │ │ │ ├── habit-edit-to-do-list.component.scss │ │ │ │ │ │ │ ├── habit-edit-to-do-list.component.spec.ts │ │ │ │ │ │ │ ├── habit-edit-to-do-list.component.ts │ │ │ │ │ │ │ ├── to-do-list.service.spec.ts │ │ │ │ │ │ │ └── to-do-list.service.ts │ │ │ │ │ │ ├── habit-invite-friends │ │ │ │ │ │ │ ├── habit-invite-friends-pop-up │ │ │ │ │ │ │ │ ├── habit-invite-friends-pop-up.component.html │ │ │ │ │ │ │ │ ├── habit-invite-friends-pop-up.component.scss │ │ │ │ │ │ │ │ ├── habit-invite-friends-pop-up.component.spec.ts │ │ │ │ │ │ │ │ └── habit-invite-friends-pop-up.component.ts │ │ │ │ │ │ │ ├── habit-invite-friends.component.html │ │ │ │ │ │ │ ├── habit-invite-friends.component.scss │ │ │ │ │ │ │ ├── habit-invite-friends.component.spec.ts │ │ │ │ │ │ │ └── habit-invite-friends.component.ts │ │ │ │ │ │ ├── habit-progress │ │ │ │ │ │ │ ├── habit-progress.component.html │ │ │ │ │ │ │ ├── habit-progress.component.scss │ │ │ │ │ │ │ ├── habit-progress.component.spec.ts │ │ │ │ │ │ │ └── habit-progress.component.ts │ │ │ │ │ │ └── habits-widget │ │ │ │ │ │ │ ├── habits-widget.component.html │ │ │ │ │ │ │ ├── habits-widget.component.scss │ │ │ │ │ │ │ ├── habits-widget.component.spec.ts │ │ │ │ │ │ │ └── habits-widget.component.ts │ │ │ │ │ ├── all-habits │ │ │ │ │ │ ├── all-habits.component.html │ │ │ │ │ │ ├── all-habits.component.scss │ │ │ │ │ │ ├── all-habits.component.spec.ts │ │ │ │ │ │ ├── all-habits.component.ts │ │ │ │ │ │ ├── all-habits.model.ts │ │ │ │ │ │ └── components │ │ │ │ │ │ │ └── habits-list-view │ │ │ │ │ │ │ ├── habits-list-view.component.html │ │ │ │ │ │ │ ├── habits-list-view.component.scss │ │ │ │ │ │ │ ├── habits-list-view.component.spec.ts │ │ │ │ │ │ │ └── habits-list-view.component.ts │ │ │ │ │ ├── habit-trackers │ │ │ │ │ │ ├── habit-tracker │ │ │ │ │ │ │ ├── advice │ │ │ │ │ │ │ │ ├── advice.component.html │ │ │ │ │ │ │ │ ├── advice.component.scss │ │ │ │ │ │ │ │ ├── advice.component.spec.ts_ │ │ │ │ │ │ │ │ └── advice.component.ts │ │ │ │ │ │ │ ├── habit-chart │ │ │ │ │ │ │ │ ├── habit-chart.component.html │ │ │ │ │ │ │ │ ├── habit-chart.component.scss │ │ │ │ │ │ │ │ ├── habit-chart.component.spec.ts_ │ │ │ │ │ │ │ │ └── habit-chart.component.ts │ │ │ │ │ │ │ ├── habit-estimation │ │ │ │ │ │ │ │ ├── day-estimation │ │ │ │ │ │ │ │ │ ├── day-estimation.component.html │ │ │ │ │ │ │ │ │ ├── day-estimation.component.scss │ │ │ │ │ │ │ │ │ ├── day-estimation.component.spec.ts_ │ │ │ │ │ │ │ │ │ └── day-estimation.component.ts │ │ │ │ │ │ │ │ ├── habit-estimation.component.html │ │ │ │ │ │ │ │ ├── habit-estimation.component.scss │ │ │ │ │ │ │ │ ├── habit-estimation.component.spec.ts_ │ │ │ │ │ │ │ │ ├── habit-estimation.component.ts │ │ │ │ │ │ │ │ ├── habit-item-list │ │ │ │ │ │ │ │ │ ├── habit-item-list.component.html │ │ │ │ │ │ │ │ │ ├── habit-item-list.component.scss │ │ │ │ │ │ │ │ │ ├── habit-item-list.component.spec.ts_ │ │ │ │ │ │ │ │ │ └── habit-item-list.component.ts │ │ │ │ │ │ │ │ └── habit-item │ │ │ │ │ │ │ │ │ ├── HabitItem.ts │ │ │ │ │ │ │ │ │ ├── habit-item.component.html │ │ │ │ │ │ │ │ │ ├── habit-item.component.scss │ │ │ │ │ │ │ │ │ ├── habit-item.component.spec.ts_ │ │ │ │ │ │ │ │ │ └── habit-item.component.ts │ │ │ │ │ │ │ ├── habit-fact │ │ │ │ │ │ │ │ ├── habit-fact.component.html │ │ │ │ │ │ │ │ ├── habit-fact.component.scss │ │ │ │ │ │ │ │ ├── habit-fact.component.spec.ts_ │ │ │ │ │ │ │ │ └── habit-fact.component.ts │ │ │ │ │ │ │ ├── habit-title │ │ │ │ │ │ │ │ ├── habit-title.component.html │ │ │ │ │ │ │ │ ├── habit-title.component.scss │ │ │ │ │ │ │ │ ├── habit-title.component.spec.ts │ │ │ │ │ │ │ │ └── habit-title.component.ts │ │ │ │ │ │ │ ├── habit-tracker-date │ │ │ │ │ │ │ │ ├── habit-tracker-date.component.html │ │ │ │ │ │ │ │ ├── habit-tracker-date.component.scss │ │ │ │ │ │ │ │ ├── habit-tracker-date.component.spec.ts_ │ │ │ │ │ │ │ │ └── habit-tracker-date.component.ts │ │ │ │ │ │ │ ├── habit-tracker.component.html │ │ │ │ │ │ │ ├── habit-tracker.component.scss │ │ │ │ │ │ │ ├── habit-tracker.component.spec.ts_ │ │ │ │ │ │ │ └── habit-tracker.component.ts │ │ │ │ │ │ ├── habit-trackers.component.html │ │ │ │ │ │ ├── habit-trackers.component.scss │ │ │ │ │ │ ├── habit-trackers.component.spec.ts_ │ │ │ │ │ │ └── habit-trackers.component.ts │ │ │ │ │ ├── mocks │ │ │ │ │ │ ├── habit-assigned-mock.ts │ │ │ │ │ │ ├── habit-mock.ts │ │ │ │ │ │ ├── tags-list-mock.ts │ │ │ │ │ │ └── to-do-list-mock.ts │ │ │ │ │ ├── models │ │ │ │ │ │ ├── HabitMark.enum.ts │ │ │ │ │ │ ├── habit-warnings.ts │ │ │ │ │ │ ├── habits-filters-list.ts │ │ │ │ │ │ ├── interfaces │ │ │ │ │ │ │ ├── custom-habit.interface.ts │ │ │ │ │ │ │ ├── habit-assign.interface.ts │ │ │ │ │ │ │ └── habit.interface.ts │ │ │ │ │ │ └── todo-status.enum.ts │ │ │ │ │ └── user-log-component │ │ │ │ │ │ ├── user-log.component.html │ │ │ │ │ │ ├── user-log.component.scss │ │ │ │ │ │ ├── user-log.component.spec.ts_ │ │ │ │ │ │ └── user-log.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── profile │ │ │ │ │ ├── calendar │ │ │ │ │ │ ├── calendar-image.ts │ │ │ │ │ │ ├── calendar-interface.ts │ │ │ │ │ │ ├── calendar-week │ │ │ │ │ │ │ ├── calendar-image.ts │ │ │ │ │ │ │ ├── calendar-week-interface.ts │ │ │ │ │ │ │ ├── calendar-week.component.html │ │ │ │ │ │ │ ├── calendar-week.component.scss │ │ │ │ │ │ │ ├── calendar-week.component.spec.ts │ │ │ │ │ │ │ └── calendar-week.component.ts │ │ │ │ │ │ ├── calendar.component.html │ │ │ │ │ │ ├── calendar.component.scss │ │ │ │ │ │ ├── calendar.component.spec.ts │ │ │ │ │ │ ├── calendar.component.ts │ │ │ │ │ │ ├── habit-calendar.component.spec.ts │ │ │ │ │ │ ├── habit-popup-interface.ts │ │ │ │ │ │ └── habits-popup │ │ │ │ │ │ │ ├── habits-popup.component.html │ │ │ │ │ │ │ ├── habits-popup.component.scss │ │ │ │ │ │ │ ├── habits-popup.component.spec.ts │ │ │ │ │ │ │ └── habits-popup.component.ts │ │ │ │ │ ├── eco-places │ │ │ │ │ │ ├── eco-places.component.html │ │ │ │ │ │ ├── eco-places.component.scss │ │ │ │ │ │ ├── eco-places.component.spec.ts │ │ │ │ │ │ └── eco-places.component.ts │ │ │ │ │ ├── edit-profile │ │ │ │ │ │ ├── edit-profile-form-builder.ts │ │ │ │ │ │ ├── edit-profile.component.html │ │ │ │ │ │ ├── edit-profile.component.scss │ │ │ │ │ │ ├── edit-profile.component.spec.ts │ │ │ │ │ │ ├── edit-profile.component.ts │ │ │ │ │ │ ├── personal-photo │ │ │ │ │ │ │ ├── personal-photo.component.html │ │ │ │ │ │ │ ├── personal-photo.component.scss │ │ │ │ │ │ │ ├── personal-photo.component.spec.ts │ │ │ │ │ │ │ └── personal-photo.component.ts │ │ │ │ │ │ └── social-networks │ │ │ │ │ │ │ ├── social-networks.component.html │ │ │ │ │ │ │ ├── social-networks.component.scss │ │ │ │ │ │ │ ├── social-networks.component.spec.ts │ │ │ │ │ │ │ └── social-networks.component.ts │ │ │ │ │ ├── profile-cards │ │ │ │ │ │ ├── profile-cards.component.html │ │ │ │ │ │ ├── profile-cards.component.scss │ │ │ │ │ │ ├── profile-cards.component.spec.ts │ │ │ │ │ │ └── profile-cards.component.ts │ │ │ │ │ ├── profile-dashboard │ │ │ │ │ │ ├── one-habit │ │ │ │ │ │ │ ├── one-habit.component.html │ │ │ │ │ │ │ ├── one-habit.component.scss │ │ │ │ │ │ │ ├── one-habit.component.spec.ts │ │ │ │ │ │ │ └── one-habit.component.ts │ │ │ │ │ │ ├── one-news │ │ │ │ │ │ │ ├── one-news.component.html │ │ │ │ │ │ │ ├── one-news.component.scss │ │ │ │ │ │ │ └── one-news.component.ts │ │ │ │ │ │ ├── profile-dashboard.component.html │ │ │ │ │ │ ├── profile-dashboard.component.scss │ │ │ │ │ │ ├── profile-dashboard.component.spec.ts │ │ │ │ │ │ ├── profile-dashboard.component.ts │ │ │ │ │ │ └── set-count │ │ │ │ │ │ │ ├── set-count.component.html │ │ │ │ │ │ │ ├── set-count.component.scss │ │ │ │ │ │ │ ├── set-count.component.spec.ts │ │ │ │ │ │ │ └── set-count.component.ts │ │ │ │ │ ├── profile-widget │ │ │ │ │ │ ├── profile-header │ │ │ │ │ │ │ ├── profile-header.component.html │ │ │ │ │ │ │ ├── profile-header.component.scss │ │ │ │ │ │ │ ├── profile-header.component.spec.ts │ │ │ │ │ │ │ └── profile-header.component.ts │ │ │ │ │ │ ├── profile-progress │ │ │ │ │ │ │ ├── profile-progress.component.html │ │ │ │ │ │ │ ├── profile-progress.component.scss │ │ │ │ │ │ │ ├── profile-progress.component.spec.ts │ │ │ │ │ │ │ └── profile-progress.component.ts │ │ │ │ │ │ ├── profile-widget.component.html │ │ │ │ │ │ ├── profile-widget.component.scss │ │ │ │ │ │ └── profile-widget.component.ts │ │ │ │ │ ├── profile.component.html │ │ │ │ │ ├── profile.component.scss │ │ │ │ │ ├── profile.component.spec.ts │ │ │ │ │ ├── profile.component.ts │ │ │ │ │ ├── to-do-list │ │ │ │ │ │ ├── to-do-list.component.html │ │ │ │ │ │ ├── to-do-list.component.scss │ │ │ │ │ │ ├── to-do-list.component.spec.ts │ │ │ │ │ │ └── to-do-list.component.ts │ │ │ │ │ ├── user-notifications │ │ │ │ │ │ ├── format-notification-date │ │ │ │ │ │ │ └── format-notification-date.ts │ │ │ │ │ │ ├── notification-directive │ │ │ │ │ │ │ ├── notific-content-replace.directive.spec.ts │ │ │ │ │ │ │ └── notific-content-replace.directive.ts │ │ │ │ │ │ ├── user-notifications-pop-up │ │ │ │ │ │ │ ├── user-notifications-pop-up.component.html │ │ │ │ │ │ │ ├── user-notifications-pop-up.component.scss │ │ │ │ │ │ │ ├── user-notifications-pop-up.component.spec.ts │ │ │ │ │ │ │ └── user-notifications-pop-up.component.ts │ │ │ │ │ │ ├── user-notifications.component.html │ │ │ │ │ │ ├── user-notifications.component.scss │ │ │ │ │ │ ├── user-notifications.component.spec.ts │ │ │ │ │ │ └── user-notifications.component.ts │ │ │ │ │ ├── users-achievements │ │ │ │ │ │ ├── achievement-item │ │ │ │ │ │ │ ├── achievement-item.component.html │ │ │ │ │ │ │ ├── achievement-item.component.scss │ │ │ │ │ │ │ ├── achievement-item.component.spec.ts │ │ │ │ │ │ │ └── achievement-item.component.ts │ │ │ │ │ │ ├── achievements-modal │ │ │ │ │ │ │ ├── achievements-modal.component.html │ │ │ │ │ │ │ ├── achievements-modal.component.scss │ │ │ │ │ │ │ ├── achievements-modal.component.spec.ts │ │ │ │ │ │ │ └── achievements-modal.component.ts │ │ │ │ │ │ ├── users-achievements.component.html │ │ │ │ │ │ ├── users-achievements.component.scss │ │ │ │ │ │ ├── users-achievements.component.spec.ts │ │ │ │ │ │ └── users-achievements.component.ts │ │ │ │ │ └── users-friends │ │ │ │ │ │ ├── friend-dashboard │ │ │ │ │ │ ├── all-friends │ │ │ │ │ │ │ ├── all-friends.component.html │ │ │ │ │ │ │ ├── all-friends.component.scss │ │ │ │ │ │ │ ├── all-friends.component.spec.ts │ │ │ │ │ │ │ └── all-friends.component.ts │ │ │ │ │ │ ├── friend-dashboard.component.html │ │ │ │ │ │ ├── friend-dashboard.component.scss │ │ │ │ │ │ ├── friend-dashboard.component.spec.ts │ │ │ │ │ │ ├── friend-dashboard.component.ts │ │ │ │ │ │ ├── friend-item │ │ │ │ │ │ │ ├── friend-item.component.html │ │ │ │ │ │ │ ├── friend-item.component.scss │ │ │ │ │ │ │ ├── friend-item.component.spec.ts │ │ │ │ │ │ │ └── friend-item.component.ts │ │ │ │ │ │ ├── friend-profile-page │ │ │ │ │ │ │ ├── friend-profile-dashboard │ │ │ │ │ │ │ │ ├── friend-profile-dashboard.component.html │ │ │ │ │ │ │ │ ├── friend-profile-dashboard.component.scss │ │ │ │ │ │ │ │ ├── friend-profile-dashboard.component.spec.ts │ │ │ │ │ │ │ │ └── friend-profile-dashboard.component.ts │ │ │ │ │ │ │ ├── friend-profile-page.component.html │ │ │ │ │ │ │ ├── friend-profile-page.component.scss │ │ │ │ │ │ │ ├── friend-profile-page.component.spec.ts │ │ │ │ │ │ │ └── friend-profile-page.component.ts │ │ │ │ │ │ ├── friend-requests │ │ │ │ │ │ │ ├── friend-requests.component.html │ │ │ │ │ │ │ ├── friend-requests.component.scss │ │ │ │ │ │ │ ├── friend-requests.component.spec.ts │ │ │ │ │ │ │ └── friend-requests.component.ts │ │ │ │ │ │ ├── friendship-buttons │ │ │ │ │ │ │ ├── friendship-buttons.component.html │ │ │ │ │ │ │ ├── friendship-buttons.component.scss │ │ │ │ │ │ │ ├── friendship-buttons.component.spec.ts │ │ │ │ │ │ │ └── friendship-buttons.component.ts │ │ │ │ │ │ └── recommended-friends │ │ │ │ │ │ │ ├── recommended-friends.component.html │ │ │ │ │ │ │ ├── recommended-friends.component.scss │ │ │ │ │ │ │ ├── recommended-friends.component.spec.ts │ │ │ │ │ │ │ └── recommended-friends.component.ts │ │ │ │ │ │ ├── users-friends.component.html │ │ │ │ │ │ ├── users-friends.component.scss │ │ │ │ │ │ ├── users-friends.component.spec.ts │ │ │ │ │ │ └── users-friends.component.ts │ │ │ │ ├── shared │ │ │ │ │ ├── components │ │ │ │ │ │ ├── friends-list-pop-up │ │ │ │ │ │ │ ├── friends-list-pop-up.component.html │ │ │ │ │ │ │ ├── friends-list-pop-up.component.scss │ │ │ │ │ │ │ ├── friends-list-pop-up.component.spec.ts │ │ │ │ │ │ │ └── friends-list-pop-up.component.ts │ │ │ │ │ │ ├── habits-gallery-view │ │ │ │ │ │ │ ├── habits-gallery-view.component.html │ │ │ │ │ │ │ ├── habits-gallery-view.component.scss │ │ │ │ │ │ │ ├── habits-gallery-view.component.spec.ts │ │ │ │ │ │ │ └── habits-gallery-view.component.ts │ │ │ │ │ │ └── user-profile-image │ │ │ │ │ │ │ ├── user-profile-image.component.html │ │ │ │ │ │ │ ├── user-profile-image.component.scss │ │ │ │ │ │ │ ├── user-profile-image.component.spec.ts │ │ │ │ │ │ │ └── user-profile-image.component.ts │ │ │ │ │ ├── directives │ │ │ │ │ │ ├── custom-tooltip.directive.spec.ts │ │ │ │ │ │ └── custom-tooltip.directive.ts │ │ │ │ │ └── user-shared.module.ts │ │ │ │ └── user-setting │ │ │ │ │ ├── user-setting.component.html │ │ │ │ │ ├── user-setting.component.scss │ │ │ │ │ ├── user-setting.component.spec.ts_ │ │ │ │ │ └── user-setting.component.ts │ │ │ │ ├── mocks │ │ │ │ ├── edit-profile-mock.ts │ │ │ │ ├── friends-mock.ts │ │ │ │ └── user-service-mock.ts │ │ │ │ ├── models │ │ │ │ ├── AdviceDto.ts │ │ │ │ ├── achievements │ │ │ │ │ ├── AchievementDto.ts │ │ │ │ │ └── achievementCategoryDto.model.ts │ │ │ │ ├── ecoPlaces.model.ts │ │ │ │ ├── edit-profile-const.ts │ │ │ │ ├── edit-profile.model.ts │ │ │ │ ├── error-type.model.ts │ │ │ │ ├── factOfTheDay.ts │ │ │ │ ├── filter-select.interface.ts │ │ │ │ ├── friend.model.ts │ │ │ │ ├── goal │ │ │ │ │ ├── HabitAssignCustomPropertiesDto.ts │ │ │ │ │ ├── HabitDictionaryDto.ts │ │ │ │ │ └── HabitItemsAmountStatisticDto.ts │ │ │ │ ├── habit-fact │ │ │ │ │ └── HabitFactDto.ts │ │ │ │ ├── habit │ │ │ │ │ ├── AvailableHabitDto.ts │ │ │ │ │ ├── DayEstimation.ts │ │ │ │ │ ├── HabitDictionaryDto.ts │ │ │ │ │ ├── HabitDto.ts │ │ │ │ │ ├── HabitStatisticLogDto.ts │ │ │ │ │ ├── HabitStatisticMapDto.ts │ │ │ │ │ ├── HabitStatisticsDto.ts │ │ │ │ │ ├── HabitStatus.enum.ts │ │ │ │ │ └── NewHabitDto.ts │ │ │ │ ├── news.model.ts │ │ │ │ ├── notification.model.ts │ │ │ │ ├── pageable-dto.model.ts │ │ │ │ ├── profile-statistiscs.ts │ │ │ │ ├── roles.model.ts │ │ │ │ ├── to-do-list.interface.ts │ │ │ │ ├── user │ │ │ │ │ ├── user-for-list-dto.model.ts │ │ │ │ │ ├── user-pageable-dto.model.ts │ │ │ │ │ ├── user-role.model.ts │ │ │ │ │ ├── user-status.model.ts │ │ │ │ │ ├── user-update.model.ts │ │ │ │ │ ├── user.model.ts │ │ │ │ │ └── userFilterDto.model.ts │ │ │ │ └── warning-dialog.inteface.ts │ │ │ │ ├── pipe │ │ │ │ ├── correct-unit-pipe │ │ │ │ │ ├── correct-unit.pipe.spec.ts │ │ │ │ │ └── correct-unit.pipe.ts │ │ │ │ └── first-string-word │ │ │ │ │ ├── first-string-word.pipe.spec.ts │ │ │ │ │ └── first-string-word.pipe.ts │ │ │ │ ├── services │ │ │ │ ├── achievement │ │ │ │ │ ├── achievement.service.spec.ts │ │ │ │ │ └── achievement.service.ts │ │ │ │ ├── advice │ │ │ │ │ ├── advice.service.spec.ts_ │ │ │ │ │ └── advice.service.ts │ │ │ │ ├── edit-profile │ │ │ │ │ ├── edit-profile.service.spec.ts_ │ │ │ │ │ └── edit-profile.service.ts │ │ │ │ ├── habit-comments │ │ │ │ │ ├── habit-comments.service.spec.ts │ │ │ │ │ └── habit-comments.service.ts │ │ │ │ ├── habit-fact │ │ │ │ │ ├── habit-fact.service.spec.ts │ │ │ │ │ └── habit-fact.service.ts │ │ │ │ ├── profile-service │ │ │ │ │ ├── profile.service.spec.ts │ │ │ │ │ └── profile.service.ts │ │ │ │ ├── user-friends │ │ │ │ │ ├── user-friends.service.spec.ts │ │ │ │ │ └── user-friends.service.ts │ │ │ │ ├── user-notification │ │ │ │ │ ├── user-notification.service.spec.ts │ │ │ │ │ └── user-notification.service.ts │ │ │ │ └── user-online-status │ │ │ │ │ ├── user-online-status.service.spec.ts │ │ │ │ │ └── user-online-status.service.ts │ │ │ │ ├── user-routing.module.ts │ │ │ │ ├── user.component.html │ │ │ │ ├── user.component.ts │ │ │ │ └── user.module.ts │ │ └── shared │ │ │ ├── components │ │ │ ├── calendar-base │ │ │ │ ├── CalendarItemStyleClasses.ts │ │ │ │ ├── breakpoints.constants.ts │ │ │ │ ├── calendar-base.component.spec.ts │ │ │ │ ├── calendar-base.component.ts │ │ │ │ └── calendar-image.ts │ │ │ ├── drag-and-drop │ │ │ │ ├── drag-and-drop.component.html │ │ │ │ ├── drag-and-drop.component.scss │ │ │ │ ├── drag-and-drop.component.spec.ts │ │ │ │ └── drag-and-drop.component.ts │ │ │ ├── edit-photo-pop-up │ │ │ │ ├── edit-photo-pop-up.component.html │ │ │ │ ├── edit-photo-pop-up.component.scss │ │ │ │ ├── edit-photo-pop-up.component.spec.ts │ │ │ │ └── edit-photo-pop-up.component.ts │ │ │ ├── events-list-item │ │ │ │ ├── events-list-item-modal │ │ │ │ │ ├── events-list-item-modal.component.html │ │ │ │ │ ├── events-list-item-modal.component.scss │ │ │ │ │ ├── events-list-item-modal.component.spec.ts │ │ │ │ │ └── events-list-item-modal.component.ts │ │ │ │ ├── events-list-item-user.component.scss │ │ │ │ ├── events-list-item.component.html │ │ │ │ ├── events-list-item.component.scss │ │ │ │ ├── events-list-item.component.spec.ts │ │ │ │ ├── events-list-item.component.ts │ │ │ │ └── rating-display │ │ │ │ │ ├── rating-display.component.html │ │ │ │ │ ├── rating-display.component.scss │ │ │ │ │ ├── rating-display.component.spec.ts │ │ │ │ │ └── rating-display.component.ts │ │ │ ├── filter-select │ │ │ │ ├── filter-select.component.html │ │ │ │ ├── filter-select.component.scss │ │ │ │ ├── filter-select.component.spec.ts │ │ │ │ └── filter-select.component.ts │ │ │ ├── index.ts │ │ │ ├── news-list-gallery-view │ │ │ │ ├── news-list-gallery-view.component.html │ │ │ │ ├── news-list-gallery-view.component.scss │ │ │ │ ├── news-list-gallery-view.component.spec.ts │ │ │ │ └── news-list-gallery-view.component.ts │ │ │ ├── no-data │ │ │ │ ├── no-data.component.html │ │ │ │ ├── no-data.component.scss │ │ │ │ ├── no-data.component.spec.ts │ │ │ │ └── no-data.component.ts │ │ │ ├── saved-tabs │ │ │ │ ├── saved-section-const.ts │ │ │ │ ├── saved-section.component.html │ │ │ │ ├── saved-section.component.scss │ │ │ │ ├── saved-section.component.spec.ts │ │ │ │ └── saved-section.component.ts │ │ │ ├── select-images │ │ │ │ ├── select-images.component.html │ │ │ │ ├── select-images.component.scss │ │ │ │ ├── select-images.component.spec.ts │ │ │ │ └── select-images.component.ts │ │ │ ├── tag-filter │ │ │ │ ├── tag-filter.component.html │ │ │ │ ├── tag-filter.component.scss │ │ │ │ ├── tag-filter.component.spec.ts │ │ │ │ ├── tag-filter.component.ts │ │ │ │ └── tag-filter.model.ts │ │ │ ├── tags-select │ │ │ │ ├── tags-select.component.html │ │ │ │ ├── tags-select.component.scss │ │ │ │ ├── tags-select.component.spec.ts │ │ │ │ └── tags-select.component.ts │ │ │ └── warning-pop-up │ │ │ │ ├── warning-pop-up-ubs.component.scss │ │ │ │ ├── warning-pop-up.component.html │ │ │ │ ├── warning-pop-up.component.scss │ │ │ │ ├── warning-pop-up.component.spec.ts │ │ │ │ └── warning-pop-up.component.ts │ │ │ ├── pipes │ │ │ └── date-localisation-pipe │ │ │ │ ├── date-localisation.pipe.spec.ts │ │ │ │ └── date-localisation.pipe.ts │ │ │ ├── service │ │ │ ├── comment │ │ │ │ ├── comment-model │ │ │ │ │ ├── comment.spec.ts │ │ │ │ │ ├── comment.ts │ │ │ │ │ └── estimate │ │ │ │ │ │ ├── estimate.ts │ │ │ │ │ │ └── rate.spec.ts │ │ │ │ ├── comment.service.spec.ts │ │ │ │ └── comment.service.ts │ │ │ ├── habit-assign │ │ │ │ ├── habit-assign.service.spec.ts │ │ │ │ └── habit-assign.service.ts │ │ │ ├── habit │ │ │ │ ├── habit.service.spec.ts │ │ │ │ └── habit.service.ts │ │ │ ├── image │ │ │ │ ├── image.service.spec.ts │ │ │ │ └── image.service.ts │ │ │ ├── news │ │ │ │ ├── news.service.spec.ts │ │ │ │ └── news.service.ts │ │ │ └── word-declension │ │ │ │ ├── word-declension.service.spec.ts │ │ │ │ └── word-declension.service.ts │ │ │ └── shared-greencity.module.ts │ ├── main │ │ ├── component │ │ │ ├── auth │ │ │ │ ├── auth.module.ts │ │ │ │ └── components │ │ │ │ │ ├── auth-modal │ │ │ │ │ ├── auth-modal.component.html │ │ │ │ │ ├── auth-modal.component.scss │ │ │ │ │ ├── auth-modal.component.spec.ts │ │ │ │ │ └── auth-modal.component.ts │ │ │ │ │ ├── confirm-restore-password │ │ │ │ │ ├── confirm-restore-password.component.html │ │ │ │ │ ├── confirm-restore-password.component.scss │ │ │ │ │ ├── confirm-restore-password.component.spec.ts │ │ │ │ │ └── confirm-restore-password.component.ts │ │ │ │ │ ├── error │ │ │ │ │ ├── error.component.html │ │ │ │ │ ├── error.component.scss │ │ │ │ │ ├── error.component.spec.ts │ │ │ │ │ └── error.component.ts │ │ │ │ │ ├── google-btn │ │ │ │ │ ├── google-btn.component.html │ │ │ │ │ ├── google-btn.component.scss │ │ │ │ │ ├── google-btn.component.spec.ts │ │ │ │ │ └── google-btn.component.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── restore-password │ │ │ │ │ ├── restore-password.component.html │ │ │ │ │ ├── restore-password.component.scss │ │ │ │ │ ├── restore-password.component.spec.ts │ │ │ │ │ └── restore-password.component.ts │ │ │ │ │ ├── restore │ │ │ │ │ ├── restore.component.html │ │ │ │ │ ├── restore.component.spec.ts │ │ │ │ │ └── restore.component.ts │ │ │ │ │ ├── sign-in │ │ │ │ │ ├── GoogleOAuthProvider │ │ │ │ │ │ └── GoogleOAuthProvider.ts │ │ │ │ │ ├── sign-in.component.html │ │ │ │ │ ├── sign-in.component.scss │ │ │ │ │ ├── sign-in.component.spec.ts │ │ │ │ │ └── sign-in.component.ts │ │ │ │ │ ├── sign-up │ │ │ │ │ ├── sign-up.component.html │ │ │ │ │ ├── sign-up.component.scss │ │ │ │ │ ├── sign-up.component.spec.ts │ │ │ │ │ ├── sign-up.component.ts │ │ │ │ │ └── sign-up.validator.ts │ │ │ │ │ ├── submit-email │ │ │ │ │ ├── submit-email.component.html │ │ │ │ │ ├── submit-email.component.scss │ │ │ │ │ ├── submit-email.component.spec.ts │ │ │ │ │ └── submit-email.component.ts │ │ │ │ │ └── unblock-account │ │ │ │ │ ├── unblock-account.component.html │ │ │ │ │ ├── unblock-account.component.scss │ │ │ │ │ ├── unblock-account.component.spec.ts │ │ │ │ │ └── unblock-account.component.ts │ │ │ └── core │ │ │ │ └── core.module.ts │ │ ├── http-response-status.ts │ │ ├── links.ts │ │ ├── main.component.html │ │ ├── main.component.scss │ │ ├── main.component.spec.ts │ │ ├── main.component.ts │ │ ├── main.module.ts │ │ └── title-meta-tags │ │ │ ├── meta │ │ │ ├── meta-model.ts │ │ │ └── metas-model.ts │ │ │ ├── title-and-meta-tags.service.spec.ts_ │ │ │ └── title-and-meta-tags.service.ts │ ├── material.module.ts │ ├── shared │ │ ├── components │ │ │ ├── dialog-pop-up │ │ │ │ ├── dialog-pop-up.component.html │ │ │ │ ├── dialog-pop-up.component.scss │ │ │ │ ├── dialog-pop-up.component.spec.ts │ │ │ │ └── dialog-pop-up.component.ts │ │ │ ├── form-base │ │ │ │ ├── form-base.component.html │ │ │ │ ├── form-base.component.spec.ts │ │ │ │ └── form-base.component.ts │ │ │ ├── header │ │ │ │ ├── header.component.html │ │ │ │ ├── header.component.scss │ │ │ │ ├── header.component.spec.ts │ │ │ │ └── header.component.ts │ │ │ ├── input-error │ │ │ │ ├── input-error.component.html │ │ │ │ ├── input-error.component.scss │ │ │ │ ├── input-error.component.spec.ts │ │ │ │ └── input-error.component.ts │ │ │ ├── input-google-autocomplete │ │ │ │ ├── input-google-autocomplete.component.html │ │ │ │ ├── input-google-autocomplete.component.scss │ │ │ │ ├── input-google-autocomplete.component.spec.ts │ │ │ │ └── input-google-autocomplete.component.ts │ │ │ └── spinner │ │ │ │ ├── spinner.component.html │ │ │ │ ├── spinner.component.scss │ │ │ │ ├── spinner.component.spec.ts │ │ │ │ └── spinner.component.ts │ │ ├── directives │ │ │ ├── close-dropdown.directive.spec.ts_ │ │ │ ├── close-dropdown.directive.ts │ │ │ ├── drag-and-drop │ │ │ │ └── dragDrop.directive.ts │ │ │ ├── lang-value │ │ │ │ └── lang-value.directive.ts │ │ │ ├── linkify.directive.spec.ts │ │ │ ├── linkify.directive.ts │ │ │ ├── remove-leading-zero │ │ │ │ ├── remove-leading-zero.directive.spec.ts │ │ │ │ └── remove-leading-zero.directive.ts │ │ │ └── space-prevent.directive.ts │ │ ├── guards │ │ │ ├── non-admin.guard.spec.ts │ │ │ ├── non-admin.guard.ts │ │ │ ├── pending-changes-guard │ │ │ │ ├── pending-changes.guard.spec.ts_ │ │ │ │ └── pending-changes.guard.ts │ │ │ └── route-guards │ │ │ │ ├── auth-page-guard.service.ts │ │ │ │ ├── confirm-restore-password.guard.spec.ts │ │ │ │ └── confirm-restore-password.guard.ts │ │ ├── helpers │ │ │ └── quillEditorFunc.ts │ │ ├── i18n │ │ │ ├── Language.ts │ │ │ ├── language-id.ts │ │ │ ├── language.service.spec.ts │ │ │ └── language.service.ts │ │ ├── image-paths │ │ │ ├── auth-images.ts │ │ │ ├── header-icons.ts │ │ │ └── sign-in-icons.ts │ │ ├── interceptors │ │ │ ├── interceptor.service.spec.ts │ │ │ └── interceptor.service.ts │ │ ├── models │ │ │ ├── DiscountDto.ts │ │ │ ├── UserForListDto.model.ts │ │ │ ├── auth │ │ │ │ ├── project-name.enum.ts │ │ │ │ ├── project-name.type.ts │ │ │ │ ├── sign-in-response.interface.ts │ │ │ │ ├── sign-in.interface.ts │ │ │ │ ├── sign-up.interface.ts │ │ │ │ └── user-role.type.ts │ │ │ ├── breakTimes.model.ts │ │ │ ├── category.model.ts │ │ │ ├── file-handle.model.ts │ │ │ ├── filtering │ │ │ │ ├── filter-discount-dto.model.ts │ │ │ │ ├── filter-distance-dto.model.ts │ │ │ │ └── filter-place-dto.model.ts │ │ │ ├── languageModel.ts │ │ │ ├── locationDto.model.ts │ │ │ ├── map │ │ │ │ ├── map-bounds.spec.ts │ │ │ │ └── map-bounds.ts │ │ │ ├── mouse-events.ts │ │ │ ├── openingHours.model.ts │ │ │ ├── photo │ │ │ │ ├── photo.spec.ts │ │ │ │ └── photo.ts │ │ │ ├── place │ │ │ │ ├── bulk-update-place-status.model.ts │ │ │ │ ├── commentDto.ts │ │ │ │ ├── location.ts │ │ │ │ ├── place-info.spec.ts │ │ │ │ ├── place-info.ts │ │ │ │ ├── place.spec.ts │ │ │ │ └── update-place-status.model.ts │ │ │ ├── placeAddDto.model.ts │ │ │ ├── placeStatus.model.ts │ │ │ ├── restroreDto.ts │ │ │ ├── search-dto.ts │ │ │ ├── singIn-singUp │ │ │ │ ├── user-own-sign-in.ts │ │ │ │ ├── user-own-sign-up.ts │ │ │ │ └── user-success-sign-in.ts │ │ │ ├── specification │ │ │ │ ├── SpecificationNameDto.ts │ │ │ │ ├── specification.spec.ts │ │ │ │ └── specification.ts │ │ │ ├── updatePasswordDto.ts │ │ │ └── weekDays.model.ts │ │ ├── pipes │ │ │ ├── convert-from-date-to-string │ │ │ │ ├── convert-from-date-to-string.service.spec.ts │ │ │ │ └── convert-from-date-to-string.service.ts │ │ │ ├── events-description-transforn │ │ │ │ ├── safe-html-transform.pipe.spec.ts │ │ │ │ └── safe-html-transform.pipe.ts │ │ │ ├── filter-location-list-by-lang │ │ │ │ ├── filter-location-list-by-lang.pipe.spec.ts │ │ │ │ └── filter-location-list-by-lang.pipe.ts │ │ │ ├── max-text-length-pipe │ │ │ │ ├── max-text-length.pipe.spec.ts │ │ │ │ └── max-text-length.pipe.ts │ │ │ └── relative-date │ │ │ │ ├── relative-date.pipe.spec.ts │ │ │ │ └── relative-date.pipe.ts │ │ ├── services │ │ │ ├── address │ │ │ │ ├── address.service.spec.ts │ │ │ │ └── address.service.ts │ │ │ ├── auth │ │ │ │ ├── auth │ │ │ │ │ └── auth.service.ts │ │ │ │ ├── change-password.service.ts │ │ │ │ ├── check-token │ │ │ │ │ └── check-token.service.ts │ │ │ │ ├── google-sign-in.service.ts │ │ │ │ ├── restore-password │ │ │ │ │ ├── restore-password.service.spec.ts │ │ │ │ │ └── restore-password.service.ts │ │ │ │ ├── user-own-auth.service.ts │ │ │ │ ├── user-own-sign-in.service.ts │ │ │ │ ├── user-own-sign-up.service.ts │ │ │ │ └── verify-email │ │ │ │ │ ├── verify-email.service.spec.ts │ │ │ │ │ └── verify-email.service.ts │ │ │ ├── filtering │ │ │ │ └── filter-place.service.ts │ │ │ ├── habit-statistic │ │ │ │ ├── OnLogout.ts │ │ │ │ ├── habit-statistic.service.spec.ts │ │ │ │ └── habit-statistic.service.ts │ │ │ ├── header │ │ │ │ ├── header.service.spec.ts │ │ │ │ └── header.service.ts │ │ │ ├── jwt │ │ │ │ └── jwt.service.ts │ │ │ ├── localstorage │ │ │ │ ├── local-storage.service.spec.ts │ │ │ │ └── local-storage.service.ts │ │ │ ├── mat-snack-bar │ │ │ │ ├── error-constants.ts │ │ │ │ ├── mat-snack-bar.service.spec.ts │ │ │ │ └── mat-snack-bar.service.ts │ │ │ ├── meta │ │ │ │ ├── meta.service.spec.ts │ │ │ │ └── meta.service.ts │ │ │ ├── moment-date-adapter │ │ │ │ ├── index.ts │ │ │ │ ├── moment-date-adapter.spec.ts │ │ │ │ ├── moment-date-adapter.ts │ │ │ │ └── moment-date-formats.ts │ │ │ ├── place │ │ │ │ ├── place.service.spec.ts │ │ │ │ └── place.service.ts │ │ │ ├── search │ │ │ │ ├── search.service.spec.ts_ │ │ │ │ └── search.service.ts │ │ │ ├── socket │ │ │ │ ├── socket-state.enum.ts │ │ │ │ └── socket.service.ts │ │ │ └── user │ │ │ │ ├── user.service.spec.ts │ │ │ │ └── user.service.ts │ │ └── shared.module.ts │ ├── store │ │ ├── actions │ │ │ ├── auth.actions.ts │ │ │ ├── authority.actions.ts │ │ │ ├── bigOrderTable.actions.ts │ │ │ ├── ecoEvents.actions.ts │ │ │ ├── ecoNews.actions.ts │ │ │ ├── employee.actions.ts │ │ │ ├── friends.actions.ts │ │ │ ├── habit.actions.ts │ │ │ ├── order.actions.ts │ │ │ ├── tariff.actions.ts │ │ │ ├── ubs-admin.actions.ts │ │ │ └── ubs-user.actions.ts │ │ ├── effects │ │ │ ├── auth.effects.ts │ │ │ ├── authority.effects.spec.ts │ │ │ ├── authority.effects.ts │ │ │ ├── bigOrderTable.effects.ts │ │ │ ├── ecoEvents.effects.ts │ │ │ ├── ecoNews.effects.ts │ │ │ ├── employee.effects.ts │ │ │ ├── friends.effects.ts │ │ │ ├── order.effects.ts │ │ │ ├── tariff.effects.ts │ │ │ └── ubs-user.effects.ts │ │ ├── functions.ts │ │ ├── reducers │ │ │ ├── app.reducer.ts │ │ │ ├── auth.reducer.ts │ │ │ ├── authority.reducer.spec.ts │ │ │ ├── authority.reducer.ts │ │ │ ├── bigOrderTable.reducer.ts │ │ │ ├── ecoEvents.reducer.ts │ │ │ ├── ecoNews.reducer.ts │ │ │ ├── employee.reducer.ts │ │ │ ├── friends.reducer.ts │ │ │ ├── habit.reducer.ts │ │ │ ├── order.reducer.ts │ │ │ ├── tariff.reducer.ts │ │ │ ├── ubs-admin.reducer.ts │ │ │ └── ubs-user.reducer.ts │ │ ├── selectors │ │ │ ├── auth.selectors.ts │ │ │ ├── authority.selectors.spec.ts │ │ │ ├── authority.selectors.ts │ │ │ ├── big-order-table.selectors.ts │ │ │ ├── employee.ts │ │ │ ├── order.selectors.ts │ │ │ ├── ubs-admin.selectors.ts │ │ │ └── ubs-user.selectors.ts │ │ └── state │ │ │ ├── app.state.ts │ │ │ ├── auth.state.ts │ │ │ ├── authority.state.ts │ │ │ ├── bigOrderTable.state.ts │ │ │ ├── ecoEvents.state.ts │ │ │ ├── ecoNews.state.ts │ │ │ ├── employee.state.ts │ │ │ ├── friends.state.ts │ │ │ ├── habit.state.ts │ │ │ ├── order.state.ts │ │ │ ├── tariff.state.ts │ │ │ ├── ubs-admin.state.ts │ │ │ └── ubs-user.state.ts │ └── ubs │ │ ├── mocks │ │ ├── address-mock.ts │ │ ├── google-types.ts │ │ └── order-data-mock.ts │ │ ├── shared │ │ ├── components │ │ │ ├── address-input │ │ │ │ ├── address-input.component.html │ │ │ │ ├── address-input.component.scss │ │ │ │ ├── address-input.component.spec.ts │ │ │ │ └── address-input.component.ts │ │ │ ├── show-imgs-pop-up │ │ │ │ ├── show-imgs-pop-up.component.html │ │ │ │ ├── show-imgs-pop-up.component.scss │ │ │ │ ├── show-imgs-pop-up.component.spec.ts │ │ │ │ └── show-imgs-pop-up.component.ts │ │ │ ├── ubs-add-address-pop-up │ │ │ │ ├── ubs-add-address-pop-up.component.html │ │ │ │ ├── ubs-add-address-pop-up.component.scss │ │ │ │ ├── ubs-add-address-pop-up.component.spec.ts │ │ │ │ └── ubs-add-address-pop-up.component.ts │ │ │ ├── ubs-base-sidebar │ │ │ │ ├── ubs-base-sidebar.component.html │ │ │ │ ├── ubs-base-sidebar.component.scss │ │ │ │ ├── ubs-base-sidebar.component.spec.ts │ │ │ │ └── ubs-base-sidebar.component.ts │ │ │ ├── ubs-footer │ │ │ │ ├── footer-links.ts │ │ │ │ ├── ubs-footer.component.html │ │ │ │ ├── ubs-footer.component.scss │ │ │ │ ├── ubs-footer.component.spec.ts │ │ │ │ └── ubs-footer.component.ts │ │ │ ├── ubs-input-error │ │ │ │ ├── ubs-input-error.component.html │ │ │ │ ├── ubs-input-error.component.scss │ │ │ │ ├── ubs-input-error.component.spec.ts │ │ │ │ └── ubs-input-error.component.ts │ │ │ └── upload-photo-container │ │ │ │ ├── upload-photo-container.component.html │ │ │ │ ├── upload-photo-container.component.scss │ │ │ │ ├── upload-photo-container.component.spec.ts │ │ │ │ └── upload-photo-container.component.ts │ │ ├── image-paths │ │ │ ├── ubs-main-page-images.ts │ │ │ └── ubs-user-images.ts │ │ ├── pipes │ │ │ ├── cron-pipe │ │ │ │ ├── cron.pipe.spec.ts │ │ │ │ └── cron.pipe.ts │ │ │ ├── localized-currency-pipe │ │ │ │ ├── localized-currency.pipe.spec.ts │ │ │ │ └── localized-currency.pipe.ts │ │ │ ├── localized-date-pipe │ │ │ │ ├── localized-date.pipe.spec.ts │ │ │ │ └── localized-date.pipe.ts │ │ │ ├── phone-number-treat │ │ │ │ ├── phone-number-treat.pipe.spec.ts │ │ │ │ └── phone-number-treat.pipe.ts │ │ │ ├── repeat-pipe │ │ │ │ ├── repeat.pipe.spec.ts │ │ │ │ └── repeat.pipe.ts │ │ │ ├── tariff-status-pipe │ │ │ │ ├── tariff-status.pipe.spec.ts │ │ │ │ └── tariff-status.pipe.ts │ │ │ ├── translate-pipe │ │ │ │ ├── translate-pipe.pipe.spec.ts │ │ │ │ └── translate-pipe.pipe.ts │ │ │ └── volume-pipe │ │ │ │ ├── volume.pipe.spec.ts │ │ │ │ └── volume.pipe.ts │ │ ├── ubs-shared.module.ts │ │ └── validators │ │ │ ├── empthy-or-valid.validator.ts │ │ │ └── phone-validator │ │ │ └── phone.validator.ts │ │ ├── ubs-admin │ │ ├── components │ │ │ ├── add-order-cancellation-reason │ │ │ │ ├── add-order-cancellation-reason.component.html │ │ │ │ ├── add-order-cancellation-reason.component.scss │ │ │ │ ├── add-order-cancellation-reason.component.spec.ts │ │ │ │ └── add-order-cancellation-reason.component.ts │ │ │ ├── add-order-not-taken-out-reason │ │ │ │ ├── add-order-not-taken-out-reason.component.html │ │ │ │ ├── add-order-not-taken-out-reason.component.scss │ │ │ │ ├── add-order-not-taken-out-reason.component.spec.ts │ │ │ │ └── add-order-not-taken-out-reason.component.ts │ │ │ ├── add-payment │ │ │ │ ├── add-payment.component.html │ │ │ │ ├── add-payment.component.scss │ │ │ │ ├── add-payment.component.spec.ts │ │ │ │ └── add-payment.component.ts │ │ │ ├── add-violations │ │ │ │ ├── add-violations.component.html │ │ │ │ ├── add-violations.component.scss │ │ │ │ ├── add-violations.component.spec.ts │ │ │ │ └── add-violations.component.ts │ │ │ ├── shared │ │ │ │ └── components │ │ │ │ │ ├── column-filters-pop-up │ │ │ │ │ ├── column-filters-pop-up.component.html │ │ │ │ │ ├── column-filters-pop-up.component.scss │ │ │ │ │ ├── column-filters-pop-up.component.spec.ts │ │ │ │ │ └── column-filters-pop-up.component.ts │ │ │ │ │ ├── comment-pop-up │ │ │ │ │ ├── comment-pop-up.component.html │ │ │ │ │ ├── comment-pop-up.component.scss │ │ │ │ │ ├── comment-pop-up.component.spec.ts │ │ │ │ │ └── comment-pop-up.component.ts │ │ │ │ │ ├── confirmation-dialog │ │ │ │ │ ├── confirmation-dialog.component.html │ │ │ │ │ ├── confirmation-dialog.component.scss │ │ │ │ │ ├── confirmation-dialog.component.spec.ts │ │ │ │ │ └── confirmation-dialog.component.ts │ │ │ │ │ ├── cron-picker │ │ │ │ │ ├── cron-picker.component.html │ │ │ │ │ ├── cron-picker.component.scss │ │ │ │ │ ├── cron-picker.component.spec.ts │ │ │ │ │ └── cron-picker.component.ts │ │ │ │ │ ├── deleting-profile-reason-pop-up │ │ │ │ │ ├── deleting-profile-reason-pop-up.component.html │ │ │ │ │ ├── deleting-profile-reason-pop-up.component.scss │ │ │ │ │ ├── deleting-profile-reason-pop-up.component.spec.ts │ │ │ │ │ └── deleting-profile-reason-pop-up.component.ts │ │ │ │ │ ├── dialog-tariff │ │ │ │ │ ├── dialog-tariff.component.html │ │ │ │ │ ├── dialog-tariff.component.scss │ │ │ │ │ ├── dialog-tariff.component.spec.ts │ │ │ │ │ └── dialog-tariff.component.ts │ │ │ │ │ ├── edit-payment-confirmation-pop-up │ │ │ │ │ ├── edit-payment-confirmation-pop-up.component.html │ │ │ │ │ ├── edit-payment-confirmation-pop-up.component.scss │ │ │ │ │ ├── edit-payment-confirmation-pop-up.component.spec.ts │ │ │ │ │ └── edit-payment-confirmation-pop-up.component.ts │ │ │ │ │ ├── modal-text │ │ │ │ │ ├── modal-text.component.html │ │ │ │ │ ├── modal-text.component.scss │ │ │ │ │ ├── modal-text.component.spec.ts │ │ │ │ │ └── modal-text.component.ts │ │ │ │ │ ├── pagination │ │ │ │ │ ├── pagination.component.html │ │ │ │ │ ├── pagination.component.scss │ │ │ │ │ ├── pagination.component.spec.ts_ │ │ │ │ │ └── pagination.component.ts │ │ │ │ │ ├── show-pdf-pop-up │ │ │ │ │ ├── show-pdf-pop-up.component.html │ │ │ │ │ ├── show-pdf-pop-up.component.scss │ │ │ │ │ ├── show-pdf-pop-up.component.spec.ts │ │ │ │ │ └── show-pdf-pop-up.component.ts │ │ │ │ │ ├── tariff-confirmation-pop-up │ │ │ │ │ ├── tariff-confirmation-pop-up.component.html │ │ │ │ │ ├── tariff-confirmation-pop-up.component.scss │ │ │ │ │ ├── tariff-confirmation-pop-up.component.spec.ts │ │ │ │ │ └── tariff-confirmation-pop-up.component.ts │ │ │ │ │ ├── tariff-deactivate-confirmation-pop-up │ │ │ │ │ ├── tariff-deactivate-confirmation-pop-up.component.html │ │ │ │ │ ├── tariff-deactivate-confirmation-pop-up.component.scss │ │ │ │ │ ├── tariff-deactivate-confirmation-pop-up.component.spec.ts │ │ │ │ │ └── tariff-deactivate-confirmation-pop-up.component.ts │ │ │ │ │ └── time-picker │ │ │ │ │ ├── time-picker.component.html │ │ │ │ │ ├── time-picker.component.scss │ │ │ │ │ ├── time-picker.component.spec.ts │ │ │ │ │ └── time-picker.component.ts │ │ │ ├── ubs-admin-address-details │ │ │ │ ├── ubs-admin-address-details.component.html │ │ │ │ ├── ubs-admin-address-details.component.scss │ │ │ │ ├── ubs-admin-address-details.component.spec.ts │ │ │ │ └── ubs-admin-address-details.component.ts │ │ │ ├── ubs-admin-cancel-modal │ │ │ │ ├── ubs-admin-cancel-modal.component.html │ │ │ │ ├── ubs-admin-cancel-modal.component.scss │ │ │ │ └── ubs-admin-cancel-modal.component.ts │ │ │ ├── ubs-admin-certificate │ │ │ │ ├── ubs-admin-certificate-add-certificate-pop-up │ │ │ │ │ ├── ubs-admin-certificate-add-certificate-pop-up.component.html │ │ │ │ │ ├── ubs-admin-certificate-add-certificate-pop-up.component.scss │ │ │ │ │ ├── ubs-admin-certificate-add-certificate-pop-up.component.spec.ts │ │ │ │ │ └── ubs-admin-certificate-add-certificate-pop-up.component.ts │ │ │ │ ├── ubs-admin-certificate.component.html │ │ │ │ ├── ubs-admin-certificate.component.scss │ │ │ │ ├── ubs-admin-certificate.component.spec.ts │ │ │ │ └── ubs-admin-certificate.component.ts │ │ │ ├── ubs-admin-confirm-status-change-pop-up │ │ │ │ ├── ubs-admin-confirm-status-change-pop-up.component.html │ │ │ │ ├── ubs-admin-confirm-status-change-pop-up.component.scss │ │ │ │ ├── ubs-admin-confirm-status-change-pop-up.component.spec.ts │ │ │ │ └── ubs-admin-confirm-status-change-pop-up.component.ts │ │ │ ├── ubs-admin-customers │ │ │ │ ├── columnsParams.mock.ts │ │ │ │ ├── filters.interface.ts │ │ │ │ ├── ubs-admin-customer-details │ │ │ │ │ ├── ubs-admin-customer-details.component.html │ │ │ │ │ ├── ubs-admin-customer-details.component.scss │ │ │ │ │ ├── ubs-admin-customer-details.component.spec.ts │ │ │ │ │ └── ubs-admin-customer-details.component.ts │ │ │ │ ├── ubs-admin-customer-orders │ │ │ │ │ ├── ubs-admin-customer-orders.component.html │ │ │ │ │ ├── ubs-admin-customer-orders.component.scss │ │ │ │ │ ├── ubs-admin-customer-orders.component.spec.ts │ │ │ │ │ └── ubs-admin-customer-orders.component.ts │ │ │ │ ├── ubs-admin-customer-violations │ │ │ │ │ └── ubs-admin-customer-violations │ │ │ │ │ │ ├── ubs-admin-customer-violations.component.html │ │ │ │ │ │ ├── ubs-admin-customer-violations.component.scss │ │ │ │ │ │ ├── ubs-admin-customer-violations.component.spec.ts │ │ │ │ │ │ └── ubs-admin-customer-violations.component.ts │ │ │ │ ├── ubs-admin-customers.component.html │ │ │ │ ├── ubs-admin-customers.component.scss │ │ │ │ ├── ubs-admin-customers.component.spec.ts │ │ │ │ └── ubs-admin-customers.component.ts │ │ │ ├── ubs-admin-edit-user-agreement │ │ │ │ ├── ubs-admin-edit-user-agreement.component.html │ │ │ │ ├── ubs-admin-edit-user-agreement.component.scss │ │ │ │ ├── ubs-admin-edit-user-agreement.component.spec.ts │ │ │ │ └── ubs-admin-edit-user-agreement.component.ts │ │ │ ├── ubs-admin-edit │ │ │ │ ├── ubs-admin-edit-homepage │ │ │ │ │ ├── ubs-admin-edit-homepage.component.html │ │ │ │ │ ├── ubs-admin-edit-homepage.component.scss │ │ │ │ │ ├── ubs-admin-edit-homepage.component.spec.ts │ │ │ │ │ └── ubs-admin-edit-homepage.component.ts │ │ │ │ ├── ubs-admin-edit-telegram-bot │ │ │ │ │ ├── ubs-admin-edit-telegram-bot.component.html │ │ │ │ │ ├── ubs-admin-edit-telegram-bot.component.scss │ │ │ │ │ ├── ubs-admin-edit-telegram-bot.component.spec.ts │ │ │ │ │ └── ubs-admin-edit-telegram-bot.component.ts │ │ │ │ └── ubs-admin-edit.ts │ │ │ ├── ubs-admin-employee │ │ │ │ ├── dialogs.scss │ │ │ │ ├── ubs-admin-employee-edit-form │ │ │ │ │ ├── tariff-selector │ │ │ │ │ │ ├── tariff-selector.component.html │ │ │ │ │ │ ├── tariff-selector.component.scss │ │ │ │ │ │ ├── tariff-selector.component.spec.ts │ │ │ │ │ │ └── tariff-selector.component.ts │ │ │ │ │ ├── ubs-admin-employee-edit-form.component.html │ │ │ │ │ ├── ubs-admin-employee-edit-form.component.scss │ │ │ │ │ ├── ubs-admin-employee-edit-form.component.spec.ts │ │ │ │ │ └── ubs-admin-employee-edit-form.component.ts │ │ │ │ ├── ubs-admin-employee-permissions-form │ │ │ │ │ ├── ubs-admin-employee-permissions-form.component.html │ │ │ │ │ ├── ubs-admin-employee-permissions-form.component.scss │ │ │ │ │ ├── ubs-admin-employee-permissions-form.component.spec.ts │ │ │ │ │ └── ubs-admin-employee-permissions-form.component.ts │ │ │ │ ├── ubs-admin-employee-table │ │ │ │ │ ├── employee-models.enum.ts │ │ │ │ │ ├── ubs-admin-employee-table.component.html │ │ │ │ │ ├── ubs-admin-employee-table.component.scss │ │ │ │ │ ├── ubs-admin-employee-table.component.spec.ts │ │ │ │ │ └── ubs-admin-employee-table.component.ts │ │ │ │ ├── ubs-admin-employee.component.html │ │ │ │ ├── ubs-admin-employee.component.scss │ │ │ │ ├── ubs-admin-employee.component.spec.ts │ │ │ │ └── ubs-admin-employee.component.ts │ │ │ ├── ubs-admin-export-details │ │ │ │ ├── ubs-admin-export-details.component.html │ │ │ │ ├── ubs-admin-export-details.component.scss │ │ │ │ ├── ubs-admin-export-details.component.spec.ts │ │ │ │ └── ubs-admin-export-details.component.ts │ │ │ ├── ubs-admin-go-back-modal │ │ │ │ ├── ubs-admin-go-back-modal.component.html │ │ │ │ ├── ubs-admin-go-back-modal.component.scss │ │ │ │ ├── ubs-admin-go-back-modal.component.spec.ts │ │ │ │ └── ubs-admin-go-back-modal.component.ts │ │ │ ├── ubs-admin-notification-list │ │ │ │ ├── ubs-admin-notification-list.component.html │ │ │ │ ├── ubs-admin-notification-list.component.scss │ │ │ │ ├── ubs-admin-notification-list.component.spec.ts │ │ │ │ └── ubs-admin-notification-list.component.ts │ │ │ ├── ubs-admin-notification │ │ │ │ ├── ubs-admin-notification-create-form │ │ │ │ │ ├── ubs-admin-notification-create-form.component.html │ │ │ │ │ ├── ubs-admin-notification-create-form.component.scss │ │ │ │ │ ├── ubs-admin-notification-create-form.component.spec.ts │ │ │ │ │ └── ubs-admin-notification-create-form.component.ts │ │ │ │ ├── ubs-admin-notification-edit-form │ │ │ │ │ ├── ubs-admin-notification-edit-form.component.html │ │ │ │ │ ├── ubs-admin-notification-edit-form.component.scss │ │ │ │ │ ├── ubs-admin-notification-edit-form.component.spec.ts │ │ │ │ │ └── ubs-admin-notification-edit-form.component.ts │ │ │ │ ├── ubs-admin-notification-settings │ │ │ │ │ ├── ubs-admin-notification-settings.component.html │ │ │ │ │ ├── ubs-admin-notification-settings.component.scss │ │ │ │ │ ├── ubs-admin-notification-settings.component.spec.ts │ │ │ │ │ └── ubs-admin-notification-settings.component.ts │ │ │ │ ├── ubs-admin-notification.component.html │ │ │ │ ├── ubs-admin-notification.component.scss │ │ │ │ ├── ubs-admin-notification.component.spec.ts │ │ │ │ └── ubs-admin-notification.component.ts │ │ │ ├── ubs-admin-order-client-info │ │ │ │ ├── ubs-admin-order-client-info.component.html │ │ │ │ ├── ubs-admin-order-client-info.component.scss │ │ │ │ ├── ubs-admin-order-client-info.component.spec.ts │ │ │ │ └── ubs-admin-order-client-info.component.ts │ │ │ ├── ubs-admin-order-details-form │ │ │ │ ├── ubs-admin-order-details-form.component.html │ │ │ │ ├── ubs-admin-order-details-form.component.scss │ │ │ │ ├── ubs-admin-order-details-form.component.spec.ts │ │ │ │ └── ubs-admin-order-details-form.component.ts │ │ │ ├── ubs-admin-order-history │ │ │ │ ├── ubs-admin-order-history.component.html │ │ │ │ ├── ubs-admin-order-history.component.scss │ │ │ │ ├── ubs-admin-order-history.component.spec.ts │ │ │ │ └── ubs-admin-order-history.component.ts │ │ │ ├── ubs-admin-order-payment │ │ │ │ ├── ubs-admin-order-payment.component.html │ │ │ │ ├── ubs-admin-order-payment.component.scss │ │ │ │ ├── ubs-admin-order-payment.component.spec.ts │ │ │ │ └── ubs-admin-order-payment.component.ts │ │ │ ├── ubs-admin-order-status │ │ │ │ ├── ubs-admin-order-status.component.html │ │ │ │ ├── ubs-admin-order-status.component.scss │ │ │ │ ├── ubs-admin-order-status.component.spec.ts │ │ │ │ └── ubs-admin-order-status.component.ts │ │ │ ├── ubs-admin-order │ │ │ │ ├── ubs-admin-order.component.html │ │ │ │ ├── ubs-admin-order.component.scss │ │ │ │ ├── ubs-admin-order.component.spec.ts │ │ │ │ └── ubs-admin-order.component.ts │ │ │ ├── ubs-admin-responsible-persons │ │ │ │ ├── ubs-admin-responsible-persons.component.html │ │ │ │ ├── ubs-admin-responsible-persons.component.scss │ │ │ │ ├── ubs-admin-responsible-persons.component.spec.ts │ │ │ │ └── ubs-admin-responsible-persons.component.ts │ │ │ ├── ubs-admin-settings │ │ │ │ ├── ubs-admin-settings.component.html │ │ │ │ ├── ubs-admin-settings.component.scss │ │ │ │ ├── ubs-admin-settings.component.spec.ts │ │ │ │ └── ubs-admin-settings.component.ts │ │ │ ├── ubs-admin-several-orders-pop-up │ │ │ │ ├── ubs-admin-several-orders-pop-up.component.html │ │ │ │ ├── ubs-admin-several-orders-pop-up.component.scss │ │ │ │ ├── ubs-admin-several-orders-pop-up.component.spec.ts │ │ │ │ └── ubs-admin-several-orders-pop-up.component.ts │ │ │ ├── ubs-admin-sidebar │ │ │ │ ├── ubs-admin-sidebar.component.html │ │ │ │ ├── ubs-admin-sidebar.component.scss │ │ │ │ ├── ubs-admin-sidebar.component.spec.ts │ │ │ │ └── ubs-admin-sidebar.component.ts │ │ │ ├── ubs-admin-table │ │ │ │ ├── table-cell-date │ │ │ │ │ ├── table-cell-date.component.html │ │ │ │ │ ├── table-cell-date.component.scss │ │ │ │ │ ├── table-cell-date.component.spec.ts │ │ │ │ │ └── table-cell-date.component.ts │ │ │ │ ├── table-cell-input │ │ │ │ │ ├── table-cell-input.component.html │ │ │ │ │ ├── table-cell-input.component.scss │ │ │ │ │ ├── table-cell-input.component.spec.ts │ │ │ │ │ └── table-cell-input.component.ts │ │ │ │ ├── table-cell-readonly │ │ │ │ │ ├── table-cell-readonly.component.html │ │ │ │ │ ├── table-cell-readonly.component.scss │ │ │ │ │ ├── table-cell-readonly.component.spec.ts │ │ │ │ │ └── table-cell-readonly.component.ts │ │ │ │ ├── table-cell-select │ │ │ │ │ ├── table-cell-select.component.html │ │ │ │ │ ├── table-cell-select.component.scss │ │ │ │ │ ├── table-cell-select.component.spec.ts │ │ │ │ │ └── table-cell-select.component.ts │ │ │ │ ├── table-cell-time │ │ │ │ │ ├── table-cell-time-range.ts │ │ │ │ │ ├── table-cell-time.component.html │ │ │ │ │ ├── table-cell-time.component.scss │ │ │ │ │ └── table-cell-time.component.ts │ │ │ │ ├── ubs-admin-table-default-width.ts │ │ │ │ ├── ubs-admin-table-excel-popup │ │ │ │ │ ├── ubs-admin-table-excel-popup.component.html │ │ │ │ │ ├── ubs-admin-table-excel-popup.component.scss │ │ │ │ │ ├── ubs-admin-table-excel-popup.component.spec.ts │ │ │ │ │ └── ubs-admin-table-excel-popup.component.ts │ │ │ │ ├── ubs-admin-table.component.html │ │ │ │ ├── ubs-admin-table.component.scss │ │ │ │ ├── ubs-admin-table.component.spec.ts │ │ │ │ └── ubs-admin-table.component.ts │ │ │ ├── ubs-admin-tariffs │ │ │ │ ├── tariff-status.enum.ts │ │ │ │ ├── ubs-admin-tariffs-card-pop-up │ │ │ │ │ ├── ubs-admin-tariffs-card-pop-up.component.html │ │ │ │ │ ├── ubs-admin-tariffs-card-pop-up.component.scss │ │ │ │ │ ├── ubs-admin-tariffs-card-pop-up.component.spec.ts │ │ │ │ │ └── ubs-admin-tariffs-card-pop-up.component.ts │ │ │ │ ├── ubs-admin-tariffs-courier-pop-up │ │ │ │ │ ├── ubs-admin-tariffs-courier-pop-up.component.html │ │ │ │ │ ├── ubs-admin-tariffs-courier-pop-up.component.scss │ │ │ │ │ ├── ubs-admin-tariffs-courier-pop-up.component.spec.ts │ │ │ │ │ └── ubs-admin-tariffs-courier-pop-up.component.ts │ │ │ │ ├── ubs-admin-tariffs-deactivate-pop-up │ │ │ │ │ ├── ubs-admin-tariffs-deactivate-pop-up.component.html │ │ │ │ │ ├── ubs-admin-tariffs-deactivate-pop-up.component.scss │ │ │ │ │ ├── ubs-admin-tariffs-deactivate-pop-up.component.spec.ts │ │ │ │ │ └── ubs-admin-tariffs-deactivate-pop-up.component.ts │ │ │ │ ├── ubs-admin-tariffs-location-dashboard.component.html │ │ │ │ ├── ubs-admin-tariffs-location-dashboard.component.scss │ │ │ │ ├── ubs-admin-tariffs-location-dashboard.component.spec.ts │ │ │ │ ├── ubs-admin-tariffs-location-dashboard.component.ts │ │ │ │ ├── ubs-admin-tariffs-location-pop-up │ │ │ │ │ ├── ubs-admin-tariffs-location-pop-up.component.html │ │ │ │ │ ├── ubs-admin-tariffs-location-pop-up.component.scss │ │ │ │ │ ├── ubs-admin-tariffs-location-pop-up.component.spec.ts │ │ │ │ │ └── ubs-admin-tariffs-location-pop-up.component.ts │ │ │ │ ├── ubs-admin-tariffs-pricing-page │ │ │ │ │ ├── ubs-admin-tariffs-add-service-pop-up │ │ │ │ │ │ ├── ubs-admin-tariffs-add-service-pop-up.component.html │ │ │ │ │ │ ├── ubs-admin-tariffs-add-service-pop-up.component.scss │ │ │ │ │ │ ├── ubs-admin-tariffs-add-service-pop-up.component.spec.ts │ │ │ │ │ │ └── ubs-admin-tariffs-add-service-pop-up.component.ts │ │ │ │ │ ├── ubs-admin-tariffs-add-tariff-service-pop-up │ │ │ │ │ │ ├── ubs-admin-tariffs-add-tariff-service-pop-up.component.html │ │ │ │ │ │ ├── ubs-admin-tariffs-add-tariff-service-pop-up.component.scss │ │ │ │ │ │ ├── ubs-admin-tariffs-add-tariff-service-pop-up.component.spec.ts │ │ │ │ │ │ └── ubs-admin-tariffs-add-tariff-service-pop-up.component.ts │ │ │ │ │ ├── ubs-admin-tariffs-delete-pop-up │ │ │ │ │ │ ├── ubs-admin-tariffs-delete-pop-up.component.html │ │ │ │ │ │ ├── ubs-admin-tariffs-delete-pop-up.component.scss │ │ │ │ │ │ ├── ubs-admin-tariffs-delete-pop-up.component.spec.ts │ │ │ │ │ │ └── ubs-admin-tariffs-delete-pop-up.component.ts │ │ │ │ │ ├── ubs-admin-tariffs-pricing-page.component.html │ │ │ │ │ ├── ubs-admin-tariffs-pricing-page.component.scss │ │ │ │ │ ├── ubs-admin-tariffs-pricing-page.component.spec.ts │ │ │ │ │ └── ubs-admin-tariffs-pricing-page.component.ts │ │ │ │ ├── ubs-admin-tariffs-station-pop-up │ │ │ │ │ ├── ubs-admin-tariffs-station-pop-up.component.html │ │ │ │ │ ├── ubs-admin-tariffs-station-pop-up.component.scss │ │ │ │ │ ├── ubs-admin-tariffs-station-pop-up.component.spec.ts │ │ │ │ │ └── ubs-admin-tariffs-station-pop-up.component.ts │ │ │ │ └── ubs-tariffs.enum.ts │ │ │ ├── ubs-image-pathes │ │ │ │ └── ubs-header-icons.ts │ │ │ └── view-violation-modal │ │ │ │ ├── view-violation-modal.component.html │ │ │ │ ├── view-violation-modal.component.scss │ │ │ │ ├── view-violation-modal.component.spec.ts │ │ │ │ └── view-violation-modal.component.ts │ │ ├── directives │ │ │ ├── clickOutside.directive.ts │ │ │ └── resize-table-columns.directive.ts │ │ ├── models │ │ │ ├── admin-tables.model.ts │ │ │ ├── columns-to-filter-by-name.ts │ │ │ ├── customer-orders-table.model.ts │ │ │ ├── customer-violations-table.model.ts │ │ │ ├── customers-table.model.ts │ │ │ ├── edit-cell.model.ts │ │ │ ├── employee-permissions.model.ts │ │ │ ├── homepage-settings.interface.ts │ │ │ ├── image-file.model.ts │ │ │ ├── non-sortable-columns.model.ts │ │ │ ├── not-taken-out-reason.model.ts │ │ │ ├── notifications.model.ts │ │ │ ├── tariffs.interface.ts │ │ │ ├── telegram-bot-responses.interface.ts │ │ │ ├── ubs-admin.interface.ts │ │ │ ├── ubs-pop-up.interface.ts │ │ │ ├── ubs-user.model.ts │ │ │ ├── user-agreement.interface.ts │ │ │ └── violation.model.ts │ │ ├── services │ │ │ ├── admin-certificate.service.spec.ts │ │ │ ├── admin-certificate.service.ts │ │ │ ├── admin-customers.service.spec.ts │ │ │ ├── admin-customers.service.ts │ │ │ ├── admin-edit-telegram-bot │ │ │ │ └── admin-edit-telegram-bot.service.ts │ │ │ ├── admin-homepage-settings │ │ │ │ └── admin-homepage-settings.service.ts │ │ │ ├── admin-table.service.spec.ts │ │ │ ├── admin-table.service.ts │ │ │ ├── admin-user-agreement │ │ │ │ ├── admin-user-agreement.service.spec.ts │ │ │ │ └── admin-user-agreement.service.ts │ │ │ ├── authority.service.spec.ts │ │ │ ├── authority.service.ts │ │ │ ├── cancellation-reason-list-mock.ts │ │ │ ├── cron │ │ │ │ ├── cron.service.spec.ts │ │ │ │ ├── cron.service.ts │ │ │ │ └── locales │ │ │ │ │ ├── en.json │ │ │ │ │ ├── locales.d.ts │ │ │ │ │ └── uk.json │ │ │ ├── notifications.mock.ts │ │ │ ├── notifications.service.spec.ts │ │ │ ├── notifications.service.ts │ │ │ ├── order.service.spec.ts │ │ │ ├── order.service.ts │ │ │ ├── orderInfoMock.ts │ │ │ ├── table-height.service.spec.ts │ │ │ ├── table-height.service.ts │ │ │ ├── table-keys.enum.ts │ │ │ ├── tariffs.service.spec.ts │ │ │ ├── tariffs.service.ts │ │ │ ├── ubs-admin-employee.service.spec.ts │ │ │ └── ubs-admin-employee.service.ts │ │ ├── ubs-admin-guard.guard.ts │ │ ├── ubs-admin-guard.spec.ts │ │ ├── ubs-admin-routing.module.ts │ │ ├── ubs-admin.component.html │ │ ├── ubs-admin.component.scss │ │ ├── ubs-admin.component.spec.ts │ │ ├── ubs-admin.component.ts │ │ ├── ubs-admin.module.ts │ │ ├── unsaved-changes-guard.guard.spec.ts │ │ └── unsaved-changes-guard.guard.ts │ │ ├── ubs-db-display │ │ ├── components │ │ │ ├── db-tables │ │ │ │ ├── db-tables.component.html │ │ │ │ ├── db-tables.component.scss │ │ │ │ ├── db-tables.component.spec.ts │ │ │ │ └── db-tables.component.ts │ │ │ ├── table-list │ │ │ │ ├── table-list.component.html │ │ │ │ ├── table-list.component.scss │ │ │ │ ├── table-list.component.spec.ts │ │ │ │ └── table-list.component.ts │ │ │ └── table-view │ │ │ │ ├── table-view.component.html │ │ │ │ ├── table-view.component.scss │ │ │ │ ├── table-view.component.spec.ts │ │ │ │ └── table-view.component.ts │ │ ├── models │ │ │ └── table.model.ts │ │ ├── services │ │ │ ├── table.service.spec.ts │ │ │ └── table.service.ts │ │ ├── ubs-db-display-routing.module.ts │ │ └── ubs-db-display.module.ts │ │ ├── ubs-user │ │ ├── components │ │ │ ├── ubs-user-bonuses │ │ │ │ ├── models │ │ │ │ │ ├── BonusModel.ts │ │ │ │ │ ├── BonusesModel.ts │ │ │ │ │ └── IBonus.interface.ts │ │ │ │ ├── services │ │ │ │ │ ├── bonuses.service.spec.ts │ │ │ │ │ └── bonuses.service.ts │ │ │ │ ├── ubs-user-bonuses.component.html │ │ │ │ ├── ubs-user-bonuses.component.scss │ │ │ │ ├── ubs-user-bonuses.component.spec.ts │ │ │ │ └── ubs-user-bonuses.component.ts │ │ │ ├── ubs-user-messages │ │ │ │ ├── notification-body │ │ │ │ │ ├── notification-body.component.html │ │ │ │ │ ├── notification-body.component.scss │ │ │ │ │ └── notification-body.component.ts │ │ │ │ ├── ubs-user-messages.component.html │ │ │ │ ├── ubs-user-messages.component.scss │ │ │ │ ├── ubs-user-messages.component.spec.ts │ │ │ │ └── ubs-user-messages.component.ts │ │ │ ├── ubs-user-order-details │ │ │ │ ├── ubs-user-order-details.component.html │ │ │ │ ├── ubs-user-order-details.component.scss │ │ │ │ ├── ubs-user-order-details.component.spec.ts │ │ │ │ └── ubs-user-order-details.component.ts │ │ │ ├── ubs-user-orders-list │ │ │ │ ├── models │ │ │ │ │ ├── IBonusInfo.interface.ts │ │ │ │ │ ├── ICertificate.interface.ts │ │ │ │ │ ├── IOrderData.interface.ts │ │ │ │ │ ├── IOrderDetailsUser.interface.ts │ │ │ │ │ ├── OrderClientDto.ts │ │ │ │ │ ├── ResponceOrderFondyModel.ts │ │ │ │ │ ├── ResponceOrderLiqPayModel.ts │ │ │ │ │ └── UserOrder.interface.ts │ │ │ │ ├── ubs-user-order-cancel-pop-up │ │ │ │ │ ├── ubs-user-order-cancel-pop-up.component.html │ │ │ │ │ ├── ubs-user-order-cancel-pop-up.component.scss │ │ │ │ │ ├── ubs-user-order-cancel-pop-up.component.spec.ts │ │ │ │ │ └── ubs-user-order-cancel-pop-up.component.ts │ │ │ │ ├── ubs-user-order-payment-pop-up │ │ │ │ │ ├── ubs-user-order-payment-pop-up.component.html │ │ │ │ │ ├── ubs-user-order-payment-pop-up.component.scss │ │ │ │ │ ├── ubs-user-order-payment-pop-up.component.spec.ts │ │ │ │ │ └── ubs-user-order-payment-pop-up.component.ts │ │ │ │ ├── ubs-user-orders-list.component.html │ │ │ │ ├── ubs-user-orders-list.component.scss │ │ │ │ ├── ubs-user-orders-list.component.spec.ts │ │ │ │ └── ubs-user-orders-list.component.ts │ │ │ ├── ubs-user-orders │ │ │ │ ├── ubs-user-orders.component.html │ │ │ │ ├── ubs-user-orders.component.scss │ │ │ │ ├── ubs-user-orders.component.spec.ts │ │ │ │ └── ubs-user-orders.component.ts │ │ │ ├── ubs-user-profile-page │ │ │ │ ├── ubs-profile-change-password-pop-up │ │ │ │ │ ├── ubs-profile-change-password-pop-up.component.html │ │ │ │ │ ├── ubs-profile-change-password-pop-up.component.scss │ │ │ │ │ ├── ubs-profile-change-password-pop-up.component.spec.ts │ │ │ │ │ └── ubs-profile-change-password-pop-up.component.ts │ │ │ │ ├── ubs-switcher │ │ │ │ │ ├── ubs-switcher.component.html │ │ │ │ │ ├── ubs-switcher.component.scss │ │ │ │ │ ├── ubs-switcher.component.spec.ts │ │ │ │ │ └── ubs-switcher.component.ts │ │ │ │ ├── ubs-user-profile-page.component.html │ │ │ │ ├── ubs-user-profile-page.component.scss │ │ │ │ ├── ubs-user-profile-page.component.spec.ts │ │ │ │ └── ubs-user-profile-page.component.ts │ │ │ └── ubs-user-sidebar │ │ │ │ ├── ubs-user-sidebar.component.html │ │ │ │ └── ubs-user-sidebar.component.ts │ │ ├── guards │ │ │ ├── ubs-user-guard.guard.spec.ts │ │ │ └── ubs-user-guard.guard.ts │ │ ├── services │ │ │ ├── client-profile.service.spec.ts │ │ │ ├── client-profile.service.ts │ │ │ ├── location │ │ │ │ ├── location.service.ts │ │ │ │ └── location.spec.ts │ │ │ ├── user-messages.service.spec.ts │ │ │ ├── user-messages.service.ts │ │ │ ├── user-orders.service.spec.ts │ │ │ └── user-orders.service.ts │ │ ├── ubs-user-routing.module.ts │ │ ├── ubs-user.component.html │ │ ├── ubs-user.component.scss │ │ ├── ubs-user.component.spec.ts │ │ ├── ubs-user.component.ts │ │ ├── ubs-user.module.ts │ │ └── validators │ │ │ └── requiredFromDropDown.validator.ts │ │ ├── ubs.module.ts │ │ └── ubs │ │ ├── components │ │ ├── ubs-confirm-page │ │ │ ├── ubs-confirm-page.component.html │ │ │ ├── ubs-confirm-page.component.scss │ │ │ ├── ubs-confirm-page.component.spec.ts │ │ │ └── ubs-confirm-page.component.ts │ │ ├── ubs-main-page-spinner │ │ │ ├── ubs-main-page-spinner.component.html │ │ │ ├── ubs-main-page-spinner.component.scss │ │ │ ├── ubs-main-page-spinner.component.spec.ts │ │ │ └── ubs-main-page-spinner.component.ts │ │ ├── ubs-main-page │ │ │ ├── ubs-main-page.component.html │ │ │ ├── ubs-main-page.component.scss │ │ │ ├── ubs-main-page.component.spec.ts │ │ │ ├── ubs-main-page.component.ts │ │ │ └── ubs-price-section │ │ │ │ ├── ubs-price-section.component.html │ │ │ │ ├── ubs-price-section.component.scss │ │ │ │ └── ubs-price-section.component.ts │ │ ├── ubs-order-details │ │ │ ├── extra-packages-pop-up │ │ │ │ ├── extra-packages-pop-up.component.html │ │ │ │ ├── extra-packages-pop-up.component.scss │ │ │ │ ├── extra-packages-pop-up.component.spec.ts │ │ │ │ └── extra-packages-pop-up.component.ts │ │ │ ├── ubs-order-certificate │ │ │ │ ├── ubs-order-certificate.component.html │ │ │ │ ├── ubs-order-certificate.component.scss │ │ │ │ ├── ubs-order-certificate.component.spec.ts │ │ │ │ └── ubs-order-certificate.component.ts │ │ │ ├── ubs-order-details.component.html │ │ │ ├── ubs-order-details.component.scss │ │ │ ├── ubs-order-details.component.spec.ts │ │ │ ├── ubs-order-details.component.ts │ │ │ └── ubs-order-location-popup │ │ │ │ ├── ubs-order-location-popup.component.html │ │ │ │ ├── ubs-order-location-popup.component.scss │ │ │ │ ├── ubs-order-location-popup.component.spec.ts │ │ │ │ └── ubs-order-location-popup.component.ts │ │ ├── ubs-order-form │ │ │ ├── ubs-order-form.component.html │ │ │ ├── ubs-order-form.component.scss │ │ │ ├── ubs-order-form.component.spec.ts │ │ │ └── ubs-order-form.component.ts │ │ ├── ubs-personal-information │ │ │ ├── address │ │ │ │ ├── address.component.html │ │ │ │ ├── address.component.scss │ │ │ │ ├── address.component.spec.ts │ │ │ │ └── address.component.ts │ │ │ ├── ubs-order-address │ │ │ │ ├── ubs-order-address.component.html │ │ │ │ ├── ubs-order-address.component.scss │ │ │ │ ├── ubs-order-address.component.spec.ts │ │ │ │ └── ubs-order-address.component.ts │ │ │ ├── ubs-personal-information.component.html │ │ │ ├── ubs-personal-information.component.scss │ │ │ ├── ubs-personal-information.component.spec.ts │ │ │ └── ubs-personal-information.component.ts │ │ ├── ubs-pick-up-service-pop-up │ │ │ ├── pick-up-text.ts │ │ │ ├── ubs-pick-up-service-pop-up.component.html │ │ │ ├── ubs-pick-up-service-pop-up.component.scss │ │ │ ├── ubs-pick-up-service-pop-up.component.spec.ts │ │ │ └── ubs-pick-up-service-pop-up.component.ts │ │ ├── ubs-submit-order │ │ │ ├── ubs-submit-order-notification │ │ │ │ ├── ubs-submit-order-notification.component.html │ │ │ │ ├── ubs-submit-order-notification.component.scss │ │ │ │ ├── ubs-submit-order-notification.component.spec.ts │ │ │ │ └── ubs-submit-order-notification.component.ts │ │ │ ├── ubs-submit-order.component.html │ │ │ ├── ubs-submit-order.component.scss │ │ │ ├── ubs-submit-order.component.spec.ts │ │ │ └── ubs-submit-order.component.ts │ │ └── ubs-user-agreement │ │ │ ├── ubs-user-agreement.component.html │ │ │ ├── ubs-user-agreement.component.scss │ │ │ ├── ubs-user-agreement.component.spec.ts │ │ │ └── ubs-user-agreement.component.ts │ │ ├── directives │ │ └── validate-address │ │ │ ├── validate-address.directive.spec.ts │ │ │ └── validate-address.directive.ts │ │ ├── enums │ │ ├── certificate-status.enum.ts │ │ ├── client-status.enum.ts │ │ ├── notification-platform.enum.ts │ │ ├── order-status.enum.ts │ │ └── violation-level.enum.ts │ │ ├── guards │ │ ├── prevent-navigation-back │ │ │ ├── prevent-navigation-back.guard.spec.ts │ │ │ └── prevent-navigation-back.guard.ts │ │ └── stepper │ │ │ ├── stepper.guard.spec.ts │ │ │ └── stepper.guard.ts │ │ ├── interface │ │ └── ubs-base-sidebar-interface.ts │ │ ├── models │ │ ├── ubs-sidebar-links.ts │ │ ├── ubs.interface.ts │ │ └── ubs.model.ts │ │ ├── services │ │ ├── event-type.enum.ts │ │ ├── order-validators.ts │ │ ├── order.service.spec.ts │ │ ├── order.service.ts │ │ ├── ubs-order-form.service.spec.ts_ │ │ ├── ubs-order-form.service.ts │ │ └── user-agreement │ │ │ ├── user-agreement.service.spec.ts │ │ │ └── user-agreement.service.ts │ │ ├── ubs-order.component.html │ │ ├── ubs-order.component.scss │ │ ├── ubs-order.component.spec.ts_ │ │ ├── ubs-order.component.ts │ │ ├── ubs-order.module.ts │ │ ├── ubs-routing.module.ts │ │ └── validators │ │ ├── address-already-exists-validator.ts │ │ └── address-validators.ts ├── assets │ ├── admin-header │ │ ├── email-icon.svg │ │ ├── face-icon.svg │ │ ├── insta-icon.svg │ │ ├── logo-admin.svg │ │ ├── logo-footer.svg │ │ ├── new-logo-admin.svg │ │ ├── patreon-icon.svg │ │ ├── pickup-footer-logo.svg │ │ ├── pickup-header-logo.svg │ │ ├── search.svg │ │ ├── telegram-icon.svg │ │ ├── tik-tok-icon.svg │ │ └── you-tube-icon.svg │ ├── all-json │ │ ├── eco-news.json │ │ └── search.json │ ├── events-icons │ │ ├── Vector-big.png │ │ ├── Vector.png │ │ ├── author.png │ │ ├── background.png │ │ ├── bookmark-active.png │ │ ├── bookmark-grey.png │ │ ├── bookmark-set.png │ │ ├── clock.png │ │ ├── cross.png │ │ ├── date.png │ │ ├── frame.png │ │ ├── like.png │ │ ├── lock-closed.png │ │ ├── lock-open.png │ │ ├── my-event.png │ │ ├── place.png │ │ ├── place2.png │ │ ├── search-active.png │ │ ├── search-hover.png │ │ ├── search.png │ │ ├── star-empthy.svg │ │ ├── star-filled-big.png │ │ ├── star-filled.png │ │ └── star-filled.svg │ ├── google-script │ │ ├── google-script.spec.ts │ │ └── google-script.ts │ ├── i18n │ │ ├── en.json │ │ ├── ubs-admin │ │ │ ├── en.json │ │ │ └── uk.json │ │ ├── ubs-user │ │ │ ├── en.json │ │ │ └── uk.json │ │ ├── ubs │ │ │ ├── en.json │ │ │ └── uk.json │ │ └── uk.json │ ├── icons │ │ ├── Blue_double_ticks.svg.png │ │ ├── arrow-down-green.svg │ │ ├── arrow-down-grey.svg │ │ ├── habits │ │ │ ├── calendar-green.svg │ │ │ ├── circle-grey.svg │ │ │ ├── doted-minus-green-circle.svg │ │ │ ├── doted-plus-green-circle.svg │ │ │ ├── filled-check-circle.svg │ │ │ ├── filled-check-rectangle.svg │ │ │ ├── lined-green-circle.svg │ │ │ ├── lock-icon-closed.svg │ │ │ ├── plus-circle-green.svg │ │ │ ├── plus-circle-grey.svg │ │ │ ├── plus-circle-small-green.svg │ │ │ └── rectangle-grey.svg │ │ ├── icon-128x128.png │ │ ├── icon-144x144.png │ │ ├── icon-152x152.png │ │ ├── icon-192x192.png │ │ ├── icon-384x384.png │ │ ├── icon-48x48.png │ │ ├── icon-512x512.png │ │ ├── icon-72x72.png │ │ ├── icon-96x96.png │ │ ├── partners-GoToRe.png │ │ ├── partners-no-waste.png │ │ ├── partners-ubs.png │ │ └── tick-svgrepo-com.svg │ ├── img │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── Illustrationman.png │ │ ├── Vector3.svg │ │ ├── Vision.png │ │ ├── achieve.png │ │ ├── arrow-down.svg │ │ ├── arrow-right.svg │ │ ├── arrow.png │ │ ├── arrow_down-green.svg │ │ ├── arrow_down.svg │ │ ├── arrow_grey.png │ │ ├── auth │ │ │ ├── auth-img.png │ │ │ ├── cross.svg │ │ │ ├── hided_eye.svg │ │ │ ├── logo.svg │ │ │ └── open_eye.svg │ │ ├── bell.png │ │ ├── chat │ │ │ ├── chats.svg │ │ │ ├── close.svg │ │ │ ├── download.svg │ │ │ ├── file.svg │ │ │ ├── image.svg │ │ │ ├── new-message.svg │ │ │ ├── paper-clip.svg │ │ │ ├── profile.svg │ │ │ ├── search.svg │ │ │ ├── send.svg │ │ │ ├── setting.svg │ │ │ ├── settings.svg │ │ │ ├── smile.svg │ │ │ ├── telegram-logo.svg │ │ │ ├── three-dots.svg │ │ │ └── user.svg │ │ ├── comments │ │ │ ├── arrow-next-disable.svg │ │ │ ├── arrow-next.svg │ │ │ ├── arrow-previous-disable.svg │ │ │ ├── arrow-previous.svg │ │ │ ├── arrow_down.png │ │ │ ├── arrow_up.png │ │ │ ├── cancel-comment-edit.png │ │ │ ├── delete.png │ │ │ ├── dislike.png │ │ │ ├── disliked.png │ │ │ ├── edit.png │ │ │ ├── like.png │ │ │ ├── liked.png │ │ │ ├── reply-green.svg │ │ │ └── reply.svg │ │ ├── curly-line.png │ │ ├── curly-line.svg │ │ ├── dashed-leaves.svg │ │ ├── dashed-line.png │ │ ├── default_news-img.svg │ │ ├── duration-thumb-label-progress.svg │ │ ├── duration-thumb-label.png │ │ ├── duration-thumb-label.svg │ │ ├── edit.svg │ │ ├── events │ │ │ ├── clock.svg │ │ │ ├── default-image.png │ │ │ ├── ellipsis.svg │ │ │ ├── facebook.svg │ │ │ ├── illustration-earth.png │ │ │ ├── illustration-money.png │ │ │ ├── illustration-people.png │ │ │ ├── illustration-recycle.png │ │ │ ├── illustration-store.png │ │ │ ├── link.svg │ │ │ ├── linkedin.svg │ │ │ ├── location.svg │ │ │ ├── lock-closed.svg │ │ │ ├── lock.svg │ │ │ ├── plus.svg │ │ │ ├── twitter.svg │ │ │ └── user.svg │ │ ├── filled_arrow_down.svg │ │ ├── guy.png │ │ ├── habit-circle-bg-shape.png │ │ ├── habit-pic-bag.png │ │ ├── habit-pic-cup.png │ │ ├── habits │ │ │ ├── default-habit-image.png │ │ │ ├── habit-1.png │ │ │ ├── habit-2.png │ │ │ ├── habit-3.png │ │ │ └── man.svg │ │ ├── icon │ │ │ ├── Calendar_icon.png │ │ │ ├── Union.png │ │ │ ├── arrow.png │ │ │ ├── arrows │ │ │ │ ├── arrow-accordion-down.svg │ │ │ │ ├── arrow-down-bold.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-up-bold.svg │ │ │ │ └── shop-list-arrow.svg │ │ │ ├── bin.svg │ │ │ ├── bookmark-default.svg │ │ │ ├── calendar.png │ │ │ ├── calendar.svg │ │ │ ├── chats.svg │ │ │ ├── chek-circle.png │ │ │ ├── close.png │ │ │ ├── coffee-cup.png │ │ │ ├── coffee_statistic.png │ │ │ ├── cross.svg │ │ │ ├── delete.png │ │ │ ├── econews │ │ │ │ ├── arrow_left.svg │ │ │ │ ├── calendar-icon.svg │ │ │ │ ├── default-image-gallery-view.png │ │ │ │ ├── default-image-list-view.png │ │ │ │ ├── ellipse.svg │ │ │ │ ├── facebook.svg │ │ │ │ ├── linkedin.svg │ │ │ │ ├── news-default-large.png │ │ │ │ ├── news-default-small.png │ │ │ │ ├── profile-icon.svg │ │ │ │ └── twitter.svg │ │ │ ├── eye-show.png │ │ │ ├── eye.png │ │ │ ├── facebook-icon.svg │ │ │ ├── favorite-place │ │ │ │ └── star-yellow.svg │ │ │ ├── footer │ │ │ │ ├── facebook-icon.svg │ │ │ │ ├── instagram-icon.svg │ │ │ │ ├── linkedin-icon.svg │ │ │ │ ├── twitter-icon.svg │ │ │ │ └── youtube-icon.svg │ │ │ ├── google.svg │ │ │ ├── green-city-icon.svg │ │ │ ├── idea-icon.png │ │ │ ├── info-icon.svg │ │ │ ├── instagram-icon.svg │ │ │ ├── linkedin-icon.svg │ │ │ ├── location-icon.png │ │ │ ├── mark-circle.svg │ │ │ ├── notifications-default.svg │ │ │ ├── notifications-has-new.svg │ │ │ ├── package_statistic.png │ │ │ ├── plus-circle-dotted.svg │ │ │ ├── plus-circle.png │ │ │ ├── sign-in │ │ │ │ ├── close-btn.svg │ │ │ │ ├── google.svg │ │ │ │ └── sign-in-main-img.png │ │ │ ├── spoon-knife.png │ │ │ ├── star-1.png │ │ │ ├── star-2.png │ │ │ ├── star-circle.png │ │ │ ├── star-circle.svg │ │ │ ├── trash-bin.svg │ │ │ ├── twitter-icon.svg │ │ │ ├── water-bottle.png │ │ │ ├── white-cross.png │ │ │ └── youtube-icon.svg │ │ ├── illustration-earth.png │ │ ├── illustration-money.png │ │ ├── illustration-people.png │ │ ├── illustration-recycle.png │ │ ├── illustration-store.png │ │ ├── kimi.png │ │ ├── leaves.png │ │ ├── lewis.png │ │ ├── logo-l.svg │ │ ├── logo.png │ │ ├── logo.svg │ │ ├── main-event-placeholder.png │ │ ├── man.svg │ │ ├── noNews.jpg │ │ ├── noNews.svg │ │ ├── path-2.svg │ │ ├── path-4.png │ │ ├── path-4_3.png │ │ ├── path-5.png │ │ ├── places │ │ │ ├── bookmark-default.svg │ │ │ ├── bookmark-set.svg │ │ │ ├── green-marker.png │ │ │ ├── heartUnfilled.svg │ │ │ ├── notification-unread.svg │ │ │ ├── place_KFC.png │ │ │ ├── place_McDonalds.png │ │ │ ├── place_lviv-hotel.png │ │ │ ├── place_magnus.png │ │ │ ├── place_staff.png │ │ │ ├── red-marker.png │ │ │ ├── search.svg │ │ │ ├── share.svg │ │ │ ├── star-1.png │ │ │ ├── star-2.png │ │ │ ├── star-filled-half.png │ │ │ └── star-filled.svg │ │ ├── plus-circle.png │ │ ├── profile │ │ │ ├── achievements │ │ │ │ ├── ACHIEVEMENT.png │ │ │ │ ├── COMMENT_OR_REPLY.png │ │ │ │ ├── CREATE_EVENT.png │ │ │ │ ├── CREATE_NEWS.png │ │ │ │ ├── HABIT.png │ │ │ │ ├── JOIN_EVENT.png │ │ │ │ ├── LIKE_COMMENT_OR_REPLY.png │ │ │ │ └── SHARE_NEWS.png │ │ │ ├── calendar │ │ │ │ ├── arrow_next.svg │ │ │ │ └── arrow_previous.svg │ │ │ ├── friends │ │ │ │ ├── friend-1.png │ │ │ │ ├── friend-2.png │ │ │ │ ├── friend-3.png │ │ │ │ ├── friend-4.png │ │ │ │ ├── friend-5.png │ │ │ │ └── friend-6.png │ │ │ └── icons │ │ │ │ ├── add.svg │ │ │ │ ├── back-arrow.svg │ │ │ │ ├── cancel.svg │ │ │ │ ├── checkmark.svg │ │ │ │ ├── default_social.svg │ │ │ │ ├── delete.svg │ │ │ │ ├── edit-line.svg │ │ │ │ ├── edit-photo.svg │ │ │ │ ├── edit.svg │ │ │ │ └── line.svg │ │ ├── qr-code.png │ │ ├── search.svg │ │ ├── search2.svg │ │ ├── sidebarIcons │ │ │ ├── achievement_icon.svg │ │ │ ├── calendar_icon.svg │ │ │ ├── documents_icon.svg │ │ │ ├── message-bell_icon.svg │ │ │ ├── none_notification_Bell.svg │ │ │ ├── notification_Bell.svg │ │ │ ├── settings_icon.svg │ │ │ ├── shopping-cart_icon.svg │ │ │ ├── statistic_icon.svg │ │ │ ├── user_icon.svg │ │ │ └── workers_icon.svg │ │ ├── smallCross.svg │ │ ├── snackBar-close-icon.svg │ │ ├── ubs-admin-employees │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-up.svg │ │ │ ├── bin.svg │ │ │ ├── cross.svg │ │ │ ├── crumbs.svg │ │ │ ├── edit.svg │ │ │ ├── filter.svg │ │ │ ├── gear.svg │ │ │ ├── info.svg │ │ │ ├── location.svg │ │ │ ├── mail.svg │ │ │ └── phone.svg │ │ ├── ubs-admin-notifications │ │ │ ├── back.svg │ │ │ ├── counterclockwise.svg │ │ │ ├── gear.svg │ │ │ ├── pencil.svg │ │ │ ├── plus.svg │ │ │ └── trashcan.svg │ │ ├── ubs-admin-orders │ │ │ ├── Move-White.svg │ │ │ ├── Move.svg │ │ │ ├── arrow_down.svg │ │ │ ├── arrow_up.svg │ │ │ ├── red_arrow_down.svg │ │ │ └── red_arrow_up.svg │ │ ├── ubs-admin-sidebar │ │ │ ├── arrowLeft.svg │ │ │ └── arrowRight.svg │ │ ├── ubs-tariff │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-right.svg │ │ │ ├── bigClose.svg │ │ │ ├── crumbs.svg │ │ │ ├── delete.svg │ │ │ ├── edit.svg │ │ │ ├── restore.svg │ │ │ ├── setting.svg │ │ │ └── smallCross.svg │ │ ├── ubs │ │ │ ├── Allternative-email-btn.svg │ │ │ ├── Garbage_Bag_Green.svg │ │ │ ├── Garbage_Bag_Green_Big.png │ │ │ ├── armored_truck.svg │ │ │ ├── arrow_left_ubs_messages.svg │ │ │ ├── arrow_left_ubs_messages_active.svg │ │ │ ├── arrow_right_ubs_messages.svg │ │ │ ├── arrow_right_ubs_messages_active.svg │ │ │ ├── arrow_right_ubs_popup_list.svg │ │ │ ├── auto.svg │ │ │ ├── bag.svg │ │ │ ├── base.svg │ │ │ ├── black-package-cut.png │ │ │ ├── black_garbage_bag.svg │ │ │ ├── clock.png │ │ │ ├── cross.svg │ │ │ ├── drag-and-drop-img.svg │ │ │ ├── first_rectangle.png │ │ │ ├── green_garbage_bag.svg │ │ │ ├── pdfExportIcon.svg │ │ │ ├── polygon.svg │ │ │ ├── second_rectangle.png │ │ │ ├── ubrs.jpg │ │ │ ├── ubs_pick_up.png │ │ │ ├── ubs_pick_up.svg │ │ │ └── ubs_signboard.svg │ │ ├── wave-line.png │ │ └── wave_shape.png │ ├── locations │ │ ├── locations.spec.ts │ │ └── locations.ts │ ├── mocks │ │ ├── achievement │ │ │ └── achievement-list.json │ │ ├── advice │ │ │ └── advice-list.json │ │ ├── eco-news │ │ │ ├── eco-news-list.json │ │ │ └── mock-news-item.ts │ │ ├── events │ │ │ └── mock-events.ts │ │ ├── habit │ │ │ ├── habit-list.json │ │ │ └── mock-habit-calendar.ts │ │ ├── place │ │ │ └── place-list.json │ │ ├── search │ │ │ ├── eco-news-search.json │ │ │ ├── mockPath.ts │ │ │ └── search-list.json │ │ └── user │ │ │ └── user-list.json │ ├── patterns │ │ └── patterns.ts │ ├── place-holder │ │ └── user-sidebar-user-photo-placeholder.jpg │ ├── ubs-employee-form │ │ └── dismiss.svg │ └── vincenty │ │ └── vincenty.ts ├── favicon.ico ├── index.html ├── main.ts ├── manifest.webmanifest ├── mixins │ ├── _mixin.scss │ └── _text_style.scss ├── polyfills.ts ├── styles.scss ├── test.ts └── typography │ ├── _colors.scss │ ├── _colorsUbs.scss │ ├── _fonts.scss │ ├── _fontsUbs.scss │ ├── _resp.scss │ ├── _typography.scss │ └── _typographyUbs.scss ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json_ /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.dependabot/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/.dependabot/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/angular.json -------------------------------------------------------------------------------- /azure-pipelines-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/azure-pipelines-prod.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /chart-test/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/chart-test/go.mod -------------------------------------------------------------------------------- /chart-test/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/chart-test/go.sum -------------------------------------------------------------------------------- /chart-test/k8s_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/chart-test/k8s_test.go -------------------------------------------------------------------------------- /chart-test/valuesTest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/chart-test/valuesTest.yaml -------------------------------------------------------------------------------- /chart-test/values_struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/chart-test/values_struct.go -------------------------------------------------------------------------------- /e2e/protractor-ci.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/e2e/protractor-ci.conf.js -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /greencity-client-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/greencity-client-chart/Chart.yaml -------------------------------------------------------------------------------- /greencity-client-chart/templates/greencity-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/greencity-client-chart/templates/greencity-client.yaml -------------------------------------------------------------------------------- /greencity-client-chart/templates/ingress-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/greencity-client-chart/templates/ingress-client.yaml -------------------------------------------------------------------------------- /greencity-client-chart/templates/service-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/greencity-client-chart/templates/service-client.yaml -------------------------------------------------------------------------------- /greencity-client-chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/greencity-client-chart/values.yaml -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/karma.conf.js -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/nginx.conf -------------------------------------------------------------------------------- /ngsw-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/ngsw-config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/package.json -------------------------------------------------------------------------------- /scripts/delete-public-for-all-project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/scripts/delete-public-for-all-project.ts -------------------------------------------------------------------------------- /scripts/delete-public-for-commit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/scripts/delete-public-for-commit.ts -------------------------------------------------------------------------------- /scripts/setenv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/scripts/setenv.ts -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/app.component.scss -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/chat/chat-icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/chat/chat-icons.ts -------------------------------------------------------------------------------- /src/app/chat/chat.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/chat/chat.module.ts -------------------------------------------------------------------------------- /src/app/chat/component/chat-page/chat-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/chat/component/chat-page/chat-page.component.ts -------------------------------------------------------------------------------- /src/app/chat/component/chat-page/mock-translate.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/chat/component/chat-page/mock-translate.mock.ts -------------------------------------------------------------------------------- /src/app/chat/data/chat-api.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/chat/data/chat-api.service.spec.ts -------------------------------------------------------------------------------- /src/app/chat/data/chat-api.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/chat/data/chat-api.service.ts -------------------------------------------------------------------------------- /src/app/chat/facade/chat-facade.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/chat/facade/chat-facade.spec.ts -------------------------------------------------------------------------------- /src/app/chat/facade/chat.facade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/chat/facade/chat.facade.ts -------------------------------------------------------------------------------- /src/app/chat/model/chat-page.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/chat/model/chat-page.interface.ts -------------------------------------------------------------------------------- /src/app/chat/model/socket-chat-message.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/chat/model/socket-chat-message.interface.ts -------------------------------------------------------------------------------- /src/app/chat/model/socket-new-chat.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/chat/model/socket-new-chat.interface.ts -------------------------------------------------------------------------------- /src/app/chat/service/chats/telegram-socket.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/chat/service/chats/telegram-socket.service.ts -------------------------------------------------------------------------------- /src/app/chat/ui/chat-sidebar/chat-sidebar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/chat/ui/chat-sidebar/chat-sidebar.component.html -------------------------------------------------------------------------------- /src/app/chat/ui/chat-sidebar/chat-sidebar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/chat/ui/chat-sidebar/chat-sidebar.component.ts -------------------------------------------------------------------------------- /src/app/chat/ui/message-input/message-input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/chat/ui/message-input/message-input.component.ts -------------------------------------------------------------------------------- /src/app/chat/ui/messages-list/messages-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/chat/ui/messages-list/messages-list.component.ts -------------------------------------------------------------------------------- /src/app/chat/ui/status-ticks/status-ticks.component.html: -------------------------------------------------------------------------------- 1 |

status-ticks works!

2 | -------------------------------------------------------------------------------- /src/app/chat/ui/status-ticks/status-ticks.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/chat/ui/status-ticks/status-ticks.component.ts -------------------------------------------------------------------------------- /src/app/chat/utils/chat-mappers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/chat/utils/chat-mappers.spec.ts -------------------------------------------------------------------------------- /src/app/chat/utils/chat-mappers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/chat/utils/chat-mappers.ts -------------------------------------------------------------------------------- /src/app/focus-detection.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/focus-detection.service.ts -------------------------------------------------------------------------------- /src/app/greencity/components/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/components/footer/footer.component.ts -------------------------------------------------------------------------------- /src/app/greencity/components/greencity-main/greencity-main.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/greencity/greencity.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/greencity.module.ts -------------------------------------------------------------------------------- /src/app/greencity/greencity.routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/greencity.routing.module.ts -------------------------------------------------------------------------------- /src/app/greencity/image-paths/calendar-icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/image-paths/calendar-icons.ts -------------------------------------------------------------------------------- /src/app/greencity/image-paths/footer-icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/image-paths/footer-icons.ts -------------------------------------------------------------------------------- /src/app/greencity/image-paths/habits-images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/image-paths/habits-images.ts -------------------------------------------------------------------------------- /src/app/greencity/image-paths/places-icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/image-paths/places-icons.ts -------------------------------------------------------------------------------- /src/app/greencity/image-paths/profile-icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/image-paths/profile-icons.ts -------------------------------------------------------------------------------- /src/app/greencity/image-paths/profile-images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/image-paths/profile-images.ts -------------------------------------------------------------------------------- /src/app/greencity/image-paths/search-icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/image-paths/search-icons.ts -------------------------------------------------------------------------------- /src/app/greencity/image-paths/single-news-images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/image-paths/single-news-images.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/about/about-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/about/about-routing.module.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/about/about.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/about/about.module.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/comments/comments.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/comments/comments.module.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/eco-news/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/eco-news/components/index.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/eco-news/eco-news.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/eco-news/eco-news.component.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/eco-news/eco-news.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/eco-news/eco-news.module.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/events/components/event-editor/event-editor.component.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/greencity/modules/events/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/events/components/index.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/events/events.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/events/events.component.html -------------------------------------------------------------------------------- /src/app/greencity/modules/events/events.component.scss: -------------------------------------------------------------------------------- 1 | .wrapper { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/greencity/modules/events/events.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/events/events.component.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/events/events.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/events/events.module.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/events/models/event-consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/events/models/event-consts.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/home/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/home/components/index.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/home/home.module.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/home/models/NewsDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/home/models/NewsDto.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/home/models/SubscriptionDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/home/models/SubscriptionDto.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/places/models/place.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/places/models/place.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/places/models/places-consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/places/models/places-consts.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/places/models/places-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/places/models/places-filter.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/places/places.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/places/places.component.html -------------------------------------------------------------------------------- /src/app/greencity/modules/places/places.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/places/places.component.scss -------------------------------------------------------------------------------- /src/app/greencity/modules/places/places.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/places/places.component.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/places/places.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/places/places.module.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/user/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/user/components/index.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/user/components/profile/profile-widget/profile-widget.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/greencity/modules/user/mocks/friends-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/user/mocks/friends-mock.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/user/models/AdviceDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/user/models/AdviceDto.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/user/models/ecoPlaces.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/user/models/ecoPlaces.model.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/user/models/factOfTheDay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/user/models/factOfTheDay.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/user/models/friend.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/user/models/friend.model.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/user/models/habit/HabitDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/user/models/habit/HabitDto.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/user/models/news.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/user/models/news.model.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/user/models/roles.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/user/models/roles.model.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/user/models/user/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/user/models/user/user.model.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/user/user-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/user/user-routing.module.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/user/user.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/user/user.component.html -------------------------------------------------------------------------------- /src/app/greencity/modules/user/user.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/user/user.component.ts -------------------------------------------------------------------------------- /src/app/greencity/modules/user/user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/modules/user/user.module.ts -------------------------------------------------------------------------------- /src/app/greencity/shared/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/shared/components/index.ts -------------------------------------------------------------------------------- /src/app/greencity/shared/service/comment/comment-model/estimate/estimate.ts: -------------------------------------------------------------------------------- 1 | export class Estimate { 2 | rate: number; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/greencity/shared/service/habit/habit.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/shared/service/habit/habit.service.ts -------------------------------------------------------------------------------- /src/app/greencity/shared/service/image/image.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/shared/service/image/image.service.ts -------------------------------------------------------------------------------- /src/app/greencity/shared/service/news/news.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/shared/service/news/news.service.ts -------------------------------------------------------------------------------- /src/app/greencity/shared/shared-greencity.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/greencity/shared/shared-greencity.module.ts -------------------------------------------------------------------------------- /src/app/main/component/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/main/component/auth/auth.module.ts -------------------------------------------------------------------------------- /src/app/main/component/auth/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/main/component/auth/components/index.ts -------------------------------------------------------------------------------- /src/app/main/component/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/main/component/core/core.module.ts -------------------------------------------------------------------------------- /src/app/main/http-response-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/main/http-response-status.ts -------------------------------------------------------------------------------- /src/app/main/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/main/links.ts -------------------------------------------------------------------------------- /src/app/main/main.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/main/main.component.html -------------------------------------------------------------------------------- /src/app/main/main.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/main/main.component.scss -------------------------------------------------------------------------------- /src/app/main/main.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/main/main.component.spec.ts -------------------------------------------------------------------------------- /src/app/main/main.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/main/main.component.ts -------------------------------------------------------------------------------- /src/app/main/main.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/main/main.module.ts -------------------------------------------------------------------------------- /src/app/main/title-meta-tags/meta/meta-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/main/title-meta-tags/meta/meta-model.ts -------------------------------------------------------------------------------- /src/app/main/title-meta-tags/meta/metas-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/main/title-meta-tags/meta/metas-model.ts -------------------------------------------------------------------------------- /src/app/material.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/material.module.ts -------------------------------------------------------------------------------- /src/app/shared/components/form-base/form-base.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/components/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/components/header/header.component.html -------------------------------------------------------------------------------- /src/app/shared/components/header/header.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/components/header/header.component.scss -------------------------------------------------------------------------------- /src/app/shared/components/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/components/header/header.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/input-error/input-error.component.html: -------------------------------------------------------------------------------- 1 |
2 | {{ errorMessage | translate }} 3 |
4 | -------------------------------------------------------------------------------- /src/app/shared/components/spinner/spinner.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/components/spinner/spinner.component.html -------------------------------------------------------------------------------- /src/app/shared/components/spinner/spinner.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/components/spinner/spinner.component.scss -------------------------------------------------------------------------------- /src/app/shared/components/spinner/spinner.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/components/spinner/spinner.component.ts -------------------------------------------------------------------------------- /src/app/shared/directives/close-dropdown.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/directives/close-dropdown.directive.ts -------------------------------------------------------------------------------- /src/app/shared/directives/linkify.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/directives/linkify.directive.spec.ts -------------------------------------------------------------------------------- /src/app/shared/directives/linkify.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/directives/linkify.directive.ts -------------------------------------------------------------------------------- /src/app/shared/directives/space-prevent.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/directives/space-prevent.directive.ts -------------------------------------------------------------------------------- /src/app/shared/guards/non-admin.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/guards/non-admin.guard.spec.ts -------------------------------------------------------------------------------- /src/app/shared/guards/non-admin.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/guards/non-admin.guard.ts -------------------------------------------------------------------------------- /src/app/shared/helpers/quillEditorFunc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/helpers/quillEditorFunc.ts -------------------------------------------------------------------------------- /src/app/shared/i18n/Language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/i18n/Language.ts -------------------------------------------------------------------------------- /src/app/shared/i18n/language-id.ts: -------------------------------------------------------------------------------- 1 | export interface LanguageId { 2 | id: number; 3 | code: string; 4 | } 5 | -------------------------------------------------------------------------------- /src/app/shared/i18n/language.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/i18n/language.service.spec.ts -------------------------------------------------------------------------------- /src/app/shared/i18n/language.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/i18n/language.service.ts -------------------------------------------------------------------------------- /src/app/shared/image-paths/auth-images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/image-paths/auth-images.ts -------------------------------------------------------------------------------- /src/app/shared/image-paths/header-icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/image-paths/header-icons.ts -------------------------------------------------------------------------------- /src/app/shared/image-paths/sign-in-icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/image-paths/sign-in-icons.ts -------------------------------------------------------------------------------- /src/app/shared/interceptors/interceptor.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/interceptors/interceptor.service.spec.ts -------------------------------------------------------------------------------- /src/app/shared/interceptors/interceptor.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/interceptors/interceptor.service.ts -------------------------------------------------------------------------------- /src/app/shared/models/DiscountDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/DiscountDto.ts -------------------------------------------------------------------------------- /src/app/shared/models/UserForListDto.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/UserForListDto.model.ts -------------------------------------------------------------------------------- /src/app/shared/models/auth/project-name.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/auth/project-name.enum.ts -------------------------------------------------------------------------------- /src/app/shared/models/auth/project-name.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/auth/project-name.type.ts -------------------------------------------------------------------------------- /src/app/shared/models/auth/sign-in-response.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/auth/sign-in-response.interface.ts -------------------------------------------------------------------------------- /src/app/shared/models/auth/sign-in.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/auth/sign-in.interface.ts -------------------------------------------------------------------------------- /src/app/shared/models/auth/sign-up.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/auth/sign-up.interface.ts -------------------------------------------------------------------------------- /src/app/shared/models/auth/user-role.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/auth/user-role.type.ts -------------------------------------------------------------------------------- /src/app/shared/models/breakTimes.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/breakTimes.model.ts -------------------------------------------------------------------------------- /src/app/shared/models/category.model.ts: -------------------------------------------------------------------------------- 1 | export class CategoryDto { 2 | name: string; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/shared/models/file-handle.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/file-handle.model.ts -------------------------------------------------------------------------------- /src/app/shared/models/languageModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/languageModel.ts -------------------------------------------------------------------------------- /src/app/shared/models/locationDto.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/locationDto.model.ts -------------------------------------------------------------------------------- /src/app/shared/models/map/map-bounds.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/map/map-bounds.spec.ts -------------------------------------------------------------------------------- /src/app/shared/models/map/map-bounds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/map/map-bounds.ts -------------------------------------------------------------------------------- /src/app/shared/models/mouse-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/mouse-events.ts -------------------------------------------------------------------------------- /src/app/shared/models/openingHours.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/openingHours.model.ts -------------------------------------------------------------------------------- /src/app/shared/models/photo/photo.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/photo/photo.spec.ts -------------------------------------------------------------------------------- /src/app/shared/models/photo/photo.ts: -------------------------------------------------------------------------------- 1 | export class Photo { 2 | name: string; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/shared/models/place/commentDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/place/commentDto.ts -------------------------------------------------------------------------------- /src/app/shared/models/place/location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/place/location.ts -------------------------------------------------------------------------------- /src/app/shared/models/place/place-info.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/place/place-info.spec.ts -------------------------------------------------------------------------------- /src/app/shared/models/place/place-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/place/place-info.ts -------------------------------------------------------------------------------- /src/app/shared/models/place/place.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/place/place.spec.ts -------------------------------------------------------------------------------- /src/app/shared/models/place/update-place-status.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/place/update-place-status.model.ts -------------------------------------------------------------------------------- /src/app/shared/models/placeAddDto.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/placeAddDto.model.ts -------------------------------------------------------------------------------- /src/app/shared/models/placeStatus.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/placeStatus.model.ts -------------------------------------------------------------------------------- /src/app/shared/models/restroreDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/restroreDto.ts -------------------------------------------------------------------------------- /src/app/shared/models/search-dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/search-dto.ts -------------------------------------------------------------------------------- /src/app/shared/models/singIn-singUp/user-own-sign-in.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/singIn-singUp/user-own-sign-in.ts -------------------------------------------------------------------------------- /src/app/shared/models/singIn-singUp/user-own-sign-up.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/singIn-singUp/user-own-sign-up.ts -------------------------------------------------------------------------------- /src/app/shared/models/specification/SpecificationNameDto.ts: -------------------------------------------------------------------------------- 1 | export class SpecificationNameDto { 2 | name: string; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/shared/models/specification/specification.ts: -------------------------------------------------------------------------------- 1 | export class Specification { 2 | id: number; 3 | name: string; 4 | } 5 | -------------------------------------------------------------------------------- /src/app/shared/models/updatePasswordDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/updatePasswordDto.ts -------------------------------------------------------------------------------- /src/app/shared/models/weekDays.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/models/weekDays.model.ts -------------------------------------------------------------------------------- /src/app/shared/pipes/relative-date/relative-date.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/pipes/relative-date/relative-date.pipe.ts -------------------------------------------------------------------------------- /src/app/shared/services/address/address.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/services/address/address.service.spec.ts -------------------------------------------------------------------------------- /src/app/shared/services/address/address.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/services/address/address.service.ts -------------------------------------------------------------------------------- /src/app/shared/services/auth/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/services/auth/auth/auth.service.ts -------------------------------------------------------------------------------- /src/app/shared/services/auth/change-password.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/services/auth/change-password.service.ts -------------------------------------------------------------------------------- /src/app/shared/services/auth/google-sign-in.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/services/auth/google-sign-in.service.ts -------------------------------------------------------------------------------- /src/app/shared/services/auth/user-own-auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/services/auth/user-own-auth.service.ts -------------------------------------------------------------------------------- /src/app/shared/services/auth/user-own-sign-in.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/services/auth/user-own-sign-in.service.ts -------------------------------------------------------------------------------- /src/app/shared/services/auth/user-own-sign-up.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/services/auth/user-own-sign-up.service.ts -------------------------------------------------------------------------------- /src/app/shared/services/habit-statistic/OnLogout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/services/habit-statistic/OnLogout.ts -------------------------------------------------------------------------------- /src/app/shared/services/header/header.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/services/header/header.service.spec.ts -------------------------------------------------------------------------------- /src/app/shared/services/header/header.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/services/header/header.service.ts -------------------------------------------------------------------------------- /src/app/shared/services/jwt/jwt.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/services/jwt/jwt.service.ts -------------------------------------------------------------------------------- /src/app/shared/services/mat-snack-bar/error-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/services/mat-snack-bar/error-constants.ts -------------------------------------------------------------------------------- /src/app/shared/services/meta/meta.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/services/meta/meta.service.spec.ts -------------------------------------------------------------------------------- /src/app/shared/services/meta/meta.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/services/meta/meta.service.ts -------------------------------------------------------------------------------- /src/app/shared/services/moment-date-adapter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/services/moment-date-adapter/index.ts -------------------------------------------------------------------------------- /src/app/shared/services/place/place.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/services/place/place.service.spec.ts -------------------------------------------------------------------------------- /src/app/shared/services/place/place.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/services/place/place.service.ts -------------------------------------------------------------------------------- /src/app/shared/services/search/search.service.spec.ts_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/services/search/search.service.spec.ts_ -------------------------------------------------------------------------------- /src/app/shared/services/search/search.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/services/search/search.service.ts -------------------------------------------------------------------------------- /src/app/shared/services/socket/socket-state.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/services/socket/socket-state.enum.ts -------------------------------------------------------------------------------- /src/app/shared/services/socket/socket.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/services/socket/socket.service.ts -------------------------------------------------------------------------------- /src/app/shared/services/user/user.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/services/user/user.service.spec.ts -------------------------------------------------------------------------------- /src/app/shared/services/user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/services/user/user.service.ts -------------------------------------------------------------------------------- /src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /src/app/store/actions/auth.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/actions/auth.actions.ts -------------------------------------------------------------------------------- /src/app/store/actions/authority.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/actions/authority.actions.ts -------------------------------------------------------------------------------- /src/app/store/actions/bigOrderTable.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/actions/bigOrderTable.actions.ts -------------------------------------------------------------------------------- /src/app/store/actions/ecoEvents.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/actions/ecoEvents.actions.ts -------------------------------------------------------------------------------- /src/app/store/actions/ecoNews.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/actions/ecoNews.actions.ts -------------------------------------------------------------------------------- /src/app/store/actions/employee.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/actions/employee.actions.ts -------------------------------------------------------------------------------- /src/app/store/actions/friends.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/actions/friends.actions.ts -------------------------------------------------------------------------------- /src/app/store/actions/habit.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/actions/habit.actions.ts -------------------------------------------------------------------------------- /src/app/store/actions/order.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/actions/order.actions.ts -------------------------------------------------------------------------------- /src/app/store/actions/tariff.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/actions/tariff.actions.ts -------------------------------------------------------------------------------- /src/app/store/actions/ubs-admin.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/actions/ubs-admin.actions.ts -------------------------------------------------------------------------------- /src/app/store/actions/ubs-user.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/actions/ubs-user.actions.ts -------------------------------------------------------------------------------- /src/app/store/effects/auth.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/effects/auth.effects.ts -------------------------------------------------------------------------------- /src/app/store/effects/authority.effects.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/effects/authority.effects.spec.ts -------------------------------------------------------------------------------- /src/app/store/effects/authority.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/effects/authority.effects.ts -------------------------------------------------------------------------------- /src/app/store/effects/bigOrderTable.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/effects/bigOrderTable.effects.ts -------------------------------------------------------------------------------- /src/app/store/effects/ecoEvents.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/effects/ecoEvents.effects.ts -------------------------------------------------------------------------------- /src/app/store/effects/ecoNews.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/effects/ecoNews.effects.ts -------------------------------------------------------------------------------- /src/app/store/effects/employee.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/effects/employee.effects.ts -------------------------------------------------------------------------------- /src/app/store/effects/friends.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/effects/friends.effects.ts -------------------------------------------------------------------------------- /src/app/store/effects/order.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/effects/order.effects.ts -------------------------------------------------------------------------------- /src/app/store/effects/tariff.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/effects/tariff.effects.ts -------------------------------------------------------------------------------- /src/app/store/effects/ubs-user.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/effects/ubs-user.effects.ts -------------------------------------------------------------------------------- /src/app/store/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/functions.ts -------------------------------------------------------------------------------- /src/app/store/reducers/app.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/reducers/app.reducer.ts -------------------------------------------------------------------------------- /src/app/store/reducers/auth.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/reducers/auth.reducer.ts -------------------------------------------------------------------------------- /src/app/store/reducers/authority.reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/reducers/authority.reducer.spec.ts -------------------------------------------------------------------------------- /src/app/store/reducers/authority.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/reducers/authority.reducer.ts -------------------------------------------------------------------------------- /src/app/store/reducers/bigOrderTable.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/reducers/bigOrderTable.reducer.ts -------------------------------------------------------------------------------- /src/app/store/reducers/ecoEvents.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/reducers/ecoEvents.reducer.ts -------------------------------------------------------------------------------- /src/app/store/reducers/ecoNews.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/reducers/ecoNews.reducer.ts -------------------------------------------------------------------------------- /src/app/store/reducers/employee.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/reducers/employee.reducer.ts -------------------------------------------------------------------------------- /src/app/store/reducers/friends.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/reducers/friends.reducer.ts -------------------------------------------------------------------------------- /src/app/store/reducers/habit.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/reducers/habit.reducer.ts -------------------------------------------------------------------------------- /src/app/store/reducers/order.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/reducers/order.reducer.ts -------------------------------------------------------------------------------- /src/app/store/reducers/tariff.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/reducers/tariff.reducer.ts -------------------------------------------------------------------------------- /src/app/store/reducers/ubs-admin.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/reducers/ubs-admin.reducer.ts -------------------------------------------------------------------------------- /src/app/store/reducers/ubs-user.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/reducers/ubs-user.reducer.ts -------------------------------------------------------------------------------- /src/app/store/selectors/auth.selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/selectors/auth.selectors.ts -------------------------------------------------------------------------------- /src/app/store/selectors/authority.selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/selectors/authority.selectors.spec.ts -------------------------------------------------------------------------------- /src/app/store/selectors/authority.selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/selectors/authority.selectors.ts -------------------------------------------------------------------------------- /src/app/store/selectors/big-order-table.selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/selectors/big-order-table.selectors.ts -------------------------------------------------------------------------------- /src/app/store/selectors/employee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/selectors/employee.ts -------------------------------------------------------------------------------- /src/app/store/selectors/order.selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/selectors/order.selectors.ts -------------------------------------------------------------------------------- /src/app/store/selectors/ubs-admin.selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/selectors/ubs-admin.selectors.ts -------------------------------------------------------------------------------- /src/app/store/selectors/ubs-user.selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/selectors/ubs-user.selectors.ts -------------------------------------------------------------------------------- /src/app/store/state/app.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/state/app.state.ts -------------------------------------------------------------------------------- /src/app/store/state/auth.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/state/auth.state.ts -------------------------------------------------------------------------------- /src/app/store/state/authority.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/state/authority.state.ts -------------------------------------------------------------------------------- /src/app/store/state/bigOrderTable.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/state/bigOrderTable.state.ts -------------------------------------------------------------------------------- /src/app/store/state/ecoEvents.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/state/ecoEvents.state.ts -------------------------------------------------------------------------------- /src/app/store/state/ecoNews.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/state/ecoNews.state.ts -------------------------------------------------------------------------------- /src/app/store/state/employee.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/state/employee.state.ts -------------------------------------------------------------------------------- /src/app/store/state/friends.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/state/friends.state.ts -------------------------------------------------------------------------------- /src/app/store/state/habit.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/state/habit.state.ts -------------------------------------------------------------------------------- /src/app/store/state/order.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/state/order.state.ts -------------------------------------------------------------------------------- /src/app/store/state/tariff.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/state/tariff.state.ts -------------------------------------------------------------------------------- /src/app/store/state/ubs-admin.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/state/ubs-admin.state.ts -------------------------------------------------------------------------------- /src/app/store/state/ubs-user.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/store/state/ubs-user.state.ts -------------------------------------------------------------------------------- /src/app/ubs/mocks/address-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/mocks/address-mock.ts -------------------------------------------------------------------------------- /src/app/ubs/mocks/google-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/mocks/google-types.ts -------------------------------------------------------------------------------- /src/app/ubs/mocks/order-data-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/mocks/order-data-mock.ts -------------------------------------------------------------------------------- /src/app/ubs/shared/components/ubs-footer/footer-links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/shared/components/ubs-footer/footer-links.ts -------------------------------------------------------------------------------- /src/app/ubs/shared/image-paths/ubs-main-page-images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/shared/image-paths/ubs-main-page-images.ts -------------------------------------------------------------------------------- /src/app/ubs/shared/image-paths/ubs-user-images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/shared/image-paths/ubs-user-images.ts -------------------------------------------------------------------------------- /src/app/ubs/shared/pipes/cron-pipe/cron.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/shared/pipes/cron-pipe/cron.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/ubs/shared/pipes/cron-pipe/cron.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/shared/pipes/cron-pipe/cron.pipe.ts -------------------------------------------------------------------------------- /src/app/ubs/shared/pipes/repeat-pipe/repeat.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/shared/pipes/repeat-pipe/repeat.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/ubs/shared/pipes/repeat-pipe/repeat.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/shared/pipes/repeat-pipe/repeat.pipe.ts -------------------------------------------------------------------------------- /src/app/ubs/shared/pipes/volume-pipe/volume.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/shared/pipes/volume-pipe/volume.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/ubs/shared/pipes/volume-pipe/volume.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/shared/pipes/volume-pipe/volume.pipe.ts -------------------------------------------------------------------------------- /src/app/ubs/shared/ubs-shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/shared/ubs-shared.module.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/models/admin-tables.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/models/admin-tables.model.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/models/customers-table.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/models/customers-table.model.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/models/edit-cell.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/models/edit-cell.model.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/models/image-file.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/models/image-file.model.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/models/notifications.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/models/notifications.model.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/models/tariffs.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/models/tariffs.interface.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/models/ubs-admin.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/models/ubs-admin.interface.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/models/ubs-pop-up.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/models/ubs-pop-up.interface.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/models/ubs-user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/models/ubs-user.model.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/models/user-agreement.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/models/user-agreement.interface.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/models/violation.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/models/violation.model.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/services/admin-table.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/services/admin-table.service.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/services/authority.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/services/authority.service.spec.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/services/authority.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/services/authority.service.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/services/cron/cron.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/services/cron/cron.service.spec.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/services/cron/cron.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/services/cron/cron.service.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/services/cron/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/services/cron/locales/en.json -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/services/cron/locales/locales.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/services/cron/locales/locales.d.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/services/cron/locales/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/services/cron/locales/uk.json -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/services/notifications.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/services/notifications.mock.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/services/notifications.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/services/notifications.service.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/services/order.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/services/order.service.spec.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/services/order.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/services/order.service.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/services/orderInfoMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/services/orderInfoMock.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/services/table-height.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/services/table-height.service.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/services/table-keys.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/services/table-keys.enum.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/services/tariffs.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/services/tariffs.service.spec.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/services/tariffs.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/services/tariffs.service.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/ubs-admin-guard.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/ubs-admin-guard.guard.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/ubs-admin-guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/ubs-admin-guard.spec.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/ubs-admin-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/ubs-admin-routing.module.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/ubs-admin.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/ubs-admin.component.html -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/ubs-admin.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/ubs-admin.component.scss -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/ubs-admin.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/ubs-admin.component.spec.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/ubs-admin.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/ubs-admin.component.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/ubs-admin.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/ubs-admin.module.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-admin/unsaved-changes-guard.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-admin/unsaved-changes-guard.guard.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-db-display/models/table.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-db-display/models/table.model.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-db-display/services/table.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-db-display/services/table.service.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-db-display/ubs-db-display.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-db-display/ubs-db-display.module.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-user/components/ubs-user-bonuses/models/IBonus.interface.ts: -------------------------------------------------------------------------------- 1 | export interface IBonus { 2 | points: number; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/ubs/ubs-user/components/ubs-user-messages/notification-body/notification-body.component.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /src/app/ubs/ubs-user/guards/ubs-user-guard.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-user/guards/ubs-user-guard.guard.spec.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-user/guards/ubs-user-guard.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-user/guards/ubs-user-guard.guard.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-user/services/client-profile.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-user/services/client-profile.service.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-user/services/location/location.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-user/services/location/location.spec.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-user/services/user-messages.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-user/services/user-messages.service.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-user/services/user-orders.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-user/services/user-orders.service.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-user/ubs-user-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-user/ubs-user-routing.module.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-user/ubs-user.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-user/ubs-user.component.html -------------------------------------------------------------------------------- /src/app/ubs/ubs-user/ubs-user.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-user/ubs-user.component.scss -------------------------------------------------------------------------------- /src/app/ubs/ubs-user/ubs-user.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-user/ubs-user.component.spec.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-user/ubs-user.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-user/ubs-user.component.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs-user/ubs-user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs-user/ubs-user.module.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs.module.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs/enums/certificate-status.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs/enums/certificate-status.enum.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs/enums/client-status.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs/enums/client-status.enum.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs/enums/notification-platform.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs/enums/notification-platform.enum.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs/enums/order-status.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs/enums/order-status.enum.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs/enums/violation-level.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs/enums/violation-level.enum.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs/guards/stepper/stepper.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs/guards/stepper/stepper.guard.spec.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs/guards/stepper/stepper.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs/guards/stepper/stepper.guard.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs/interface/ubs-base-sidebar-interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs/interface/ubs-base-sidebar-interface.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs/models/ubs-sidebar-links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs/models/ubs-sidebar-links.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs/models/ubs.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs/models/ubs.interface.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs/models/ubs.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs/models/ubs.model.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs/services/event-type.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs/services/event-type.enum.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs/services/order-validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs/services/order-validators.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs/services/order.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs/services/order.service.spec.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs/services/order.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs/services/order.service.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs/services/ubs-order-form.service.spec.ts_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs/services/ubs-order-form.service.spec.ts_ -------------------------------------------------------------------------------- /src/app/ubs/ubs/services/ubs-order-form.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs/services/ubs-order-form.service.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs/ubs-order.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs/ubs-order.component.html -------------------------------------------------------------------------------- /src/app/ubs/ubs/ubs-order.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs/ubs-order.component.scss -------------------------------------------------------------------------------- /src/app/ubs/ubs/ubs-order.component.spec.ts_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs/ubs-order.component.spec.ts_ -------------------------------------------------------------------------------- /src/app/ubs/ubs/ubs-order.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs/ubs-order.component.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs/ubs-order.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs/ubs-order.module.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs/ubs-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs/ubs-routing.module.ts -------------------------------------------------------------------------------- /src/app/ubs/ubs/validators/address-validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/app/ubs/ubs/validators/address-validators.ts -------------------------------------------------------------------------------- /src/assets/admin-header/email-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/admin-header/email-icon.svg -------------------------------------------------------------------------------- /src/assets/admin-header/face-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/admin-header/face-icon.svg -------------------------------------------------------------------------------- /src/assets/admin-header/insta-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/admin-header/insta-icon.svg -------------------------------------------------------------------------------- /src/assets/admin-header/logo-admin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/admin-header/logo-admin.svg -------------------------------------------------------------------------------- /src/assets/admin-header/logo-footer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/admin-header/logo-footer.svg -------------------------------------------------------------------------------- /src/assets/admin-header/new-logo-admin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/admin-header/new-logo-admin.svg -------------------------------------------------------------------------------- /src/assets/admin-header/patreon-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/admin-header/patreon-icon.svg -------------------------------------------------------------------------------- /src/assets/admin-header/pickup-footer-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/admin-header/pickup-footer-logo.svg -------------------------------------------------------------------------------- /src/assets/admin-header/pickup-header-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/admin-header/pickup-header-logo.svg -------------------------------------------------------------------------------- /src/assets/admin-header/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/admin-header/search.svg -------------------------------------------------------------------------------- /src/assets/admin-header/telegram-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/admin-header/telegram-icon.svg -------------------------------------------------------------------------------- /src/assets/admin-header/tik-tok-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/admin-header/tik-tok-icon.svg -------------------------------------------------------------------------------- /src/assets/admin-header/you-tube-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/admin-header/you-tube-icon.svg -------------------------------------------------------------------------------- /src/assets/all-json/eco-news.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/all-json/eco-news.json -------------------------------------------------------------------------------- /src/assets/all-json/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/all-json/search.json -------------------------------------------------------------------------------- /src/assets/events-icons/Vector-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/events-icons/Vector-big.png -------------------------------------------------------------------------------- /src/assets/events-icons/Vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/events-icons/Vector.png -------------------------------------------------------------------------------- /src/assets/events-icons/author.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/events-icons/author.png -------------------------------------------------------------------------------- /src/assets/events-icons/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/events-icons/background.png -------------------------------------------------------------------------------- /src/assets/events-icons/bookmark-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/events-icons/bookmark-active.png -------------------------------------------------------------------------------- /src/assets/events-icons/bookmark-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/events-icons/bookmark-grey.png -------------------------------------------------------------------------------- /src/assets/events-icons/bookmark-set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/events-icons/bookmark-set.png -------------------------------------------------------------------------------- /src/assets/events-icons/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/events-icons/clock.png -------------------------------------------------------------------------------- /src/assets/events-icons/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/events-icons/cross.png -------------------------------------------------------------------------------- /src/assets/events-icons/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/events-icons/date.png -------------------------------------------------------------------------------- /src/assets/events-icons/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/events-icons/frame.png -------------------------------------------------------------------------------- /src/assets/events-icons/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/events-icons/like.png -------------------------------------------------------------------------------- /src/assets/events-icons/lock-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/events-icons/lock-closed.png -------------------------------------------------------------------------------- /src/assets/events-icons/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/events-icons/lock-open.png -------------------------------------------------------------------------------- /src/assets/events-icons/my-event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/events-icons/my-event.png -------------------------------------------------------------------------------- /src/assets/events-icons/place.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/events-icons/place.png -------------------------------------------------------------------------------- /src/assets/events-icons/place2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/events-icons/place2.png -------------------------------------------------------------------------------- /src/assets/events-icons/search-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/events-icons/search-active.png -------------------------------------------------------------------------------- /src/assets/events-icons/search-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/events-icons/search-hover.png -------------------------------------------------------------------------------- /src/assets/events-icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/events-icons/search.png -------------------------------------------------------------------------------- /src/assets/events-icons/star-empthy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/events-icons/star-empthy.svg -------------------------------------------------------------------------------- /src/assets/events-icons/star-filled-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/events-icons/star-filled-big.png -------------------------------------------------------------------------------- /src/assets/events-icons/star-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/events-icons/star-filled.png -------------------------------------------------------------------------------- /src/assets/events-icons/star-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/events-icons/star-filled.svg -------------------------------------------------------------------------------- /src/assets/google-script/google-script.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/google-script/google-script.spec.ts -------------------------------------------------------------------------------- /src/assets/google-script/google-script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/google-script/google-script.ts -------------------------------------------------------------------------------- /src/assets/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/i18n/en.json -------------------------------------------------------------------------------- /src/assets/i18n/ubs-admin/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/i18n/ubs-admin/en.json -------------------------------------------------------------------------------- /src/assets/i18n/ubs-admin/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/i18n/ubs-admin/uk.json -------------------------------------------------------------------------------- /src/assets/i18n/ubs-user/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/i18n/ubs-user/en.json -------------------------------------------------------------------------------- /src/assets/i18n/ubs-user/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/i18n/ubs-user/uk.json -------------------------------------------------------------------------------- /src/assets/i18n/ubs/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/i18n/ubs/en.json -------------------------------------------------------------------------------- /src/assets/i18n/ubs/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/i18n/ubs/uk.json -------------------------------------------------------------------------------- /src/assets/i18n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/i18n/uk.json -------------------------------------------------------------------------------- /src/assets/icons/Blue_double_ticks.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/icons/Blue_double_ticks.svg.png -------------------------------------------------------------------------------- /src/assets/icons/arrow-down-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/icons/arrow-down-green.svg -------------------------------------------------------------------------------- /src/assets/icons/arrow-down-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/icons/arrow-down-grey.svg -------------------------------------------------------------------------------- /src/assets/icons/habits/calendar-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/icons/habits/calendar-green.svg -------------------------------------------------------------------------------- /src/assets/icons/habits/circle-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/icons/habits/circle-grey.svg -------------------------------------------------------------------------------- /src/assets/icons/habits/doted-minus-green-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/icons/habits/doted-minus-green-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/habits/doted-plus-green-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/icons/habits/doted-plus-green-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/habits/filled-check-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/icons/habits/filled-check-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/habits/filled-check-rectangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/icons/habits/filled-check-rectangle.svg -------------------------------------------------------------------------------- /src/assets/icons/habits/lined-green-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/icons/habits/lined-green-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/habits/lock-icon-closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/icons/habits/lock-icon-closed.svg -------------------------------------------------------------------------------- /src/assets/icons/habits/plus-circle-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/icons/habits/plus-circle-green.svg -------------------------------------------------------------------------------- /src/assets/icons/habits/plus-circle-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/icons/habits/plus-circle-grey.svg -------------------------------------------------------------------------------- /src/assets/icons/habits/plus-circle-small-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/icons/habits/plus-circle-small-green.svg -------------------------------------------------------------------------------- /src/assets/icons/habits/rectangle-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/icons/habits/rectangle-grey.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/icons/icon-128x128.png -------------------------------------------------------------------------------- /src/assets/icons/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/icons/icon-144x144.png -------------------------------------------------------------------------------- /src/assets/icons/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/icons/icon-152x152.png -------------------------------------------------------------------------------- /src/assets/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/icons/icon-192x192.png -------------------------------------------------------------------------------- /src/assets/icons/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/icons/icon-384x384.png -------------------------------------------------------------------------------- /src/assets/icons/icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/icons/icon-48x48.png -------------------------------------------------------------------------------- /src/assets/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/icons/icon-512x512.png -------------------------------------------------------------------------------- /src/assets/icons/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/icons/icon-72x72.png -------------------------------------------------------------------------------- /src/assets/icons/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/icons/icon-96x96.png -------------------------------------------------------------------------------- /src/assets/icons/partners-GoToRe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/icons/partners-GoToRe.png -------------------------------------------------------------------------------- /src/assets/icons/partners-no-waste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/icons/partners-no-waste.png -------------------------------------------------------------------------------- /src/assets/icons/partners-ubs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/icons/partners-ubs.png -------------------------------------------------------------------------------- /src/assets/icons/tick-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/icons/tick-svgrepo-com.svg -------------------------------------------------------------------------------- /src/assets/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/1.png -------------------------------------------------------------------------------- /src/assets/img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/2.png -------------------------------------------------------------------------------- /src/assets/img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/3.png -------------------------------------------------------------------------------- /src/assets/img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/4.png -------------------------------------------------------------------------------- /src/assets/img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/5.png -------------------------------------------------------------------------------- /src/assets/img/Illustrationman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/Illustrationman.png -------------------------------------------------------------------------------- /src/assets/img/Vector3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/Vector3.svg -------------------------------------------------------------------------------- /src/assets/img/Vision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/Vision.png -------------------------------------------------------------------------------- /src/assets/img/achieve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/achieve.png -------------------------------------------------------------------------------- /src/assets/img/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/arrow-down.svg -------------------------------------------------------------------------------- /src/assets/img/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/arrow-right.svg -------------------------------------------------------------------------------- /src/assets/img/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/arrow.png -------------------------------------------------------------------------------- /src/assets/img/arrow_down-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/arrow_down-green.svg -------------------------------------------------------------------------------- /src/assets/img/arrow_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/arrow_down.svg -------------------------------------------------------------------------------- /src/assets/img/arrow_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/arrow_grey.png -------------------------------------------------------------------------------- /src/assets/img/auth/auth-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/auth/auth-img.png -------------------------------------------------------------------------------- /src/assets/img/auth/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/auth/cross.svg -------------------------------------------------------------------------------- /src/assets/img/auth/hided_eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/auth/hided_eye.svg -------------------------------------------------------------------------------- /src/assets/img/auth/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/auth/logo.svg -------------------------------------------------------------------------------- /src/assets/img/auth/open_eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/auth/open_eye.svg -------------------------------------------------------------------------------- /src/assets/img/bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/bell.png -------------------------------------------------------------------------------- /src/assets/img/chat/chats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/chat/chats.svg -------------------------------------------------------------------------------- /src/assets/img/chat/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/chat/close.svg -------------------------------------------------------------------------------- /src/assets/img/chat/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/chat/download.svg -------------------------------------------------------------------------------- /src/assets/img/chat/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/chat/file.svg -------------------------------------------------------------------------------- /src/assets/img/chat/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/chat/image.svg -------------------------------------------------------------------------------- /src/assets/img/chat/new-message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/chat/new-message.svg -------------------------------------------------------------------------------- /src/assets/img/chat/paper-clip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/chat/paper-clip.svg -------------------------------------------------------------------------------- /src/assets/img/chat/profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/chat/profile.svg -------------------------------------------------------------------------------- /src/assets/img/chat/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/chat/search.svg -------------------------------------------------------------------------------- /src/assets/img/chat/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/chat/send.svg -------------------------------------------------------------------------------- /src/assets/img/chat/setting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/chat/setting.svg -------------------------------------------------------------------------------- /src/assets/img/chat/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/chat/settings.svg -------------------------------------------------------------------------------- /src/assets/img/chat/smile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/chat/smile.svg -------------------------------------------------------------------------------- /src/assets/img/chat/telegram-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/chat/telegram-logo.svg -------------------------------------------------------------------------------- /src/assets/img/chat/three-dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/chat/three-dots.svg -------------------------------------------------------------------------------- /src/assets/img/chat/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/chat/user.svg -------------------------------------------------------------------------------- /src/assets/img/comments/arrow-next-disable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/comments/arrow-next-disable.svg -------------------------------------------------------------------------------- /src/assets/img/comments/arrow-next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/comments/arrow-next.svg -------------------------------------------------------------------------------- /src/assets/img/comments/arrow-previous-disable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/comments/arrow-previous-disable.svg -------------------------------------------------------------------------------- /src/assets/img/comments/arrow-previous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/comments/arrow-previous.svg -------------------------------------------------------------------------------- /src/assets/img/comments/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/comments/arrow_down.png -------------------------------------------------------------------------------- /src/assets/img/comments/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/comments/arrow_up.png -------------------------------------------------------------------------------- /src/assets/img/comments/cancel-comment-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/comments/cancel-comment-edit.png -------------------------------------------------------------------------------- /src/assets/img/comments/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/comments/delete.png -------------------------------------------------------------------------------- /src/assets/img/comments/dislike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/comments/dislike.png -------------------------------------------------------------------------------- /src/assets/img/comments/disliked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/comments/disliked.png -------------------------------------------------------------------------------- /src/assets/img/comments/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/comments/edit.png -------------------------------------------------------------------------------- /src/assets/img/comments/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/comments/like.png -------------------------------------------------------------------------------- /src/assets/img/comments/liked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/comments/liked.png -------------------------------------------------------------------------------- /src/assets/img/comments/reply-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/comments/reply-green.svg -------------------------------------------------------------------------------- /src/assets/img/comments/reply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/comments/reply.svg -------------------------------------------------------------------------------- /src/assets/img/curly-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/curly-line.png -------------------------------------------------------------------------------- /src/assets/img/curly-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/curly-line.svg -------------------------------------------------------------------------------- /src/assets/img/dashed-leaves.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/dashed-leaves.svg -------------------------------------------------------------------------------- /src/assets/img/dashed-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/dashed-line.png -------------------------------------------------------------------------------- /src/assets/img/default_news-img.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/default_news-img.svg -------------------------------------------------------------------------------- /src/assets/img/duration-thumb-label-progress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/duration-thumb-label-progress.svg -------------------------------------------------------------------------------- /src/assets/img/duration-thumb-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/duration-thumb-label.png -------------------------------------------------------------------------------- /src/assets/img/duration-thumb-label.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/duration-thumb-label.svg -------------------------------------------------------------------------------- /src/assets/img/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/edit.svg -------------------------------------------------------------------------------- /src/assets/img/events/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/events/clock.svg -------------------------------------------------------------------------------- /src/assets/img/events/default-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/events/default-image.png -------------------------------------------------------------------------------- /src/assets/img/events/ellipsis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/events/ellipsis.svg -------------------------------------------------------------------------------- /src/assets/img/events/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/events/facebook.svg -------------------------------------------------------------------------------- /src/assets/img/events/illustration-earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/events/illustration-earth.png -------------------------------------------------------------------------------- /src/assets/img/events/illustration-money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/events/illustration-money.png -------------------------------------------------------------------------------- /src/assets/img/events/illustration-people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/events/illustration-people.png -------------------------------------------------------------------------------- /src/assets/img/events/illustration-recycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/events/illustration-recycle.png -------------------------------------------------------------------------------- /src/assets/img/events/illustration-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/events/illustration-store.png -------------------------------------------------------------------------------- /src/assets/img/events/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/events/link.svg -------------------------------------------------------------------------------- /src/assets/img/events/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/events/linkedin.svg -------------------------------------------------------------------------------- /src/assets/img/events/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/events/location.svg -------------------------------------------------------------------------------- /src/assets/img/events/lock-closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/events/lock-closed.svg -------------------------------------------------------------------------------- /src/assets/img/events/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/events/lock.svg -------------------------------------------------------------------------------- /src/assets/img/events/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/events/plus.svg -------------------------------------------------------------------------------- /src/assets/img/events/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/events/twitter.svg -------------------------------------------------------------------------------- /src/assets/img/events/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/events/user.svg -------------------------------------------------------------------------------- /src/assets/img/filled_arrow_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/filled_arrow_down.svg -------------------------------------------------------------------------------- /src/assets/img/guy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/guy.png -------------------------------------------------------------------------------- /src/assets/img/habit-circle-bg-shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/habit-circle-bg-shape.png -------------------------------------------------------------------------------- /src/assets/img/habit-pic-bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/habit-pic-bag.png -------------------------------------------------------------------------------- /src/assets/img/habit-pic-cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/habit-pic-cup.png -------------------------------------------------------------------------------- /src/assets/img/habits/default-habit-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/habits/default-habit-image.png -------------------------------------------------------------------------------- /src/assets/img/habits/habit-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/habits/habit-1.png -------------------------------------------------------------------------------- /src/assets/img/habits/habit-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/habits/habit-2.png -------------------------------------------------------------------------------- /src/assets/img/habits/habit-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/habits/habit-3.png -------------------------------------------------------------------------------- /src/assets/img/habits/man.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/habits/man.svg -------------------------------------------------------------------------------- /src/assets/img/icon/Calendar_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/Calendar_icon.png -------------------------------------------------------------------------------- /src/assets/img/icon/Union.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/Union.png -------------------------------------------------------------------------------- /src/assets/img/icon/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/arrow.png -------------------------------------------------------------------------------- /src/assets/img/icon/arrows/arrow-accordion-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/arrows/arrow-accordion-down.svg -------------------------------------------------------------------------------- /src/assets/img/icon/arrows/arrow-down-bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/arrows/arrow-down-bold.svg -------------------------------------------------------------------------------- /src/assets/img/icon/arrows/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/arrows/arrow-left.svg -------------------------------------------------------------------------------- /src/assets/img/icon/arrows/arrow-up-bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/arrows/arrow-up-bold.svg -------------------------------------------------------------------------------- /src/assets/img/icon/arrows/shop-list-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/arrows/shop-list-arrow.svg -------------------------------------------------------------------------------- /src/assets/img/icon/bin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/bin.svg -------------------------------------------------------------------------------- /src/assets/img/icon/bookmark-default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/bookmark-default.svg -------------------------------------------------------------------------------- /src/assets/img/icon/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/calendar.png -------------------------------------------------------------------------------- /src/assets/img/icon/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/calendar.svg -------------------------------------------------------------------------------- /src/assets/img/icon/chats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/chats.svg -------------------------------------------------------------------------------- /src/assets/img/icon/chek-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/chek-circle.png -------------------------------------------------------------------------------- /src/assets/img/icon/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/close.png -------------------------------------------------------------------------------- /src/assets/img/icon/coffee-cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/coffee-cup.png -------------------------------------------------------------------------------- /src/assets/img/icon/coffee_statistic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/coffee_statistic.png -------------------------------------------------------------------------------- /src/assets/img/icon/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/cross.svg -------------------------------------------------------------------------------- /src/assets/img/icon/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/delete.png -------------------------------------------------------------------------------- /src/assets/img/icon/econews/arrow_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/econews/arrow_left.svg -------------------------------------------------------------------------------- /src/assets/img/icon/econews/calendar-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/econews/calendar-icon.svg -------------------------------------------------------------------------------- /src/assets/img/icon/econews/ellipse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/econews/ellipse.svg -------------------------------------------------------------------------------- /src/assets/img/icon/econews/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/econews/facebook.svg -------------------------------------------------------------------------------- /src/assets/img/icon/econews/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/econews/linkedin.svg -------------------------------------------------------------------------------- /src/assets/img/icon/econews/news-default-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/econews/news-default-large.png -------------------------------------------------------------------------------- /src/assets/img/icon/econews/news-default-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/econews/news-default-small.png -------------------------------------------------------------------------------- /src/assets/img/icon/econews/profile-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/econews/profile-icon.svg -------------------------------------------------------------------------------- /src/assets/img/icon/econews/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/econews/twitter.svg -------------------------------------------------------------------------------- /src/assets/img/icon/eye-show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/eye-show.png -------------------------------------------------------------------------------- /src/assets/img/icon/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/eye.png -------------------------------------------------------------------------------- /src/assets/img/icon/facebook-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/facebook-icon.svg -------------------------------------------------------------------------------- /src/assets/img/icon/favorite-place/star-yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/favorite-place/star-yellow.svg -------------------------------------------------------------------------------- /src/assets/img/icon/footer/facebook-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/footer/facebook-icon.svg -------------------------------------------------------------------------------- /src/assets/img/icon/footer/instagram-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/footer/instagram-icon.svg -------------------------------------------------------------------------------- /src/assets/img/icon/footer/linkedin-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/footer/linkedin-icon.svg -------------------------------------------------------------------------------- /src/assets/img/icon/footer/twitter-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/footer/twitter-icon.svg -------------------------------------------------------------------------------- /src/assets/img/icon/footer/youtube-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/footer/youtube-icon.svg -------------------------------------------------------------------------------- /src/assets/img/icon/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/google.svg -------------------------------------------------------------------------------- /src/assets/img/icon/green-city-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/green-city-icon.svg -------------------------------------------------------------------------------- /src/assets/img/icon/idea-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/idea-icon.png -------------------------------------------------------------------------------- /src/assets/img/icon/info-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/info-icon.svg -------------------------------------------------------------------------------- /src/assets/img/icon/instagram-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/instagram-icon.svg -------------------------------------------------------------------------------- /src/assets/img/icon/linkedin-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/linkedin-icon.svg -------------------------------------------------------------------------------- /src/assets/img/icon/location-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/location-icon.png -------------------------------------------------------------------------------- /src/assets/img/icon/mark-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/mark-circle.svg -------------------------------------------------------------------------------- /src/assets/img/icon/notifications-default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/notifications-default.svg -------------------------------------------------------------------------------- /src/assets/img/icon/notifications-has-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/notifications-has-new.svg -------------------------------------------------------------------------------- /src/assets/img/icon/package_statistic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/package_statistic.png -------------------------------------------------------------------------------- /src/assets/img/icon/plus-circle-dotted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/plus-circle-dotted.svg -------------------------------------------------------------------------------- /src/assets/img/icon/plus-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/plus-circle.png -------------------------------------------------------------------------------- /src/assets/img/icon/sign-in/close-btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/sign-in/close-btn.svg -------------------------------------------------------------------------------- /src/assets/img/icon/sign-in/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/sign-in/google.svg -------------------------------------------------------------------------------- /src/assets/img/icon/sign-in/sign-in-main-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/sign-in/sign-in-main-img.png -------------------------------------------------------------------------------- /src/assets/img/icon/spoon-knife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/spoon-knife.png -------------------------------------------------------------------------------- /src/assets/img/icon/star-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/star-1.png -------------------------------------------------------------------------------- /src/assets/img/icon/star-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/star-2.png -------------------------------------------------------------------------------- /src/assets/img/icon/star-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/star-circle.png -------------------------------------------------------------------------------- /src/assets/img/icon/star-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/star-circle.svg -------------------------------------------------------------------------------- /src/assets/img/icon/trash-bin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/trash-bin.svg -------------------------------------------------------------------------------- /src/assets/img/icon/twitter-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/twitter-icon.svg -------------------------------------------------------------------------------- /src/assets/img/icon/water-bottle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/water-bottle.png -------------------------------------------------------------------------------- /src/assets/img/icon/white-cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/white-cross.png -------------------------------------------------------------------------------- /src/assets/img/icon/youtube-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/icon/youtube-icon.svg -------------------------------------------------------------------------------- /src/assets/img/illustration-earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/illustration-earth.png -------------------------------------------------------------------------------- /src/assets/img/illustration-money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/illustration-money.png -------------------------------------------------------------------------------- /src/assets/img/illustration-people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/illustration-people.png -------------------------------------------------------------------------------- /src/assets/img/illustration-recycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/illustration-recycle.png -------------------------------------------------------------------------------- /src/assets/img/illustration-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/illustration-store.png -------------------------------------------------------------------------------- /src/assets/img/kimi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/kimi.png -------------------------------------------------------------------------------- /src/assets/img/leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/leaves.png -------------------------------------------------------------------------------- /src/assets/img/lewis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/lewis.png -------------------------------------------------------------------------------- /src/assets/img/logo-l.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/logo-l.svg -------------------------------------------------------------------------------- /src/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/logo.png -------------------------------------------------------------------------------- /src/assets/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/logo.svg -------------------------------------------------------------------------------- /src/assets/img/main-event-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/main-event-placeholder.png -------------------------------------------------------------------------------- /src/assets/img/man.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/man.svg -------------------------------------------------------------------------------- /src/assets/img/noNews.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/noNews.jpg -------------------------------------------------------------------------------- /src/assets/img/noNews.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/noNews.svg -------------------------------------------------------------------------------- /src/assets/img/path-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/path-2.svg -------------------------------------------------------------------------------- /src/assets/img/path-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/path-4.png -------------------------------------------------------------------------------- /src/assets/img/path-4_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/path-4_3.png -------------------------------------------------------------------------------- /src/assets/img/path-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/path-5.png -------------------------------------------------------------------------------- /src/assets/img/places/bookmark-default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/places/bookmark-default.svg -------------------------------------------------------------------------------- /src/assets/img/places/bookmark-set.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/places/bookmark-set.svg -------------------------------------------------------------------------------- /src/assets/img/places/green-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/places/green-marker.png -------------------------------------------------------------------------------- /src/assets/img/places/heartUnfilled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/places/heartUnfilled.svg -------------------------------------------------------------------------------- /src/assets/img/places/notification-unread.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/places/notification-unread.svg -------------------------------------------------------------------------------- /src/assets/img/places/place_KFC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/places/place_KFC.png -------------------------------------------------------------------------------- /src/assets/img/places/place_McDonalds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/places/place_McDonalds.png -------------------------------------------------------------------------------- /src/assets/img/places/place_lviv-hotel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/places/place_lviv-hotel.png -------------------------------------------------------------------------------- /src/assets/img/places/place_magnus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/places/place_magnus.png -------------------------------------------------------------------------------- /src/assets/img/places/place_staff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/places/place_staff.png -------------------------------------------------------------------------------- /src/assets/img/places/red-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/places/red-marker.png -------------------------------------------------------------------------------- /src/assets/img/places/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/places/search.svg -------------------------------------------------------------------------------- /src/assets/img/places/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/places/share.svg -------------------------------------------------------------------------------- /src/assets/img/places/star-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/places/star-1.png -------------------------------------------------------------------------------- /src/assets/img/places/star-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/places/star-2.png -------------------------------------------------------------------------------- /src/assets/img/places/star-filled-half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/places/star-filled-half.png -------------------------------------------------------------------------------- /src/assets/img/places/star-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/places/star-filled.svg -------------------------------------------------------------------------------- /src/assets/img/plus-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/plus-circle.png -------------------------------------------------------------------------------- /src/assets/img/profile/achievements/ACHIEVEMENT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/profile/achievements/ACHIEVEMENT.png -------------------------------------------------------------------------------- /src/assets/img/profile/achievements/CREATE_EVENT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/profile/achievements/CREATE_EVENT.png -------------------------------------------------------------------------------- /src/assets/img/profile/achievements/CREATE_NEWS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/profile/achievements/CREATE_NEWS.png -------------------------------------------------------------------------------- /src/assets/img/profile/achievements/HABIT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/profile/achievements/HABIT.png -------------------------------------------------------------------------------- /src/assets/img/profile/achievements/JOIN_EVENT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/profile/achievements/JOIN_EVENT.png -------------------------------------------------------------------------------- /src/assets/img/profile/achievements/SHARE_NEWS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/profile/achievements/SHARE_NEWS.png -------------------------------------------------------------------------------- /src/assets/img/profile/calendar/arrow_next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/profile/calendar/arrow_next.svg -------------------------------------------------------------------------------- /src/assets/img/profile/calendar/arrow_previous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/profile/calendar/arrow_previous.svg -------------------------------------------------------------------------------- /src/assets/img/profile/friends/friend-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/profile/friends/friend-1.png -------------------------------------------------------------------------------- /src/assets/img/profile/friends/friend-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/profile/friends/friend-2.png -------------------------------------------------------------------------------- /src/assets/img/profile/friends/friend-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/profile/friends/friend-3.png -------------------------------------------------------------------------------- /src/assets/img/profile/friends/friend-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/profile/friends/friend-4.png -------------------------------------------------------------------------------- /src/assets/img/profile/friends/friend-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/profile/friends/friend-5.png -------------------------------------------------------------------------------- /src/assets/img/profile/friends/friend-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/profile/friends/friend-6.png -------------------------------------------------------------------------------- /src/assets/img/profile/icons/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/profile/icons/add.svg -------------------------------------------------------------------------------- /src/assets/img/profile/icons/back-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/profile/icons/back-arrow.svg -------------------------------------------------------------------------------- /src/assets/img/profile/icons/cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/profile/icons/cancel.svg -------------------------------------------------------------------------------- /src/assets/img/profile/icons/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/profile/icons/checkmark.svg -------------------------------------------------------------------------------- /src/assets/img/profile/icons/default_social.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/profile/icons/default_social.svg -------------------------------------------------------------------------------- /src/assets/img/profile/icons/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/profile/icons/delete.svg -------------------------------------------------------------------------------- /src/assets/img/profile/icons/edit-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/profile/icons/edit-line.svg -------------------------------------------------------------------------------- /src/assets/img/profile/icons/edit-photo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/profile/icons/edit-photo.svg -------------------------------------------------------------------------------- /src/assets/img/profile/icons/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/profile/icons/edit.svg -------------------------------------------------------------------------------- /src/assets/img/profile/icons/line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/profile/icons/line.svg -------------------------------------------------------------------------------- /src/assets/img/qr-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/qr-code.png -------------------------------------------------------------------------------- /src/assets/img/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/search.svg -------------------------------------------------------------------------------- /src/assets/img/search2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/search2.svg -------------------------------------------------------------------------------- /src/assets/img/sidebarIcons/achievement_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/sidebarIcons/achievement_icon.svg -------------------------------------------------------------------------------- /src/assets/img/sidebarIcons/calendar_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/sidebarIcons/calendar_icon.svg -------------------------------------------------------------------------------- /src/assets/img/sidebarIcons/documents_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/sidebarIcons/documents_icon.svg -------------------------------------------------------------------------------- /src/assets/img/sidebarIcons/message-bell_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/sidebarIcons/message-bell_icon.svg -------------------------------------------------------------------------------- /src/assets/img/sidebarIcons/notification_Bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/sidebarIcons/notification_Bell.svg -------------------------------------------------------------------------------- /src/assets/img/sidebarIcons/settings_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/sidebarIcons/settings_icon.svg -------------------------------------------------------------------------------- /src/assets/img/sidebarIcons/shopping-cart_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/sidebarIcons/shopping-cart_icon.svg -------------------------------------------------------------------------------- /src/assets/img/sidebarIcons/statistic_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/sidebarIcons/statistic_icon.svg -------------------------------------------------------------------------------- /src/assets/img/sidebarIcons/user_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/sidebarIcons/user_icon.svg -------------------------------------------------------------------------------- /src/assets/img/sidebarIcons/workers_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/sidebarIcons/workers_icon.svg -------------------------------------------------------------------------------- /src/assets/img/smallCross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/smallCross.svg -------------------------------------------------------------------------------- /src/assets/img/snackBar-close-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/snackBar-close-icon.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-admin-employees/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-admin-employees/arrow-down.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-admin-employees/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-admin-employees/arrow-up.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-admin-employees/bin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-admin-employees/bin.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-admin-employees/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-admin-employees/cross.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-admin-employees/crumbs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-admin-employees/crumbs.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-admin-employees/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-admin-employees/edit.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-admin-employees/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-admin-employees/filter.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-admin-employees/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-admin-employees/gear.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-admin-employees/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-admin-employees/info.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-admin-employees/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-admin-employees/location.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-admin-employees/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-admin-employees/mail.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-admin-employees/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-admin-employees/phone.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-admin-notifications/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-admin-notifications/back.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-admin-notifications/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-admin-notifications/gear.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-admin-notifications/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-admin-notifications/pencil.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-admin-notifications/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-admin-notifications/plus.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-admin-notifications/trashcan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-admin-notifications/trashcan.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-admin-orders/Move-White.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-admin-orders/Move-White.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-admin-orders/Move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-admin-orders/Move.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-admin-orders/arrow_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-admin-orders/arrow_down.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-admin-orders/arrow_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-admin-orders/arrow_up.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-admin-orders/red_arrow_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-admin-orders/red_arrow_down.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-admin-orders/red_arrow_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-admin-orders/red_arrow_up.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-admin-sidebar/arrowLeft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-admin-sidebar/arrowLeft.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-admin-sidebar/arrowRight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-admin-sidebar/arrowRight.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-tariff/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-tariff/arrow-down.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-tariff/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-tariff/arrow-right.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-tariff/bigClose.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-tariff/bigClose.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-tariff/crumbs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-tariff/crumbs.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-tariff/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-tariff/delete.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-tariff/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-tariff/edit.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-tariff/restore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-tariff/restore.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-tariff/setting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-tariff/setting.svg -------------------------------------------------------------------------------- /src/assets/img/ubs-tariff/smallCross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs-tariff/smallCross.svg -------------------------------------------------------------------------------- /src/assets/img/ubs/Allternative-email-btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs/Allternative-email-btn.svg -------------------------------------------------------------------------------- /src/assets/img/ubs/Garbage_Bag_Green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs/Garbage_Bag_Green.svg -------------------------------------------------------------------------------- /src/assets/img/ubs/Garbage_Bag_Green_Big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs/Garbage_Bag_Green_Big.png -------------------------------------------------------------------------------- /src/assets/img/ubs/armored_truck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs/armored_truck.svg -------------------------------------------------------------------------------- /src/assets/img/ubs/arrow_left_ubs_messages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs/arrow_left_ubs_messages.svg -------------------------------------------------------------------------------- /src/assets/img/ubs/arrow_left_ubs_messages_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs/arrow_left_ubs_messages_active.svg -------------------------------------------------------------------------------- /src/assets/img/ubs/arrow_right_ubs_messages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs/arrow_right_ubs_messages.svg -------------------------------------------------------------------------------- /src/assets/img/ubs/arrow_right_ubs_popup_list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs/arrow_right_ubs_popup_list.svg -------------------------------------------------------------------------------- /src/assets/img/ubs/auto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs/auto.svg -------------------------------------------------------------------------------- /src/assets/img/ubs/bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs/bag.svg -------------------------------------------------------------------------------- /src/assets/img/ubs/base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs/base.svg -------------------------------------------------------------------------------- /src/assets/img/ubs/black-package-cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs/black-package-cut.png -------------------------------------------------------------------------------- /src/assets/img/ubs/black_garbage_bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs/black_garbage_bag.svg -------------------------------------------------------------------------------- /src/assets/img/ubs/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs/clock.png -------------------------------------------------------------------------------- /src/assets/img/ubs/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs/cross.svg -------------------------------------------------------------------------------- /src/assets/img/ubs/drag-and-drop-img.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs/drag-and-drop-img.svg -------------------------------------------------------------------------------- /src/assets/img/ubs/first_rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs/first_rectangle.png -------------------------------------------------------------------------------- /src/assets/img/ubs/green_garbage_bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs/green_garbage_bag.svg -------------------------------------------------------------------------------- /src/assets/img/ubs/pdfExportIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs/pdfExportIcon.svg -------------------------------------------------------------------------------- /src/assets/img/ubs/polygon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs/polygon.svg -------------------------------------------------------------------------------- /src/assets/img/ubs/second_rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs/second_rectangle.png -------------------------------------------------------------------------------- /src/assets/img/ubs/ubrs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs/ubrs.jpg -------------------------------------------------------------------------------- /src/assets/img/ubs/ubs_pick_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs/ubs_pick_up.png -------------------------------------------------------------------------------- /src/assets/img/ubs/ubs_pick_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs/ubs_pick_up.svg -------------------------------------------------------------------------------- /src/assets/img/ubs/ubs_signboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/ubs/ubs_signboard.svg -------------------------------------------------------------------------------- /src/assets/img/wave-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/wave-line.png -------------------------------------------------------------------------------- /src/assets/img/wave_shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/img/wave_shape.png -------------------------------------------------------------------------------- /src/assets/locations/locations.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/locations/locations.spec.ts -------------------------------------------------------------------------------- /src/assets/locations/locations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/locations/locations.ts -------------------------------------------------------------------------------- /src/assets/mocks/achievement/achievement-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/mocks/achievement/achievement-list.json -------------------------------------------------------------------------------- /src/assets/mocks/advice/advice-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/mocks/advice/advice-list.json -------------------------------------------------------------------------------- /src/assets/mocks/eco-news/eco-news-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/mocks/eco-news/eco-news-list.json -------------------------------------------------------------------------------- /src/assets/mocks/eco-news/mock-news-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/mocks/eco-news/mock-news-item.ts -------------------------------------------------------------------------------- /src/assets/mocks/events/mock-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/mocks/events/mock-events.ts -------------------------------------------------------------------------------- /src/assets/mocks/habit/habit-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/mocks/habit/habit-list.json -------------------------------------------------------------------------------- /src/assets/mocks/habit/mock-habit-calendar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/mocks/habit/mock-habit-calendar.ts -------------------------------------------------------------------------------- /src/assets/mocks/place/place-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/mocks/place/place-list.json -------------------------------------------------------------------------------- /src/assets/mocks/search/eco-news-search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/mocks/search/eco-news-search.json -------------------------------------------------------------------------------- /src/assets/mocks/search/mockPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/mocks/search/mockPath.ts -------------------------------------------------------------------------------- /src/assets/mocks/search/search-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/mocks/search/search-list.json -------------------------------------------------------------------------------- /src/assets/mocks/user/user-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/mocks/user/user-list.json -------------------------------------------------------------------------------- /src/assets/patterns/patterns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/patterns/patterns.ts -------------------------------------------------------------------------------- /src/assets/ubs-employee-form/dismiss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/ubs-employee-form/dismiss.svg -------------------------------------------------------------------------------- /src/assets/vincenty/vincenty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/assets/vincenty/vincenty.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/manifest.webmanifest -------------------------------------------------------------------------------- /src/mixins/_mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/mixins/_mixin.scss -------------------------------------------------------------------------------- /src/mixins/_text_style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/mixins/_text_style.scss -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/typography/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/typography/_colors.scss -------------------------------------------------------------------------------- /src/typography/_colorsUbs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/typography/_colorsUbs.scss -------------------------------------------------------------------------------- /src/typography/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/typography/_fonts.scss -------------------------------------------------------------------------------- /src/typography/_fontsUbs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/typography/_fontsUbs.scss -------------------------------------------------------------------------------- /src/typography/_resp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/typography/_resp.scss -------------------------------------------------------------------------------- /src/typography/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/typography/_typography.scss -------------------------------------------------------------------------------- /src/typography/_typographyUbs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/src/typography/_typographyUbs.scss -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ita-social-projects/GreenCityClient/HEAD/tslint.json_ --------------------------------------------------------------------------------