├── .browserslistrc ├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── scripts │ └── pull_and_clean_properties.sh └── workflows │ ├── bld_docker.yml │ ├── bld_mvn.yml │ ├── bld_test_rel_tag.yml │ ├── bld_yarn.yml │ ├── commit.yml │ ├── deploy-ui-docs.yml │ ├── format_i18n.yml │ ├── format_prettier.yml │ ├── lint.yml │ ├── pr.yml │ ├── pull-and-clean-properties.yml │ ├── pushmain.yml │ ├── rel_tag.yml │ ├── sast.yml │ └── test_yarn.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .nvmrc ├── .pre-commit-config.yaml ├── .prettierignore ├── .prettierrc ├── .tool-versions ├── .trello ├── .tx ├── config └── config_20230220084312.bak ├── CHANGELOG.md ├── Dockerfile ├── Dockerfile.build ├── Dockerfile.build.yarn ├── LICENSE ├── README.md ├── SUPPORTED_BROWSERS.md ├── angular.json ├── docker-compose.build.yarn.yml ├── docker-compose.build.yml ├── docker-compose.yml ├── nginx └── conf.d │ └── default.conf ├── ngsw-config.json ├── package.json ├── pom.xml ├── projects ├── orcid-tokens │ ├── README.md │ ├── ng-package.json │ ├── package.json │ ├── src │ │ ├── lib │ │ │ ├── orcid-tokens.spec.ts │ │ │ └── orcid-tokens.ts │ │ └── public-api.ts │ ├── tokens.css │ ├── tokens.json │ ├── tokens.scss │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── orcid-ui-docs │ ├── public │ │ ├── .nojekyll │ │ └── favicon.ico │ ├── src │ │ ├── app │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.config.ts │ │ │ ├── app.html │ │ │ ├── app.routes.ts │ │ │ ├── app.spec.ts │ │ │ ├── app.ts │ │ │ ├── docs-shell.component.html │ │ │ ├── docs-shell.component.scss │ │ │ ├── docs-shell.component.ts │ │ │ └── pages │ │ │ │ ├── accent-button-page.component.ts │ │ │ │ ├── colors-page.component.ts │ │ │ │ ├── overview-page.component.ts │ │ │ │ ├── record-header-page.component.html │ │ │ │ ├── record-header-page.component.scss │ │ │ │ ├── record-header-page.component.ts │ │ │ │ ├── text-with-tooltip-page.component.ts │ │ │ │ └── typography-page.component.ts │ │ ├── index.html │ │ ├── main.ts │ │ └── styles.scss │ ├── tsconfig.app.json │ └── tsconfig.spec.json ├── orcid-ui-elements │ ├── public │ │ └── favicon.ico │ ├── src │ │ ├── app │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.config.ts │ │ │ ├── app.html │ │ │ ├── app.routes.ts │ │ │ └── app.ts │ │ ├── index.html │ │ ├── main.ts │ │ └── styles.scss │ ├── tsconfig.app.json │ └── tsconfig.spec.json └── orcid-ui │ ├── README.md │ ├── ng-package.json │ ├── package.json │ ├── src │ ├── lib │ │ ├── components │ │ │ ├── README.md │ │ │ ├── record-header │ │ │ │ ├── record-header.component.html │ │ │ │ ├── record-header.component.scss │ │ │ │ └── record-header.component.ts │ │ │ └── text-with-tooltip │ │ │ │ └── text-with-tooltip.component.ts │ │ ├── directives │ │ │ └── accent-button.directive.ts │ │ ├── orcid-ui.spec.ts │ │ ├── orcid-ui.ts │ │ ├── themes │ │ │ ├── README.md │ │ │ ├── orcid-material-theme.scss │ │ │ └── orcid-typography.scss │ │ └── tokens │ │ │ └── README.md │ └── public-api.ts │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── reset-temp.sh ├── scripts ├── browserlist.prebuild.ts ├── build-info.postbuild.ts ├── check-focused-tests.husky.js ├── cloneValues.ts ├── environment.prebuild.ts ├── fetch-combine-wordpress-css.prebuild.ts ├── moveToShareFolder.postbuild.ts ├── new-relic.postbuild.ts ├── new-relic.runtime.js ├── onetrust.postbuild.ts ├── onetrust.runtime.js ├── postbuild.ts ├── properties-clone.postbuild.ts ├── properties-folder-manager.ts ├── properties-test-generator.postbuild.ts ├── robots-metada.postbuild.ts ├── translate-file-generator.prebuild.ts ├── tsconfig.json ├── unique-length.postbuild.ts ├── uniqueLanguageFilesNames.ts ├── utils.ts ├── validate-branch-name.husky.js ├── validate-commit-msg.husky.js └── zend-desk.postbuild.ts ├── settings-custom-deploy.xml ├── settings-custom.xml ├── settings-deploy.xml ├── shellkit.conf ├── shellkit_bootstrap.sh ├── src ├── app │ ├── account-settings │ │ ├── account-settings-routing.module.ts │ │ ├── account-settings.module.ts │ │ ├── components │ │ │ ├── dialog-actions-duplicated-merged-confirmed │ │ │ │ ├── dialog-actions-duplicated-merged-confirmed.component.html │ │ │ │ ├── dialog-actions-duplicated-merged-confirmed.component.scss │ │ │ │ ├── dialog-actions-duplicated-merged-confirmed.component.spec.ts │ │ │ │ └── dialog-actions-duplicated-merged-confirmed.component.ts │ │ │ ├── dialog-actions-duplicated-two-factor-auth │ │ │ │ ├── dialog-actions-duplicated-two-factor-auth.component.html │ │ │ │ ├── dialog-actions-duplicated-two-factor-auth.component.scss │ │ │ │ ├── dialog-actions-duplicated-two-factor-auth.component.spec.ts │ │ │ │ └── dialog-actions-duplicated-two-factor-auth.component.ts │ │ │ ├── dialog-actions-duplicated │ │ │ │ ├── dialog-actions-duplicated.component.html │ │ │ │ ├── dialog-actions-duplicated.component.scss │ │ │ │ ├── dialog-actions-duplicated.component.scss-theme.scss │ │ │ │ ├── dialog-actions-duplicated.component.spec.ts │ │ │ │ └── dialog-actions-duplicated.component.ts │ │ │ ├── dialog-security-alternate-account-delete │ │ │ │ ├── dialog-security-alternate-account-delete.component.html │ │ │ │ ├── dialog-security-alternate-account-delete.component.scss │ │ │ │ ├── dialog-security-alternate-account-delete.component.spec.ts │ │ │ │ └── dialog-security-alternate-account-delete.component.ts │ │ │ ├── settings-actions-deactivate │ │ │ │ ├── settings-actions-deactivate.component.html │ │ │ │ ├── settings-actions-deactivate.component.scss │ │ │ │ ├── settings-actions-deactivate.component.scss-theme.scss │ │ │ │ ├── settings-actions-deactivate.component.spec.ts │ │ │ │ └── settings-actions-deactivate.component.ts │ │ │ ├── settings-actions-download │ │ │ │ ├── settings-actions-download.component.html │ │ │ │ ├── settings-actions-download.component.scss │ │ │ │ ├── settings-actions-download.component.spec.ts │ │ │ │ └── settings-actions-download.component.ts │ │ │ ├── settings-actions-duplicated │ │ │ │ ├── settings-actions-duplicated.component.html │ │ │ │ ├── settings-actions-duplicated.component.scss │ │ │ │ ├── settings-actions-duplicated.component.spec.ts │ │ │ │ └── settings-actions-duplicated.component.ts │ │ │ ├── settings-actions │ │ │ │ ├── settings-actions.component.html │ │ │ │ ├── settings-actions.component.scss │ │ │ │ ├── settings-actions.component.spec.ts │ │ │ │ └── settings-actions.component.ts │ │ │ ├── settings-defaults-email-frequency │ │ │ │ ├── settings-defaults-email-frequency.component.html │ │ │ │ ├── settings-defaults-email-frequency.component.scss │ │ │ │ ├── settings-defaults-email-frequency.component.scss-theme.scss │ │ │ │ ├── settings-defaults-email-frequency.component.spec.ts │ │ │ │ └── settings-defaults-email-frequency.component.ts │ │ │ ├── settings-defaults-language │ │ │ │ ├── settings-defaults-language.component.html │ │ │ │ ├── settings-defaults-language.component.scss │ │ │ │ ├── settings-defaults-language.component.spec.ts │ │ │ │ └── settings-defaults-language.component.ts │ │ │ ├── settings-defaults-visibility │ │ │ │ ├── settings-defaults-visibility.component.html │ │ │ │ ├── settings-defaults-visibility.component.scss │ │ │ │ ├── settings-defaults-visibility.component.spec.ts │ │ │ │ └── settings-defaults-visibility.component.ts │ │ │ ├── settings-defaults │ │ │ │ ├── settings-defaults.component.html │ │ │ │ ├── settings-defaults.component.scss │ │ │ │ ├── settings-defaults.component.spec.ts │ │ │ │ └── settings-defaults.component.ts │ │ │ ├── settings-security-alternate-sign-in │ │ │ │ ├── settings-security-alternate-sign-in.component.html │ │ │ │ ├── settings-security-alternate-sign-in.component.scss │ │ │ │ ├── settings-security-alternate-sign-in.component.spec.ts │ │ │ │ └── settings-security-alternate-sign-in.component.ts │ │ │ ├── settings-security-password │ │ │ │ ├── settings-security-password.component.html │ │ │ │ ├── settings-security-password.component.scss │ │ │ │ ├── settings-security-password.component.scss-theme.scss │ │ │ │ ├── settings-security-password.component.spec.ts │ │ │ │ └── settings-security-password.component.ts │ │ │ ├── settings-security-two-factor-auth │ │ │ │ ├── settings-security-two-factor-auth.component.html │ │ │ │ ├── settings-security-two-factor-auth.component.scss │ │ │ │ ├── settings-security-two-factor-auth.component.scss-theme.scss │ │ │ │ ├── settings-security-two-factor-auth.component.spec.ts │ │ │ │ └── settings-security-two-factor-auth.component.ts │ │ │ ├── settings-security │ │ │ │ ├── settings-security.component.html │ │ │ │ ├── settings-security.component.scss │ │ │ │ ├── settings-security.component.spec.ts │ │ │ │ └── settings-security.component.ts │ │ │ ├── settings-sharing-html-code │ │ │ │ ├── settings-sharing-html-code.component.html │ │ │ │ ├── settings-sharing-html-code.component.scss │ │ │ │ ├── settings-sharing-html-code.component.spec.ts │ │ │ │ └── settings-sharing-html-code.component.ts │ │ │ ├── settings-sharing-qr-code │ │ │ │ ├── settings-sharing-qr-code.component.html │ │ │ │ ├── settings-sharing-qr-code.component.scss │ │ │ │ ├── settings-sharing-qr-code.component.spec.ts │ │ │ │ └── settings-sharing-qr-code.component.ts │ │ │ ├── settings-sharing │ │ │ │ ├── settings-sharing.component.html │ │ │ │ ├── settings-sharing.component.scss │ │ │ │ ├── settings-sharing.component.spec.ts │ │ │ │ └── settings-sharing.component.ts │ │ │ └── settings │ │ │ │ ├── settings.component.html │ │ │ │ ├── settings.component.scss │ │ │ │ ├── settings.component.spec.ts │ │ │ │ └── settings.component.ts │ │ └── pages │ │ │ ├── account-settings │ │ │ ├── account-settings.component.html │ │ │ ├── account-settings.component.scss │ │ │ ├── account-settings.component.spec.ts │ │ │ └── account-settings.component.ts │ │ │ └── confirm-deactivate-account │ │ │ ├── confirm-deactivate-account.component.html │ │ │ ├── confirm-deactivate-account.component.scss │ │ │ ├── confirm-deactivate-account.component.scss-theme.scss │ │ │ ├── confirm-deactivate-account.component.spec.ts │ │ │ └── confirm-deactivate-account.component.ts │ ├── account-trusted-parties │ │ ├── account-trusted-parties-routing.module.ts │ │ ├── account-trusted-parties.module.ts │ │ ├── components │ │ │ ├── dialog-add-trusted-individuals-your-own-email │ │ │ │ ├── dialog-add-trusted-individuals-your-own-email.component.html │ │ │ │ ├── dialog-add-trusted-individuals-your-own-email.component.scss │ │ │ │ ├── dialog-add-trusted-individuals-your-own-email.component.spec.ts │ │ │ │ └── dialog-add-trusted-individuals-your-own-email.component.ts │ │ │ ├── dialog-add-trusted-individuals │ │ │ │ ├── dialog-add-trusted-individuals.component.html │ │ │ │ ├── dialog-add-trusted-individuals.component.scss │ │ │ │ ├── dialog-add-trusted-individuals.component.spec.ts │ │ │ │ └── dialog-add-trusted-individuals.component.ts │ │ │ ├── dialog-revoke-trusted-individuals │ │ │ │ ├── dialog-revoke-trusted-individuals.component.html │ │ │ │ ├── dialog-revoke-trusted-individuals.component.scss │ │ │ │ ├── dialog-revoke-trusted-individuals.component.spec.ts │ │ │ │ └── dialog-revoke-trusted-individuals.component.ts │ │ │ ├── dialog-revoke-trusted-organization │ │ │ │ ├── dialog-revoke-trusted-organization.component.html │ │ │ │ ├── dialog-revoke-trusted-organization.component.scss │ │ │ │ ├── dialog-revoke-trusted-organization.component.scss-theme.scss │ │ │ │ ├── dialog-revoke-trusted-organization.component.spec.ts │ │ │ │ └── dialog-revoke-trusted-organization.component.ts │ │ │ ├── dialog-revoke-your-own-permissions │ │ │ │ ├── dialog-revoke-your-own-permissions.component.html │ │ │ │ ├── dialog-revoke-your-own-permissions.component.scss │ │ │ │ ├── dialog-revoke-your-own-permissions.component.spec.ts │ │ │ │ └── dialog-revoke-your-own-permissions.component.ts │ │ │ ├── settings-trusted-individuals-search │ │ │ │ ├── settings-trusted-individuals-search.component.html │ │ │ │ ├── settings-trusted-individuals-search.component.scss │ │ │ │ ├── settings-trusted-individuals-search.component.scss-theme.scss │ │ │ │ ├── settings-trusted-individuals-search.component.spec.ts │ │ │ │ └── settings-trusted-individuals-search.component.ts │ │ │ ├── settings-trusted-individuals │ │ │ │ ├── settings-trusted-individuals.component.html │ │ │ │ ├── settings-trusted-individuals.component.scss │ │ │ │ ├── settings-trusted-individuals.component.scss-theme.scss │ │ │ │ ├── settings-trusted-individuals.component.spec.ts │ │ │ │ └── settings-trusted-individuals.component.ts │ │ │ ├── settings-trusted-organization │ │ │ │ ├── settings-trusted-organization.component.html │ │ │ │ ├── settings-trusted-organization.component.scss │ │ │ │ ├── settings-trusted-organization.component.spec.ts │ │ │ │ └── settings-trusted-organization.component.ts │ │ │ ├── settings-trusted-organizations │ │ │ │ ├── settings-trusted-organizations.component.html │ │ │ │ ├── settings-trusted-organizations.component.scss │ │ │ │ ├── settings-trusted-organizations.component.scss-theme.scss │ │ │ │ ├── settings-trusted-organizations.component.spec.ts │ │ │ │ └── settings-trusted-organizations.component.ts │ │ │ ├── settings-users-that-thrust-you │ │ │ │ ├── settings-users-that-thrust-you.component.html │ │ │ │ ├── settings-users-that-thrust-you.component.scss │ │ │ │ ├── settings-users-that-thrust-you.component.scss-theme.scss │ │ │ │ ├── settings-users-that-thrust-you.component.spec.ts │ │ │ │ └── settings-users-that-thrust-you.component.ts │ │ │ └── settings │ │ │ │ ├── settings.component.html │ │ │ │ ├── settings.component.scss │ │ │ │ ├── settings.component.spec.ts │ │ │ │ └── settings.component.ts │ │ └── pages │ │ │ └── account-trusted-parties │ │ │ ├── account-trusted-parties.component.html │ │ │ ├── account-trusted-parties.component.scss │ │ │ ├── account-trusted-parties.component.spec.ts │ │ │ └── account-trusted-parties.component.ts │ ├── analytics-utils.ts │ ├── animations.ts │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── authorize │ │ ├── authorize-routing.module.ts │ │ ├── authorize.module.ts │ │ ├── components │ │ │ ├── form-authorize │ │ │ │ ├── form-authorize.component.html │ │ │ │ ├── form-authorize.component.scss │ │ │ │ ├── form-authorize.component.scss-theme.scss │ │ │ │ ├── form-authorize.component.spec.ts │ │ │ │ └── form-authorize.component.ts │ │ │ └── oauth-error │ │ │ │ ├── oauth-error.component.html │ │ │ │ ├── oauth-error.component.scss │ │ │ │ ├── oauth-error.component.spec.ts │ │ │ │ └── oauth-error.component.ts │ │ └── pages │ │ │ └── authorize │ │ │ ├── authorize.component.html │ │ │ ├── authorize.component.scss │ │ │ ├── authorize.component.spec.ts │ │ │ └── authorize.component.ts │ ├── cdk │ │ ├── a11y-link │ │ │ ├── a11y-link.directive.spec.ts │ │ │ ├── a11y-link.directive.ts │ │ │ └── a11y-link.module.ts │ │ ├── account-panel │ │ │ ├── account-panel.module.ts │ │ │ ├── settings-panels-data │ │ │ │ ├── settings-panels-data.component.html │ │ │ │ ├── settings-panels-data.component.scss │ │ │ │ ├── settings-panels-data.component.scss-theme.scss │ │ │ │ ├── settings-panels-data.component.spec.ts │ │ │ │ └── settings-panels-data.component.ts │ │ │ ├── settings-panels-expand-buttons │ │ │ │ ├── settings-panels-expand-buttons.component.html │ │ │ │ ├── settings-panels-expand-buttons.component.scss │ │ │ │ ├── settings-panels-expand-buttons.component.spec.ts │ │ │ │ └── settings-panels-expand-buttons.component.ts │ │ │ └── settings-panels │ │ │ │ ├── settings-panels.component.html │ │ │ │ ├── settings-panels.component.scss │ │ │ │ ├── settings-panels.component.scss-theme.scss │ │ │ │ ├── settings-panels.component.spec.ts │ │ │ │ └── settings-panels.component.ts │ │ ├── alert-message │ │ │ ├── alert-message.component.html │ │ │ ├── alert-message.component.scss │ │ │ ├── alert-message.component.scss-theme.scss │ │ │ ├── alert-message.component.spec.ts │ │ │ ├── alert-message.component.ts │ │ │ └── alert-message.module.ts │ │ ├── banner │ │ │ ├── banner.component.html │ │ │ ├── banner.component.scss │ │ │ ├── banner.component.spec.ts │ │ │ ├── banner.component.ts │ │ │ └── banner.module.ts │ │ ├── deep-select-input │ │ │ ├── deep-select-input.module.ts │ │ │ └── deep-select-input │ │ │ │ ├── deep-select-input.component.html │ │ │ │ ├── deep-select-input.component.scss │ │ │ │ ├── deep-select-input.component.spec.ts │ │ │ │ └── deep-select-input.component.ts │ │ ├── form-directives │ │ │ ├── form-directives.module.ts │ │ │ ├── trim.directive.spec.ts │ │ │ └── trim.directive.ts │ │ ├── info-drop-down │ │ │ ├── info-drop-down.component.html │ │ │ ├── info-drop-down.component.scss │ │ │ ├── info-drop-down.component.scss-theme.scss │ │ │ ├── info-drop-down.component.spec.ts │ │ │ ├── info-drop-down.component.ts │ │ │ └── info-drop-down.module.ts │ │ ├── info-panel │ │ │ ├── info-panel.module.ts │ │ │ └── info-panel │ │ │ │ ├── info-panel.component.html │ │ │ │ ├── info-panel.component.scss │ │ │ │ ├── info-panel.component.scss-theme.scss │ │ │ │ ├── info-panel.component.spec.ts │ │ │ │ └── info-panel.component.ts │ │ ├── interstitials │ │ │ ├── affiliations-interstitial │ │ │ │ ├── interstitial-component │ │ │ │ │ ├── affiliations-interstitial.component.html │ │ │ │ │ ├── affiliations-interstitial.component.scss │ │ │ │ │ ├── affiliations-interstitial.component.scss-theme.scss │ │ │ │ │ ├── affiliations-interstitial.component.spec.ts │ │ │ │ │ └── affiliations-interstitial.component.ts │ │ │ │ └── interstitial-dialog-extend │ │ │ │ │ ├── affiliations-interstitial-dialog.component.scss │ │ │ │ │ └── affiliations-interstitial-dialog.component.ts │ │ │ ├── interstitial.type.ts │ │ │ ├── interstitials.module.ts │ │ │ ├── interstitials.service.spec.ts │ │ │ ├── interstitials.service.ts │ │ │ └── share-emails-domains │ │ │ │ ├── interstitial-component │ │ │ │ ├── share-emails-domains.component.html │ │ │ │ ├── share-emails-domains.component.scss │ │ │ │ ├── share-emails-domains.component.scss-theme.scss │ │ │ │ ├── share-emails-domains.component.spec.ts │ │ │ │ └── share-emails-domains.component.ts │ │ │ │ └── interstitial-dialog-extend │ │ │ │ ├── share-emails-domains-dialog.component.scss │ │ │ │ └── share-emails-domains-dialog.component.ts │ │ ├── is-this-you │ │ │ ├── index.ts │ │ │ ├── is-this-you.component.html │ │ │ ├── is-this-you.component.scss │ │ │ ├── is-this-you.component.scss.theme.scss │ │ │ ├── is-this-you.component.spec.ts │ │ │ ├── is-this-you.component.ts │ │ │ └── is-this-you.module.ts │ │ ├── modal │ │ │ ├── modal-footer │ │ │ │ ├── modal-footer.component.html │ │ │ │ ├── modal-footer.component.scss │ │ │ │ ├── modal-footer.component.scss-theme.scss │ │ │ │ ├── modal-footer.component.spec.ts │ │ │ │ └── modal-footer.component.ts │ │ │ ├── modal-header │ │ │ │ ├── modal-header.component.html │ │ │ │ ├── modal-header.component.scss │ │ │ │ ├── modal-header.component.scss-theme.scss │ │ │ │ ├── modal-header.component.spec.ts │ │ │ │ └── modal-header.component.ts │ │ │ ├── modal-side-bar │ │ │ │ ├── modal-side-bar.component.html │ │ │ │ ├── modal-side-bar.component.scss │ │ │ │ ├── modal-side-bar.component.scss-theme.scss │ │ │ │ ├── modal-side-bar.component.spec.ts │ │ │ │ └── modal-side-bar.component.ts │ │ │ ├── modal-title │ │ │ │ ├── modal-title.component.html │ │ │ │ ├── modal-title.component.scss │ │ │ │ ├── modal-title.component.scss-theme.scss │ │ │ │ ├── modal-title.component.spec.ts │ │ │ │ └── modal-title.component.ts │ │ │ ├── modal.module.ts │ │ │ └── modal │ │ │ │ ├── modal.component.html │ │ │ │ ├── modal.component.scss │ │ │ │ ├── modal.component.scss-theme.scss │ │ │ │ ├── modal.component.spec.ts │ │ │ │ └── modal.component.ts │ │ ├── my-orcid-alerts │ │ │ ├── my-orcid-alerts.component.html │ │ │ ├── my-orcid-alerts.component.scss │ │ │ ├── my-orcid-alerts.component.scss-theme.scss │ │ │ ├── my-orcid-alerts.component.spec.ts │ │ │ ├── my-orcid-alerts.component.ts │ │ │ └── my-orcid-alerts.module.ts │ │ ├── panel │ │ │ ├── panel-data-line │ │ │ │ ├── panel-data-line.component.html │ │ │ │ ├── panel-data-line.component.scss │ │ │ │ ├── panel-data-line.component.spec.ts │ │ │ │ └── panel-data-line.component.ts │ │ │ ├── panel-data │ │ │ │ ├── panel-data.component.html │ │ │ │ ├── panel-data.component.scss │ │ │ │ ├── panel-data.component.scss-theme.scss │ │ │ │ ├── panel-data.component.spec.ts │ │ │ │ └── panel-data.component.ts │ │ │ ├── panel-element-source │ │ │ │ ├── panel-element-source.component.html │ │ │ │ ├── panel-element-source.component.scss │ │ │ │ ├── panel-element-source.component.scss-theme.scss │ │ │ │ ├── panel-element-source.component.spec.ts │ │ │ │ └── panel-element-source.component.ts │ │ │ ├── panel-element │ │ │ │ ├── panel-element.component.html │ │ │ │ ├── panel-element.component.scss │ │ │ │ ├── panel-element.component.scss-theme.scss │ │ │ │ ├── panel-element.component.spec.ts │ │ │ │ └── panel-element.component.ts │ │ │ ├── panel-expand-buttons │ │ │ │ ├── panel-expand-buttons.component.html │ │ │ │ ├── panel-expand-buttons.component.scss │ │ │ │ ├── panel-expand-buttons.component.spec.ts │ │ │ │ └── panel-expand-buttons.component.ts │ │ │ ├── panel-privacy │ │ │ │ ├── panel-privacy.component.html │ │ │ │ ├── panel-privacy.component.scss │ │ │ │ ├── panel-privacy.component.scss-theme.scss │ │ │ │ ├── panel-privacy.component.spec.ts │ │ │ │ └── panel-privacy.component.ts │ │ │ ├── panel-source │ │ │ │ ├── panel-source.component.html │ │ │ │ ├── panel-source.component.scss │ │ │ │ ├── panel-source.component.scss-theme.scss │ │ │ │ ├── panel-source.component.spec.ts │ │ │ │ └── panel-source.component.ts │ │ │ ├── panel.module.ts │ │ │ ├── panel │ │ │ │ ├── panel.component.html │ │ │ │ ├── panel.component.scss │ │ │ │ ├── panel.component.scss-theme.scss │ │ │ │ ├── panel.component.spec.ts │ │ │ │ └── panel.component.ts │ │ │ ├── panels │ │ │ │ ├── panels.component.html │ │ │ │ ├── panels.component.scss │ │ │ │ ├── panels.component.scss-theme.scss │ │ │ │ ├── panels.component.spec.ts │ │ │ │ └── panels.component.ts │ │ │ ├── sort-label.pipe.spec.ts │ │ │ └── sort-label.pipe.ts │ │ ├── platform-info │ │ │ ├── index.ts │ │ │ ├── platform-info.module.ts │ │ │ ├── platform-info.service.spec.ts │ │ │ ├── platform-info.service.ts │ │ │ ├── platform-info.type.ts │ │ │ └── supported-browsers.json │ │ ├── popover │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ ├── popover-animations.ts │ │ │ ├── popover-errors.ts │ │ │ ├── popover-interfaces.ts │ │ │ ├── popover-module.ts │ │ │ ├── popover-target.ts │ │ │ ├── popover-trigger.ts │ │ │ ├── popover-types.ts │ │ │ ├── popover.html │ │ │ ├── popover.md │ │ │ ├── popover.scss │ │ │ ├── popover.ts │ │ │ └── public-api.ts │ │ ├── recaptcha │ │ │ ├── recaptcha.directive.spec.ts │ │ │ ├── recaptcha.directive.ts │ │ │ └── recaptcha.module.ts │ │ ├── side-bar │ │ │ ├── modals │ │ │ │ ├── modal-country │ │ │ │ │ ├── modal-country.component.html │ │ │ │ │ ├── modal-country.component.scss │ │ │ │ │ ├── modal-country.component.scss-theme.scss │ │ │ │ │ ├── modal-country.component.spec.ts │ │ │ │ │ └── modal-country.component.ts │ │ │ │ ├── modal-email │ │ │ │ │ ├── modal-email.component.html │ │ │ │ │ ├── modal-email.component.scss │ │ │ │ │ ├── modal-email.component.scss-theme.scss │ │ │ │ │ ├── modal-email.component.spec.ts │ │ │ │ │ └── modal-email.component.ts │ │ │ │ ├── modal-keyword │ │ │ │ │ ├── modal-keyword.component.html │ │ │ │ │ ├── modal-keyword.component.scss │ │ │ │ │ ├── modal-keyword.component.scss-theme.scss │ │ │ │ │ ├── modal-keyword.component.spec.ts │ │ │ │ │ └── modal-keyword.component.ts │ │ │ │ ├── modal-person-identifiers │ │ │ │ │ ├── modal-person-identifiers.component.html │ │ │ │ │ ├── modal-person-identifiers.component.scss │ │ │ │ │ ├── modal-person-identifiers.component.scss-theme.scss │ │ │ │ │ ├── modal-person-identifiers.component.spec.ts │ │ │ │ │ └── modal-person-identifiers.component.ts │ │ │ │ ├── modal-websites │ │ │ │ │ ├── modal-websites.component.html │ │ │ │ │ ├── modal-websites.component.scss │ │ │ │ │ ├── modal-websites.component.spec.ts │ │ │ │ │ └── modal-websites.component.ts │ │ │ │ └── source-hit │ │ │ │ │ ├── source-hit.component.html │ │ │ │ │ ├── source-hit.component.scss │ │ │ │ │ ├── source-hit.component.spec.ts │ │ │ │ │ └── source-hit.component.ts │ │ │ ├── side-bar-id │ │ │ │ ├── side-bar-id.component-scss-theme.scss │ │ │ │ ├── side-bar-id.component.html │ │ │ │ ├── side-bar-id.component.scss │ │ │ │ ├── side-bar-id.component.spec.ts │ │ │ │ └── side-bar-id.component.ts │ │ │ ├── side-bar.module.ts │ │ │ └── side-bar │ │ │ │ ├── side-bar.component.html │ │ │ │ ├── side-bar.component.scss │ │ │ │ ├── side-bar.component.scss-theme.scss │ │ │ │ ├── side-bar.component.spec.ts │ │ │ │ └── side-bar.component.ts │ │ ├── snackbar │ │ │ ├── snackbar.module.ts │ │ │ ├── snackbar.service.spec.ts │ │ │ ├── snackbar.service.ts │ │ │ └── snackbar │ │ │ │ ├── snackbar.component.html │ │ │ │ ├── snackbar.component.scss │ │ │ │ ├── snackbar.component.scss.theme.scss │ │ │ │ ├── snackbar.component.spec.ts │ │ │ │ └── snackbar.component.ts │ │ ├── top-bar-my-public-record-preview │ │ │ ├── top-bar-my-public-record-preview.module.ts │ │ │ └── top-bar-my-public-record-preview │ │ │ │ ├── top-bar-my-public-record-preview.component.html │ │ │ │ ├── top-bar-my-public-record-preview.component.scss │ │ │ │ ├── top-bar-my-public-record-preview.component.scss-theme.scss │ │ │ │ ├── top-bar-my-public-record-preview.component.spec.ts │ │ │ │ └── top-bar-my-public-record-preview.component.ts │ │ ├── top-bar-verification-email │ │ │ ├── modals │ │ │ │ └── top-bar-verification-email-modal │ │ │ │ │ ├── top-bar-verification-email-modal.component.html │ │ │ │ │ ├── top-bar-verification-email-modal.component.scss │ │ │ │ │ ├── top-bar-verification-email-modal.component.scss-theme.scss │ │ │ │ │ ├── top-bar-verification-email-modal.component.spec.ts │ │ │ │ │ └── top-bar-verification-email-modal.component.ts │ │ │ ├── top-bar-verification-email.component.html │ │ │ ├── top-bar-verification-email.component.scss │ │ │ ├── top-bar-verification-email.component.scss-theme.scss │ │ │ ├── top-bar-verification-email.component.spec.ts │ │ │ ├── top-bar-verification-email.component.ts │ │ │ └── top-bar-verification-email.module.ts │ │ ├── trusted-individuals-dropdown │ │ │ ├── trusted-individuals-dropdown.component.html │ │ │ ├── trusted-individuals-dropdown.component.scss │ │ │ ├── trusted-individuals-dropdown.component.scss-theme.scss │ │ │ ├── trusted-individuals-dropdown.component.spec.ts │ │ │ ├── trusted-individuals-dropdown.component.ts │ │ │ └── trusted-individuals-dropdown.module.ts │ │ ├── trusted-summary │ │ │ ├── component │ │ │ │ ├── summary-panel │ │ │ │ │ ├── summary-panel.component.html │ │ │ │ │ ├── summary-panel.component.scss │ │ │ │ │ ├── summary-panel.component.scss-theme.scss │ │ │ │ │ ├── summary-panel.component.spec.ts │ │ │ │ │ └── summary-panel.component.ts │ │ │ │ ├── summary-simple-panel │ │ │ │ │ ├── summary-simple-panel.component.html │ │ │ │ │ ├── summary-simple-panel.component.scss │ │ │ │ │ ├── summary-simple-panel.component.scss-theme.scss │ │ │ │ │ ├── summary-simple-panel.component.spec.ts │ │ │ │ │ └── summary-simple-panel.component.ts │ │ │ │ └── trusted-summary │ │ │ │ │ ├── trusted-summary.component.html │ │ │ │ │ ├── trusted-summary.component.scss │ │ │ │ │ ├── trusted-summary.component.scss-theme.scss │ │ │ │ │ ├── trusted-summary.component.spec.ts │ │ │ │ │ └── trusted-summary.component.ts │ │ │ └── trusted-summary.module.ts │ │ ├── two-factor-authentication-form │ │ │ ├── two-factor-authentication-form.module.ts │ │ │ └── two-factor │ │ │ │ ├── two-factor-authentication-form.component.html │ │ │ │ ├── two-factor-authentication-form.component.scss │ │ │ │ ├── two-factor-authentication-form.component.scss-theme.scss │ │ │ │ ├── two-factor-authentication-form.component.spec.ts │ │ │ │ └── two-factor-authentication-form.component.ts │ │ ├── visibility-selector │ │ │ ├── visibility-selector.module.ts │ │ │ └── visibility-selector │ │ │ │ ├── visibility-selector.component.html │ │ │ │ ├── visibility-selector.component.scss │ │ │ │ ├── visibility-selector.component.scss-theme.scss │ │ │ │ ├── visibility-selector.component.spec.ts │ │ │ │ └── visibility-selector.component.ts │ │ ├── warning-message │ │ │ ├── warning-message.module.ts │ │ │ └── warning-message │ │ │ │ ├── warning-message.component.html │ │ │ │ ├── warning-message.component.scss │ │ │ │ ├── warning-message.component.scss-theme.scss │ │ │ │ ├── warning-message.component.spec.ts │ │ │ │ └── warning-message.component.ts │ │ └── window │ │ │ ├── index.ts │ │ │ ├── window.module.ts │ │ │ └── window.service.ts │ ├── constants-country-codes.ts │ ├── constants.ts │ ├── core │ │ ├── account-actions-deactivate │ │ │ ├── account-actions-deactivate.service.spec.ts │ │ │ └── account-actions-deactivate.service.ts │ │ ├── account-actions-download │ │ │ ├── account-actions-download.service.spec.ts │ │ │ └── account-actions-download.service.ts │ │ ├── account-actions-duplicated │ │ │ ├── account-actions-duplicated.service.spec.ts │ │ │ └── account-actions-duplicated.service.ts │ │ ├── account-default-email-frequencies │ │ │ ├── account-default-email-frequencies.service.spec.ts │ │ │ └── account-default-email-frequencies.service.ts │ │ ├── account-default-visibility │ │ │ ├── account-default-visibility.service.spec.ts │ │ │ └── account-default-visibility.service.ts │ │ ├── account-security-alternate-sign-in │ │ │ ├── account-security-alternate-sign-in.service.spec.ts │ │ │ └── account-security-alternate-sign-in.service.ts │ │ ├── account-security-password │ │ │ ├── account-security-password.service.spec.ts │ │ │ └── account-security-password.service.ts │ │ ├── account-trusted-individuals │ │ │ ├── account-trusted-individuals.service.spec.ts │ │ │ └── account-trusted-individuals.service.ts │ │ ├── account-trusted-organizations │ │ │ ├── account-trusted-organizations.service.spec.ts │ │ │ └── account-trusted-organizations.service.ts │ │ ├── announcer │ │ │ ├── announcer.service.spec.ts │ │ │ └── announcer.service.ts │ │ ├── auth-decision │ │ │ ├── auth-decision.service.spec.ts │ │ │ └── auth-decision.service.ts │ │ ├── canonocal-url │ │ │ ├── canonocal-url.service.spec.ts │ │ │ └── canonocal-url.service.ts │ │ ├── core.module.spec.ts │ │ ├── core.module.ts │ │ ├── crazy-egg │ │ │ ├── script.service.spec.ts │ │ │ └── script.service.ts │ │ ├── custom-encoder │ │ │ └── custom.encoder.ts │ │ ├── developer-tools │ │ │ ├── developer-tools.service.spec.ts │ │ │ └── developer-tools.service.ts │ │ ├── disco │ │ │ ├── disco.service.spec.ts │ │ │ └── disco.service.ts │ │ ├── error-handler │ │ │ ├── error-handler.service.spec.ts │ │ │ └── error-handler.service.ts │ │ ├── google-tag-manager │ │ │ ├── google-tag-manager.service.spec.ts │ │ │ └── google-tag-manager.service.ts │ │ ├── header-compact │ │ │ └── header-compact.service.ts │ │ ├── help-hero │ │ │ ├── help-hero.service.spec.ts │ │ │ └── help-hero.service.ts │ │ ├── http-content-type-header-interceptor │ │ │ └── http-content-type-header-interceptor.ts │ │ ├── inbox │ │ │ ├── inbox.service.spec.ts │ │ │ └── inbox.service.ts │ │ ├── index.ts │ │ ├── lang-preload │ │ │ ├── firefox-xsrf-preload.interceptor.spec.ts │ │ │ └── firefox-xsrf-preload.interceptor.ts │ │ ├── language │ │ │ ├── language.service.spec.ts │ │ │ └── language.service.ts │ │ ├── logging │ │ │ └── feature-logger.service.ts │ │ ├── login-interstitials-manager │ │ │ ├── abstractions │ │ │ │ ├── dialog-interface.ts │ │ │ │ └── login-abstract-interstitial-manager.service.ts │ │ │ ├── implementations │ │ │ │ ├── login-affiliation-interstitials-manager.service.ts │ │ │ │ └── login-domain-interstitials-manager.service.ts │ │ │ ├── login-main-interstitials-manager.service.ts │ │ │ └── test │ │ │ │ ├── login-affiliation-interstitials-manager.service.spec.ts │ │ │ │ ├── login-domain-interstitials-manager.service.spec.ts │ │ │ │ └── login-main-interstitials-manager.service.spec.ts │ │ ├── new-relic │ │ │ └── new-relic.service.ts │ │ ├── news │ │ │ ├── news.service.spec.ts │ │ │ └── news.service.ts │ │ ├── oauth-urlsession-manager │ │ │ ├── oauth-urlsession-manager.service.spec.ts │ │ │ └── oauth-urlsession-manager.service.ts │ │ ├── oauth │ │ │ ├── oauth.service.spec.ts │ │ │ ├── oauth.service.ts │ │ │ └── organizations.service.spec.ts │ │ ├── open-graph │ │ │ ├── open-graph.service.spec.ts │ │ │ └── open-graph.service.ts │ │ ├── organizations │ │ │ ├── organizations.service.spec.ts │ │ │ └── organizations.service.ts │ │ ├── paginator │ │ │ └── matPaginator.service.ts │ │ ├── password-recovery │ │ │ ├── password-recovery.service.spec.ts │ │ │ └── password-recovery.service.ts │ │ ├── qa-flag │ │ │ ├── qa-flag.service.ts │ │ │ └── qa-flags.enum.ts │ │ ├── reactivation │ │ │ ├── reactivation.service.spec.ts │ │ │ └── reactivation.service.ts │ │ ├── record-affiliations-affiliations-grouping │ │ │ ├── record-affiliations-grouping.service.spec.ts │ │ │ └── record-affiliations-grouping.service.ts │ │ ├── record-affiliations-sort │ │ │ ├── record-affiliations-sort.service.spec.ts │ │ │ └── record-affiliations-sort.service.ts │ │ ├── record-affiliations │ │ │ ├── record-affiliations.service.spec.ts │ │ │ └── record-affiliations.service.ts │ │ ├── record-biography │ │ │ ├── record-biography.service.spec.ts │ │ │ └── record-biography.service.ts │ │ ├── record-countries │ │ │ ├── record-countries.service.spec.ts │ │ │ └── record-countries.service.ts │ │ ├── record-emails │ │ │ ├── record-emails.service.spec.ts │ │ │ └── record-emails.service.ts │ │ ├── record-fundings │ │ │ ├── record-fundings.service.spec.ts │ │ │ └── record-fundings.service.ts │ │ ├── record-header-state │ │ │ └── record-header-state.service.ts │ │ ├── record-keyword │ │ │ ├── record-keyword.service.spec.ts │ │ │ └── record-keyword.service.ts │ │ ├── record-names │ │ │ ├── record-names.service.spec.ts │ │ │ └── record-names.service.ts │ │ ├── record-other-names │ │ │ ├── record-other-names.service.spec.ts │ │ │ └── record-other-names.service.ts │ │ ├── record-peer-review │ │ │ ├── record-peer-review.service.spec.ts │ │ │ └── record-peer-review.service.ts │ │ ├── record-person │ │ │ ├── record-person.service.spec.ts │ │ │ └── record-person.service.ts │ │ ├── record-personal-identifiers │ │ │ ├── record-person-identifier.service.ts │ │ │ └── record-persona-identifier.service.spec.ts │ │ ├── record-public-side-bar │ │ │ ├── record-public-side-bar.service.spec.ts │ │ │ └── record-public-side-bar.service.ts │ │ ├── record-research-resource │ │ │ ├── record-research-resource.service.spec.ts │ │ │ └── record-research-resource.service.ts │ │ ├── record-websites │ │ │ ├── record-websites.service.spec.ts │ │ │ └── record-websites.service.ts │ │ ├── record-works │ │ │ ├── record-works.service.spec.ts │ │ │ └── record-works.service.ts │ │ ├── record │ │ │ ├── record.service.spec.ts │ │ │ └── record.service.ts │ │ ├── register │ │ │ ├── register.backend-validators.ts │ │ │ ├── register.form-adapter.ts │ │ │ └── register.service.ts │ │ ├── robots-meta-tags │ │ │ ├── robots-meta-tags.service.spec.ts │ │ │ └── robots-meta-tags.service.ts │ │ ├── search │ │ │ ├── search.service.spec.ts │ │ │ └── search.service.ts │ │ ├── sign-in │ │ │ ├── sign-in.service.spec.ts │ │ │ └── sign-in.service.ts │ │ ├── title-service │ │ │ ├── title.service.spec.ts │ │ │ └── title.service.ts │ │ ├── togglz │ │ │ ├── togglz-flags.enum.ts │ │ │ ├── togglz.directive.spec.ts │ │ │ ├── togglz.directive.ts │ │ │ ├── togglz.service.spec.ts │ │ │ └── togglz.service.ts │ │ ├── trusted-individuals │ │ │ ├── trusted-individuals.service.spec.ts │ │ │ └── trusted-individuals.service.ts │ │ ├── trusted-summary │ │ │ ├── trusted-summary.service.spec.ts │ │ │ └── trusted-summary.service.ts │ │ ├── two-factor-authentication.service.spec.ts │ │ ├── two-factor-authentication │ │ │ └── two-factor-authentication.service.ts │ │ ├── user-info │ │ │ ├── user-info.service.spec.ts │ │ │ └── user-info.service.ts │ │ ├── user │ │ │ ├── user.service.spec.ts │ │ │ └── user.service.ts │ │ ├── utils.ts │ │ ├── verification-email-modal │ │ │ ├── verification-email-modal.service.spec.ts │ │ │ └── verification-email-modal.service.ts │ │ ├── wordpress │ │ │ ├── wordpress.service.spec.ts │ │ │ └── wordpress.service.ts │ │ └── zendesk │ │ │ ├── zendesk.service.spec.ts │ │ │ └── zendesk.service.ts │ ├── developer-tools │ │ ├── components │ │ │ ├── client-secret-modal │ │ │ │ ├── client-secret-modal.component.html │ │ │ │ ├── client-secret-modal.component.scss │ │ │ │ ├── client-secret-modal.component.spec.ts │ │ │ │ └── client-secret-modal.component.ts │ │ │ ├── client-secret │ │ │ │ ├── client-secret.component.html │ │ │ │ ├── client-secret.component.scss │ │ │ │ ├── client-secret.component.scss-theme.scss │ │ │ │ ├── client-secret.component.spec.ts │ │ │ │ └── client-secret.component.ts │ │ │ ├── code-panel │ │ │ │ ├── code-panel.component.html │ │ │ │ ├── code-panel.component.scss │ │ │ │ ├── code-panel.component.scss-theme.scss │ │ │ │ ├── code-panel.component.spec.ts │ │ │ │ └── code-panel.component.ts │ │ │ └── terms-of-use │ │ │ │ ├── terms-of-use.component.html │ │ │ │ ├── terms-of-use.component.scss │ │ │ │ ├── terms-of-use.component.scss-theme.scss │ │ │ │ ├── terms-of-use.component.spec.ts │ │ │ │ └── terms-of-use.component.ts │ │ ├── developer-tools-routing.module.ts │ │ ├── developer-tools.module.ts │ │ └── pages │ │ │ └── developer-tools │ │ │ ├── developer-tools.component.html │ │ │ ├── developer-tools.component.scss │ │ │ ├── developer-tools.component.scss-theme.scss │ │ │ ├── developer-tools.component.spec.ts │ │ │ └── developer-tools.component.ts │ ├── environment-banner │ │ ├── environment-banner-routing.module.ts │ │ ├── environment-banner.module.ts │ │ └── environment-banner │ │ │ ├── environment-banner.component.html │ │ │ ├── environment-banner.component.scss │ │ │ ├── environment-banner.component.spec.ts │ │ │ └── environment-banner.component.ts │ ├── errors.ts │ ├── guards │ │ ├── authenticated-no-delagator.guard.spec.ts │ │ ├── authenticated-no-delagator.guard.ts │ │ ├── authenticated.guard.spec.ts │ │ ├── authenticated.guard.ts │ │ ├── authorize.guard.spec.ts │ │ ├── authorize.guard.ts │ │ ├── deactivation.guard.spec.ts │ │ ├── deactivation.guard.ts │ │ ├── language.guard.ts │ │ ├── link-account.guard.spec.ts │ │ ├── link-account.guard.ts │ │ ├── register.guard.ts │ │ ├── register.spec.ts │ │ ├── sign-in.guard.spec.ts │ │ ├── sign-in.guard.ts │ │ ├── third-party-signin-completed.guard.spec.ts │ │ ├── third-party-signin-completed.guard.ts │ │ ├── two-factor-signin.guard.spec.ts │ │ └── two-factor-signin.guard.ts │ ├── home │ │ ├── components │ │ │ └── news │ │ │ │ ├── news.component.html │ │ │ │ ├── news.component.scss │ │ │ │ ├── news.component.scss-theme.scss │ │ │ │ ├── news.component.spec.ts │ │ │ │ └── news.component.ts │ │ ├── home-routing.module.ts │ │ ├── home.module.spec.ts │ │ ├── home.module.ts │ │ └── pages │ │ │ └── home │ │ │ ├── home.component.html │ │ │ ├── home.component.scss │ │ │ ├── home.component.scss-theme.scss │ │ │ ├── home.component.spec.ts │ │ │ ├── home.component.ts │ │ │ └── wordpress-styles.scss │ ├── inbox │ │ ├── components │ │ │ ├── notification-html │ │ │ │ ├── notification-html.component.html │ │ │ │ ├── notification-html.component.scss │ │ │ │ ├── notification-html.component.spec.ts │ │ │ │ └── notification-html.component.ts │ │ │ ├── notification-permission-institutional-connection │ │ │ │ ├── notification-permission-institutional-connection.component.html │ │ │ │ ├── notification-permission-institutional-connection.component.scss │ │ │ │ ├── notification-permission-institutional-connection.component.spec.ts │ │ │ │ └── notification-permission-institutional-connection.component.ts │ │ │ ├── notification-permission │ │ │ │ ├── notification-permission.component.html │ │ │ │ ├── notification-permission.component.scss │ │ │ │ ├── notification-permission.component.spec.ts │ │ │ │ └── notification-permission.component.ts │ │ │ ├── notification-your-record-amended │ │ │ │ ├── notification-your-record-amended.component.html │ │ │ │ ├── notification-your-record-amended.component.scss │ │ │ │ ├── notification-your-record-amended.component.spec.ts │ │ │ │ └── notification-your-record-amended.component.ts │ │ │ ├── notification │ │ │ │ ├── notification.component.html │ │ │ │ ├── notification.component.scss │ │ │ │ ├── notification.component.scss-theme.scss │ │ │ │ ├── notification.component.spec.ts │ │ │ │ └── notification.component.ts │ │ │ └── notifications │ │ │ │ ├── notifications.component.html │ │ │ │ ├── notifications.component.scss │ │ │ │ ├── notifications.component.spec.ts │ │ │ │ └── notifications.component.ts │ │ ├── inbox-routing.module.ts │ │ ├── inbox.module.ts │ │ └── pages │ │ │ └── inbox │ │ │ ├── inbox.component.html │ │ │ ├── inbox.component.scss │ │ │ ├── inbox.component.spec.ts │ │ │ └── inbox.component.ts │ ├── institutional │ │ ├── institutional-routing.module.ts │ │ ├── institutional.module.ts │ │ └── pages │ │ │ └── institutional │ │ │ ├── institutional.component.html │ │ │ ├── institutional.component.scss │ │ │ ├── institutional.component.scss-theme.scss │ │ │ ├── institutional.component.spec.ts │ │ │ └── institutional.component.ts │ ├── layout │ │ ├── banners │ │ │ ├── banners.component.html │ │ │ ├── banners.component.scss │ │ │ ├── banners.component.spec.ts │ │ │ └── banners.component.ts │ │ ├── footer │ │ │ ├── footer.component.html │ │ │ ├── footer.component.scss │ │ │ ├── footer.component.scss-theme.scss │ │ │ ├── footer.component.spec.ts │ │ │ └── footer.component.ts │ │ ├── header │ │ │ ├── header.component.html │ │ │ ├── header.component.scss │ │ │ ├── header.component.scss-theme.scss │ │ │ ├── header.component.spec.ts │ │ │ ├── header.component.ts │ │ │ └── menu.ts │ │ ├── language │ │ │ ├── language.component.html │ │ │ ├── language.component.scss │ │ │ ├── language.component.spec.ts │ │ │ └── language.component.ts │ │ ├── layout.module.spec.ts │ │ ├── layout.module.ts │ │ ├── maintenance-message │ │ │ ├── maintenance-message.component.html │ │ │ ├── maintenance-message.component.scss │ │ │ ├── maintenance-message.component.scss-theme.scss │ │ │ ├── maintenance-message.component.spec.ts │ │ │ └── maintenance-message.component.ts │ │ ├── menu-icon │ │ │ ├── menu-icon.component.html │ │ │ ├── menu-icon.component.scss │ │ │ ├── menu-icon.component.scss-theme.scss │ │ │ ├── menu-icon.component.spec.ts │ │ │ └── menu-icon.component.ts │ │ ├── search │ │ │ ├── search.component.html │ │ │ ├── search.component.scss │ │ │ ├── search.component.scss-theme.scss │ │ │ ├── search.component.spec.ts │ │ │ └── search.component.ts │ │ ├── skip-main-nav │ │ │ ├── skip-main-nav.component.html │ │ │ ├── skip-main-nav.component.scss │ │ │ ├── skip-main-nav.component.spec.ts │ │ │ └── skip-main-nav.component.ts │ │ ├── statistics │ │ │ ├── statistics.component.html │ │ │ ├── statistics.component.scss │ │ │ ├── statistics.component.spec.ts │ │ │ └── statistics.component.ts │ │ └── user-menu │ │ │ ├── user-menu.component.html │ │ │ ├── user-menu.component.scss │ │ │ ├── user-menu.component.scss-theme.scss │ │ │ ├── user-menu.component.spec.ts │ │ │ └── user-menu.component.ts │ ├── link-account │ │ ├── link-account-routing.module.ts │ │ ├── link-account.module.ts │ │ └── pages │ │ │ └── link-account │ │ │ ├── link-account.component.html │ │ │ ├── link-account.component.scss │ │ │ ├── link-account.component.scss-theme.scss │ │ │ ├── link-account.component.spec.ts │ │ │ └── link-account.component.ts │ ├── local-flags.help.ts │ ├── page-not-found-404 │ │ ├── not-found │ │ │ ├── not-found.component.html │ │ │ ├── not-found.component.scss │ │ │ ├── not-found.component.spec.ts │ │ │ └── not-found.component.ts │ │ ├── page-not-found-404-routing.module.ts │ │ ├── page-not-found-404.module.ts │ │ └── page-not-found │ │ │ ├── page-not-found.component.html │ │ │ ├── page-not-found.component.scss │ │ │ ├── page-not-found.component.spec.ts │ │ │ └── page-not-found.component.ts │ ├── password-recovery │ │ ├── pages │ │ │ └── password-recovery │ │ │ │ ├── password-recovery.component.html │ │ │ │ ├── password-recovery.component.scss │ │ │ │ ├── password-recovery.component.scss-theme.scss │ │ │ │ ├── password-recovery.component.spec.ts │ │ │ │ └── password-recovery.component.ts │ │ ├── password-recovery-routing.module.ts │ │ └── password-recovery.module.ts │ ├── record │ │ ├── components │ │ │ ├── affiliation-stack │ │ │ │ ├── affiliation-stack.component.html │ │ │ │ ├── affiliation-stack.component.scss │ │ │ │ ├── affiliation-stack.component.scss-theme.scss │ │ │ │ ├── affiliation-stack.component.spec.ts │ │ │ │ └── affiliation-stack.component.ts │ │ │ ├── affiliation-stacks-groups │ │ │ │ ├── affiliation-stacks-groups.component.html │ │ │ │ ├── affiliation-stacks-groups.component.scss │ │ │ │ ├── affiliation-stacks-groups.component.spec.ts │ │ │ │ ├── affiliation-stacks-groups.component.ts │ │ │ │ └── modals │ │ │ │ │ └── modal-affiliations │ │ │ │ │ ├── modal-affiliations.component.html │ │ │ │ │ ├── modal-affiliations.component.scss │ │ │ │ │ ├── modal-affiliations.component.scss-theme.scss │ │ │ │ │ ├── modal-affiliations.component.spec.ts │ │ │ │ │ └── modal-affiliations.component.ts │ │ │ ├── affiliation │ │ │ │ ├── affiliation.component.html │ │ │ │ ├── affiliation.component.scss │ │ │ │ ├── affiliation.component.spec.ts │ │ │ │ └── affiliation.component.ts │ │ │ ├── display-attribute │ │ │ │ ├── display-attribute.component.html │ │ │ │ ├── display-attribute.component.scss │ │ │ │ ├── display-attribute.component.spec.ts │ │ │ │ └── display-attribute.component.ts │ │ │ ├── display-external-ids │ │ │ │ ├── display-external-ids.component.html │ │ │ │ ├── display-external-ids.component.scss │ │ │ │ ├── display-external-ids.component.spec.ts │ │ │ │ └── display-external-ids.component.ts │ │ │ ├── funding-external-identifiers-edit │ │ │ │ ├── funding-external-identifiers-edit.component.html │ │ │ │ ├── funding-external-identifiers-edit.component.scss │ │ │ │ ├── funding-external-identifiers-edit.component.scss-theme.scss │ │ │ │ ├── funding-external-identifiers-edit.component.spec.ts │ │ │ │ └── funding-external-identifiers-edit.component.ts │ │ │ ├── funding-external-identifiers-view-only │ │ │ │ ├── funding-external-identifiers-view-only.component.html │ │ │ │ ├── funding-external-identifiers-view-only.component.scss │ │ │ │ ├── funding-external-identifiers-view-only.component.spec.ts │ │ │ │ └── funding-external-identifiers-view-only.component.ts │ │ │ ├── funding-stack │ │ │ │ ├── funding-stack.component.html │ │ │ │ ├── funding-stack.component.scss │ │ │ │ ├── funding-stack.component.scss-theme.scss │ │ │ │ ├── funding-stack.component.spec.ts │ │ │ │ └── funding-stack.component.ts │ │ │ ├── funding-stacks-groups │ │ │ │ ├── funding-stacks-groups.component.html │ │ │ │ ├── funding-stacks-groups.component.scss │ │ │ │ ├── funding-stacks-groups.component.spec.ts │ │ │ │ ├── funding-stacks-groups.component.ts │ │ │ │ └── modals │ │ │ │ │ ├── modal-funding-search-link │ │ │ │ │ ├── modal-funding-search-link.component.html │ │ │ │ │ ├── modal-funding-search-link.component.scss │ │ │ │ │ ├── modal-funding-search-link.component.spec.ts │ │ │ │ │ └── modal-funding-search-link.component.ts │ │ │ │ │ └── modal-funding │ │ │ │ │ ├── modal-funding.component.html │ │ │ │ │ ├── modal-funding.component.scss │ │ │ │ │ ├── modal-funding.component.scss-theme.scss │ │ │ │ │ ├── modal-funding.component.spec.ts │ │ │ │ │ └── modal-funding.component.ts │ │ │ ├── funding │ │ │ │ ├── funding.component.html │ │ │ │ ├── funding.component.scss │ │ │ │ ├── funding.component.spec.ts │ │ │ │ └── funding.component.ts │ │ │ ├── main │ │ │ │ ├── main.component.html │ │ │ │ ├── main.component.scss │ │ │ │ ├── main.component.spec.ts │ │ │ │ └── main.component.ts │ │ │ ├── modals │ │ │ │ └── modal-delete-item │ │ │ │ │ ├── modal-delete-items.component.html │ │ │ │ │ ├── modal-delete-items.component.scss │ │ │ │ │ ├── modal-delete-items.component.scss-theme.scss │ │ │ │ │ ├── modal-delete-items.component.spec.ts │ │ │ │ │ └── modal-delete-items.component.ts │ │ │ ├── org-identifier │ │ │ │ ├── org-identifier.component.html │ │ │ │ ├── org-identifier.component.scss │ │ │ │ ├── org-identifier.component.spec.ts │ │ │ │ └── org-identifier.component.ts │ │ │ ├── peer-review-stack │ │ │ │ ├── peer-review-stack.component.html │ │ │ │ ├── peer-review-stack.component.scss │ │ │ │ ├── peer-review-stack.component.scss-theme.scss │ │ │ │ ├── peer-review-stack.component.spec.ts │ │ │ │ └── peer-review-stack.component.ts │ │ │ ├── peer-review-stacks-groups │ │ │ │ ├── modals │ │ │ │ │ └── modal-peer-reviews │ │ │ │ │ │ ├── modal-peer-reviews.component.html │ │ │ │ │ │ ├── modal-peer-reviews.component.scss │ │ │ │ │ │ ├── modal-peer-reviews.component.spec.ts │ │ │ │ │ │ └── modal-peer-reviews.component.ts │ │ │ │ ├── peer-review-stacks-groups.component.html │ │ │ │ ├── peer-review-stacks-groups.component.scss │ │ │ │ ├── peer-review-stacks-groups.component.scss-theme.scss │ │ │ │ ├── peer-review-stacks-groups.component.spec.ts │ │ │ │ └── peer-review-stacks-groups.component.ts │ │ │ ├── peer-review │ │ │ │ ├── peer-review.component.html │ │ │ │ ├── peer-review.component.scss │ │ │ │ ├── peer-review.component.spec.ts │ │ │ │ └── peer-review.component.ts │ │ │ ├── record-edit-button │ │ │ │ ├── record-edit-button.component.html │ │ │ │ ├── record-edit-button.component.scss │ │ │ │ └── record-edit-button.component.ts │ │ │ ├── record-header │ │ │ │ ├── record-header.component.html │ │ │ │ ├── record-header.component.scss │ │ │ │ ├── record-header.component.scss-theme.scss │ │ │ │ ├── record-header.component.spec.ts │ │ │ │ └── record-header.component.ts │ │ │ ├── record-info │ │ │ │ ├── record-info.component.html │ │ │ │ ├── record-info.component.scss │ │ │ │ ├── record-info.component.spec.ts │ │ │ │ └── record-info.component.ts │ │ │ ├── record-summary │ │ │ │ ├── record-summary.component.html │ │ │ │ ├── record-summary.component.scss │ │ │ │ └── record-summary.component.ts │ │ │ ├── research-resource-stack │ │ │ │ ├── research-resource-stack.component.html │ │ │ │ ├── research-resource-stack.component.scss │ │ │ │ ├── research-resource-stack.component.scss-theme.scss │ │ │ │ ├── research-resource-stack.component.spec.ts │ │ │ │ └── research-resource-stack.component.ts │ │ │ ├── research-resource-stacks-group │ │ │ │ ├── research-resource-stacks-group.component.html │ │ │ │ ├── research-resource-stacks-group.component.scss │ │ │ │ ├── research-resource-stacks-group.component.spec.ts │ │ │ │ └── research-resource-stacks-group.component.ts │ │ │ ├── research-resource │ │ │ │ ├── research-resource.component.html │ │ │ │ ├── research-resource.component.scss │ │ │ │ ├── research-resource.component.scss-theme.scss │ │ │ │ ├── research-resource.component.spec.ts │ │ │ │ └── research-resource.component.ts │ │ │ ├── search-link-wizard │ │ │ │ ├── search-link-wizard.component.html │ │ │ │ ├── search-link-wizard.component.scss │ │ │ │ ├── search-link-wizard.component.spec.ts │ │ │ │ └── search-link-wizard.component.ts │ │ │ ├── top-bar-actions │ │ │ │ ├── top-bar-actions.component.html │ │ │ │ ├── top-bar-actions.component.scss │ │ │ │ ├── top-bar-actions.component.spec.ts │ │ │ │ └── top-bar-actions.component.ts │ │ │ ├── top-bar-record-issues │ │ │ │ ├── top-bar-record-issues.component.html │ │ │ │ ├── top-bar-record-issues.component.scss │ │ │ │ ├── top-bar-record-issues.component.spec.ts │ │ │ │ └── top-bar-record-issues.component.ts │ │ │ ├── top-bar │ │ │ │ ├── modals │ │ │ │ │ ├── modal-biography │ │ │ │ │ │ ├── modal-biography.component.html │ │ │ │ │ │ ├── modal-biography.component.scss │ │ │ │ │ │ ├── modal-biography.component.scss-theme.scss │ │ │ │ │ │ ├── modal-biography.component.spec.ts │ │ │ │ │ │ └── modal-biography.component.ts │ │ │ │ │ └── modal-name │ │ │ │ │ │ ├── modal-name.component.html │ │ │ │ │ │ ├── modal-name.component.scss │ │ │ │ │ │ ├── modal-name.component.scss-theme.scss │ │ │ │ │ │ ├── modal-name.component.spec.ts │ │ │ │ │ │ └── modal-name.component.ts │ │ │ │ ├── top-bar.component.html │ │ │ │ ├── top-bar.component.scss │ │ │ │ ├── top-bar.component.scss-theme.scss │ │ │ │ ├── top-bar.component.spec.ts │ │ │ │ └── top-bar.component.ts │ │ │ ├── work-contributor-role │ │ │ │ ├── work-contributor-roles.component.html │ │ │ │ ├── work-contributor-roles.component.scss │ │ │ │ ├── work-contributor-roles.component.spec.ts │ │ │ │ └── work-contributor-roles.component.ts │ │ │ ├── work-contributors │ │ │ │ ├── work-contributors.component.html │ │ │ │ ├── work-contributors.component.scss │ │ │ │ ├── work-contributors.component.scss-theme.scss │ │ │ │ ├── work-contributors.component.spec.ts │ │ │ │ └── work-contributors.component.ts │ │ │ ├── work-details │ │ │ │ ├── work-details.component.html │ │ │ │ ├── work-details.component.scss │ │ │ │ ├── work-details.component.spec.ts │ │ │ │ └── work-details.component.ts │ │ │ ├── work-external-identifiers-edit │ │ │ │ ├── work-external-identifiers-edit.component.html │ │ │ │ ├── work-external-identifiers-edit.component.scss │ │ │ │ ├── work-external-identifiers-edit.component.scss-theme.scss │ │ │ │ ├── work-external-identifiers-edit.component.spec.ts │ │ │ │ └── work-external-identifiers-edit.component.ts │ │ │ ├── work-external-identifiers-view-only │ │ │ │ ├── work-external-identifiers-view-only.component.html │ │ │ │ ├── work-external-identifiers-view-only.component.scss │ │ │ │ ├── work-external-identifiers-view-only.component.spec.ts │ │ │ │ ├── work-external-identifiers-view-only.component.ts │ │ │ │ └── work-modal-relationship-view-only.component.scss-theme.scss │ │ │ ├── work-featured-stack-group │ │ │ │ ├── work-featured-stack-group.component.html │ │ │ │ ├── work-featured-stack-group.component.scss │ │ │ │ ├── work-featured-stack-group.component.scss-theme.scss │ │ │ │ ├── work-featured-stack-group.component.spec.ts │ │ │ │ └── work-featured-stack-group.component.ts │ │ │ ├── work-featured │ │ │ │ ├── modals │ │ │ │ │ ├── expanded-work-featured-modal │ │ │ │ │ │ ├── expanded-work-featured-modal.component.html │ │ │ │ │ │ ├── expanded-work-featured-modal.component.scss │ │ │ │ │ │ ├── expanded-work-featured-modal.component.scss-theme.scss │ │ │ │ │ │ ├── expanded-work-featured-modal.component.spec.ts │ │ │ │ │ │ └── expanded-work-featured-modal.component.ts │ │ │ │ │ └── manage-work-featured-modal │ │ │ │ │ │ ├── manage-work-featured-modal.component.html │ │ │ │ │ │ ├── manage-work-featured-modal.component.scss │ │ │ │ │ │ ├── manage-work-featured-modal.component.scss-theme.scss │ │ │ │ │ │ └── manage-work-featured-modal.component.ts │ │ │ │ ├── work-featured.component.html │ │ │ │ ├── work-featured.component.scss │ │ │ │ ├── work-featured.component.scss-theme.scss │ │ │ │ ├── work-featured.component.spec.ts │ │ │ │ └── work-featured.component.ts │ │ │ ├── work-form │ │ │ │ └── work-form │ │ │ │ │ ├── work-form.component.html │ │ │ │ │ ├── work-form.component.scss │ │ │ │ │ ├── work-form.component.scss-theme.scss │ │ │ │ │ ├── work-form.component.spec.ts │ │ │ │ │ ├── work-form.component.ts │ │ │ │ │ └── work-type-menu.ts │ │ │ ├── work-modal │ │ │ │ ├── work-modal.component.html │ │ │ │ ├── work-modal.component.scss │ │ │ │ ├── work-modal.component.spec.ts │ │ │ │ └── work-modal.component.ts │ │ │ ├── work-stack-group │ │ │ │ ├── modals │ │ │ │ │ ├── work-bibtex-modal │ │ │ │ │ │ ├── work-bibtex-modal.component.html │ │ │ │ │ │ ├── work-bibtex-modal.component.scss │ │ │ │ │ │ ├── work-bibtex-modal.component.scss-theme.scss │ │ │ │ │ │ ├── work-bibtex-modal.component.spec.ts │ │ │ │ │ │ └── work-bibtex-modal.component.ts │ │ │ │ │ ├── work-external-id-modal │ │ │ │ │ │ ├── work-external-id-modal.component.html │ │ │ │ │ │ ├── work-external-id-modal.component.scss │ │ │ │ │ │ ├── work-external-id-modal.component.spec.ts │ │ │ │ │ │ └── work-external-id-modal.component.ts │ │ │ │ │ └── work-search-link-modal │ │ │ │ │ │ ├── modal-works-search-link.component.html │ │ │ │ │ │ ├── modal-works-search-link.component.scss │ │ │ │ │ │ ├── modal-works-search-link.component.spec.ts │ │ │ │ │ │ └── modal-works-search-link.component.ts │ │ │ │ ├── work-stack-group.component.html │ │ │ │ ├── work-stack-group.component.scss │ │ │ │ ├── work-stack-group.component.scss-theme.scss │ │ │ │ ├── work-stack-group.component.spec.ts │ │ │ │ └── work-stack-group.component.ts │ │ │ ├── work-stack │ │ │ │ ├── work-stack.component.html │ │ │ │ ├── work-stack.component.scss │ │ │ │ ├── work-stack.component.scss-theme.scss │ │ │ │ ├── work-stack.component.spec.ts │ │ │ │ └── work-stack.component.ts │ │ │ └── work │ │ │ │ ├── modals │ │ │ │ ├── modal-combine-works-with-selector │ │ │ │ │ ├── modal-combine-works-with-selector.component.html │ │ │ │ │ ├── modal-combine-works-with-selector.component.scss │ │ │ │ │ ├── modal-combine-works-with-selector.component.scss-theme.scss │ │ │ │ │ ├── modal-combine-works-with-selector.component.spec.ts │ │ │ │ │ └── modal-combine-works-with-selector.component.ts │ │ │ │ ├── modal-combine-works │ │ │ │ │ ├── modal-combine-works.component.html │ │ │ │ │ ├── modal-combine-works.component.scss │ │ │ │ │ ├── modal-combine-works.component.scss-theme.scss │ │ │ │ │ ├── modal-combine-works.component.spec.ts │ │ │ │ │ └── modal-combine-works.component.ts │ │ │ │ ├── modal-export-works │ │ │ │ │ ├── modal-export-works.component.html │ │ │ │ │ ├── modal-export-works.component.scss │ │ │ │ │ ├── modal-export-works.component.spec.ts │ │ │ │ │ └── modal-export-works.component.ts │ │ │ │ └── works-visibility-modal │ │ │ │ │ ├── works-visibility-modal.component.html │ │ │ │ │ ├── works-visibility-modal.component.scss │ │ │ │ │ ├── works-visibility-modal.component.spec.ts │ │ │ │ │ └── works-visibility-modal.component.ts │ │ │ │ ├── work.component.html │ │ │ │ ├── work.component.scss │ │ │ │ ├── work.component.spec.ts │ │ │ │ └── work.component.ts │ │ ├── pages │ │ │ └── my-orcid │ │ │ │ ├── my-orcid.component.html │ │ │ │ ├── my-orcid.component.scss │ │ │ │ ├── my-orcid.component.scss-theme.scss │ │ │ │ ├── my-orcid.component.spec.ts │ │ │ │ ├── my-orcid.component.ts │ │ │ │ └── test.js │ │ ├── record-routing.module.ts │ │ └── record.module.ts │ ├── register │ │ ├── ErrorStateMatcherForFormLevelErrors.ts │ │ ├── components │ │ │ ├── BaseForm.ts │ │ │ ├── BaseStep.ts │ │ │ ├── backend-error │ │ │ │ ├── backend-error.component.html │ │ │ │ ├── backend-error.component.scss │ │ │ │ ├── backend-error.component.spec.ts │ │ │ │ └── backend-error.component.ts │ │ │ ├── form-anti-robots │ │ │ │ ├── form-anti-robots.component.html │ │ │ │ ├── form-anti-robots.component.scss │ │ │ │ ├── form-anti-robots.component.spec.ts │ │ │ │ └── form-anti-robots.component.ts │ │ │ ├── form-current-employment │ │ │ │ ├── form-current-employment.component.html │ │ │ │ ├── form-current-employment.component.scss │ │ │ │ ├── form-current-employment.component.scss-theme.scss │ │ │ │ ├── form-current-employment.component.spec.ts │ │ │ │ └── form-current-employment.component.ts │ │ │ ├── form-notifications │ │ │ │ ├── form-notifications.component.html │ │ │ │ ├── form-notifications.component.scss │ │ │ │ ├── form-notifications.component.spec.ts │ │ │ │ └── form-notifications.component.ts │ │ │ ├── form-password │ │ │ │ ├── form-password.component.html │ │ │ │ ├── form-password.component.scss │ │ │ │ ├── form-password.component.scss-theme.scss │ │ │ │ ├── form-password.component.spec.ts │ │ │ │ └── form-password.component.ts │ │ │ ├── form-personal-additional-emails │ │ │ │ ├── form-personal-additional-emails.component.html │ │ │ │ ├── form-personal-additional-emails.component.scss │ │ │ │ ├── form-personal-additional-emails.component.spec.ts │ │ │ │ └── form-personal-additional-emails.component.ts │ │ │ ├── form-personal │ │ │ │ ├── form-personal.component.html │ │ │ │ ├── form-personal.component.scss │ │ │ │ ├── form-personal.component.spec.ts │ │ │ │ └── form-personal.component.ts │ │ │ ├── form-terms │ │ │ │ ├── form-terms.component.html │ │ │ │ ├── form-terms.component.scss │ │ │ │ ├── form-terms.component.spec.ts │ │ │ │ └── form-terms.component.ts │ │ │ ├── form-visibility │ │ │ │ ├── form-visibility.component.html │ │ │ │ ├── form-visibility.component.scss │ │ │ │ ├── form-visibility.component.spec.ts │ │ │ │ └── form-visibility.component.ts │ │ │ ├── register.scss-theme.scss │ │ │ ├── register.style.scss │ │ │ ├── step-a │ │ │ │ ├── step-a.component.html │ │ │ │ ├── step-a.component.scss │ │ │ │ ├── step-a.component.spec.ts │ │ │ │ └── step-a.component.ts │ │ │ ├── step-b │ │ │ │ ├── step-b.component.html │ │ │ │ ├── step-b.component.scss │ │ │ │ ├── step-b.component.spec.ts │ │ │ │ └── step-b.component.ts │ │ │ ├── step-c │ │ │ │ ├── step-c.component.html │ │ │ │ ├── step-c.component.scss │ │ │ │ ├── step-c.component.ts │ │ │ │ └── step-c.spec.ts │ │ │ ├── step-c2 │ │ │ │ ├── step-c2.component.html │ │ │ │ ├── step-c2.component.scss │ │ │ │ ├── step-c2.component.ts │ │ │ │ └── step-c2.spec.ts │ │ │ └── step-d │ │ │ │ ├── step-d.component.html │ │ │ │ ├── step-d.component.scss │ │ │ │ ├── step-d.component.spec.ts │ │ │ │ └── step-d.component.ts │ │ ├── pages │ │ │ └── register │ │ │ │ ├── register.component.html │ │ │ │ ├── register.component.scss │ │ │ │ ├── register.component.scss.theme.scss │ │ │ │ └── register.component.ts │ │ ├── register-observability.service.ts │ │ ├── register-routing.module.ts │ │ ├── register-state.service.spec.ts │ │ ├── register-state.service.ts │ │ └── register.module.ts │ ├── reset-password │ │ ├── reset-password-routing.module.ts │ │ ├── reset-password.module.ts │ │ └── reset-password │ │ │ ├── reset-password.component.html │ │ │ ├── reset-password.component.scss │ │ │ ├── reset-password.component.scss-theme.scss │ │ │ ├── reset-password.component.spec.ts │ │ │ └── reset-password.component.ts │ ├── rum │ │ ├── journeys │ │ │ ├── oauthAuthorization.ts │ │ │ ├── orcidNotifications.ts │ │ │ ├── orcidRegistration.ts │ │ │ └── types.ts │ │ └── service │ │ │ ├── customEvent.service.spec.ts │ │ │ └── customEvent.service.ts │ ├── search │ │ ├── components │ │ │ ├── advance-search │ │ │ │ ├── advance-search.component.html │ │ │ │ ├── advance-search.component.scss │ │ │ │ ├── advance-search.component.scss-theme.scss │ │ │ │ ├── advance-search.component.spec.ts │ │ │ │ ├── advance-search.component.ts │ │ │ │ └── at-least-one-input-has-value.validator.ts │ │ │ └── results │ │ │ │ ├── results.component.html │ │ │ │ ├── results.component.scss │ │ │ │ ├── results.component.scss-theme.scss │ │ │ │ ├── results.component.spec.ts │ │ │ │ └── results.component.ts │ │ ├── pages │ │ │ └── search │ │ │ │ ├── search.component.html │ │ │ │ ├── search.component.scss │ │ │ │ ├── search.component.spec.ts │ │ │ │ └── search.component.ts │ │ ├── search-routing.module.ts │ │ └── search.module.ts │ ├── self-service │ │ ├── self-service-routing.module.ts │ │ ├── self-service.module.ts │ │ └── self-service │ │ │ ├── self-service.component.html │ │ │ ├── self-service.component.scss │ │ │ ├── self-service.component.scss-theme.scss │ │ │ ├── self-service.component.spec.ts │ │ │ └── self-service.component.ts │ ├── shared │ │ ├── components │ │ │ ├── copy-on-click │ │ │ │ ├── copy-on-click.component.html │ │ │ │ ├── copy-on-click.component.scss │ │ │ │ ├── copy-on-click.component.spec.ts │ │ │ │ └── copy-on-click.component.ts │ │ │ ├── offline-message │ │ │ │ ├── offline-message.component.html │ │ │ │ ├── offline-message.component.scss │ │ │ │ ├── offline-message.component.scss-theme.scss │ │ │ │ ├── offline-message.component.spec.ts │ │ │ │ └── offline-message.component.ts │ │ │ └── showing-of │ │ │ │ ├── showing-of.component.html │ │ │ │ ├── showing-of.component.scss │ │ │ │ ├── showing-of.component.spec.ts │ │ │ │ └── showing-of.component.ts │ │ ├── directives │ │ │ └── copy-on-click │ │ │ │ ├── copy-on-click.directive.spec.ts │ │ │ │ └── copy-on-click.directive.ts │ │ ├── pipes │ │ │ ├── affiliation-label.pipe.spec.ts │ │ │ ├── affiliation-label.pipe.ts │ │ │ ├── affiliation-type-label │ │ │ │ ├── affiliation-type-label.pipe.spec.ts │ │ │ │ └── affiliation-type-label.pipe.ts │ │ │ ├── affiliation-type │ │ │ │ ├── affiliation-type.pipe.spec.ts │ │ │ │ └── affiliation-type.pipe.ts │ │ │ ├── app-panel-activity-action-aria-label │ │ │ │ ├── app-panel-activity-action-aria-label.pipe.spec.ts │ │ │ │ └── app-panel-activity-action-aria-label.pipe.ts │ │ │ ├── app-panels-add-aria-label │ │ │ │ ├── app-panels-add-aria-label.pipe.spec.ts │ │ │ │ └── app-panels-add-aria-label.pipe.ts │ │ │ ├── app-panels-collapse-aria-label │ │ │ │ ├── app-panels-collapse-aria-label.pipe.spec.ts │ │ │ │ └── app-panels-collapse-aria-label.pipe.ts │ │ │ ├── app-panels-expand-aria-label │ │ │ │ ├── app-panels-expand-aria-label.pipe.spec.ts │ │ │ │ └── app-panels-expand-aria-label.pipe.ts │ │ │ ├── app-panels-sort-aria-label │ │ │ │ ├── app-panels-sort-aria-label.pipe.spec.ts │ │ │ │ └── app-panels-sort-aria-label.pipe.ts │ │ │ ├── app-panels-sort-by-aria-label │ │ │ │ ├── app-panels-sort-by-aria-label.pipe.spec.ts │ │ │ │ └── app-panels-sort-by-aria-label.pipe.ts │ │ │ ├── city-region-country │ │ │ │ ├── city-region-country.pipe.spec.ts │ │ │ │ └── city-region-country.pipe.ts │ │ │ ├── contributors-pipe │ │ │ │ ├── contributors.pipe.spec.ts │ │ │ │ └── contributors.pipe.ts │ │ │ ├── contributors-roles │ │ │ │ ├── contributor-roles.pipe.spec.ts │ │ │ │ └── contributor-roles.pipe.ts │ │ │ ├── disabled-role │ │ │ │ ├── disable-role.pipe.spec.ts │ │ │ │ └── disable-role.pipe.ts │ │ │ ├── edit-button-aria-label │ │ │ │ ├── edit-button-aria-label.pipe.spec.ts │ │ │ │ └── edit-button-aria-label.pipe.ts │ │ │ ├── email-frequency-label │ │ │ │ ├── email-frequency-label.pipe.spec.ts │ │ │ │ └── email-frequency-label.pipe.ts │ │ │ ├── format-bibtex │ │ │ │ ├── format-bibtex.pipe.spec.ts │ │ │ │ └── format-bibtex.pipe.ts │ │ │ ├── is-url-with-protocol │ │ │ │ ├── is-url-with-protocol.pipe.spec.ts │ │ │ │ └── is-url-with-protocol.pipe.ts │ │ │ ├── is-url │ │ │ │ ├── is-url.pipe.spec.ts │ │ │ │ └── is-url.pipe.ts │ │ │ ├── month-day-year-date-to-string │ │ │ │ ├── month-day-year-date-to-string.pipe.spec.ts │ │ │ │ └── month-day-year-date-to-string.pipe.ts │ │ │ ├── organization-link │ │ │ │ ├── organization-link.pipe.spec.ts │ │ │ │ └── organization-link.pipe.ts │ │ │ ├── record-funding-relationship-hint-label │ │ │ │ ├── record-funding-relationship-hint-label.pipe.spec.ts │ │ │ │ └── record-funding-relationship-hint-label.pipe.ts │ │ │ ├── record-funding-relationship-label │ │ │ │ ├── record-funding-relationship-label.pipe.spec.ts │ │ │ │ └── record-funding-relationship-label.pipe.ts │ │ │ ├── record-funding-type-label │ │ │ │ ├── record-funding-type-label.pipe.spec.ts │ │ │ │ └── record-funding-type-label.pipe.ts │ │ │ ├── record-holder-roles │ │ │ │ ├── record-holder-roles.pipe.spec.ts │ │ │ │ └── record-holder-roles.pipe.ts │ │ │ ├── record-work-category-label │ │ │ │ ├── record-work-category-label.pipe.spec.ts │ │ │ │ └── record-work-category-label.pipe.ts │ │ │ ├── record-work-relationship-hint-label │ │ │ │ ├── record-work-relationship-hint-label.pipe.spec.ts │ │ │ │ └── record-work-relationship-hint-label.pipe.ts │ │ │ ├── record-work-relationship-label │ │ │ │ ├── record-work-relationship-label.pipe.spec.ts │ │ │ │ └── record-work-relationship-label.pipe.ts │ │ │ ├── record-work-title-name-label │ │ │ │ ├── record-work-title-name-label.pipe.spec.ts │ │ │ │ └── record-work-title-name-label.pipe.ts │ │ │ ├── record-work-type-label │ │ │ │ ├── record-work-type-label.pipe.spec.ts │ │ │ │ └── record-work-type-label.pipe.ts │ │ │ ├── replace-text │ │ │ │ ├── replace-text.pipe.spec.ts │ │ │ │ └── replace-text.pipe.ts │ │ │ ├── role-translation │ │ │ │ ├── role-translation.pipe.spec.ts │ │ │ │ └── role-translation.pipe.ts │ │ │ ├── safe-html │ │ │ │ ├── safe-html.pipe.spec.ts │ │ │ │ └── safe-html.pipe.ts │ │ │ ├── scope-path-type │ │ │ │ ├── scope-path-type.pipe.spec.ts │ │ │ │ └── scope-path-type.pipe.ts │ │ │ ├── search-term-highlight │ │ │ │ ├── search-term-highlight.pipe.spec.ts │ │ │ │ └── search-term-highlight.pipe.ts │ │ │ ├── sort-by │ │ │ │ ├── sort-by.pipe.spec.ts │ │ │ │ └── sort-by.pipe.ts │ │ │ ├── trailing-zeros │ │ │ │ ├── trailing-zeros.pipe.spec.ts │ │ │ │ └── trailing-zeros.pipe.ts │ │ │ ├── verification-date-cutoff-pipe │ │ │ │ ├── verification-date-cutoff.pipe.spec.ts │ │ │ │ └── verification-date-cutoff.pipe.ts │ │ │ └── visibility-string-label │ │ │ │ ├── visibility-string-label.pipe.spec.ts │ │ │ │ └── visibility-string-label.pipe.ts │ │ ├── shared.module.spec.ts │ │ ├── shared.module.ts │ │ ├── utils │ │ │ └── record.util.ts │ │ └── validators │ │ │ ├── citation │ │ │ └── work-citation.validator.ts │ │ │ ├── date │ │ │ └── date.validator.ts │ │ │ ├── environment-check │ │ │ └── environment-check.ts │ │ │ ├── funding-amount │ │ │ └── funding-amount.validator.ts │ │ │ ├── institution │ │ │ └── institution.validator.ts │ │ │ ├── translated-title │ │ │ └── translated-title.validator.ts │ │ │ ├── unique │ │ │ └── unique.validator.ts │ │ │ ├── username │ │ │ └── username.validator.ts │ │ │ └── work-identifiers │ │ │ └── work-identifiers.validator.ts │ ├── sign-in │ │ ├── ErrorStateMatcherForPasswordField.ts │ │ ├── ErrorStateMatcherForTwoFactorFields.ts │ │ ├── components │ │ │ ├── errors │ │ │ │ ├── deactivated │ │ │ │ │ ├── deactivated.component.html │ │ │ │ │ ├── deactivated.component.scss │ │ │ │ │ ├── deactivated.component.spec.ts │ │ │ │ │ └── deactivated.component.ts │ │ │ │ └── print-errors │ │ │ │ │ ├── print-errors.component.html │ │ │ │ │ ├── print-errors.component.scss │ │ │ │ │ ├── print-errors.component.spec.ts │ │ │ │ │ └── print-errors.component.ts │ │ │ ├── form-sign-in │ │ │ │ ├── form-sign-in.component.html │ │ │ │ ├── form-sign-in.component.scss │ │ │ │ ├── form-sign-in.component.spec.ts │ │ │ │ └── form-sign-in.component.ts │ │ │ ├── logged-in │ │ │ │ ├── logged-in.component.html │ │ │ │ ├── logged-in.component.scss │ │ │ │ ├── logged-in.component.spec.ts │ │ │ │ └── logged-in.component.ts │ │ │ ├── sign-in.scss-theme.scss │ │ │ ├── sign-in.style.scss │ │ │ └── social │ │ │ │ ├── social.component.html │ │ │ │ ├── social.component.scss │ │ │ │ ├── social.component.scss-theme.scss │ │ │ │ ├── social.component.spec.ts │ │ │ │ └── social.component.ts │ │ ├── pages │ │ │ └── sign-in │ │ │ │ ├── sign-in.component.html │ │ │ │ ├── sign-in.component.scss │ │ │ │ ├── sign-in.component.scss-theme.scss │ │ │ │ ├── sign-in.component.spec.ts │ │ │ │ └── sign-in.component.ts │ │ ├── sign-in-routing.module.ts │ │ └── sign-in.module.ts │ ├── trusted-summary │ │ ├── pages │ │ │ └── trusted-summary │ │ │ │ ├── trusted-summary-page.component.html │ │ │ │ ├── trusted-summary-page.component.scss │ │ │ │ ├── trusted-summary-page.component.spec.ts │ │ │ │ └── trusted-summary.component.ts │ │ ├── trusted-summary-routing.module.ts │ │ └── trusted-summary.module.ts │ ├── two-factor-setup │ │ ├── components │ │ │ ├── two-factor-enable │ │ │ │ ├── two-factor-enable.component.html │ │ │ │ ├── two-factor-enable.component.scss │ │ │ │ ├── two-factor-enable.component.scss-theme.scss │ │ │ │ ├── two-factor-enable.component.spec.ts │ │ │ │ └── two-factor-enable.component.ts │ │ │ └── two-factor-recovery-codes │ │ │ │ ├── two-factor-recovery-codes.component.html │ │ │ │ ├── two-factor-recovery-codes.component.scss │ │ │ │ ├── two-factor-recovery-codes.component.scss-theme.scss │ │ │ │ ├── two-factor-recovery-codes.component.spec.ts │ │ │ │ └── two-factor-recovery-codes.component.ts │ │ ├── pages │ │ │ └── two-factor │ │ │ │ ├── two-factor-setup.component.html │ │ │ │ ├── two-factor-setup.component.scss │ │ │ │ ├── two-factor-setup.component.scss-theme.scss │ │ │ │ ├── two-factor-setup.component.spec.ts │ │ │ │ └── two-factor-setup.component.ts │ │ ├── two-factor-setup-routing.module.ts │ │ └── two-factor-setup.module.ts │ ├── two-factor │ │ ├── pages │ │ │ └── two-factor │ │ │ │ ├── two-factor.component.html │ │ │ │ ├── two-factor.component.scss │ │ │ │ ├── two-factor.component.spec.ts │ │ │ │ └── two-factor.component.ts │ │ ├── two-factor-routing.module.ts │ │ └── two-factor.module.ts │ ├── types │ │ ├── account-actions-duplicated.ts │ │ ├── account-alternate-sign-in.endpoint.ts │ │ ├── account-default-email-frequencies.endpoint copy.ts │ │ ├── account-default-visibility.endpoint.ts │ │ ├── account-settings-password.ts │ │ ├── account-trusted-individuals.ts │ │ ├── account-trusted-organizations.ts │ │ ├── authorize.endpoint.ts │ │ ├── claim.endpoint.ts │ │ ├── common.endpoint.ts │ │ ├── constructor.local.ts │ │ ├── developer-tools.ts │ │ ├── index.ts │ │ ├── institutional.endpoint.ts │ │ ├── item_gtm.ts │ │ ├── language.locale.ts │ │ ├── locale.scripts.ts │ │ ├── menu.local.ts │ │ ├── nameForm.endpoint.ts │ │ ├── notifications.endpoint.ts │ │ ├── notifications.local.ts │ │ ├── oauth.locale.ts │ │ ├── oauth2-request-info-form.endpoint.ts │ │ ├── orgs.disambiguated.endpoint.ts │ │ ├── reactivation.endpoint.ts │ │ ├── reactivation.local.ts │ │ ├── record-affiliation.endpoint.ts │ │ ├── record-biography.endpoint.ts │ │ ├── record-country.endpoint.ts │ │ ├── record-email.endpoint.ts │ │ ├── record-funding.endpoint.ts │ │ ├── record-keyword.endpoint.ts │ │ ├── record-name.endpoint.ts │ │ ├── record-other-names.endpoint.ts │ │ ├── record-peer-review-import.endpoint.ts │ │ ├── record-peer-review.endpoint.ts │ │ ├── record-person-identifier.endpoint.ts │ │ ├── record-research-resources.endpoint.ts │ │ ├── record-websites.endpoint.ts │ │ ├── record-works.endpoint.ts │ │ ├── record.endpoint.ts │ │ ├── record.local.ts │ │ ├── recover-password.endpoint.ts │ │ ├── register.email-category.ts │ │ ├── register.endpoint.ts │ │ ├── register.local.ts │ │ ├── request-info-form.endpoint.ts │ │ ├── reset-password.endpoint.ts │ │ ├── screen-directions.local.ts │ │ ├── search.endpoint.ts │ │ ├── search.local.ts │ │ ├── session.local.ts │ │ ├── sign-in-data.endpoint.ts │ │ ├── sign-in.endpoint.ts │ │ ├── sign-in.local.ts │ │ ├── snackbar.locale.ts │ │ ├── sort.ts │ │ ├── togglz.endpoint.ts │ │ ├── togglz.local.ts │ │ ├── trust-summary.ts │ │ ├── trusted-individuals.endpoint.ts │ │ ├── two-factor.endpoint.ts │ │ ├── userInfo.endpoint.ts │ │ ├── userStatus.endpoint.ts │ │ ├── wordpress.ts │ │ ├── works.endpoint.ts │ │ └── zendesk.local.ts │ └── validators.ts ├── assets │ ├── .gitkeep │ ├── fonts │ │ └── noto-sans │ │ │ ├── NotoSans-Black.ttf │ │ │ ├── NotoSans-Black.woff │ │ │ ├── NotoSans-Black.woff2 │ │ │ ├── NotoSans-BlackItalic.ttf │ │ │ ├── NotoSans-BlackItalic.woff │ │ │ ├── NotoSans-BlackItalic.woff2 │ │ │ ├── NotoSans-Bold.woff │ │ │ ├── NotoSans-Bold.woff2 │ │ │ ├── NotoSans-BoldItalic.ttf │ │ │ ├── NotoSans-BoldItalic.woff │ │ │ ├── NotoSans-BoldItalic.woff2 │ │ │ ├── NotoSans-Condensed.ttf │ │ │ ├── NotoSans-Condensed.woff │ │ │ ├── NotoSans-Condensed.woff2 │ │ │ ├── NotoSans-CondensedBlack.ttf │ │ │ ├── NotoSans-CondensedBlack.woff │ │ │ ├── NotoSans-CondensedBlack.woff2 │ │ │ ├── NotoSans-CondensedBlackItalic.ttf │ │ │ ├── NotoSans-CondensedBlackItalic.woff │ │ │ ├── NotoSans-CondensedBlackItalic.woff2 │ │ │ ├── NotoSans-CondensedBold.ttf │ │ │ ├── NotoSans-CondensedBold.woff │ │ │ ├── NotoSans-CondensedBold.woff2 │ │ │ ├── NotoSans-CondensedBoldItalic.ttf │ │ │ ├── NotoSans-CondensedBoldItalic.woff │ │ │ ├── NotoSans-CondensedBoldItalic.woff2 │ │ │ ├── NotoSans-CondensedExtraBold.ttf │ │ │ ├── NotoSans-CondensedExtraBold.woff │ │ │ ├── NotoSans-CondensedExtraBold.woff2 │ │ │ ├── NotoSans-CondensedExtraBoldItalic.ttf │ │ │ ├── NotoSans-CondensedExtraBoldItalic.woff │ │ │ ├── NotoSans-CondensedExtraBoldItalic.woff2 │ │ │ ├── NotoSans-CondensedExtraLight.ttf │ │ │ ├── NotoSans-CondensedExtraLight.woff │ │ │ ├── NotoSans-CondensedExtraLight.woff2 │ │ │ ├── NotoSans-CondensedExtraLightItalic.ttf │ │ │ ├── NotoSans-CondensedExtraLightItalic.woff │ │ │ ├── NotoSans-CondensedExtraLightItalic.woff2 │ │ │ ├── NotoSans-CondensedItalic.ttf │ │ │ ├── NotoSans-CondensedItalic.woff │ │ │ ├── NotoSans-CondensedItalic.woff2 │ │ │ ├── NotoSans-CondensedLight.ttf │ │ │ ├── NotoSans-CondensedLight.woff │ │ │ ├── NotoSans-CondensedLight.woff2 │ │ │ ├── NotoSans-CondensedLightItalic.ttf │ │ │ ├── NotoSans-CondensedLightItalic.woff │ │ │ ├── NotoSans-CondensedLightItalic.woff2 │ │ │ ├── NotoSans-CondensedMedium.ttf │ │ │ ├── NotoSans-CondensedMedium.woff │ │ │ ├── NotoSans-CondensedMedium.woff2 │ │ │ ├── NotoSans-CondensedMediumItalic.ttf │ │ │ ├── NotoSans-CondensedMediumItalic.woff │ │ │ ├── NotoSans-CondensedMediumItalic.woff2 │ │ │ ├── NotoSans-CondensedSemiBold.ttf │ │ │ ├── NotoSans-CondensedSemiBold.woff │ │ │ ├── NotoSans-CondensedSemiBold.woff2 │ │ │ ├── NotoSans-CondensedSemiBoldItalic.ttf │ │ │ ├── NotoSans-CondensedSemiBoldItalic.woff │ │ │ ├── NotoSans-CondensedSemiBoldItalic.woff2 │ │ │ ├── NotoSans-CondensedThin.ttf │ │ │ ├── NotoSans-CondensedThin.woff │ │ │ ├── NotoSans-CondensedThin.woff2 │ │ │ ├── NotoSans-CondensedThinItalic.ttf │ │ │ ├── NotoSans-CondensedThinItalic.woff │ │ │ ├── NotoSans-CondensedThinItalic.woff2 │ │ │ ├── NotoSans-ExtraBold.ttf │ │ │ ├── NotoSans-ExtraBold.woff │ │ │ ├── NotoSans-ExtraBold.woff2 │ │ │ ├── NotoSans-ExtraBoldItalic.ttf │ │ │ ├── NotoSans-ExtraBoldItalic.woff │ │ │ ├── NotoSans-ExtraBoldItalic.woff2 │ │ │ ├── NotoSans-ExtraCondensed.ttf │ │ │ ├── NotoSans-ExtraCondensed.woff │ │ │ ├── NotoSans-ExtraCondensed.woff2 │ │ │ ├── NotoSans-ExtraCondensedBlack.ttf │ │ │ ├── NotoSans-ExtraCondensedBlack.woff │ │ │ ├── NotoSans-ExtraCondensedBlack.woff2 │ │ │ ├── NotoSans-ExtraCondensedBlackItalic.ttf │ │ │ ├── NotoSans-ExtraCondensedBlackItalic.woff │ │ │ ├── NotoSans-ExtraCondensedBlackItalic.woff2 │ │ │ ├── NotoSans-ExtraCondensedBold.ttf │ │ │ ├── NotoSans-ExtraCondensedBold.woff │ │ │ ├── NotoSans-ExtraCondensedBold.woff2 │ │ │ ├── NotoSans-ExtraCondensedBoldItalic.ttf │ │ │ ├── NotoSans-ExtraCondensedBoldItalic.woff │ │ │ ├── NotoSans-ExtraCondensedBoldItalic.woff2 │ │ │ ├── NotoSans-ExtraCondensedExtraBold.ttf │ │ │ ├── NotoSans-ExtraCondensedExtraBold.woff │ │ │ ├── NotoSans-ExtraCondensedExtraBold.woff2 │ │ │ ├── NotoSans-ExtraCondensedExtraBoldItalic.ttf │ │ │ ├── NotoSans-ExtraCondensedExtraBoldItalic.woff │ │ │ ├── NotoSans-ExtraCondensedExtraBoldItalic.woff2 │ │ │ ├── NotoSans-ExtraCondensedExtraLight.ttf │ │ │ ├── NotoSans-ExtraCondensedExtraLight.woff │ │ │ ├── NotoSans-ExtraCondensedExtraLight.woff2 │ │ │ ├── NotoSans-ExtraCondensedExtraLightItalic.ttf │ │ │ ├── NotoSans-ExtraCondensedExtraLightItalic.woff │ │ │ ├── NotoSans-ExtraCondensedExtraLightItalic.woff2 │ │ │ ├── NotoSans-ExtraCondensedItalic.ttf │ │ │ ├── NotoSans-ExtraCondensedItalic.woff │ │ │ ├── NotoSans-ExtraCondensedItalic.woff2 │ │ │ ├── NotoSans-ExtraCondensedLight.ttf │ │ │ ├── NotoSans-ExtraCondensedLight.woff │ │ │ ├── NotoSans-ExtraCondensedLight.woff2 │ │ │ ├── NotoSans-ExtraCondensedLightItalic.ttf │ │ │ ├── NotoSans-ExtraCondensedLightItalic.woff │ │ │ ├── NotoSans-ExtraCondensedLightItalic.woff2 │ │ │ ├── NotoSans-ExtraCondensedMedium.ttf │ │ │ ├── NotoSans-ExtraCondensedMedium.woff │ │ │ ├── NotoSans-ExtraCondensedMedium.woff2 │ │ │ ├── NotoSans-ExtraCondensedMediumItalic.ttf │ │ │ ├── NotoSans-ExtraCondensedMediumItalic.woff │ │ │ ├── NotoSans-ExtraCondensedMediumItalic.woff2 │ │ │ ├── NotoSans-ExtraCondensedSemiBold.ttf │ │ │ ├── NotoSans-ExtraCondensedSemiBold.woff │ │ │ ├── NotoSans-ExtraCondensedSemiBold.woff2 │ │ │ ├── NotoSans-ExtraCondensedSemiBoldItalic.ttf │ │ │ ├── NotoSans-ExtraCondensedSemiBoldItalic.woff │ │ │ ├── NotoSans-ExtraCondensedSemiBoldItalic.woff2 │ │ │ ├── NotoSans-ExtraCondensedThin.ttf │ │ │ ├── NotoSans-ExtraCondensedThin.woff │ │ │ ├── NotoSans-ExtraCondensedThin.woff2 │ │ │ ├── NotoSans-ExtraCondensedThinItalic.ttf │ │ │ ├── NotoSans-ExtraCondensedThinItalic.woff │ │ │ ├── NotoSans-ExtraCondensedThinItalic.woff2 │ │ │ ├── NotoSans-ExtraLight.ttf │ │ │ ├── NotoSans-ExtraLight.woff │ │ │ ├── NotoSans-ExtraLight.woff2 │ │ │ ├── NotoSans-ExtraLightItalic.ttf │ │ │ ├── NotoSans-ExtraLightItalic.woff │ │ │ ├── NotoSans-ExtraLightItalic.woff2 │ │ │ ├── NotoSans-Italic.ttf │ │ │ ├── NotoSans-Italic.woff │ │ │ ├── NotoSans-Italic.woff2 │ │ │ ├── NotoSans-Light.ttf │ │ │ ├── NotoSans-Light.woff │ │ │ ├── NotoSans-Light.woff2 │ │ │ ├── NotoSans-LightItalic.ttf │ │ │ ├── NotoSans-LightItalic.woff │ │ │ ├── NotoSans-LightItalic.woff2 │ │ │ ├── NotoSans-Medium.ttf │ │ │ ├── NotoSans-Medium.woff │ │ │ ├── NotoSans-Medium.woff2 │ │ │ ├── NotoSans-MediumItalic.ttf │ │ │ ├── NotoSans-MediumItalic.woff │ │ │ ├── NotoSans-MediumItalic.woff2 │ │ │ ├── NotoSans-Regular.woff │ │ │ ├── NotoSans-Regular.woff2 │ │ │ ├── NotoSans-SemiBold.ttf │ │ │ ├── NotoSans-SemiBold.woff │ │ │ ├── NotoSans-SemiBold.woff2 │ │ │ ├── NotoSans-SemiBoldItalic.ttf │ │ │ ├── NotoSans-SemiBoldItalic.woff │ │ │ ├── NotoSans-SemiBoldItalic.woff2 │ │ │ ├── NotoSans-SemiCondensed.ttf │ │ │ ├── NotoSans-SemiCondensed.woff │ │ │ ├── NotoSans-SemiCondensed.woff2 │ │ │ ├── NotoSans-SemiCondensedBlack.ttf │ │ │ ├── NotoSans-SemiCondensedBlack.woff │ │ │ ├── NotoSans-SemiCondensedBlack.woff2 │ │ │ ├── NotoSans-SemiCondensedBlackItalic.ttf │ │ │ ├── NotoSans-SemiCondensedBlackItalic.woff │ │ │ ├── NotoSans-SemiCondensedBlackItalic.woff2 │ │ │ ├── NotoSans-SemiCondensedBold.ttf │ │ │ ├── NotoSans-SemiCondensedBold.woff │ │ │ ├── NotoSans-SemiCondensedBold.woff2 │ │ │ ├── NotoSans-SemiCondensedBoldItalic.ttf │ │ │ ├── NotoSans-SemiCondensedBoldItalic.woff │ │ │ ├── NotoSans-SemiCondensedBoldItalic.woff2 │ │ │ ├── NotoSans-SemiCondensedExtraBold.ttf │ │ │ ├── NotoSans-SemiCondensedExtraBold.woff │ │ │ ├── NotoSans-SemiCondensedExtraBold.woff2 │ │ │ ├── NotoSans-SemiCondensedExtraBoldItalic.ttf │ │ │ ├── NotoSans-SemiCondensedExtraBoldItalic.woff │ │ │ ├── NotoSans-SemiCondensedExtraBoldItalic.woff2 │ │ │ ├── NotoSans-SemiCondensedExtraLight.ttf │ │ │ ├── NotoSans-SemiCondensedExtraLight.woff │ │ │ ├── NotoSans-SemiCondensedExtraLight.woff2 │ │ │ ├── NotoSans-SemiCondensedExtraLightItalic.ttf │ │ │ ├── NotoSans-SemiCondensedExtraLightItalic.woff │ │ │ ├── NotoSans-SemiCondensedExtraLightItalic.woff2 │ │ │ ├── NotoSans-SemiCondensedItalic.ttf │ │ │ ├── NotoSans-SemiCondensedItalic.woff │ │ │ ├── NotoSans-SemiCondensedItalic.woff2 │ │ │ ├── NotoSans-SemiCondensedLight.ttf │ │ │ ├── NotoSans-SemiCondensedLight.woff │ │ │ ├── NotoSans-SemiCondensedLight.woff2 │ │ │ ├── NotoSans-SemiCondensedLightItalic.ttf │ │ │ ├── NotoSans-SemiCondensedLightItalic.woff │ │ │ ├── NotoSans-SemiCondensedLightItalic.woff2 │ │ │ ├── NotoSans-SemiCondensedMedium.ttf │ │ │ ├── NotoSans-SemiCondensedMedium.woff │ │ │ ├── NotoSans-SemiCondensedMedium.woff2 │ │ │ ├── NotoSans-SemiCondensedMediumItalic.ttf │ │ │ ├── NotoSans-SemiCondensedMediumItalic.woff │ │ │ ├── NotoSans-SemiCondensedMediumItalic.woff2 │ │ │ ├── NotoSans-SemiCondensedSemiBold.ttf │ │ │ ├── NotoSans-SemiCondensedSemiBold.woff │ │ │ ├── NotoSans-SemiCondensedSemiBold.woff2 │ │ │ ├── NotoSans-SemiCondensedSemiBoldItalic.ttf │ │ │ ├── NotoSans-SemiCondensedSemiBoldItalic.woff │ │ │ ├── NotoSans-SemiCondensedSemiBoldItalic.woff2 │ │ │ ├── NotoSans-SemiCondensedThin.ttf │ │ │ ├── NotoSans-SemiCondensedThin.woff │ │ │ ├── NotoSans-SemiCondensedThin.woff2 │ │ │ ├── NotoSans-SemiCondensedThinItalic.ttf │ │ │ ├── NotoSans-SemiCondensedThinItalic.woff │ │ │ ├── NotoSans-SemiCondensedThinItalic.woff2 │ │ │ ├── NotoSans-Thin.ttf │ │ │ ├── NotoSans-Thin.woff │ │ │ ├── NotoSans-Thin.woff2 │ │ │ ├── NotoSans-ThinItalic.ttf │ │ │ ├── NotoSans-ThinItalic.woff │ │ │ ├── NotoSans-ThinItalic.woff2 │ │ │ └── readme.md │ ├── icons │ │ └── favicon.ico │ ├── img │ │ ├── hero-header-image-1024.jpg │ │ ├── hero-header-image-1140.jpg │ │ ├── hero-header-image-2560.jpg │ │ ├── hero-header-image-3000.jpg │ │ ├── hero-header-image-425w.jpg │ │ ├── hero-header-image-768w.jpg │ │ ├── hero-header-image.png │ │ ├── orcid-og-image.png │ │ ├── organizations.jpg │ │ └── organizations.png │ ├── scripts │ │ └── latexParse.js │ ├── scss │ │ ├── grid.scss │ │ ├── index.js │ │ ├── material.light-theme.scss │ │ ├── material.orcid-theme.scss │ │ ├── material.orcid.overwrites.scss │ │ │ ├── _button-theme.scss │ │ │ ├── _card-theme.scss │ │ │ ├── _cdk-drag-drop-theme.scss │ │ │ ├── _divider-theme.scss │ │ │ ├── _form-field-theme.scss │ │ │ ├── _mat-error-theme.scss │ │ │ ├── _snackbar-theme.scss │ │ │ ├── button.scss │ │ │ ├── card.scss │ │ │ ├── cdk-drag-drop.scss │ │ │ ├── checkbox.scss │ │ │ ├── divider.scss │ │ │ ├── form-field-outline.scss │ │ │ ├── mde-popover.scss │ │ │ ├── menu.scss │ │ │ ├── paginator.scss │ │ │ ├── progress-spinner.scss │ │ │ ├── radio.scss │ │ │ ├── snackbar.scss │ │ │ ├── stepper.scss │ │ │ └── table.scss │ │ ├── material.palettes.scss │ │ ├── material.scss │ │ ├── material.typography.scss │ │ ├── noto-sans.scss │ │ ├── orcid-ui-theme.scss │ │ ├── orcid.scss │ │ ├── orcid.spacing.scss │ │ └── orcid │ │ │ ├── _divider-theme.scss │ │ │ ├── _urls-theme.scss │ │ │ ├── app-settings-panels-data.scss │ │ │ ├── divider.scss │ │ │ └── urls.scss │ └── vectors │ │ ├── bullet-point.svg │ │ ├── cc-zero.svg │ │ ├── check-window.svg │ │ ├── draggable.svg │ │ ├── email-unverfied-icon.svg │ │ ├── email-verified-icon.svg │ │ ├── facebook.svg │ │ ├── favicon.svg │ │ ├── featured-item-star-icon.svg │ │ ├── google.svg │ │ ├── helphero │ │ ├── HH-btn-arrow.svg │ │ ├── HH-record-ready.svg │ │ └── HH-verify-email.svg │ │ ├── institutional-access-no-background.svg │ │ ├── institutional-access.svg │ │ ├── institutional-generic-logo.svg │ │ ├── mat-baseline-check_circle.svg │ │ ├── mat-baseline-check_circle_outline.svg │ │ ├── no-results.svg │ │ ├── notification-button-active.svg │ │ ├── notification-button.svg │ │ ├── orcid.logo-deactivated.icon.svg │ │ ├── orcid.logo-deprecated.icon.svg │ │ ├── orcid.logo-locked.icon.svg │ │ ├── orcid.logo.background.svg │ │ ├── orcid.logo.black.icon.svg │ │ ├── orcid.logo.icon.svg │ │ ├── orcid.logo.svg │ │ ├── organization-no-logo.svg │ │ ├── personal-email-icon.svg │ │ ├── professional-email-icon.svg │ │ ├── profile-icon.svg │ │ ├── profile-not-verified.svg │ │ ├── registration-affiliation-icon.svg │ │ ├── social │ │ ├── Bluesky.svg │ │ ├── Facebook.svg │ │ ├── Github.svg │ │ ├── Linkedin.svg │ │ ├── Mastodon.svg │ │ ├── RSS.svg │ │ ├── Vimeo.svg │ │ └── Youtube.svg │ │ ├── thumbs-up.svg │ │ ├── translucent-arrow.svg │ │ ├── undefined-email-icon.svg │ │ ├── verified-outline-icon.svg │ │ ├── visibility-everyone.svg │ │ ├── visibility-everyone2.svg │ │ ├── visibility-only-me.svg │ │ ├── visibility-only-me2.jpg │ │ ├── visibility-trusted-source.svg │ │ └── visibility-trusted-source2.jpg ├── environments │ ├── environment.int.ts │ ├── environment.local.4200.ts │ ├── environment.local.dev.orcid.org.ts │ ├── environment.production.ts │ ├── environment.qa.ts │ ├── environment.sandbox.ts │ └── interface.d.ts ├── index.html ├── karma.conf.js ├── locale │ ├── i18n.pseudo.component.html │ ├── i18n.pseudo.component.ts │ ├── properties-mover.properties │ ├── properties-mover.py │ └── properties │ │ ├── account │ │ ├── account.ar.properties │ │ ├── account.cs.properties │ │ ├── account.de.properties │ │ ├── account.en.properties │ │ ├── account.es.properties │ │ ├── account.fr.properties │ │ ├── account.it.properties │ │ ├── account.ja.properties │ │ ├── account.ko.properties │ │ ├── account.lr.properties │ │ ├── account.pl.properties │ │ ├── account.pt.properties │ │ ├── account.rl.properties │ │ ├── account.ru.properties │ │ ├── account.tr.properties │ │ ├── account.xx.properties │ │ ├── account.zh_CN.properties │ │ └── account.zh_TW.properties │ │ ├── authorize │ │ ├── authorize.ar.properties │ │ ├── authorize.cs.properties │ │ ├── authorize.de.properties │ │ ├── authorize.en.properties │ │ ├── authorize.es.properties │ │ ├── authorize.fr.properties │ │ ├── authorize.it.properties │ │ ├── authorize.ja.properties │ │ ├── authorize.ko.properties │ │ ├── authorize.lr.properties │ │ ├── authorize.pl.properties │ │ ├── authorize.pt.properties │ │ ├── authorize.rl.properties │ │ ├── authorize.ru.properties │ │ ├── authorize.tr.properties │ │ ├── authorize.xx.properties │ │ ├── authorize.zh_CN.properties │ │ └── authorize.zh_TW.properties │ │ ├── delegators │ │ ├── delegators.ar.properties │ │ ├── delegators.cs.properties │ │ ├── delegators.de.properties │ │ ├── delegators.en.properties │ │ ├── delegators.es.properties │ │ ├── delegators.fr.properties │ │ ├── delegators.it.properties │ │ ├── delegators.ja.properties │ │ ├── delegators.ko.properties │ │ ├── delegators.lr.properties │ │ ├── delegators.pl.properties │ │ ├── delegators.pt.properties │ │ ├── delegators.rl.properties │ │ ├── delegators.ru.properties │ │ ├── delegators.tr.properties │ │ ├── delegators.xx.properties │ │ ├── delegators.zh_CN.properties │ │ └── delegators.zh_TW.properties │ │ ├── developer-tools │ │ ├── developer-tools.ar.properties │ │ ├── developer-tools.cs.properties │ │ ├── developer-tools.de.properties │ │ ├── developer-tools.en.properties │ │ ├── developer-tools.es.properties │ │ ├── developer-tools.fr.properties │ │ ├── developer-tools.it.properties │ │ ├── developer-tools.ja.properties │ │ ├── developer-tools.ko.properties │ │ ├── developer-tools.lr.properties │ │ ├── developer-tools.pl.properties │ │ ├── developer-tools.pt.properties │ │ ├── developer-tools.rl.properties │ │ ├── developer-tools.ru.properties │ │ ├── developer-tools.tr.properties │ │ ├── developer-tools.xx.properties │ │ ├── developer-tools.zh_CN.properties │ │ └── developer-tools.zh_TW.properties │ │ ├── environment-banner │ │ ├── environment-banner.ar.properties │ │ ├── environment-banner.cs.properties │ │ ├── environment-banner.de.properties │ │ ├── environment-banner.en.properties │ │ ├── environment-banner.es.properties │ │ ├── environment-banner.fr.properties │ │ ├── environment-banner.it.properties │ │ ├── environment-banner.ja.properties │ │ ├── environment-banner.ko.properties │ │ ├── environment-banner.lr.properties │ │ ├── environment-banner.pl.properties │ │ ├── environment-banner.pt.properties │ │ ├── environment-banner.rl.properties │ │ ├── environment-banner.ru.properties │ │ ├── environment-banner.tr.properties │ │ ├── environment-banner.xx.properties │ │ ├── environment-banner.zh_CN.properties │ │ └── environment-banner.zh_TW.properties │ │ ├── funding │ │ ├── funding.ar.properties │ │ ├── funding.cs.properties │ │ ├── funding.de.properties │ │ ├── funding.en.properties │ │ ├── funding.es.properties │ │ ├── funding.fr.properties │ │ ├── funding.it.properties │ │ ├── funding.ja.properties │ │ ├── funding.ko.properties │ │ ├── funding.lr.properties │ │ ├── funding.pl.properties │ │ ├── funding.pt.properties │ │ ├── funding.rl.properties │ │ ├── funding.ru.properties │ │ ├── funding.tr.properties │ │ ├── funding.xx.properties │ │ ├── funding.zh_CN.properties │ │ └── funding.zh_TW.properties │ │ ├── home │ │ ├── home.ar.properties │ │ ├── home.cs.properties │ │ ├── home.de.properties │ │ ├── home.en.properties │ │ ├── home.es.properties │ │ ├── home.fr.properties │ │ ├── home.it.properties │ │ ├── home.ja.properties │ │ ├── home.ko.properties │ │ ├── home.lr.properties │ │ ├── home.pl.properties │ │ ├── home.pt.properties │ │ ├── home.rl.properties │ │ ├── home.ru.properties │ │ ├── home.tr.properties │ │ ├── home.xx.properties │ │ ├── home.zh_CN.properties │ │ └── home.zh_TW.properties │ │ ├── inbox │ │ ├── inbox.ar.properties │ │ ├── inbox.cs.properties │ │ ├── inbox.de.properties │ │ ├── inbox.en.properties │ │ ├── inbox.es.properties │ │ ├── inbox.fr.properties │ │ ├── inbox.it.properties │ │ ├── inbox.ja.properties │ │ ├── inbox.ko.properties │ │ ├── inbox.lr.properties │ │ ├── inbox.pl.properties │ │ ├── inbox.pt.properties │ │ ├── inbox.rl.properties │ │ ├── inbox.ru.properties │ │ ├── inbox.tr.properties │ │ ├── inbox.xx.properties │ │ ├── inbox.zh_CN.properties │ │ └── inbox.zh_TW.properties │ │ ├── institutional │ │ ├── institutional.ar.properties │ │ ├── institutional.cs.properties │ │ ├── institutional.de.properties │ │ ├── institutional.en.properties │ │ ├── institutional.es.properties │ │ ├── institutional.fr.properties │ │ ├── institutional.it.properties │ │ ├── institutional.ja.properties │ │ ├── institutional.ko.properties │ │ ├── institutional.lr.properties │ │ ├── institutional.pl.properties │ │ ├── institutional.pt.properties │ │ ├── institutional.rl.properties │ │ ├── institutional.ru.properties │ │ ├── institutional.tr.properties │ │ ├── institutional.xx.properties │ │ ├── institutional.zh_CN.properties │ │ └── institutional.zh_TW.properties │ │ ├── interstitials │ │ ├── interstitials.ar.properties │ │ ├── interstitials.cs.properties │ │ ├── interstitials.de.properties │ │ ├── interstitials.en.properties │ │ ├── interstitials.es.properties │ │ ├── interstitials.fr.properties │ │ ├── interstitials.it.properties │ │ ├── interstitials.ja.properties │ │ ├── interstitials.ko.properties │ │ ├── interstitials.lr.properties │ │ ├── interstitials.pl.properties │ │ ├── interstitials.pt.properties │ │ ├── interstitials.rl.properties │ │ ├── interstitials.ru.properties │ │ ├── interstitials.tr.properties │ │ ├── interstitials.xx.properties │ │ ├── interstitials.zh_CN.properties │ │ └── interstitials.zh_TW.properties │ │ ├── layout │ │ ├── layout.ar.properties │ │ ├── layout.cs.properties │ │ ├── layout.de.properties │ │ ├── layout.en.properties │ │ ├── layout.es.properties │ │ ├── layout.fr.properties │ │ ├── layout.it.properties │ │ ├── layout.ja.properties │ │ ├── layout.ko.properties │ │ ├── layout.lr.properties │ │ ├── layout.pl.properties │ │ ├── layout.pt.properties │ │ ├── layout.rl.properties │ │ ├── layout.ru.properties │ │ ├── layout.tr.properties │ │ ├── layout.xx.properties │ │ ├── layout.zh_CN.properties │ │ └── layout.zh_TW.properties │ │ ├── linking │ │ ├── linking.ar.properties │ │ ├── linking.cs.properties │ │ ├── linking.de.properties │ │ ├── linking.en.properties │ │ ├── linking.es.properties │ │ ├── linking.fr.properties │ │ ├── linking.it.properties │ │ ├── linking.ja.properties │ │ ├── linking.ko.properties │ │ ├── linking.lr.properties │ │ ├── linking.pl.properties │ │ ├── linking.pt.properties │ │ ├── linking.rl.properties │ │ ├── linking.ru.properties │ │ ├── linking.tr.properties │ │ ├── linking.xx.properties │ │ ├── linking.zh_CN.properties │ │ └── linking.zh_TW.properties │ │ ├── material │ │ ├── material.ar.properties │ │ ├── material.cs.properties │ │ ├── material.de.properties │ │ ├── material.en.properties │ │ ├── material.es.properties │ │ ├── material.fr.properties │ │ ├── material.it.properties │ │ ├── material.ja.properties │ │ ├── material.ko.properties │ │ ├── material.lr.properties │ │ ├── material.pl.properties │ │ ├── material.pt.properties │ │ ├── material.rl.properties │ │ ├── material.ru.properties │ │ ├── material.tr.properties │ │ ├── material.xx.properties │ │ ├── material.zh_CN.properties │ │ └── material.zh_TW.properties │ │ ├── my-orcid-alerts │ │ ├── my-orcid-alerts.ar.properties │ │ ├── my-orcid-alerts.cs.properties │ │ ├── my-orcid-alerts.de.properties │ │ ├── my-orcid-alerts.en.properties │ │ ├── my-orcid-alerts.es.properties │ │ ├── my-orcid-alerts.fr.properties │ │ ├── my-orcid-alerts.it.properties │ │ ├── my-orcid-alerts.ja.properties │ │ ├── my-orcid-alerts.ko.properties │ │ ├── my-orcid-alerts.lr.properties │ │ ├── my-orcid-alerts.pl.properties │ │ ├── my-orcid-alerts.pt.properties │ │ ├── my-orcid-alerts.rl.properties │ │ ├── my-orcid-alerts.ru.properties │ │ ├── my-orcid-alerts.tr.properties │ │ ├── my-orcid-alerts.xx.properties │ │ ├── my-orcid-alerts.zh_CN.properties │ │ └── my-orcid-alerts.zh_TW.properties │ │ ├── password-recovery │ │ ├── password-recovery.ar.properties │ │ ├── password-recovery.cs.properties │ │ ├── password-recovery.de.properties │ │ ├── password-recovery.en.properties │ │ ├── password-recovery.es.properties │ │ ├── password-recovery.fr.properties │ │ ├── password-recovery.it.properties │ │ ├── password-recovery.ja.properties │ │ ├── password-recovery.ko.properties │ │ ├── password-recovery.lr.properties │ │ ├── password-recovery.pl.properties │ │ ├── password-recovery.pt.properties │ │ ├── password-recovery.rl.properties │ │ ├── password-recovery.ru.properties │ │ ├── password-recovery.tr.properties │ │ ├── password-recovery.xx.properties │ │ ├── password-recovery.zh_CN.properties │ │ └── password-recovery.zh_TW.properties │ │ ├── peer-review │ │ ├── peer-review.ar.properties │ │ ├── peer-review.cs.properties │ │ ├── peer-review.de.properties │ │ ├── peer-review.en.properties │ │ ├── peer-review.es.properties │ │ ├── peer-review.fr.properties │ │ ├── peer-review.it.properties │ │ ├── peer-review.ja.properties │ │ ├── peer-review.ko.properties │ │ ├── peer-review.lr.properties │ │ ├── peer-review.pl.properties │ │ ├── peer-review.pt.properties │ │ ├── peer-review.rl.properties │ │ ├── peer-review.ru.properties │ │ ├── peer-review.tr.properties │ │ ├── peer-review.xx.properties │ │ ├── peer-review.zh_CN.properties │ │ └── peer-review.zh_TW.properties │ │ ├── profile │ │ ├── profile.ar.properties │ │ ├── profile.cs.properties │ │ ├── profile.de.properties │ │ ├── profile.en.properties │ │ ├── profile.es.properties │ │ ├── profile.fr.properties │ │ ├── profile.it.properties │ │ ├── profile.ja.properties │ │ ├── profile.ko.properties │ │ ├── profile.lr.properties │ │ ├── profile.pl.properties │ │ ├── profile.pt.properties │ │ ├── profile.rl.properties │ │ ├── profile.ru.properties │ │ ├── profile.tr.properties │ │ ├── profile.xx.properties │ │ ├── profile.zh_CN.properties │ │ └── profile.zh_TW.properties │ │ ├── record │ │ ├── record.ar.properties │ │ ├── record.cs.properties │ │ ├── record.de.properties │ │ ├── record.en.properties │ │ ├── record.es.properties │ │ ├── record.fr.properties │ │ ├── record.it.properties │ │ ├── record.ja.properties │ │ ├── record.ko.properties │ │ ├── record.lr.properties │ │ ├── record.pl.properties │ │ ├── record.pt.properties │ │ ├── record.rl.properties │ │ ├── record.ru.properties │ │ ├── record.tr.properties │ │ ├── record.xx.properties │ │ ├── record.zh_CN.properties │ │ └── record.zh_TW.properties │ │ ├── register │ │ ├── register.ar.properties │ │ ├── register.cs.properties │ │ ├── register.de.properties │ │ ├── register.en.properties │ │ ├── register.es.properties │ │ ├── register.fr.properties │ │ ├── register.it.properties │ │ ├── register.ja.properties │ │ ├── register.ko.properties │ │ ├── register.lr.properties │ │ ├── register.pl.properties │ │ ├── register.pt.properties │ │ ├── register.rl.properties │ │ ├── register.ru.properties │ │ ├── register.tr.properties │ │ ├── register.xx.properties │ │ ├── register.zh_CN.properties │ │ └── register.zh_TW.properties │ │ ├── research-resources │ │ ├── research-resources.ar.properties │ │ ├── research-resources.cs.properties │ │ ├── research-resources.de.properties │ │ ├── research-resources.en.properties │ │ ├── research-resources.es.properties │ │ ├── research-resources.fr.properties │ │ ├── research-resources.it.properties │ │ ├── research-resources.ja.properties │ │ ├── research-resources.ko.properties │ │ ├── research-resources.lr.properties │ │ ├── research-resources.pl.properties │ │ ├── research-resources.pt.properties │ │ ├── research-resources.rl.properties │ │ ├── research-resources.ru.properties │ │ ├── research-resources.tr.properties │ │ ├── research-resources.xx.properties │ │ ├── research-resources.zh_CN.properties │ │ └── research-resources.zh_TW.properties │ │ ├── search │ │ ├── search.ar.properties │ │ ├── search.cs.properties │ │ ├── search.de.properties │ │ ├── search.en.properties │ │ ├── search.es.properties │ │ ├── search.fr.properties │ │ ├── search.it.properties │ │ ├── search.ja.properties │ │ ├── search.ko.properties │ │ ├── search.lr.properties │ │ ├── search.pl.properties │ │ ├── search.pt.properties │ │ ├── search.rl.properties │ │ ├── search.ru.properties │ │ ├── search.tr.properties │ │ ├── search.xx.properties │ │ ├── search.zh_CN.properties │ │ └── search.zh_TW.properties │ │ ├── shared │ │ ├── shared.ar.properties │ │ ├── shared.cs.properties │ │ ├── shared.de.properties │ │ ├── shared.en.properties │ │ ├── shared.es.properties │ │ ├── shared.fr.properties │ │ ├── shared.it.properties │ │ ├── shared.ja.properties │ │ ├── shared.ko.properties │ │ ├── shared.lr.properties │ │ ├── shared.pl.properties │ │ ├── shared.pt.properties │ │ ├── shared.rl.properties │ │ ├── shared.ru.properties │ │ ├── shared.tr.properties │ │ ├── shared.xx.properties │ │ ├── shared.zh_CN.properties │ │ └── shared.zh_TW.properties │ │ ├── side-bar │ │ ├── side-bar.ar.properties │ │ ├── side-bar.cs.properties │ │ ├── side-bar.de.properties │ │ ├── side-bar.en.properties │ │ ├── side-bar.es.properties │ │ ├── side-bar.fr.properties │ │ ├── side-bar.it.properties │ │ ├── side-bar.ja.properties │ │ ├── side-bar.ko.properties │ │ ├── side-bar.lr.properties │ │ ├── side-bar.pl.properties │ │ ├── side-bar.pt.properties │ │ ├── side-bar.rl.properties │ │ ├── side-bar.ru.properties │ │ ├── side-bar.tr.properties │ │ ├── side-bar.xx.properties │ │ ├── side-bar.zh_CN.properties │ │ └── side-bar.zh_TW.properties │ │ ├── signin │ │ ├── signin.ar.properties │ │ ├── signin.cs.properties │ │ ├── signin.de.properties │ │ ├── signin.en.properties │ │ ├── signin.es.properties │ │ ├── signin.fr.properties │ │ ├── signin.it.properties │ │ ├── signin.ja.properties │ │ ├── signin.ko.properties │ │ ├── signin.lr.properties │ │ ├── signin.pl.properties │ │ ├── signin.pt.properties │ │ ├── signin.rl.properties │ │ ├── signin.ru.properties │ │ ├── signin.tr.properties │ │ ├── signin.xx.properties │ │ ├── signin.zh_CN.properties │ │ └── signin.zh_TW.properties │ │ ├── summary │ │ ├── summary.ar.properties │ │ ├── summary.cs.properties │ │ ├── summary.de.properties │ │ ├── summary.en.properties │ │ ├── summary.es.properties │ │ ├── summary.fr.properties │ │ ├── summary.it.properties │ │ ├── summary.ja.properties │ │ ├── summary.ko.properties │ │ ├── summary.lr.properties │ │ ├── summary.pl.properties │ │ ├── summary.pt.properties │ │ ├── summary.rl.properties │ │ ├── summary.ru.properties │ │ ├── summary.tr.properties │ │ ├── summary.xx.properties │ │ ├── summary.zh_CN.properties │ │ └── summary.zh_TW.properties │ │ ├── top-bar │ │ ├── top-bar.ar.properties │ │ ├── top-bar.cs.properties │ │ ├── top-bar.de.properties │ │ ├── top-bar.en.properties │ │ ├── top-bar.es.properties │ │ ├── top-bar.fr.properties │ │ ├── top-bar.it.properties │ │ ├── top-bar.ja.properties │ │ ├── top-bar.ko.properties │ │ ├── top-bar.lr.properties │ │ ├── top-bar.pl.properties │ │ ├── top-bar.pt.properties │ │ ├── top-bar.rl.properties │ │ ├── top-bar.ru.properties │ │ ├── top-bar.tr.properties │ │ ├── top-bar.xx.properties │ │ ├── top-bar.zh_CN.properties │ │ └── top-bar.zh_TW.properties │ │ ├── two-factor │ │ ├── two-factor.ar.properties │ │ ├── two-factor.cs.properties │ │ ├── two-factor.de.properties │ │ ├── two-factor.en.properties │ │ ├── two-factor.es.properties │ │ ├── two-factor.fr.properties │ │ ├── two-factor.it.properties │ │ ├── two-factor.ja.properties │ │ ├── two-factor.ko.properties │ │ ├── two-factor.lr.properties │ │ ├── two-factor.pl.properties │ │ ├── two-factor.pt.properties │ │ ├── two-factor.rl.properties │ │ ├── two-factor.ru.properties │ │ ├── two-factor.tr.properties │ │ ├── two-factor.xx.properties │ │ ├── two-factor.zh_CN.properties │ │ └── two-factor.zh_TW.properties │ │ └── works │ │ ├── works.ar.properties │ │ ├── works.cs.properties │ │ ├── works.de.properties │ │ ├── works.en.properties │ │ ├── works.es.properties │ │ ├── works.fr.properties │ │ ├── works.it.properties │ │ ├── works.ja.properties │ │ ├── works.ko.properties │ │ ├── works.lr.properties │ │ ├── works.pl.properties │ │ ├── works.pt.properties │ │ ├── works.rl.properties │ │ ├── works.ru.properties │ │ ├── works.tr.properties │ │ ├── works.xx.properties │ │ ├── works.zh_CN.properties │ │ └── works.zh_TW.properties ├── main.ts ├── manifest.json ├── polyfills.ts ├── proxy.conf.qa.mjs ├── proxy.conf.sandbox.mjs ├── styles.scss ├── styles.scss-theme.scss ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── tslint.json ├── tsconfig.json ├── tslint.json └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | baseline widely available with downstream -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/scripts/pull_and_clean_properties.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/.github/scripts/pull_and_clean_properties.sh -------------------------------------------------------------------------------- /.github/workflows/bld_docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/.github/workflows/bld_docker.yml -------------------------------------------------------------------------------- /.github/workflows/bld_mvn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/.github/workflows/bld_mvn.yml -------------------------------------------------------------------------------- /.github/workflows/bld_test_rel_tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/.github/workflows/bld_test_rel_tag.yml -------------------------------------------------------------------------------- /.github/workflows/bld_yarn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/.github/workflows/bld_yarn.yml -------------------------------------------------------------------------------- /.github/workflows/commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/.github/workflows/commit.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-ui-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/.github/workflows/deploy-ui-docs.yml -------------------------------------------------------------------------------- /.github/workflows/format_i18n.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/.github/workflows/format_i18n.yml -------------------------------------------------------------------------------- /.github/workflows/format_prettier.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/.github/workflows/format_prettier.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/pull-and-clean-properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/.github/workflows/pull-and-clean-properties.yml -------------------------------------------------------------------------------- /.github/workflows/pushmain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/.github/workflows/pushmain.yml -------------------------------------------------------------------------------- /.github/workflows/rel_tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/.github/workflows/rel_tag.yml -------------------------------------------------------------------------------- /.github/workflows/sast.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/.github/workflows/sast.yml -------------------------------------------------------------------------------- /.github/workflows/test_yarn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/.github/workflows/test_yarn.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | node scripts/validate-commit-msg.husky.js "$1" 4 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/.prettierrc -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/.tool-versions -------------------------------------------------------------------------------- /.trello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/.trello -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/.tx/config -------------------------------------------------------------------------------- /.tx/config_20230220084312.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/.tx/config_20230220084312.bak -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/Dockerfile.build -------------------------------------------------------------------------------- /Dockerfile.build.yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/Dockerfile.build.yarn -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/README.md -------------------------------------------------------------------------------- /SUPPORTED_BROWSERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/SUPPORTED_BROWSERS.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/angular.json -------------------------------------------------------------------------------- /docker-compose.build.yarn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/docker-compose.build.yarn.yml -------------------------------------------------------------------------------- /docker-compose.build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/docker-compose.build.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /nginx/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/nginx/conf.d/default.conf -------------------------------------------------------------------------------- /ngsw-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/ngsw-config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/package.json -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/pom.xml -------------------------------------------------------------------------------- /projects/orcid-tokens/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-tokens/README.md -------------------------------------------------------------------------------- /projects/orcid-tokens/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-tokens/ng-package.json -------------------------------------------------------------------------------- /projects/orcid-tokens/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-tokens/package.json -------------------------------------------------------------------------------- /projects/orcid-tokens/src/lib/orcid-tokens.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-tokens/src/lib/orcid-tokens.spec.ts -------------------------------------------------------------------------------- /projects/orcid-tokens/src/lib/orcid-tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-tokens/src/lib/orcid-tokens.ts -------------------------------------------------------------------------------- /projects/orcid-tokens/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-tokens/src/public-api.ts -------------------------------------------------------------------------------- /projects/orcid-tokens/tokens.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-tokens/tokens.css -------------------------------------------------------------------------------- /projects/orcid-tokens/tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-tokens/tokens.json -------------------------------------------------------------------------------- /projects/orcid-tokens/tokens.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-tokens/tokens.scss -------------------------------------------------------------------------------- /projects/orcid-tokens/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-tokens/tsconfig.lib.json -------------------------------------------------------------------------------- /projects/orcid-tokens/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-tokens/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /projects/orcid-tokens/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-tokens/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/orcid-ui-docs/public/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui-docs/public/.nojekyll -------------------------------------------------------------------------------- /projects/orcid-ui-docs/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui-docs/public/favicon.ico -------------------------------------------------------------------------------- /projects/orcid-ui-docs/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui-docs/src/app/app.component.html -------------------------------------------------------------------------------- /projects/orcid-ui-docs/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/orcid-ui-docs/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui-docs/src/app/app.component.ts -------------------------------------------------------------------------------- /projects/orcid-ui-docs/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui-docs/src/app/app.config.ts -------------------------------------------------------------------------------- /projects/orcid-ui-docs/src/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui-docs/src/app/app.html -------------------------------------------------------------------------------- /projects/orcid-ui-docs/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui-docs/src/app/app.routes.ts -------------------------------------------------------------------------------- /projects/orcid-ui-docs/src/app/app.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui-docs/src/app/app.spec.ts -------------------------------------------------------------------------------- /projects/orcid-ui-docs/src/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui-docs/src/app/app.ts -------------------------------------------------------------------------------- /projects/orcid-ui-docs/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui-docs/src/index.html -------------------------------------------------------------------------------- /projects/orcid-ui-docs/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui-docs/src/main.ts -------------------------------------------------------------------------------- /projects/orcid-ui-docs/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui-docs/src/styles.scss -------------------------------------------------------------------------------- /projects/orcid-ui-docs/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui-docs/tsconfig.app.json -------------------------------------------------------------------------------- /projects/orcid-ui-docs/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui-docs/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/orcid-ui-elements/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui-elements/public/favicon.ico -------------------------------------------------------------------------------- /projects/orcid-ui-elements/src/app/app.component.html: -------------------------------------------------------------------------------- 1 |

app works!

2 | -------------------------------------------------------------------------------- /projects/orcid-ui-elements/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/orcid-ui-elements/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui-elements/src/app/app.component.ts -------------------------------------------------------------------------------- /projects/orcid-ui-elements/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui-elements/src/app/app.config.ts -------------------------------------------------------------------------------- /projects/orcid-ui-elements/src/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui-elements/src/app/app.html -------------------------------------------------------------------------------- /projects/orcid-ui-elements/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui-elements/src/app/app.routes.ts -------------------------------------------------------------------------------- /projects/orcid-ui-elements/src/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui-elements/src/app/app.ts -------------------------------------------------------------------------------- /projects/orcid-ui-elements/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui-elements/src/index.html -------------------------------------------------------------------------------- /projects/orcid-ui-elements/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui-elements/src/main.ts -------------------------------------------------------------------------------- /projects/orcid-ui-elements/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui-elements/src/styles.scss -------------------------------------------------------------------------------- /projects/orcid-ui-elements/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui-elements/tsconfig.app.json -------------------------------------------------------------------------------- /projects/orcid-ui-elements/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui-elements/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/orcid-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui/README.md -------------------------------------------------------------------------------- /projects/orcid-ui/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui/ng-package.json -------------------------------------------------------------------------------- /projects/orcid-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui/package.json -------------------------------------------------------------------------------- /projects/orcid-ui/src/lib/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui/src/lib/components/README.md -------------------------------------------------------------------------------- /projects/orcid-ui/src/lib/orcid-ui.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui/src/lib/orcid-ui.spec.ts -------------------------------------------------------------------------------- /projects/orcid-ui/src/lib/orcid-ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui/src/lib/orcid-ui.ts -------------------------------------------------------------------------------- /projects/orcid-ui/src/lib/themes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui/src/lib/themes/README.md -------------------------------------------------------------------------------- /projects/orcid-ui/src/lib/tokens/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui/src/lib/tokens/README.md -------------------------------------------------------------------------------- /projects/orcid-ui/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui/src/public-api.ts -------------------------------------------------------------------------------- /projects/orcid-ui/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui/tsconfig.lib.json -------------------------------------------------------------------------------- /projects/orcid-ui/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /projects/orcid-ui/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/projects/orcid-ui/tsconfig.spec.json -------------------------------------------------------------------------------- /reset-temp.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | rm -R temp 4 | 5 | -------------------------------------------------------------------------------- /scripts/browserlist.prebuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/scripts/browserlist.prebuild.ts -------------------------------------------------------------------------------- /scripts/build-info.postbuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/scripts/build-info.postbuild.ts -------------------------------------------------------------------------------- /scripts/check-focused-tests.husky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/scripts/check-focused-tests.husky.js -------------------------------------------------------------------------------- /scripts/cloneValues.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/environment.prebuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/scripts/environment.prebuild.ts -------------------------------------------------------------------------------- /scripts/fetch-combine-wordpress-css.prebuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/scripts/fetch-combine-wordpress-css.prebuild.ts -------------------------------------------------------------------------------- /scripts/moveToShareFolder.postbuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/scripts/moveToShareFolder.postbuild.ts -------------------------------------------------------------------------------- /scripts/new-relic.postbuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/scripts/new-relic.postbuild.ts -------------------------------------------------------------------------------- /scripts/new-relic.runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/scripts/new-relic.runtime.js -------------------------------------------------------------------------------- /scripts/onetrust.postbuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/scripts/onetrust.postbuild.ts -------------------------------------------------------------------------------- /scripts/onetrust.runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/scripts/onetrust.runtime.js -------------------------------------------------------------------------------- /scripts/postbuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/scripts/postbuild.ts -------------------------------------------------------------------------------- /scripts/properties-clone.postbuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/scripts/properties-clone.postbuild.ts -------------------------------------------------------------------------------- /scripts/properties-folder-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/scripts/properties-folder-manager.ts -------------------------------------------------------------------------------- /scripts/properties-test-generator.postbuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/scripts/properties-test-generator.postbuild.ts -------------------------------------------------------------------------------- /scripts/robots-metada.postbuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/scripts/robots-metada.postbuild.ts -------------------------------------------------------------------------------- /scripts/translate-file-generator.prebuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/scripts/translate-file-generator.prebuild.ts -------------------------------------------------------------------------------- /scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/scripts/tsconfig.json -------------------------------------------------------------------------------- /scripts/unique-length.postbuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/scripts/unique-length.postbuild.ts -------------------------------------------------------------------------------- /scripts/uniqueLanguageFilesNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/scripts/uniqueLanguageFilesNames.ts -------------------------------------------------------------------------------- /scripts/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/scripts/utils.ts -------------------------------------------------------------------------------- /scripts/validate-branch-name.husky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/scripts/validate-branch-name.husky.js -------------------------------------------------------------------------------- /scripts/validate-commit-msg.husky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/scripts/validate-commit-msg.husky.js -------------------------------------------------------------------------------- /scripts/zend-desk.postbuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/scripts/zend-desk.postbuild.ts -------------------------------------------------------------------------------- /settings-custom-deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/settings-custom-deploy.xml -------------------------------------------------------------------------------- /settings-custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/settings-custom.xml -------------------------------------------------------------------------------- /settings-deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/settings-deploy.xml -------------------------------------------------------------------------------- /shellkit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/shellkit.conf -------------------------------------------------------------------------------- /shellkit_bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/shellkit_bootstrap.sh -------------------------------------------------------------------------------- /src/app/account-settings/account-settings.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/account-settings/account-settings.module.ts -------------------------------------------------------------------------------- /src/app/account-settings/components/dialog-actions-duplicated-merged-confirmed/dialog-actions-duplicated-merged-confirmed.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/account-settings/components/dialog-actions-duplicated-two-factor-auth/dialog-actions-duplicated-two-factor-auth.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/account-settings/components/dialog-security-alternate-account-delete/dialog-security-alternate-account-delete.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/account-settings/components/settings-actions/settings-actions.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/account-settings/components/settings-security-two-factor-auth/settings-security-two-factor-auth.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/account-settings/components/settings-security/settings-security.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/account-settings/components/settings-sharing/settings-sharing.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/account-trusted-parties/components/dialog-add-trusted-individuals-your-own-email/dialog-add-trusted-individuals-your-own-email.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/account-trusted-parties/components/settings-trusted-organization/settings-trusted-organization.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/analytics-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/analytics-utils.ts -------------------------------------------------------------------------------- /src/app/animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/animations.ts -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/app.component.scss -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/authorize/authorize-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/authorize/authorize-routing.module.ts -------------------------------------------------------------------------------- /src/app/authorize/authorize.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/authorize/authorize.module.ts -------------------------------------------------------------------------------- /src/app/cdk/a11y-link/a11y-link.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/a11y-link/a11y-link.directive.spec.ts -------------------------------------------------------------------------------- /src/app/cdk/a11y-link/a11y-link.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/a11y-link/a11y-link.directive.ts -------------------------------------------------------------------------------- /src/app/cdk/a11y-link/a11y-link.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/a11y-link/a11y-link.module.ts -------------------------------------------------------------------------------- /src/app/cdk/account-panel/account-panel.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/account-panel/account-panel.module.ts -------------------------------------------------------------------------------- /src/app/cdk/alert-message/alert-message.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/alert-message/alert-message.module.ts -------------------------------------------------------------------------------- /src/app/cdk/banner/banner.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/banner/banner.component.html -------------------------------------------------------------------------------- /src/app/cdk/banner/banner.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/banner/banner.component.scss -------------------------------------------------------------------------------- /src/app/cdk/banner/banner.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/banner/banner.component.spec.ts -------------------------------------------------------------------------------- /src/app/cdk/banner/banner.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/banner/banner.component.ts -------------------------------------------------------------------------------- /src/app/cdk/banner/banner.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/banner/banner.module.ts -------------------------------------------------------------------------------- /src/app/cdk/form-directives/trim.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/form-directives/trim.directive.spec.ts -------------------------------------------------------------------------------- /src/app/cdk/form-directives/trim.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/form-directives/trim.directive.ts -------------------------------------------------------------------------------- /src/app/cdk/info-drop-down/info-drop-down.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/info-drop-down/info-drop-down.module.ts -------------------------------------------------------------------------------- /src/app/cdk/info-panel/info-panel.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/info-panel/info-panel.module.ts -------------------------------------------------------------------------------- /src/app/cdk/interstitials/interstitial.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/interstitials/interstitial.type.ts -------------------------------------------------------------------------------- /src/app/cdk/interstitials/interstitials.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/interstitials/interstitials.module.ts -------------------------------------------------------------------------------- /src/app/cdk/interstitials/interstitials.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/interstitials/interstitials.service.ts -------------------------------------------------------------------------------- /src/app/cdk/is-this-you/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/is-this-you/index.ts -------------------------------------------------------------------------------- /src/app/cdk/is-this-you/is-this-you.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/is-this-you/is-this-you.component.html -------------------------------------------------------------------------------- /src/app/cdk/is-this-you/is-this-you.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/is-this-you/is-this-you.component.scss -------------------------------------------------------------------------------- /src/app/cdk/is-this-you/is-this-you.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/is-this-you/is-this-you.component.ts -------------------------------------------------------------------------------- /src/app/cdk/is-this-you/is-this-you.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/is-this-you/is-this-you.module.ts -------------------------------------------------------------------------------- /src/app/cdk/modal/modal.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/modal/modal.module.ts -------------------------------------------------------------------------------- /src/app/cdk/modal/modal/modal.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/modal/modal/modal.component.html -------------------------------------------------------------------------------- /src/app/cdk/modal/modal/modal.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/modal/modal/modal.component.scss -------------------------------------------------------------------------------- /src/app/cdk/modal/modal/modal.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/modal/modal/modal.component.spec.ts -------------------------------------------------------------------------------- /src/app/cdk/modal/modal/modal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/modal/modal/modal.component.ts -------------------------------------------------------------------------------- /src/app/cdk/panel/panel.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/panel/panel.module.ts -------------------------------------------------------------------------------- /src/app/cdk/panel/panel/panel.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/panel/panel/panel.component.html -------------------------------------------------------------------------------- /src/app/cdk/panel/panel/panel.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/panel/panel/panel.component.scss -------------------------------------------------------------------------------- /src/app/cdk/panel/panel/panel.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/panel/panel/panel.component.spec.ts -------------------------------------------------------------------------------- /src/app/cdk/panel/panel/panel.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/panel/panel/panel.component.ts -------------------------------------------------------------------------------- /src/app/cdk/panel/panels/panels.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/panel/panels/panels.component.html -------------------------------------------------------------------------------- /src/app/cdk/panel/panels/panels.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/panel/panels/panels.component.scss -------------------------------------------------------------------------------- /src/app/cdk/panel/panels/panels.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/panel/panels/panels.component.spec.ts -------------------------------------------------------------------------------- /src/app/cdk/panel/panels/panels.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/panel/panels/panels.component.ts -------------------------------------------------------------------------------- /src/app/cdk/panel/sort-label.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/panel/sort-label.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/cdk/panel/sort-label.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/panel/sort-label.pipe.ts -------------------------------------------------------------------------------- /src/app/cdk/platform-info/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/platform-info/index.ts -------------------------------------------------------------------------------- /src/app/cdk/platform-info/platform-info.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/platform-info/platform-info.module.ts -------------------------------------------------------------------------------- /src/app/cdk/platform-info/platform-info.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/platform-info/platform-info.service.ts -------------------------------------------------------------------------------- /src/app/cdk/platform-info/platform-info.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/platform-info/platform-info.type.ts -------------------------------------------------------------------------------- /src/app/cdk/platform-info/supported-browsers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/platform-info/supported-browsers.json -------------------------------------------------------------------------------- /src/app/cdk/popover/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/popover/README.md -------------------------------------------------------------------------------- /src/app/cdk/popover/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api' 2 | -------------------------------------------------------------------------------- /src/app/cdk/popover/popover-animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/popover/popover-animations.ts -------------------------------------------------------------------------------- /src/app/cdk/popover/popover-errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/popover/popover-errors.ts -------------------------------------------------------------------------------- /src/app/cdk/popover/popover-interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/popover/popover-interfaces.ts -------------------------------------------------------------------------------- /src/app/cdk/popover/popover-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/popover/popover-module.ts -------------------------------------------------------------------------------- /src/app/cdk/popover/popover-target.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/popover/popover-target.ts -------------------------------------------------------------------------------- /src/app/cdk/popover/popover-trigger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/popover/popover-trigger.ts -------------------------------------------------------------------------------- /src/app/cdk/popover/popover-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/popover/popover-types.ts -------------------------------------------------------------------------------- /src/app/cdk/popover/popover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/popover/popover.html -------------------------------------------------------------------------------- /src/app/cdk/popover/popover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/popover/popover.md -------------------------------------------------------------------------------- /src/app/cdk/popover/popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/popover/popover.scss -------------------------------------------------------------------------------- /src/app/cdk/popover/popover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/popover/popover.ts -------------------------------------------------------------------------------- /src/app/cdk/popover/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/popover/public-api.ts -------------------------------------------------------------------------------- /src/app/cdk/recaptcha/recaptcha.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/recaptcha/recaptcha.directive.spec.ts -------------------------------------------------------------------------------- /src/app/cdk/recaptcha/recaptcha.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/recaptcha/recaptcha.directive.ts -------------------------------------------------------------------------------- /src/app/cdk/recaptcha/recaptcha.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/recaptcha/recaptcha.module.ts -------------------------------------------------------------------------------- /src/app/cdk/side-bar/modals/source-hit/source-hit.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/cdk/side-bar/side-bar.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/side-bar/side-bar.module.ts -------------------------------------------------------------------------------- /src/app/cdk/side-bar/side-bar/side-bar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/side-bar/side-bar/side-bar.component.ts -------------------------------------------------------------------------------- /src/app/cdk/snackbar/snackbar.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/snackbar/snackbar.module.ts -------------------------------------------------------------------------------- /src/app/cdk/snackbar/snackbar.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/snackbar/snackbar.service.spec.ts -------------------------------------------------------------------------------- /src/app/cdk/snackbar/snackbar.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/snackbar/snackbar.service.ts -------------------------------------------------------------------------------- /src/app/cdk/snackbar/snackbar/snackbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/snackbar/snackbar/snackbar.component.ts -------------------------------------------------------------------------------- /src/app/cdk/window/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/window/index.ts -------------------------------------------------------------------------------- /src/app/cdk/window/window.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/window/window.module.ts -------------------------------------------------------------------------------- /src/app/cdk/window/window.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/cdk/window/window.service.ts -------------------------------------------------------------------------------- /src/app/constants-country-codes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/constants-country-codes.ts -------------------------------------------------------------------------------- /src/app/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/constants.ts -------------------------------------------------------------------------------- /src/app/core/announcer/announcer.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/announcer/announcer.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/announcer/announcer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/announcer/announcer.service.ts -------------------------------------------------------------------------------- /src/app/core/auth-decision/auth-decision.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/auth-decision/auth-decision.service.ts -------------------------------------------------------------------------------- /src/app/core/canonocal-url/canonocal-url.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/canonocal-url/canonocal-url.service.ts -------------------------------------------------------------------------------- /src/app/core/core.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/core.module.spec.ts -------------------------------------------------------------------------------- /src/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/core.module.ts -------------------------------------------------------------------------------- /src/app/core/crazy-egg/script.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/crazy-egg/script.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/crazy-egg/script.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/crazy-egg/script.service.ts -------------------------------------------------------------------------------- /src/app/core/custom-encoder/custom.encoder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/custom-encoder/custom.encoder.ts -------------------------------------------------------------------------------- /src/app/core/disco/disco.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/disco/disco.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/disco/disco.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/disco/disco.service.ts -------------------------------------------------------------------------------- /src/app/core/error-handler/error-handler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/error-handler/error-handler.service.ts -------------------------------------------------------------------------------- /src/app/core/help-hero/help-hero.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/help-hero/help-hero.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/help-hero/help-hero.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/help-hero/help-hero.service.ts -------------------------------------------------------------------------------- /src/app/core/inbox/inbox.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/inbox/inbox.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/inbox/inbox.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/inbox/inbox.service.ts -------------------------------------------------------------------------------- /src/app/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/index.ts -------------------------------------------------------------------------------- /src/app/core/language/language.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/language/language.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/language/language.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/language/language.service.ts -------------------------------------------------------------------------------- /src/app/core/logging/feature-logger.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/logging/feature-logger.service.ts -------------------------------------------------------------------------------- /src/app/core/new-relic/new-relic.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/new-relic/new-relic.service.ts -------------------------------------------------------------------------------- /src/app/core/news/news.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/news/news.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/news/news.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/news/news.service.ts -------------------------------------------------------------------------------- /src/app/core/oauth/oauth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/oauth/oauth.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/oauth/oauth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/oauth/oauth.service.ts -------------------------------------------------------------------------------- /src/app/core/oauth/organizations.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/oauth/organizations.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/open-graph/open-graph.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/open-graph/open-graph.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/open-graph/open-graph.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/open-graph/open-graph.service.ts -------------------------------------------------------------------------------- /src/app/core/organizations/organizations.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/organizations/organizations.service.ts -------------------------------------------------------------------------------- /src/app/core/paginator/matPaginator.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/paginator/matPaginator.service.ts -------------------------------------------------------------------------------- /src/app/core/qa-flag/qa-flag.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/qa-flag/qa-flag.service.ts -------------------------------------------------------------------------------- /src/app/core/qa-flag/qa-flags.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/qa-flag/qa-flags.enum.ts -------------------------------------------------------------------------------- /src/app/core/reactivation/reactivation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/reactivation/reactivation.service.ts -------------------------------------------------------------------------------- /src/app/core/record-emails/record-emails.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/record-emails/record-emails.service.ts -------------------------------------------------------------------------------- /src/app/core/record-names/record-names.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/record-names/record-names.service.ts -------------------------------------------------------------------------------- /src/app/core/record-person/record-person.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/record-person/record-person.service.ts -------------------------------------------------------------------------------- /src/app/core/record-works/record-works.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/record-works/record-works.service.ts -------------------------------------------------------------------------------- /src/app/core/record/record.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/record/record.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/record/record.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/record/record.service.ts -------------------------------------------------------------------------------- /src/app/core/register/register.form-adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/register/register.form-adapter.ts -------------------------------------------------------------------------------- /src/app/core/register/register.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/register/register.service.ts -------------------------------------------------------------------------------- /src/app/core/search/search.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/search/search.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/search/search.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/search/search.service.ts -------------------------------------------------------------------------------- /src/app/core/sign-in/sign-in.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/sign-in/sign-in.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/sign-in/sign-in.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/sign-in/sign-in.service.ts -------------------------------------------------------------------------------- /src/app/core/title-service/title.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/title-service/title.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/title-service/title.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/title-service/title.service.ts -------------------------------------------------------------------------------- /src/app/core/togglz/togglz-flags.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/togglz/togglz-flags.enum.ts -------------------------------------------------------------------------------- /src/app/core/togglz/togglz.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/togglz/togglz.directive.spec.ts -------------------------------------------------------------------------------- /src/app/core/togglz/togglz.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/togglz/togglz.directive.ts -------------------------------------------------------------------------------- /src/app/core/togglz/togglz.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/togglz/togglz.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/togglz/togglz.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/togglz/togglz.service.ts -------------------------------------------------------------------------------- /src/app/core/user-info/user-info.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/user-info/user-info.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/user-info/user-info.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/user-info/user-info.service.ts -------------------------------------------------------------------------------- /src/app/core/user/user.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/user/user.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/user/user.service.ts -------------------------------------------------------------------------------- /src/app/core/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/utils.ts -------------------------------------------------------------------------------- /src/app/core/wordpress/wordpress.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/wordpress/wordpress.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/wordpress/wordpress.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/wordpress/wordpress.service.ts -------------------------------------------------------------------------------- /src/app/core/zendesk/zendesk.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/zendesk/zendesk.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/zendesk/zendesk.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/core/zendesk/zendesk.service.ts -------------------------------------------------------------------------------- /src/app/developer-tools/components/client-secret-modal/client-secret-modal.component.scss: -------------------------------------------------------------------------------- 1 | strong { 2 | margin-top: 16px; 3 | display: block; 4 | } 5 | -------------------------------------------------------------------------------- /src/app/developer-tools/developer-tools.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/developer-tools/developer-tools.module.ts -------------------------------------------------------------------------------- /src/app/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/errors.ts -------------------------------------------------------------------------------- /src/app/guards/authenticated-no-delagator.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/guards/authenticated-no-delagator.guard.ts -------------------------------------------------------------------------------- /src/app/guards/authenticated.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/guards/authenticated.guard.spec.ts -------------------------------------------------------------------------------- /src/app/guards/authenticated.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/guards/authenticated.guard.ts -------------------------------------------------------------------------------- /src/app/guards/authorize.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/guards/authorize.guard.spec.ts -------------------------------------------------------------------------------- /src/app/guards/authorize.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/guards/authorize.guard.ts -------------------------------------------------------------------------------- /src/app/guards/deactivation.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/guards/deactivation.guard.spec.ts -------------------------------------------------------------------------------- /src/app/guards/deactivation.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/guards/deactivation.guard.ts -------------------------------------------------------------------------------- /src/app/guards/language.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/guards/language.guard.ts -------------------------------------------------------------------------------- /src/app/guards/link-account.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/guards/link-account.guard.spec.ts -------------------------------------------------------------------------------- /src/app/guards/link-account.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/guards/link-account.guard.ts -------------------------------------------------------------------------------- /src/app/guards/register.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/guards/register.guard.ts -------------------------------------------------------------------------------- /src/app/guards/register.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/guards/register.spec.ts -------------------------------------------------------------------------------- /src/app/guards/sign-in.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/guards/sign-in.guard.spec.ts -------------------------------------------------------------------------------- /src/app/guards/sign-in.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/guards/sign-in.guard.ts -------------------------------------------------------------------------------- /src/app/guards/two-factor-signin.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/guards/two-factor-signin.guard.spec.ts -------------------------------------------------------------------------------- /src/app/guards/two-factor-signin.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/guards/two-factor-signin.guard.ts -------------------------------------------------------------------------------- /src/app/home/components/news/news.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/home/components/news/news.component.html -------------------------------------------------------------------------------- /src/app/home/components/news/news.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/home/components/news/news.component.scss -------------------------------------------------------------------------------- /src/app/home/components/news/news.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/home/components/news/news.component.spec.ts -------------------------------------------------------------------------------- /src/app/home/components/news/news.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/home/components/news/news.component.ts -------------------------------------------------------------------------------- /src/app/home/home-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/home/home-routing.module.ts -------------------------------------------------------------------------------- /src/app/home/home.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/home/home.module.spec.ts -------------------------------------------------------------------------------- /src/app/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/home/home.module.ts -------------------------------------------------------------------------------- /src/app/home/pages/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/home/pages/home/home.component.html -------------------------------------------------------------------------------- /src/app/home/pages/home/home.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/home/pages/home/home.component.scss -------------------------------------------------------------------------------- /src/app/home/pages/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/home/pages/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/app/home/pages/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/home/pages/home/home.component.ts -------------------------------------------------------------------------------- /src/app/home/pages/home/wordpress-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/home/pages/home/wordpress-styles.scss -------------------------------------------------------------------------------- /src/app/inbox/inbox-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/inbox/inbox-routing.module.ts -------------------------------------------------------------------------------- /src/app/inbox/inbox.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/inbox/inbox.module.ts -------------------------------------------------------------------------------- /src/app/inbox/pages/inbox/inbox.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/inbox/pages/inbox/inbox.component.html -------------------------------------------------------------------------------- /src/app/inbox/pages/inbox/inbox.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/inbox/pages/inbox/inbox.component.scss -------------------------------------------------------------------------------- /src/app/inbox/pages/inbox/inbox.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/inbox/pages/inbox/inbox.component.spec.ts -------------------------------------------------------------------------------- /src/app/inbox/pages/inbox/inbox.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/inbox/pages/inbox/inbox.component.ts -------------------------------------------------------------------------------- /src/app/institutional/institutional.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/institutional/institutional.module.ts -------------------------------------------------------------------------------- /src/app/layout/banners/banners.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/banners/banners.component.html -------------------------------------------------------------------------------- /src/app/layout/banners/banners.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/layout/banners/banners.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/banners/banners.component.spec.ts -------------------------------------------------------------------------------- /src/app/layout/banners/banners.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/banners/banners.component.ts -------------------------------------------------------------------------------- /src/app/layout/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/footer/footer.component.html -------------------------------------------------------------------------------- /src/app/layout/footer/footer.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/footer/footer.component.scss -------------------------------------------------------------------------------- /src/app/layout/footer/footer.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/footer/footer.component.spec.ts -------------------------------------------------------------------------------- /src/app/layout/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/footer/footer.component.ts -------------------------------------------------------------------------------- /src/app/layout/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/header/header.component.html -------------------------------------------------------------------------------- /src/app/layout/header/header.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/header/header.component.scss -------------------------------------------------------------------------------- /src/app/layout/header/header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/header/header.component.spec.ts -------------------------------------------------------------------------------- /src/app/layout/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/header/header.component.ts -------------------------------------------------------------------------------- /src/app/layout/header/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/header/menu.ts -------------------------------------------------------------------------------- /src/app/layout/language/language.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/language/language.component.html -------------------------------------------------------------------------------- /src/app/layout/language/language.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/language/language.component.scss -------------------------------------------------------------------------------- /src/app/layout/language/language.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/language/language.component.spec.ts -------------------------------------------------------------------------------- /src/app/layout/language/language.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/language/language.component.ts -------------------------------------------------------------------------------- /src/app/layout/layout.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/layout.module.spec.ts -------------------------------------------------------------------------------- /src/app/layout/layout.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/layout.module.ts -------------------------------------------------------------------------------- /src/app/layout/menu-icon/menu-icon.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/menu-icon/menu-icon.component.html -------------------------------------------------------------------------------- /src/app/layout/menu-icon/menu-icon.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/menu-icon/menu-icon.component.scss -------------------------------------------------------------------------------- /src/app/layout/menu-icon/menu-icon.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/menu-icon/menu-icon.component.ts -------------------------------------------------------------------------------- /src/app/layout/search/search.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/search/search.component.html -------------------------------------------------------------------------------- /src/app/layout/search/search.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/search/search.component.scss -------------------------------------------------------------------------------- /src/app/layout/search/search.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/search/search.component.spec.ts -------------------------------------------------------------------------------- /src/app/layout/search/search.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/search/search.component.ts -------------------------------------------------------------------------------- /src/app/layout/statistics/statistics.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/statistics/statistics.component.html -------------------------------------------------------------------------------- /src/app/layout/statistics/statistics.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/statistics/statistics.component.scss -------------------------------------------------------------------------------- /src/app/layout/statistics/statistics.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/statistics/statistics.component.ts -------------------------------------------------------------------------------- /src/app/layout/user-menu/user-menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/user-menu/user-menu.component.html -------------------------------------------------------------------------------- /src/app/layout/user-menu/user-menu.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/user-menu/user-menu.component.scss -------------------------------------------------------------------------------- /src/app/layout/user-menu/user-menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/layout/user-menu/user-menu.component.ts -------------------------------------------------------------------------------- /src/app/link-account/link-account-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/link-account/link-account-routing.module.ts -------------------------------------------------------------------------------- /src/app/link-account/link-account.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/link-account/link-account.module.ts -------------------------------------------------------------------------------- /src/app/local-flags.help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/local-flags.help.ts -------------------------------------------------------------------------------- /src/app/page-not-found-404/page-not-found/page-not-found.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/record/components/affiliation/affiliation.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/record/components/display-external-ids/display-external-ids.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/record/components/main/main.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/record/components/main/main.component.html -------------------------------------------------------------------------------- /src/app/record/components/main/main.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/record/components/main/main.component.scss -------------------------------------------------------------------------------- /src/app/record/components/main/main.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/record/components/main/main.component.ts -------------------------------------------------------------------------------- /src/app/record/components/org-identifier/org-identifier.component.scss: -------------------------------------------------------------------------------- 1 | a { 2 | display: inline-block; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/record/components/record-edit-button/record-edit-button.component.scss: -------------------------------------------------------------------------------- 1 | .edit-record-button { 2 | height: 48px; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/record/components/search-link-wizard/search-link-wizard.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/record/components/work/work.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/record/components/work/work.component.html -------------------------------------------------------------------------------- /src/app/record/components/work/work.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/record/components/work/work.component.scss -------------------------------------------------------------------------------- /src/app/record/components/work/work.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/record/components/work/work.component.ts -------------------------------------------------------------------------------- /src/app/record/pages/my-orcid/my-orcid.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/record/pages/my-orcid/my-orcid.component.ts -------------------------------------------------------------------------------- /src/app/record/pages/my-orcid/test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/record/record-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/record/record-routing.module.ts -------------------------------------------------------------------------------- /src/app/record/record.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/record/record.module.ts -------------------------------------------------------------------------------- /src/app/register/components/BaseForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/register/components/BaseForm.ts -------------------------------------------------------------------------------- /src/app/register/components/BaseStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/register/components/BaseStep.ts -------------------------------------------------------------------------------- /src/app/register/components/backend-error/backend-error.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/register/components/register.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/register/components/register.style.scss -------------------------------------------------------------------------------- /src/app/register/components/step-c/step-c.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/register/components/step-c/step-c.spec.ts -------------------------------------------------------------------------------- /src/app/register/components/step-c2/step-c2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/register/components/step-c2/step-c2.spec.ts -------------------------------------------------------------------------------- /src/app/register/register-observability.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/register/register-observability.service.ts -------------------------------------------------------------------------------- /src/app/register/register-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/register/register-routing.module.ts -------------------------------------------------------------------------------- /src/app/register/register-state.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/register/register-state.service.spec.ts -------------------------------------------------------------------------------- /src/app/register/register-state.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/register/register-state.service.ts -------------------------------------------------------------------------------- /src/app/register/register.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/register/register.module.ts -------------------------------------------------------------------------------- /src/app/reset-password/reset-password.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/reset-password/reset-password.module.ts -------------------------------------------------------------------------------- /src/app/rum/journeys/oauthAuthorization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/rum/journeys/oauthAuthorization.ts -------------------------------------------------------------------------------- /src/app/rum/journeys/orcidNotifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/rum/journeys/orcidNotifications.ts -------------------------------------------------------------------------------- /src/app/rum/journeys/orcidRegistration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/rum/journeys/orcidRegistration.ts -------------------------------------------------------------------------------- /src/app/rum/journeys/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/rum/journeys/types.ts -------------------------------------------------------------------------------- /src/app/rum/service/customEvent.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/rum/service/customEvent.service.spec.ts -------------------------------------------------------------------------------- /src/app/rum/service/customEvent.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/rum/service/customEvent.service.ts -------------------------------------------------------------------------------- /src/app/search/pages/search/search.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/search/pages/search/search.component.html -------------------------------------------------------------------------------- /src/app/search/pages/search/search.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/search/pages/search/search.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/search/pages/search/search.component.ts -------------------------------------------------------------------------------- /src/app/search/search-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/search/search-routing.module.ts -------------------------------------------------------------------------------- /src/app/search/search.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/search/search.module.ts -------------------------------------------------------------------------------- /src/app/self-service/self-service-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/self-service/self-service-routing.module.ts -------------------------------------------------------------------------------- /src/app/self-service/self-service.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/self-service/self-service.module.ts -------------------------------------------------------------------------------- /src/app/shared/components/copy-on-click/copy-on-click.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | display: flex; 3 | justify-content: space-around; 4 | } 5 | -------------------------------------------------------------------------------- /src/app/shared/pipes/affiliation-label.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/shared/pipes/affiliation-label.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/shared/pipes/affiliation-label.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/shared/pipes/affiliation-label.pipe.ts -------------------------------------------------------------------------------- /src/app/shared/pipes/is-url/is-url.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/shared/pipes/is-url/is-url.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/shared/pipes/is-url/is-url.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/shared/pipes/is-url/is-url.pipe.ts -------------------------------------------------------------------------------- /src/app/shared/pipes/safe-html/safe-html.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/shared/pipes/safe-html/safe-html.pipe.ts -------------------------------------------------------------------------------- /src/app/shared/pipes/sort-by/sort-by.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/shared/pipes/sort-by/sort-by.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/shared/pipes/sort-by/sort-by.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/shared/pipes/sort-by/sort-by.pipe.ts -------------------------------------------------------------------------------- /src/app/shared/shared.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/shared/shared.module.spec.ts -------------------------------------------------------------------------------- /src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /src/app/shared/utils/record.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/shared/utils/record.util.ts -------------------------------------------------------------------------------- /src/app/shared/validators/date/date.validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/shared/validators/date/date.validator.ts -------------------------------------------------------------------------------- /src/app/sign-in/components/sign-in.scss-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/sign-in/components/sign-in.scss-theme.scss -------------------------------------------------------------------------------- /src/app/sign-in/components/sign-in.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/sign-in/components/sign-in.style.scss -------------------------------------------------------------------------------- /src/app/sign-in/pages/sign-in/sign-in.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/sign-in/pages/sign-in/sign-in.component.ts -------------------------------------------------------------------------------- /src/app/sign-in/sign-in-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/sign-in/sign-in-routing.module.ts -------------------------------------------------------------------------------- /src/app/sign-in/sign-in.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/sign-in/sign-in.module.ts -------------------------------------------------------------------------------- /src/app/trusted-summary/trusted-summary.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/trusted-summary/trusted-summary.module.ts -------------------------------------------------------------------------------- /src/app/two-factor-setup/two-factor-setup.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/two-factor-setup/two-factor-setup.module.ts -------------------------------------------------------------------------------- /src/app/two-factor/two-factor-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/two-factor/two-factor-routing.module.ts -------------------------------------------------------------------------------- /src/app/two-factor/two-factor.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/two-factor/two-factor.module.ts -------------------------------------------------------------------------------- /src/app/types/account-actions-duplicated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/account-actions-duplicated.ts -------------------------------------------------------------------------------- /src/app/types/account-alternate-sign-in.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/account-alternate-sign-in.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/account-settings-password.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/account-settings-password.ts -------------------------------------------------------------------------------- /src/app/types/account-trusted-individuals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/account-trusted-individuals.ts -------------------------------------------------------------------------------- /src/app/types/account-trusted-organizations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/account-trusted-organizations.ts -------------------------------------------------------------------------------- /src/app/types/authorize.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/authorize.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/claim.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/claim.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/common.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/common.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/constructor.local.ts: -------------------------------------------------------------------------------- 1 | export type Constructor = new (...args: any[]) => T 2 | -------------------------------------------------------------------------------- /src/app/types/developer-tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/developer-tools.ts -------------------------------------------------------------------------------- /src/app/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/index.ts -------------------------------------------------------------------------------- /src/app/types/institutional.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/institutional.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/item_gtm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/item_gtm.ts -------------------------------------------------------------------------------- /src/app/types/language.locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/language.locale.ts -------------------------------------------------------------------------------- /src/app/types/locale.scripts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/locale.scripts.ts -------------------------------------------------------------------------------- /src/app/types/menu.local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/menu.local.ts -------------------------------------------------------------------------------- /src/app/types/nameForm.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/nameForm.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/notifications.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/notifications.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/notifications.local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/notifications.local.ts -------------------------------------------------------------------------------- /src/app/types/oauth.locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/oauth.locale.ts -------------------------------------------------------------------------------- /src/app/types/oauth2-request-info-form.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/oauth2-request-info-form.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/orgs.disambiguated.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/orgs.disambiguated.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/reactivation.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/reactivation.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/reactivation.local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/reactivation.local.ts -------------------------------------------------------------------------------- /src/app/types/record-affiliation.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/record-affiliation.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/record-biography.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/record-biography.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/record-country.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/record-country.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/record-email.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/record-email.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/record-funding.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/record-funding.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/record-keyword.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/record-keyword.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/record-name.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/record-name.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/record-other-names.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/record-other-names.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/record-peer-review-import.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/record-peer-review-import.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/record-peer-review.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/record-peer-review.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/record-person-identifier.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/record-person-identifier.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/record-research-resources.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/record-research-resources.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/record-websites.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/record-websites.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/record-works.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/record-works.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/record.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/record.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/record.local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/record.local.ts -------------------------------------------------------------------------------- /src/app/types/recover-password.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/recover-password.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/register.email-category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/register.email-category.ts -------------------------------------------------------------------------------- /src/app/types/register.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/register.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/register.local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/register.local.ts -------------------------------------------------------------------------------- /src/app/types/request-info-form.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/request-info-form.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/reset-password.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/reset-password.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/screen-directions.local.ts: -------------------------------------------------------------------------------- 1 | export type ScreenDirection = 'ltr' | 'rtl' 2 | -------------------------------------------------------------------------------- /src/app/types/search.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/search.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/search.local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/search.local.ts -------------------------------------------------------------------------------- /src/app/types/session.local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/session.local.ts -------------------------------------------------------------------------------- /src/app/types/sign-in-data.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/sign-in-data.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/sign-in.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/sign-in.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/sign-in.local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/sign-in.local.ts -------------------------------------------------------------------------------- /src/app/types/snackbar.locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/snackbar.locale.ts -------------------------------------------------------------------------------- /src/app/types/sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/sort.ts -------------------------------------------------------------------------------- /src/app/types/togglz.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/togglz.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/togglz.local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/togglz.local.ts -------------------------------------------------------------------------------- /src/app/types/trust-summary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/trust-summary.ts -------------------------------------------------------------------------------- /src/app/types/trusted-individuals.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/trusted-individuals.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/two-factor.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/two-factor.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/userInfo.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/userInfo.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/userStatus.endpoint.ts: -------------------------------------------------------------------------------- 1 | export interface UserStatus { 2 | loggedIn: any 3 | } 4 | -------------------------------------------------------------------------------- /src/app/types/wordpress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/wordpress.ts -------------------------------------------------------------------------------- /src/app/types/works.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/works.endpoint.ts -------------------------------------------------------------------------------- /src/app/types/zendesk.local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/types/zendesk.local.ts -------------------------------------------------------------------------------- /src/app/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/app/validators.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-Black.ttf -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-Black.woff -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-Black.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-BlackItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-Bold.woff -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-Bold.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-BoldItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-BoldItalic.woff -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-Condensed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-Condensed.ttf -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-Condensed.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-Condensed.woff -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-Condensed.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-Condensed.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-ExtraBold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-ExtraBold.woff -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-ExtraBold.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-ExtraLight.ttf -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-ExtraLight.woff -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-Italic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-Italic.woff -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-Italic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-Light.ttf -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-Light.woff -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-Light.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-LightItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-Medium.ttf -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-Medium.woff -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-Medium.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-Regular.woff -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-Regular.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-SemiBold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-SemiBold.woff -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-SemiBold.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-Thin.ttf -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-Thin.woff -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-Thin.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-ThinItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/NotoSans-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/NotoSans-ThinItalic.woff -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/fonts/noto-sans/readme.md -------------------------------------------------------------------------------- /src/assets/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/icons/favicon.ico -------------------------------------------------------------------------------- /src/assets/img/hero-header-image-1024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/img/hero-header-image-1024.jpg -------------------------------------------------------------------------------- /src/assets/img/hero-header-image-1140.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/img/hero-header-image-1140.jpg -------------------------------------------------------------------------------- /src/assets/img/hero-header-image-2560.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/img/hero-header-image-2560.jpg -------------------------------------------------------------------------------- /src/assets/img/hero-header-image-3000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/img/hero-header-image-3000.jpg -------------------------------------------------------------------------------- /src/assets/img/hero-header-image-425w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/img/hero-header-image-425w.jpg -------------------------------------------------------------------------------- /src/assets/img/hero-header-image-768w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/img/hero-header-image-768w.jpg -------------------------------------------------------------------------------- /src/assets/img/hero-header-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/img/hero-header-image.png -------------------------------------------------------------------------------- /src/assets/img/orcid-og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/img/orcid-og-image.png -------------------------------------------------------------------------------- /src/assets/img/organizations.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/img/organizations.jpg -------------------------------------------------------------------------------- /src/assets/img/organizations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/img/organizations.png -------------------------------------------------------------------------------- /src/assets/scripts/latexParse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/scripts/latexParse.js -------------------------------------------------------------------------------- /src/assets/scss/grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/scss/grid.scss -------------------------------------------------------------------------------- /src/assets/scss/index.js: -------------------------------------------------------------------------------- 1 | import * as style from './material.scss' 2 | -------------------------------------------------------------------------------- /src/assets/scss/material.light-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/scss/material.light-theme.scss -------------------------------------------------------------------------------- /src/assets/scss/material.orcid-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/scss/material.orcid-theme.scss -------------------------------------------------------------------------------- /src/assets/scss/material.orcid.overwrites.scss/checkbox.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/scss/material.orcid.overwrites.scss/progress-spinner.scss: -------------------------------------------------------------------------------- 1 | mat-progress-spinner { 2 | width: 150px !important; 3 | } 4 | -------------------------------------------------------------------------------- /src/assets/scss/material.palettes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/scss/material.palettes.scss -------------------------------------------------------------------------------- /src/assets/scss/material.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/scss/material.scss -------------------------------------------------------------------------------- /src/assets/scss/material.typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/scss/material.typography.scss -------------------------------------------------------------------------------- /src/assets/scss/noto-sans.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/scss/noto-sans.scss -------------------------------------------------------------------------------- /src/assets/scss/orcid-ui-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/scss/orcid-ui-theme.scss -------------------------------------------------------------------------------- /src/assets/scss/orcid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/scss/orcid.scss -------------------------------------------------------------------------------- /src/assets/scss/orcid.spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/scss/orcid.spacing.scss -------------------------------------------------------------------------------- /src/assets/scss/orcid/_divider-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/scss/orcid/_divider-theme.scss -------------------------------------------------------------------------------- /src/assets/scss/orcid/_urls-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/scss/orcid/_urls-theme.scss -------------------------------------------------------------------------------- /src/assets/scss/orcid/app-settings-panels-data.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/scss/orcid/app-settings-panels-data.scss -------------------------------------------------------------------------------- /src/assets/scss/orcid/divider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/scss/orcid/divider.scss -------------------------------------------------------------------------------- /src/assets/scss/orcid/urls.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/scss/orcid/urls.scss -------------------------------------------------------------------------------- /src/assets/vectors/bullet-point.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/bullet-point.svg -------------------------------------------------------------------------------- /src/assets/vectors/cc-zero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/cc-zero.svg -------------------------------------------------------------------------------- /src/assets/vectors/check-window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/check-window.svg -------------------------------------------------------------------------------- /src/assets/vectors/draggable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/draggable.svg -------------------------------------------------------------------------------- /src/assets/vectors/email-unverfied-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/email-unverfied-icon.svg -------------------------------------------------------------------------------- /src/assets/vectors/email-verified-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/email-verified-icon.svg -------------------------------------------------------------------------------- /src/assets/vectors/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/facebook.svg -------------------------------------------------------------------------------- /src/assets/vectors/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/favicon.svg -------------------------------------------------------------------------------- /src/assets/vectors/featured-item-star-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/featured-item-star-icon.svg -------------------------------------------------------------------------------- /src/assets/vectors/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/google.svg -------------------------------------------------------------------------------- /src/assets/vectors/helphero/HH-btn-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/helphero/HH-btn-arrow.svg -------------------------------------------------------------------------------- /src/assets/vectors/helphero/HH-record-ready.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/helphero/HH-record-ready.svg -------------------------------------------------------------------------------- /src/assets/vectors/helphero/HH-verify-email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/helphero/HH-verify-email.svg -------------------------------------------------------------------------------- /src/assets/vectors/institutional-access.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/institutional-access.svg -------------------------------------------------------------------------------- /src/assets/vectors/institutional-generic-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/institutional-generic-logo.svg -------------------------------------------------------------------------------- /src/assets/vectors/mat-baseline-check_circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/mat-baseline-check_circle.svg -------------------------------------------------------------------------------- /src/assets/vectors/no-results.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/no-results.svg -------------------------------------------------------------------------------- /src/assets/vectors/notification-button-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/notification-button-active.svg -------------------------------------------------------------------------------- /src/assets/vectors/notification-button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/notification-button.svg -------------------------------------------------------------------------------- /src/assets/vectors/orcid.logo-deactivated.icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/orcid.logo-deactivated.icon.svg -------------------------------------------------------------------------------- /src/assets/vectors/orcid.logo-deprecated.icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/orcid.logo-deprecated.icon.svg -------------------------------------------------------------------------------- /src/assets/vectors/orcid.logo-locked.icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/orcid.logo-locked.icon.svg -------------------------------------------------------------------------------- /src/assets/vectors/orcid.logo.background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/orcid.logo.background.svg -------------------------------------------------------------------------------- /src/assets/vectors/orcid.logo.black.icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/orcid.logo.black.icon.svg -------------------------------------------------------------------------------- /src/assets/vectors/orcid.logo.icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/orcid.logo.icon.svg -------------------------------------------------------------------------------- /src/assets/vectors/orcid.logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/orcid.logo.svg -------------------------------------------------------------------------------- /src/assets/vectors/organization-no-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/organization-no-logo.svg -------------------------------------------------------------------------------- /src/assets/vectors/personal-email-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/personal-email-icon.svg -------------------------------------------------------------------------------- /src/assets/vectors/professional-email-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/professional-email-icon.svg -------------------------------------------------------------------------------- /src/assets/vectors/profile-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/profile-icon.svg -------------------------------------------------------------------------------- /src/assets/vectors/profile-not-verified.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/profile-not-verified.svg -------------------------------------------------------------------------------- /src/assets/vectors/social/Bluesky.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/social/Bluesky.svg -------------------------------------------------------------------------------- /src/assets/vectors/social/Facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/social/Facebook.svg -------------------------------------------------------------------------------- /src/assets/vectors/social/Github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/social/Github.svg -------------------------------------------------------------------------------- /src/assets/vectors/social/Linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/social/Linkedin.svg -------------------------------------------------------------------------------- /src/assets/vectors/social/Mastodon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/social/Mastodon.svg -------------------------------------------------------------------------------- /src/assets/vectors/social/RSS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/social/RSS.svg -------------------------------------------------------------------------------- /src/assets/vectors/social/Vimeo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/social/Vimeo.svg -------------------------------------------------------------------------------- /src/assets/vectors/social/Youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/social/Youtube.svg -------------------------------------------------------------------------------- /src/assets/vectors/thumbs-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/thumbs-up.svg -------------------------------------------------------------------------------- /src/assets/vectors/translucent-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/translucent-arrow.svg -------------------------------------------------------------------------------- /src/assets/vectors/undefined-email-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/undefined-email-icon.svg -------------------------------------------------------------------------------- /src/assets/vectors/verified-outline-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/verified-outline-icon.svg -------------------------------------------------------------------------------- /src/assets/vectors/visibility-everyone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/visibility-everyone.svg -------------------------------------------------------------------------------- /src/assets/vectors/visibility-everyone2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/visibility-everyone2.svg -------------------------------------------------------------------------------- /src/assets/vectors/visibility-only-me.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/visibility-only-me.svg -------------------------------------------------------------------------------- /src/assets/vectors/visibility-only-me2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/visibility-only-me2.jpg -------------------------------------------------------------------------------- /src/assets/vectors/visibility-trusted-source.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/visibility-trusted-source.svg -------------------------------------------------------------------------------- /src/assets/vectors/visibility-trusted-source2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/assets/vectors/visibility-trusted-source2.jpg -------------------------------------------------------------------------------- /src/environments/environment.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/environments/environment.int.ts -------------------------------------------------------------------------------- /src/environments/environment.local.4200.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/environments/environment.local.4200.ts -------------------------------------------------------------------------------- /src/environments/environment.local.dev.orcid.org.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/environments/environment.local.dev.orcid.org.ts -------------------------------------------------------------------------------- /src/environments/environment.production.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/environments/environment.production.ts -------------------------------------------------------------------------------- /src/environments/environment.qa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/environments/environment.qa.ts -------------------------------------------------------------------------------- /src/environments/environment.sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/environments/environment.sandbox.ts -------------------------------------------------------------------------------- /src/environments/interface.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/environments/interface.d.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/index.html -------------------------------------------------------------------------------- /src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/karma.conf.js -------------------------------------------------------------------------------- /src/locale/i18n.pseudo.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/i18n.pseudo.component.html -------------------------------------------------------------------------------- /src/locale/i18n.pseudo.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/i18n.pseudo.component.ts -------------------------------------------------------------------------------- /src/locale/properties-mover.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties-mover.properties -------------------------------------------------------------------------------- /src/locale/properties-mover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties-mover.py -------------------------------------------------------------------------------- /src/locale/properties/account/account.ar.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/account/account.ar.properties -------------------------------------------------------------------------------- /src/locale/properties/account/account.cs.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/account/account.cs.properties -------------------------------------------------------------------------------- /src/locale/properties/account/account.de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/account/account.de.properties -------------------------------------------------------------------------------- /src/locale/properties/account/account.en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/account/account.en.properties -------------------------------------------------------------------------------- /src/locale/properties/account/account.es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/account/account.es.properties -------------------------------------------------------------------------------- /src/locale/properties/account/account.fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/account/account.fr.properties -------------------------------------------------------------------------------- /src/locale/properties/account/account.it.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/account/account.it.properties -------------------------------------------------------------------------------- /src/locale/properties/account/account.ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/account/account.ja.properties -------------------------------------------------------------------------------- /src/locale/properties/account/account.ko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/account/account.ko.properties -------------------------------------------------------------------------------- /src/locale/properties/account/account.lr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/account/account.lr.properties -------------------------------------------------------------------------------- /src/locale/properties/account/account.pl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/account/account.pl.properties -------------------------------------------------------------------------------- /src/locale/properties/account/account.pt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/account/account.pt.properties -------------------------------------------------------------------------------- /src/locale/properties/account/account.rl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/account/account.rl.properties -------------------------------------------------------------------------------- /src/locale/properties/account/account.ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/account/account.ru.properties -------------------------------------------------------------------------------- /src/locale/properties/account/account.tr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/account/account.tr.properties -------------------------------------------------------------------------------- /src/locale/properties/account/account.xx.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/account/account.xx.properties -------------------------------------------------------------------------------- /src/locale/properties/funding/funding.ar.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/funding/funding.ar.properties -------------------------------------------------------------------------------- /src/locale/properties/funding/funding.cs.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/funding/funding.cs.properties -------------------------------------------------------------------------------- /src/locale/properties/funding/funding.de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/funding/funding.de.properties -------------------------------------------------------------------------------- /src/locale/properties/funding/funding.en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/funding/funding.en.properties -------------------------------------------------------------------------------- /src/locale/properties/funding/funding.es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/funding/funding.es.properties -------------------------------------------------------------------------------- /src/locale/properties/funding/funding.fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/funding/funding.fr.properties -------------------------------------------------------------------------------- /src/locale/properties/funding/funding.it.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/funding/funding.it.properties -------------------------------------------------------------------------------- /src/locale/properties/funding/funding.ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/funding/funding.ja.properties -------------------------------------------------------------------------------- /src/locale/properties/funding/funding.ko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/funding/funding.ko.properties -------------------------------------------------------------------------------- /src/locale/properties/funding/funding.lr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/funding/funding.lr.properties -------------------------------------------------------------------------------- /src/locale/properties/funding/funding.pl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/funding/funding.pl.properties -------------------------------------------------------------------------------- /src/locale/properties/funding/funding.pt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/funding/funding.pt.properties -------------------------------------------------------------------------------- /src/locale/properties/funding/funding.rl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/funding/funding.rl.properties -------------------------------------------------------------------------------- /src/locale/properties/funding/funding.ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/funding/funding.ru.properties -------------------------------------------------------------------------------- /src/locale/properties/funding/funding.tr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/funding/funding.tr.properties -------------------------------------------------------------------------------- /src/locale/properties/funding/funding.xx.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/funding/funding.xx.properties -------------------------------------------------------------------------------- /src/locale/properties/home/home.ar.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/home/home.ar.properties -------------------------------------------------------------------------------- /src/locale/properties/home/home.cs.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/home/home.cs.properties -------------------------------------------------------------------------------- /src/locale/properties/home/home.de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/home/home.de.properties -------------------------------------------------------------------------------- /src/locale/properties/home/home.en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/home/home.en.properties -------------------------------------------------------------------------------- /src/locale/properties/home/home.es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/home/home.es.properties -------------------------------------------------------------------------------- /src/locale/properties/home/home.fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/home/home.fr.properties -------------------------------------------------------------------------------- /src/locale/properties/home/home.it.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/home/home.it.properties -------------------------------------------------------------------------------- /src/locale/properties/home/home.ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/home/home.ja.properties -------------------------------------------------------------------------------- /src/locale/properties/home/home.ko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/home/home.ko.properties -------------------------------------------------------------------------------- /src/locale/properties/home/home.lr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/home/home.lr.properties -------------------------------------------------------------------------------- /src/locale/properties/home/home.pl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/home/home.pl.properties -------------------------------------------------------------------------------- /src/locale/properties/home/home.pt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/home/home.pt.properties -------------------------------------------------------------------------------- /src/locale/properties/home/home.rl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/home/home.rl.properties -------------------------------------------------------------------------------- /src/locale/properties/home/home.ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/home/home.ru.properties -------------------------------------------------------------------------------- /src/locale/properties/home/home.tr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/home/home.tr.properties -------------------------------------------------------------------------------- /src/locale/properties/home/home.xx.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/home/home.xx.properties -------------------------------------------------------------------------------- /src/locale/properties/home/home.zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/home/home.zh_CN.properties -------------------------------------------------------------------------------- /src/locale/properties/home/home.zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/home/home.zh_TW.properties -------------------------------------------------------------------------------- /src/locale/properties/inbox/inbox.ar.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/inbox/inbox.ar.properties -------------------------------------------------------------------------------- /src/locale/properties/inbox/inbox.cs.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/inbox/inbox.cs.properties -------------------------------------------------------------------------------- /src/locale/properties/inbox/inbox.de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/inbox/inbox.de.properties -------------------------------------------------------------------------------- /src/locale/properties/inbox/inbox.en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/inbox/inbox.en.properties -------------------------------------------------------------------------------- /src/locale/properties/inbox/inbox.es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/inbox/inbox.es.properties -------------------------------------------------------------------------------- /src/locale/properties/inbox/inbox.fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/inbox/inbox.fr.properties -------------------------------------------------------------------------------- /src/locale/properties/inbox/inbox.it.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/inbox/inbox.it.properties -------------------------------------------------------------------------------- /src/locale/properties/inbox/inbox.ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/inbox/inbox.ja.properties -------------------------------------------------------------------------------- /src/locale/properties/inbox/inbox.ko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/inbox/inbox.ko.properties -------------------------------------------------------------------------------- /src/locale/properties/inbox/inbox.lr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/inbox/inbox.lr.properties -------------------------------------------------------------------------------- /src/locale/properties/inbox/inbox.pl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/inbox/inbox.pl.properties -------------------------------------------------------------------------------- /src/locale/properties/inbox/inbox.pt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/inbox/inbox.pt.properties -------------------------------------------------------------------------------- /src/locale/properties/inbox/inbox.rl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/inbox/inbox.rl.properties -------------------------------------------------------------------------------- /src/locale/properties/inbox/inbox.ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/inbox/inbox.ru.properties -------------------------------------------------------------------------------- /src/locale/properties/inbox/inbox.tr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/inbox/inbox.tr.properties -------------------------------------------------------------------------------- /src/locale/properties/inbox/inbox.xx.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/inbox/inbox.xx.properties -------------------------------------------------------------------------------- /src/locale/properties/inbox/inbox.zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/inbox/inbox.zh_CN.properties -------------------------------------------------------------------------------- /src/locale/properties/inbox/inbox.zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/inbox/inbox.zh_TW.properties -------------------------------------------------------------------------------- /src/locale/properties/layout/layout.ar.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/layout/layout.ar.properties -------------------------------------------------------------------------------- /src/locale/properties/layout/layout.cs.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/layout/layout.cs.properties -------------------------------------------------------------------------------- /src/locale/properties/layout/layout.de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/layout/layout.de.properties -------------------------------------------------------------------------------- /src/locale/properties/layout/layout.en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/layout/layout.en.properties -------------------------------------------------------------------------------- /src/locale/properties/layout/layout.es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/layout/layout.es.properties -------------------------------------------------------------------------------- /src/locale/properties/layout/layout.fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/layout/layout.fr.properties -------------------------------------------------------------------------------- /src/locale/properties/layout/layout.it.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/layout/layout.it.properties -------------------------------------------------------------------------------- /src/locale/properties/layout/layout.ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/layout/layout.ja.properties -------------------------------------------------------------------------------- /src/locale/properties/layout/layout.ko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/layout/layout.ko.properties -------------------------------------------------------------------------------- /src/locale/properties/layout/layout.lr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/layout/layout.lr.properties -------------------------------------------------------------------------------- /src/locale/properties/layout/layout.pl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/layout/layout.pl.properties -------------------------------------------------------------------------------- /src/locale/properties/layout/layout.pt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/layout/layout.pt.properties -------------------------------------------------------------------------------- /src/locale/properties/layout/layout.rl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/layout/layout.rl.properties -------------------------------------------------------------------------------- /src/locale/properties/layout/layout.ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/layout/layout.ru.properties -------------------------------------------------------------------------------- /src/locale/properties/layout/layout.tr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/layout/layout.tr.properties -------------------------------------------------------------------------------- /src/locale/properties/layout/layout.xx.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/layout/layout.xx.properties -------------------------------------------------------------------------------- /src/locale/properties/linking/linking.ar.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/linking/linking.ar.properties -------------------------------------------------------------------------------- /src/locale/properties/linking/linking.cs.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/linking/linking.cs.properties -------------------------------------------------------------------------------- /src/locale/properties/linking/linking.de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/linking/linking.de.properties -------------------------------------------------------------------------------- /src/locale/properties/linking/linking.en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/linking/linking.en.properties -------------------------------------------------------------------------------- /src/locale/properties/linking/linking.es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/linking/linking.es.properties -------------------------------------------------------------------------------- /src/locale/properties/linking/linking.fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/linking/linking.fr.properties -------------------------------------------------------------------------------- /src/locale/properties/linking/linking.it.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/linking/linking.it.properties -------------------------------------------------------------------------------- /src/locale/properties/linking/linking.ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/linking/linking.ja.properties -------------------------------------------------------------------------------- /src/locale/properties/linking/linking.ko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/linking/linking.ko.properties -------------------------------------------------------------------------------- /src/locale/properties/linking/linking.lr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/linking/linking.lr.properties -------------------------------------------------------------------------------- /src/locale/properties/linking/linking.pl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/linking/linking.pl.properties -------------------------------------------------------------------------------- /src/locale/properties/linking/linking.pt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/linking/linking.pt.properties -------------------------------------------------------------------------------- /src/locale/properties/linking/linking.rl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/linking/linking.rl.properties -------------------------------------------------------------------------------- /src/locale/properties/linking/linking.ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/linking/linking.ru.properties -------------------------------------------------------------------------------- /src/locale/properties/linking/linking.tr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/linking/linking.tr.properties -------------------------------------------------------------------------------- /src/locale/properties/linking/linking.xx.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/linking/linking.xx.properties -------------------------------------------------------------------------------- /src/locale/properties/profile/profile.ar.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/profile/profile.ar.properties -------------------------------------------------------------------------------- /src/locale/properties/profile/profile.cs.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/profile/profile.cs.properties -------------------------------------------------------------------------------- /src/locale/properties/profile/profile.de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/profile/profile.de.properties -------------------------------------------------------------------------------- /src/locale/properties/profile/profile.en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/profile/profile.en.properties -------------------------------------------------------------------------------- /src/locale/properties/profile/profile.es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/profile/profile.es.properties -------------------------------------------------------------------------------- /src/locale/properties/record/record.ar.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/record/record.ar.properties -------------------------------------------------------------------------------- /src/locale/properties/record/record.cs.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/record/record.cs.properties -------------------------------------------------------------------------------- /src/locale/properties/record/record.de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/record/record.de.properties -------------------------------------------------------------------------------- /src/locale/properties/record/record.en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/record/record.en.properties -------------------------------------------------------------------------------- /src/locale/properties/record/record.es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/record/record.es.properties -------------------------------------------------------------------------------- /src/locale/properties/record/record.fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/record/record.fr.properties -------------------------------------------------------------------------------- /src/locale/properties/record/record.it.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/record/record.it.properties -------------------------------------------------------------------------------- /src/locale/properties/record/record.ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/record/record.ja.properties -------------------------------------------------------------------------------- /src/locale/properties/record/record.ko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/record/record.ko.properties -------------------------------------------------------------------------------- /src/locale/properties/record/record.lr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/record/record.lr.properties -------------------------------------------------------------------------------- /src/locale/properties/record/record.pl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/record/record.pl.properties -------------------------------------------------------------------------------- /src/locale/properties/record/record.pt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/record/record.pt.properties -------------------------------------------------------------------------------- /src/locale/properties/record/record.rl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/record/record.rl.properties -------------------------------------------------------------------------------- /src/locale/properties/record/record.ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/record/record.ru.properties -------------------------------------------------------------------------------- /src/locale/properties/record/record.tr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/record/record.tr.properties -------------------------------------------------------------------------------- /src/locale/properties/record/record.xx.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/record/record.xx.properties -------------------------------------------------------------------------------- /src/locale/properties/search/search.ar.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/search/search.ar.properties -------------------------------------------------------------------------------- /src/locale/properties/search/search.cs.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/search/search.cs.properties -------------------------------------------------------------------------------- /src/locale/properties/search/search.de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/search/search.de.properties -------------------------------------------------------------------------------- /src/locale/properties/search/search.en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/search/search.en.properties -------------------------------------------------------------------------------- /src/locale/properties/search/search.es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/search/search.es.properties -------------------------------------------------------------------------------- /src/locale/properties/search/search.fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/search/search.fr.properties -------------------------------------------------------------------------------- /src/locale/properties/search/search.it.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/search/search.it.properties -------------------------------------------------------------------------------- /src/locale/properties/search/search.ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/search/search.ja.properties -------------------------------------------------------------------------------- /src/locale/properties/search/search.ko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/search/search.ko.properties -------------------------------------------------------------------------------- /src/locale/properties/search/search.lr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/search/search.lr.properties -------------------------------------------------------------------------------- /src/locale/properties/search/search.pl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/search/search.pl.properties -------------------------------------------------------------------------------- /src/locale/properties/search/search.pt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/search/search.pt.properties -------------------------------------------------------------------------------- /src/locale/properties/search/search.rl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/search/search.rl.properties -------------------------------------------------------------------------------- /src/locale/properties/search/search.ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/search/search.ru.properties -------------------------------------------------------------------------------- /src/locale/properties/search/search.tr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/search/search.tr.properties -------------------------------------------------------------------------------- /src/locale/properties/search/search.xx.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/search/search.xx.properties -------------------------------------------------------------------------------- /src/locale/properties/shared/shared.ar.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/shared/shared.ar.properties -------------------------------------------------------------------------------- /src/locale/properties/shared/shared.cs.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/shared/shared.cs.properties -------------------------------------------------------------------------------- /src/locale/properties/shared/shared.de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/shared/shared.de.properties -------------------------------------------------------------------------------- /src/locale/properties/shared/shared.en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/shared/shared.en.properties -------------------------------------------------------------------------------- /src/locale/properties/shared/shared.es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/shared/shared.es.properties -------------------------------------------------------------------------------- /src/locale/properties/shared/shared.fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/shared/shared.fr.properties -------------------------------------------------------------------------------- /src/locale/properties/shared/shared.it.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/shared/shared.it.properties -------------------------------------------------------------------------------- /src/locale/properties/shared/shared.ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/shared/shared.ja.properties -------------------------------------------------------------------------------- /src/locale/properties/shared/shared.ko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/shared/shared.ko.properties -------------------------------------------------------------------------------- /src/locale/properties/shared/shared.lr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/shared/shared.lr.properties -------------------------------------------------------------------------------- /src/locale/properties/shared/shared.pl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/shared/shared.pl.properties -------------------------------------------------------------------------------- /src/locale/properties/shared/shared.pt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/shared/shared.pt.properties -------------------------------------------------------------------------------- /src/locale/properties/shared/shared.rl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/shared/shared.rl.properties -------------------------------------------------------------------------------- /src/locale/properties/shared/shared.ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/shared/shared.ru.properties -------------------------------------------------------------------------------- /src/locale/properties/shared/shared.tr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/shared/shared.tr.properties -------------------------------------------------------------------------------- /src/locale/properties/shared/shared.xx.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/shared/shared.xx.properties -------------------------------------------------------------------------------- /src/locale/properties/signin/signin.ar.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/signin/signin.ar.properties -------------------------------------------------------------------------------- /src/locale/properties/signin/signin.cs.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/signin/signin.cs.properties -------------------------------------------------------------------------------- /src/locale/properties/signin/signin.de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/signin/signin.de.properties -------------------------------------------------------------------------------- /src/locale/properties/signin/signin.en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/signin/signin.en.properties -------------------------------------------------------------------------------- /src/locale/properties/signin/signin.es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/signin/signin.es.properties -------------------------------------------------------------------------------- /src/locale/properties/signin/signin.fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/signin/signin.fr.properties -------------------------------------------------------------------------------- /src/locale/properties/signin/signin.it.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/signin/signin.it.properties -------------------------------------------------------------------------------- /src/locale/properties/signin/signin.ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/signin/signin.ja.properties -------------------------------------------------------------------------------- /src/locale/properties/signin/signin.ko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/signin/signin.ko.properties -------------------------------------------------------------------------------- /src/locale/properties/signin/signin.lr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/signin/signin.lr.properties -------------------------------------------------------------------------------- /src/locale/properties/signin/signin.pl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/signin/signin.pl.properties -------------------------------------------------------------------------------- /src/locale/properties/signin/signin.pt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/signin/signin.pt.properties -------------------------------------------------------------------------------- /src/locale/properties/signin/signin.rl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/signin/signin.rl.properties -------------------------------------------------------------------------------- /src/locale/properties/signin/signin.ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/signin/signin.ru.properties -------------------------------------------------------------------------------- /src/locale/properties/signin/signin.tr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/signin/signin.tr.properties -------------------------------------------------------------------------------- /src/locale/properties/signin/signin.xx.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/signin/signin.xx.properties -------------------------------------------------------------------------------- /src/locale/properties/works/works.ar.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/works/works.ar.properties -------------------------------------------------------------------------------- /src/locale/properties/works/works.cs.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/works/works.cs.properties -------------------------------------------------------------------------------- /src/locale/properties/works/works.de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/works/works.de.properties -------------------------------------------------------------------------------- /src/locale/properties/works/works.en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/works/works.en.properties -------------------------------------------------------------------------------- /src/locale/properties/works/works.es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/works/works.es.properties -------------------------------------------------------------------------------- /src/locale/properties/works/works.fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/works/works.fr.properties -------------------------------------------------------------------------------- /src/locale/properties/works/works.it.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/works/works.it.properties -------------------------------------------------------------------------------- /src/locale/properties/works/works.ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/works/works.ja.properties -------------------------------------------------------------------------------- /src/locale/properties/works/works.ko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/works/works.ko.properties -------------------------------------------------------------------------------- /src/locale/properties/works/works.lr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/works/works.lr.properties -------------------------------------------------------------------------------- /src/locale/properties/works/works.pl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/works/works.pl.properties -------------------------------------------------------------------------------- /src/locale/properties/works/works.pt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/works/works.pt.properties -------------------------------------------------------------------------------- /src/locale/properties/works/works.rl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/works/works.rl.properties -------------------------------------------------------------------------------- /src/locale/properties/works/works.ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/works/works.ru.properties -------------------------------------------------------------------------------- /src/locale/properties/works/works.tr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/works/works.tr.properties -------------------------------------------------------------------------------- /src/locale/properties/works/works.xx.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/locale/properties/works/works.xx.properties -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/proxy.conf.qa.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/proxy.conf.qa.mjs -------------------------------------------------------------------------------- /src/proxy.conf.sandbox.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/proxy.conf.sandbox.mjs -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/styles.scss-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/styles.scss-theme.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/src/tslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORCID/orcid-angular/HEAD/yarn.lock --------------------------------------------------------------------------------