├── .code-style-intellij ├── codeStyleConfig.xml ├── inspection-profile.xml └── udc-code-style.xml ├── .editorconfig ├── .githooks ├── pre-commit-check └── secrets-check ├── .gitignore ├── .secretlintrc.json ├── .travis.yml ├── LICENSE ├── README.md ├── angular.json ├── e2e ├── app │ ├── base │ │ ├── base.e2e.ts │ │ └── base.po.ts │ ├── category │ │ ├── categories.e2e-spec.ts │ │ ├── categories.po.ts │ │ └── operations │ │ │ ├── data.ts │ │ │ ├── dbScripts.ts │ │ │ └── operations.ts │ ├── data-entity │ │ ├── columns │ │ │ ├── columns.e2e-spec.ts │ │ │ ├── columns.po.ts │ │ │ └── operations │ │ │ │ ├── data.ts │ │ │ │ └── operations.ts │ │ ├── documentschema │ │ │ ├── documentschema.e2e-spec.ts │ │ │ ├── documentschema.po.ts │ │ │ └── operations │ │ │ │ ├── data.ts │ │ │ │ └── operations.ts │ │ ├── list │ │ │ ├── data-entity-list.e2e-spec.ts │ │ │ ├── data-entity-list.po.ts │ │ │ └── operations │ │ │ │ ├── data.ts │ │ │ │ └── operations.ts │ │ ├── overview │ │ │ ├── operations │ │ │ │ ├── data.ts │ │ │ │ └── operations.ts │ │ │ ├── overview.e2e-spec.ts │ │ │ └── overview.po.ts │ │ ├── sampledata │ │ │ ├── sampledata.e2e-spec.ts │ │ │ └── sampledata.po.ts │ │ └── sme │ │ │ ├── operations │ │ │ ├── data.ts │ │ │ └── operations.ts │ │ │ ├── sme.e2e-spec.ts │ │ │ └── sme.po.ts │ ├── data-objects │ │ ├── detail │ │ │ ├── base-detail.ts │ │ │ ├── data-object-detail.e2e-spec.ts │ │ │ ├── data-object-detail.po.ts │ │ │ ├── lineage │ │ │ │ ├── bdata-lineage-history.e2e-spec.ts │ │ │ │ └── operations │ │ │ │ │ ├── data.ts │ │ │ │ │ └── operations.ts │ │ │ ├── operations │ │ │ │ ├── data.ts │ │ │ │ └── operations.ts │ │ │ └── storage-units │ │ │ │ ├── bdata-storage-units.e2e-spec.ts │ │ │ │ └── operations │ │ │ │ ├── data.ts │ │ │ │ └── operations.ts │ │ └── list │ │ │ ├── data-objects-list.e2e-spec.ts │ │ │ ├── data-objects-list.po.ts │ │ │ └── operations │ │ │ ├── data.ts │ │ │ └── operations.ts │ ├── format │ │ ├── externalinterfaces │ │ │ ├── externalinterfaces.e2e-spec.ts │ │ │ ├── externalinterfaces.po.ts │ │ │ └── operations │ │ │ │ ├── data.ts │ │ │ │ └── operations.ts │ │ ├── format.e2e-spec.ts │ │ ├── format.po.ts │ │ └── operations │ │ │ ├── data.ts │ │ │ └── operations.ts │ ├── home │ │ ├── home.e2e-spec.ts │ │ ├── home.po.ts │ │ └── operations │ │ │ ├── data.ts │ │ │ └── operations.ts │ ├── login │ │ └── login.po.ts │ ├── search │ │ ├── operations │ │ │ ├── data.ts │ │ │ └── operations.ts │ │ ├── search.e2e-spec.ts │ │ └── search.po.ts │ └── smoke │ │ └── smoke.e2e-spec.ts ├── config │ ├── README.md │ └── conf.e2e.json ├── tsconfig.e2e.json └── util │ ├── DataManager.ts │ ├── JsonSchema.ts │ ├── S3Manager.ts │ ├── database │ └── queries.ts │ └── utils.ts ├── herd-ui-dist-package ├── README.md ├── distDeploy.sh └── package.json ├── karma.conf.ci.js ├── karma.conf.js ├── license-check.js ├── package.json ├── protractor.conf.ci.js ├── protractor.conf.js ├── run-in-saucelab.sh ├── setmeup.sh ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── categories │ │ ├── categories-routing.module.ts │ │ ├── categories.module.ts │ │ ├── components │ │ │ └── category-detail │ │ │ │ ├── category-detail.component.html │ │ │ │ ├── category-detail.component.scss │ │ │ │ ├── category-detail.component.spec.ts │ │ │ │ └── category-detail.component.ts │ │ └── services │ │ │ ├── categories-detail-resolver.spec.ts │ │ │ └── categories-detail-resolver.ts │ ├── core │ │ ├── components │ │ │ ├── alerts │ │ │ │ ├── alerts.component.html │ │ │ │ ├── alerts.component.scss │ │ │ │ ├── alerts.component.spec.ts │ │ │ │ └── alerts.component.ts │ │ │ ├── back-track │ │ │ │ ├── back-track.component.html │ │ │ │ ├── back-track.component.scss │ │ │ │ ├── back-track.component.spec.ts │ │ │ │ └── back-track.component.ts │ │ │ ├── header │ │ │ │ ├── header.component.html │ │ │ │ ├── header.component.scss │ │ │ │ ├── header.component.spec.ts │ │ │ │ └── header.component.ts │ │ │ ├── home │ │ │ │ ├── home.component.html │ │ │ │ ├── home.component.scss │ │ │ │ ├── home.component.spec.ts │ │ │ │ └── home.component.ts │ │ │ └── login │ │ │ │ ├── login.component.html │ │ │ │ ├── login.component.scss │ │ │ │ ├── login.component.spec.ts │ │ │ │ └── login.component.ts │ │ ├── core.module.ts │ │ └── services │ │ │ ├── alert.service.spec.ts │ │ │ ├── alert.service.ts │ │ │ ├── auth-guard.service.spec.ts │ │ │ ├── auth-guard.service.ts │ │ │ ├── custom-location.service.spec.ts │ │ │ ├── custom-location.service.ts │ │ │ ├── custom-route-reuse-strategy.service.spec.ts │ │ │ ├── custom-route-reuse-strategy.service.ts │ │ │ ├── http-intercept.service.spec.ts │ │ │ ├── http-intercept.service.ts │ │ │ ├── no-auth-guard.service.ts │ │ │ ├── user.service.spec.ts │ │ │ └── user.service.ts │ ├── data-entities │ │ ├── components │ │ │ ├── contacts │ │ │ │ ├── contacts.component.html │ │ │ │ ├── contacts.component.scss │ │ │ │ ├── contacts.component.spec.ts │ │ │ │ └── contacts.component.ts │ │ │ ├── data-entity-detail │ │ │ │ ├── data-entity-detail.component.html │ │ │ │ ├── data-entity-detail.component.scss │ │ │ │ ├── data-entity-detail.component.spec.ts │ │ │ │ └── data-entity-detail.component.ts │ │ │ ├── data-entity-list │ │ │ │ ├── data-entity-list.component.html │ │ │ │ ├── data-entity-list.component.scss │ │ │ │ ├── data-entity-list.component.spec.ts │ │ │ │ └── data-entity-list.component.ts │ │ │ ├── suggestions │ │ │ │ ├── suggestions.component.html │ │ │ │ ├── suggestions.component.scss │ │ │ │ ├── suggestions.component.spec.ts │ │ │ │ └── suggestions.component.ts │ │ │ └── tags │ │ │ │ ├── tags.component.html │ │ │ │ ├── tags.component.scss │ │ │ │ ├── tags.component.spec.ts │ │ │ │ └── tags.component.ts │ │ ├── data-entities-routing.module.ts │ │ ├── data-entities.module.ts │ │ └── services │ │ │ ├── data-entity-detail-resolver.spec.ts │ │ │ ├── data-entity-detail-resolver.ts │ │ │ ├── data-entity-list-resolver.spec.ts │ │ │ └── data-entity-list-resolver.ts │ ├── data-objects │ │ ├── components │ │ │ ├── attribute-filter │ │ │ │ ├── attribute-filter.component.html │ │ │ │ ├── attribute-filter.component.scss │ │ │ │ ├── attribute-filter.component.spec.ts │ │ │ │ └── attribute-filter.component.ts │ │ │ ├── data-object-detail │ │ │ │ ├── data-object-detail.component.html │ │ │ │ ├── data-object-detail.component.scss │ │ │ │ ├── data-object-detail.component.spec.ts │ │ │ │ └── data-object-detail.component.ts │ │ │ ├── data-object-list-filters │ │ │ │ ├── data-object-list-filters.component.html │ │ │ │ ├── data-object-list-filters.component.scss │ │ │ │ ├── data-object-list-filters.component.spec.ts │ │ │ │ └── data-object-list-filters.component.ts │ │ │ ├── data-object-list │ │ │ │ ├── data-object-list.component.html │ │ │ │ ├── data-object-list.component.scss │ │ │ │ ├── data-object-list.component.spec.ts │ │ │ │ └── data-object-list.component.ts │ │ │ ├── filter-template │ │ │ │ ├── filter-template.component.html │ │ │ │ ├── filter-template.component.scss │ │ │ │ ├── filter-template.component.spec.ts │ │ │ │ └── filter-template.component.ts │ │ │ ├── latest-valid-version-filter │ │ │ │ ├── latest-valid-version-filter.component.html │ │ │ │ ├── latest-valid-version-filter.component.scss │ │ │ │ ├── latest-valid-version-filter.component.spec.ts │ │ │ │ └── latest-valid-version-filter.component.ts │ │ │ ├── lineage │ │ │ │ ├── lineage.component.html │ │ │ │ ├── lineage.component.scss │ │ │ │ ├── lineage.component.spec.ts │ │ │ │ └── lineage.component.ts │ │ │ ├── partition-filter │ │ │ │ ├── partition-filter.component.html │ │ │ │ ├── partition-filter.component.scss │ │ │ │ ├── partition-filter.component.spec.ts │ │ │ │ └── partition-filter.component.ts │ │ │ ├── registration-date-range-filter │ │ │ │ ├── registration-date-range-filter.component.html │ │ │ │ ├── registration-date-range-filter.component.scss │ │ │ │ ├── registration-date-range-filter.component.spec.ts │ │ │ │ └── registration-date-range-filter.component.ts │ │ │ └── storage-units │ │ │ │ ├── storage-units.component.html │ │ │ │ ├── storage-units.component.scss │ │ │ │ ├── storage-units.component.spec.ts │ │ │ │ └── storage-units.component.ts │ │ ├── data-objects-routing.module.ts │ │ ├── data-objects.module.ts │ │ └── services │ │ │ ├── data-object-detail-resolver.service.spec.ts │ │ │ ├── data-object-detail-resolver.service.ts │ │ │ ├── data-objects-resolver.service.spec.ts │ │ │ └── data-objects-resolver.service.ts │ ├── formats │ │ ├── components │ │ │ ├── attribute-definitions │ │ │ │ ├── attribute-definitions.component.html │ │ │ │ ├── attribute-definitions.component.scss │ │ │ │ ├── attribute-definitions.component.spec.ts │ │ │ │ └── attribute-definitions.component.ts │ │ │ ├── format-detail │ │ │ │ ├── format-detail.component.html │ │ │ │ ├── format-detail.component.scss │ │ │ │ ├── format-detail.component.spec.ts │ │ │ │ └── format-detail.component.ts │ │ │ └── schema-columns │ │ │ │ ├── schema-columns.component.html │ │ │ │ ├── schema-columns.component.scss │ │ │ │ ├── schema-columns.component.spec.ts │ │ │ │ └── schema-columns.component.ts │ │ ├── format-resolver.service.spec.ts │ │ ├── format-resolver.service.ts │ │ ├── formats-routing.module.ts │ │ └── formats.module.ts │ ├── search │ │ ├── components │ │ │ └── search │ │ │ │ ├── search.component.html │ │ │ │ ├── search.component.scss │ │ │ │ ├── search.component.spec.ts │ │ │ │ └── search.component.ts │ │ ├── search-routing.module.ts │ │ ├── search.module.ts │ │ └── services │ │ │ ├── search-resolve.service.spec.ts │ │ │ └── search-resolver.service.ts │ ├── shared │ │ ├── components │ │ │ ├── attributes │ │ │ │ ├── attributes.component.html │ │ │ │ ├── attributes.component.scss │ │ │ │ ├── attributes.component.spec.ts │ │ │ │ └── attributes.component.ts │ │ │ ├── edit │ │ │ │ ├── edit.component.html │ │ │ │ ├── edit.component.scss │ │ │ │ ├── edit.component.spec.ts │ │ │ │ └── edit.component.ts │ │ │ ├── ellipsis-overflow │ │ │ │ ├── ellipsis-overflow.component.html │ │ │ │ ├── ellipsis-overflow.component.scss │ │ │ │ ├── ellipsis-overflow.component.spec.ts │ │ │ │ └── ellipsis-overflow.component.ts │ │ │ ├── facet │ │ │ │ ├── facet.component.html │ │ │ │ ├── facet.component.scss │ │ │ │ ├── facet.component.spec.ts │ │ │ │ └── facet.component.ts │ │ │ ├── generic-view │ │ │ │ ├── generic-view.component.html │ │ │ │ ├── generic-view.component.scss │ │ │ │ ├── generic-view.component.spec.ts │ │ │ │ └── generic-view.component.ts │ │ │ ├── global-search │ │ │ │ ├── global-search.component.html │ │ │ │ ├── global-search.component.scss │ │ │ │ ├── global-search.component.spec.ts │ │ │ │ └── global-search.component.ts │ │ │ ├── side-action │ │ │ │ ├── side-action.component.html │ │ │ │ ├── side-action.component.scss │ │ │ │ ├── side-action.component.spec.ts │ │ │ │ └── side-action.component.ts │ │ │ ├── side-actions │ │ │ │ ├── side-actions.component.html │ │ │ │ ├── side-actions.component.scss │ │ │ │ ├── side-actions.component.spec.ts │ │ │ │ └── side-actions.component.ts │ │ │ ├── spinner │ │ │ │ ├── spinner.component.html │ │ │ │ ├── spinner.component.scss │ │ │ │ ├── spinner.component.spec.ts │ │ │ │ └── spinner.component.ts │ │ │ ├── tri-state │ │ │ │ ├── tri-state.component.html │ │ │ │ ├── tri-state.component.scss │ │ │ │ ├── tri-state.component.spec.ts │ │ │ │ └── tri-state.component.ts │ │ │ └── truncated-content │ │ │ │ ├── truncated-content.component.html │ │ │ │ ├── truncated-content.component.scss │ │ │ │ ├── truncated-content.component.spec.ts │ │ │ │ └── truncated-content.component.ts │ │ ├── directive │ │ │ ├── authorized │ │ │ │ ├── authorized.directive.spec.ts │ │ │ │ └── authorized.directive.ts │ │ │ └── file-downloader │ │ │ │ ├── file-downloader.directive.spec.ts │ │ │ │ └── file-downloader.directive.ts │ │ ├── pipes │ │ │ ├── safe-html.pipe.spec.ts │ │ │ └── safe-html.pipe.ts │ │ ├── read-more │ │ │ ├── read-more.component.html │ │ │ ├── read-more.component.scss │ │ │ ├── read-more.component.spec.ts │ │ │ └── read-more.component.ts │ │ ├── services │ │ │ ├── beast-actions.enum.ts │ │ │ ├── beast-components.enum.ts │ │ │ ├── beast.service.spec.ts │ │ │ ├── beast.service.ts │ │ │ ├── encryption.service.spec.ts │ │ │ ├── encryption.service.ts │ │ │ ├── facet-tri-state.enum.ts │ │ │ ├── highlight-display-mapping.ts │ │ │ ├── search.service.spec.ts │ │ │ ├── search.service.ts │ │ │ └── tri-state-enum.enum.ts │ │ ├── shared.module.ts │ │ ├── styles │ │ │ └── shared.scss │ │ └── utils │ │ │ ├── app-icons.ts │ │ │ └── click-helper.ts │ └── utils │ │ └── utils.ts ├── assets │ └── svg │ │ ├── LOGO.svg │ │ ├── maze.svg │ │ └── testing-image.svg ├── ckset.ts ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.scss ├── test.ts ├── testing │ ├── IndexSearchMockData.ts │ ├── RelatedDataEntities.ts │ ├── mock-ckeditor.component.ts │ ├── mockFormat.ts │ ├── router-stubs.ts │ └── testing-utils.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── typings.d.ts ├── tsconfig.json └── tslint.json /.code-style-intellij/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/.code-style-intellij/codeStyleConfig.xml -------------------------------------------------------------------------------- /.code-style-intellij/inspection-profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/.code-style-intellij/inspection-profile.xml -------------------------------------------------------------------------------- /.code-style-intellij/udc-code-style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/.code-style-intellij/udc-code-style.xml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/.editorconfig -------------------------------------------------------------------------------- /.githooks/pre-commit-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/.githooks/pre-commit-check -------------------------------------------------------------------------------- /.githooks/secrets-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/.githooks/secrets-check -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.secretlintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/.secretlintrc.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/angular.json -------------------------------------------------------------------------------- /e2e/app/base/base.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/base/base.e2e.ts -------------------------------------------------------------------------------- /e2e/app/base/base.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/base/base.po.ts -------------------------------------------------------------------------------- /e2e/app/category/categories.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/category/categories.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app/category/categories.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/category/categories.po.ts -------------------------------------------------------------------------------- /e2e/app/category/operations/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/category/operations/data.ts -------------------------------------------------------------------------------- /e2e/app/category/operations/dbScripts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/category/operations/dbScripts.ts -------------------------------------------------------------------------------- /e2e/app/category/operations/operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/category/operations/operations.ts -------------------------------------------------------------------------------- /e2e/app/data-entity/columns/columns.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-entity/columns/columns.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app/data-entity/columns/columns.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-entity/columns/columns.po.ts -------------------------------------------------------------------------------- /e2e/app/data-entity/columns/operations/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-entity/columns/operations/data.ts -------------------------------------------------------------------------------- /e2e/app/data-entity/columns/operations/operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-entity/columns/operations/operations.ts -------------------------------------------------------------------------------- /e2e/app/data-entity/documentschema/documentschema.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-entity/documentschema/documentschema.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app/data-entity/documentschema/documentschema.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-entity/documentschema/documentschema.po.ts -------------------------------------------------------------------------------- /e2e/app/data-entity/documentschema/operations/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-entity/documentschema/operations/data.ts -------------------------------------------------------------------------------- /e2e/app/data-entity/documentschema/operations/operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-entity/documentschema/operations/operations.ts -------------------------------------------------------------------------------- /e2e/app/data-entity/list/data-entity-list.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-entity/list/data-entity-list.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app/data-entity/list/data-entity-list.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-entity/list/data-entity-list.po.ts -------------------------------------------------------------------------------- /e2e/app/data-entity/list/operations/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-entity/list/operations/data.ts -------------------------------------------------------------------------------- /e2e/app/data-entity/list/operations/operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-entity/list/operations/operations.ts -------------------------------------------------------------------------------- /e2e/app/data-entity/overview/operations/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-entity/overview/operations/data.ts -------------------------------------------------------------------------------- /e2e/app/data-entity/overview/operations/operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-entity/overview/operations/operations.ts -------------------------------------------------------------------------------- /e2e/app/data-entity/overview/overview.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-entity/overview/overview.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app/data-entity/overview/overview.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-entity/overview/overview.po.ts -------------------------------------------------------------------------------- /e2e/app/data-entity/sampledata/sampledata.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-entity/sampledata/sampledata.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app/data-entity/sampledata/sampledata.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-entity/sampledata/sampledata.po.ts -------------------------------------------------------------------------------- /e2e/app/data-entity/sme/operations/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-entity/sme/operations/data.ts -------------------------------------------------------------------------------- /e2e/app/data-entity/sme/operations/operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-entity/sme/operations/operations.ts -------------------------------------------------------------------------------- /e2e/app/data-entity/sme/sme.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-entity/sme/sme.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app/data-entity/sme/sme.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-entity/sme/sme.po.ts -------------------------------------------------------------------------------- /e2e/app/data-objects/detail/base-detail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-objects/detail/base-detail.ts -------------------------------------------------------------------------------- /e2e/app/data-objects/detail/data-object-detail.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-objects/detail/data-object-detail.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app/data-objects/detail/data-object-detail.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-objects/detail/data-object-detail.po.ts -------------------------------------------------------------------------------- /e2e/app/data-objects/detail/lineage/bdata-lineage-history.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-objects/detail/lineage/bdata-lineage-history.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app/data-objects/detail/lineage/operations/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-objects/detail/lineage/operations/data.ts -------------------------------------------------------------------------------- /e2e/app/data-objects/detail/lineage/operations/operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-objects/detail/lineage/operations/operations.ts -------------------------------------------------------------------------------- /e2e/app/data-objects/detail/operations/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-objects/detail/operations/data.ts -------------------------------------------------------------------------------- /e2e/app/data-objects/detail/operations/operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-objects/detail/operations/operations.ts -------------------------------------------------------------------------------- /e2e/app/data-objects/detail/storage-units/bdata-storage-units.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-objects/detail/storage-units/bdata-storage-units.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app/data-objects/detail/storage-units/operations/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-objects/detail/storage-units/operations/data.ts -------------------------------------------------------------------------------- /e2e/app/data-objects/detail/storage-units/operations/operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-objects/detail/storage-units/operations/operations.ts -------------------------------------------------------------------------------- /e2e/app/data-objects/list/data-objects-list.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-objects/list/data-objects-list.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app/data-objects/list/data-objects-list.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-objects/list/data-objects-list.po.ts -------------------------------------------------------------------------------- /e2e/app/data-objects/list/operations/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-objects/list/operations/data.ts -------------------------------------------------------------------------------- /e2e/app/data-objects/list/operations/operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/data-objects/list/operations/operations.ts -------------------------------------------------------------------------------- /e2e/app/format/externalinterfaces/externalinterfaces.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/format/externalinterfaces/externalinterfaces.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app/format/externalinterfaces/externalinterfaces.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/format/externalinterfaces/externalinterfaces.po.ts -------------------------------------------------------------------------------- /e2e/app/format/externalinterfaces/operations/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/format/externalinterfaces/operations/data.ts -------------------------------------------------------------------------------- /e2e/app/format/externalinterfaces/operations/operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/format/externalinterfaces/operations/operations.ts -------------------------------------------------------------------------------- /e2e/app/format/format.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/format/format.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app/format/format.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/format/format.po.ts -------------------------------------------------------------------------------- /e2e/app/format/operations/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/format/operations/data.ts -------------------------------------------------------------------------------- /e2e/app/format/operations/operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/format/operations/operations.ts -------------------------------------------------------------------------------- /e2e/app/home/home.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/home/home.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app/home/home.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/home/home.po.ts -------------------------------------------------------------------------------- /e2e/app/home/operations/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/home/operations/data.ts -------------------------------------------------------------------------------- /e2e/app/home/operations/operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/home/operations/operations.ts -------------------------------------------------------------------------------- /e2e/app/login/login.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/login/login.po.ts -------------------------------------------------------------------------------- /e2e/app/search/operations/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/search/operations/data.ts -------------------------------------------------------------------------------- /e2e/app/search/operations/operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/search/operations/operations.ts -------------------------------------------------------------------------------- /e2e/app/search/search.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/search/search.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app/search/search.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/search/search.po.ts -------------------------------------------------------------------------------- /e2e/app/smoke/smoke.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/app/smoke/smoke.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/config/README.md -------------------------------------------------------------------------------- /e2e/config/conf.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/config/conf.e2e.json -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /e2e/util/DataManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/util/DataManager.ts -------------------------------------------------------------------------------- /e2e/util/JsonSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/util/JsonSchema.ts -------------------------------------------------------------------------------- /e2e/util/S3Manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/util/S3Manager.ts -------------------------------------------------------------------------------- /e2e/util/database/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/util/database/queries.ts -------------------------------------------------------------------------------- /e2e/util/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/e2e/util/utils.ts -------------------------------------------------------------------------------- /herd-ui-dist-package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/herd-ui-dist-package/README.md -------------------------------------------------------------------------------- /herd-ui-dist-package/distDeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/herd-ui-dist-package/distDeploy.sh -------------------------------------------------------------------------------- /herd-ui-dist-package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/herd-ui-dist-package/package.json -------------------------------------------------------------------------------- /karma.conf.ci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/karma.conf.ci.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/karma.conf.js -------------------------------------------------------------------------------- /license-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/license-check.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.ci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/protractor.conf.ci.js -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /run-in-saucelab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/run-in-saucelab.sh -------------------------------------------------------------------------------- /setmeup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/setmeup.sh -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/app.component.scss -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/categories/categories-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/categories/categories-routing.module.ts -------------------------------------------------------------------------------- /src/app/categories/categories.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/categories/categories.module.ts -------------------------------------------------------------------------------- /src/app/categories/components/category-detail/category-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/categories/components/category-detail/category-detail.component.html -------------------------------------------------------------------------------- /src/app/categories/components/category-detail/category-detail.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/categories/components/category-detail/category-detail.component.scss -------------------------------------------------------------------------------- /src/app/categories/components/category-detail/category-detail.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/categories/components/category-detail/category-detail.component.spec.ts -------------------------------------------------------------------------------- /src/app/categories/components/category-detail/category-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/categories/components/category-detail/category-detail.component.ts -------------------------------------------------------------------------------- /src/app/categories/services/categories-detail-resolver.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/categories/services/categories-detail-resolver.spec.ts -------------------------------------------------------------------------------- /src/app/categories/services/categories-detail-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/categories/services/categories-detail-resolver.ts -------------------------------------------------------------------------------- /src/app/core/components/alerts/alerts.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/components/alerts/alerts.component.html -------------------------------------------------------------------------------- /src/app/core/components/alerts/alerts.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/components/alerts/alerts.component.scss -------------------------------------------------------------------------------- /src/app/core/components/alerts/alerts.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/components/alerts/alerts.component.spec.ts -------------------------------------------------------------------------------- /src/app/core/components/alerts/alerts.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/components/alerts/alerts.component.ts -------------------------------------------------------------------------------- /src/app/core/components/back-track/back-track.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/components/back-track/back-track.component.html -------------------------------------------------------------------------------- /src/app/core/components/back-track/back-track.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/components/back-track/back-track.component.scss -------------------------------------------------------------------------------- /src/app/core/components/back-track/back-track.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/components/back-track/back-track.component.spec.ts -------------------------------------------------------------------------------- /src/app/core/components/back-track/back-track.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/components/back-track/back-track.component.ts -------------------------------------------------------------------------------- /src/app/core/components/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/components/header/header.component.html -------------------------------------------------------------------------------- /src/app/core/components/header/header.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/components/header/header.component.scss -------------------------------------------------------------------------------- /src/app/core/components/header/header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/components/header/header.component.spec.ts -------------------------------------------------------------------------------- /src/app/core/components/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/components/header/header.component.ts -------------------------------------------------------------------------------- /src/app/core/components/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/components/home/home.component.html -------------------------------------------------------------------------------- /src/app/core/components/home/home.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/components/home/home.component.scss -------------------------------------------------------------------------------- /src/app/core/components/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/components/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/app/core/components/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/components/home/home.component.ts -------------------------------------------------------------------------------- /src/app/core/components/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/components/login/login.component.html -------------------------------------------------------------------------------- /src/app/core/components/login/login.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/components/login/login.component.scss -------------------------------------------------------------------------------- /src/app/core/components/login/login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/components/login/login.component.spec.ts -------------------------------------------------------------------------------- /src/app/core/components/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/components/login/login.component.ts -------------------------------------------------------------------------------- /src/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/core.module.ts -------------------------------------------------------------------------------- /src/app/core/services/alert.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/services/alert.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/services/alert.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/services/alert.service.ts -------------------------------------------------------------------------------- /src/app/core/services/auth-guard.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/services/auth-guard.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/services/auth-guard.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/services/auth-guard.service.ts -------------------------------------------------------------------------------- /src/app/core/services/custom-location.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/services/custom-location.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/services/custom-location.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/services/custom-location.service.ts -------------------------------------------------------------------------------- /src/app/core/services/custom-route-reuse-strategy.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/services/custom-route-reuse-strategy.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/services/custom-route-reuse-strategy.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/services/custom-route-reuse-strategy.service.ts -------------------------------------------------------------------------------- /src/app/core/services/http-intercept.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/services/http-intercept.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/services/http-intercept.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/services/http-intercept.service.ts -------------------------------------------------------------------------------- /src/app/core/services/no-auth-guard.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/services/no-auth-guard.service.ts -------------------------------------------------------------------------------- /src/app/core/services/user.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/services/user.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/services/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/core/services/user.service.ts -------------------------------------------------------------------------------- /src/app/data-entities/components/contacts/contacts.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-entities/components/contacts/contacts.component.html -------------------------------------------------------------------------------- /src/app/data-entities/components/contacts/contacts.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-entities/components/contacts/contacts.component.scss -------------------------------------------------------------------------------- /src/app/data-entities/components/contacts/contacts.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-entities/components/contacts/contacts.component.spec.ts -------------------------------------------------------------------------------- /src/app/data-entities/components/contacts/contacts.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-entities/components/contacts/contacts.component.ts -------------------------------------------------------------------------------- /src/app/data-entities/components/data-entity-detail/data-entity-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-entities/components/data-entity-detail/data-entity-detail.component.html -------------------------------------------------------------------------------- /src/app/data-entities/components/data-entity-detail/data-entity-detail.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-entities/components/data-entity-detail/data-entity-detail.component.scss -------------------------------------------------------------------------------- /src/app/data-entities/components/data-entity-detail/data-entity-detail.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-entities/components/data-entity-detail/data-entity-detail.component.spec.ts -------------------------------------------------------------------------------- /src/app/data-entities/components/data-entity-detail/data-entity-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-entities/components/data-entity-detail/data-entity-detail.component.ts -------------------------------------------------------------------------------- /src/app/data-entities/components/data-entity-list/data-entity-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-entities/components/data-entity-list/data-entity-list.component.html -------------------------------------------------------------------------------- /src/app/data-entities/components/data-entity-list/data-entity-list.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-entities/components/data-entity-list/data-entity-list.component.scss -------------------------------------------------------------------------------- /src/app/data-entities/components/data-entity-list/data-entity-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-entities/components/data-entity-list/data-entity-list.component.spec.ts -------------------------------------------------------------------------------- /src/app/data-entities/components/data-entity-list/data-entity-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-entities/components/data-entity-list/data-entity-list.component.ts -------------------------------------------------------------------------------- /src/app/data-entities/components/suggestions/suggestions.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-entities/components/suggestions/suggestions.component.html -------------------------------------------------------------------------------- /src/app/data-entities/components/suggestions/suggestions.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-entities/components/suggestions/suggestions.component.scss -------------------------------------------------------------------------------- /src/app/data-entities/components/suggestions/suggestions.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-entities/components/suggestions/suggestions.component.spec.ts -------------------------------------------------------------------------------- /src/app/data-entities/components/suggestions/suggestions.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-entities/components/suggestions/suggestions.component.ts -------------------------------------------------------------------------------- /src/app/data-entities/components/tags/tags.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-entities/components/tags/tags.component.html -------------------------------------------------------------------------------- /src/app/data-entities/components/tags/tags.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-entities/components/tags/tags.component.scss -------------------------------------------------------------------------------- /src/app/data-entities/components/tags/tags.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-entities/components/tags/tags.component.spec.ts -------------------------------------------------------------------------------- /src/app/data-entities/components/tags/tags.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-entities/components/tags/tags.component.ts -------------------------------------------------------------------------------- /src/app/data-entities/data-entities-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-entities/data-entities-routing.module.ts -------------------------------------------------------------------------------- /src/app/data-entities/data-entities.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-entities/data-entities.module.ts -------------------------------------------------------------------------------- /src/app/data-entities/services/data-entity-detail-resolver.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-entities/services/data-entity-detail-resolver.spec.ts -------------------------------------------------------------------------------- /src/app/data-entities/services/data-entity-detail-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-entities/services/data-entity-detail-resolver.ts -------------------------------------------------------------------------------- /src/app/data-entities/services/data-entity-list-resolver.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-entities/services/data-entity-list-resolver.spec.ts -------------------------------------------------------------------------------- /src/app/data-entities/services/data-entity-list-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-entities/services/data-entity-list-resolver.ts -------------------------------------------------------------------------------- /src/app/data-objects/components/attribute-filter/attribute-filter.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/attribute-filter/attribute-filter.component.html -------------------------------------------------------------------------------- /src/app/data-objects/components/attribute-filter/attribute-filter.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/attribute-filter/attribute-filter.component.scss -------------------------------------------------------------------------------- /src/app/data-objects/components/attribute-filter/attribute-filter.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/attribute-filter/attribute-filter.component.spec.ts -------------------------------------------------------------------------------- /src/app/data-objects/components/attribute-filter/attribute-filter.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/attribute-filter/attribute-filter.component.ts -------------------------------------------------------------------------------- /src/app/data-objects/components/data-object-detail/data-object-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/data-object-detail/data-object-detail.component.html -------------------------------------------------------------------------------- /src/app/data-objects/components/data-object-detail/data-object-detail.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/data-object-detail/data-object-detail.component.scss -------------------------------------------------------------------------------- /src/app/data-objects/components/data-object-detail/data-object-detail.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/data-object-detail/data-object-detail.component.spec.ts -------------------------------------------------------------------------------- /src/app/data-objects/components/data-object-detail/data-object-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/data-object-detail/data-object-detail.component.ts -------------------------------------------------------------------------------- /src/app/data-objects/components/data-object-list-filters/data-object-list-filters.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/data-object-list-filters/data-object-list-filters.component.html -------------------------------------------------------------------------------- /src/app/data-objects/components/data-object-list-filters/data-object-list-filters.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/data-object-list-filters/data-object-list-filters.component.scss -------------------------------------------------------------------------------- /src/app/data-objects/components/data-object-list-filters/data-object-list-filters.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/data-object-list-filters/data-object-list-filters.component.spec.ts -------------------------------------------------------------------------------- /src/app/data-objects/components/data-object-list-filters/data-object-list-filters.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/data-object-list-filters/data-object-list-filters.component.ts -------------------------------------------------------------------------------- /src/app/data-objects/components/data-object-list/data-object-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/data-object-list/data-object-list.component.html -------------------------------------------------------------------------------- /src/app/data-objects/components/data-object-list/data-object-list.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/data-object-list/data-object-list.component.scss -------------------------------------------------------------------------------- /src/app/data-objects/components/data-object-list/data-object-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/data-object-list/data-object-list.component.spec.ts -------------------------------------------------------------------------------- /src/app/data-objects/components/data-object-list/data-object-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/data-object-list/data-object-list.component.ts -------------------------------------------------------------------------------- /src/app/data-objects/components/filter-template/filter-template.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/filter-template/filter-template.component.html -------------------------------------------------------------------------------- /src/app/data-objects/components/filter-template/filter-template.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/filter-template/filter-template.component.scss -------------------------------------------------------------------------------- /src/app/data-objects/components/filter-template/filter-template.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/filter-template/filter-template.component.spec.ts -------------------------------------------------------------------------------- /src/app/data-objects/components/filter-template/filter-template.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/filter-template/filter-template.component.ts -------------------------------------------------------------------------------- /src/app/data-objects/components/latest-valid-version-filter/latest-valid-version-filter.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/latest-valid-version-filter/latest-valid-version-filter.component.html -------------------------------------------------------------------------------- /src/app/data-objects/components/latest-valid-version-filter/latest-valid-version-filter.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/latest-valid-version-filter/latest-valid-version-filter.component.scss -------------------------------------------------------------------------------- /src/app/data-objects/components/latest-valid-version-filter/latest-valid-version-filter.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/latest-valid-version-filter/latest-valid-version-filter.component.spec.ts -------------------------------------------------------------------------------- /src/app/data-objects/components/latest-valid-version-filter/latest-valid-version-filter.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/latest-valid-version-filter/latest-valid-version-filter.component.ts -------------------------------------------------------------------------------- /src/app/data-objects/components/lineage/lineage.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/lineage/lineage.component.html -------------------------------------------------------------------------------- /src/app/data-objects/components/lineage/lineage.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/lineage/lineage.component.scss -------------------------------------------------------------------------------- /src/app/data-objects/components/lineage/lineage.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/lineage/lineage.component.spec.ts -------------------------------------------------------------------------------- /src/app/data-objects/components/lineage/lineage.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/lineage/lineage.component.ts -------------------------------------------------------------------------------- /src/app/data-objects/components/partition-filter/partition-filter.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/partition-filter/partition-filter.component.html -------------------------------------------------------------------------------- /src/app/data-objects/components/partition-filter/partition-filter.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/partition-filter/partition-filter.component.scss -------------------------------------------------------------------------------- /src/app/data-objects/components/partition-filter/partition-filter.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/partition-filter/partition-filter.component.spec.ts -------------------------------------------------------------------------------- /src/app/data-objects/components/partition-filter/partition-filter.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/partition-filter/partition-filter.component.ts -------------------------------------------------------------------------------- /src/app/data-objects/components/registration-date-range-filter/registration-date-range-filter.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/registration-date-range-filter/registration-date-range-filter.component.html -------------------------------------------------------------------------------- /src/app/data-objects/components/registration-date-range-filter/registration-date-range-filter.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/registration-date-range-filter/registration-date-range-filter.component.scss -------------------------------------------------------------------------------- /src/app/data-objects/components/registration-date-range-filter/registration-date-range-filter.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/registration-date-range-filter/registration-date-range-filter.component.spec.ts -------------------------------------------------------------------------------- /src/app/data-objects/components/registration-date-range-filter/registration-date-range-filter.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/registration-date-range-filter/registration-date-range-filter.component.ts -------------------------------------------------------------------------------- /src/app/data-objects/components/storage-units/storage-units.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/storage-units/storage-units.component.html -------------------------------------------------------------------------------- /src/app/data-objects/components/storage-units/storage-units.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/storage-units/storage-units.component.scss -------------------------------------------------------------------------------- /src/app/data-objects/components/storage-units/storage-units.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/storage-units/storage-units.component.spec.ts -------------------------------------------------------------------------------- /src/app/data-objects/components/storage-units/storage-units.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/components/storage-units/storage-units.component.ts -------------------------------------------------------------------------------- /src/app/data-objects/data-objects-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/data-objects-routing.module.ts -------------------------------------------------------------------------------- /src/app/data-objects/data-objects.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/data-objects.module.ts -------------------------------------------------------------------------------- /src/app/data-objects/services/data-object-detail-resolver.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/services/data-object-detail-resolver.service.spec.ts -------------------------------------------------------------------------------- /src/app/data-objects/services/data-object-detail-resolver.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/services/data-object-detail-resolver.service.ts -------------------------------------------------------------------------------- /src/app/data-objects/services/data-objects-resolver.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/services/data-objects-resolver.service.spec.ts -------------------------------------------------------------------------------- /src/app/data-objects/services/data-objects-resolver.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/data-objects/services/data-objects-resolver.service.ts -------------------------------------------------------------------------------- /src/app/formats/components/attribute-definitions/attribute-definitions.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/formats/components/attribute-definitions/attribute-definitions.component.html -------------------------------------------------------------------------------- /src/app/formats/components/attribute-definitions/attribute-definitions.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/formats/components/attribute-definitions/attribute-definitions.component.scss -------------------------------------------------------------------------------- /src/app/formats/components/attribute-definitions/attribute-definitions.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/formats/components/attribute-definitions/attribute-definitions.component.spec.ts -------------------------------------------------------------------------------- /src/app/formats/components/attribute-definitions/attribute-definitions.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/formats/components/attribute-definitions/attribute-definitions.component.ts -------------------------------------------------------------------------------- /src/app/formats/components/format-detail/format-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/formats/components/format-detail/format-detail.component.html -------------------------------------------------------------------------------- /src/app/formats/components/format-detail/format-detail.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/formats/components/format-detail/format-detail.component.scss -------------------------------------------------------------------------------- /src/app/formats/components/format-detail/format-detail.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/formats/components/format-detail/format-detail.component.spec.ts -------------------------------------------------------------------------------- /src/app/formats/components/format-detail/format-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/formats/components/format-detail/format-detail.component.ts -------------------------------------------------------------------------------- /src/app/formats/components/schema-columns/schema-columns.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/formats/components/schema-columns/schema-columns.component.html -------------------------------------------------------------------------------- /src/app/formats/components/schema-columns/schema-columns.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/formats/components/schema-columns/schema-columns.component.scss -------------------------------------------------------------------------------- /src/app/formats/components/schema-columns/schema-columns.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/formats/components/schema-columns/schema-columns.component.spec.ts -------------------------------------------------------------------------------- /src/app/formats/components/schema-columns/schema-columns.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/formats/components/schema-columns/schema-columns.component.ts -------------------------------------------------------------------------------- /src/app/formats/format-resolver.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/formats/format-resolver.service.spec.ts -------------------------------------------------------------------------------- /src/app/formats/format-resolver.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/formats/format-resolver.service.ts -------------------------------------------------------------------------------- /src/app/formats/formats-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/formats/formats-routing.module.ts -------------------------------------------------------------------------------- /src/app/formats/formats.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/formats/formats.module.ts -------------------------------------------------------------------------------- /src/app/search/components/search/search.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/search/components/search/search.component.html -------------------------------------------------------------------------------- /src/app/search/components/search/search.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/search/components/search/search.component.scss -------------------------------------------------------------------------------- /src/app/search/components/search/search.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/search/components/search/search.component.spec.ts -------------------------------------------------------------------------------- /src/app/search/components/search/search.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/search/components/search/search.component.ts -------------------------------------------------------------------------------- /src/app/search/search-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/search/search-routing.module.ts -------------------------------------------------------------------------------- /src/app/search/search.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/search/search.module.ts -------------------------------------------------------------------------------- /src/app/search/services/search-resolve.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/search/services/search-resolve.service.spec.ts -------------------------------------------------------------------------------- /src/app/search/services/search-resolver.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/search/services/search-resolver.service.ts -------------------------------------------------------------------------------- /src/app/shared/components/attributes/attributes.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/attributes/attributes.component.html -------------------------------------------------------------------------------- /src/app/shared/components/attributes/attributes.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/attributes/attributes.component.scss -------------------------------------------------------------------------------- /src/app/shared/components/attributes/attributes.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/attributes/attributes.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/attributes/attributes.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/attributes/attributes.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/edit/edit.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/edit/edit.component.html -------------------------------------------------------------------------------- /src/app/shared/components/edit/edit.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/edit/edit.component.scss -------------------------------------------------------------------------------- /src/app/shared/components/edit/edit.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/edit/edit.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/edit/edit.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/edit/edit.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/ellipsis-overflow/ellipsis-overflow.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/ellipsis-overflow/ellipsis-overflow.component.html -------------------------------------------------------------------------------- /src/app/shared/components/ellipsis-overflow/ellipsis-overflow.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/ellipsis-overflow/ellipsis-overflow.component.scss -------------------------------------------------------------------------------- /src/app/shared/components/ellipsis-overflow/ellipsis-overflow.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/ellipsis-overflow/ellipsis-overflow.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/ellipsis-overflow/ellipsis-overflow.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/ellipsis-overflow/ellipsis-overflow.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/facet/facet.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/facet/facet.component.html -------------------------------------------------------------------------------- /src/app/shared/components/facet/facet.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/facet/facet.component.scss -------------------------------------------------------------------------------- /src/app/shared/components/facet/facet.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/facet/facet.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/facet/facet.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/facet/facet.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/generic-view/generic-view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/generic-view/generic-view.component.html -------------------------------------------------------------------------------- /src/app/shared/components/generic-view/generic-view.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/generic-view/generic-view.component.scss -------------------------------------------------------------------------------- /src/app/shared/components/generic-view/generic-view.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/generic-view/generic-view.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/generic-view/generic-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/generic-view/generic-view.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/global-search/global-search.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/global-search/global-search.component.html -------------------------------------------------------------------------------- /src/app/shared/components/global-search/global-search.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/global-search/global-search.component.scss -------------------------------------------------------------------------------- /src/app/shared/components/global-search/global-search.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/global-search/global-search.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/global-search/global-search.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/global-search/global-search.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/side-action/side-action.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/side-action/side-action.component.html -------------------------------------------------------------------------------- /src/app/shared/components/side-action/side-action.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/side-action/side-action.component.scss -------------------------------------------------------------------------------- /src/app/shared/components/side-action/side-action.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/side-action/side-action.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/side-action/side-action.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/side-action/side-action.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/side-actions/side-actions.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/side-actions/side-actions.component.html -------------------------------------------------------------------------------- /src/app/shared/components/side-actions/side-actions.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/side-actions/side-actions.component.scss -------------------------------------------------------------------------------- /src/app/shared/components/side-actions/side-actions.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/side-actions/side-actions.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/side-actions/side-actions.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/side-actions/side-actions.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/spinner/spinner.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/spinner/spinner.component.html -------------------------------------------------------------------------------- /src/app/shared/components/spinner/spinner.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/spinner/spinner.component.scss -------------------------------------------------------------------------------- /src/app/shared/components/spinner/spinner.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/spinner/spinner.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/spinner/spinner.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/spinner/spinner.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/tri-state/tri-state.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/tri-state/tri-state.component.html -------------------------------------------------------------------------------- /src/app/shared/components/tri-state/tri-state.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/tri-state/tri-state.component.scss -------------------------------------------------------------------------------- /src/app/shared/components/tri-state/tri-state.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/tri-state/tri-state.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/tri-state/tri-state.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/tri-state/tri-state.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/truncated-content/truncated-content.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/truncated-content/truncated-content.component.html -------------------------------------------------------------------------------- /src/app/shared/components/truncated-content/truncated-content.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/truncated-content/truncated-content.component.scss -------------------------------------------------------------------------------- /src/app/shared/components/truncated-content/truncated-content.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/truncated-content/truncated-content.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/truncated-content/truncated-content.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/components/truncated-content/truncated-content.component.ts -------------------------------------------------------------------------------- /src/app/shared/directive/authorized/authorized.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/directive/authorized/authorized.directive.spec.ts -------------------------------------------------------------------------------- /src/app/shared/directive/authorized/authorized.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/directive/authorized/authorized.directive.ts -------------------------------------------------------------------------------- /src/app/shared/directive/file-downloader/file-downloader.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/directive/file-downloader/file-downloader.directive.spec.ts -------------------------------------------------------------------------------- /src/app/shared/directive/file-downloader/file-downloader.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/directive/file-downloader/file-downloader.directive.ts -------------------------------------------------------------------------------- /src/app/shared/pipes/safe-html.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/pipes/safe-html.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/shared/pipes/safe-html.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/pipes/safe-html.pipe.ts -------------------------------------------------------------------------------- /src/app/shared/read-more/read-more.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/read-more/read-more.component.html -------------------------------------------------------------------------------- /src/app/shared/read-more/read-more.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/read-more/read-more.component.scss -------------------------------------------------------------------------------- /src/app/shared/read-more/read-more.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/read-more/read-more.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/read-more/read-more.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/read-more/read-more.component.ts -------------------------------------------------------------------------------- /src/app/shared/services/beast-actions.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/services/beast-actions.enum.ts -------------------------------------------------------------------------------- /src/app/shared/services/beast-components.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/services/beast-components.enum.ts -------------------------------------------------------------------------------- /src/app/shared/services/beast.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/services/beast.service.spec.ts -------------------------------------------------------------------------------- /src/app/shared/services/beast.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/services/beast.service.ts -------------------------------------------------------------------------------- /src/app/shared/services/encryption.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/services/encryption.service.spec.ts -------------------------------------------------------------------------------- /src/app/shared/services/encryption.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/services/encryption.service.ts -------------------------------------------------------------------------------- /src/app/shared/services/facet-tri-state.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/services/facet-tri-state.enum.ts -------------------------------------------------------------------------------- /src/app/shared/services/highlight-display-mapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/services/highlight-display-mapping.ts -------------------------------------------------------------------------------- /src/app/shared/services/search.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/services/search.service.spec.ts -------------------------------------------------------------------------------- /src/app/shared/services/search.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/services/search.service.ts -------------------------------------------------------------------------------- /src/app/shared/services/tri-state-enum.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/services/tri-state-enum.enum.ts -------------------------------------------------------------------------------- /src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /src/app/shared/styles/shared.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/styles/shared.scss -------------------------------------------------------------------------------- /src/app/shared/utils/app-icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/utils/app-icons.ts -------------------------------------------------------------------------------- /src/app/shared/utils/click-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/shared/utils/click-helper.ts -------------------------------------------------------------------------------- /src/app/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/app/utils/utils.ts -------------------------------------------------------------------------------- /src/assets/svg/LOGO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/assets/svg/LOGO.svg -------------------------------------------------------------------------------- /src/assets/svg/maze.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/assets/svg/maze.svg -------------------------------------------------------------------------------- /src/assets/svg/testing-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/assets/svg/testing-image.svg -------------------------------------------------------------------------------- /src/ckset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/ckset.ts -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/testing/IndexSearchMockData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/testing/IndexSearchMockData.ts -------------------------------------------------------------------------------- /src/testing/RelatedDataEntities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/testing/RelatedDataEntities.ts -------------------------------------------------------------------------------- /src/testing/mock-ckeditor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/testing/mock-ckeditor.component.ts -------------------------------------------------------------------------------- /src/testing/mockFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/testing/mockFormat.ts -------------------------------------------------------------------------------- /src/testing/router-stubs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/testing/router-stubs.ts -------------------------------------------------------------------------------- /src/testing/testing-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/testing/testing-utils.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FINRAOS/herd-ui/HEAD/tslint.json --------------------------------------------------------------------------------