├── .cspell.json ├── .devops ├── dev-CD.yml ├── prod-CD.yml └── uat-CD.yml ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github ├── .githooks │ ├── pre-commit │ ├── pre-push │ └── prepare-commit-msg ├── pull_request_template.md └── workflows │ ├── ci.yml │ ├── codeql-analysis.yml │ ├── deploy.yml │ ├── github-pages.yml │ ├── manual-deployment.yml │ ├── release.yml │ ├── scheduled-deployment-prod.yml │ └── scheduled-deployment.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .scripts ├── build-widgets.js └── check-i18n.js ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── CHANGELOG.md ├── CHANGELOG ├── CHANGELOG_alpha.md ├── CHANGELOG_beta.md └── CHANGELOG_next.md ├── CI ├── deploy.sh └── exclude-list.txt ├── LICENSE ├── README.md ├── apps ├── .gitkeep ├── back-office-e2e │ ├── .eslintrc.json │ ├── cypress.config.ts │ ├── project.json │ ├── src │ │ ├── e2e │ │ │ └── app.cy.ts │ │ ├── fixtures │ │ │ └── example.json │ │ └── support │ │ │ ├── app.po.ts │ │ │ ├── commands.ts │ │ │ └── e2e.ts │ └── tsconfig.json ├── back-office │ ├── .eslintrc.json │ ├── .storybook │ │ ├── main.ts │ │ ├── preview-head.html │ │ ├── preview.js │ │ ├── storybook-translate.module.ts │ │ └── tsconfig.json │ ├── documentation.json │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── app │ │ │ ├── __mocks__ │ │ │ │ └── mock-class.test.ts │ │ │ ├── app-preview │ │ │ │ ├── app-preview-routing.module.ts │ │ │ │ ├── app-preview.component.html │ │ │ │ ├── app-preview.component.scss │ │ │ │ ├── app-preview.component.spec.ts │ │ │ │ ├── app-preview.component.ts │ │ │ │ ├── app-preview.module.ts │ │ │ │ ├── components │ │ │ │ │ └── preview-toolbar │ │ │ │ │ │ ├── preview-toolbar.component.html │ │ │ │ │ │ ├── preview-toolbar.component.scss │ │ │ │ │ │ ├── preview-toolbar.component.spec.ts │ │ │ │ │ │ ├── preview-toolbar.component.ts │ │ │ │ │ │ └── preview-toolbar.module.ts │ │ │ │ └── pages │ │ │ │ │ ├── dashboard │ │ │ │ │ ├── dashboard-routing.module.ts │ │ │ │ │ ├── dashboard.component.html │ │ │ │ │ ├── dashboard.component.scss │ │ │ │ │ ├── dashboard.component.spec.ts │ │ │ │ │ ├── dashboard.component.ts │ │ │ │ │ ├── dashboard.module.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── form │ │ │ │ │ ├── form-routing.module.ts │ │ │ │ │ ├── form.component.html │ │ │ │ │ ├── form.component.scss │ │ │ │ │ ├── form.component.spec.ts │ │ │ │ │ ├── form.component.ts │ │ │ │ │ ├── form.module.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ └── queries.ts │ │ │ │ │ └── workflow │ │ │ │ │ ├── graphql │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── workflow-routing.module.ts │ │ │ │ │ ├── workflow.component.html │ │ │ │ │ ├── workflow.component.scss │ │ │ │ │ ├── workflow.component.spec.ts │ │ │ │ │ ├── workflow.component.ts │ │ │ │ │ └── workflow.module.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── application │ │ │ │ ├── application-routing.module.ts │ │ │ │ ├── application.component.html │ │ │ │ ├── application.component.scss │ │ │ │ ├── application.component.spec.ts │ │ │ │ ├── application.component.ts │ │ │ │ ├── application.module.ts │ │ │ │ └── pages │ │ │ │ │ ├── activity-log │ │ │ │ │ ├── activity-log-routing.module.ts │ │ │ │ │ ├── activity-log.component.html │ │ │ │ │ ├── activity-log.component.scss │ │ │ │ │ ├── activity-log.component.ts │ │ │ │ │ └── activity-log.module.ts │ │ │ │ │ ├── add-page │ │ │ │ │ ├── add-page-routing.module.ts │ │ │ │ │ ├── add-page.component.html │ │ │ │ │ ├── add-page.component.scss │ │ │ │ │ ├── add-page.component.spec.ts │ │ │ │ │ ├── add-page.component.ts │ │ │ │ │ ├── add-page.module.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── archive │ │ │ │ │ ├── archive-routing.module.ts │ │ │ │ │ ├── archive.component.html │ │ │ │ │ ├── archive.component.scss │ │ │ │ │ ├── archive.component.ts │ │ │ │ │ ├── archive.module.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── channels │ │ │ │ │ ├── channels-routing.module.ts │ │ │ │ │ ├── channels.component.html │ │ │ │ │ ├── channels.component.scss │ │ │ │ │ ├── channels.component.spec.ts │ │ │ │ │ ├── channels.component.ts │ │ │ │ │ ├── channels.module.ts │ │ │ │ │ └── components │ │ │ │ │ │ └── channel-modal │ │ │ │ │ │ ├── channel-modal.component.html │ │ │ │ │ │ ├── channel-modal.component.scss │ │ │ │ │ │ ├── channel-modal.component.spec.ts │ │ │ │ │ │ └── channel-modal.component.ts │ │ │ │ │ ├── form │ │ │ │ │ ├── form-routing.module.ts │ │ │ │ │ ├── form.component.html │ │ │ │ │ ├── form.component.scss │ │ │ │ │ ├── form.component.spec.ts │ │ │ │ │ ├── form.component.ts │ │ │ │ │ ├── form.module.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── home │ │ │ │ │ ├── home-routing.module.ts │ │ │ │ │ ├── home.component.html │ │ │ │ │ ├── home.component.scss │ │ │ │ │ ├── home.component.spec.ts │ │ │ │ │ ├── home.component.ts │ │ │ │ │ └── home.module.ts │ │ │ │ │ ├── position-attributes │ │ │ │ │ ├── graphql │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── position-attributes-routing.module.ts │ │ │ │ │ ├── position-attributes.component.html │ │ │ │ │ ├── position-attributes.component.scss │ │ │ │ │ ├── position-attributes.component.spec.ts │ │ │ │ │ ├── position-attributes.component.ts │ │ │ │ │ └── position-attributes.module.ts │ │ │ │ │ ├── position │ │ │ │ │ ├── components │ │ │ │ │ │ └── position-modal │ │ │ │ │ │ │ ├── position-modal.component.html │ │ │ │ │ │ │ ├── position-modal.component.scss │ │ │ │ │ │ │ ├── position-modal.component.spec.ts │ │ │ │ │ │ │ └── position-modal.component.ts │ │ │ │ │ ├── position-routing.module.ts │ │ │ │ │ ├── position.component.html │ │ │ │ │ ├── position.component.scss │ │ │ │ │ ├── position.component.spec.ts │ │ │ │ │ ├── position.component.ts │ │ │ │ │ └── position.module.ts │ │ │ │ │ ├── settings │ │ │ │ │ ├── graphql │ │ │ │ │ │ └── mutations.ts │ │ │ │ │ ├── settings-routing.module.ts │ │ │ │ │ ├── settings.component.html │ │ │ │ │ ├── settings.component.scss │ │ │ │ │ ├── settings.component.spec.ts │ │ │ │ │ ├── settings.component.ts │ │ │ │ │ └── settings.module.ts │ │ │ │ │ ├── subscriptions │ │ │ │ │ ├── components │ │ │ │ │ │ └── subscription-modal │ │ │ │ │ │ │ ├── subscription-modal.component.html │ │ │ │ │ │ │ ├── subscription-modal.component.scss │ │ │ │ │ │ │ ├── subscription-modal.component.spec.ts │ │ │ │ │ │ │ └── subscription-modal.component.ts │ │ │ │ │ ├── graphql │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── subscriptions-routing.module.ts │ │ │ │ │ ├── subscriptions.component.html │ │ │ │ │ ├── subscriptions.component.scss │ │ │ │ │ ├── subscriptions.component.spec.ts │ │ │ │ │ ├── subscriptions.component.ts │ │ │ │ │ └── subscriptions.module.ts │ │ │ │ │ └── workflow │ │ │ │ │ ├── components │ │ │ │ │ ├── add-step │ │ │ │ │ │ ├── add-step-routing.module.ts │ │ │ │ │ │ ├── add-step.component.html │ │ │ │ │ │ ├── add-step.component.scss │ │ │ │ │ │ ├── add-step.component.spec.ts │ │ │ │ │ │ ├── add-step.component.ts │ │ │ │ │ │ └── add-step.module.ts │ │ │ │ │ └── home │ │ │ │ │ │ ├── home-routing.module.ts │ │ │ │ │ │ ├── home.component.html │ │ │ │ │ │ ├── home.component.scss │ │ │ │ │ │ ├── home.component.spec.ts │ │ │ │ │ │ ├── home.component.ts │ │ │ │ │ │ └── home.module.ts │ │ │ │ │ ├── graphql │ │ │ │ │ ├── mutations.ts │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── workflow-routing.module.ts │ │ │ │ │ ├── workflow.component.html │ │ │ │ │ ├── workflow.component.scss │ │ │ │ │ ├── workflow.component.spec.ts │ │ │ │ │ ├── workflow.component.ts │ │ │ │ │ └── workflow.module.ts │ │ │ ├── auth │ │ │ │ ├── auth-routing.module.ts │ │ │ │ ├── auth.module.ts │ │ │ │ └── pages │ │ │ │ │ └── login │ │ │ │ │ ├── login-routing.module.ts │ │ │ │ │ ├── login.component.html │ │ │ │ │ ├── login.component.scss │ │ │ │ │ ├── login.component.spec.ts │ │ │ │ │ ├── login.component.ts │ │ │ │ │ └── login.module.ts │ │ │ ├── components │ │ │ │ ├── add-form-modal │ │ │ │ │ ├── add-form-modal.component.html │ │ │ │ │ ├── add-form-modal.component.scss │ │ │ │ │ ├── add-form-modal.component.spec.ts │ │ │ │ │ ├── add-form-modal.component.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ └── queries.ts │ │ │ │ ├── add-resource-modal │ │ │ │ │ ├── add-resource-modal.component.html │ │ │ │ │ ├── add-resource-modal.component.scss │ │ │ │ │ ├── add-resource-modal.component.spec.ts │ │ │ │ │ └── add-resource-modal.component.ts │ │ │ │ ├── application-header │ │ │ │ │ ├── application-header.component.html │ │ │ │ │ ├── application-header.component.scss │ │ │ │ │ ├── application-header.component.spec.ts │ │ │ │ │ ├── application-header.component.ts │ │ │ │ │ └── application-header.module.ts │ │ │ │ ├── custom-style │ │ │ │ │ ├── custom-style.component.html │ │ │ │ │ ├── custom-style.component.scss │ │ │ │ │ ├── custom-style.component.spec.ts │ │ │ │ │ └── custom-style.component.ts │ │ │ │ ├── dashboard-filter-settings │ │ │ │ │ ├── dashboard-filter-settings.component.html │ │ │ │ │ ├── dashboard-filter-settings.component.scss │ │ │ │ │ ├── dashboard-filter-settings.component.spec.ts │ │ │ │ │ └── dashboard-filter-settings.component.ts │ │ │ │ ├── duplicate-application-modal │ │ │ │ │ ├── duplicate-application-modal.component.html │ │ │ │ │ ├── duplicate-application-modal.component.scss │ │ │ │ │ ├── duplicate-application-modal.component.spec.ts │ │ │ │ │ ├── duplicate-application-modal.component.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ └── mutations.ts │ │ │ │ ├── edit-action-button-modal │ │ │ │ │ ├── edit-action-button-modal.component.html │ │ │ │ │ ├── edit-action-button-modal.component.scss │ │ │ │ │ ├── edit-action-button-modal.component.spec.ts │ │ │ │ │ ├── edit-action-button-modal.component.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ └── queries.ts │ │ │ │ ├── edit-action-buttons-modal │ │ │ │ │ ├── edit-action-buttons-modal.component.html │ │ │ │ │ ├── edit-action-buttons-modal.component.scss │ │ │ │ │ ├── edit-action-buttons-modal.component.spec.ts │ │ │ │ │ └── edit-action-buttons-modal.component.ts │ │ │ │ ├── upload-menu │ │ │ │ │ ├── upload-menu.component.html │ │ │ │ │ ├── upload-menu.component.scss │ │ │ │ │ ├── upload-menu.component.spec.ts │ │ │ │ │ ├── upload-menu.component.ts │ │ │ │ │ ├── upload-menu.module.ts │ │ │ │ │ └── upload-menu.stories.ts │ │ │ │ ├── view-icon-selector │ │ │ │ │ ├── view-icon-selector.component.html │ │ │ │ │ ├── view-icon-selector.component.scss │ │ │ │ │ ├── view-icon-selector.component.spec.ts │ │ │ │ │ ├── view-icon-selector.component.ts │ │ │ │ │ └── view-icon-selector.stories.ts │ │ │ │ └── view-settings-modal │ │ │ │ │ ├── view-settings-modal.component.html │ │ │ │ │ ├── view-settings-modal.component.scss │ │ │ │ │ ├── view-settings-modal.component.spec.ts │ │ │ │ │ └── view-settings-modal.component.ts │ │ │ ├── dashboard │ │ │ │ ├── dashboard-routing.module.ts │ │ │ │ ├── dashboard.component.html │ │ │ │ ├── dashboard.component.scss │ │ │ │ ├── dashboard.component.spec.ts │ │ │ │ ├── dashboard.component.ts │ │ │ │ ├── dashboard.module.ts │ │ │ │ └── pages │ │ │ │ │ ├── api-configuration │ │ │ │ │ ├── api-configuration-routing.module.ts │ │ │ │ │ ├── api-configuration.component.html │ │ │ │ │ ├── api-configuration.component.scss │ │ │ │ │ ├── api-configuration.component.spec.ts │ │ │ │ │ ├── api-configuration.component.ts │ │ │ │ │ ├── api-configuration.module.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── api-configurations │ │ │ │ │ ├── api-configurations-routing.module.ts │ │ │ │ │ ├── api-configurations.component.html │ │ │ │ │ ├── api-configurations.component.scss │ │ │ │ │ ├── api-configurations.component.spec.ts │ │ │ │ │ ├── api-configurations.component.ts │ │ │ │ │ ├── api-configurations.module.ts │ │ │ │ │ ├── components │ │ │ │ │ │ └── add-api-configuration │ │ │ │ │ │ │ ├── add-api-configuration.component.html │ │ │ │ │ │ │ ├── add-api-configuration.component.scss │ │ │ │ │ │ │ ├── add-api-configuration.component.spec.ts │ │ │ │ │ │ │ └── add-api-configuration.component.ts │ │ │ │ │ ├── filter │ │ │ │ │ │ ├── filter.component.html │ │ │ │ │ │ ├── filter.component.scss │ │ │ │ │ │ ├── filter.component.spec.ts │ │ │ │ │ │ └── filter.component.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── applications │ │ │ │ │ ├── applications-routing.module.ts │ │ │ │ │ ├── applications.component.html │ │ │ │ │ ├── applications.component.scss │ │ │ │ │ ├── applications.component.spec.ts │ │ │ │ │ ├── applications.component.ts │ │ │ │ │ ├── applications.module.ts │ │ │ │ │ ├── components │ │ │ │ │ │ ├── chose-role │ │ │ │ │ │ │ ├── chose-role.component.html │ │ │ │ │ │ │ ├── chose-role.component.scss │ │ │ │ │ │ │ ├── chose-role.component.spec.ts │ │ │ │ │ │ │ └── chose-role.component.ts │ │ │ │ │ │ └── filter │ │ │ │ │ │ │ ├── filter.component.html │ │ │ │ │ │ │ ├── filter.component.scss │ │ │ │ │ │ │ ├── filter.component.spec.ts │ │ │ │ │ │ │ └── filter.component.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── dashboard │ │ │ │ │ ├── components │ │ │ │ │ │ ├── context-selector │ │ │ │ │ │ │ ├── context-selector.component.html │ │ │ │ │ │ │ ├── context-selector.component.scss │ │ │ │ │ │ │ ├── context-selector.component.spec.ts │ │ │ │ │ │ │ └── context-selector.component.ts │ │ │ │ │ │ ├── edit-context-modal │ │ │ │ │ │ │ ├── edit-context-modal.component.html │ │ │ │ │ │ │ ├── edit-context-modal.component.scss │ │ │ │ │ │ │ ├── edit-context-modal.component.spec.ts │ │ │ │ │ │ │ ├── edit-context-modal.component.ts │ │ │ │ │ │ │ └── graphql │ │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ │ └── manage-templates-modal │ │ │ │ │ │ │ ├── manage-templates-modal.component.html │ │ │ │ │ │ │ ├── manage-templates-modal.component.scss │ │ │ │ │ │ │ ├── manage-templates-modal.component.spec.ts │ │ │ │ │ │ │ └── manage-templates-modal.component.ts │ │ │ │ │ ├── dashboard-routing.module.ts │ │ │ │ │ ├── dashboard.component.html │ │ │ │ │ ├── dashboard.component.scss │ │ │ │ │ ├── dashboard.component.spec.ts │ │ │ │ │ ├── dashboard.component.ts │ │ │ │ │ ├── dashboard.module.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── dashboards │ │ │ │ │ └── graphql │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── form-answer │ │ │ │ │ ├── form-answer-routing.module.ts │ │ │ │ │ ├── form-answer.component.html │ │ │ │ │ ├── form-answer.component.scss │ │ │ │ │ ├── form-answer.component.spec.ts │ │ │ │ │ ├── form-answer.component.ts │ │ │ │ │ ├── form-answer.module.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── form-builder │ │ │ │ │ ├── components │ │ │ │ │ │ └── history │ │ │ │ │ │ │ ├── history.component.html │ │ │ │ │ │ │ ├── history.component.scss │ │ │ │ │ │ │ ├── history.component.spec.ts │ │ │ │ │ │ │ └── history.component.ts │ │ │ │ │ ├── form-builder-routing.module.ts │ │ │ │ │ ├── form-builder.component.html │ │ │ │ │ ├── form-builder.component.scss │ │ │ │ │ ├── form-builder.component.spec.ts │ │ │ │ │ ├── form-builder.component.ts │ │ │ │ │ ├── form-builder.module.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ ├── fragments.ts │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── form-records │ │ │ │ │ ├── form-records-routing.module.ts │ │ │ │ │ ├── form-records.component.html │ │ │ │ │ ├── form-records.component.scss │ │ │ │ │ ├── form-records.component.spec.ts │ │ │ │ │ ├── form-records.component.ts │ │ │ │ │ ├── form-records.module.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── forms │ │ │ │ │ ├── components │ │ │ │ │ │ └── filter │ │ │ │ │ │ │ ├── filter.component.html │ │ │ │ │ │ │ ├── filter.component.spec.ts │ │ │ │ │ │ │ └── filter.component.ts │ │ │ │ │ ├── forms-routing.module.ts │ │ │ │ │ ├── forms.component.html │ │ │ │ │ ├── forms.component.scss │ │ │ │ │ ├── forms.component.spec.ts │ │ │ │ │ ├── forms.component.ts │ │ │ │ │ ├── forms.module.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── pull-jobs │ │ │ │ │ ├── components │ │ │ │ │ │ └── edit-pull-job-modal │ │ │ │ │ │ │ ├── edit-pull-job-modal.component.html │ │ │ │ │ │ │ ├── edit-pull-job-modal.component.scss │ │ │ │ │ │ │ ├── edit-pull-job-modal.component.spec.ts │ │ │ │ │ │ │ └── edit-pull-job-modal.component.ts │ │ │ │ │ ├── graphql │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── pull-jobs-routing.module.ts │ │ │ │ │ ├── pull-jobs.component.html │ │ │ │ │ ├── pull-jobs.component.scss │ │ │ │ │ ├── pull-jobs.component.spec.ts │ │ │ │ │ ├── pull-jobs.component.ts │ │ │ │ │ └── pull-jobs.module.ts │ │ │ │ │ ├── reference-data │ │ │ │ │ ├── graphql │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── reference-data-routing.module.ts │ │ │ │ │ ├── reference-data.component.html │ │ │ │ │ ├── reference-data.component.scss │ │ │ │ │ ├── reference-data.component.spec.ts │ │ │ │ │ ├── reference-data.component.ts │ │ │ │ │ ├── reference-data.form.ts │ │ │ │ │ ├── reference-data.module.ts │ │ │ │ │ └── utils │ │ │ │ │ │ └── inferTypeFromString.ts │ │ │ │ │ ├── reference-datas │ │ │ │ │ ├── add-reference-data │ │ │ │ │ │ ├── add-reference-data.component.html │ │ │ │ │ │ ├── add-reference-data.component.scss │ │ │ │ │ │ ├── add-reference-data.component.spec.ts │ │ │ │ │ │ └── add-reference-data.component.ts │ │ │ │ │ ├── filter │ │ │ │ │ │ └── filter.component.ts │ │ │ │ │ ├── graphql │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── reference-datas-routing.module.ts │ │ │ │ │ ├── reference-datas.component.html │ │ │ │ │ ├── reference-datas.component.scss │ │ │ │ │ ├── reference-datas.component.spec.ts │ │ │ │ │ ├── reference-datas.component.ts │ │ │ │ │ └── reference-datas.module.ts │ │ │ │ │ ├── resource │ │ │ │ │ ├── aggregations-tab │ │ │ │ │ │ ├── aggregations-tab-routing.module.ts │ │ │ │ │ │ ├── aggregations-tab.component.html │ │ │ │ │ │ ├── aggregations-tab.component.scss │ │ │ │ │ │ ├── aggregations-tab.component.spec.ts │ │ │ │ │ │ ├── aggregations-tab.component.ts │ │ │ │ │ │ ├── aggregations-tab.module.ts │ │ │ │ │ │ └── graphql │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── calculated-fields-tab │ │ │ │ │ │ ├── calculated-fields-tab-routing.module.ts │ │ │ │ │ │ ├── calculated-fields-tab.component.html │ │ │ │ │ │ ├── calculated-fields-tab.component.scss │ │ │ │ │ │ ├── calculated-fields-tab.component.spec.ts │ │ │ │ │ │ ├── calculated-fields-tab.component.ts │ │ │ │ │ │ ├── calculated-fields-tab.module.ts │ │ │ │ │ │ └── graphql │ │ │ │ │ │ │ └── mutations.ts │ │ │ │ │ ├── components │ │ │ │ │ │ └── data-presentation-list │ │ │ │ │ │ │ ├── data-presentation-list.component.html │ │ │ │ │ │ │ ├── data-presentation-list.component.scss │ │ │ │ │ │ │ └── data-presentation-list.component.ts │ │ │ │ │ ├── forms-tab │ │ │ │ │ │ ├── forms-tab-routing.module.ts │ │ │ │ │ │ ├── forms-tab.component.html │ │ │ │ │ │ ├── forms-tab.component.scss │ │ │ │ │ │ ├── forms-tab.component.spec.ts │ │ │ │ │ │ ├── forms-tab.component.ts │ │ │ │ │ │ ├── forms-tab.module.ts │ │ │ │ │ │ └── graphql │ │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── graphql │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── layouts-tab │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ │ ├── layouts-tab-routing.module.ts │ │ │ │ │ │ ├── layouts-tab.component.html │ │ │ │ │ │ ├── layouts-tab.component.scss │ │ │ │ │ │ ├── layouts-tab.component.spec.ts │ │ │ │ │ │ ├── layouts-tab.component.ts │ │ │ │ │ │ └── layouts-tab.module.ts │ │ │ │ │ ├── records-tab │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ │ ├── records-tab-routing.module.ts │ │ │ │ │ │ ├── records-tab.component.html │ │ │ │ │ │ ├── records-tab.component.scss │ │ │ │ │ │ ├── records-tab.component.spec.ts │ │ │ │ │ │ ├── records-tab.component.ts │ │ │ │ │ │ └── records-tab.module.ts │ │ │ │ │ ├── resource-routing.module.ts │ │ │ │ │ ├── resource.component.html │ │ │ │ │ ├── resource.component.scss │ │ │ │ │ ├── resource.component.spec.ts │ │ │ │ │ ├── resource.component.ts │ │ │ │ │ └── resource.module.ts │ │ │ │ │ ├── resources │ │ │ │ │ ├── filter │ │ │ │ │ │ ├── filter.component.html │ │ │ │ │ │ ├── filter.component.scss │ │ │ │ │ │ ├── filter.component.spec.ts │ │ │ │ │ │ └── filter.component.ts │ │ │ │ │ ├── graphql │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── resources-routing.module.ts │ │ │ │ │ ├── resources.component.html │ │ │ │ │ ├── resources.component.scss │ │ │ │ │ ├── resources.component.spec.ts │ │ │ │ │ ├── resources.component.ts │ │ │ │ │ └── resources.module.ts │ │ │ │ │ ├── update-record │ │ │ │ │ ├── graphql │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── update-record-routing.module.ts │ │ │ │ │ ├── update-record.component.html │ │ │ │ │ ├── update-record.component.scss │ │ │ │ │ ├── update-record.component.spec.ts │ │ │ │ │ ├── update-record.component.ts │ │ │ │ │ └── update-record.module.ts │ │ │ │ │ └── users │ │ │ │ │ ├── graphql │ │ │ │ │ ├── mutations.ts │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── users-routing.module.ts │ │ │ │ │ ├── users.component.html │ │ │ │ │ ├── users.component.scss │ │ │ │ │ ├── users.component.spec.ts │ │ │ │ │ ├── users.component.ts │ │ │ │ │ └── users.module.ts │ │ │ ├── graphql.module.ts │ │ │ ├── guards │ │ │ │ ├── access.guard.spec.ts │ │ │ │ ├── access.guard.ts │ │ │ │ ├── auth.guard.spec.ts │ │ │ │ ├── auth.guard.ts │ │ │ │ ├── can-deactivate.guard.spec.ts │ │ │ │ └── can-deactivate.guard.ts │ │ │ ├── services │ │ │ │ ├── preview.service.spec.ts │ │ │ │ └── preview.service.ts │ │ │ ├── shared │ │ │ │ └── pages │ │ │ │ │ ├── role-summary │ │ │ │ │ ├── role-summary-routing.module.ts │ │ │ │ │ ├── role-summary.component.html │ │ │ │ │ ├── role-summary.component.scss │ │ │ │ │ ├── role-summary.component.spec.ts │ │ │ │ │ ├── role-summary.component.ts │ │ │ │ │ └── role-summary.module.ts │ │ │ │ │ ├── roles │ │ │ │ │ ├── roles-routing.module.ts │ │ │ │ │ ├── roles.component.html │ │ │ │ │ ├── roles.component.scss │ │ │ │ │ ├── roles.component.spec.ts │ │ │ │ │ ├── roles.component.ts │ │ │ │ │ └── roles.module.ts │ │ │ │ │ └── user-summary │ │ │ │ │ ├── user-summary-routing.module.ts │ │ │ │ │ ├── user-summary.component.html │ │ │ │ │ ├── user-summary.component.scss │ │ │ │ │ ├── user-summary.component.spec.ts │ │ │ │ │ ├── user-summary.component.ts │ │ │ │ │ └── user-summary.module.ts │ │ │ └── utils │ │ │ │ ├── extractColumns.ts │ │ │ │ └── nameValidation.ts │ │ ├── environments │ │ │ ├── environment.azure.dev.ts │ │ │ ├── environment.azure.prod.ts │ │ │ ├── environment.azure.uat.ts │ │ │ ├── environment.local.dev.ts │ │ │ ├── environment.local.prod.ts │ │ │ ├── environment.local.uat.ts │ │ │ ├── environment.shared.ts │ │ │ ├── environment.ts │ │ │ └── environment.type.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── staticwebapp.config.json │ │ ├── styles.scss │ │ ├── test-setup.ts │ │ └── themes │ │ │ └── default │ │ │ ├── default.dev.ts │ │ │ ├── default.local.ts │ │ │ ├── default.prod.ts │ │ │ ├── default.sit.ts │ │ │ └── default.uat.ts │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── front-office-e2e │ ├── .eslintrc.json │ ├── cypress.config.ts │ ├── project.json │ ├── src │ │ ├── e2e │ │ │ └── app.cy.ts │ │ ├── fixtures │ │ │ └── example.json │ │ └── support │ │ │ ├── app.po.ts │ │ │ ├── commands.ts │ │ │ └── e2e.ts │ └── tsconfig.json ├── front-office │ ├── .eslintrc.json │ ├── .storybook │ │ ├── main.ts │ │ ├── preview-head.html │ │ ├── preview.js │ │ ├── storybook-translate.module.ts │ │ └── tsconfig.json │ ├── documentation.json │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── app │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── application │ │ │ │ ├── application-routing.module.ts │ │ │ │ ├── application.component.html │ │ │ │ ├── application.component.scss │ │ │ │ ├── application.component.spec.ts │ │ │ │ ├── application.component.ts │ │ │ │ ├── application.module.ts │ │ │ │ └── pages │ │ │ │ │ ├── activity-log │ │ │ │ │ ├── activity-log-routing.module.ts │ │ │ │ │ ├── activity-log.component.html │ │ │ │ │ ├── activity-log.component.scss │ │ │ │ │ ├── activity-log.component.ts │ │ │ │ │ └── activity-log.module.ts │ │ │ │ │ ├── dashboard │ │ │ │ │ ├── dashboard-routing.module.ts │ │ │ │ │ ├── dashboard.component.html │ │ │ │ │ ├── dashboard.component.scss │ │ │ │ │ ├── dashboard.component.spec.ts │ │ │ │ │ ├── dashboard.component.ts │ │ │ │ │ ├── dashboard.module.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── form │ │ │ │ │ ├── form-routing.module.ts │ │ │ │ │ ├── form.component.html │ │ │ │ │ ├── form.component.scss │ │ │ │ │ ├── form.component.spec.ts │ │ │ │ │ ├── form.component.ts │ │ │ │ │ ├── form.module.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── home │ │ │ │ │ ├── home-routing.module.ts │ │ │ │ │ ├── home.component.html │ │ │ │ │ ├── home.component.scss │ │ │ │ │ ├── home.component.spec.ts │ │ │ │ │ ├── home.component.ts │ │ │ │ │ └── home.module.ts │ │ │ │ │ ├── role-summary │ │ │ │ │ ├── role-summary-routing.module.ts │ │ │ │ │ ├── role-summary.component.html │ │ │ │ │ ├── role-summary.component.scss │ │ │ │ │ ├── role-summary.component.spec.ts │ │ │ │ │ ├── role-summary.component.ts │ │ │ │ │ └── role-summary.module.ts │ │ │ │ │ ├── roles │ │ │ │ │ ├── roles-routing.module.ts │ │ │ │ │ ├── roles.component.html │ │ │ │ │ ├── roles.component.scss │ │ │ │ │ ├── roles.component.spec.ts │ │ │ │ │ ├── roles.component.ts │ │ │ │ │ └── roles.module.ts │ │ │ │ │ ├── share │ │ │ │ │ ├── graphql │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── share-routing.module.ts │ │ │ │ │ ├── share.component.html │ │ │ │ │ ├── share.component.scss │ │ │ │ │ ├── share.component.spec.ts │ │ │ │ │ ├── share.component.ts │ │ │ │ │ └── share.module.ts │ │ │ │ │ ├── user-summary │ │ │ │ │ ├── user-summary-routing.module.ts │ │ │ │ │ ├── user-summary.component.html │ │ │ │ │ ├── user-summary.component.scss │ │ │ │ │ ├── user-summary.component.spec.ts │ │ │ │ │ ├── user-summary.component.ts │ │ │ │ │ └── user-summary.module.ts │ │ │ │ │ └── workflow │ │ │ │ │ ├── graphql │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── workflow-routing.module.ts │ │ │ │ │ ├── workflow.component.html │ │ │ │ │ ├── workflow.component.scss │ │ │ │ │ ├── workflow.component.spec.ts │ │ │ │ │ ├── workflow.component.ts │ │ │ │ │ └── workflow.module.ts │ │ │ ├── auth │ │ │ │ ├── auth-routing.module.ts │ │ │ │ ├── auth.module.ts │ │ │ │ └── pages │ │ │ │ │ └── login │ │ │ │ │ ├── login-routing.module.ts │ │ │ │ │ ├── login.component.html │ │ │ │ │ ├── login.component.scss │ │ │ │ │ ├── login.component.spec.ts │ │ │ │ │ ├── login.component.ts │ │ │ │ │ └── login.module.ts │ │ │ ├── graphql.module.ts │ │ │ ├── guards │ │ │ │ ├── access.guard.spec.ts │ │ │ │ ├── access.guard.ts │ │ │ │ ├── auth.guard.spec.ts │ │ │ │ ├── auth.guard.ts │ │ │ │ └── can-deactivate.guard.ts │ │ │ └── redirect │ │ │ │ ├── redirect-routing.module.ts │ │ │ │ ├── redirect.component.html │ │ │ │ ├── redirect.component.scss │ │ │ │ ├── redirect.component.spec.ts │ │ │ │ ├── redirect.component.ts │ │ │ │ └── redirect.module.ts │ │ ├── environments │ │ │ ├── environment.azure.dev.ts │ │ │ ├── environment.azure.prod.ts │ │ │ ├── environment.azure.uat.ts │ │ │ ├── environment.local.dev.ts │ │ │ ├── environment.local.prod.ts │ │ │ ├── environment.local.uat.ts │ │ │ ├── environment.shared.ts │ │ │ ├── environment.ts │ │ │ └── environment.type.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── staticwebapp.config.json │ │ ├── styles.scss │ │ ├── test-setup.ts │ │ └── themes │ │ │ └── default │ │ │ ├── default.dev.ts │ │ │ ├── default.local.ts │ │ │ ├── default.prod.ts │ │ │ ├── default.sit.ts │ │ │ └── default.uat.ts │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── web-widgets-e2e │ ├── .eslintrc.json │ ├── cypress.config.ts │ ├── project.json │ ├── src │ │ ├── e2e │ │ │ └── app.cy.ts │ │ ├── fixtures │ │ │ └── example.json │ │ └── support │ │ │ ├── app.po.ts │ │ │ ├── commands.ts │ │ │ └── e2e.ts │ └── tsconfig.json └── web-widgets │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── project.json │ ├── src │ ├── app │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── graphql.module.ts │ │ ├── styles │ │ │ └── _ui.scss │ │ ├── utils │ │ │ ├── overlay-container.ts │ │ │ └── shadow-root-extended-host.component.ts │ │ └── widgets │ │ │ ├── app-widget │ │ │ ├── app-widget-routing.module.ts │ │ │ ├── app-widget.component.html │ │ │ ├── app-widget.component.scss │ │ │ ├── app-widget.component.ts │ │ │ ├── app-widget.module.ts │ │ │ ├── application │ │ │ │ ├── application-routing.module.ts │ │ │ │ ├── application.component.html │ │ │ │ ├── application.component.scss │ │ │ │ ├── application.component.spec.ts │ │ │ │ ├── application.component.ts │ │ │ │ ├── application.module.ts │ │ │ │ └── pages │ │ │ │ │ ├── dashboard │ │ │ │ │ ├── dashboard-routing.module.ts │ │ │ │ │ ├── dashboard.component.html │ │ │ │ │ ├── dashboard.component.scss │ │ │ │ │ ├── dashboard.component.spec.ts │ │ │ │ │ ├── dashboard.component.ts │ │ │ │ │ ├── dashboard.module.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── form │ │ │ │ │ ├── form-routing.module.ts │ │ │ │ │ ├── form.component.html │ │ │ │ │ ├── form.component.scss │ │ │ │ │ ├── form.component.spec.ts │ │ │ │ │ ├── form.component.ts │ │ │ │ │ ├── form.module.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── home │ │ │ │ │ ├── home-routing.module.ts │ │ │ │ │ ├── home.component.html │ │ │ │ │ ├── home.component.scss │ │ │ │ │ ├── home.component.spec.ts │ │ │ │ │ ├── home.component.ts │ │ │ │ │ └── home.module.ts │ │ │ │ │ ├── role-summary │ │ │ │ │ ├── role-summary-routing.module.ts │ │ │ │ │ ├── role-summary.component.html │ │ │ │ │ ├── role-summary.component.scss │ │ │ │ │ ├── role-summary.component.spec.ts │ │ │ │ │ ├── role-summary.component.ts │ │ │ │ │ └── role-summary.module.ts │ │ │ │ │ ├── roles │ │ │ │ │ ├── roles-routing.module.ts │ │ │ │ │ ├── roles.component.html │ │ │ │ │ ├── roles.component.scss │ │ │ │ │ ├── roles.component.spec.ts │ │ │ │ │ ├── roles.component.ts │ │ │ │ │ └── roles.module.ts │ │ │ │ │ ├── share │ │ │ │ │ ├── graphql │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── share-routing.module.ts │ │ │ │ │ ├── share.component.html │ │ │ │ │ ├── share.component.scss │ │ │ │ │ ├── share.component.spec.ts │ │ │ │ │ ├── share.component.ts │ │ │ │ │ └── share.module.ts │ │ │ │ │ ├── user-summary │ │ │ │ │ ├── user-summary-routing.module.ts │ │ │ │ │ ├── user-summary.component.html │ │ │ │ │ ├── user-summary.component.scss │ │ │ │ │ ├── user-summary.component.spec.ts │ │ │ │ │ ├── user-summary.component.ts │ │ │ │ │ └── user-summary.module.ts │ │ │ │ │ └── workflow │ │ │ │ │ ├── graphql │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── workflow-routing.module.ts │ │ │ │ │ ├── workflow.component.html │ │ │ │ │ ├── workflow.component.scss │ │ │ │ │ ├── workflow.component.spec.ts │ │ │ │ │ ├── workflow.component.ts │ │ │ │ │ └── workflow.module.ts │ │ │ ├── auth │ │ │ │ ├── auth-routing.module.ts │ │ │ │ ├── auth.module.ts │ │ │ │ └── pages │ │ │ │ │ └── login │ │ │ │ │ ├── login-routing.module.ts │ │ │ │ │ ├── login.component.html │ │ │ │ │ ├── login.component.scss │ │ │ │ │ ├── login.component.spec.ts │ │ │ │ │ ├── login.component.ts │ │ │ │ │ └── login.module.ts │ │ │ ├── guards │ │ │ │ ├── access.guard.spec.ts │ │ │ │ ├── access.guard.ts │ │ │ │ ├── auth.guard.spec.ts │ │ │ │ ├── auth.guard.ts │ │ │ │ ├── can-deactivate.guard.ts │ │ │ │ └── normalize-url.guard.ts │ │ │ └── route-reuse-strategy.ts │ │ │ └── form-widget │ │ │ ├── components │ │ │ ├── form.component.html │ │ │ ├── form.component.scss │ │ │ ├── form.component.spec.ts │ │ │ ├── form.component.ts │ │ │ └── form.module.ts │ │ │ ├── form-widget.component.html │ │ │ ├── form-widget.component.scss │ │ │ ├── form-widget.component.spec.ts │ │ │ ├── form-widget.component.ts │ │ │ ├── form-widget.module.ts │ │ │ └── graphql │ │ │ └── queries.ts │ ├── environments │ │ ├── environment.azure.dev.ts │ │ ├── environment.azure.local.ts │ │ ├── environment.azure.prod.ts │ │ ├── environment.azure.uat.ts │ │ ├── environment.shared.ts │ │ ├── environment.ts │ │ └── environment.type.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.scss │ ├── test-setup.ts │ └── themes │ │ └── default.ts │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── assets ├── .gitkeep ├── bar.svg ├── column.svg ├── dashboard.svg ├── donut.svg ├── file-explorer.svg ├── fonts │ └── DejaVu │ │ ├── DejaVuSans-Bold.ttf │ │ ├── DejaVuSans-BoldOblique.ttf │ │ ├── DejaVuSans-Oblique.ttf │ │ └── DejaVuSans.ttf ├── form.svg ├── grid.svg ├── line.svg ├── login-background.jpg ├── logo.png ├── map.svg ├── microsoft-icon.jpg ├── owners.svg ├── pie.svg ├── placeholder.svg ├── resource.svg ├── resources.svg ├── silent-check-sso.html ├── summary-card.svg ├── tab.svg ├── text.svg ├── users.svg └── workflow.svg ├── error_pages ├── 404.html └── 500.html ├── jest-shim.ts ├── jest.config.ts ├── jest.preset.js ├── libs ├── .gitkeep ├── doc-management │ ├── .eslintrc.json │ ├── .storybook │ │ ├── main.ts │ │ ├── preview-head.html │ │ ├── preview.js │ │ └── tsconfig.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ └── components │ │ │ │ ├── document-upload │ │ │ │ ├── document-upload.component.html │ │ │ │ ├── document-upload.component.scss │ │ │ │ ├── document-upload.component.spec.ts │ │ │ │ ├── document-upload.component.stories.ts │ │ │ │ ├── document-upload.component.ts │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── shared │ ├── .eslintrc.json │ ├── .storybook │ │ ├── main.ts │ │ ├── preview-head.html │ │ ├── preview.js │ │ ├── storybook-translate.module.ts │ │ └── tsconfig.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── fr.json │ │ │ ├── test.json │ │ │ └── tinymce │ │ │ │ └── fr_FR.js │ │ ├── index.ts │ │ ├── lib │ │ │ ├── components │ │ │ │ ├── access │ │ │ │ │ ├── access.component.html │ │ │ │ │ ├── access.component.scss │ │ │ │ │ ├── access.component.spec.ts │ │ │ │ │ ├── access.component.ts │ │ │ │ │ ├── access.module.ts │ │ │ │ │ ├── edit-access │ │ │ │ │ │ ├── edit-access.component.html │ │ │ │ │ │ ├── edit-access.component.scss │ │ │ │ │ │ ├── edit-access.component.spec.ts │ │ │ │ │ │ ├── edit-access.component.ts │ │ │ │ │ │ └── graphql │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ └── public-api.ts │ │ │ │ ├── action-button │ │ │ │ │ ├── action-button.component.html │ │ │ │ │ ├── action-button.component.scss │ │ │ │ │ ├── action-button.component.spec.ts │ │ │ │ │ ├── action-button.component.ts │ │ │ │ │ ├── action-button.type.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ └── queries.ts │ │ │ │ ├── action-buttons │ │ │ │ │ ├── action-buttons.component.html │ │ │ │ │ ├── action-buttons.component.scss │ │ │ │ │ ├── action-buttons.component.spec.ts │ │ │ │ │ ├── action-buttons.component.ts │ │ │ │ │ └── public-api.ts │ │ │ │ ├── activity-log │ │ │ │ │ ├── activity-log-group-by-page │ │ │ │ │ │ ├── activity-log-group-by-page.component.html │ │ │ │ │ │ ├── activity-log-group-by-page.component.scss │ │ │ │ │ │ ├── activity-log-group-by-page.component.spec.ts │ │ │ │ │ │ └── activity-log-group-by-page.component.ts │ │ │ │ │ ├── activity-log-group-by-user │ │ │ │ │ │ ├── activity-log-group-by-user.component.html │ │ │ │ │ │ ├── activity-log-group-by-user.component.scss │ │ │ │ │ │ ├── activity-log-group-by-user.component.spec.ts │ │ │ │ │ │ └── activity-log-group-by-user.component.ts │ │ │ │ │ ├── activity-log-list │ │ │ │ │ │ ├── activity-log-list.component.html │ │ │ │ │ │ ├── activity-log-list.component.scss │ │ │ │ │ │ ├── activity-log-list.component.spec.ts │ │ │ │ │ │ └── activity-log-list.component.ts │ │ │ │ │ ├── activity-log.component.html │ │ │ │ │ ├── activity-log.component.scss │ │ │ │ │ ├── activity-log.component.spec.ts │ │ │ │ │ ├── activity-log.component.ts │ │ │ │ │ ├── activity-log.module.ts │ │ │ │ │ └── public-api.ts │ │ │ │ ├── aggregation │ │ │ │ │ ├── add-aggregation-modal │ │ │ │ │ │ ├── add-aggregation-modal.component.html │ │ │ │ │ │ ├── add-aggregation-modal.component.scss │ │ │ │ │ │ ├── add-aggregation-modal.component.spec.ts │ │ │ │ │ │ ├── add-aggregation-modal.component.ts │ │ │ │ │ │ └── graphql │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── aggregation-grid │ │ │ │ │ │ ├── aggregation-grid.component.html │ │ │ │ │ │ ├── aggregation-grid.component.scss │ │ │ │ │ │ ├── aggregation-grid.component.spec.ts │ │ │ │ │ │ ├── aggregation-grid.component.ts │ │ │ │ │ │ ├── aggregation-grid.constants.ts │ │ │ │ │ │ ├── aggregation-grid.module.ts │ │ │ │ │ │ └── graphql │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── aggregation-table │ │ │ │ │ │ ├── aggregation-table.component.html │ │ │ │ │ │ ├── aggregation-table.component.scss │ │ │ │ │ │ ├── aggregation-table.component.spec.ts │ │ │ │ │ │ ├── aggregation-table.component.ts │ │ │ │ │ │ └── aggregation-table.module.ts │ │ │ │ │ └── edit-aggregation-modal │ │ │ │ │ │ ├── edit-aggregation-modal.component.html │ │ │ │ │ │ ├── edit-aggregation-modal.component.scss │ │ │ │ │ │ ├── edit-aggregation-modal.component.spec.ts │ │ │ │ │ │ ├── edit-aggregation-modal.component.ts │ │ │ │ │ │ └── public-api.ts │ │ │ │ ├── applications-archive │ │ │ │ │ ├── applications-archive.component.html │ │ │ │ │ ├── applications-archive.component.scss │ │ │ │ │ ├── applications-archive.component.spec.ts │ │ │ │ │ ├── applications-archive.component.ts │ │ │ │ │ ├── applications-archive.module.ts │ │ │ │ │ └── public-api.ts │ │ │ │ ├── applications-summary │ │ │ │ │ ├── applications-summary.component.html │ │ │ │ │ ├── applications-summary.component.scss │ │ │ │ │ ├── applications-summary.component.spec.ts │ │ │ │ │ ├── applications-summary.component.ts │ │ │ │ │ ├── applications-summary.module.ts │ │ │ │ │ ├── applications-summary.stories.ts │ │ │ │ │ ├── components │ │ │ │ │ │ ├── add-application │ │ │ │ │ │ │ ├── add-application.component.html │ │ │ │ │ │ │ ├── add-application.component.scss │ │ │ │ │ │ │ ├── add-application.component.spec.ts │ │ │ │ │ │ │ ├── add-application.component.ts │ │ │ │ │ │ │ └── add-application.stories.ts │ │ │ │ │ │ └── application-summary │ │ │ │ │ │ │ ├── application-summary.component.html │ │ │ │ │ │ │ ├── application-summary.component.scss │ │ │ │ │ │ │ ├── application-summary.component.spec.ts │ │ │ │ │ │ │ ├── application-summary.component.ts │ │ │ │ │ │ │ └── application-summary.stories.ts │ │ │ │ │ └── public-api.ts │ │ │ │ ├── choose-record-modal │ │ │ │ │ ├── choose-record-modal.component.html │ │ │ │ │ ├── choose-record-modal.component.scss │ │ │ │ │ ├── choose-record-modal.component.spec.ts │ │ │ │ │ ├── choose-record-modal.component.ts │ │ │ │ │ └── public-api.ts │ │ │ │ ├── confirm-modal │ │ │ │ │ ├── confirm-modal.component.html │ │ │ │ │ ├── confirm-modal.component.scss │ │ │ │ │ ├── confirm-modal.component.spec.ts │ │ │ │ │ ├── confirm-modal.component.ts │ │ │ │ │ └── public-api.ts │ │ │ │ ├── content-choice │ │ │ │ │ ├── content-choice.component.html │ │ │ │ │ ├── content-choice.component.scss │ │ │ │ │ ├── content-choice.component.spec.ts │ │ │ │ │ ├── content-choice.component.ts │ │ │ │ │ ├── content-choice.module.ts │ │ │ │ │ ├── content-choice.stories.ts │ │ │ │ │ └── public-api.ts │ │ │ │ ├── controls │ │ │ │ │ ├── cron-expression-control │ │ │ │ │ │ ├── cron-expression-control-modal │ │ │ │ │ │ │ ├── cron-expression-control-modal.component.html │ │ │ │ │ │ │ ├── cron-expression-control-modal.component.scss │ │ │ │ │ │ │ ├── cron-expression-control-modal.component.spec.ts │ │ │ │ │ │ │ └── cron-expression-control-modal.component.ts │ │ │ │ │ │ ├── cron-expression-control.component.html │ │ │ │ │ │ ├── cron-expression-control.component.scss │ │ │ │ │ │ ├── cron-expression-control.component.spec.ts │ │ │ │ │ │ ├── cron-expression-control.component.ts │ │ │ │ │ │ ├── cron-expression-control.module.ts │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ ├── editor-control │ │ │ │ │ │ ├── editor-control.component.html │ │ │ │ │ │ ├── editor-control.component.scss │ │ │ │ │ │ ├── editor-control.component.spec.ts │ │ │ │ │ │ ├── editor-control.component.ts │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ ├── gradient-picker │ │ │ │ │ │ ├── gradient-picker-popup │ │ │ │ │ │ │ ├── gradient-picker-popup.component.html │ │ │ │ │ │ │ ├── gradient-picker-popup.component.scss │ │ │ │ │ │ │ ├── gradient-picker-popup.component.spec.ts │ │ │ │ │ │ │ └── gradient-picker-popup.component.ts │ │ │ │ │ │ ├── gradient-picker.component.html │ │ │ │ │ │ ├── gradient-picker.component.scss │ │ │ │ │ │ ├── gradient-picker.component.spec.ts │ │ │ │ │ │ ├── gradient-picker.component.ts │ │ │ │ │ │ └── gradient-picker.module.ts │ │ │ │ │ ├── icon-picker │ │ │ │ │ │ ├── icon-picker-popup │ │ │ │ │ │ │ ├── icon-picker-popup.component.html │ │ │ │ │ │ │ ├── icon-picker-popup.component.scss │ │ │ │ │ │ │ ├── icon-picker-popup.component.spec.ts │ │ │ │ │ │ │ └── icon-picker-popup.component.ts │ │ │ │ │ │ ├── icon-picker.component.html │ │ │ │ │ │ ├── icon-picker.component.scss │ │ │ │ │ │ ├── icon-picker.component.spec.ts │ │ │ │ │ │ ├── icon-picker.component.ts │ │ │ │ │ │ ├── icon-picker.module.ts │ │ │ │ │ │ ├── icon-picker.stories.ts │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ ├── palette-control │ │ │ │ │ │ ├── palette-control.component.html │ │ │ │ │ │ ├── palette-control.component.scss │ │ │ │ │ │ ├── palette-control.component.spec.ts │ │ │ │ │ │ ├── palette-control.component.ts │ │ │ │ │ │ ├── palette-control.module.ts │ │ │ │ │ │ └── palette-control.stories.ts │ │ │ │ │ ├── public-api.ts │ │ │ │ │ ├── reference-data-select │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ │ ├── public-api.ts │ │ │ │ │ │ ├── reference-data-select.component.spec.ts │ │ │ │ │ │ └── reference-data-select.component.ts │ │ │ │ │ └── resource-select │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ └── queries.ts │ │ │ │ │ │ ├── public-api.ts │ │ │ │ │ │ ├── resource-select.component.spec.ts │ │ │ │ │ │ └── resource-select.component.ts │ │ │ │ ├── convert-modal │ │ │ │ │ ├── convert-modal.component.html │ │ │ │ │ ├── convert-modal.component.scss │ │ │ │ │ ├── convert-modal.component.spec.ts │ │ │ │ │ ├── convert-modal.component.ts │ │ │ │ │ ├── graphql │ │ │ │ │ │ └── queries.ts │ │ │ │ │ └── public-api.ts │ │ │ │ ├── custom-widget-style │ │ │ │ │ ├── custom-widget-style.component.html │ │ │ │ │ ├── custom-widget-style.component.scss │ │ │ │ │ ├── custom-widget-style.component.spec.ts │ │ │ │ │ └── custom-widget-style.component.ts │ │ │ │ ├── dashboard-export-button │ │ │ │ │ ├── dashboard-export-button.component.html │ │ │ │ │ ├── dashboard-export-button.component.scss │ │ │ │ │ ├── dashboard-export-button.component.spec.ts │ │ │ │ │ ├── dashboard-export-button.component.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── dashboard-export-modal │ │ │ │ │ ├── dashboard-export-modal.component.html │ │ │ │ │ ├── dashboard-export-modal.component.scss │ │ │ │ │ ├── dashboard-export-modal.component.spec.ts │ │ │ │ │ └── dashboard-export-modal.component.ts │ │ │ │ ├── dashboard-filter-icon │ │ │ │ │ ├── dashboard-filter-icon.component.html │ │ │ │ │ ├── dashboard-filter-icon.component.scss │ │ │ │ │ ├── dashboard-filter-icon.component.spec.ts │ │ │ │ │ ├── dashboard-filter-icon.component.ts │ │ │ │ │ └── public-api.ts │ │ │ │ ├── dashboard-filter │ │ │ │ │ ├── dashboard-filter.component.html │ │ │ │ │ ├── dashboard-filter.component.scss │ │ │ │ │ ├── dashboard-filter.component.spec.ts │ │ │ │ │ ├── dashboard-filter.component.ts │ │ │ │ │ ├── dashboard-filter.module.ts │ │ │ │ │ ├── directives │ │ │ │ │ │ └── drawer-positioner │ │ │ │ │ │ │ ├── drawer-positioner.directive.spec.ts │ │ │ │ │ │ │ ├── drawer-positioner.directive.ts │ │ │ │ │ │ │ └── drawer-positioner.module.ts │ │ │ │ │ ├── enums │ │ │ │ │ │ └── dashboard-filters.enum.ts │ │ │ │ │ ├── filter-builder-modal │ │ │ │ │ │ ├── filter-builder-modal.component.html │ │ │ │ │ │ ├── filter-builder-modal.component.scss │ │ │ │ │ │ ├── filter-builder-modal.component.spec.ts │ │ │ │ │ │ └── filter-builder-modal.component.ts │ │ │ │ │ └── public-api.ts │ │ │ │ ├── dashboard │ │ │ │ │ ├── dashboard.component.html │ │ │ │ │ ├── dashboard.component.scss │ │ │ │ │ ├── dashboard.component.spec.ts │ │ │ │ │ ├── dashboard.component.ts │ │ │ │ │ └── public-api.ts │ │ │ │ ├── distribution-lists │ │ │ │ │ ├── components │ │ │ │ │ │ ├── distribution-modal │ │ │ │ │ │ │ ├── distribution-modal.component.html │ │ │ │ │ │ │ ├── distribution-modal.component.scss │ │ │ │ │ │ │ └── distribution-modal.component.ts │ │ │ │ │ │ └── edit-distribution-list-modal │ │ │ │ │ │ │ ├── edit-distribution-list-modal.component.html │ │ │ │ │ │ │ ├── edit-distribution-list-modal.component.scss │ │ │ │ │ │ │ ├── edit-distribution-list-modal.component.spec.ts │ │ │ │ │ │ │ └── edit-distribution-list-modal.component.ts │ │ │ │ │ ├── distribution-lists.component.html │ │ │ │ │ ├── distribution-lists.component.scss │ │ │ │ │ ├── distribution-lists.component.spec.ts │ │ │ │ │ ├── distribution-lists.component.ts │ │ │ │ │ └── distribution-lists.module.ts │ │ │ │ ├── draft-record-list-modal │ │ │ │ │ ├── draft-record-list-modal.component.html │ │ │ │ │ ├── draft-record-list-modal.component.scss │ │ │ │ │ ├── draft-record-list-modal.component.spec.ts │ │ │ │ │ ├── draft-record-list-modal.component.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ └── queries.ts │ │ │ │ ├── draft-record-modal │ │ │ │ │ ├── draft-record-modal.component.html │ │ │ │ │ ├── draft-record-modal.component.scss │ │ │ │ │ ├── draft-record-modal.component.spec.ts │ │ │ │ │ └── draft-record-modal.component.ts │ │ │ │ ├── draft-record │ │ │ │ │ ├── draft-record.component.html │ │ │ │ │ ├── draft-record.component.scss │ │ │ │ │ ├── draft-record.component.spec.ts │ │ │ │ │ └── draft-record.component.ts │ │ │ │ ├── edit-calculated-field-modal │ │ │ │ │ ├── edit-calculated-field-modal.component.html │ │ │ │ │ ├── edit-calculated-field-modal.component.scss │ │ │ │ │ ├── edit-calculated-field-modal.component.spec.ts │ │ │ │ │ ├── edit-calculated-field-modal.component.ts │ │ │ │ │ ├── public-api.ts │ │ │ │ │ └── utils │ │ │ │ │ │ └── keys.ts │ │ │ │ ├── editable-text │ │ │ │ │ ├── editable-text.component.html │ │ │ │ │ ├── editable-text.component.scss │ │ │ │ │ ├── editable-text.component.spec.ts │ │ │ │ │ ├── editable-text.component.ts │ │ │ │ │ ├── editable-text.module.ts │ │ │ │ │ └── public-api.ts │ │ │ │ ├── editor-question │ │ │ │ │ ├── editor-question.component.html │ │ │ │ │ ├── editor-question.component.scss │ │ │ │ │ ├── editor-question.component.spec.ts │ │ │ │ │ └── editor-question.component.ts │ │ │ │ ├── email-preview-modal │ │ │ │ │ ├── email-preview-modal.component.html │ │ │ │ │ ├── email-preview-modal.component.scss │ │ │ │ │ ├── email-preview-modal.component.spec.ts │ │ │ │ │ └── email-preview-modal.component.ts │ │ │ │ ├── email-template-modal │ │ │ │ │ ├── email-template-modal.component.html │ │ │ │ │ ├── email-template-modal.component.scss │ │ │ │ │ ├── email-template-modal.component.spec.ts │ │ │ │ │ └── email-template-modal.component.ts │ │ │ │ ├── email │ │ │ │ │ ├── components │ │ │ │ │ │ ├── create-distribution │ │ │ │ │ │ │ ├── create-distribution.component.html │ │ │ │ │ │ │ ├── create-distribution.component.scss │ │ │ │ │ │ │ └── create-distribution.component.ts │ │ │ │ │ │ ├── custom-templates │ │ │ │ │ │ │ ├── custom-template.component.html │ │ │ │ │ │ │ ├── custom-template.component.scss │ │ │ │ │ │ │ └── custom-template.component.ts │ │ │ │ │ │ ├── dataset-filter │ │ │ │ │ │ │ ├── dataset-filter.component.html │ │ │ │ │ │ │ ├── dataset-filter.component.scss │ │ │ │ │ │ │ ├── dataset-filter.component.spec.ts │ │ │ │ │ │ │ ├── dataset-filter.component.ts │ │ │ │ │ │ │ └── metadata.constant.ts │ │ │ │ │ │ ├── email-attachment │ │ │ │ │ │ │ ├── email-attachment.component.html │ │ │ │ │ │ │ ├── email-attachment.component.scss │ │ │ │ │ │ │ └── email-attachment.component.ts │ │ │ │ │ │ ├── email-template │ │ │ │ │ │ │ ├── email-template.component.html │ │ │ │ │ │ │ ├── email-template.component.scss │ │ │ │ │ │ │ ├── email-template.component.spec.ts │ │ │ │ │ │ │ └── email-template.component.ts │ │ │ │ │ │ ├── ems-template │ │ │ │ │ │ │ ├── ems-template.component.html │ │ │ │ │ │ │ ├── ems-template.component.scss │ │ │ │ │ │ │ ├── ems-template.component.spec.ts │ │ │ │ │ │ │ └── ems-template.component.ts │ │ │ │ │ │ └── preview-distribution │ │ │ │ │ │ │ ├── preview-distribution.component.html │ │ │ │ │ │ │ ├── preview-distribution.component.scss │ │ │ │ │ │ │ ├── preview-distribution.component.spec.ts │ │ │ │ │ │ │ └── preview-distribution.component.ts │ │ │ │ │ ├── constant.ts │ │ │ │ │ ├── email-routing.module.ts │ │ │ │ │ ├── email.component.html │ │ │ │ │ ├── email.component.scss │ │ │ │ │ ├── email.component.spec.ts │ │ │ │ │ ├── email.component.ts │ │ │ │ │ ├── email.module.ts │ │ │ │ │ ├── email.service.ts │ │ │ │ │ ├── filter │ │ │ │ │ │ └── filter.const.ts │ │ │ │ │ ├── graphql │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── models │ │ │ │ │ │ └── email.const.ts │ │ │ │ │ ├── public-api.ts │ │ │ │ │ └── steps │ │ │ │ │ │ ├── create-dataset │ │ │ │ │ │ ├── create-dataset.component.html │ │ │ │ │ │ ├── create-dataset.component.scss │ │ │ │ │ │ ├── create-dataset.component.spec.ts │ │ │ │ │ │ ├── create-dataset.component.ts │ │ │ │ │ │ └── graphql │ │ │ │ │ │ │ └── mutations.ts │ │ │ │ │ │ ├── create-notification │ │ │ │ │ │ ├── create-notification.component.html │ │ │ │ │ │ ├── create-notification.component.scss │ │ │ │ │ │ ├── create-notification.component.spec.ts │ │ │ │ │ │ └── create-notification.component.ts │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── layout.component.html │ │ │ │ │ │ ├── layout.component.scss │ │ │ │ │ │ ├── layout.component.spec.ts │ │ │ │ │ │ └── layout.component.ts │ │ │ │ │ │ ├── preview │ │ │ │ │ │ ├── preview.component.html │ │ │ │ │ │ ├── preview.component.scss │ │ │ │ │ │ ├── preview.component.spec.ts │ │ │ │ │ │ └── preview.component.ts │ │ │ │ │ │ ├── schedule-alert │ │ │ │ │ │ ├── schedule-alert.component.html │ │ │ │ │ │ ├── schedule-alert.component.scss │ │ │ │ │ │ ├── schedule-alert.component.spec.ts │ │ │ │ │ │ └── schedule-alert.component.ts │ │ │ │ │ │ └── select-distribution │ │ │ │ │ │ ├── select-distribution.component.html │ │ │ │ │ │ ├── select-distribution.component.scss │ │ │ │ │ │ ├── select-distribution.component.spec.ts │ │ │ │ │ │ └── select-distribution.component.ts │ │ │ │ ├── error │ │ │ │ │ ├── error-routing.module.ts │ │ │ │ │ ├── error.component.html │ │ │ │ │ ├── error.component.scss │ │ │ │ │ ├── error.component.spec.ts │ │ │ │ │ ├── error.component.ts │ │ │ │ │ └── error.module.ts │ │ │ │ ├── field-mapper │ │ │ │ │ ├── field-mapper.component.html │ │ │ │ │ ├── field-mapper.component.scss │ │ │ │ │ ├── field-mapper.component.spec.ts │ │ │ │ │ ├── field-mapper.component.ts │ │ │ │ │ └── public-api.ts │ │ │ │ ├── file-explorer │ │ │ │ │ ├── file-explorer-breadcrumb │ │ │ │ │ │ ├── file-explorer-breadcrumb.component.html │ │ │ │ │ │ ├── file-explorer-breadcrumb.component.scss │ │ │ │ │ │ ├── file-explorer-breadcrumb.component.spec.ts │ │ │ │ │ │ └── file-explorer-breadcrumb.component.ts │ │ │ │ │ ├── file-explorer-document-properties │ │ │ │ │ │ ├── file-explorer-document-properties.component.html │ │ │ │ │ │ ├── file-explorer-document-properties.component.scss │ │ │ │ │ │ ├── file-explorer-document-properties.component.spec.ts │ │ │ │ │ │ └── file-explorer-document-properties.component.ts │ │ │ │ │ ├── file-explorer-document-toolbar │ │ │ │ │ │ ├── file-explorer-document-toolbar.component.html │ │ │ │ │ │ ├── file-explorer-document-toolbar.component.scss │ │ │ │ │ │ ├── file-explorer-document-toolbar.component.spec.ts │ │ │ │ │ │ ├── file-explorer-document-toolbar.component.ts │ │ │ │ │ │ └── graphql │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── file-explorer-list-item │ │ │ │ │ │ ├── file-explorer-list-item.component.html │ │ │ │ │ │ ├── file-explorer-list-item.component.scss │ │ │ │ │ │ ├── file-explorer-list-item.component.spec.ts │ │ │ │ │ │ ├── file-explorer-list-item.component.stories.ts │ │ │ │ │ │ └── file-explorer-list-item.component.ts │ │ │ │ │ ├── file-explorer-list │ │ │ │ │ │ ├── file-explorer-list.component.html │ │ │ │ │ │ ├── file-explorer-list.component.scss │ │ │ │ │ │ ├── file-explorer-list.component.spec.ts │ │ │ │ │ │ └── file-explorer-list.component.ts │ │ │ │ │ ├── file-explorer-table │ │ │ │ │ │ ├── file-explorer-table.component.html │ │ │ │ │ │ ├── file-explorer-table.component.scss │ │ │ │ │ │ ├── file-explorer-table.component.spec.ts │ │ │ │ │ │ ├── file-explorer-table.component.ts │ │ │ │ │ │ ├── file-explorer-table.constants.ts │ │ │ │ │ │ └── file-explorer-widget.component.stories.ts │ │ │ │ │ ├── file-explorer-toolbar │ │ │ │ │ │ ├── file-explorer-toolbar.component.html │ │ │ │ │ │ ├── file-explorer-toolbar.component.scss │ │ │ │ │ │ ├── file-explorer-toolbar.component.spec.ts │ │ │ │ │ │ ├── file-explorer-toolbar.component.ts │ │ │ │ │ │ └── graphql │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── file-explorer-treeview │ │ │ │ │ │ ├── file-explorer-treeview.component.html │ │ │ │ │ │ ├── file-explorer-treeview.component.scss │ │ │ │ │ │ ├── file-explorer-treeview.component.spec.ts │ │ │ │ │ │ └── file-explorer-treeview.component.ts │ │ │ │ │ ├── file-explorer-widget │ │ │ │ │ │ ├── file-explorer-widget.component.html │ │ │ │ │ │ ├── file-explorer-widget.component.scss │ │ │ │ │ │ ├── file-explorer-widget.component.spec.ts │ │ │ │ │ │ ├── file-explorer-widget.component.stories.ts │ │ │ │ │ │ └── file-explorer-widget.component.ts │ │ │ │ │ └── types │ │ │ │ │ │ ├── file-explorer-document.type.ts │ │ │ │ │ │ ├── file-explorer-filter.type.ts │ │ │ │ │ │ └── file-explorer-view.type.ts │ │ │ │ ├── filter │ │ │ │ │ ├── filter-group │ │ │ │ │ │ ├── filter-group.component.html │ │ │ │ │ │ ├── filter-group.component.scss │ │ │ │ │ │ ├── filter-group.component.spec.ts │ │ │ │ │ │ └── filter-group.component.ts │ │ │ │ │ ├── filter-row │ │ │ │ │ │ ├── filter-row.component.html │ │ │ │ │ │ ├── filter-row.component.scss │ │ │ │ │ │ ├── filter-row.component.spec.ts │ │ │ │ │ │ └── filter-row.component.ts │ │ │ │ │ ├── filter.component.html │ │ │ │ │ ├── filter.component.scss │ │ │ │ │ ├── filter.component.spec.ts │ │ │ │ │ ├── filter.component.ts │ │ │ │ │ ├── filter.const.ts │ │ │ │ │ └── filter.module.ts │ │ │ │ ├── form-actions │ │ │ │ │ ├── form-actions.component.html │ │ │ │ │ ├── form-actions.component.scss │ │ │ │ │ ├── form-actions.component.spec.ts │ │ │ │ │ ├── form-actions.component.ts │ │ │ │ │ └── form-actions.module.ts │ │ │ │ ├── form-builder │ │ │ │ │ ├── custom-json-editor │ │ │ │ │ │ ├── custom-json-editor.component.html │ │ │ │ │ │ ├── custom-json-editor.component.scss │ │ │ │ │ │ └── custom-json-editor.component.ts │ │ │ │ │ ├── form-builder.component.html │ │ │ │ │ ├── form-builder.component.scss │ │ │ │ │ ├── form-builder.component.spec.ts │ │ │ │ │ ├── form-builder.component.ts │ │ │ │ │ ├── form-builder.module.ts │ │ │ │ │ └── public-api.ts │ │ │ │ ├── form-modal │ │ │ │ │ ├── form-modal.component.html │ │ │ │ │ ├── form-modal.component.scss │ │ │ │ │ ├── form-modal.component.spec.ts │ │ │ │ │ ├── form-modal.component.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ └── queries.ts │ │ │ │ ├── form │ │ │ │ │ ├── form-examples.stories.ts │ │ │ │ │ ├── form.component.html │ │ │ │ │ ├── form.component.scss │ │ │ │ │ ├── form.component.spec.ts │ │ │ │ │ ├── form.component.ts │ │ │ │ │ ├── form.module.ts │ │ │ │ │ ├── graphql │ │ │ │ │ │ └── mutations.ts │ │ │ │ │ ├── public-api.ts │ │ │ │ │ └── stories │ │ │ │ │ │ └── inputs │ │ │ │ │ │ ├── form-boolean.stories.ts │ │ │ │ │ │ ├── form-checkbox.stories.ts │ │ │ │ │ │ ├── form-color.stories.ts │ │ │ │ │ │ ├── form-comment.stories.ts │ │ │ │ │ │ ├── form-date.stories.ts │ │ │ │ │ │ ├── form-datetime.stories.ts │ │ │ │ │ │ ├── form-dropdown.stories.ts │ │ │ │ │ │ ├── form-dynamic-matrix.stories.ts │ │ │ │ │ │ ├── form-file.stories.ts │ │ │ │ │ │ ├── form-html.stories.ts │ │ │ │ │ │ ├── form-inputs.stories-shared.ts │ │ │ │ │ │ ├── form-month.stories.ts │ │ │ │ │ │ ├── form-multi-select-matrix.stories.ts │ │ │ │ │ │ ├── form-multipletext.stories.ts │ │ │ │ │ │ ├── form-number.stories.ts │ │ │ │ │ │ ├── form-password.stories.ts │ │ │ │ │ │ ├── form-phone.stories.ts │ │ │ │ │ │ ├── form-radio.stories.ts │ │ │ │ │ │ ├── form-range.stories.ts │ │ │ │ │ │ ├── form-rating.stories.ts │ │ │ │ │ │ ├── form-single-selece-matrix.stories.ts │ │ │ │ │ │ ├── form-tagbox.stories.ts │ │ │ │ │ │ ├── form-text.stories.ts │ │ │ │ │ │ ├── form-time.stories.ts │ │ │ │ │ │ ├── form-url.stories.ts │ │ │ │ │ │ └── form-week.stories.ts │ │ │ │ ├── geospatial-map │ │ │ │ │ ├── geospatial-fields │ │ │ │ │ │ ├── geospatial-fields.component.html │ │ │ │ │ │ ├── geospatial-fields.component.scss │ │ │ │ │ │ ├── geospatial-fields.component.spec.ts │ │ │ │ │ │ └── geospatial-fields.component.ts │ │ │ │ │ ├── geospatial-map.component.html │ │ │ │ │ ├── geospatial-map.component.scss │ │ │ │ │ ├── geospatial-map.component.spec.ts │ │ │ │ │ ├── geospatial-map.component.ts │ │ │ │ │ ├── geospatial-map.interface.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── layer-styling │ │ │ │ │ │ ├── layer-styling.component.html │ │ │ │ │ │ ├── layer-styling.component.scss │ │ │ │ │ │ ├── layer-styling.component.spec.ts │ │ │ │ │ │ ├── layer-styling.component.ts │ │ │ │ │ │ └── layer-styling.module.ts │ │ │ │ ├── grid-layout │ │ │ │ │ ├── add-layout-modal │ │ │ │ │ │ ├── add-layout-modal.component.html │ │ │ │ │ │ ├── add-layout-modal.component.scss │ │ │ │ │ │ ├── add-layout-modal.component.spec.ts │ │ │ │ │ │ ├── add-layout-modal.component.ts │ │ │ │ │ │ └── graphql │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── edit-layout-modal │ │ │ │ │ │ ├── edit-layout-modal.component.html │ │ │ │ │ │ ├── edit-layout-modal.component.scss │ │ │ │ │ │ ├── edit-layout-modal.component.spec.ts │ │ │ │ │ │ ├── edit-layout-modal.component.ts │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ └── layout-table │ │ │ │ │ │ ├── layout-table.component.html │ │ │ │ │ │ ├── layout-table.component.scss │ │ │ │ │ │ ├── layout-table.component.spec.ts │ │ │ │ │ │ ├── layout-table.component.ts │ │ │ │ │ │ └── layout-table.module.ts │ │ │ │ ├── layout │ │ │ │ │ ├── graphql │ │ │ │ │ │ ├── queries.ts │ │ │ │ │ │ └── subscriptions.ts │ │ │ │ │ ├── layout.component.html │ │ │ │ │ ├── layout.component.scss │ │ │ │ │ ├── layout.component.spec.ts │ │ │ │ │ ├── layout.component.ts │ │ │ │ │ ├── layout.module.ts │ │ │ │ │ └── public-api.ts │ │ │ │ ├── list-filter │ │ │ │ │ ├── list-filter.component.html │ │ │ │ │ ├── list-filter.component.spec.ts │ │ │ │ │ └── list-filter.component.ts │ │ │ │ ├── mapping │ │ │ │ │ ├── mapping-forms.ts │ │ │ │ │ ├── mapping-modal │ │ │ │ │ │ ├── mapping-modal.component.html │ │ │ │ │ │ ├── mapping-modal.component.scss │ │ │ │ │ │ ├── mapping-modal.component.spec.ts │ │ │ │ │ │ ├── mapping-modal.component.ts │ │ │ │ │ │ └── mapping-modal.stories.ts │ │ │ │ │ ├── mapping.component.html │ │ │ │ │ ├── mapping.component.scss │ │ │ │ │ ├── mapping.component.spec.ts │ │ │ │ │ ├── mapping.component.ts │ │ │ │ │ ├── mapping.module.ts │ │ │ │ │ ├── mapping.stories.ts │ │ │ │ │ └── public-api.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ ├── navbar.component.scss │ │ │ │ │ ├── navbar.component.spec.ts │ │ │ │ │ ├── navbar.component.ts │ │ │ │ │ ├── navbar.module.ts │ │ │ │ │ └── public-api.ts │ │ │ │ ├── notifications │ │ │ │ │ ├── components │ │ │ │ │ │ └── edit-notification-modal │ │ │ │ │ │ │ ├── edit-notification-modal.component.html │ │ │ │ │ │ │ ├── edit-notification-modal.component.scss │ │ │ │ │ │ │ ├── edit-notification-modal.component.spec.ts │ │ │ │ │ │ │ ├── edit-notification-modal.component.ts │ │ │ │ │ │ │ └── graphql │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── graphql │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── notifications.component.html │ │ │ │ │ ├── notifications.component.scss │ │ │ │ │ ├── notifications.component.spec.ts │ │ │ │ │ ├── notifications.component.ts │ │ │ │ │ └── notifications.module.ts │ │ │ │ ├── payload-modal │ │ │ │ │ ├── payload-modal.component.html │ │ │ │ │ ├── payload-modal.component.scss │ │ │ │ │ ├── payload-modal.component.spec.ts │ │ │ │ │ └── payload-modal.component.ts │ │ │ │ ├── preferences-modal │ │ │ │ │ ├── preferences-modal.component.html │ │ │ │ │ ├── preferences-modal.component.scss │ │ │ │ │ ├── preferences-modal.component.spec.ts │ │ │ │ │ └── preferences-modal.component.ts │ │ │ │ ├── query-builder │ │ │ │ │ ├── date-filter-editor │ │ │ │ │ │ ├── date-filter-editor.component.html │ │ │ │ │ │ ├── date-filter-editor.component.scss │ │ │ │ │ │ ├── date-filter-editor.component.spec.ts │ │ │ │ │ │ └── date-filter-editor.component.ts │ │ │ │ │ ├── public-api.ts │ │ │ │ │ ├── query-builder-forms.ts │ │ │ │ │ ├── query-builder.component.html │ │ │ │ │ ├── query-builder.component.scss │ │ │ │ │ ├── query-builder.component.spec.ts │ │ │ │ │ ├── query-builder.component.ts │ │ │ │ │ ├── query-builder.module.ts │ │ │ │ │ ├── tab-fields │ │ │ │ │ │ ├── tab-fields.component.html │ │ │ │ │ │ ├── tab-fields.component.scss │ │ │ │ │ │ ├── tab-fields.component.spec.ts │ │ │ │ │ │ └── tab-fields.component.ts │ │ │ │ │ ├── tab-filter │ │ │ │ │ │ ├── tab-filter.component.html │ │ │ │ │ │ ├── tab-filter.component.scss │ │ │ │ │ │ ├── tab-filter.component.spec.ts │ │ │ │ │ │ └── tab-filter.component.ts │ │ │ │ │ ├── tab-layout-preview │ │ │ │ │ │ ├── tab-layout-preview.component.html │ │ │ │ │ │ ├── tab-layout-preview.component.scss │ │ │ │ │ │ ├── tab-layout-preview.component.spec.ts │ │ │ │ │ │ └── tab-layout-preview.component.ts │ │ │ │ │ ├── tab-pagination │ │ │ │ │ │ ├── tab-pagination.component.html │ │ │ │ │ │ ├── tab-pagination.component.scss │ │ │ │ │ │ ├── tab-pagination.component.spec.ts │ │ │ │ │ │ └── tab-pagination.component.ts │ │ │ │ │ ├── tab-sort │ │ │ │ │ │ ├── tab-sort.component.html │ │ │ │ │ │ ├── tab-sort.component.scss │ │ │ │ │ │ ├── tab-sort.component.spec.ts │ │ │ │ │ │ └── tab-sort.component.ts │ │ │ │ │ └── tab-style │ │ │ │ │ │ ├── query-style-list │ │ │ │ │ │ ├── query-style-list.component.html │ │ │ │ │ │ ├── query-style-list.component.scss │ │ │ │ │ │ ├── query-style-list.component.spec.ts │ │ │ │ │ │ └── query-style-list.component.ts │ │ │ │ │ │ ├── query-style-preview │ │ │ │ │ │ ├── query-style-preview.component.html │ │ │ │ │ │ ├── query-style-preview.component.scss │ │ │ │ │ │ ├── query-style-preview.component.spec.ts │ │ │ │ │ │ └── query-style-preview.component.ts │ │ │ │ │ │ ├── query-style │ │ │ │ │ │ ├── query-style.component.html │ │ │ │ │ │ ├── query-style.component.scss │ │ │ │ │ │ ├── query-style.component.spec.ts │ │ │ │ │ │ └── query-style.component.ts │ │ │ │ │ │ ├── tab-style.component.html │ │ │ │ │ │ ├── tab-style.component.scss │ │ │ │ │ │ ├── tab-style.component.spec.ts │ │ │ │ │ │ └── tab-style.component.ts │ │ │ │ ├── record-dropdown │ │ │ │ │ ├── graphql │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── public-api.ts │ │ │ │ │ ├── record-dropdown.component.html │ │ │ │ │ ├── record-dropdown.component.scss │ │ │ │ │ ├── record-dropdown.component.spec.ts │ │ │ │ │ ├── record-dropdown.component.ts │ │ │ │ │ └── record-dropdown.module.ts │ │ │ │ ├── record-history-modal │ │ │ │ │ ├── record-history-modal.component.html │ │ │ │ │ ├── record-history-modal.component.scss │ │ │ │ │ ├── record-history-modal.component.spec.ts │ │ │ │ │ └── record-history-modal.component.ts │ │ │ │ ├── record-history │ │ │ │ │ ├── graphql │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── public-api.ts │ │ │ │ │ ├── record-history.component.html │ │ │ │ │ ├── record-history.component.scss │ │ │ │ │ ├── record-history.component.spec.ts │ │ │ │ │ ├── record-history.component.ts │ │ │ │ │ └── record-history.module.ts │ │ │ │ ├── record-modal │ │ │ │ │ ├── graphql │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── public-api.ts │ │ │ │ │ ├── record-modal.component.html │ │ │ │ │ ├── record-modal.component.scss │ │ │ │ │ ├── record-modal.component.spec.ts │ │ │ │ │ └── record-modal.component.ts │ │ │ │ ├── record-summary │ │ │ │ │ ├── record-summary.component.html │ │ │ │ │ ├── record-summary.component.scss │ │ │ │ │ ├── record-summary.component.spec.ts │ │ │ │ │ ├── record-summary.component.ts │ │ │ │ │ ├── record-summary.module.ts │ │ │ │ │ └── record-summary.stories.ts │ │ │ │ ├── resource-modal │ │ │ │ │ ├── resource-modal.component.spec.ts │ │ │ │ │ └── resource-modal.component.ts │ │ │ │ ├── role-summary │ │ │ │ │ ├── graphql │ │ │ │ │ │ ├── fragments.ts │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── public-api.ts │ │ │ │ │ ├── role-auto-assignment │ │ │ │ │ │ ├── edit-role-auto-assignment-modal │ │ │ │ │ │ │ ├── edit-role-auto-assignment-modal.component.html │ │ │ │ │ │ │ ├── edit-role-auto-assignment-modal.component.scss │ │ │ │ │ │ │ ├── edit-role-auto-assignment-modal.component.spec.ts │ │ │ │ │ │ │ └── edit-role-auto-assignment-modal.component.ts │ │ │ │ │ │ ├── role-auto-assignment.component.html │ │ │ │ │ │ ├── role-auto-assignment.component.scss │ │ │ │ │ │ ├── role-auto-assignment.component.spec.ts │ │ │ │ │ │ ├── role-auto-assignment.component.ts │ │ │ │ │ │ └── role-auto-assignment.module.ts │ │ │ │ │ ├── role-channels │ │ │ │ │ │ ├── role-channels.component.html │ │ │ │ │ │ ├── role-channels.component.scss │ │ │ │ │ │ ├── role-channels.component.spec.ts │ │ │ │ │ │ ├── role-channels.component.ts │ │ │ │ │ │ └── role-channels.module.ts │ │ │ │ │ ├── role-details │ │ │ │ │ │ ├── role-details.component.html │ │ │ │ │ │ ├── role-details.component.scss │ │ │ │ │ │ ├── role-details.component.spec.ts │ │ │ │ │ │ ├── role-details.component.ts │ │ │ │ │ │ └── role-details.module.ts │ │ │ │ │ ├── role-features │ │ │ │ │ │ ├── role-dashboards │ │ │ │ │ │ │ ├── role-dashboards.component.html │ │ │ │ │ │ │ ├── role-dashboards.component.scss │ │ │ │ │ │ │ ├── role-dashboards.component.spec.ts │ │ │ │ │ │ │ └── role-dashboards.component.ts │ │ │ │ │ │ ├── role-features.component.html │ │ │ │ │ │ ├── role-features.component.scss │ │ │ │ │ │ ├── role-features.component.spec.ts │ │ │ │ │ │ ├── role-features.component.ts │ │ │ │ │ │ ├── role-features.module.ts │ │ │ │ │ │ ├── role-forms │ │ │ │ │ │ │ ├── role-forms.component.html │ │ │ │ │ │ │ ├── role-forms.component.scss │ │ │ │ │ │ │ ├── role-forms.component.spec.ts │ │ │ │ │ │ │ └── role-forms.component.ts │ │ │ │ │ │ └── role-workflows │ │ │ │ │ │ │ ├── role-workflows.component.html │ │ │ │ │ │ │ ├── role-workflows.component.scss │ │ │ │ │ │ │ ├── role-workflows.component.spec.ts │ │ │ │ │ │ │ └── role-workflows.component.ts │ │ │ │ │ ├── role-resources-filter │ │ │ │ │ │ ├── role-resources-filter.component.html │ │ │ │ │ │ ├── role-resources-filter.component.scss │ │ │ │ │ │ └── role-resources-filter.component.ts │ │ │ │ │ ├── role-resources │ │ │ │ │ │ ├── permissions.types.ts │ │ │ │ │ │ ├── resource-access-filters │ │ │ │ │ │ │ ├── resource-access-filters.component.html │ │ │ │ │ │ │ ├── resource-access-filters.component.scss │ │ │ │ │ │ │ ├── resource-access-filters.component.spec.ts │ │ │ │ │ │ │ └── resource-access-filters.component.ts │ │ │ │ │ │ ├── resource-fields │ │ │ │ │ │ │ ├── resource-fields.component.html │ │ │ │ │ │ │ ├── resource-fields.component.scss │ │ │ │ │ │ │ ├── resource-fields.component.spec.ts │ │ │ │ │ │ │ └── resource-fields.component.ts │ │ │ │ │ │ ├── role-resources.component.html │ │ │ │ │ │ ├── role-resources.component.scss │ │ │ │ │ │ ├── role-resources.component.spec.ts │ │ │ │ │ │ ├── role-resources.component.ts │ │ │ │ │ │ └── role-resources.module.ts │ │ │ │ │ ├── role-summary.component.html │ │ │ │ │ ├── role-summary.component.scss │ │ │ │ │ ├── role-summary.component.spec.ts │ │ │ │ │ ├── role-summary.component.ts │ │ │ │ │ ├── role-summary.module.ts │ │ │ │ │ └── role-users │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ └── queries.ts │ │ │ │ │ │ ├── role-users.component.html │ │ │ │ │ │ ├── role-users.component.scss │ │ │ │ │ │ ├── role-users.component.spec.ts │ │ │ │ │ │ ├── role-users.component.ts │ │ │ │ │ │ └── role-users.module.ts │ │ │ │ ├── roles │ │ │ │ │ ├── components │ │ │ │ │ │ ├── add-role │ │ │ │ │ │ │ ├── add-role.component.html │ │ │ │ │ │ │ ├── add-role.component.scss │ │ │ │ │ │ │ ├── add-role.component.spec.ts │ │ │ │ │ │ │ └── add-role.component.ts │ │ │ │ │ │ ├── group-list │ │ │ │ │ │ │ ├── filter │ │ │ │ │ │ │ │ ├── filter.component.html │ │ │ │ │ │ │ │ ├── filter.component.scss │ │ │ │ │ │ │ │ ├── filter.component.spec.ts │ │ │ │ │ │ │ │ └── filter.component.ts │ │ │ │ │ │ │ ├── group-list.component.html │ │ │ │ │ │ │ ├── group-list.component.scss │ │ │ │ │ │ │ ├── group-list.component.spec.ts │ │ │ │ │ │ │ ├── group-list.component.ts │ │ │ │ │ │ │ └── group-list.module.ts │ │ │ │ │ │ └── role-list │ │ │ │ │ │ │ ├── filter │ │ │ │ │ │ │ ├── filter.component.html │ │ │ │ │ │ │ ├── filter.component.scss │ │ │ │ │ │ │ ├── filter.component.spec.ts │ │ │ │ │ │ │ └── filter.component.ts │ │ │ │ │ │ │ ├── role-list.component.html │ │ │ │ │ │ │ ├── role-list.component.scss │ │ │ │ │ │ │ ├── role-list.component.spec.ts │ │ │ │ │ │ │ ├── role-list.component.ts │ │ │ │ │ │ │ └── role-list.module.ts │ │ │ │ │ ├── graphql │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── public-api.ts │ │ │ │ │ ├── roles.component.html │ │ │ │ │ ├── roles.component.scss │ │ │ │ │ ├── roles.component.spec.ts │ │ │ │ │ ├── roles.component.ts │ │ │ │ │ └── roles.module.ts │ │ │ │ ├── search-menu │ │ │ │ │ ├── public-api.ts │ │ │ │ │ ├── search-menu.component.html │ │ │ │ │ ├── search-menu.component.scss │ │ │ │ │ ├── search-menu.component.spec.ts │ │ │ │ │ ├── search-menu.component.ts │ │ │ │ │ └── search-menu.module.ts │ │ │ │ ├── search-resource-grid-modal │ │ │ │ │ ├── public-api.ts │ │ │ │ │ ├── search-resource-grid-modal.component.html │ │ │ │ │ ├── search-resource-grid-modal.component.scss │ │ │ │ │ ├── search-resource-grid-modal.component.spec.ts │ │ │ │ │ └── search-resource-grid-modal.component.ts │ │ │ │ ├── skeleton │ │ │ │ │ └── skeleton-table │ │ │ │ │ │ ├── public-api.ts │ │ │ │ │ │ ├── skeleton-table.component.html │ │ │ │ │ │ ├── skeleton-table.component.scss │ │ │ │ │ │ ├── skeleton-table.component.spec.ts │ │ │ │ │ │ ├── skeleton-table.component.ts │ │ │ │ │ │ └── skeleton-table.module.ts │ │ │ │ ├── snackbar-spinner │ │ │ │ │ ├── public-api.ts │ │ │ │ │ ├── snackbar-spinner.component.html │ │ │ │ │ ├── snackbar-spinner.component.scss │ │ │ │ │ ├── snackbar-spinner.component.spec.ts │ │ │ │ │ ├── snackbar-spinner.component.ts │ │ │ │ │ └── snackbar-spinner.module.ts │ │ │ │ ├── status-options │ │ │ │ │ └── status-options.component.ts │ │ │ │ ├── storybook-translate │ │ │ │ │ └── storybook-translate-module.ts │ │ │ │ ├── templates │ │ │ │ │ ├── components │ │ │ │ │ │ ├── edit-template-modal │ │ │ │ │ │ │ ├── edit-template-modal.component.html │ │ │ │ │ │ │ ├── edit-template-modal.component.scss │ │ │ │ │ │ │ ├── edit-template-modal.component.spec.ts │ │ │ │ │ │ │ └── edit-template-modal.component.ts │ │ │ │ │ │ ├── preview-template-modal │ │ │ │ │ │ │ ├── preview-template-modal.component.html │ │ │ │ │ │ │ ├── preview-template-modal.component.scss │ │ │ │ │ │ │ └── preview-template-modal.component.ts │ │ │ │ │ │ └── template-modal │ │ │ │ │ │ │ ├── template-modal.component.html │ │ │ │ │ │ │ ├── template-modal.component.scss │ │ │ │ │ │ │ └── template-modal.component.ts │ │ │ │ │ ├── public-api.ts │ │ │ │ │ ├── templates.component.html │ │ │ │ │ ├── templates.component.scss │ │ │ │ │ ├── templates.component.spec.ts │ │ │ │ │ ├── templates.component.ts │ │ │ │ │ └── templates.module.ts │ │ │ │ ├── ui │ │ │ │ │ ├── aggregation-builder │ │ │ │ │ │ ├── aggregation-builder-forms.ts │ │ │ │ │ │ ├── aggregation-builder.component.html │ │ │ │ │ │ ├── aggregation-builder.component.scss │ │ │ │ │ │ ├── aggregation-builder.component.spec.ts │ │ │ │ │ │ ├── aggregation-builder.component.ts │ │ │ │ │ │ ├── aggregation-builder.module.ts │ │ │ │ │ │ ├── pipeline │ │ │ │ │ │ │ ├── add-field-stage │ │ │ │ │ │ │ │ ├── add-field-stage.component.html │ │ │ │ │ │ │ │ ├── add-field-stage.component.scss │ │ │ │ │ │ │ │ ├── add-field-stage.component.spec.ts │ │ │ │ │ │ │ │ ├── add-field-stage.component.ts │ │ │ │ │ │ │ │ └── add-field-stage.stories.ts │ │ │ │ │ │ │ ├── expressions │ │ │ │ │ │ │ │ ├── expressions.component.html │ │ │ │ │ │ │ │ ├── expressions.component.scss │ │ │ │ │ │ │ │ ├── expressions.component.spec.ts │ │ │ │ │ │ │ │ ├── expressions.component.ts │ │ │ │ │ │ │ │ ├── expressions.stories.ts │ │ │ │ │ │ │ │ └── operators.ts │ │ │ │ │ │ │ ├── field-dropdown │ │ │ │ │ │ │ │ ├── field-dropdown.component.html │ │ │ │ │ │ │ │ ├── field-dropdown.component.scss │ │ │ │ │ │ │ │ ├── field-dropdown.component.spec.ts │ │ │ │ │ │ │ │ └── field-dropdown.component.ts │ │ │ │ │ │ │ ├── group-stage │ │ │ │ │ │ │ │ ├── group-stage.component.html │ │ │ │ │ │ │ │ ├── group-stage.component.scss │ │ │ │ │ │ │ │ ├── group-stage.component.spec.ts │ │ │ │ │ │ │ │ ├── group-stage.component.ts │ │ │ │ │ │ │ │ └── group-stage.stories.ts │ │ │ │ │ │ │ ├── pipeline-stage.enum.ts │ │ │ │ │ │ │ ├── pipeline.component.html │ │ │ │ │ │ │ ├── pipeline.component.scss │ │ │ │ │ │ │ ├── pipeline.component.spec.ts │ │ │ │ │ │ │ ├── pipeline.component.ts │ │ │ │ │ │ │ ├── pipeline.module.ts │ │ │ │ │ │ │ ├── pipeline.stories.ts │ │ │ │ │ │ │ ├── shared │ │ │ │ │ │ │ │ └── stories-config.ts │ │ │ │ │ │ │ └── sort-stage │ │ │ │ │ │ │ │ ├── sort-stage.component.html │ │ │ │ │ │ │ │ ├── sort-stage.component.scss │ │ │ │ │ │ │ │ ├── sort-stage.component.spec.ts │ │ │ │ │ │ │ │ └── sort-stage.component.ts │ │ │ │ │ │ ├── public-api.ts │ │ │ │ │ │ └── series-mapping │ │ │ │ │ │ │ ├── series-mapping.component.html │ │ │ │ │ │ │ ├── series-mapping.component.scss │ │ │ │ │ │ │ ├── series-mapping.component.spec.ts │ │ │ │ │ │ │ ├── series-mapping.component.ts │ │ │ │ │ │ │ ├── series-mapping.module.ts │ │ │ │ │ │ │ └── series-mapping.stories.ts │ │ │ │ │ ├── badge │ │ │ │ │ │ ├── badge-size.enum.ts │ │ │ │ │ │ ├── badge-variant.enum.ts │ │ │ │ │ │ ├── badge.component.html │ │ │ │ │ │ ├── badge.component.scss │ │ │ │ │ │ ├── badge.component.spec.ts │ │ │ │ │ │ ├── badge.component.ts │ │ │ │ │ │ ├── badge.module.ts │ │ │ │ │ │ └── badge.stories.ts │ │ │ │ │ ├── charts │ │ │ │ │ │ ├── bar-chart │ │ │ │ │ │ │ ├── bar-chart.component.html │ │ │ │ │ │ │ ├── bar-chart.component.scss │ │ │ │ │ │ │ ├── bar-chart.component.spec.ts │ │ │ │ │ │ │ ├── bar-chart.component.ts │ │ │ │ │ │ │ ├── bar-chart.module.ts │ │ │ │ │ │ │ ├── bar-chart.stories.ts │ │ │ │ │ │ │ └── public.api.ts │ │ │ │ │ │ ├── const │ │ │ │ │ │ │ └── palette.ts │ │ │ │ │ │ ├── interfaces │ │ │ │ │ │ │ ├── chart.title.ts │ │ │ │ │ │ │ ├── chart.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── line-chart │ │ │ │ │ │ │ ├── line-chart.component.html │ │ │ │ │ │ │ ├── line-chart.component.scss │ │ │ │ │ │ │ ├── line-chart.component.spec.ts │ │ │ │ │ │ │ ├── line-chart.component.ts │ │ │ │ │ │ │ ├── line-chart.module.ts │ │ │ │ │ │ │ ├── line-chart.stories.ts │ │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ │ ├── pie-donut-chart │ │ │ │ │ │ │ ├── pie-donut-chart.component.html │ │ │ │ │ │ │ ├── pie-donut-chart.component.scss │ │ │ │ │ │ │ ├── pie-donut-chart.component.spec.ts │ │ │ │ │ │ │ ├── pie-donut-chart.component.ts │ │ │ │ │ │ │ ├── pie-donut-chart.module.ts │ │ │ │ │ │ │ ├── pie-donut-chart.stories.ts │ │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ └── color.util.ts │ │ │ │ │ ├── core-grid │ │ │ │ │ │ ├── core-grid.component.html │ │ │ │ │ │ ├── core-grid.component.scss │ │ │ │ │ │ ├── core-grid.component.spec.ts │ │ │ │ │ │ ├── core-grid.component.ts │ │ │ │ │ │ ├── core-grid.module.ts │ │ │ │ │ │ ├── date-filter-menu │ │ │ │ │ │ │ ├── date-filter-menu.component.html │ │ │ │ │ │ │ ├── date-filter-menu.component.scss │ │ │ │ │ │ │ ├── date-filter-menu.component.spec.ts │ │ │ │ │ │ │ ├── date-filter-menu.component.ts │ │ │ │ │ │ │ └── date-filter-menu.module.ts │ │ │ │ │ │ ├── editor-modal │ │ │ │ │ │ │ ├── editor-modal.component.html │ │ │ │ │ │ │ ├── editor-modal.component.scss │ │ │ │ │ │ │ └── editor-modal.component.ts │ │ │ │ │ │ ├── errors-modal │ │ │ │ │ │ │ ├── errors-modal.component.html │ │ │ │ │ │ │ ├── errors-modal.component.scss │ │ │ │ │ │ │ ├── errors-modal.component.spec.ts │ │ │ │ │ │ │ └── errors-modal.component.ts │ │ │ │ │ │ ├── expanded-comment │ │ │ │ │ │ │ ├── expanded-comment.component.html │ │ │ │ │ │ │ ├── expanded-comment.component.scss │ │ │ │ │ │ │ ├── expanded-comment.component.spec.ts │ │ │ │ │ │ │ ├── expanded-comment.component.ts │ │ │ │ │ │ │ └── expanded-comment.module.ts │ │ │ │ │ │ ├── export │ │ │ │ │ │ │ ├── export.component.html │ │ │ │ │ │ │ ├── export.component.scss │ │ │ │ │ │ │ ├── export.component.spec.ts │ │ │ │ │ │ │ ├── export.component.ts │ │ │ │ │ │ │ └── export.module.ts │ │ │ │ │ │ ├── filter-menu │ │ │ │ │ │ │ ├── filter-menu.component.html │ │ │ │ │ │ │ ├── filter-menu.component.scss │ │ │ │ │ │ │ ├── filter-menu.component.spec.ts │ │ │ │ │ │ │ ├── filter-menu.component.ts │ │ │ │ │ │ │ └── filter-menu.module.ts │ │ │ │ │ │ ├── filter │ │ │ │ │ │ │ ├── filter.component.html │ │ │ │ │ │ │ ├── filter.component.scss │ │ │ │ │ │ │ ├── filter.component.spec.ts │ │ │ │ │ │ │ ├── filter.component.ts │ │ │ │ │ │ │ └── filter.module.ts │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ │ ├── grid-column-chooser │ │ │ │ │ │ │ ├── grid-column-chooser.component.html │ │ │ │ │ │ │ ├── grid-column-chooser.component.scss │ │ │ │ │ │ │ ├── grid-column-chooser.component.spec.ts │ │ │ │ │ │ │ ├── grid-column-chooser.component.ts │ │ │ │ │ │ │ └── grid-column-chooser.module.ts │ │ │ │ │ │ ├── grid │ │ │ │ │ │ │ ├── grid.component.html │ │ │ │ │ │ │ ├── grid.component.scss │ │ │ │ │ │ │ ├── grid.component.spec.ts │ │ │ │ │ │ │ ├── grid.component.ts │ │ │ │ │ │ │ ├── grid.constants.ts │ │ │ │ │ │ │ ├── grid.module.ts │ │ │ │ │ │ │ └── grid.stories.ts │ │ │ │ │ │ ├── map-modal │ │ │ │ │ │ │ ├── map-modal.component.html │ │ │ │ │ │ │ ├── map-modal.component.scss │ │ │ │ │ │ │ ├── map-modal.component.spec.ts │ │ │ │ │ │ │ └── map-modal.component.ts │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ ├── grid-layout.model.ts │ │ │ │ │ │ │ └── grid-settings.model.ts │ │ │ │ │ │ ├── popup-editor │ │ │ │ │ │ │ ├── popup-editor.component.html │ │ │ │ │ │ │ ├── popup-editor.component.scss │ │ │ │ │ │ │ ├── popup-editor.component.spec.ts │ │ │ │ │ │ │ └── popup-editor.component.ts │ │ │ │ │ │ ├── row-actions │ │ │ │ │ │ │ ├── row-actions.component.html │ │ │ │ │ │ │ ├── row-actions.component.scss │ │ │ │ │ │ │ ├── row-actions.component.spec.ts │ │ │ │ │ │ │ ├── row-actions.component.ts │ │ │ │ │ │ │ └── row-actions.module.ts │ │ │ │ │ │ └── toolbar │ │ │ │ │ │ │ ├── toolbar.component.html │ │ │ │ │ │ │ ├── toolbar.component.scss │ │ │ │ │ │ │ ├── toolbar.component.spec.ts │ │ │ │ │ │ │ ├── toolbar.component.ts │ │ │ │ │ │ │ └── toolbar.module.ts │ │ │ │ │ ├── empty │ │ │ │ │ │ ├── empty.component.html │ │ │ │ │ │ ├── empty.component.scss │ │ │ │ │ │ ├── empty.component.spec.ts │ │ │ │ │ │ ├── empty.component.ts │ │ │ │ │ │ ├── empty.module.ts │ │ │ │ │ │ ├── empty.stories.ts │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ ├── map │ │ │ │ │ │ ├── const │ │ │ │ │ │ │ ├── baseMaps.ts │ │ │ │ │ │ │ ├── language.ts │ │ │ │ │ │ │ └── marker-options.ts │ │ │ │ │ │ ├── controls │ │ │ │ │ │ │ └── legend.control.ts │ │ │ │ │ │ ├── filter.ts │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── interfaces │ │ │ │ │ │ │ ├── layer-legend.type.ts │ │ │ │ │ │ │ ├── layer-settings.type.ts │ │ │ │ │ │ │ ├── map-layers.interface.ts │ │ │ │ │ │ │ └── map.interface.ts │ │ │ │ │ │ ├── layer.ts │ │ │ │ │ │ ├── map-download │ │ │ │ │ │ │ ├── map-download.component.html │ │ │ │ │ │ │ ├── map-download.component.scss │ │ │ │ │ │ │ ├── map-download.component.spec.ts │ │ │ │ │ │ │ └── map-download.component.ts │ │ │ │ │ │ ├── map-legend │ │ │ │ │ │ │ ├── map-legend.component.html │ │ │ │ │ │ │ ├── map-legend.component.scss │ │ │ │ │ │ │ ├── map-legend.component.spec.ts │ │ │ │ │ │ │ └── map-legend.component.ts │ │ │ │ │ │ ├── map-popup │ │ │ │ │ │ │ ├── map-popup.component.html │ │ │ │ │ │ │ ├── map-popup.component.scss │ │ │ │ │ │ │ ├── map-popup.component.spec.ts │ │ │ │ │ │ │ ├── map-popup.component.ts │ │ │ │ │ │ │ └── map-popup.service.ts │ │ │ │ │ │ ├── map-sidenav-controls │ │ │ │ │ │ │ ├── map-sidenav-controls.component.html │ │ │ │ │ │ │ ├── map-sidenav-controls.component.scss │ │ │ │ │ │ │ ├── map-sidenav-controls.component.spec.ts │ │ │ │ │ │ │ ├── map-sidenav-controls.component.ts │ │ │ │ │ │ │ ├── sidenav-controls-menu-basemap │ │ │ │ │ │ │ │ ├── sidenav-controls-menu-basemap.component.html │ │ │ │ │ │ │ │ ├── sidenav-controls-menu-basemap.component.scss │ │ │ │ │ │ │ │ ├── sidenav-controls-menu-basemap.component.spec.ts │ │ │ │ │ │ │ │ └── sidenav-controls-menu-basemap.component.ts │ │ │ │ │ │ │ ├── sidenav-controls-menu-item │ │ │ │ │ │ │ │ ├── sidenav-controls-menu-item.component.html │ │ │ │ │ │ │ │ ├── sidenav-controls-menu-item.component.scss │ │ │ │ │ │ │ │ ├── sidenav-controls-menu-item.component.spec.ts │ │ │ │ │ │ │ │ └── sidenav-controls-menu-item.component.ts │ │ │ │ │ │ │ └── sidenav-controls-menu │ │ │ │ │ │ │ │ ├── sidenav-controls-menu.component.html │ │ │ │ │ │ │ │ ├── sidenav-controls-menu.component.scss │ │ │ │ │ │ │ │ ├── sidenav-controls-menu.component.spec.ts │ │ │ │ │ │ │ │ └── sidenav-controls-menu.component.ts │ │ │ │ │ │ ├── map-zoom │ │ │ │ │ │ │ ├── map-zoom.component.html │ │ │ │ │ │ │ ├── map-zoom.component.scss │ │ │ │ │ │ │ ├── map-zoom.component.spec.ts │ │ │ │ │ │ │ └── map-zoom.component.ts │ │ │ │ │ │ ├── map.component.html │ │ │ │ │ │ ├── map.component.scss │ │ │ │ │ │ ├── map.component.spec.ts │ │ │ │ │ │ ├── map.component.ts │ │ │ │ │ │ ├── map.module.ts │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ └── timedimension-test.ts │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── array-flatter.ts │ │ │ │ │ │ │ ├── create-div-icon.ts │ │ │ │ │ │ │ ├── get-map-features.ts │ │ │ │ │ │ │ ├── haversine.ts │ │ │ │ │ │ │ └── leaflet-heatmap.js │ │ │ │ │ ├── reference-data-grid │ │ │ │ │ │ ├── reference-data-grid.component.html │ │ │ │ │ │ ├── reference-data-grid.component.scss │ │ │ │ │ │ ├── reference-data-grid.component.spec.ts │ │ │ │ │ │ ├── reference-data-grid.component.ts │ │ │ │ │ │ └── reference-data-grid.module.ts │ │ │ │ │ └── tagbox │ │ │ │ │ │ ├── public-api.ts │ │ │ │ │ │ ├── tagbox.component.html │ │ │ │ │ │ ├── tagbox.component.scss │ │ │ │ │ │ ├── tagbox.component.spec.ts │ │ │ │ │ │ ├── tagbox.component.ts │ │ │ │ │ │ ├── tagbox.module.ts │ │ │ │ │ │ └── tagbox.stories.ts │ │ │ │ ├── user-summary │ │ │ │ │ ├── graphql │ │ │ │ │ │ ├── fragments.ts │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── public-api.ts │ │ │ │ │ ├── user-details │ │ │ │ │ │ ├── user-details.component.html │ │ │ │ │ │ ├── user-details.component.scss │ │ │ │ │ │ ├── user-details.component.spec.ts │ │ │ │ │ │ ├── user-details.component.ts │ │ │ │ │ │ └── user-details.module.ts │ │ │ │ │ ├── user-roles │ │ │ │ │ │ ├── user-app-roles │ │ │ │ │ │ │ ├── user-app-roles.component.html │ │ │ │ │ │ │ ├── user-app-roles.component.scss │ │ │ │ │ │ │ ├── user-app-roles.component.spec.ts │ │ │ │ │ │ │ └── user-app-roles.component.ts │ │ │ │ │ │ ├── user-back-roles │ │ │ │ │ │ │ ├── user-back-roles.component.html │ │ │ │ │ │ │ ├── user-back-roles.component.scss │ │ │ │ │ │ │ ├── user-back-roles.component.spec.ts │ │ │ │ │ │ │ └── user-back-roles.component.ts │ │ │ │ │ │ ├── user-groups │ │ │ │ │ │ │ ├── user-groups.component.html │ │ │ │ │ │ │ ├── user-groups.component.scss │ │ │ │ │ │ │ ├── user-groups.component.spec.ts │ │ │ │ │ │ │ └── user-groups.component.ts │ │ │ │ │ │ ├── user-roles.component.html │ │ │ │ │ │ ├── user-roles.component.scss │ │ │ │ │ │ ├── user-roles.component.spec.ts │ │ │ │ │ │ ├── user-roles.component.ts │ │ │ │ │ │ └── user-roles.module.ts │ │ │ │ │ ├── user-summary.component.html │ │ │ │ │ ├── user-summary.component.scss │ │ │ │ │ ├── user-summary.component.spec.ts │ │ │ │ │ ├── user-summary.component.ts │ │ │ │ │ └── user-summary.module.ts │ │ │ │ ├── users │ │ │ │ │ ├── add-user │ │ │ │ │ │ ├── add-user.component.html │ │ │ │ │ │ ├── add-user.component.scss │ │ │ │ │ │ ├── add-user.component.spec.ts │ │ │ │ │ │ ├── add-user.component.ts │ │ │ │ │ │ └── add-user.module.ts │ │ │ │ │ ├── invite-users-modal │ │ │ │ │ │ ├── invite-users-modal.component.html │ │ │ │ │ │ ├── invite-users-modal.component.scss │ │ │ │ │ │ ├── invite-users-modal.component.spec.ts │ │ │ │ │ │ └── invite-users-modal.component.ts │ │ │ │ │ ├── public-api.ts │ │ │ │ │ └── users-filter │ │ │ │ │ │ ├── users-filter.component.html │ │ │ │ │ │ ├── users-filter.component.scss │ │ │ │ │ │ ├── users-filter.component.spec.ts │ │ │ │ │ │ └── users-filter.component.ts │ │ │ │ ├── utils │ │ │ │ │ └── unsubscribe │ │ │ │ │ │ ├── public-api.ts │ │ │ │ │ │ ├── unsubscribe.component.html │ │ │ │ │ │ ├── unsubscribe.component.scss │ │ │ │ │ │ ├── unsubscribe.component.spec.ts │ │ │ │ │ │ ├── unsubscribe.component.ts │ │ │ │ │ │ └── unsubscribe.module.ts │ │ │ │ ├── widget-choice │ │ │ │ │ ├── public-api.ts │ │ │ │ │ ├── widget-choice.component.html │ │ │ │ │ ├── widget-choice.component.scss │ │ │ │ │ ├── widget-choice.component.spec.ts │ │ │ │ │ ├── widget-choice.component.ts │ │ │ │ │ ├── widget-choice.module.ts │ │ │ │ │ └── widget-choice.stories.ts │ │ │ │ ├── widget-grid │ │ │ │ │ ├── edit-widget-modal │ │ │ │ │ │ ├── edit-widget-modal.component.html │ │ │ │ │ │ ├── edit-widget-modal.component.scss │ │ │ │ │ │ ├── edit-widget-modal.component.spec.ts │ │ │ │ │ │ └── edit-widget-modal.component.ts │ │ │ │ │ ├── expanded-widget │ │ │ │ │ │ ├── expanded-widget.component.html │ │ │ │ │ │ ├── expanded-widget.component.scss │ │ │ │ │ │ ├── expanded-widget.component.spec.ts │ │ │ │ │ │ └── expanded-widget.component.ts │ │ │ │ │ ├── public-api.ts │ │ │ │ │ ├── widget-actions │ │ │ │ │ │ ├── widget-actions.component.html │ │ │ │ │ │ ├── widget-actions.component.scss │ │ │ │ │ │ ├── widget-actions.component.spec.ts │ │ │ │ │ │ └── widget-actions.component.ts │ │ │ │ │ ├── widget-grid.component.html │ │ │ │ │ ├── widget-grid.component.scss │ │ │ │ │ ├── widget-grid.component.spec.ts │ │ │ │ │ ├── widget-grid.component.ts │ │ │ │ │ ├── widget-grid.module.ts │ │ │ │ │ └── widget-grid.stories.ts │ │ │ │ ├── widget │ │ │ │ │ ├── public-api.ts │ │ │ │ │ ├── widget.component.html │ │ │ │ │ ├── widget.component.scss │ │ │ │ │ ├── widget.component.spec.ts │ │ │ │ │ ├── widget.component.ts │ │ │ │ │ └── widget.module.ts │ │ │ │ ├── widgets │ │ │ │ │ ├── base-widget │ │ │ │ │ │ ├── base-widget.component.html │ │ │ │ │ │ ├── base-widget.component.scss │ │ │ │ │ │ ├── base-widget.component.spec.ts │ │ │ │ │ │ └── base-widget.component.ts │ │ │ │ │ ├── chart-settings │ │ │ │ │ │ ├── chart-forms.ts │ │ │ │ │ │ ├── chart-settings.component.html │ │ │ │ │ │ ├── chart-settings.component.scss │ │ │ │ │ │ ├── chart-settings.component.spec.ts │ │ │ │ │ │ ├── chart-settings.component.ts │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ │ ├── public-api.ts │ │ │ │ │ │ ├── series-settings │ │ │ │ │ │ │ ├── categories-settings │ │ │ │ │ │ │ │ ├── categories-settings.component.html │ │ │ │ │ │ │ │ ├── categories-settings.component.scss │ │ │ │ │ │ │ │ ├── categories-settings.component.spec.ts │ │ │ │ │ │ │ │ ├── categories-settings.component.ts │ │ │ │ │ │ │ │ └── categories-settings.module.ts │ │ │ │ │ │ │ ├── series-settings.component.css │ │ │ │ │ │ │ ├── series-settings.component.html │ │ │ │ │ │ │ ├── series-settings.component.spec.ts │ │ │ │ │ │ │ ├── series-settings.component.ts │ │ │ │ │ │ │ └── series-settings.module.ts │ │ │ │ │ │ ├── tab-display │ │ │ │ │ │ │ ├── tab-display.component.html │ │ │ │ │ │ │ ├── tab-display.component.scss │ │ │ │ │ │ │ ├── tab-display.component.spec.ts │ │ │ │ │ │ │ ├── tab-display.component.ts │ │ │ │ │ │ │ └── tab-display.module.ts │ │ │ │ │ │ ├── tab-filters │ │ │ │ │ │ │ ├── tab-filters.component.html │ │ │ │ │ │ │ ├── tab-filters.component.scss │ │ │ │ │ │ │ ├── tab-filters.component.spec.ts │ │ │ │ │ │ │ └── tab-filters.component.ts │ │ │ │ │ │ └── tab-main │ │ │ │ │ │ │ ├── tab-main.component.html │ │ │ │ │ │ │ ├── tab-main.component.scss │ │ │ │ │ │ │ ├── tab-main.component.spec.ts │ │ │ │ │ │ │ ├── tab-main.component.ts │ │ │ │ │ │ │ └── tab-main.module.ts │ │ │ │ │ ├── chart │ │ │ │ │ │ ├── chart.component.html │ │ │ │ │ │ ├── chart.component.scss │ │ │ │ │ │ ├── chart.component.spec.ts │ │ │ │ │ │ ├── chart.component.ts │ │ │ │ │ │ ├── chart.module.ts │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ ├── common │ │ │ │ │ │ ├── contextual-filters-settings │ │ │ │ │ │ │ ├── contextual-filters-settings.component.html │ │ │ │ │ │ │ ├── contextual-filters-settings.component.scss │ │ │ │ │ │ │ ├── contextual-filters-settings.component.spec.ts │ │ │ │ │ │ │ └── contextual-filters-settings.component.ts │ │ │ │ │ │ ├── display-settings │ │ │ │ │ │ │ ├── display-settings.component.html │ │ │ │ │ │ │ ├── display-settings.component.scss │ │ │ │ │ │ │ ├── display-settings.component.spec.ts │ │ │ │ │ │ │ ├── display-settings.component.ts │ │ │ │ │ │ │ └── extendWidgetForm.ts │ │ │ │ │ │ ├── html-widget-content │ │ │ │ │ │ │ ├── html-widget-content.component.html │ │ │ │ │ │ │ ├── html-widget-content.component.scss │ │ │ │ │ │ │ ├── html-widget-content.component.spec.ts │ │ │ │ │ │ │ ├── html-widget-content.component.ts │ │ │ │ │ │ │ └── html-widget-content.module.ts │ │ │ │ │ │ ├── query-params-mapping │ │ │ │ │ │ │ ├── query-params-mapping.component.html │ │ │ │ │ │ │ ├── query-params-mapping.component.scss │ │ │ │ │ │ │ ├── query-params-mapping.component.spec.ts │ │ │ │ │ │ │ ├── query-params-mapping.component.ts │ │ │ │ │ │ │ └── reference-data-variables-mapping.component.ts │ │ │ │ │ │ ├── sorting-settings │ │ │ │ │ │ │ ├── sorting-settings.component.html │ │ │ │ │ │ │ ├── sorting-settings.component.scss │ │ │ │ │ │ │ ├── sorting-settings.component.spec.ts │ │ │ │ │ │ │ ├── sorting-settings.component.ts │ │ │ │ │ │ │ └── sorting-settings.module.ts │ │ │ │ │ │ ├── tab-actions │ │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ │ │ ├── tab-actions.component.html │ │ │ │ │ │ │ ├── tab-actions.component.scss │ │ │ │ │ │ │ ├── tab-actions.component.spec.ts │ │ │ │ │ │ │ ├── tab-actions.component.ts │ │ │ │ │ │ │ └── tab-actions.module.ts │ │ │ │ │ │ ├── tab-widget-automations │ │ │ │ │ │ │ ├── tab-widget-automations.component.html │ │ │ │ │ │ │ ├── tab-widget-automations.component.scss │ │ │ │ │ │ │ ├── tab-widget-automations.component.spec.ts │ │ │ │ │ │ │ └── tab-widget-automations.component.ts │ │ │ │ │ │ ├── template-aggregation-modal │ │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ │ │ ├── template-aggregation-modal.component.html │ │ │ │ │ │ │ ├── template-aggregation-modal.component.scss │ │ │ │ │ │ │ ├── template-aggregation-modal.component.spec.ts │ │ │ │ │ │ │ └── template-aggregation-modal.component.ts │ │ │ │ │ │ ├── template-aggregations │ │ │ │ │ │ │ ├── template-aggregations.component.html │ │ │ │ │ │ │ ├── template-aggregations.component.scss │ │ │ │ │ │ │ ├── template-aggregations.component.spec.ts │ │ │ │ │ │ │ └── template-aggregations.component.ts │ │ │ │ │ │ └── widget-automation │ │ │ │ │ │ │ ├── automation-component-selector │ │ │ │ │ │ │ ├── automation-component-selector.component.html │ │ │ │ │ │ │ ├── automation-component-selector.component.scss │ │ │ │ │ │ │ ├── automation-component-selector.component.spec.ts │ │ │ │ │ │ │ └── automation-component-selector.component.ts │ │ │ │ │ │ │ ├── edit-automation-component │ │ │ │ │ │ │ ├── edit-automation-component.component.html │ │ │ │ │ │ │ ├── edit-automation-component.component.scss │ │ │ │ │ │ │ ├── edit-automation-component.component.spec.ts │ │ │ │ │ │ │ └── edit-automation-component.component.ts │ │ │ │ │ │ │ ├── widget-automation.component.html │ │ │ │ │ │ │ ├── widget-automation.component.scss │ │ │ │ │ │ │ ├── widget-automation.component.spec.ts │ │ │ │ │ │ │ └── widget-automation.component.ts │ │ │ │ │ ├── editor-settings │ │ │ │ │ │ ├── editor-settings.component.html │ │ │ │ │ │ ├── editor-settings.component.scss │ │ │ │ │ │ ├── editor-settings.component.spec.ts │ │ │ │ │ │ ├── editor-settings.component.ts │ │ │ │ │ │ ├── editor-settings.forms.ts │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ │ ├── public-api.ts │ │ │ │ │ │ └── record-selection-tab │ │ │ │ │ │ │ ├── record-selection-tab.component.html │ │ │ │ │ │ │ ├── record-selection-tab.component.scss │ │ │ │ │ │ │ ├── record-selection-tab.component.spec.ts │ │ │ │ │ │ │ └── record-selection-tab.component.ts │ │ │ │ │ ├── editor │ │ │ │ │ │ ├── editor.component.html │ │ │ │ │ │ ├── editor.component.scss │ │ │ │ │ │ ├── editor.component.spec.ts │ │ │ │ │ │ ├── editor.component.ts │ │ │ │ │ │ ├── editor.module.ts │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ ├── file-explorer-widget-settings │ │ │ │ │ │ ├── file-explorer-folders-filter │ │ │ │ │ │ │ ├── file-explorer-folders-filter.component.html │ │ │ │ │ │ │ ├── file-explorer-folders-filter.component.scss │ │ │ │ │ │ │ ├── file-explorer-folders-filter.component.spec.ts │ │ │ │ │ │ │ └── file-explorer-folders-filter.component.ts │ │ │ │ │ │ ├── file-explorer-folders-list-box │ │ │ │ │ │ │ ├── file-explorer-folders-list-box.component.html │ │ │ │ │ │ │ ├── file-explorer-folders-list-box.component.scss │ │ │ │ │ │ │ ├── file-explorer-folders-list-box.component.spec.ts │ │ │ │ │ │ │ └── file-explorer-folders-list-box.component.ts │ │ │ │ │ │ ├── file-explorer-folders-tab │ │ │ │ │ │ │ ├── file-explorer-folders-tab.component.html │ │ │ │ │ │ │ ├── file-explorer-folders-tab.component.scss │ │ │ │ │ │ │ ├── file-explorer-folders-tab.component.spec.ts │ │ │ │ │ │ │ └── file-explorer-folders-tab.component.ts │ │ │ │ │ │ ├── file-explorer-form-tab │ │ │ │ │ │ │ ├── file-explorer-form-tab.component.html │ │ │ │ │ │ │ ├── file-explorer-form-tab.component.scss │ │ │ │ │ │ │ ├── file-explorer-form-tab.component.spec.ts │ │ │ │ │ │ │ ├── file-explorer-form-tab.component.ts │ │ │ │ │ │ │ └── graphql │ │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ │ ├── file-explorer-forms.ts │ │ │ │ │ │ ├── file-explorer-request-permissions-recipients │ │ │ │ │ │ │ ├── file-explorer-request-permissions-recipients.component.html │ │ │ │ │ │ │ ├── file-explorer-request-permissions-recipients.component.scss │ │ │ │ │ │ │ ├── file-explorer-request-permissions-recipients.component.spec.ts │ │ │ │ │ │ │ └── file-explorer-request-permissions-recipients.component.ts │ │ │ │ │ │ ├── file-explorer-request-permissions-template │ │ │ │ │ │ │ ├── file-explorer-request-permissions-template.component.html │ │ │ │ │ │ │ ├── file-explorer-request-permissions-template.component.scss │ │ │ │ │ │ │ ├── file-explorer-request-permissions-template.component.spec.ts │ │ │ │ │ │ │ └── file-explorer-request-permissions-template.component.ts │ │ │ │ │ │ ├── file-explorer-widget-settings.component.html │ │ │ │ │ │ ├── file-explorer-widget-settings.component.scss │ │ │ │ │ │ ├── file-explorer-widget-settings.component.spec.ts │ │ │ │ │ │ └── file-explorer-widget-settings.component.ts │ │ │ │ │ ├── grid-settings │ │ │ │ │ │ ├── button-config │ │ │ │ │ │ │ ├── button-config.component.html │ │ │ │ │ │ │ ├── button-config.component.scss │ │ │ │ │ │ │ ├── button-config.component.spec.ts │ │ │ │ │ │ │ ├── button-config.component.ts │ │ │ │ │ │ │ └── button-config.module.ts │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ │ ├── grid-settings.component.html │ │ │ │ │ │ ├── grid-settings.component.scss │ │ │ │ │ │ ├── grid-settings.component.spec.ts │ │ │ │ │ │ ├── grid-settings.component.ts │ │ │ │ │ │ ├── grid-settings.forms.ts │ │ │ │ │ │ ├── public-api.ts │ │ │ │ │ │ ├── tab-buttons │ │ │ │ │ │ │ ├── tab-buttons.component.html │ │ │ │ │ │ │ ├── tab-buttons.component.scss │ │ │ │ │ │ │ ├── tab-buttons.component.spec.ts │ │ │ │ │ │ │ ├── tab-buttons.component.ts │ │ │ │ │ │ │ └── tab-buttons.module.ts │ │ │ │ │ │ └── tab-main │ │ │ │ │ │ │ ├── tab-main.component.html │ │ │ │ │ │ │ ├── tab-main.component.scss │ │ │ │ │ │ │ ├── tab-main.component.spec.ts │ │ │ │ │ │ │ ├── tab-main.component.ts │ │ │ │ │ │ │ └── tab-main.module.ts │ │ │ │ │ ├── grid │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ │ ├── grid.component.html │ │ │ │ │ │ ├── grid.component.scss │ │ │ │ │ │ ├── grid.component.spec.ts │ │ │ │ │ │ ├── grid.component.ts │ │ │ │ │ │ ├── grid.module.ts │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ ├── map-settings │ │ │ │ │ │ ├── add-layer-modal │ │ │ │ │ │ │ ├── add-layer-modal.component.html │ │ │ │ │ │ │ ├── add-layer-modal.component.scss │ │ │ │ │ │ │ ├── add-layer-modal.component.spec.ts │ │ │ │ │ │ │ ├── add-layer-modal.component.ts │ │ │ │ │ │ │ └── graphql │ │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ │ ├── edit-layer-modal │ │ │ │ │ │ │ ├── edit-layer-modal.component.html │ │ │ │ │ │ │ ├── edit-layer-modal.component.scss │ │ │ │ │ │ │ ├── edit-layer-modal.component.spec.ts │ │ │ │ │ │ │ ├── edit-layer-modal.component.ts │ │ │ │ │ │ │ ├── layer-aggregation │ │ │ │ │ │ │ │ ├── layer-aggregation.component.html │ │ │ │ │ │ │ │ ├── layer-aggregation.component.scss │ │ │ │ │ │ │ │ ├── layer-aggregation.component.spec.ts │ │ │ │ │ │ │ │ ├── layer-aggregation.component.ts │ │ │ │ │ │ │ │ └── layer-aggregation.module.ts │ │ │ │ │ │ │ ├── layer-cluster │ │ │ │ │ │ │ │ ├── layer-cluster.component.html │ │ │ │ │ │ │ │ ├── layer-cluster.component.scss │ │ │ │ │ │ │ │ ├── layer-cluster.component.spec.ts │ │ │ │ │ │ │ │ ├── layer-cluster.component.ts │ │ │ │ │ │ │ │ └── layer-cluster.module.ts │ │ │ │ │ │ │ ├── layer-datasource │ │ │ │ │ │ │ │ ├── layer-datasource.component.html │ │ │ │ │ │ │ │ ├── layer-datasource.component.scss │ │ │ │ │ │ │ │ ├── layer-datasource.component.spec.ts │ │ │ │ │ │ │ │ ├── layer-datasource.component.ts │ │ │ │ │ │ │ │ └── layer-datasource.module.ts │ │ │ │ │ │ │ ├── layer-fields │ │ │ │ │ │ │ │ ├── layer-fields.component.html │ │ │ │ │ │ │ │ ├── layer-fields.component.scss │ │ │ │ │ │ │ │ ├── layer-fields.component.spec.ts │ │ │ │ │ │ │ │ ├── layer-fields.component.ts │ │ │ │ │ │ │ │ └── layer-fields.module.ts │ │ │ │ │ │ │ ├── layer-filter │ │ │ │ │ │ │ │ ├── layer-filter.component.html │ │ │ │ │ │ │ │ ├── layer-filter.component.scss │ │ │ │ │ │ │ │ ├── layer-filter.component.spec.ts │ │ │ │ │ │ │ │ ├── layer-filter.component.ts │ │ │ │ │ │ │ │ └── layer-filter.module.ts │ │ │ │ │ │ │ ├── layer-labels │ │ │ │ │ │ │ │ ├── layer-labels.component.html │ │ │ │ │ │ │ │ ├── layer-labels.component.scss │ │ │ │ │ │ │ │ ├── layer-labels.component.spec.ts │ │ │ │ │ │ │ │ ├── layer-labels.component.ts │ │ │ │ │ │ │ │ └── layer-labels.module.ts │ │ │ │ │ │ │ ├── layer-popup │ │ │ │ │ │ │ │ ├── fields-element │ │ │ │ │ │ │ │ │ ├── fields-element.component.html │ │ │ │ │ │ │ │ │ ├── fields-element.component.scss │ │ │ │ │ │ │ │ │ ├── fields-element.component.spec.ts │ │ │ │ │ │ │ │ │ └── fields-element.component.ts │ │ │ │ │ │ │ │ ├── layer-popup.component.html │ │ │ │ │ │ │ │ ├── layer-popup.component.scss │ │ │ │ │ │ │ │ ├── layer-popup.component.spec.ts │ │ │ │ │ │ │ │ ├── layer-popup.component.ts │ │ │ │ │ │ │ │ ├── layer-popup.interface.ts │ │ │ │ │ │ │ │ ├── layer-popup.module.ts │ │ │ │ │ │ │ │ └── text-element │ │ │ │ │ │ │ │ │ ├── text-element.component.html │ │ │ │ │ │ │ │ │ ├── text-element.component.scss │ │ │ │ │ │ │ │ │ ├── text-element.component.spec.ts │ │ │ │ │ │ │ │ │ ├── text-element.component.ts │ │ │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ │ └── keys.ts │ │ │ │ │ │ │ ├── layer-properties │ │ │ │ │ │ │ │ ├── layer-properties.component.html │ │ │ │ │ │ │ │ ├── layer-properties.component.scss │ │ │ │ │ │ │ │ ├── layer-properties.component.spec.ts │ │ │ │ │ │ │ │ ├── layer-properties.component.ts │ │ │ │ │ │ │ │ └── layer-properties.module.ts │ │ │ │ │ │ │ └── layer-styling │ │ │ │ │ │ │ │ ├── class-break-renderer │ │ │ │ │ │ │ │ ├── class-break-renderer.component.html │ │ │ │ │ │ │ │ ├── class-break-renderer.component.scss │ │ │ │ │ │ │ │ ├── class-break-renderer.component.spec.ts │ │ │ │ │ │ │ │ └── class-break-renderer.component.ts │ │ │ │ │ │ │ │ ├── heatmap-renderer │ │ │ │ │ │ │ │ ├── heatmap-renderer.component.html │ │ │ │ │ │ │ │ ├── heatmap-renderer.component.scss │ │ │ │ │ │ │ │ ├── heatmap-renderer.component.spec.ts │ │ │ │ │ │ │ │ └── heatmap-renderer.component.ts │ │ │ │ │ │ │ │ ├── layer-styling.component.html │ │ │ │ │ │ │ │ ├── layer-styling.component.scss │ │ │ │ │ │ │ │ ├── layer-styling.component.spec.ts │ │ │ │ │ │ │ │ ├── layer-styling.component.ts │ │ │ │ │ │ │ │ ├── layer-styling.module.ts │ │ │ │ │ │ │ │ ├── simple-renderer │ │ │ │ │ │ │ │ ├── simple-renderer.component.html │ │ │ │ │ │ │ │ ├── simple-renderer.component.scss │ │ │ │ │ │ │ │ ├── simple-renderer.component.spec.ts │ │ │ │ │ │ │ │ └── simple-renderer.component.ts │ │ │ │ │ │ │ │ └── unique-value-renderer │ │ │ │ │ │ │ │ ├── unique-value-renderer.component.html │ │ │ │ │ │ │ │ ├── unique-value-renderer.component.scss │ │ │ │ │ │ │ │ ├── unique-value-renderer.component.spec.ts │ │ │ │ │ │ │ │ └── unique-value-renderer.component.ts │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ │ ├── map-forms.ts │ │ │ │ │ │ ├── map-layers │ │ │ │ │ │ │ ├── map-layers.component.html │ │ │ │ │ │ │ ├── map-layers.component.scss │ │ │ │ │ │ │ ├── map-layers.component.spec.ts │ │ │ │ │ │ │ ├── map-layers.component.ts │ │ │ │ │ │ │ └── map-layers.module.ts │ │ │ │ │ │ ├── map-properties │ │ │ │ │ │ │ ├── map-controls │ │ │ │ │ │ │ │ ├── map-controls.component.html │ │ │ │ │ │ │ │ ├── map-controls.component.scss │ │ │ │ │ │ │ │ ├── map-controls.component.spec.ts │ │ │ │ │ │ │ │ ├── map-controls.component.ts │ │ │ │ │ │ │ │ └── map-controls.module.ts │ │ │ │ │ │ │ ├── map-properties.component.html │ │ │ │ │ │ │ ├── map-properties.component.scss │ │ │ │ │ │ │ ├── map-properties.component.spec.ts │ │ │ │ │ │ │ ├── map-properties.component.ts │ │ │ │ │ │ │ ├── map-properties.module.ts │ │ │ │ │ │ │ └── webmap-select │ │ │ │ │ │ │ │ ├── webmap-select.component.html │ │ │ │ │ │ │ │ ├── webmap-select.component.scss │ │ │ │ │ │ │ │ ├── webmap-select.component.spec.ts │ │ │ │ │ │ │ │ └── webmap-select.component.ts │ │ │ │ │ │ ├── map-settings.component.html │ │ │ │ │ │ ├── map-settings.component.scss │ │ │ │ │ │ ├── map-settings.component.spec.ts │ │ │ │ │ │ ├── map-settings.component.ts │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ ├── map │ │ │ │ │ │ ├── map.component.html │ │ │ │ │ │ ├── map.component.scss │ │ │ │ │ │ ├── map.component.spec.ts │ │ │ │ │ │ ├── map.component.ts │ │ │ │ │ │ ├── map.module.ts │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ ├── summary-card-settings │ │ │ │ │ │ ├── display-tab │ │ │ │ │ │ │ ├── display-tab.component.html │ │ │ │ │ │ │ ├── display-tab.component.scss │ │ │ │ │ │ │ ├── display-tab.component.spec.ts │ │ │ │ │ │ │ ├── display-tab.component.ts │ │ │ │ │ │ │ └── display.module.ts │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ │ ├── public-api.ts │ │ │ │ │ │ ├── summary-card-general │ │ │ │ │ │ │ ├── summary-card-general.component.html │ │ │ │ │ │ │ ├── summary-card-general.component.scss │ │ │ │ │ │ │ ├── summary-card-general.component.spec.ts │ │ │ │ │ │ │ └── summary-card-general.component.ts │ │ │ │ │ │ ├── summary-card-settings.component.html │ │ │ │ │ │ ├── summary-card-settings.component.scss │ │ │ │ │ │ ├── summary-card-settings.component.spec.ts │ │ │ │ │ │ ├── summary-card-settings.component.ts │ │ │ │ │ │ ├── summary-card-settings.forms.ts │ │ │ │ │ │ └── text-editor-tab │ │ │ │ │ │ │ ├── text-editor-tab.component.html │ │ │ │ │ │ │ ├── text-editor-tab.component.scss │ │ │ │ │ │ │ ├── text-editor-tab.component.spec.ts │ │ │ │ │ │ │ ├── text-editor-tab.component.ts │ │ │ │ │ │ │ └── text-editor.module.ts │ │ │ │ │ ├── summary-card │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ │ ├── summary-card-item-content │ │ │ │ │ │ │ ├── summary-card-item-content.component.html │ │ │ │ │ │ │ ├── summary-card-item-content.component.scss │ │ │ │ │ │ │ ├── summary-card-item-content.component.spec.ts │ │ │ │ │ │ │ ├── summary-card-item-content.component.ts │ │ │ │ │ │ │ └── summary-card-item-content.module.ts │ │ │ │ │ │ ├── summary-card-item │ │ │ │ │ │ │ ├── summary-card-item.component.html │ │ │ │ │ │ │ ├── summary-card-item.component.scss │ │ │ │ │ │ │ ├── summary-card-item.component.spec.ts │ │ │ │ │ │ │ ├── summary-card-item.component.ts │ │ │ │ │ │ │ └── summary-card-item.module.ts │ │ │ │ │ │ ├── summary-card.component.html │ │ │ │ │ │ ├── summary-card.component.scss │ │ │ │ │ │ ├── summary-card.component.spec.ts │ │ │ │ │ │ ├── summary-card.component.ts │ │ │ │ │ │ └── summary-card.module.ts │ │ │ │ │ ├── tabs-settings │ │ │ │ │ │ ├── custom-widget-style-modal │ │ │ │ │ │ │ ├── custom-widget-style-modal.component.html │ │ │ │ │ │ │ ├── custom-widget-style-modal.component.scss │ │ │ │ │ │ │ ├── custom-widget-style-modal.component.spec.ts │ │ │ │ │ │ │ └── custom-widget-style-modal.component.ts │ │ │ │ │ │ ├── tab-grid-settings-modal │ │ │ │ │ │ │ ├── tab-grid-settings-modal.component.html │ │ │ │ │ │ │ ├── tab-grid-settings-modal.component.scss │ │ │ │ │ │ │ ├── tab-grid-settings-modal.component.spec.ts │ │ │ │ │ │ │ └── tab-grid-settings-modal.component.ts │ │ │ │ │ │ ├── tab-main │ │ │ │ │ │ │ ├── tab-main.component.html │ │ │ │ │ │ │ ├── tab-main.component.scss │ │ │ │ │ │ │ ├── tab-main.component.spec.ts │ │ │ │ │ │ │ ├── tab-main.component.ts │ │ │ │ │ │ │ └── tab-main.module.ts │ │ │ │ │ │ ├── tab-settings │ │ │ │ │ │ │ ├── tab-settings.component.html │ │ │ │ │ │ │ ├── tab-settings.component.scss │ │ │ │ │ │ │ ├── tab-settings.component.spec.ts │ │ │ │ │ │ │ ├── tab-settings.component.ts │ │ │ │ │ │ │ └── tab-settings.module.ts │ │ │ │ │ │ ├── tabs-settings.component.html │ │ │ │ │ │ ├── tabs-settings.component.scss │ │ │ │ │ │ ├── tabs-settings.component.spec.ts │ │ │ │ │ │ ├── tabs-settings.component.ts │ │ │ │ │ │ └── tabs-settings.form.ts │ │ │ │ │ ├── tabs │ │ │ │ │ │ ├── tab │ │ │ │ │ │ │ ├── tab.component.html │ │ │ │ │ │ │ ├── tab.component.scss │ │ │ │ │ │ │ ├── tab.component.spec.ts │ │ │ │ │ │ │ ├── tab.component.ts │ │ │ │ │ │ │ └── tab.module.ts │ │ │ │ │ │ ├── tabs.component.html │ │ │ │ │ │ ├── tabs.component.scss │ │ │ │ │ │ ├── tabs.component.spec.ts │ │ │ │ │ │ ├── tabs.component.ts │ │ │ │ │ │ └── tabs.module.ts │ │ │ │ │ └── widget │ │ │ │ │ │ ├── widget.component.html │ │ │ │ │ │ ├── widget.component.scss │ │ │ │ │ │ ├── widget.component.spec.ts │ │ │ │ │ │ └── widget.component.ts │ │ │ │ └── workflow-stepper │ │ │ │ │ ├── components │ │ │ │ │ ├── add-step │ │ │ │ │ │ ├── add-step.component.html │ │ │ │ │ │ ├── add-step.component.scss │ │ │ │ │ │ ├── add-step.component.spec.ts │ │ │ │ │ │ ├── add-step.component.ts │ │ │ │ │ │ └── add-step.stories.ts │ │ │ │ │ └── step │ │ │ │ │ │ ├── step.component.html │ │ │ │ │ │ ├── step.component.scss │ │ │ │ │ │ ├── step.component.spec.ts │ │ │ │ │ │ ├── step.component.ts │ │ │ │ │ │ └── step.stories.ts │ │ │ │ │ ├── public-api.ts │ │ │ │ │ ├── workflow-stepper.component.html │ │ │ │ │ ├── workflow-stepper.component.scss │ │ │ │ │ ├── workflow-stepper.component.spec.ts │ │ │ │ │ ├── workflow-stepper.component.ts │ │ │ │ │ ├── workflow-stepper.module.ts │ │ │ │ │ └── workflow-stepper.stories.ts │ │ │ ├── const │ │ │ │ └── tinymce.const.ts │ │ │ ├── directives │ │ │ │ ├── async-monaco-editor │ │ │ │ │ ├── async-monaco-editor.directive.ts │ │ │ │ │ └── public-api.ts │ │ │ │ ├── fullscreen │ │ │ │ │ ├── fullscreen.directive.spec.ts │ │ │ │ │ ├── fullscreen.directive.ts │ │ │ │ │ ├── fullscreen.module.ts │ │ │ │ │ └── public-api.ts │ │ │ │ └── skeleton │ │ │ │ │ ├── public-api.ts │ │ │ │ │ ├── skeleton.directive.spec.ts │ │ │ │ │ ├── skeleton.directive.ts │ │ │ │ │ └── skeleton.module.ts │ │ │ ├── environments │ │ │ │ └── esri.config.ts │ │ │ ├── forms │ │ │ │ └── automation.forms.ts │ │ │ ├── guards │ │ │ │ ├── permission.guard.spec.ts │ │ │ │ └── permission.guard.ts │ │ │ ├── models │ │ │ │ ├── activity-log.model.ts │ │ │ │ ├── aggregation.model.ts │ │ │ │ ├── api-configuration.model.ts │ │ │ │ ├── application.model.ts │ │ │ │ ├── automation.model.ts │ │ │ │ ├── channel.model.ts │ │ │ │ ├── custom-notification.model.ts │ │ │ │ ├── dashboard.model.ts │ │ │ │ ├── distribution-list.model.ts │ │ │ │ ├── draft-record.model.ts │ │ │ │ ├── email-notifications.model.ts │ │ │ │ ├── file-handler.model.ts │ │ │ │ ├── form.model.ts │ │ │ │ ├── graphql-query.model.ts │ │ │ │ ├── grid.model.ts │ │ │ │ ├── layer.model.ts │ │ │ │ ├── layout.model.ts │ │ │ │ ├── metadata.model.ts │ │ │ │ ├── notification.model.ts │ │ │ │ ├── page.model.ts │ │ │ │ ├── position-attribute-category.model.ts │ │ │ │ ├── position-attribute.model.ts │ │ │ │ ├── pullJob.model.ts │ │ │ │ ├── record.model.ts │ │ │ │ ├── records-history.model.ts │ │ │ │ ├── recordsHistory.ts │ │ │ │ ├── reference-data.model.ts │ │ │ │ ├── resource.model.ts │ │ │ │ ├── step.model.ts │ │ │ │ ├── subscription.model.ts │ │ │ │ ├── template.model.ts │ │ │ │ ├── user.model.ts │ │ │ │ └── workflow.model.ts │ │ │ ├── pipes │ │ │ │ ├── asset │ │ │ │ │ ├── asset.pipe.spec.ts │ │ │ │ │ └── asset.pipe.ts │ │ │ │ ├── cron-parser │ │ │ │ │ ├── cron-parser.module.ts │ │ │ │ │ ├── cron-parser.pipe.spec.ts │ │ │ │ │ ├── cron-parser.pipe.ts │ │ │ │ │ └── public-api.ts │ │ │ │ ├── date │ │ │ │ │ ├── date.module.ts │ │ │ │ │ ├── date.pipe.spec.ts │ │ │ │ │ ├── date.pipe.ts │ │ │ │ │ └── public-api.ts │ │ │ │ ├── file-color │ │ │ │ │ ├── file-color.pipe.spec.ts │ │ │ │ │ └── file-color.pipe.ts │ │ │ │ ├── file-icon │ │ │ │ │ ├── file-icon.pipe.spec.ts │ │ │ │ │ └── file-icon.pipe.ts │ │ │ │ ├── gradient │ │ │ │ │ ├── gradient.pipe.spec.ts │ │ │ │ │ └── gradient.pipe.ts │ │ │ │ ├── readable-cron │ │ │ │ │ ├── public-api.ts │ │ │ │ │ ├── readable-cron.module.ts │ │ │ │ │ ├── readable-cron.pipe.spec.ts │ │ │ │ │ └── readable-cron.pipe.ts │ │ │ │ ├── sanitize-html │ │ │ │ │ └── sanitize-html.pipe.ts │ │ │ │ └── strip-html │ │ │ │ │ ├── strip-html.pipe.spec.ts │ │ │ │ │ ├── strip-html.pipe.ts │ │ │ │ │ └── strip-html.stories.ts │ │ │ ├── services │ │ │ │ ├── action-button │ │ │ │ │ ├── action-button.service.spec.ts │ │ │ │ │ ├── action-button.service.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ └── mutations.ts │ │ │ │ ├── aggregation-builder │ │ │ │ │ ├── aggregation-builder.service.spec.ts │ │ │ │ │ └── aggregation-builder.service.ts │ │ │ │ ├── aggregation │ │ │ │ │ ├── aggregation.service.spec.ts │ │ │ │ │ ├── aggregation.service.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ └── queries.ts │ │ │ │ ├── api-proxy │ │ │ │ │ ├── api-proxy.service.spec.ts │ │ │ │ │ └── api-proxy.service.ts │ │ │ │ ├── application-notifications │ │ │ │ │ ├── application-notifications.service.spec.ts │ │ │ │ │ ├── application-notifications.service.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ └── mutations.ts │ │ │ │ ├── application │ │ │ │ │ ├── application.service.spec.ts │ │ │ │ │ ├── application.service.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ ├── queries.ts │ │ │ │ │ │ └── subscriptions.ts │ │ │ │ ├── auth-interceptor │ │ │ │ │ ├── auth-interceptor.service.spec.ts │ │ │ │ │ └── auth-interceptor.service.ts │ │ │ │ ├── auth │ │ │ │ │ ├── auth.service.spec.ts │ │ │ │ │ ├── auth.service.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ └── queries.ts │ │ │ │ ├── breadcrumb │ │ │ │ │ ├── breadcrumb.service.spec.ts │ │ │ │ │ └── breadcrumb.service.ts │ │ │ │ ├── common-services │ │ │ │ │ ├── common-services.service.spec.ts │ │ │ │ │ └── common-services.service.ts │ │ │ │ ├── confirm │ │ │ │ │ ├── confirm.service.spec.ts │ │ │ │ │ └── confirm.service.ts │ │ │ │ ├── context │ │ │ │ │ ├── context-test-values.ts │ │ │ │ │ ├── context.service.spec.ts │ │ │ │ │ ├── context.service.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ └── queries.ts │ │ │ │ ├── dashboard-automation │ │ │ │ │ ├── dashboard-automation.service.spec.ts │ │ │ │ │ └── dashboard-automation.service.ts │ │ │ │ ├── dashboard-export │ │ │ │ │ ├── dashboard-export.service.spec.ts │ │ │ │ │ └── dashboard-export.service.ts │ │ │ │ ├── dashboard │ │ │ │ │ ├── dashboard.service.spec.ts │ │ │ │ │ ├── dashboard.service.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ └── mutations.ts │ │ │ │ ├── data-template │ │ │ │ │ ├── data-template.service.spec.ts │ │ │ │ │ └── data-template.service.ts │ │ │ │ ├── date-translate │ │ │ │ │ ├── date-translate.service.spec.ts │ │ │ │ │ └── date-translate.service.ts │ │ │ │ ├── document-management │ │ │ │ │ ├── document-management.service.spec.ts │ │ │ │ │ ├── document-management.service.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ └── queries.ts │ │ │ │ ├── dom │ │ │ │ │ ├── dom.service.spec.ts │ │ │ │ │ └── dom.service.ts │ │ │ │ ├── download │ │ │ │ │ ├── download.service.spec.ts │ │ │ │ │ └── download.service.ts │ │ │ │ ├── editor │ │ │ │ │ ├── editor.service.spec.ts │ │ │ │ │ └── editor.service.ts │ │ │ │ ├── email │ │ │ │ │ ├── email.service.spec.ts │ │ │ │ │ └── email.service.ts │ │ │ │ ├── form-builder │ │ │ │ │ ├── form-builder.service.spec.ts │ │ │ │ │ ├── form-builder.service.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ └── mutations.ts │ │ │ │ ├── form-helper │ │ │ │ │ ├── form-helper.service.ts │ │ │ │ │ └── graphql │ │ │ │ │ │ └── mutations.ts │ │ │ │ ├── form │ │ │ │ │ ├── form.service.spec.ts │ │ │ │ │ └── form.service.ts │ │ │ │ ├── grid-data-formatter │ │ │ │ │ ├── grid-data-formatter.helper.ts │ │ │ │ │ ├── grid-data-formatter.service.spec.ts │ │ │ │ │ └── grid-data-formatter.service.ts │ │ │ │ ├── grid-layout │ │ │ │ │ ├── graphql │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── grid-layout.service.spec.ts │ │ │ │ │ └── grid-layout.service.ts │ │ │ │ ├── grid │ │ │ │ │ ├── graphql │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── grid.service.spec.ts │ │ │ │ │ └── grid.service.ts │ │ │ │ ├── html-parser │ │ │ │ │ ├── html-parser-helper.ts │ │ │ │ │ ├── html-parser-test-values.ts │ │ │ │ │ ├── html-parser.service.spec.ts │ │ │ │ │ └── html-parser.service.ts │ │ │ │ ├── kendo-translation │ │ │ │ │ ├── kendo-translation.service.spec.ts │ │ │ │ │ └── kendo-translation.service.ts │ │ │ │ ├── logger │ │ │ │ │ ├── logger.service.spec.ts │ │ │ │ │ └── logger.service.ts │ │ │ │ ├── map │ │ │ │ │ ├── arcgis.service.spec.ts │ │ │ │ │ ├── arcgis.service.ts │ │ │ │ │ ├── graphql │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── map-controls.service.spec.ts │ │ │ │ │ ├── map-controls.service.ts │ │ │ │ │ ├── map-layers.service.spec.ts │ │ │ │ │ ├── map-layers.service.ts │ │ │ │ │ ├── map-polygons.service.spec.ts │ │ │ │ │ ├── map-polygons.service.ts │ │ │ │ │ └── regions.ts │ │ │ │ ├── notification │ │ │ │ │ ├── graphql │ │ │ │ │ │ ├── mutations.ts │ │ │ │ │ │ ├── queries.ts │ │ │ │ │ │ └── subscriptions.ts │ │ │ │ │ ├── notification.service.spec.ts │ │ │ │ │ └── notification.service.ts │ │ │ │ ├── query-builder │ │ │ │ │ ├── graphql │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── query-builder.service.spec.ts │ │ │ │ │ └── query-builder.service.ts │ │ │ │ ├── reference-data │ │ │ │ │ ├── graphql │ │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── reference-data.service.spec.ts │ │ │ │ │ └── reference-data.service.ts │ │ │ │ ├── rest │ │ │ │ │ ├── rest.service.spec.ts │ │ │ │ │ └── rest.service.ts │ │ │ │ ├── widget │ │ │ │ │ ├── widget.service.spec.ts │ │ │ │ │ └── widget.service.ts │ │ │ │ └── workflow │ │ │ │ │ ├── graphql │ │ │ │ │ ├── mutations.ts │ │ │ │ │ └── queries.ts │ │ │ │ │ ├── workflow.service.spec.ts │ │ │ │ │ └── workflow.service.ts │ │ │ ├── shared.module.ts │ │ │ ├── style │ │ │ │ ├── map.scss │ │ │ │ ├── styles.scss │ │ │ │ ├── survey.scss │ │ │ │ └── widgets.scss │ │ │ ├── survey │ │ │ │ ├── components │ │ │ │ │ ├── accepted-value-types-text │ │ │ │ │ │ ├── accepted-value-types-text.component.spec.ts │ │ │ │ │ │ ├── accepted-value-types-text.component.ts │ │ │ │ │ │ ├── accepted-value-types-text.model.ts │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ ├── application-dropdown │ │ │ │ │ │ ├── application-dropdown.component.html │ │ │ │ │ │ ├── application-dropdown.component.scss │ │ │ │ │ │ ├── application-dropdown.component.spec.ts │ │ │ │ │ │ ├── application-dropdown.component.ts │ │ │ │ │ │ ├── application-dropdown.model.ts │ │ │ │ │ │ ├── application-dropdown.module.ts │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code-editor.component.html │ │ │ │ │ │ ├── code-editor.component.scss │ │ │ │ │ │ ├── code-editor.component.spec.ts │ │ │ │ │ │ ├── code-editor.component.ts │ │ │ │ │ │ ├── code-editor.model.ts │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ ├── cs-docs-properties-dropdown │ │ │ │ │ │ ├── cs-docs-properties-dropdown.component.html │ │ │ │ │ │ ├── cs-docs-properties-dropdown.component.scss │ │ │ │ │ │ ├── cs-docs-properties-dropdown.component.ts │ │ │ │ │ │ ├── cs-docs-properties-dropdown.model.ts │ │ │ │ │ │ ├── cs-docs-properties-dropdown.module.ts │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ ├── date-type-displayer │ │ │ │ │ │ ├── date-type-displayer.component.spec.ts │ │ │ │ │ │ ├── date-type-displayer.component.ts │ │ │ │ │ │ ├── date-type-displayer.model.ts │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ ├── editor.ts │ │ │ │ │ ├── geofields-listbox │ │ │ │ │ │ ├── edit-geofield │ │ │ │ │ │ │ ├── edit-geofield.component.html │ │ │ │ │ │ │ ├── edit-geofield.component.scss │ │ │ │ │ │ │ ├── edit-geofield.component.spec.ts │ │ │ │ │ │ │ └── edit-geofield.component.ts │ │ │ │ │ │ ├── geofield.type.ts │ │ │ │ │ │ ├── geofields-listbox.component.html │ │ │ │ │ │ ├── geofields-listbox.component.scss │ │ │ │ │ │ ├── geofields-listbox.component.spec.ts │ │ │ │ │ │ ├── geofields-listbox.component.ts │ │ │ │ │ │ ├── geofields-listbox.model.ts │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ ├── geospatial.ts │ │ │ │ │ ├── json-editor │ │ │ │ │ │ ├── json-editor.component.html │ │ │ │ │ │ ├── json-editor.component.scss │ │ │ │ │ │ ├── json-editor.component.spec.ts │ │ │ │ │ │ ├── json-editor.component.ts │ │ │ │ │ │ ├── json-editor.model.ts │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ ├── owner.ts │ │ │ │ │ ├── query-editor │ │ │ │ │ │ ├── public-api.ts │ │ │ │ │ │ ├── query-editor.component.html │ │ │ │ │ │ ├── query-editor.component.scss │ │ │ │ │ │ ├── query-editor.component.spec.ts │ │ │ │ │ │ ├── query-editor.component.ts │ │ │ │ │ │ └── query-editor.model.ts │ │ │ │ │ ├── reference-data-dropdown │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ │ ├── public-api.ts │ │ │ │ │ │ ├── reference-data-dropdown.component.html │ │ │ │ │ │ ├── reference-data-dropdown.component.scss │ │ │ │ │ │ ├── reference-data-dropdown.component.spec.ts │ │ │ │ │ │ ├── reference-data-dropdown.component.ts │ │ │ │ │ │ ├── reference-data-dropdown.model.ts │ │ │ │ │ │ └── reference-data-dropdown.module.ts │ │ │ │ │ ├── resource-available-fields │ │ │ │ │ │ ├── config-display-grid-fields-modal │ │ │ │ │ │ │ ├── config-display-grid-fields-modal.component.html │ │ │ │ │ │ │ ├── config-display-grid-fields-modal.component.spec.ts │ │ │ │ │ │ │ ├── config-display-grid-fields-modal.component.ts │ │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ │ ├── public-api.ts │ │ │ │ │ │ ├── resource-available-fields.component.spec.ts │ │ │ │ │ │ ├── resource-available-fields.component.ts │ │ │ │ │ │ └── resource-available-fields.model.ts │ │ │ │ │ ├── resource-custom-filters │ │ │ │ │ │ ├── public-api.ts │ │ │ │ │ │ ├── resource-custom-filters.component.spec.ts │ │ │ │ │ │ ├── resource-custom-filters.component.ts │ │ │ │ │ │ └── resource-custom-filters.model.ts │ │ │ │ │ ├── resource-dropdown │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ │ ├── public-api.ts │ │ │ │ │ │ ├── resource-dropdown.component.html │ │ │ │ │ │ ├── resource-dropdown.component.scss │ │ │ │ │ │ ├── resource-dropdown.component.spec.ts │ │ │ │ │ │ ├── resource-dropdown.component.ts │ │ │ │ │ │ ├── resource-dropdown.model.ts │ │ │ │ │ │ └── resource-dropdown.module.ts │ │ │ │ │ ├── resource-select-text │ │ │ │ │ │ ├── public-api.ts │ │ │ │ │ │ ├── resource-select-text.component.spec.ts │ │ │ │ │ │ ├── resource-select-text.component.ts │ │ │ │ │ │ └── resource-select-text.model.ts │ │ │ │ │ ├── resource.ts │ │ │ │ │ ├── resources.ts │ │ │ │ │ ├── test-service-dropdown │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ │ ├── public-api.ts │ │ │ │ │ │ ├── test-service-dropdown.component.html │ │ │ │ │ │ ├── test-service-dropdown.component.scss │ │ │ │ │ │ ├── test-service-dropdown.component.spec.ts │ │ │ │ │ │ ├── test-service-dropdown.component.ts │ │ │ │ │ │ └── test-service-dropdown.model.ts │ │ │ │ │ ├── users-dropdown │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ └── queries.ts │ │ │ │ │ │ ├── users-dropdown.component.html │ │ │ │ │ │ ├── users-dropdown.component.scss │ │ │ │ │ │ └── users-dropdown.component.ts │ │ │ │ │ ├── users.ts │ │ │ │ │ ├── utils.ts │ │ │ │ │ └── utils │ │ │ │ │ │ ├── component-register.ts │ │ │ │ │ │ ├── components.enum.ts │ │ │ │ │ │ ├── create-picker-instance.ts │ │ │ │ │ │ └── get-geospatial-fields.ts │ │ │ │ ├── creator.ts │ │ │ │ ├── global-properties │ │ │ │ │ ├── choices-by-graphql.ts │ │ │ │ │ ├── choicesByUrl.ts │ │ │ │ │ ├── cs-api-docs.ts │ │ │ │ │ ├── graphql-variables.ts │ │ │ │ │ ├── others.ts │ │ │ │ │ ├── popup-width.ts │ │ │ │ │ ├── reference-data.ts │ │ │ │ │ └── tooltip.ts │ │ │ │ ├── graphql │ │ │ │ │ └── queries.ts │ │ │ │ ├── init.ts │ │ │ │ ├── localization.ts │ │ │ │ ├── render-global-properties.ts │ │ │ │ ├── types.ts │ │ │ │ └── widgets │ │ │ │ │ ├── comment-widget.ts │ │ │ │ │ ├── dropdown-widget.ts │ │ │ │ │ ├── file-widget.ts │ │ │ │ │ ├── tagbox-widget.ts │ │ │ │ │ ├── text-widget.ts │ │ │ │ │ └── utils │ │ │ │ │ └── common-list-filters.ts │ │ │ ├── utils │ │ │ │ ├── array-filter.ts │ │ │ │ ├── cache-with-expiry.ts │ │ │ │ ├── cleanRecord.ts │ │ │ │ ├── common-services │ │ │ │ │ └── filter.util.ts │ │ │ │ ├── convert-to-minutes.ts │ │ │ │ ├── custom-functions.ts │ │ │ │ ├── filter │ │ │ │ │ ├── filter-display.helper.ts │ │ │ │ │ ├── reference-data-filter.util.ts │ │ │ │ │ └── search-filters.ts │ │ │ │ ├── graphql │ │ │ │ │ └── connection.type.ts │ │ │ │ ├── graphs │ │ │ │ │ ├── parseFontString.ts │ │ │ │ │ └── plugins │ │ │ │ │ │ ├── background.plugin.ts │ │ │ │ │ │ └── underline.plugin.ts │ │ │ │ ├── is-mongo-id.ts │ │ │ │ ├── languages.ts │ │ │ │ ├── prettify.ts │ │ │ │ ├── public-api.ts │ │ │ │ ├── reference-data-metadata.util.ts │ │ │ │ ├── reference-data │ │ │ │ │ ├── aggregation-fields.util.ts │ │ │ │ │ ├── data-transformer.util.ts │ │ │ │ │ ├── filter.util.ts │ │ │ │ │ └── transform-graphql-variables.util.ts │ │ │ │ ├── rxjs │ │ │ │ │ └── resize-observable.util.ts │ │ │ │ ├── scroll-factory.ts │ │ │ │ ├── update-queries.ts │ │ │ │ └── validators │ │ │ │ │ ├── cron.validator.ts │ │ │ │ │ ├── json.validator.ts │ │ │ │ │ └── mutuallyExclusive.validator.ts │ │ │ └── views │ │ │ │ ├── application-distribution-lists │ │ │ │ ├── application-distribution-lists-routing.module.ts │ │ │ │ ├── application-distribution-lists.component.html │ │ │ │ ├── application-distribution-lists.component.scss │ │ │ │ ├── application-distribution-lists.component.spec.ts │ │ │ │ ├── application-distribution-lists.component.ts │ │ │ │ ├── application-distribution-lists.module.ts │ │ │ │ └── public-api.ts │ │ │ │ ├── application-notifications │ │ │ │ ├── application-notifications-routing.module.ts │ │ │ │ ├── application-notifications.component.html │ │ │ │ ├── application-notifications.component.scss │ │ │ │ ├── application-notifications.component.spec.ts │ │ │ │ ├── application-notifications.component.ts │ │ │ │ ├── application-notifications.module.ts │ │ │ │ └── public-api.ts │ │ │ │ ├── application-templates │ │ │ │ ├── application-templates-routing.module.ts │ │ │ │ ├── application-templates.component.html │ │ │ │ ├── application-templates.component.scss │ │ │ │ ├── application-templates.component.spec.ts │ │ │ │ ├── application-templates.component.ts │ │ │ │ ├── application-templates.module.ts │ │ │ │ └── public-api.ts │ │ │ │ ├── application-users │ │ │ │ ├── application-users-routing.module.ts │ │ │ │ ├── application-users.component.html │ │ │ │ ├── application-users.component.scss │ │ │ │ ├── application-users.component.spec.ts │ │ │ │ ├── application-users.component.ts │ │ │ │ ├── application-users.module.ts │ │ │ │ ├── components │ │ │ │ │ └── user-list │ │ │ │ │ │ ├── user-list.component.html │ │ │ │ │ │ ├── user-list.component.scss │ │ │ │ │ │ ├── user-list.component.spec.ts │ │ │ │ │ │ ├── user-list.component.ts │ │ │ │ │ │ └── user-list.module.ts │ │ │ │ ├── graphql │ │ │ │ │ ├── mutations.ts │ │ │ │ │ └── queries.ts │ │ │ │ └── public-api.ts │ │ │ │ ├── profile │ │ │ │ ├── graphql │ │ │ │ │ └── mutations.ts │ │ │ │ ├── profile-routing.module.ts │ │ │ │ ├── profile.component.html │ │ │ │ ├── profile.component.scss │ │ │ │ ├── profile.component.spec.ts │ │ │ │ ├── profile.component.ts │ │ │ │ ├── profile.module.ts │ │ │ │ └── public-api.ts │ │ │ │ ├── public-api.ts │ │ │ │ └── views.module.ts │ │ ├── test-setup.ts │ │ ├── typings │ │ │ ├── extract-files │ │ │ │ └── index.d.ts │ │ │ └── leaflet │ │ │ │ └── index.d.ts │ │ └── widgets │ │ │ └── index.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── styles │ ├── .eslintrc.json │ ├── README.md │ ├── project.json │ ├── src │ │ └── lib │ │ │ ├── kendo │ │ │ └── theme.scss │ │ │ ├── shared │ │ │ └── shared.scss │ │ │ ├── storybook │ │ │ └── storybook.scss │ │ │ ├── tailwind │ │ │ └── tailwind.scss │ │ │ └── themes │ │ │ ├── default │ │ │ └── _variables.scss │ │ │ ├── expertisefr │ │ │ └── _variables.scss │ │ │ ├── lift │ │ │ └── _variables.scss │ │ │ └── oort │ │ │ └── _variables.scss │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json └── ui │ ├── .eslintrc.json │ ├── .storybook │ ├── main.ts │ ├── preview-head.html │ ├── preview.js │ └── tsconfig.json │ ├── README.md │ ├── assets │ ├── component-generate.png │ ├── component-params.png │ └── component-stories.png │ ├── documentation.json │ ├── jest.config.ts │ ├── project.json │ ├── src │ ├── index.ts │ ├── lib │ │ ├── alert │ │ │ ├── alert.component.html │ │ │ ├── alert.component.scss │ │ │ ├── alert.component.spec.ts │ │ │ ├── alert.component.ts │ │ │ ├── alert.module.ts │ │ │ ├── alert.stories.ts │ │ │ └── types │ │ │ │ └── alert-variant.ts │ │ ├── autocomplete │ │ │ ├── autocomplete.component.html │ │ │ ├── autocomplete.component.spec.ts │ │ │ ├── autocomplete.component.ts │ │ │ ├── autocomplete.directive.spec.ts │ │ │ ├── autocomplete.directive.ts │ │ │ ├── autocomplete.module.ts │ │ │ ├── autocomplete.stories.ts │ │ │ ├── components │ │ │ │ ├── option.component.html │ │ │ │ ├── option.component.scss │ │ │ │ ├── option.component.spec.ts │ │ │ │ ├── option.component.ts │ │ │ │ └── option.module.ts │ │ │ └── types │ │ │ │ └── scroll-strategies.ts │ │ ├── avatar-group │ │ │ ├── avatar-group.component.html │ │ │ ├── avatar-group.component.scss │ │ │ ├── avatar-group.component.spec.ts │ │ │ ├── avatar-group.component.ts │ │ │ ├── avatar-group.module.ts │ │ │ ├── avatar-group.stories.ts │ │ │ └── types │ │ │ │ └── avatar-group-stack.ts │ │ ├── avatar │ │ │ ├── avatar.component.html │ │ │ ├── avatar.component.scss │ │ │ ├── avatar.component.spec.ts │ │ │ ├── avatar.component.ts │ │ │ ├── avatar.module.ts │ │ │ ├── avatar.stories.ts │ │ │ └── types │ │ │ │ └── avatar-shape.ts │ │ ├── breadcrumbs │ │ │ ├── breadcrumbs.component.html │ │ │ ├── breadcrumbs.component.scss │ │ │ ├── breadcrumbs.component.spec.ts │ │ │ ├── breadcrumbs.component.ts │ │ │ ├── breadcrumbs.module.ts │ │ │ ├── breadcrumbs.stories.ts │ │ │ ├── interfaces │ │ │ │ └── breadcrumb.interface.ts │ │ │ └── types │ │ │ │ ├── breadcrumb-display.ts │ │ │ │ └── breadcrumb-separator.ts │ │ ├── button │ │ │ ├── button.component.html │ │ │ ├── button.component.scss │ │ │ ├── button.component.spec.ts │ │ │ ├── button.component.ts │ │ │ ├── button.module.ts │ │ │ ├── button.stories.ts │ │ │ └── types │ │ │ │ └── button-icon-position.ts │ │ ├── checkbox │ │ │ ├── checkbox.component.html │ │ │ ├── checkbox.component.scss │ │ │ ├── checkbox.component.spec.ts │ │ │ ├── checkbox.component.ts │ │ │ ├── checkbox.module.ts │ │ │ └── checkbox.stories.ts │ │ ├── chip │ │ │ ├── chip-input.directive.spec.ts │ │ │ ├── chip-input.directive.ts │ │ │ ├── chip-list.directive.spec.ts │ │ │ ├── chip-list.directive.ts │ │ │ ├── chip.component.html │ │ │ ├── chip.component.scss │ │ │ ├── chip.component.spec.ts │ │ │ ├── chip.component.ts │ │ │ ├── chip.module.ts │ │ │ └── chip.stories.ts │ │ ├── cron-editor │ │ │ ├── cron-editor.component.html │ │ │ ├── cron-editor.component.scss │ │ │ ├── cron-editor.component.spec.ts │ │ │ ├── cron-editor.component.ts │ │ │ ├── cron-editor.module.ts │ │ │ ├── cron-editor.stories.ts │ │ │ ├── enum │ │ │ │ └── enums.ts │ │ │ ├── options │ │ │ │ └── cron.options.ts │ │ │ └── time-picker │ │ │ │ ├── time-picker.component.html │ │ │ │ ├── time-picker.component.scss │ │ │ │ ├── time-picker.component.spec.ts │ │ │ │ ├── time-picker.component.ts │ │ │ │ └── time-picker.module.ts │ │ ├── date │ │ │ ├── date-picker.directive.spec.ts │ │ │ ├── date-picker.directive.ts │ │ │ ├── date-picker.wrapper.directive.spec.ts │ │ │ ├── date-picker │ │ │ │ ├── date-picker.component.html │ │ │ │ ├── date-picker.component.spec.ts │ │ │ │ ├── date-picker.component.ts │ │ │ │ ├── date-picker.module.ts │ │ │ │ └── date-picker.stories.ts │ │ │ ├── date-range │ │ │ │ ├── date-range.component.html │ │ │ │ ├── date-range.component.spec.ts │ │ │ │ ├── date-range.component.ts │ │ │ │ ├── date-range.module.ts │ │ │ │ └── date-range.stories.ts │ │ │ ├── date-wrapper.directive.ts │ │ │ ├── date.module.ts │ │ │ ├── date.scss │ │ │ └── types │ │ │ │ └── date-values.ts │ │ ├── dialog │ │ │ ├── dialog-close.directive.spec.ts │ │ │ ├── dialog-close.directive.ts │ │ │ ├── dialog.component.html │ │ │ ├── dialog.component.scss │ │ │ ├── dialog.component.spec.ts │ │ │ ├── dialog.component.ts │ │ │ ├── dialog.module.ts │ │ │ ├── dialog.stories.ts │ │ │ └── types │ │ │ │ └── dialog-size.ts │ │ ├── divider │ │ │ ├── divider.component.html │ │ │ ├── divider.component.scss │ │ │ ├── divider.component.spec.ts │ │ │ ├── divider.component.ts │ │ │ ├── divider.module.ts │ │ │ ├── divider.stories.ts │ │ │ └── types │ │ │ │ ├── divider-orientation.ts │ │ │ │ └── divider-position.ts │ │ ├── error-message │ │ │ ├── error-message.directive.spec.ts │ │ │ ├── error-message.directive.ts │ │ │ └── error-message.module.ts │ │ ├── expansion-panel │ │ │ ├── expansion-panel.component.html │ │ │ ├── expansion-panel.component.scss │ │ │ ├── expansion-panel.component.spec.ts │ │ │ ├── expansion-panel.component.ts │ │ │ ├── expansion-panel.module.ts │ │ │ └── expansion-panel.stories.ts │ │ ├── fixed-wrapper │ │ │ ├── fixed-wrapper.component.html │ │ │ ├── fixed-wrapper.component.scss │ │ │ ├── fixed-wrapper.component.spec.ts │ │ │ ├── fixed-wrapper.component.ts │ │ │ └── fixed-wrapper.module.ts │ │ ├── form-wrapper │ │ │ ├── form-control │ │ │ │ ├── form-control.component.html │ │ │ │ ├── form-control.component.scss │ │ │ │ ├── form-control.component.spec.ts │ │ │ │ └── form-control.component.ts │ │ │ ├── form-wrapper.directive.spec.ts │ │ │ ├── form-wrapper.directive.ts │ │ │ ├── form-wrapper.module.ts │ │ │ ├── form-wrapper.stories.ts │ │ │ ├── prefix.directive.spec.ts │ │ │ ├── prefix.directive.ts │ │ │ ├── suffix.directive.spec.ts │ │ │ └── suffix.directive.ts │ │ ├── graphql-select │ │ │ ├── graphql-select.component.html │ │ │ ├── graphql-select.component.scss │ │ │ ├── graphql-select.component.spec.ts │ │ │ ├── graphql-select.component.ts │ │ │ ├── graphql-select.module.ts │ │ │ └── utils │ │ │ │ ├── scroll-factory.ts │ │ │ │ └── update-queries.ts │ │ ├── icon │ │ │ ├── icon.component.html │ │ │ ├── icon.component.scss │ │ │ ├── icon.component.spec.ts │ │ │ ├── icon.component.ts │ │ │ ├── icon.list.ts │ │ │ ├── icon.module.ts │ │ │ └── icon.stories.ts │ │ ├── menu │ │ │ ├── directives │ │ │ │ ├── menu-item.directive.spec.ts │ │ │ │ ├── menu-item.directive.ts │ │ │ │ ├── menu.directive.spec.ts │ │ │ │ └── menu.directive.ts │ │ │ ├── menu.component.html │ │ │ ├── menu.component.spec.ts │ │ │ ├── menu.component.ts │ │ │ ├── menu.module.ts │ │ │ └── menu.stories.ts │ │ ├── paginator │ │ │ ├── interfaces │ │ │ │ └── paginator.interfaces.ts │ │ │ ├── paginator.component.html │ │ │ ├── paginator.component.scss │ │ │ ├── paginator.component.spec.ts │ │ │ ├── paginator.component.ts │ │ │ ├── paginator.module.ts │ │ │ └── paginator.stories.ts │ │ ├── radio │ │ │ ├── radio-group.directive.spec.ts │ │ │ ├── radio-group.directive.ts │ │ │ ├── radio.component.html │ │ │ ├── radio.component.scss │ │ │ ├── radio.component.spec.ts │ │ │ ├── radio.component.ts │ │ │ ├── radio.module.ts │ │ │ └── radio.stories.ts │ │ ├── select-menu │ │ │ ├── components │ │ │ │ ├── select-option.component.html │ │ │ │ ├── select-option.component.scss │ │ │ │ ├── select-option.component.spec.ts │ │ │ │ ├── select-option.component.ts │ │ │ │ └── select-option.module.ts │ │ │ ├── select-menu.component.html │ │ │ ├── select-menu.component.scss │ │ │ ├── select-menu.component.spec.ts │ │ │ ├── select-menu.component.ts │ │ │ ├── select-menu.module.ts │ │ │ └── select-menu.stories.ts │ │ ├── shadow-dom │ │ │ └── shadow-dom.service.ts │ │ ├── sidenav │ │ │ ├── layout │ │ │ │ ├── layout.service.spec.ts │ │ │ │ └── layout.service.ts │ │ │ ├── sidenav-container.component.html │ │ │ ├── sidenav-container.component.scss │ │ │ ├── sidenav-container.component.spec.ts │ │ │ ├── sidenav-container.component.ts │ │ │ ├── sidenav-container.module.ts │ │ │ ├── sidenav.directive.spec.ts │ │ │ ├── sidenav.directive.ts │ │ │ ├── sidenav.stories.ts │ │ │ └── types │ │ │ │ └── sidenavs.ts │ │ ├── slider │ │ │ ├── slider.component.html │ │ │ ├── slider.component.scss │ │ │ ├── slider.component.spec.ts │ │ │ ├── slider.component.ts │ │ │ ├── slider.module.ts │ │ │ └── slider.stories.ts │ │ ├── snackbar │ │ │ ├── interfaces │ │ │ │ └── snackbar.interfaces.ts │ │ │ ├── snackbar.component.html │ │ │ ├── snackbar.component.scss │ │ │ ├── snackbar.component.spec.ts │ │ │ ├── snackbar.component.ts │ │ │ ├── snackbar.module.ts │ │ │ ├── snackbar.service.ts │ │ │ ├── snackbar.stories.ts │ │ │ └── snackbar.token.ts │ │ ├── spinner │ │ │ ├── spinner.component.html │ │ │ ├── spinner.component.scss │ │ │ ├── spinner.component.spec.ts │ │ │ ├── spinner.component.ts │ │ │ ├── spinner.module.ts │ │ │ └── spinner.stories.ts │ │ ├── table │ │ │ ├── cell-header.directive.ts │ │ │ ├── cell.directive.ts │ │ │ ├── handle-pagination-event.ts │ │ │ ├── interfaces │ │ │ │ └── table-column.interface.ts │ │ │ ├── table-header-sort.directive.ts │ │ │ ├── table-wrapper.directive.ts │ │ │ ├── table.module.ts │ │ │ ├── table.spec.ts │ │ │ └── table.stories.ts │ │ ├── tabs │ │ │ ├── components │ │ │ │ └── tab │ │ │ │ │ ├── tab.component.html │ │ │ │ │ ├── tab.component.scss │ │ │ │ │ ├── tab.component.spec.ts │ │ │ │ │ └── tab.component.ts │ │ │ ├── directives │ │ │ │ ├── tab-body-host.directive.spec.ts │ │ │ │ ├── tab-body-host.directive.ts │ │ │ │ ├── tab-content.directive.spec.ts │ │ │ │ └── tab-content.directive.ts │ │ │ ├── tabs.component.html │ │ │ ├── tabs.component.scss │ │ │ ├── tabs.component.spec.ts │ │ │ ├── tabs.component.ts │ │ │ ├── tabs.module.ts │ │ │ └── tabs.stories.ts │ │ ├── textarea │ │ │ ├── textarea.component.html │ │ │ ├── textarea.component.scss │ │ │ ├── textarea.component.spec.ts │ │ │ ├── textarea.component.ts │ │ │ ├── textarea.module.ts │ │ │ └── textarea.stories.ts │ │ ├── toggle │ │ │ ├── interfaces │ │ │ │ └── toggle-icon.interface.ts │ │ │ ├── toggle.component.html │ │ │ ├── toggle.component.scss │ │ │ ├── toggle.component.spec.ts │ │ │ ├── toggle.component.ts │ │ │ ├── toggle.module.ts │ │ │ ├── toggle.stories.ts │ │ │ └── types │ │ │ │ └── toggle-type.ts │ │ ├── tooltip │ │ │ ├── tooltip.component.html │ │ │ ├── tooltip.component.spec.ts │ │ │ ├── tooltip.component.ts │ │ │ ├── tooltip.directive.spec.ts │ │ │ ├── tooltip.directive.ts │ │ │ ├── tooltip.module.ts │ │ │ ├── tooltip.stories.ts │ │ │ └── types │ │ │ │ ├── tooltip-enable-by-list.ts │ │ │ │ └── tooltip-positions.ts │ │ ├── types │ │ │ ├── category.ts │ │ │ ├── size.ts │ │ │ └── variant.ts │ │ └── ui.module.ts │ ├── storybook-translate.module.ts │ ├── style │ │ └── styles.scss │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── makefile ├── nx.json ├── package.json ├── release.config.js ├── setup-hooks.sh ├── tailwind.config.js ├── tools ├── generators │ └── .gitkeep └── tsconfig.tools.json └── tsconfig.base.json /.cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/.cspell.json -------------------------------------------------------------------------------- /.devops/dev-CD.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/.devops/dev-CD.yml -------------------------------------------------------------------------------- /.devops/prod-CD.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/.devops/prod-CD.yml -------------------------------------------------------------------------------- /.devops/uat-CD.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/.devops/uat-CD.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/.github/.githooks/pre-commit -------------------------------------------------------------------------------- /.github/.githooks/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/.github/.githooks/pre-push -------------------------------------------------------------------------------- /.github/.githooks/prepare-commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/.github/.githooks/prepare-commit-msg -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/github-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/.github/workflows/github-pages.yml -------------------------------------------------------------------------------- /.github/workflows/manual-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/.github/workflows/manual-deployment.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/scheduled-deployment-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/.github/workflows/scheduled-deployment-prod.yml -------------------------------------------------------------------------------- /.github/workflows/scheduled-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/.github/workflows/scheduled-deployment.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/.prettierrc -------------------------------------------------------------------------------- /.scripts/build-widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/.scripts/build-widgets.js -------------------------------------------------------------------------------- /.scripts/check-i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/.scripts/check-i18n.js -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG/CHANGELOG_alpha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/CHANGELOG/CHANGELOG_alpha.md -------------------------------------------------------------------------------- /CHANGELOG/CHANGELOG_beta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/CHANGELOG/CHANGELOG_beta.md -------------------------------------------------------------------------------- /CHANGELOG/CHANGELOG_next.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/CHANGELOG/CHANGELOG_next.md -------------------------------------------------------------------------------- /CI/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/CI/deploy.sh -------------------------------------------------------------------------------- /CI/exclude-list.txt: -------------------------------------------------------------------------------- 1 | favicon.ico 2 | assets/logo.png 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/README.md -------------------------------------------------------------------------------- /apps/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office-e2e/.eslintrc.json -------------------------------------------------------------------------------- /apps/back-office-e2e/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office-e2e/cypress.config.ts -------------------------------------------------------------------------------- /apps/back-office-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office-e2e/project.json -------------------------------------------------------------------------------- /apps/back-office-e2e/src/e2e/app.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office-e2e/src/e2e/app.cy.ts -------------------------------------------------------------------------------- /apps/back-office-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /apps/back-office-e2e/src/support/app.po.ts: -------------------------------------------------------------------------------- 1 | export const getGreeting = () => cy.get('h1'); 2 | -------------------------------------------------------------------------------- /apps/back-office-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /apps/back-office-e2e/src/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office-e2e/src/support/e2e.ts -------------------------------------------------------------------------------- /apps/back-office-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/back-office/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/.eslintrc.json -------------------------------------------------------------------------------- /apps/back-office/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/.storybook/main.ts -------------------------------------------------------------------------------- /apps/back-office/.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/.storybook/preview-head.html -------------------------------------------------------------------------------- /apps/back-office/.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/.storybook/preview.js -------------------------------------------------------------------------------- /apps/back-office/.storybook/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/.storybook/tsconfig.json -------------------------------------------------------------------------------- /apps/back-office/documentation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/documentation.json -------------------------------------------------------------------------------- /apps/back-office/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/jest.config.ts -------------------------------------------------------------------------------- /apps/back-office/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/project.json -------------------------------------------------------------------------------- /apps/back-office/src/app/__mocks__/mock-class.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/app/__mocks__/mock-class.test.ts -------------------------------------------------------------------------------- /apps/back-office/src/app/app-preview/app-preview.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/app-preview/components/preview-toolbar/preview-toolbar.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/app-preview/pages/dashboard/dashboard.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/app-preview/pages/form/form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/app-preview/pages/workflow/workflow.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /apps/back-office/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/app/app.component.html -------------------------------------------------------------------------------- /apps/back-office/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /apps/back-office/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/back-office/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/app/app.module.ts -------------------------------------------------------------------------------- /apps/back-office/src/app/application/application.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/application/pages/activity-log/activity-log.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/application/pages/add-page/add-page.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/application/pages/archive/archive.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/application/pages/channels/channels.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/application/pages/channels/components/channel-modal/channel-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/application/pages/form/form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/application/pages/home/home.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/application/pages/position-attributes/position-attributes.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/application/pages/position/components/position-modal/position-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/application/pages/position/position.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/application/pages/settings/settings.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/application/pages/subscriptions/components/subscription-modal/subscription-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/application/pages/subscriptions/subscriptions.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/application/pages/workflow/components/add-step/add-step.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/application/pages/workflow/workflow.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/auth/auth-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/app/auth/auth-routing.module.ts -------------------------------------------------------------------------------- /apps/back-office/src/app/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/app/auth/auth.module.ts -------------------------------------------------------------------------------- /apps/back-office/src/app/auth/pages/login/login.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/components/add-form-modal/add-form-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/components/add-resource-modal/add-resource-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/components/application-header/application-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/components/dashboard-filter-settings/dashboard-filter-settings.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/components/duplicate-application-modal/duplicate-application-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/components/edit-action-button-modal/edit-action-button-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/components/edit-action-buttons-modal/edit-action-buttons-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/components/upload-menu/upload-menu.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/components/view-icon-selector/view-icon-selector.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/components/view-settings-modal/view-settings-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/dashboard/dashboard.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/dashboard/pages/api-configuration/api-configuration.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/dashboard/pages/api-configurations/api-configurations.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/dashboard/pages/api-configurations/components/add-api-configuration/add-api-configuration.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/dashboard/pages/api-configurations/filter/filter.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/dashboard/pages/applications/applications.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/dashboard/pages/applications/components/chose-role/chose-role.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/dashboard/pages/applications/components/filter/filter.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/dashboard/pages/dashboard/components/context-selector/context-selector.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/dashboard/pages/dashboard/components/edit-context-modal/edit-context-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/dashboard/pages/dashboard/components/manage-templates-modal/manage-templates-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/dashboard/pages/form-answer/form-answer.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/dashboard/pages/form-builder/components/history/history.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/dashboard/pages/form-builder/form-builder.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/dashboard/pages/forms/forms.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/dashboard/pages/pull-jobs/components/edit-pull-job-modal/edit-pull-job-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/dashboard/pages/pull-jobs/pull-jobs.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/dashboard/pages/reference-datas/add-reference-data/add-reference-data.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/dashboard/pages/reference-datas/reference-datas.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/dashboard/pages/resource/aggregations-tab/aggregations-tab.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/dashboard/pages/resource/layouts-tab/layouts-tab.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/dashboard/pages/resource/records-tab/graphql/mutations.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/dashboard/pages/resource/resource.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/dashboard/pages/resources/filter/filter.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/dashboard/pages/resources/resources.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/dashboard/pages/update-record/update-record.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/dashboard/pages/users/users.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/graphql.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/app/graphql.module.ts -------------------------------------------------------------------------------- /apps/back-office/src/app/guards/access.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/app/guards/access.guard.spec.ts -------------------------------------------------------------------------------- /apps/back-office/src/app/guards/access.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/app/guards/access.guard.ts -------------------------------------------------------------------------------- /apps/back-office/src/app/guards/auth.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/app/guards/auth.guard.spec.ts -------------------------------------------------------------------------------- /apps/back-office/src/app/guards/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/app/guards/auth.guard.ts -------------------------------------------------------------------------------- /apps/back-office/src/app/services/preview.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/app/services/preview.service.ts -------------------------------------------------------------------------------- /apps/back-office/src/app/shared/pages/role-summary/role-summary.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/shared/pages/roles/roles.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/shared/pages/user-summary/user-summary.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/app/utils/extractColumns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/app/utils/extractColumns.ts -------------------------------------------------------------------------------- /apps/back-office/src/app/utils/nameValidation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/app/utils/nameValidation.ts -------------------------------------------------------------------------------- /apps/back-office/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/environments/environment.ts -------------------------------------------------------------------------------- /apps/back-office/src/environments/environment.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/environments/environment.type.ts -------------------------------------------------------------------------------- /apps/back-office/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/favicon.ico -------------------------------------------------------------------------------- /apps/back-office/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/index.html -------------------------------------------------------------------------------- /apps/back-office/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/main.ts -------------------------------------------------------------------------------- /apps/back-office/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/polyfills.ts -------------------------------------------------------------------------------- /apps/back-office/src/staticwebapp.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/staticwebapp.config.json -------------------------------------------------------------------------------- /apps/back-office/src/styles.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/back-office/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/test-setup.ts -------------------------------------------------------------------------------- /apps/back-office/src/themes/default/default.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/themes/default/default.dev.ts -------------------------------------------------------------------------------- /apps/back-office/src/themes/default/default.local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/themes/default/default.local.ts -------------------------------------------------------------------------------- /apps/back-office/src/themes/default/default.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/themes/default/default.prod.ts -------------------------------------------------------------------------------- /apps/back-office/src/themes/default/default.sit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/themes/default/default.sit.ts -------------------------------------------------------------------------------- /apps/back-office/src/themes/default/default.uat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/src/themes/default/default.uat.ts -------------------------------------------------------------------------------- /apps/back-office/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/tsconfig.app.json -------------------------------------------------------------------------------- /apps/back-office/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/back-office/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/tsconfig.json -------------------------------------------------------------------------------- /apps/back-office/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/back-office/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/front-office-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office-e2e/.eslintrc.json -------------------------------------------------------------------------------- /apps/front-office-e2e/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office-e2e/cypress.config.ts -------------------------------------------------------------------------------- /apps/front-office-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office-e2e/project.json -------------------------------------------------------------------------------- /apps/front-office-e2e/src/e2e/app.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office-e2e/src/e2e/app.cy.ts -------------------------------------------------------------------------------- /apps/front-office-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /apps/front-office-e2e/src/support/app.po.ts: -------------------------------------------------------------------------------- 1 | export const getGreeting = () => cy.get('h1'); 2 | -------------------------------------------------------------------------------- /apps/front-office-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /apps/front-office-e2e/src/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office-e2e/src/support/e2e.ts -------------------------------------------------------------------------------- /apps/front-office-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/front-office/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/.eslintrc.json -------------------------------------------------------------------------------- /apps/front-office/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/.storybook/main.ts -------------------------------------------------------------------------------- /apps/front-office/.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/.storybook/preview-head.html -------------------------------------------------------------------------------- /apps/front-office/.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/.storybook/preview.js -------------------------------------------------------------------------------- /apps/front-office/.storybook/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/.storybook/tsconfig.json -------------------------------------------------------------------------------- /apps/front-office/documentation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/documentation.json -------------------------------------------------------------------------------- /apps/front-office/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/jest.config.ts -------------------------------------------------------------------------------- /apps/front-office/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/project.json -------------------------------------------------------------------------------- /apps/front-office/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /apps/front-office/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/src/app/app.component.html -------------------------------------------------------------------------------- /apps/front-office/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/front-office/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /apps/front-office/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/front-office/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/src/app/app.module.ts -------------------------------------------------------------------------------- /apps/front-office/src/app/application/application.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/front-office/src/app/application/pages/activity-log/activity-log.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/front-office/src/app/application/pages/form/form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/front-office/src/app/application/pages/home/home.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/front-office/src/app/application/pages/role-summary/role-summary.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/front-office/src/app/application/pages/roles/roles.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/front-office/src/app/application/pages/share/share.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/front-office/src/app/application/pages/user-summary/user-summary.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/front-office/src/app/application/pages/workflow/workflow.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/front-office/src/app/auth/auth-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/src/app/auth/auth-routing.module.ts -------------------------------------------------------------------------------- /apps/front-office/src/app/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/src/app/auth/auth.module.ts -------------------------------------------------------------------------------- /apps/front-office/src/app/auth/pages/login/login.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/front-office/src/app/graphql.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/src/app/graphql.module.ts -------------------------------------------------------------------------------- /apps/front-office/src/app/guards/access.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/src/app/guards/access.guard.spec.ts -------------------------------------------------------------------------------- /apps/front-office/src/app/guards/access.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/src/app/guards/access.guard.ts -------------------------------------------------------------------------------- /apps/front-office/src/app/guards/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/src/app/guards/auth.guard.ts -------------------------------------------------------------------------------- /apps/front-office/src/app/redirect/redirect.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/front-office/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/src/environments/environment.ts -------------------------------------------------------------------------------- /apps/front-office/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/src/favicon.ico -------------------------------------------------------------------------------- /apps/front-office/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/src/index.html -------------------------------------------------------------------------------- /apps/front-office/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/src/main.ts -------------------------------------------------------------------------------- /apps/front-office/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/src/polyfills.ts -------------------------------------------------------------------------------- /apps/front-office/src/staticwebapp.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/src/staticwebapp.config.json -------------------------------------------------------------------------------- /apps/front-office/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/src/styles.scss -------------------------------------------------------------------------------- /apps/front-office/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/src/test-setup.ts -------------------------------------------------------------------------------- /apps/front-office/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/tsconfig.app.json -------------------------------------------------------------------------------- /apps/front-office/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/front-office/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/tsconfig.json -------------------------------------------------------------------------------- /apps/front-office/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/front-office/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/web-widgets-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/web-widgets-e2e/.eslintrc.json -------------------------------------------------------------------------------- /apps/web-widgets-e2e/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/web-widgets-e2e/cypress.config.ts -------------------------------------------------------------------------------- /apps/web-widgets-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/web-widgets-e2e/project.json -------------------------------------------------------------------------------- /apps/web-widgets-e2e/src/e2e/app.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/web-widgets-e2e/src/e2e/app.cy.ts -------------------------------------------------------------------------------- /apps/web-widgets-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/web-widgets-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /apps/web-widgets-e2e/src/support/app.po.ts: -------------------------------------------------------------------------------- 1 | export const getGreeting = () => cy.get('h1'); 2 | -------------------------------------------------------------------------------- /apps/web-widgets-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/web-widgets-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /apps/web-widgets-e2e/src/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/web-widgets-e2e/src/support/e2e.ts -------------------------------------------------------------------------------- /apps/web-widgets-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/web-widgets-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/web-widgets/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/web-widgets/.eslintrc.json -------------------------------------------------------------------------------- /apps/web-widgets/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/web-widgets/jest.config.ts -------------------------------------------------------------------------------- /apps/web-widgets/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/web-widgets/project.json -------------------------------------------------------------------------------- /apps/web-widgets/src/app/app.component.html: -------------------------------------------------------------------------------- 1 |

App works!

2 | -------------------------------------------------------------------------------- /apps/web-widgets/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/web-widgets/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/web-widgets/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/web-widgets/src/app/app.module.ts -------------------------------------------------------------------------------- /apps/web-widgets/src/app/graphql.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/web-widgets/src/app/graphql.module.ts -------------------------------------------------------------------------------- /apps/web-widgets/src/app/styles/_ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/web-widgets/src/app/styles/_ui.scss -------------------------------------------------------------------------------- /apps/web-widgets/src/app/widgets/app-widget/application/application.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/web-widgets/src/app/widgets/app-widget/application/pages/form/form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/web-widgets/src/app/widgets/app-widget/application/pages/home/home.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/web-widgets/src/app/widgets/app-widget/application/pages/role-summary/role-summary.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/web-widgets/src/app/widgets/app-widget/application/pages/roles/roles.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/web-widgets/src/app/widgets/app-widget/application/pages/share/share.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/web-widgets/src/app/widgets/app-widget/application/pages/user-summary/user-summary.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/web-widgets/src/app/widgets/app-widget/application/pages/workflow/workflow.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/web-widgets/src/app/widgets/app-widget/auth/pages/login/login.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/web-widgets/src/app/widgets/form-widget/components/form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/web-widgets/src/app/widgets/form-widget/form-widget.component.scss: -------------------------------------------------------------------------------- 1 | @import 'ui.scss'; 2 | -------------------------------------------------------------------------------- /apps/web-widgets/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/web-widgets/src/environments/environment.ts -------------------------------------------------------------------------------- /apps/web-widgets/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/web-widgets/src/favicon.ico -------------------------------------------------------------------------------- /apps/web-widgets/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/web-widgets/src/index.html -------------------------------------------------------------------------------- /apps/web-widgets/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/web-widgets/src/main.ts -------------------------------------------------------------------------------- /apps/web-widgets/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/web-widgets/src/polyfills.ts -------------------------------------------------------------------------------- /apps/web-widgets/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/web-widgets/src/styles.scss -------------------------------------------------------------------------------- /apps/web-widgets/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/web-widgets/src/test-setup.ts -------------------------------------------------------------------------------- /apps/web-widgets/src/themes/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/web-widgets/src/themes/default.ts -------------------------------------------------------------------------------- /apps/web-widgets/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/web-widgets/tsconfig.app.json -------------------------------------------------------------------------------- /apps/web-widgets/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/web-widgets/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/web-widgets/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/web-widgets/tsconfig.json -------------------------------------------------------------------------------- /apps/web-widgets/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/apps/web-widgets/tsconfig.spec.json -------------------------------------------------------------------------------- /assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/assets/bar.svg -------------------------------------------------------------------------------- /assets/column.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/assets/column.svg -------------------------------------------------------------------------------- /assets/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/assets/dashboard.svg -------------------------------------------------------------------------------- /assets/donut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/assets/donut.svg -------------------------------------------------------------------------------- /assets/file-explorer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/assets/file-explorer.svg -------------------------------------------------------------------------------- /assets/fonts/DejaVu/DejaVuSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/assets/fonts/DejaVu/DejaVuSans-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/DejaVu/DejaVuSans-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/assets/fonts/DejaVu/DejaVuSans-BoldOblique.ttf -------------------------------------------------------------------------------- /assets/fonts/DejaVu/DejaVuSans-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/assets/fonts/DejaVu/DejaVuSans-Oblique.ttf -------------------------------------------------------------------------------- /assets/fonts/DejaVu/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/assets/fonts/DejaVu/DejaVuSans.ttf -------------------------------------------------------------------------------- /assets/form.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/assets/form.svg -------------------------------------------------------------------------------- /assets/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/assets/grid.svg -------------------------------------------------------------------------------- /assets/line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/assets/line.svg -------------------------------------------------------------------------------- /assets/login-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/assets/login-background.jpg -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/assets/map.svg -------------------------------------------------------------------------------- /assets/microsoft-icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/assets/microsoft-icon.jpg -------------------------------------------------------------------------------- /assets/owners.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/assets/owners.svg -------------------------------------------------------------------------------- /assets/pie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/assets/pie.svg -------------------------------------------------------------------------------- /assets/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/assets/placeholder.svg -------------------------------------------------------------------------------- /assets/resource.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/assets/resource.svg -------------------------------------------------------------------------------- /assets/resources.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/assets/resources.svg -------------------------------------------------------------------------------- /assets/silent-check-sso.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/assets/silent-check-sso.html -------------------------------------------------------------------------------- /assets/summary-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/assets/summary-card.svg -------------------------------------------------------------------------------- /assets/tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/assets/tab.svg -------------------------------------------------------------------------------- /assets/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/assets/text.svg -------------------------------------------------------------------------------- /assets/users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/assets/users.svg -------------------------------------------------------------------------------- /assets/workflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/assets/workflow.svg -------------------------------------------------------------------------------- /error_pages/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/error_pages/404.html -------------------------------------------------------------------------------- /error_pages/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/error_pages/500.html -------------------------------------------------------------------------------- /jest-shim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/jest-shim.ts -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/jest.config.ts -------------------------------------------------------------------------------- /jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/jest.preset.js -------------------------------------------------------------------------------- /libs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/doc-management/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/doc-management/.eslintrc.json -------------------------------------------------------------------------------- /libs/doc-management/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/doc-management/.storybook/main.ts -------------------------------------------------------------------------------- /libs/doc-management/.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/doc-management/.storybook/preview-head.html -------------------------------------------------------------------------------- /libs/doc-management/.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/doc-management/.storybook/preview.js -------------------------------------------------------------------------------- /libs/doc-management/.storybook/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/doc-management/.storybook/tsconfig.json -------------------------------------------------------------------------------- /libs/doc-management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/doc-management/README.md -------------------------------------------------------------------------------- /libs/doc-management/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/doc-management/jest.config.ts -------------------------------------------------------------------------------- /libs/doc-management/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/doc-management/project.json -------------------------------------------------------------------------------- /libs/doc-management/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/components'; 2 | -------------------------------------------------------------------------------- /libs/doc-management/src/lib/components/document-upload/document-upload.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/doc-management/src/lib/components/document-upload/index.ts: -------------------------------------------------------------------------------- 1 | export * from './document-upload.component'; 2 | -------------------------------------------------------------------------------- /libs/doc-management/src/lib/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from './document-upload'; 2 | -------------------------------------------------------------------------------- /libs/doc-management/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/doc-management/src/test-setup.ts -------------------------------------------------------------------------------- /libs/doc-management/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/doc-management/tsconfig.json -------------------------------------------------------------------------------- /libs/doc-management/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/doc-management/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/doc-management/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/doc-management/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/.storybook/main.ts -------------------------------------------------------------------------------- /libs/shared/.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/.storybook/preview-head.html -------------------------------------------------------------------------------- /libs/shared/.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/.storybook/preview.js -------------------------------------------------------------------------------- /libs/shared/.storybook/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/.storybook/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/README.md -------------------------------------------------------------------------------- /libs/shared/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/project.json -------------------------------------------------------------------------------- /libs/shared/src/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/i18n/en.json -------------------------------------------------------------------------------- /libs/shared/src/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/i18n/fr.json -------------------------------------------------------------------------------- /libs/shared/src/i18n/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/i18n/test.json -------------------------------------------------------------------------------- /libs/shared/src/i18n/tinymce/fr_FR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/i18n/tinymce/fr_FR.js -------------------------------------------------------------------------------- /libs/shared/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/index.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/components/access/access.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/access/edit-access/edit-access.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/action-button/action-button.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/action-buttons/action-buttons.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/activity-log/activity-log-group-by-page/activity-log-group-by-page.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/activity-log/activity-log-group-by-user/activity-log-group-by-user.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/activity-log/activity-log-list/activity-log-list.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/activity-log/activity-log.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/activity-log/public-api.ts: -------------------------------------------------------------------------------- 1 | export * from './activity-log.module'; 2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/aggregation/add-aggregation-modal/add-aggregation-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/aggregation/aggregation-grid/aggregation-grid.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | display: flex; 3 | height: 100%; 4 | } 5 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/aggregation/aggregation-table/aggregation-table.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/aggregation/edit-aggregation-modal/edit-aggregation-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/aggregation/edit-aggregation-modal/public-api.ts: -------------------------------------------------------------------------------- 1 | export * from './edit-aggregation-modal.component'; 2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/applications-archive/applications-archive.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/applications-summary/applications-summary.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | display: grid; 3 | } 4 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/applications-summary/components/add-application/add-application.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/applications-summary/components/application-summary/application-summary.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/choose-record-modal/choose-record-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/choose-record-modal/public-api.ts: -------------------------------------------------------------------------------- 1 | export * from './choose-record-modal.component'; 2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/confirm-modal/confirm-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/confirm-modal/public-api.ts: -------------------------------------------------------------------------------- 1 | export * from './confirm-modal.component'; 2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/controls/cron-expression-control/cron-expression-control-modal/cron-expression-control-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/controls/cron-expression-control/cron-expression-control.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/controls/editor-control/editor-control.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/controls/editor-control/public-api.ts: -------------------------------------------------------------------------------- 1 | export * from './editor-control.component'; 2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/controls/gradient-picker/gradient-picker-popup/gradient-picker-popup.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/controls/gradient-picker/gradient-picker.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | flex: 1; 3 | } 4 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/controls/icon-picker/icon-picker-popup/icon-picker-popup.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/controls/icon-picker/icon-picker.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | display: flex; 3 | width: 100%; 4 | } 5 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/controls/palette-control/palette-control.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/controls/reference-data-select/public-api.ts: -------------------------------------------------------------------------------- 1 | export * from './reference-data-select.component'; 2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/controls/resource-select/public-api.ts: -------------------------------------------------------------------------------- 1 | export * from './resource-select.component'; 2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/convert-modal/convert-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/convert-modal/public-api.ts: -------------------------------------------------------------------------------- 1 | export * from './convert-modal.component'; 2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/dashboard-export-button/dashboard-export-button.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/dashboard-export-modal/dashboard-export-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/dashboard-filter-icon/dashboard-filter-icon.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/dashboard-filter-icon/public-api.ts: -------------------------------------------------------------------------------- 1 | export * from './dashboard-filter-icon.component'; 2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/dashboard-filter/filter-builder-modal/filter-builder-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/dashboard/dashboard.component.html: -------------------------------------------------------------------------------- 1 |

dashboard works!

2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/dashboard/dashboard.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/dashboard/public-api.ts: -------------------------------------------------------------------------------- 1 | export * from './dashboard.component'; 2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/distribution-lists/components/edit-distribution-list-modal/edit-distribution-list-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/distribution-lists/distribution-lists.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/draft-record-list-modal/draft-record-list-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/draft-record-modal/draft-record-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/draft-record/draft-record.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/edit-calculated-field-modal/edit-calculated-field-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/edit-calculated-field-modal/public-api.ts: -------------------------------------------------------------------------------- 1 | export * from './edit-calculated-field-modal.component'; 2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/editable-text/editable-text.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/editor-question/editor-question.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/email-preview-modal/email-preview-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/email/components/create-distribution/create-distribution.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/email/components/custom-templates/custom-template.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/email/components/email-attachment/email-attachment.component.scss: -------------------------------------------------------------------------------- 1 | .property_dropdown { 2 | width: calc(33.33% - 16px); 3 | } 4 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/email/components/preview-distribution/preview-distribution.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/email/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/components/email/constant.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/components/email/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/components/email/public-api.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/components/email/steps/create-notification/create-notification.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/email/steps/schedule-alert/schedule-alert.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/error/error.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/field-mapper/field-mapper.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/field-mapper/public-api.ts: -------------------------------------------------------------------------------- 1 | export * from './field-mapper.component'; 2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/file-explorer/file-explorer-breadcrumb/file-explorer-breadcrumb.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/file-explorer/file-explorer-document-properties/file-explorer-document-properties.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/file-explorer/file-explorer-document-toolbar/file-explorer-document-toolbar.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/file-explorer/file-explorer-list-item/file-explorer-list-item.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/file-explorer/file-explorer-list/file-explorer-list.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/file-explorer/file-explorer-toolbar/file-explorer-toolbar.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/file-explorer/file-explorer-treeview/file-explorer-treeview.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/file-explorer/file-explorer-widget/file-explorer-widget.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/file-explorer/types/file-explorer-view.type.ts: -------------------------------------------------------------------------------- 1 | export type fileExplorerView = 'grid' | 'list'; 2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/filter/filter.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/form-actions/form-actions.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/form-builder/custom-json-editor/custom-json-editor.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/form-builder/form-builder.component.scss: -------------------------------------------------------------------------------- 1 | ::ng-deep .svd_content { 2 | padding: 8px 0 !important; 3 | } 4 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/form-modal/form-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/form/form.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | position: relative; 3 | } 4 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/form/form.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/components/form/form.module.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/components/form/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/components/form/public-api.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/components/geospatial-map/geospatial-map.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/geospatial-map/index.ts: -------------------------------------------------------------------------------- 1 | export * from './geospatial-map.component'; 2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/grid-layout/add-layout-modal/add-layout-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/grid-layout/edit-layout-modal/edit-layout-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/grid-layout/edit-layout-modal/public-api.ts: -------------------------------------------------------------------------------- 1 | export * from './edit-layout-modal.component'; 2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/grid-layout/layout-table/layout-table.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/mapping/mapping-modal/mapping-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/mapping/mapping.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/notifications/components/edit-notification-modal/edit-notification-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/notifications/notifications.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/payload-modal/payload-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/preferences-modal/preferences-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/query-builder/tab-filter/tab-filter.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/query-builder/tab-layout-preview/tab-layout-preview.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/query-builder/tab-pagination/tab-pagination.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/query-builder/tab-sort/tab-sort.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/query-builder/tab-style/query-style-list/query-style-list.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/query-builder/tab-style/query-style-preview/query-style-preview.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/query-builder/tab-style/tab-style.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/record-dropdown/record-dropdown.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/record-history-modal/record-history-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/record-modal/public-api.ts: -------------------------------------------------------------------------------- 1 | export * from './record-modal.component'; 2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/role-summary/role-auto-assignment/edit-role-auto-assignment-modal/edit-role-auto-assignment-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/role-summary/role-channels/role-channels.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/role-summary/role-features/role-dashboards/role-dashboards.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/role-summary/role-features/role-forms/role-forms.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/role-summary/role-features/role-workflows/role-workflows.component.scss: -------------------------------------------------------------------------------- 1 | .mat-column-expandedDetail { 2 | @apply bg-zinc-200; 3 | } 4 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/role-summary/role-resources-filter/role-resources-filter.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/role-summary/role-resources/resource-fields/resource-fields.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/role-summary/role-summary.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/role-summary/role-users/role-users.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/roles/components/add-role/add-role.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/roles/components/group-list/filter/filter.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/roles/components/group-list/group-list.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/roles/components/role-list/filter/filter.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/roles/components/role-list/role-list.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/roles/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/components/roles/public-api.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/components/roles/roles.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/search-resource-grid-modal/public-api.ts: -------------------------------------------------------------------------------- 1 | export * from './search-resource-grid-modal.component'; 2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/skeleton/skeleton-table/skeleton-table.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/templates/components/edit-template-modal/edit-template-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/templates/components/template-modal/template-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/templates/templates.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/aggregation-builder/aggregation-builder.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/aggregation-builder/pipeline/expressions/expressions.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/aggregation-builder/pipeline/field-dropdown/field-dropdown.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/aggregation-builder/pipeline/sort-stage/sort-stage.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/charts/bar-chart/bar-chart.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/charts/interfaces/index.ts: -------------------------------------------------------------------------------- 1 | export * from './chart'; 2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/charts/line-chart/line-chart.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/charts/pie-donut-chart/pie-donut-chart.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/core-grid/core-grid.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/core-grid/date-filter-menu/date-filter-menu.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/core-grid/editor-modal/editor-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/core-grid/errors-modal/errors-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/core-grid/expanded-comment/expanded-comment.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/core-grid/filter-menu/filter-menu.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/core-grid/filter/filter.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | gap: 4px; 3 | } 4 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/core-grid/grid-column-chooser/grid-column-chooser.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/core-grid/map-modal/map-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/core-grid/popup-editor/popup-editor.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/core-grid/row-actions/row-actions.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/map/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/components/ui/map/filter.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/map/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/components/ui/map/index.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/map/layer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/components/ui/map/layer.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/map/map-download/map-download.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/map/map-legend/map-legend.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/map/map-sidenav-controls/map-sidenav-controls.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/map/map-sidenav-controls/sidenav-controls-menu-basemap/sidenav-controls-menu-basemap.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/map/map-sidenav-controls/sidenav-controls-menu-item/sidenav-controls-menu-item.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/map/map-sidenav-controls/sidenav-controls-menu/sidenav-controls-menu.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/reference-data-grid/reference-data-grid.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | display: flex; 3 | height: 100%; 4 | } 5 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/ui/tagbox/tagbox.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/user-summary/user-details/user-details.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/user-summary/user-roles/user-app-roles/user-app-roles.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/user-summary/user-roles/user-back-roles/user-back-roles.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/user-summary/user-roles/user-groups/user-groups.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/user-summary/user-summary.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/users/add-user/add-user.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/users/invite-users-modal/invite-users-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/users/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/components/users/public-api.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/components/users/users-filter/users-filter.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/utils/unsubscribe/unsubscribe.component.html: -------------------------------------------------------------------------------- 1 |

unsubscribe works!

2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/utils/unsubscribe/unsubscribe.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widget-grid/edit-widget-modal/edit-widget-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widget-grid/expanded-widget/expanded-widget.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widget-grid/widget-actions/widget-actions.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/base-widget/base-widget.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/base-widget/base-widget.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/chart-settings/chart-settings.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | flex: 1; 3 | } 4 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/chart-settings/public-api.ts: -------------------------------------------------------------------------------- 1 | export * from './chart-settings.component'; 2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/chart-settings/series-settings/categories-settings/categories-settings.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/chart-settings/series-settings/series-settings.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/chart-settings/tab-display/tab-display.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/chart-settings/tab-filters/tab-filters.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/common/contextual-filters-settings/contextual-filters-settings.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | position: relative; 3 | } 4 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/common/display-settings/display-settings.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/common/query-params-mapping/query-params-mapping.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/common/sorting-settings/sorting-settings.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/common/tab-actions/tab-actions.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/common/tab-widget-automations/tab-widget-automations.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/common/template-aggregation-modal/template-aggregation-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/common/template-aggregations/template-aggregations.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/common/widget-automation/automation-component-selector/automation-component-selector.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/common/widget-automation/edit-automation-component/edit-automation-component.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/common/widget-automation/widget-automation.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/editor-settings/editor-settings.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | flex: 1; 3 | } 4 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/editor-settings/public-api.ts: -------------------------------------------------------------------------------- 1 | export * from './editor-settings.component'; 2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/editor-settings/record-selection-tab/record-selection-tab.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/editor/editor.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/file-explorer-widget-settings/file-explorer-folders-filter/file-explorer-folders-filter.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/file-explorer-widget-settings/file-explorer-folders-list-box/file-explorer-folders-list-box.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/file-explorer-widget-settings/file-explorer-folders-tab/file-explorer-folders-tab.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/file-explorer-widget-settings/file-explorer-form-tab/file-explorer-form-tab.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/file-explorer-widget-settings/file-explorer-widget-settings.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/grid-settings/grid-settings.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/grid-settings/public-api.ts: -------------------------------------------------------------------------------- 1 | export * from './grid-settings.component'; 2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/grid-settings/tab-buttons/tab-buttons.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/grid-settings/tab-main/tab-main.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/grid/grid.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/map-settings/add-layer-modal/add-layer-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/map-settings/edit-layer-modal/edit-layer-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/map-settings/edit-layer-modal/layer-aggregation/layer-aggregation.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/map-settings/edit-layer-modal/layer-cluster/layer-cluster.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/map-settings/edit-layer-modal/layer-datasource/layer-datasource.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/map-settings/edit-layer-modal/layer-fields/layer-fields.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/map-settings/edit-layer-modal/layer-filter/layer-filter.component.html: -------------------------------------------------------------------------------- 1 |

layer-filter works!

2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/map-settings/edit-layer-modal/layer-filter/layer-filter.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/map-settings/edit-layer-modal/layer-labels/layer-labels.component.html: -------------------------------------------------------------------------------- 1 |

layer-labels works!

2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/map-settings/edit-layer-modal/layer-labels/layer-labels.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/map-settings/edit-layer-modal/layer-popup/fields-element/fields-element.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/map-settings/edit-layer-modal/layer-popup/layer-popup.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/map-settings/edit-layer-modal/layer-popup/layer-popup.interface.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/map-settings/edit-layer-modal/layer-popup/text-element/text-element.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/map-settings/edit-layer-modal/layer-properties/layer-properties.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/map-settings/edit-layer-modal/layer-styling/class-break-renderer/class-break-renderer.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/map-settings/edit-layer-modal/layer-styling/heatmap-renderer/heatmap-renderer.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/map-settings/edit-layer-modal/layer-styling/layer-styling.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/map-settings/edit-layer-modal/layer-styling/simple-renderer/simple-renderer.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/map-settings/edit-layer-modal/layer-styling/unique-value-renderer/unique-value-renderer.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/map-settings/map-properties/map-controls/map-controls.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/map-settings/map-properties/map-properties.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/map-settings/map-properties/webmap-select/webmap-select.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/map-settings/public-api.ts: -------------------------------------------------------------------------------- 1 | export * from './map-settings.component'; 2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/map/map.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/summary-card-settings/public-api.ts: -------------------------------------------------------------------------------- 1 | export * from './summary-card-settings.component'; 2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/summary-card-settings/summary-card-settings.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | width: 100%; 3 | // TODO: remove this later 4 | } 5 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/summary-card-settings/text-editor-tab/text-editor-tab.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/summary-card/summary-card-item-content/summary-card-item-content.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/summary-card/summary-card-item/summary-card-item.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/tabs-settings/custom-widget-style-modal/custom-widget-style-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/tabs-settings/tab-grid-settings-modal/tab-grid-settings-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/tabs-settings/tab-grid-settings-modal/tab-grid-settings-modal.component.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/tabs-settings/tab-settings/tab-settings.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/widget/widget.component.html: -------------------------------------------------------------------------------- 1 |

widget works!

2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/widgets/widget/widget.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/components/workflow-stepper/components/add-step/add-step.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/const/tinymce.const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/const/tinymce.const.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/directives/async-monaco-editor/public-api.ts: -------------------------------------------------------------------------------- 1 | export * from './async-monaco-editor.directive'; 2 | -------------------------------------------------------------------------------- /libs/shared/src/lib/environments/esri.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/environments/esri.config.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/forms/automation.forms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/forms/automation.forms.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/guards/permission.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/guards/permission.guard.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/models/activity-log.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/models/activity-log.model.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/models/aggregation.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/models/aggregation.model.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/models/application.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/models/application.model.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/models/automation.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/models/automation.model.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/models/channel.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/models/channel.model.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/models/dashboard.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/models/dashboard.model.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/models/draft-record.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/models/draft-record.model.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/models/file-handler.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/models/file-handler.model.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/models/form.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/models/form.model.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/models/graphql-query.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/models/graphql-query.model.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/models/grid.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/models/grid.model.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/models/layer.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/models/layer.model.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/models/layout.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/models/layout.model.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/models/metadata.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/models/metadata.model.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/models/notification.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/models/notification.model.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/models/page.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/models/page.model.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/models/pullJob.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/models/pullJob.model.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/models/record.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/models/record.model.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/models/recordsHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/models/recordsHistory.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/models/reference-data.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/models/reference-data.model.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/models/resource.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/models/resource.model.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/models/step.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/models/step.model.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/models/subscription.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/models/subscription.model.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/models/template.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/models/template.model.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/models/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/models/user.model.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/models/workflow.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/models/workflow.model.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/pipes/asset/asset.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/pipes/asset/asset.pipe.spec.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/pipes/asset/asset.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/pipes/asset/asset.pipe.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/pipes/date/date.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/pipes/date/date.module.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/pipes/date/date.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/pipes/date/date.pipe.spec.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/pipes/date/date.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/pipes/date/date.pipe.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/pipes/date/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/pipes/date/public-api.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/services/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/services/auth/auth.service.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/services/dom/dom.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/services/dom/dom.service.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/services/form/form.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/services/form/form.service.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/services/grid/grid.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/services/grid/grid.service.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/services/map/arcgis.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/services/map/arcgis.service.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/services/map/regions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/services/map/regions.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/services/rest/rest.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/services/rest/rest.service.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/shared.module.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/style/map.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/style/map.scss -------------------------------------------------------------------------------- /libs/shared/src/lib/style/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/style/styles.scss -------------------------------------------------------------------------------- /libs/shared/src/lib/style/survey.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/style/survey.scss -------------------------------------------------------------------------------- /libs/shared/src/lib/style/widgets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/style/widgets.scss -------------------------------------------------------------------------------- /libs/shared/src/lib/survey/components/application-dropdown/application-dropdown.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/survey/components/code-editor/code-editor.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/survey/components/cs-docs-properties-dropdown/cs-docs-properties-dropdown.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/survey/components/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/survey/components/editor.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/survey/components/geofields-listbox/edit-geofield/edit-geofield.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/survey/components/geofields-listbox/geofields-listbox.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/survey/components/json-editor/json-editor.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/survey/components/owner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/survey/components/owner.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/survey/components/query-editor/query-editor.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/survey/components/reference-data-dropdown/reference-data-dropdown.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | display: flex; 3 | width: 100%; 4 | } 5 | -------------------------------------------------------------------------------- /libs/shared/src/lib/survey/components/resource-dropdown/resource-dropdown.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | display: flex; 3 | width: 100%; 4 | } 5 | -------------------------------------------------------------------------------- /libs/shared/src/lib/survey/components/resource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/survey/components/resource.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/survey/components/resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/survey/components/resources.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/survey/components/test-service-dropdown/test-service-dropdown.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/survey/components/users-dropdown/users-dropdown.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/survey/components/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/survey/components/users.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/survey/components/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/survey/components/utils.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/survey/creator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/survey/creator.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/survey/graphql/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/survey/graphql/queries.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/survey/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/survey/init.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/survey/localization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/survey/localization.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/survey/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/survey/types.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/survey/widgets/file-widget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/survey/widgets/file-widget.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/survey/widgets/text-widget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/survey/widgets/text-widget.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/utils/array-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/utils/array-filter.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/utils/cache-with-expiry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/utils/cache-with-expiry.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/utils/cleanRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/utils/cleanRecord.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/utils/convert-to-minutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/utils/convert-to-minutes.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/utils/custom-functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/utils/custom-functions.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/utils/filter/search-filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/utils/filter/search-filters.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/utils/is-mongo-id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/utils/is-mongo-id.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/utils/languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/utils/languages.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/utils/prettify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/utils/prettify.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/utils/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/utils/public-api.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/utils/scroll-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/utils/scroll-factory.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/utils/update-queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/utils/update-queries.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/views/application-distribution-lists/application-distribution-lists.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/views/application-notifications/application-notifications.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/views/application-templates/application-templates.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/views/application-users/application-users.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/views/application-users/components/user-list/user-list.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/src/lib/views/profile/profile.component.scss: -------------------------------------------------------------------------------- 1 | span { 2 | margin: 0 10px; 3 | } 4 | -------------------------------------------------------------------------------- /libs/shared/src/lib/views/profile/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/views/profile/public-api.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/views/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/views/public-api.ts -------------------------------------------------------------------------------- /libs/shared/src/lib/views/views.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/lib/views/views.module.ts -------------------------------------------------------------------------------- /libs/shared/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/test-setup.ts -------------------------------------------------------------------------------- /libs/shared/src/typings/extract-files/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/typings/extract-files/index.d.ts -------------------------------------------------------------------------------- /libs/shared/src/typings/leaflet/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/typings/leaflet/index.d.ts -------------------------------------------------------------------------------- /libs/shared/src/widgets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/src/widgets/index.ts -------------------------------------------------------------------------------- /libs/shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/shared/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/styles/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/styles/.eslintrc.json -------------------------------------------------------------------------------- /libs/styles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/styles/README.md -------------------------------------------------------------------------------- /libs/styles/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/styles/project.json -------------------------------------------------------------------------------- /libs/styles/src/lib/kendo/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/styles/src/lib/kendo/theme.scss -------------------------------------------------------------------------------- /libs/styles/src/lib/shared/shared.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/styles/src/lib/shared/shared.scss -------------------------------------------------------------------------------- /libs/styles/src/lib/storybook/storybook.scss: -------------------------------------------------------------------------------- 1 | .sb-show-main { 2 | overflow: unset !important; 3 | } 4 | -------------------------------------------------------------------------------- /libs/styles/src/lib/tailwind/tailwind.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/styles/src/lib/tailwind/tailwind.scss -------------------------------------------------------------------------------- /libs/styles/src/lib/themes/default/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/styles/src/lib/themes/default/_variables.scss -------------------------------------------------------------------------------- /libs/styles/src/lib/themes/lift/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/styles/src/lib/themes/lift/_variables.scss -------------------------------------------------------------------------------- /libs/styles/src/lib/themes/oort/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/styles/src/lib/themes/oort/_variables.scss -------------------------------------------------------------------------------- /libs/styles/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/styles/tsconfig.json -------------------------------------------------------------------------------- /libs/styles/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/styles/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/styles/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/styles/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/ui/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/.eslintrc.json -------------------------------------------------------------------------------- /libs/ui/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/.storybook/main.ts -------------------------------------------------------------------------------- /libs/ui/.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/.storybook/preview-head.html -------------------------------------------------------------------------------- /libs/ui/.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/.storybook/preview.js -------------------------------------------------------------------------------- /libs/ui/.storybook/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/.storybook/tsconfig.json -------------------------------------------------------------------------------- /libs/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/README.md -------------------------------------------------------------------------------- /libs/ui/assets/component-generate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/assets/component-generate.png -------------------------------------------------------------------------------- /libs/ui/assets/component-params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/assets/component-params.png -------------------------------------------------------------------------------- /libs/ui/assets/component-stories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/assets/component-stories.png -------------------------------------------------------------------------------- /libs/ui/documentation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/documentation.json -------------------------------------------------------------------------------- /libs/ui/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/jest.config.ts -------------------------------------------------------------------------------- /libs/ui/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/project.json -------------------------------------------------------------------------------- /libs/ui/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/index.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/alert/alert.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/alert/alert.component.html -------------------------------------------------------------------------------- /libs/ui/src/lib/alert/alert.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/alert/alert.component.scss -------------------------------------------------------------------------------- /libs/ui/src/lib/alert/alert.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/alert/alert.component.spec.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/alert/alert.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/alert/alert.component.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/alert/alert.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/alert/alert.module.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/alert/alert.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/alert/alert.stories.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/alert/types/alert-variant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/alert/types/alert-variant.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/autocomplete/components/option.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/ui/src/lib/avatar-group/avatar-group.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/ui/src/lib/avatar/avatar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/avatar/avatar.component.html -------------------------------------------------------------------------------- /libs/ui/src/lib/avatar/avatar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/avatar/avatar.component.scss -------------------------------------------------------------------------------- /libs/ui/src/lib/avatar/avatar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/avatar/avatar.component.spec.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/avatar/avatar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/avatar/avatar.component.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/avatar/avatar.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/avatar/avatar.module.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/avatar/avatar.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/avatar/avatar.stories.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/avatar/types/avatar-shape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/avatar/types/avatar-shape.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/breadcrumbs/breadcrumbs.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/breadcrumbs/breadcrumbs.module.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/breadcrumbs/breadcrumbs.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/breadcrumbs/breadcrumbs.stories.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/button/button.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/button/button.component.html -------------------------------------------------------------------------------- /libs/ui/src/lib/button/button.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/button/button.component.scss -------------------------------------------------------------------------------- /libs/ui/src/lib/button/button.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/button/button.component.spec.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/button/button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/button/button.component.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/button/button.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/button/button.module.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/button/button.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/button/button.stories.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/checkbox/checkbox.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/checkbox/checkbox.component.html -------------------------------------------------------------------------------- /libs/ui/src/lib/checkbox/checkbox.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/checkbox/checkbox.component.scss -------------------------------------------------------------------------------- /libs/ui/src/lib/checkbox/checkbox.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/checkbox/checkbox.component.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/checkbox/checkbox.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/checkbox/checkbox.module.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/checkbox/checkbox.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/checkbox/checkbox.stories.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/chip/chip-input.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/chip/chip-input.directive.spec.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/chip/chip-input.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/chip/chip-input.directive.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/chip/chip-list.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/chip/chip-list.directive.spec.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/chip/chip-list.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/chip/chip-list.directive.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/chip/chip.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/chip/chip.component.html -------------------------------------------------------------------------------- /libs/ui/src/lib/chip/chip.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/ui/src/lib/chip/chip.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/chip/chip.component.spec.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/chip/chip.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/chip/chip.component.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/chip/chip.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/chip/chip.module.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/chip/chip.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/chip/chip.stories.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/cron-editor/cron-editor.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/ui/src/lib/cron-editor/cron-editor.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/cron-editor/cron-editor.module.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/cron-editor/cron-editor.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/cron-editor/cron-editor.stories.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/cron-editor/enum/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/cron-editor/enum/enums.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/cron-editor/time-picker/time-picker.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/ui/src/lib/date/date-picker.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/date/date-picker.directive.spec.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/date/date-picker.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/date/date-picker.directive.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/date/date-wrapper.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/date/date-wrapper.directive.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/date/date.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/date/date.module.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/date/date.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/date/date.scss -------------------------------------------------------------------------------- /libs/ui/src/lib/date/types/date-values.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/date/types/date-values.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/dialog/dialog-close.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/dialog/dialog-close.directive.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/dialog/dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/dialog/dialog.component.html -------------------------------------------------------------------------------- /libs/ui/src/lib/dialog/dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/dialog/dialog.component.scss -------------------------------------------------------------------------------- /libs/ui/src/lib/dialog/dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/dialog/dialog.component.spec.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/dialog/dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/dialog/dialog.component.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/dialog/dialog.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/dialog/dialog.module.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/dialog/dialog.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/dialog/dialog.stories.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/dialog/types/dialog-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/dialog/types/dialog-size.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/divider/divider.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/divider/divider.component.html -------------------------------------------------------------------------------- /libs/ui/src/lib/divider/divider.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/divider/divider.component.scss -------------------------------------------------------------------------------- /libs/ui/src/lib/divider/divider.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/divider/divider.component.spec.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/divider/divider.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/divider/divider.component.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/divider/divider.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/divider/divider.module.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/divider/divider.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/divider/divider.stories.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/divider/types/divider-position.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/divider/types/divider-position.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/fixed-wrapper/fixed-wrapper.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/ui/src/lib/form-wrapper/form-control/form-control.component.html: -------------------------------------------------------------------------------- 1 |

form-control works!

2 | -------------------------------------------------------------------------------- /libs/ui/src/lib/form-wrapper/form-control/form-control.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/ui/src/lib/form-wrapper/prefix.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/form-wrapper/prefix.directive.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/form-wrapper/suffix.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/form-wrapper/suffix.directive.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/graphql-select/graphql-select.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/ui/src/lib/icon/icon.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/icon/icon.component.html -------------------------------------------------------------------------------- /libs/ui/src/lib/icon/icon.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/icon/icon.component.scss -------------------------------------------------------------------------------- /libs/ui/src/lib/icon/icon.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/icon/icon.component.spec.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/icon/icon.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/icon/icon.component.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/icon/icon.list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/icon/icon.list.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/icon/icon.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/icon/icon.module.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/icon/icon.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/icon/icon.stories.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/menu/directives/menu.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/menu/directives/menu.directive.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/menu/menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/menu/menu.component.html -------------------------------------------------------------------------------- /libs/ui/src/lib/menu/menu.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/menu/menu.component.spec.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/menu/menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/menu/menu.component.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/menu/menu.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/menu/menu.module.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/menu/menu.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/menu/menu.stories.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/paginator/paginator.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/paginator/paginator.component.html -------------------------------------------------------------------------------- /libs/ui/src/lib/paginator/paginator.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/paginator/paginator.component.scss -------------------------------------------------------------------------------- /libs/ui/src/lib/paginator/paginator.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/paginator/paginator.component.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/paginator/paginator.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/paginator/paginator.module.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/paginator/paginator.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/paginator/paginator.stories.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/radio/radio-group.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/radio/radio-group.directive.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/radio/radio.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/radio/radio.component.html -------------------------------------------------------------------------------- /libs/ui/src/lib/radio/radio.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/radio/radio.component.scss -------------------------------------------------------------------------------- /libs/ui/src/lib/radio/radio.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/radio/radio.component.spec.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/radio/radio.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/radio/radio.component.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/radio/radio.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/radio/radio.module.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/radio/radio.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/radio/radio.stories.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/select-menu/components/select-option.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/ui/src/lib/select-menu/select-menu.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/select-menu/select-menu.module.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/select-menu/select-menu.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/select-menu/select-menu.stories.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/shadow-dom/shadow-dom.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/shadow-dom/shadow-dom.service.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/sidenav/layout/layout.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/sidenav/layout/layout.service.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/sidenav/sidenav-container.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/ui/src/lib/sidenav/sidenav.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/sidenav/sidenav.directive.spec.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/sidenav/sidenav.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/sidenav/sidenav.directive.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/sidenav/sidenav.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/sidenav/sidenav.stories.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/sidenav/types/sidenavs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/sidenav/types/sidenavs.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/slider/slider.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/slider/slider.component.html -------------------------------------------------------------------------------- /libs/ui/src/lib/slider/slider.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/slider/slider.component.scss -------------------------------------------------------------------------------- /libs/ui/src/lib/slider/slider.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/slider/slider.component.spec.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/slider/slider.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/slider/slider.component.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/slider/slider.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/slider/slider.module.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/slider/slider.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/slider/slider.stories.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/snackbar/snackbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/snackbar/snackbar.component.html -------------------------------------------------------------------------------- /libs/ui/src/lib/snackbar/snackbar.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/ui/src/lib/snackbar/snackbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/snackbar/snackbar.component.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/snackbar/snackbar.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/snackbar/snackbar.module.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/snackbar/snackbar.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/snackbar/snackbar.service.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/snackbar/snackbar.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/snackbar/snackbar.stories.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/snackbar/snackbar.token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/snackbar/snackbar.token.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/spinner/spinner.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/spinner/spinner.component.html -------------------------------------------------------------------------------- /libs/ui/src/lib/spinner/spinner.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/spinner/spinner.component.scss -------------------------------------------------------------------------------- /libs/ui/src/lib/spinner/spinner.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/spinner/spinner.component.spec.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/spinner/spinner.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/spinner/spinner.component.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/spinner/spinner.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/spinner/spinner.module.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/spinner/spinner.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/spinner/spinner.stories.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/table/cell-header.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/table/cell-header.directive.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/table/cell.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/table/cell.directive.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/table/handle-pagination-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/table/handle-pagination-event.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/table/table-wrapper.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/table/table-wrapper.directive.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/table/table.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/table/table.module.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/table/table.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/table/table.spec.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/table/table.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/table/table.stories.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/tabs/tabs.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/tabs/tabs.component.html -------------------------------------------------------------------------------- /libs/ui/src/lib/tabs/tabs.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/ui/src/lib/tabs/tabs.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/tabs/tabs.component.spec.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/tabs/tabs.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/tabs/tabs.component.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/tabs/tabs.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/tabs/tabs.module.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/tabs/tabs.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/tabs/tabs.stories.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/textarea/textarea.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/textarea/textarea.component.html -------------------------------------------------------------------------------- /libs/ui/src/lib/textarea/textarea.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/ui/src/lib/textarea/textarea.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/textarea/textarea.component.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/textarea/textarea.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/textarea/textarea.module.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/textarea/textarea.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/textarea/textarea.stories.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/toggle/toggle.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/toggle/toggle.component.html -------------------------------------------------------------------------------- /libs/ui/src/lib/toggle/toggle.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/toggle/toggle.component.scss -------------------------------------------------------------------------------- /libs/ui/src/lib/toggle/toggle.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/toggle/toggle.component.spec.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/toggle/toggle.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/toggle/toggle.component.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/toggle/toggle.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/toggle/toggle.module.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/toggle/toggle.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/toggle/toggle.stories.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/toggle/types/toggle-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/toggle/types/toggle-type.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/tooltip/tooltip.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/tooltip/tooltip.component.html -------------------------------------------------------------------------------- /libs/ui/src/lib/tooltip/tooltip.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/tooltip/tooltip.component.spec.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/tooltip/tooltip.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/tooltip/tooltip.component.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/tooltip/tooltip.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/tooltip/tooltip.directive.spec.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/tooltip/tooltip.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/tooltip/tooltip.directive.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/tooltip/tooltip.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/tooltip/tooltip.module.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/tooltip/tooltip.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/tooltip/tooltip.stories.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/tooltip/types/tooltip-positions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/tooltip/types/tooltip-positions.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/types/category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/types/category.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/types/size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/types/size.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/types/variant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/types/variant.ts -------------------------------------------------------------------------------- /libs/ui/src/lib/ui.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/lib/ui.module.ts -------------------------------------------------------------------------------- /libs/ui/src/storybook-translate.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/storybook-translate.module.ts -------------------------------------------------------------------------------- /libs/ui/src/style/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/style/styles.scss -------------------------------------------------------------------------------- /libs/ui/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/src/test-setup.ts -------------------------------------------------------------------------------- /libs/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/tsconfig.json -------------------------------------------------------------------------------- /libs/ui/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/ui/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/libs/ui/tsconfig.spec.json -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/makefile -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/package.json -------------------------------------------------------------------------------- /release.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/release.config.js -------------------------------------------------------------------------------- /setup-hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/setup-hooks.sh -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tools/generators/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/tsconfig.tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/tools/tsconfig.tools.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-frontend/HEAD/tsconfig.base.json --------------------------------------------------------------------------------