├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github ├── CODEOWNERS └── workflows │ ├── ci.yml │ ├── deploy-docs.yml │ └── release.yml ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg └── pre-commit ├── .nxignore ├── .prettierignore ├── .prettierrc ├── .storybook ├── main.js └── tsconfig.json ├── .vscode └── extensions.json ├── CHANGELOG.md ├── LICENCE ├── README.md ├── apps ├── docs-app-e2e │ ├── .eslintrc.json │ ├── cypress.json │ ├── project.json │ ├── src │ │ ├── fixtures │ │ │ └── example.json │ │ ├── integration │ │ │ └── app.spec.ts │ │ ├── plugins │ │ │ └── index.js │ │ └── support │ │ │ ├── app.po.ts │ │ │ ├── commands.ts │ │ │ └── index.ts │ ├── tsconfig.e2e.json │ └── tsconfig.json ├── docs-app │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── app │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── core │ │ │ │ ├── core.module.ts │ │ │ │ ├── index.ts │ │ │ │ ├── models │ │ │ │ │ └── page.ts │ │ │ │ ├── services │ │ │ │ │ ├── highlight.service.ts │ │ │ │ │ ├── konami.service.ts │ │ │ │ │ └── libraries.service.ts │ │ │ │ ├── store │ │ │ │ │ ├── core.actions.ts │ │ │ │ │ ├── core.facade.ts │ │ │ │ │ └── core.state.ts │ │ │ │ ├── utils │ │ │ │ │ ├── calculate-reading-time.ts │ │ │ │ │ ├── escape-html.ts │ │ │ │ │ └── insert-if.ts │ │ │ │ └── views │ │ │ │ │ └── page-not-found │ │ │ │ │ ├── page-not-found.component.html │ │ │ │ │ ├── page-not-found.component.scss │ │ │ │ │ └── page-not-found.component.ts │ │ │ ├── features │ │ │ │ ├── architecture │ │ │ │ │ ├── architecture-routing.module.ts │ │ │ │ │ ├── architecture.component.html │ │ │ │ │ ├── architecture.component.scss │ │ │ │ │ ├── architecture.component.ts │ │ │ │ │ ├── architecture.module.ts │ │ │ │ │ ├── components │ │ │ │ │ │ ├── cd-default │ │ │ │ │ │ │ ├── cd-default.component.html │ │ │ │ │ │ │ ├── cd-default.component.scss │ │ │ │ │ │ │ └── cd-default.component.ts │ │ │ │ │ │ ├── cd-on-push │ │ │ │ │ │ │ ├── cd-on-push.component.html │ │ │ │ │ │ │ ├── cd-on-push.component.scss │ │ │ │ │ │ │ └── cd-on-push.component.ts │ │ │ │ │ │ ├── on-push-async-pipe │ │ │ │ │ │ │ ├── on-push-async-pipe.component.html │ │ │ │ │ │ │ ├── on-push-async-pipe.component.scss │ │ │ │ │ │ │ └── on-push-async-pipe.component.ts │ │ │ │ │ │ └── on-push-cd-ref │ │ │ │ │ │ │ ├── on-push-cd-ref.component.html │ │ │ │ │ │ │ ├── on-push-cd-ref.component.scss │ │ │ │ │ │ │ └── on-push-cd-ref.component.ts │ │ │ │ │ └── views │ │ │ │ │ │ ├── components-architecture │ │ │ │ │ │ ├── components-architecture.component.html │ │ │ │ │ │ ├── components-architecture.component.scss │ │ │ │ │ │ └── components-architecture.component.ts │ │ │ │ │ │ ├── env-apis-and-flags │ │ │ │ │ │ ├── env-apis-and-flags.component.html │ │ │ │ │ │ ├── env-apis-and-flags.component.scss │ │ │ │ │ │ └── env-apis-and-flags.component.ts │ │ │ │ │ │ ├── general-form-article │ │ │ │ │ │ ├── general-form-article.component.html │ │ │ │ │ │ ├── general-form-article.component.scss │ │ │ │ │ │ └── general-form-article.component.ts │ │ │ │ │ │ ├── getting-started │ │ │ │ │ │ ├── getting-started.component.html │ │ │ │ │ │ ├── getting-started.component.scss │ │ │ │ │ │ └── getting-started.component.ts │ │ │ │ │ │ ├── global-architecture │ │ │ │ │ │ ├── global-architecture.component.html │ │ │ │ │ │ ├── global-architecture.component.scss │ │ │ │ │ │ └── global-architecture.component.ts │ │ │ │ │ │ └── styling │ │ │ │ │ │ ├── styling.component.html │ │ │ │ │ │ ├── styling.component.scss │ │ │ │ │ │ └── styling.component.ts │ │ │ │ └── packages-doc │ │ │ │ │ ├── features │ │ │ │ │ ├── model-utils-doc │ │ │ │ │ │ ├── model-utils-doc-routing.module.ts │ │ │ │ │ │ ├── model-utils-doc.module.ts │ │ │ │ │ │ └── views │ │ │ │ │ │ │ ├── completable │ │ │ │ │ │ │ ├── completable.component.html │ │ │ │ │ │ │ ├── completable.component.scss │ │ │ │ │ │ │ └── completable.component.ts │ │ │ │ │ │ │ ├── date-to-date-string │ │ │ │ │ │ │ ├── date-to-date-string.view.html │ │ │ │ │ │ │ ├── date-to-date-string.view.scss │ │ │ │ │ │ │ └── date-to-date-string.view.ts │ │ │ │ │ │ │ ├── dictionary │ │ │ │ │ │ │ ├── dictionary.view.html │ │ │ │ │ │ │ ├── dictionary.view.scss │ │ │ │ │ │ │ └── dictionary.view.ts │ │ │ │ │ │ │ ├── download-blob │ │ │ │ │ │ │ ├── download-blob.view.html │ │ │ │ │ │ │ ├── download-blob.view.scss │ │ │ │ │ │ │ └── download-blob.view.ts │ │ │ │ │ │ │ ├── get-all-properties │ │ │ │ │ │ │ ├── get-all-properties.view.html │ │ │ │ │ │ │ ├── get-all-properties.view.scss │ │ │ │ │ │ │ └── get-all-properties.view.ts │ │ │ │ │ │ │ ├── lang-string │ │ │ │ │ │ │ ├── lang-string.view.html │ │ │ │ │ │ │ ├── lang-string.view.scss │ │ │ │ │ │ │ └── lang-string.view.ts │ │ │ │ │ │ │ ├── many │ │ │ │ │ │ │ ├── many.view.html │ │ │ │ │ │ │ ├── many.view.scss │ │ │ │ │ │ │ └── many.view.ts │ │ │ │ │ │ │ ├── nil │ │ │ │ │ │ │ ├── nil.view.html │ │ │ │ │ │ │ ├── nil.view.scss │ │ │ │ │ │ │ └── nil.view.ts │ │ │ │ │ │ │ ├── or-else │ │ │ │ │ │ │ ├── or-else.view.html │ │ │ │ │ │ │ ├── or-else.view.scss │ │ │ │ │ │ │ └── or-else.view.ts │ │ │ │ │ │ │ ├── pagination │ │ │ │ │ │ │ ├── pagination.view.html │ │ │ │ │ │ │ ├── pagination.view.scss │ │ │ │ │ │ │ └── pagination.view.ts │ │ │ │ │ │ │ ├── select-option │ │ │ │ │ │ │ ├── select-option.view.html │ │ │ │ │ │ │ ├── select-option.view.scss │ │ │ │ │ │ │ └── select-option.view.ts │ │ │ │ │ │ │ ├── select-prop │ │ │ │ │ │ │ ├── select-prop.view.html │ │ │ │ │ │ │ ├── select-prop.view.scss │ │ │ │ │ │ │ └── select-prop.view.ts │ │ │ │ │ │ │ ├── strict-entries │ │ │ │ │ │ │ ├── strict-entries.view.html │ │ │ │ │ │ │ ├── strict-entries.view.scss │ │ │ │ │ │ │ └── strict-entries.view.ts │ │ │ │ │ │ │ └── sub-sink │ │ │ │ │ │ │ ├── sub-sink.view.html │ │ │ │ │ │ │ ├── sub-sink.view.scss │ │ │ │ │ │ │ └── sub-sink.view.ts │ │ │ │ │ ├── ng-core-doc │ │ │ │ │ │ ├── ng-core-doc-routing.module.ts │ │ │ │ │ │ ├── ng-core-doc.module.ts │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ └── ng-core-pages.service.ts │ │ │ │ │ │ └── views │ │ │ │ │ │ │ ├── logger-doc │ │ │ │ │ │ │ ├── logger-doc.component.html │ │ │ │ │ │ │ ├── logger-doc.component.scss │ │ │ │ │ │ │ └── logger-doc.component.ts │ │ │ │ │ │ │ └── on-destroy-mixin-doc │ │ │ │ │ │ │ ├── on-destroy-mixin-doc.component.html │ │ │ │ │ │ │ ├── on-destroy-mixin-doc.component.scss │ │ │ │ │ │ │ └── on-destroy-mixin-doc.component.ts │ │ │ │ │ └── ng-yasgui-doc │ │ │ │ │ │ ├── ng-yasgui-doc-routing.module.ts │ │ │ │ │ │ ├── ng-yasgui-doc.component.html │ │ │ │ │ │ ├── ng-yasgui-doc.component.scss │ │ │ │ │ │ ├── ng-yasgui-doc.component.ts │ │ │ │ │ │ └── ng-yasgui-doc.module.ts │ │ │ │ │ ├── packages-doc-routing.module.ts │ │ │ │ │ ├── packages-doc.module.ts │ │ │ │ │ └── views │ │ │ │ │ └── libraries-list │ │ │ │ │ ├── libraries-list.view.html │ │ │ │ │ ├── libraries-list.view.scss │ │ │ │ │ └── libraries-list.view.ts │ │ │ └── shared │ │ │ │ ├── components │ │ │ │ ├── anchor-nav │ │ │ │ │ ├── anchor-nav.component.html │ │ │ │ │ ├── anchor-nav.component.scss │ │ │ │ │ └── anchor-nav.component.ts │ │ │ │ ├── api-table │ │ │ │ │ ├── api-table.component.html │ │ │ │ │ ├── api-table.component.scss │ │ │ │ │ └── api-table.component.ts │ │ │ │ ├── article-title │ │ │ │ │ ├── article-title.component.html │ │ │ │ │ ├── article-title.component.scss │ │ │ │ │ └── article-title.component.ts │ │ │ │ ├── article │ │ │ │ │ ├── article.component.html │ │ │ │ │ ├── article.component.scss │ │ │ │ │ └── article.component.ts │ │ │ │ ├── blockquote │ │ │ │ │ ├── blockquote.component.html │ │ │ │ │ ├── blockquote.component.scss │ │ │ │ │ └── blockquote.component.ts │ │ │ │ ├── code-block │ │ │ │ │ ├── code-block.component.html │ │ │ │ │ ├── code-block.component.scss │ │ │ │ │ └── code-block.component.ts │ │ │ │ ├── code-link │ │ │ │ │ ├── code-link.component.html │ │ │ │ │ ├── code-link.component.scss │ │ │ │ │ └── code-link.component.ts │ │ │ │ ├── img-tooltip │ │ │ │ │ ├── img-tooltip.component.html │ │ │ │ │ ├── img-tooltip.component.scss │ │ │ │ │ └── img-tooltip.component.ts │ │ │ │ ├── inline-code │ │ │ │ │ ├── inline-code.component.html │ │ │ │ │ ├── inline-code.component.scss │ │ │ │ │ └── inline-code.component.ts │ │ │ │ └── section-nav │ │ │ │ │ ├── section-nav.component.html │ │ │ │ │ ├── section-nav.component.scss │ │ │ │ │ └── section-nav.component.ts │ │ │ │ ├── directives │ │ │ │ ├── abstract-tooltip.directive.ts │ │ │ │ ├── anchor.directive.ts │ │ │ │ ├── component-tooltip.directive.ts │ │ │ │ ├── img-tooltip.directive.ts │ │ │ │ └── mat-tab-routed.directive.ts │ │ │ │ ├── index.ts │ │ │ │ ├── models │ │ │ │ └── anchor.ts │ │ │ │ ├── pipes │ │ │ │ ├── escape-html.pipe.ts │ │ │ │ └── reading-time.pipe.ts │ │ │ │ ├── services │ │ │ │ └── anchor.service.ts │ │ │ │ ├── shared.module.ts │ │ │ │ └── views │ │ │ │ └── external-doc │ │ │ │ ├── external-doc.view.html │ │ │ │ ├── external-doc.view.scss │ │ │ │ └── external-doc.view.ts │ │ ├── assets │ │ │ ├── architecture │ │ │ │ ├── basic-module.png │ │ │ │ ├── git-hooks-intellij.png │ │ │ │ ├── module-drawer.jpg │ │ │ │ ├── module-full.png │ │ │ │ ├── modules-all.png │ │ │ │ ├── modules-core-file-tree.png │ │ │ │ ├── modules-dependencies.png │ │ │ │ ├── modules-feature.png │ │ │ │ ├── modules-shared.png │ │ │ │ ├── styles-bootstrap.png │ │ │ │ └── styles-structure.png │ │ │ └── icons │ │ │ │ ├── bitbucket.svg │ │ │ │ └── cognizone.png │ │ ├── environments │ │ │ ├── environment-model.ts │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles │ │ │ ├── abstracts │ │ │ │ ├── _mixins.scss │ │ │ │ └── _variables.scss │ │ │ ├── base │ │ │ │ ├── _base.scss │ │ │ │ └── _typography.scss │ │ │ ├── layout │ │ │ │ └── _grid.scss │ │ │ ├── main.scss │ │ │ ├── themes │ │ │ │ └── dark │ │ │ │ │ ├── abstracts │ │ │ │ │ └── _variables.scss │ │ │ │ │ └── main.scss │ │ │ └── vendors │ │ │ │ ├── _bootstrap.scss │ │ │ │ ├── _material.scss │ │ │ │ ├── _prismjs.scss │ │ │ │ └── bootstrap │ │ │ │ ├── _abstract.scss │ │ │ │ ├── _base.scss │ │ │ │ └── _override.scss │ │ └── test-setup.ts │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── docs │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── docs │ │ ├── guides │ │ │ └── application-profile.md │ │ └── libraries │ │ │ ├── application-profile │ │ │ ├── _description.md │ │ │ └── index.mdx │ │ │ ├── devtools │ │ │ ├── _description.md │ │ │ └── index.mdx │ │ │ ├── elastic-explorer │ │ │ ├── _description.md │ │ │ ├── index.mdx │ │ │ └── user-guide │ │ │ │ ├── about.md │ │ │ │ ├── how-to-use.md │ │ │ │ └── installation.md │ │ │ ├── elastic │ │ │ ├── _description.md │ │ │ └── index.mdx │ │ │ ├── i18n-transloco │ │ │ ├── _description.md │ │ │ └── index.mdx │ │ │ ├── i18n │ │ │ ├── _description.md │ │ │ └── index.mdx │ │ │ ├── index.mdx │ │ │ ├── json-model-graph │ │ │ ├── _description.md │ │ │ └── index.mdx │ │ │ ├── legi-cv │ │ │ ├── _description.md │ │ │ └── index.mdx │ │ │ ├── legi-shared │ │ │ ├── _description.md │ │ │ └── index.mdx │ │ │ ├── material-icons │ │ │ ├── _description.md │ │ │ └── index.mdx │ │ │ ├── model-utils │ │ │ ├── _description.md │ │ │ └── index.mdx │ │ │ ├── ng-application-profile │ │ │ ├── _description.md │ │ │ └── index.mdx │ │ │ ├── ng-core │ │ │ ├── _description.md │ │ │ └── index.mdx │ │ │ ├── ng-yasgui │ │ │ ├── _description.md │ │ │ └── index.mdx │ │ │ ├── operation │ │ │ ├── _description.md │ │ │ └── index.mdx │ │ │ ├── permissions │ │ │ ├── _description.md │ │ │ └── index.mdx │ │ │ ├── transloco-langstring │ │ │ ├── _description.md │ │ │ └── index.mdx │ │ │ └── user-action │ │ │ ├── _description.md │ │ │ └── index.mdx │ ├── docusaurus.config.js │ ├── package-lock.json │ ├── package.json │ ├── sidebars.js │ ├── src │ │ ├── components │ │ │ ├── HomepageFeatures.module.css │ │ │ └── HomepageFeatures.tsx │ │ ├── css │ │ │ └── custom.css │ │ └── pages │ │ │ ├── index.module.css │ │ │ └── index.tsx │ ├── static │ │ ├── .nojekyll │ │ ├── elastic-explorer │ │ │ ├── elastic-explorer-chrome-extension.zip │ │ │ ├── elastic-instances.json │ │ │ └── img │ │ │ │ ├── allow.png │ │ │ │ ├── dataValidation.png │ │ │ │ ├── elasticExplorer.png │ │ │ │ ├── facets.png │ │ │ │ ├── included.png │ │ │ │ ├── index.png │ │ │ │ ├── jsonModel.png │ │ │ │ ├── jsonModelFlatGraph.png │ │ │ │ ├── jsonUpload.png │ │ │ │ ├── manualMode.png │ │ │ │ ├── multipleTypes.png │ │ │ │ ├── rawData.png │ │ │ │ ├── rawFormat.png │ │ │ │ ├── searchByKeyword.png │ │ │ │ ├── searchByUri.png │ │ │ │ ├── structured.png │ │ │ │ ├── table.png │ │ │ │ ├── uriFilter.png │ │ │ │ └── webRemoval.png │ │ └── img │ │ │ ├── favicon.ico │ │ │ └── logo.png │ └── tsconfig.json ├── elastic-explorer-chrome-extension-e2e │ ├── .eslintrc.json │ ├── cypress.json │ ├── project.json │ ├── src │ │ ├── fixtures │ │ │ └── example.json │ │ ├── integration │ │ │ └── app.spec.ts │ │ ├── plugins │ │ │ └── index.js │ │ └── support │ │ │ ├── app.po.ts │ │ │ ├── commands.ts │ │ │ └── index.ts │ ├── tsconfig.e2e.json │ └── tsconfig.json ├── elastic-explorer-chrome-extension │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── app │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── core │ │ │ │ ├── core.module.ts │ │ │ │ ├── guards │ │ │ │ │ └── protocol.guard.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interceptors │ │ │ │ │ └── .gitkeep │ │ │ │ ├── models │ │ │ │ │ └── .gitkeep │ │ │ │ ├── services │ │ │ │ │ ├── protocol.service.ts │ │ │ │ │ └── transloco-http-loader.service.ts │ │ │ │ └── store │ │ │ │ │ └── .gitkeep │ │ │ ├── features │ │ │ │ └── data-explorer │ │ │ │ │ └── data-explorer.module.ts │ │ │ ├── libs │ │ │ │ ├── elastic-explorer │ │ │ │ │ └── src │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── elastic-explorer-routing.module.ts │ │ │ │ │ │ ├── elastic-explorer.module.ts │ │ │ │ │ │ ├── modules │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ │ │ └── elastic-state.ts │ │ │ │ │ │ │ │ └── services │ │ │ │ │ │ │ │ │ └── elastic-client.service.ts │ │ │ │ │ │ │ ├── data-validation │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ │ └── data-error-table │ │ │ │ │ │ │ │ │ │ ├── data-error-table.component.html │ │ │ │ │ │ │ │ │ │ ├── data-error-table.component.scss │ │ │ │ │ │ │ │ │ │ └── data-error-table.component.ts │ │ │ │ │ │ │ │ ├── data-validation.module.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ │ │ └── data-error.ts │ │ │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ │ │ └── data-validation-view.service.ts │ │ │ │ │ │ │ │ ├── store │ │ │ │ │ │ │ │ │ ├── data-validation.actions.ts │ │ │ │ │ │ │ │ │ └── data-validation.state.ts │ │ │ │ │ │ │ │ └── views │ │ │ │ │ │ │ │ │ └── data-validation │ │ │ │ │ │ │ │ │ ├── data-validation.view.html │ │ │ │ │ │ │ │ │ ├── data-validation.view.scss │ │ │ │ │ │ │ │ │ └── data-validation.view.ts │ │ │ │ │ │ │ ├── elastic-instance │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ │ ├── elastic-instance-editor │ │ │ │ │ │ │ │ │ │ ├── elastic-instance-editor.component.html │ │ │ │ │ │ │ │ │ │ ├── elastic-instance-editor.component.scss │ │ │ │ │ │ │ │ │ │ └── elastic-instance-editor.component.ts │ │ │ │ │ │ │ │ │ ├── elastic-instance-management │ │ │ │ │ │ │ │ │ │ ├── elastic-instance-management.component.html │ │ │ │ │ │ │ │ │ │ ├── elastic-instance-management.component.scss │ │ │ │ │ │ │ │ │ │ └── elastic-instance-management.component.ts │ │ │ │ │ │ │ │ │ └── elastic-picker │ │ │ │ │ │ │ │ │ │ ├── elastic-picker.component.html │ │ │ │ │ │ │ │ │ │ ├── elastic-picker.component.scss │ │ │ │ │ │ │ │ │ │ └── elastic-picker.component.ts │ │ │ │ │ │ │ │ ├── elastic-instance.module.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ │ │ ├── elastic-info.ts │ │ │ │ │ │ │ │ │ └── elastic-instance.ts │ │ │ │ │ │ │ │ └── services │ │ │ │ │ │ │ │ │ ├── elastic-instance-handler.service.ts │ │ │ │ │ │ │ │ │ └── elastic-instance-service.ts │ │ │ │ │ │ │ └── search │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── ap-details │ │ │ │ │ │ │ │ │ ├── ap-details.component.html │ │ │ │ │ │ │ │ │ ├── ap-details.component.scss │ │ │ │ │ │ │ │ │ └── ap-details.component.ts │ │ │ │ │ │ │ │ ├── attribute-display │ │ │ │ │ │ │ │ │ ├── attribute-display.component.html │ │ │ │ │ │ │ │ │ ├── attribute-display.component.scss │ │ │ │ │ │ │ │ │ └── attribute-display.component.ts │ │ │ │ │ │ │ │ ├── elastic-query-editor │ │ │ │ │ │ │ │ │ ├── elastic-query-editor.component.html │ │ │ │ │ │ │ │ │ ├── elastic-query-editor.component.scss │ │ │ │ │ │ │ │ │ └── elastic-query-editor.component.ts │ │ │ │ │ │ │ │ ├── filters-form │ │ │ │ │ │ │ │ │ ├── filters-form.component.html │ │ │ │ │ │ │ │ │ ├── filters-form.component.scss │ │ │ │ │ │ │ │ │ └── filters-form.component.ts │ │ │ │ │ │ │ │ ├── full-model-detail │ │ │ │ │ │ │ │ │ ├── full-model-detail.component.html │ │ │ │ │ │ │ │ │ ├── full-model-detail.component.scss │ │ │ │ │ │ │ │ │ └── full-model-detail.component.ts │ │ │ │ │ │ │ │ ├── json-model-details │ │ │ │ │ │ │ │ │ ├── json-model-details.component.html │ │ │ │ │ │ │ │ │ ├── json-model-details.component.scss │ │ │ │ │ │ │ │ │ └── json-model-details.component.ts │ │ │ │ │ │ │ │ ├── json-model-flat-graph-details │ │ │ │ │ │ │ │ │ ├── json-model-flat-graph-details.component.html │ │ │ │ │ │ │ │ │ ├── json-model-flat-graph-details.component.scss │ │ │ │ │ │ │ │ │ └── json-model-flat-graph-details.component.ts │ │ │ │ │ │ │ │ ├── json-model-label │ │ │ │ │ │ │ │ │ ├── json-model-label.component.html │ │ │ │ │ │ │ │ │ ├── json-model-label.component.scss │ │ │ │ │ │ │ │ │ └── json-model-label.component.ts │ │ │ │ │ │ │ │ ├── raw-details │ │ │ │ │ │ │ │ │ ├── raw-details.component.html │ │ │ │ │ │ │ │ │ ├── raw-details.component.scss │ │ │ │ │ │ │ │ │ └── raw-details.component.ts │ │ │ │ │ │ │ │ ├── results-raw │ │ │ │ │ │ │ │ │ ├── results-raw.component.html │ │ │ │ │ │ │ │ │ ├── results-raw.component.scss │ │ │ │ │ │ │ │ │ └── results-raw.component.ts │ │ │ │ │ │ │ │ ├── results-structured │ │ │ │ │ │ │ │ │ ├── results-structured.component.html │ │ │ │ │ │ │ │ │ ├── results-structured.component.scss │ │ │ │ │ │ │ │ │ └── results-structured.component.ts │ │ │ │ │ │ │ │ └── results-table │ │ │ │ │ │ │ │ │ ├── results-table.component.html │ │ │ │ │ │ │ │ │ ├── results-table.component.scss │ │ │ │ │ │ │ │ │ └── results-table.component.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ │ ├── filters.ts │ │ │ │ │ │ │ │ ├── full-model.ts │ │ │ │ │ │ │ │ └── view-type.ts │ │ │ │ │ │ │ │ ├── pipes │ │ │ │ │ │ │ │ ├── ellipsis.pipe.ts │ │ │ │ │ │ │ │ ├── filter-object.pipe.ts │ │ │ │ │ │ │ │ ├── json-model-label.pipe.ts │ │ │ │ │ │ │ │ ├── remove-circular-from-json-model.pipe.ts │ │ │ │ │ │ │ │ └── uri-crop.pipe.ts │ │ │ │ │ │ │ │ ├── search.module.ts │ │ │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ │ ├── detail-view-provider.service.ts │ │ │ │ │ │ │ │ ├── detail-view.service.ts │ │ │ │ │ │ │ │ └── elastic-explorer.service.ts │ │ │ │ │ │ │ │ ├── store │ │ │ │ │ │ │ │ ├── elastic-explorer.actions.ts │ │ │ │ │ │ │ │ └── elastic-explorer.state.ts │ │ │ │ │ │ │ │ ├── utils │ │ │ │ │ │ │ │ └── get-sorted-object.ts │ │ │ │ │ │ │ │ └── views │ │ │ │ │ │ │ │ └── search │ │ │ │ │ │ │ │ ├── search.view.html │ │ │ │ │ │ │ │ ├── search.view.scss │ │ │ │ │ │ │ │ └── search.view.ts │ │ │ │ │ │ └── views │ │ │ │ │ │ │ └── elastic-explorer │ │ │ │ │ │ │ ├── elastic-explorer.view.html │ │ │ │ │ │ │ ├── elastic-explorer.view.scss │ │ │ │ │ │ │ └── elastic-explorer.view.ts │ │ │ │ │ │ ├── public-api.ts │ │ │ │ │ │ └── test-setup.ts │ │ │ │ ├── legi-shared │ │ │ │ │ ├── autocomplete │ │ │ │ │ │ ├── autocomplete-multi │ │ │ │ │ │ │ ├── autocomplete-multi.component.html │ │ │ │ │ │ │ ├── autocomplete-multi.component.scss │ │ │ │ │ │ │ └── autocomplete-multi.component.ts │ │ │ │ │ │ ├── autocomplete-single │ │ │ │ │ │ │ ├── autocomplete-single.component.html │ │ │ │ │ │ │ ├── autocomplete-single.component.scss │ │ │ │ │ │ │ └── autocomplete-single.component.ts │ │ │ │ │ │ ├── autocomplete.component.html │ │ │ │ │ │ ├── autocomplete.component.scss │ │ │ │ │ │ ├── autocomplete.component.ts │ │ │ │ │ │ ├── autocomplete.module.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ ├── checkbox-group │ │ │ │ │ │ ├── checkbox-group.component.html │ │ │ │ │ │ ├── checkbox-group.component.scss │ │ │ │ │ │ ├── checkbox-group.component.ts │ │ │ │ │ │ ├── checkbox-group.module.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── public-api.ts │ │ │ │ │ │ └── select-option-groups-slice.pipe.ts │ │ │ │ │ ├── common.scss │ │ │ │ │ ├── core │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── legi-shared.module.ts │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ └── legi-shared-options.ts │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ ├── date-picker │ │ │ │ │ │ ├── date-picker.component.html │ │ │ │ │ │ ├── date-picker.component.scss │ │ │ │ │ │ ├── date-picker.component.ts │ │ │ │ │ │ ├── date-picker.module.ts │ │ │ │ │ │ ├── directives │ │ │ │ │ │ │ └── month-selector.directive.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ └── date-picker-type.ts │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ ├── error │ │ │ │ │ │ ├── error.component.html │ │ │ │ │ │ ├── error.component.scss │ │ │ │ │ │ ├── error.component.ts │ │ │ │ │ │ ├── error.module.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ ├── highlight │ │ │ │ │ │ ├── highlight-match.service.ts │ │ │ │ │ │ ├── highlight.module.ts │ │ │ │ │ │ ├── highlight.pipe.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ ├── input │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── input.component.html │ │ │ │ │ │ ├── input.component.scss │ │ │ │ │ │ ├── input.component.ts │ │ │ │ │ │ ├── input.module.ts │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ ├── label │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── label.component.html │ │ │ │ │ │ ├── label.component.scss │ │ │ │ │ │ ├── label.component.ts │ │ │ │ │ │ ├── label.module.ts │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ ├── legal-taxonomy-cv-provider │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── legal-taxonomy-cv-provider.module.ts │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ ├── concept.ts │ │ │ │ │ │ │ ├── legal-taxonomy-cv-provider-options.ts │ │ │ │ │ │ │ └── legal-taxonomy.ts │ │ │ │ │ │ ├── public-api.ts │ │ │ │ │ │ └── services │ │ │ │ │ │ │ ├── legal-taxonomy-client.service.ts │ │ │ │ │ │ │ ├── legal-taxonomy-cv-provider-options.service.ts │ │ │ │ │ │ │ └── legal-taxonomy-cv-provider.service.ts │ │ │ │ │ ├── list-paginator │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── list-paginator.component.html │ │ │ │ │ │ ├── list-paginator.component.scss │ │ │ │ │ │ ├── list-paginator.component.ts │ │ │ │ │ │ ├── list-paginator.module.ts │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ ├── loading-button │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── loading-button.directive.ts │ │ │ │ │ │ ├── loading-button.module.ts │ │ │ │ │ │ └── public-api.ts │ │ │ │ │ ├── radio-group │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── public-api.ts │ │ │ │ │ │ ├── radio-group.component.html │ │ │ │ │ │ ├── radio-group.component.scss │ │ │ │ │ │ ├── radio-group.component.ts │ │ │ │ │ │ └── radio-group.module.ts │ │ │ │ │ ├── select-option-sort │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── public-api.ts │ │ │ │ │ │ ├── select-option-sort.module.ts │ │ │ │ │ │ └── select-option-sort.pipe.ts │ │ │ │ │ ├── select │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── public-api.ts │ │ │ │ │ │ ├── select.component.html │ │ │ │ │ │ ├── select.component.scss │ │ │ │ │ │ ├── select.component.ts │ │ │ │ │ │ └── select.module.ts │ │ │ │ │ ├── src │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── legi-shared.module.ts │ │ │ │ │ ├── textarea │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── public-api.ts │ │ │ │ │ │ ├── textarea.component.html │ │ │ │ │ │ ├── textarea.component.scss │ │ │ │ │ │ ├── textarea.component.ts │ │ │ │ │ │ └── textarea.module.ts │ │ │ │ │ ├── transloco-mat-paginator-adapter │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── public-api.ts │ │ │ │ │ │ ├── transloco-mat-paginator-adapter.module.ts │ │ │ │ │ │ └── transloco-mat-paginator-intl.service.ts │ │ │ │ │ └── utils │ │ │ │ │ │ ├── bind-controls.ts │ │ │ │ │ │ ├── control.component.ts │ │ │ │ │ │ ├── extract-control-from-ng-control.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── public-api.ts │ │ │ │ └── legi-styles │ │ │ │ │ ├── fonts │ │ │ │ │ ├── Muli │ │ │ │ │ │ ├── Muli-Black.woff │ │ │ │ │ │ ├── Muli-Black.woff2 │ │ │ │ │ │ ├── Muli-Bold.woff │ │ │ │ │ │ ├── Muli-Bold.woff2 │ │ │ │ │ │ ├── Muli-ExtraBold.woff │ │ │ │ │ │ ├── Muli-ExtraBold.woff2 │ │ │ │ │ │ ├── Muli-ExtraLight.woff │ │ │ │ │ │ ├── Muli-ExtraLight.woff2 │ │ │ │ │ │ ├── Muli-Light.woff │ │ │ │ │ │ ├── Muli-Light.woff2 │ │ │ │ │ │ ├── Muli-Medium.woff │ │ │ │ │ │ ├── Muli-Medium.woff2 │ │ │ │ │ │ ├── Muli-Regular.woff │ │ │ │ │ │ ├── Muli-Regular.woff2 │ │ │ │ │ │ ├── Muli-SemiBold.woff │ │ │ │ │ │ └── Muli-SemiBold.woff2 │ │ │ │ │ └── README.md │ │ │ │ │ ├── stories │ │ │ │ │ ├── buttons │ │ │ │ │ │ ├── buttons.component.html │ │ │ │ │ │ ├── buttons.component.scss │ │ │ │ │ │ ├── buttons.component.ts │ │ │ │ │ │ └── buttons.stories.ts │ │ │ │ │ ├── colors │ │ │ │ │ │ ├── colors.component.html │ │ │ │ │ │ ├── colors.component.scss │ │ │ │ │ │ ├── colors.component.ts │ │ │ │ │ │ └── colors.stories.ts │ │ │ │ │ ├── common.scss │ │ │ │ │ ├── elevation │ │ │ │ │ │ ├── elevation.component.html │ │ │ │ │ │ ├── elevation.component.scss │ │ │ │ │ │ ├── elevation.component.ts │ │ │ │ │ │ └── elevation.stories.ts │ │ │ │ │ ├── grid │ │ │ │ │ │ ├── grid.component.html │ │ │ │ │ │ ├── grid.component.scss │ │ │ │ │ │ ├── grid.component.ts │ │ │ │ │ │ └── grid.stories.ts │ │ │ │ │ ├── spacing │ │ │ │ │ │ ├── spacing.component.html │ │ │ │ │ │ ├── spacing.component.scss │ │ │ │ │ │ ├── spacing.component.ts │ │ │ │ │ │ └── spacing.stories.ts │ │ │ │ │ └── typography │ │ │ │ │ │ ├── typography.component.html │ │ │ │ │ │ ├── typography.component.scss │ │ │ │ │ │ ├── typography.component.ts │ │ │ │ │ │ └── typography.stories.ts │ │ │ │ │ └── styles │ │ │ │ │ ├── _abstracts.scss │ │ │ │ │ ├── _components-pack.scss │ │ │ │ │ ├── abstracts │ │ │ │ │ ├── _functions.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _placeholders.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── placeholders │ │ │ │ │ │ └── _typography.scss │ │ │ │ │ ├── base │ │ │ │ │ ├── _base.scss │ │ │ │ │ ├── _fonts.scss │ │ │ │ │ └── _typography.scss │ │ │ │ │ ├── components │ │ │ │ │ └── _button.scss │ │ │ │ │ ├── layout │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── main.scss │ │ │ │ │ ├── themes │ │ │ │ │ └── .gitkeep │ │ │ │ │ └── vendors │ │ │ │ │ ├── _bootstrap.scss │ │ │ │ │ ├── _material.scss │ │ │ │ │ ├── bootstrap │ │ │ │ │ ├── _abstracts.scss │ │ │ │ │ ├── _base.scss │ │ │ │ │ └── _placeholders.scss │ │ │ │ │ └── material │ │ │ │ │ ├── base │ │ │ │ │ └── _base.scss │ │ │ │ │ ├── components │ │ │ │ │ ├── _mat-button.scss │ │ │ │ │ ├── _mat-chip.scss │ │ │ │ │ ├── _mat-dialog.scss │ │ │ │ │ ├── _mat-form-field.scss │ │ │ │ │ ├── _mat-icon.scss │ │ │ │ │ ├── _mat-menu.scss │ │ │ │ │ ├── _mat-radio-group.scss │ │ │ │ │ ├── _mat-select.scss │ │ │ │ │ ├── _mat-sort.scss │ │ │ │ │ ├── _mat-table.scss │ │ │ │ │ ├── _mat-tabs.scss │ │ │ │ │ └── _mat-tooltip.scss │ │ │ │ │ └── main.scss │ │ │ └── shared │ │ │ │ ├── components │ │ │ │ ├── .gitkeep │ │ │ │ ├── copy-link-button │ │ │ │ │ └── copy-link-button.component.ts │ │ │ │ └── empty │ │ │ │ │ └── empty.component.ts │ │ │ │ ├── directives │ │ │ │ └── .gitkeep │ │ │ │ ├── index.ts │ │ │ │ ├── models │ │ │ │ └── .gitkeep │ │ │ │ ├── pipes │ │ │ │ └── .gitkeep │ │ │ │ ├── services │ │ │ │ └── .gitkeep │ │ │ │ └── shared.module.ts │ │ ├── assets │ │ │ ├── cognizone-icon-150x150.png │ │ │ ├── cognizone-icon.png │ │ │ └── i18n │ │ │ │ └── en-BE.json │ │ ├── background.js │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── manifest.json │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ ├── styles │ │ │ ├── _abstracts.scss │ │ │ ├── abstracts │ │ │ │ ├── _mixins.scss │ │ │ │ └── _variables.scss │ │ │ ├── base │ │ │ │ ├── _base.scss │ │ │ │ └── _typography.scss │ │ │ ├── components-pack.scss │ │ │ ├── layout │ │ │ │ └── .gitkeep │ │ │ ├── main.scss │ │ │ ├── themes │ │ │ │ └── .gitkeep │ │ │ └── vendors │ │ │ │ └── .gitkeep │ │ └── test-setup.ts │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ └── tsconfig.spec.json └── ui-kit-e2e │ ├── .eslintrc.json │ ├── cypress.json │ ├── project.json │ ├── src │ ├── fixtures │ │ └── example.json │ ├── integration │ │ └── spinner │ │ │ └── spinner.component.spec.ts │ ├── plugins │ │ └── index.js │ └── support │ │ ├── commands.ts │ │ └── index.ts │ └── tsconfig.json ├── decorate-angular-cli.js ├── docs ├── .nojekyll ├── 404.html ├── assets │ ├── css │ │ └── styles.c49afed5.css │ ├── files │ │ ├── allow-572e5be6f8bd3d9d897ab39e62341b98.png │ │ ├── dataValidation-d997156b6cef1f96448705cf6ef69f0e.png │ │ ├── elasticExplorer-89284e9eeae6fc236353aa5e94c155da.png │ │ ├── facets-fc041ac6ac7e267e7e2c3588897f8cfc.png │ │ ├── included-0bff751bbc5029dae3cb54bea2902b8d.png │ │ ├── index-82959fa87908d35bc9f84e0d25432bdd.png │ │ ├── jsonModel-028c5ff7c1cd695ee84a6b58619dee39.png │ │ ├── jsonModelFlatGraph-222baded664af5a5493550805f26488b.png │ │ ├── jsonUpload-bd4f4c5e2ef99b29b5ee4a627ab2914d.png │ │ ├── manualMode-9aae83739ce3870488d7e1ad6a9870ae.png │ │ ├── multipleTypes-abb0de43153ff19cbe708f266bc3d98a.png │ │ ├── rawData-b5c47bd2cdf1e4f033bfd973b7999682.png │ │ ├── rawFormat-df8e5b1d255e4519f798a85fbf9237b7.png │ │ ├── searchByKeyword-987d7546b68866abfe386dc0eb58f848.png │ │ ├── searchByUri-0ca41d3750b8d7ddbb9fe0800e5fe00f.png │ │ ├── structured-71665ac7e38dfb17dbaa71dfdb015384.png │ │ ├── table-db67611f6c50f379aa4ad78fa87f74fe.png │ │ ├── uriFilter-5fbb8de85c0f3de22d1f956a685d8bc9.png │ │ └── webRemoval-bb10c8b452003d17efac53da65405569.png │ ├── images │ │ ├── allow-572e5be6f8bd3d9d897ab39e62341b98.png │ │ ├── dataValidation-d997156b6cef1f96448705cf6ef69f0e.png │ │ ├── elasticExplorer-89284e9eeae6fc236353aa5e94c155da.png │ │ ├── facets-fc041ac6ac7e267e7e2c3588897f8cfc.png │ │ ├── included-0bff751bbc5029dae3cb54bea2902b8d.png │ │ ├── index-82959fa87908d35bc9f84e0d25432bdd.png │ │ ├── jsonModel-028c5ff7c1cd695ee84a6b58619dee39.png │ │ ├── jsonModelFlatGraph-222baded664af5a5493550805f26488b.png │ │ ├── jsonUpload-bd4f4c5e2ef99b29b5ee4a627ab2914d.png │ │ ├── manualMode-9aae83739ce3870488d7e1ad6a9870ae.png │ │ ├── multipleTypes-abb0de43153ff19cbe708f266bc3d98a.png │ │ ├── rawData-b5c47bd2cdf1e4f033bfd973b7999682.png │ │ ├── rawFormat-df8e5b1d255e4519f798a85fbf9237b7.png │ │ ├── searchByKeyword-987d7546b68866abfe386dc0eb58f848.png │ │ ├── searchByUri-0ca41d3750b8d7ddbb9fe0800e5fe00f.png │ │ ├── structured-71665ac7e38dfb17dbaa71dfdb015384.png │ │ ├── table-db67611f6c50f379aa4ad78fa87f74fe.png │ │ ├── uriFilter-5fbb8de85c0f3de22d1f956a685d8bc9.png │ │ └── webRemoval-bb10c8b452003d17efac53da65405569.png │ └── js │ │ ├── 00cd5775.90a34bbd.js │ │ ├── 02084a28.9e3f1741.js │ │ ├── 036c1e00.e0afbfc4.js │ │ ├── 04376eab.0fe3971a.js │ │ ├── 048e5099.5938e08b.js │ │ ├── 056f6a34.3cbddbe1.js │ │ ├── 05c05504.d7603290.js │ │ ├── 06b2ac62.35bcaa8e.js │ │ ├── 06c354ef.e31da168.js │ │ ├── 07774728.b1a805a7.js │ │ ├── 098b9bd3.0c0871fe.js │ │ ├── 09a0bb49.2be30fde.js │ │ ├── 0bbe7976.8320e3c1.js │ │ ├── 0be3f0bd.00bb9f39.js │ │ ├── 0c6c693a.9fc76530.js │ │ ├── 0d6c78ce.5d68af2b.js │ │ ├── 0ecc199c.657d73fc.js │ │ ├── 0f587ffe.6eebdd95.js │ │ ├── 101acd4b.d98a7e0c.js │ │ ├── 113361c8.2947de08.js │ │ ├── 114a4154.68faa531.js │ │ ├── 12bcda91.9e1d476c.js │ │ ├── 13ba36e9.d051bd83.js │ │ ├── 154445e6.7b1270b4.js │ │ ├── 15c627d9.5c43891e.js │ │ ├── 16253903.67d49146.js │ │ ├── 16e611a0.293dbd54.js │ │ ├── 17896441.554627d5.js │ │ ├── 17b7f140.6d61b247.js │ │ ├── 17d84c03.b236235e.js │ │ ├── 17ef375f.8e12ad06.js │ │ ├── 18e2ee32.a7bec8ec.js │ │ ├── 19b3fd3a.1b0f79f9.js │ │ ├── 1a959cb0.1dee0a8b.js │ │ ├── 1af0d896.683ab054.js │ │ ├── 1be78505.83854ef3.js │ │ ├── 1bfb5b69.d21979de.js │ │ ├── 1d7d3b8e.f425fcf5.js │ │ ├── 1da35c1c.a3ee3374.js │ │ ├── 1df93b7f.309d4e7b.js │ │ ├── 1f342852.1cf21000.js │ │ ├── 1f3fa6fe.20c97408.js │ │ ├── 1fa3d679.87283c28.js │ │ ├── 219afba4.201143e1.js │ │ ├── 23ab8734.65806df6.js │ │ ├── 23c11a78.3e5f73fa.js │ │ ├── 23cbf17b.ba755695.js │ │ ├── 26052f6e.e6d8d39d.js │ │ ├── 270096ef.864fab9d.js │ │ ├── 277910a4.4bf4d570.js │ │ ├── 28f84881.1fc7822c.js │ │ ├── 29962ae0.8e898e12.js │ │ ├── 2a0a64a4.b4273a98.js │ │ ├── 2a9a771c.6644eed1.js │ │ ├── 2af993ab.9597d22a.js │ │ ├── 2b488a7f.55326353.js │ │ ├── 2bbfebc4.2e846136.js │ │ ├── 2bd553fe.12f0eb43.js │ │ ├── 2d2ebf80.1b483d09.js │ │ ├── 2d55efb3.0e5d45f9.js │ │ ├── 2e7c17ce.8ff5b014.js │ │ ├── 2fdf46ca.26adcec4.js │ │ ├── 301d1628.80427693.js │ │ ├── 3278d165.7b528daa.js │ │ ├── 339ab082.d330e9f2.js │ │ ├── 345b8c8f.2e7bd246.js │ │ ├── 34b136c9.45e0f74c.js │ │ ├── 390257b9.15eafa4d.js │ │ ├── 3995a474.0f03022d.js │ │ ├── 3a4d89a0.e87cbcc0.js │ │ ├── 3c215aa2.e0af3d8f.js │ │ ├── 3cb567bb.a1938d86.js │ │ ├── 3e3d8ea6.9c175a3f.js │ │ ├── 3eb51d09.e2508f2e.js │ │ ├── 3f5d62da.87245d01.js │ │ ├── 3fd8a45f.f0a03a51.js │ │ ├── 42326816.d33fc315.js │ │ ├── 4239f271.75a2b059.js │ │ ├── 43e011fc.211650ad.js │ │ ├── 4505f52f.da504721.js │ │ ├── 45765ca4.1ba3fd3e.js │ │ ├── 45dc07f4.75ffb111.js │ │ ├── 4608.6a9c52bd.js │ │ ├── 4911db4a.1d152660.js │ │ ├── 4b5d7ff9.1c18af96.js │ │ ├── 4ce5d6b8.92a9b42a.js │ │ ├── 4d1064e6.374d963a.js │ │ ├── 4e2b069a.80bb22b3.js │ │ ├── 4ec2df53.c6292fed.js │ │ ├── 4ee62e87.ebec2822.js │ │ ├── 4f156ee6.7c837c37.js │ │ ├── 4f96e4d8.6aa65291.js │ │ ├── 5029fdbb.474815e4.js │ │ ├── 517d0573.f025f100.js │ │ ├── 521a86ee.bebedda1.js │ │ ├── 5241d864.4c77f8f6.js │ │ ├── 52c65c4b.aba4ec82.js │ │ ├── 53212829.1b5655e6.js │ │ ├── 53aef8ab.8f9fa1a9.js │ │ ├── 54d4cc08.16972bae.js │ │ ├── 55523d9b.f407f5e7.js │ │ ├── 55835761.1be1c96b.js │ │ ├── 56248702.102ce8cd.js │ │ ├── 57152ffc.b4f2a764.js │ │ ├── 572ebb91.a5ba2c54.js │ │ ├── 58295af1.215a0d8a.js │ │ ├── 59bfc36c.5bddd3d7.js │ │ ├── 5c7dd174.3e32f5df.js │ │ ├── 5d969934.0083ea89.js │ │ ├── 5e944385.552eeecc.js │ │ ├── 5ef6a60d.4f272ca2.js │ │ ├── 5f909c96.08561668.js │ │ ├── 60397a5e.1d12d315.js │ │ ├── 60ed99ae.194f5f7c.js │ │ ├── 612ffe4d.f15db694.js │ │ ├── 6131db9c.c0263238.js │ │ ├── 621b8832.e2f7d0c8.js │ │ ├── 62f38123.fd050bd9.js │ │ ├── 63ab7e17.87a8de08.js │ │ ├── 64006316.2f68f5a5.js │ │ ├── 675eeaac.c2cce0f3.js │ │ ├── 6783d487.77c11ee4.js │ │ ├── 690c8559.6ff74f77.js │ │ ├── 6b5e77c4.cef40ee0.js │ │ ├── 6b6d17f9.459e0f9e.js │ │ ├── 6c012cc4.6ebcd0af.js │ │ ├── 6c0b4ba4.c3bdb1f4.js │ │ ├── 6c32c2a4.bce5f947.js │ │ ├── 6dfa6c8f.1d9c4c72.js │ │ ├── 6ebd5956.2e9f821b.js │ │ ├── 6f41a6a6.903e3e84.js │ │ ├── 6f6ad750.00cd6e0a.js │ │ ├── 6f991c2a.f00b361e.js │ │ ├── 70561b92.c9f3ba9d.js │ │ ├── 71b5a543.5039f58c.js │ │ ├── 71fc504f.59bcb108.js │ │ ├── 739f048c.7da663e6.js │ │ ├── 75fd6d92.b388ec86.js │ │ ├── 7622712b.dd54d9c9.js │ │ ├── 78300e22.ac1f2529.js │ │ ├── 7830f9b4.8d4ae3db.js │ │ ├── 788a2b50.44d24dc5.js │ │ ├── 78a6f763.9e7651e0.js │ │ ├── 7970e402.386979db.js │ │ ├── 799be29c.1f3e3600.js │ │ ├── 7b33e7d2.60a5309c.js │ │ ├── 7c04db56.88a102d0.js │ │ ├── 7c17f69e.8f4c2fb9.js │ │ ├── 7d64774d.abe08c57.js │ │ ├── 7d6d8038.cc763f0f.js │ │ ├── 7f042965.137b542e.js │ │ ├── 810b388b.321d8be3.js │ │ ├── 822e6d47.779050e0.js │ │ ├── 8274d551.96ec189e.js │ │ ├── 827cb262.66d504e1.js │ │ ├── 82845948.a6b434a4.js │ │ ├── 858ca1de.15cfbde2.js │ │ ├── 85c42a83.cf845511.js │ │ ├── 880c87ee.d20a7123.js │ │ ├── 88402a80.54ad4cef.js │ │ ├── 892c3258.38046727.js │ │ ├── 8b08dfc5.a6ac7a6a.js │ │ ├── 8b5a6629.9552ee63.js │ │ ├── 8b9529d0.a4a41cb3.js │ │ ├── 8c2f3238.f2e35f6e.js │ │ ├── 8c8088a4.75c75026.js │ │ ├── 9010ca7a.164ca317.js │ │ ├── 903d2100.ad037670.js │ │ ├── 9054317c.8e70516d.js │ │ ├── 9253a7a0.413fa396.js │ │ ├── 930444ea.a3fba6ce.js │ │ ├── 935f2afb.0c23442a.js │ │ ├── 94a58ed5.0ee2208f.js │ │ ├── 95f9c642.bb76970f.js │ │ ├── 96dc1498.fb206019.js │ │ ├── 97e4044e.ca390bfa.js │ │ ├── 9826cf41.2fb93a88.js │ │ ├── 994eed96.11405121.js │ │ ├── 99d1fad1.944a61f5.js │ │ ├── 9a8c0b72.a0d0356b.js │ │ ├── 9b2a988f.7c3da8a5.js │ │ ├── 9b8b9460.f9283fda.js │ │ ├── 9bff105d.0286cf1b.js │ │ ├── 9c1dac86.fa61a141.js │ │ ├── 9e4087bc.b4797fd8.js │ │ ├── 9fdd6838.6cb9dcb3.js │ │ ├── a02be57d.0803194a.js │ │ ├── a1c95738.b40c0d07.js │ │ ├── a3d3fdd9.324c9eac.js │ │ ├── a429000a.e1ebd255.js │ │ ├── a496fecc.fa147f15.js │ │ ├── a4eb64e6.db5ec03c.js │ │ ├── a55b1f55.34ec6876.js │ │ ├── a57f5c59.ffe97c02.js │ │ ├── a76bd4ea.3f6ee804.js │ │ ├── a76e5941.d1348d64.js │ │ ├── a7eb5a73.20d21e86.js │ │ ├── a7fa2e06.0ab6a329.js │ │ ├── a8721daa.56a3e425.js │ │ ├── a8cb20e6.5ce15e93.js │ │ ├── a94b3387.727830e9.js │ │ ├── ab9ba2b0.0e115e98.js │ │ ├── ace08cca.a5d97d42.js │ │ ├── ad0c0b21.9aad4ce3.js │ │ ├── ad4d5fa0.cd541316.js │ │ ├── af380d50.bb5ac60e.js │ │ ├── afc2d06d.7f0cd042.js │ │ ├── b0106716.3c279336.js │ │ ├── b0761722.ee524626.js │ │ ├── b0d11e0b.fa77fecc.js │ │ ├── b202b092.f9ecb23e.js │ │ ├── b21beba5.60187f17.js │ │ ├── b21bf887.c2fa7f64.js │ │ ├── b26c560e.43c037f2.js │ │ ├── b29168ac.5c029815.js │ │ ├── b2989d24.911ad8fc.js │ │ ├── b31eb0d2.8032e79d.js │ │ ├── b3a11b0c.32a37bfd.js │ │ ├── b4c7c8c3.41c07193.js │ │ ├── b58e9968.75cedec8.js │ │ ├── b6b2c840.2a80ec88.js │ │ ├── b72e46ba.c5694363.js │ │ ├── b7af3b75.d01b8074.js │ │ ├── ba2e6d24.b37fc0af.js │ │ ├── bb87afe6.29c09df7.js │ │ ├── bc66961f.fdd82a14.js │ │ ├── bd4daeca.9642f73b.js │ │ ├── bd5335af.716d0bbc.js │ │ ├── be329c9e.16cd61b7.js │ │ ├── bedeefdd.baaa5f00.js │ │ ├── bf949db7.82d675ab.js │ │ ├── c0c6329a.206997e5.js │ │ ├── c0cb07fb.f231b8d9.js │ │ ├── c1af9023.907f3e09.js │ │ ├── c1f43dc8.2648d7d9.js │ │ ├── c2da6902.7435e4a8.js │ │ ├── c2df8094.a6ff5398.js │ │ ├── c3207d28.6ce4f087.js │ │ ├── c366f8f8.e7574496.js │ │ ├── c37ed82a.aac4587d.js │ │ ├── c3b1d2e0.5a025bf8.js │ │ ├── c4115165.f317dd7f.js │ │ ├── c486b94e.c3861736.js │ │ ├── c4bc7fc1.dc8eb224.js │ │ ├── c55617b1.7aa733f3.js │ │ ├── c5ac0288.9e881e3c.js │ │ ├── c70028b4.e0e11e5e.js │ │ ├── c9f529dc.337e2c1c.js │ │ ├── ca77ed45.b24c9602.js │ │ ├── ca972fd0.a17e041a.js │ │ ├── ce3ab51d.f3f7b593.js │ │ ├── cf5ac04d.6ed84a96.js │ │ ├── d03bcda4.9c97c378.js │ │ ├── d08e465f.d3c68597.js │ │ ├── d0ab943c.2209b8de.js │ │ ├── d0d264b1.c3a806ea.js │ │ ├── d140226e.b8727fcb.js │ │ ├── d1dd3bdd.39012644.js │ │ ├── d2417056.1475c36a.js │ │ ├── d2db97a9.29733e50.js │ │ ├── d3334e8b.085d65b3.js │ │ ├── d60d7446.e80def74.js │ │ ├── d6584466.39f5ef58.js │ │ ├── da0335d6.6f7c3df7.js │ │ ├── da5839d1.0e224a1f.js │ │ ├── dade0b44.f2357882.js │ │ ├── db661285.9fb39320.js │ │ ├── db8799fb.a13b86a8.js │ │ ├── dcb52ba0.b98ea336.js │ │ ├── dd135525.0f58c187.js │ │ ├── ddb4a884.aa3dd9e7.js │ │ ├── ddbd9bbd.a141e48f.js │ │ ├── de097ade.f88d8e01.js │ │ ├── deb5d42a.756be939.js │ │ ├── def00605.db0928dd.js │ │ ├── df348d66.cdf3de15.js │ │ ├── df4655b0.2c40d282.js │ │ ├── df9330f2.e58b1827.js │ │ ├── dfa68ff5.55067972.js │ │ ├── e0499967.bfe31360.js │ │ ├── e0e54bbc.4c07e66e.js │ │ ├── e11b8436.1cd1dc76.js │ │ ├── e2d94328.6049af16.js │ │ ├── e30b3b27.2a9f6dbb.js │ │ ├── e360ada3.9584d571.js │ │ ├── e6b598be.04cacf7d.js │ │ ├── e70e671f.0b9017cd.js │ │ ├── e86ff21f.fedb9091.js │ │ ├── e907323e.1ec7153b.js │ │ ├── eaf09924.61146a07.js │ │ ├── ebc26019.e6713cc6.js │ │ ├── ec7db1c4.47d77971.js │ │ ├── ee3f9866.d86f8963.js │ │ ├── eeccce99.7b590aa4.js │ │ ├── ef8fb505.8b10a9b3.js │ │ ├── ef98abee.49cd4780.js │ │ ├── f012e86f.22708161.js │ │ ├── f019ca00.3f2fd361.js │ │ ├── f0849308.7fd15fbc.js │ │ ├── f1e1c182.4a8c3a88.js │ │ ├── f22ea482.831dbf7e.js │ │ ├── f2388044.8f0cb38b.js │ │ ├── f2782d83.8b417ac1.js │ │ ├── f34e05d7.40cb61d4.js │ │ ├── f3c50c66.60dd59ec.js │ │ ├── f49199d5.24f4796e.js │ │ ├── f4efec67.275dfd33.js │ │ ├── f52d0482.92f79879.js │ │ ├── f599df42.8b36676a.js │ │ ├── f66c0718.49057e57.js │ │ ├── f6dfd434.d2474fe2.js │ │ ├── f7295498.ee5795b4.js │ │ ├── f74fa2c4.d3c714e0.js │ │ ├── f76b60c1.0e666460.js │ │ ├── f80511c8.ab97c2bd.js │ │ ├── f9745ed7.39cbaa75.js │ │ ├── f9b5c131.87e3b9ea.js │ │ ├── f9b997f4.f7b124bd.js │ │ ├── fafeb891.51827a72.js │ │ ├── fe769149.b2e009cf.js │ │ ├── fea454d2.5e78d28e.js │ │ ├── ff6f5c41.1209292e.js │ │ ├── ffd67a7c.ac9aa3bf.js │ │ ├── main.36dca16d.js │ │ ├── main.36dca16d.js.LICENSE.txt │ │ └── runtime~main.1f7b2304.js ├── blog │ └── archive │ │ └── index.html ├── docs │ ├── guides │ │ └── application-profile │ │ │ └── index.html │ └── libraries │ │ ├── application-profile │ │ ├── api │ │ │ ├── enums │ │ │ │ ├── Datatype │ │ │ │ │ └── index.html │ │ │ │ └── DatatypeLong │ │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── interfaces │ │ │ │ ├── ApplicationProfile │ │ │ │ │ └── index.html │ │ │ │ ├── ApplicationProfileRaw │ │ │ │ │ └── index.html │ │ │ │ ├── AttributeProfile │ │ │ │ │ └── index.html │ │ │ │ ├── AttributeProfileRaw │ │ │ │ │ └── index.html │ │ │ │ ├── Prefixes │ │ │ │ │ └── index.html │ │ │ │ ├── Resource │ │ │ │ │ └── index.html │ │ │ │ ├── ResourceAttribute │ │ │ │ │ └── index.html │ │ │ │ ├── ResourceGraph │ │ │ │ │ └── index.html │ │ │ │ ├── ResourceRaw │ │ │ │ │ └── index.html │ │ │ │ ├── TypeProfile │ │ │ │ │ └── index.html │ │ │ │ └── TypeProfileRaw │ │ │ │ │ └── index.html │ │ │ └── modules │ │ │ │ └── index.html │ │ └── index.html │ │ ├── devtools │ │ ├── api │ │ │ ├── classes │ │ │ │ ├── DevtoolsModule │ │ │ │ │ └── index.html │ │ │ │ └── IfDebugDirective │ │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── modules │ │ │ │ └── index.html │ │ └── index.html │ │ ├── elastic-explorer │ │ ├── api │ │ │ ├── classes │ │ │ │ ├── DataValidationModule │ │ │ │ │ └── index.html │ │ │ │ ├── DataValidationState │ │ │ │ │ └── index.html │ │ │ │ ├── DataValidationView │ │ │ │ │ └── index.html │ │ │ │ ├── ElasticExplorerModule │ │ │ │ │ └── index.html │ │ │ │ ├── ElasticExplorerRoutingModule │ │ │ │ │ └── index.html │ │ │ │ ├── ElasticExplorerState │ │ │ │ │ └── index.html │ │ │ │ ├── ElasticExplorerView │ │ │ │ │ └── index.html │ │ │ │ ├── SearchModule │ │ │ │ │ └── index.html │ │ │ │ └── SearchView │ │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── interfaces │ │ │ │ ├── DataValidationStateModel │ │ │ │ │ └── index.html │ │ │ │ └── ElasticExplorerStateModel │ │ │ │ │ └── index.html │ │ │ └── modules │ │ │ │ └── index.html │ │ ├── index.html │ │ └── user-guide │ │ │ ├── About │ │ │ └── index.html │ │ │ ├── How-to-use │ │ │ └── index.html │ │ │ └── Installation │ │ │ └── index.html │ │ ├── elastic │ │ ├── api │ │ │ ├── classes │ │ │ │ ├── ElasticApClient │ │ │ │ │ └── index.html │ │ │ │ ├── ElasticClient │ │ │ │ │ └── index.html │ │ │ │ └── ElasticRawClient │ │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── interfaces │ │ │ │ ├── ElasticApClientFetchOptions │ │ │ │ │ └── index.html │ │ │ │ └── IElasticClient │ │ │ │ │ └── index.html │ │ │ └── modules │ │ │ │ └── index.html │ │ └── index.html │ │ ├── i18n-transloco │ │ ├── api │ │ │ ├── classes │ │ │ │ ├── I18nTranslocoModule │ │ │ │ │ └── index.html │ │ │ │ └── I18nTranslocoService │ │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── modules │ │ │ │ └── index.html │ │ └── index.html │ │ ├── i18n │ │ ├── api │ │ │ ├── classes │ │ │ │ ├── I18nModule │ │ │ │ │ └── index.html │ │ │ │ ├── I18nService │ │ │ │ │ └── index.html │ │ │ │ ├── LabelPipe │ │ │ │ │ └── index.html │ │ │ │ └── TranslatePipe │ │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── modules │ │ │ │ └── index.html │ │ └── index.html │ │ ├── index.html │ │ ├── json-model-graph │ │ ├── api │ │ │ ├── classes │ │ │ │ ├── GraphAndControlLinkingService │ │ │ │ │ └── index.html │ │ │ │ ├── GraphService │ │ │ │ │ └── index.html │ │ │ │ ├── GraphState │ │ │ │ │ └── index.html │ │ │ │ ├── GraphWrapper │ │ │ │ │ └── index.html │ │ │ │ ├── GraphWrapperFactory │ │ │ │ │ └── index.html │ │ │ │ ├── IfAttributeInApDirective │ │ │ │ │ └── index.html │ │ │ │ ├── JsonModelGraphModule │ │ │ │ │ └── index.html │ │ │ │ ├── JsonModelGraphRootModule │ │ │ │ │ └── index.html │ │ │ │ ├── NodeAttributeDirective │ │ │ │ │ └── index.html │ │ │ │ ├── NodeAttributeLinkedDirective │ │ │ │ │ └── index.html │ │ │ │ ├── NodeUriDirective │ │ │ │ │ └── index.html │ │ │ │ ├── NodeWrapper │ │ │ │ │ └── index.html │ │ │ │ ├── RemoveGraph │ │ │ │ │ └── index.html │ │ │ │ ├── Reset │ │ │ │ │ └── index.html │ │ │ │ ├── RootUriDirective │ │ │ │ │ └── index.html │ │ │ │ ├── SetGraph │ │ │ │ │ └── index.html │ │ │ │ └── UpdateNode │ │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── interfaces │ │ │ │ ├── GraphStateModel │ │ │ │ │ └── index.html │ │ │ │ ├── LinkControlToNodeAttributeOptions │ │ │ │ │ └── index.html │ │ │ │ └── LinkReferenceOptions │ │ │ │ │ └── index.html │ │ │ └── modules │ │ │ │ └── index.html │ │ └── index.html │ │ ├── legi-cv │ │ ├── api │ │ │ ├── classes │ │ │ │ ├── AtomicCvProvider │ │ │ │ │ └── index.html │ │ │ │ ├── CollectionCvProvider │ │ │ │ │ └── index.html │ │ │ │ ├── ConceptMatcherService │ │ │ │ │ └── index.html │ │ │ │ ├── ConceptSchemeCvProvider │ │ │ │ │ └── index.html │ │ │ │ ├── CvLabelDirective │ │ │ │ │ └── index.html │ │ │ │ ├── CvOptionsDirective │ │ │ │ │ └── index.html │ │ │ │ ├── CvSelectOptionsProvider │ │ │ │ │ └── index.html │ │ │ │ ├── CvService │ │ │ │ │ └── index.html │ │ │ │ ├── CvStateService │ │ │ │ │ └── index.html │ │ │ │ ├── CvValueDirective │ │ │ │ │ └── index.html │ │ │ │ ├── ElasticAtomicCvClientService │ │ │ │ │ └── index.html │ │ │ │ ├── LegiCvModule │ │ │ │ │ └── index.html │ │ │ │ ├── LegiCvOptionsService │ │ │ │ │ └── index.html │ │ │ │ ├── LegiCvState │ │ │ │ │ └── index.html │ │ │ │ └── SetCv │ │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── interfaces │ │ │ │ ├── AtomicCvClient │ │ │ │ │ └── index.html │ │ │ │ ├── AtomicCvProviderConfig │ │ │ │ │ └── index.html │ │ │ │ ├── Collection │ │ │ │ │ └── index.html │ │ │ │ ├── Concept │ │ │ │ │ └── index.html │ │ │ │ ├── ConceptGroup │ │ │ │ │ └── index.html │ │ │ │ ├── ConceptScheme │ │ │ │ │ └── index.html │ │ │ │ ├── ConceptWrapper │ │ │ │ │ └── index.html │ │ │ │ ├── CvProvider │ │ │ │ │ └── index.html │ │ │ │ ├── HasOptionsProvider │ │ │ │ │ └── index.html │ │ │ │ ├── LegiCvOptions │ │ │ │ │ └── index.html │ │ │ │ └── LegiCvStateModel │ │ │ │ │ └── index.html │ │ │ └── modules │ │ │ │ └── index.html │ │ └── index.html │ │ ├── legi-shared │ │ ├── api │ │ │ ├── classes │ │ │ │ ├── autocomplete.AutocompleteComponent │ │ │ │ │ └── index.html │ │ │ │ ├── autocomplete.AutocompleteModule │ │ │ │ │ └── index.html │ │ │ │ ├── autocomplete.AutocompleteMultiComponent │ │ │ │ │ └── index.html │ │ │ │ ├── autocomplete.AutocompleteSingleComponent │ │ │ │ │ └── index.html │ │ │ │ ├── checkbox_group.CheckboxGroupComponent │ │ │ │ │ └── index.html │ │ │ │ ├── checkbox_group.CheckboxGroupModule │ │ │ │ │ └── index.html │ │ │ │ ├── core.LegiSharedModule │ │ │ │ │ └── index.html │ │ │ │ ├── core.LegiSharedModuleRoot │ │ │ │ │ └── index.html │ │ │ │ ├── date_picker.DatePickerComponent │ │ │ │ │ └── index.html │ │ │ │ ├── date_picker.DatePickerModule │ │ │ │ │ └── index.html │ │ │ │ ├── date_picker.MonthSelectorDirective │ │ │ │ │ └── index.html │ │ │ │ ├── error.ErrorComponent │ │ │ │ │ └── index.html │ │ │ │ ├── error.ErrorModule │ │ │ │ │ └── index.html │ │ │ │ ├── highlight.HighlightModule │ │ │ │ │ └── index.html │ │ │ │ ├── highlight.HighlightPipe │ │ │ │ │ └── index.html │ │ │ │ ├── input.InputComponent │ │ │ │ │ └── index.html │ │ │ │ ├── input.InputModule │ │ │ │ │ └── index.html │ │ │ │ ├── label.LabelComponent │ │ │ │ │ └── index.html │ │ │ │ ├── label.LabelModule │ │ │ │ │ └── index.html │ │ │ │ ├── legal_taxonomy_cv_provider.LegalTaxonomyClientService │ │ │ │ │ └── index.html │ │ │ │ ├── legal_taxonomy_cv_provider.LegalTaxonomyCvProvider │ │ │ │ │ └── index.html │ │ │ │ ├── legal_taxonomy_cv_provider.LegalTaxonomyCvProviderModule │ │ │ │ │ └── index.html │ │ │ │ ├── legal_taxonomy_cv_provider.LegalTaxonomyCvProviderOptionsService │ │ │ │ │ └── index.html │ │ │ │ ├── list_paginator.ListPaginatorComponent │ │ │ │ │ └── index.html │ │ │ │ ├── list_paginator.ListPaginatorModule │ │ │ │ │ └── index.html │ │ │ │ ├── loading_button.LoadingButtonDirective │ │ │ │ │ └── index.html │ │ │ │ ├── loading_button.LoadingButtonModule │ │ │ │ │ └── index.html │ │ │ │ ├── radio_group.RadioGroupComponent │ │ │ │ │ └── index.html │ │ │ │ ├── radio_group.RadioGroupModule │ │ │ │ │ └── index.html │ │ │ │ ├── select.SelectComponent │ │ │ │ │ └── index.html │ │ │ │ ├── select.SelectModule │ │ │ │ │ └── index.html │ │ │ │ ├── select_option_sort.SelectOptionSortModule │ │ │ │ │ └── index.html │ │ │ │ ├── select_option_sort.SelectOptionSortPipe │ │ │ │ │ └── index.html │ │ │ │ ├── src.LegiSharedModule │ │ │ │ │ └── index.html │ │ │ │ ├── textarea.TextareaComponent │ │ │ │ │ └── index.html │ │ │ │ ├── textarea.TextareaModule │ │ │ │ │ └── index.html │ │ │ │ ├── transloco_mat_paginator_adapter.TranslocoMatPaginatorAdapterModule │ │ │ │ │ └── index.html │ │ │ │ ├── transloco_mat_paginator_adapter.TranslocoMatPaginatorIntl │ │ │ │ │ └── index.html │ │ │ │ └── utils.ControlComponent │ │ │ │ │ └── index.html │ │ │ ├── enums │ │ │ │ └── date_picker.DatePickerType │ │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── interfaces │ │ │ │ ├── core.LegiSharedOptions │ │ │ │ │ └── index.html │ │ │ │ ├── legal_taxonomy_cv_provider.Concept │ │ │ │ │ └── index.html │ │ │ │ ├── legal_taxonomy_cv_provider.LegalTaxonomy │ │ │ │ │ └── index.html │ │ │ │ ├── legal_taxonomy_cv_provider.LegalTaxonomyCvProviderOptions │ │ │ │ │ └── index.html │ │ │ │ └── list_paginator.Pagination │ │ │ │ │ └── index.html │ │ │ └── modules │ │ │ │ ├── autocomplete │ │ │ │ └── index.html │ │ │ │ ├── checkbox_group │ │ │ │ └── index.html │ │ │ │ ├── core │ │ │ │ └── index.html │ │ │ │ ├── date_picker │ │ │ │ └── index.html │ │ │ │ ├── error │ │ │ │ └── index.html │ │ │ │ ├── highlight │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── input │ │ │ │ └── index.html │ │ │ │ ├── label │ │ │ │ └── index.html │ │ │ │ ├── legal_taxonomy_cv_provider │ │ │ │ └── index.html │ │ │ │ ├── list_paginator │ │ │ │ └── index.html │ │ │ │ ├── loading_button │ │ │ │ └── index.html │ │ │ │ ├── radio_group │ │ │ │ └── index.html │ │ │ │ ├── select │ │ │ │ └── index.html │ │ │ │ ├── select_option_sort │ │ │ │ └── index.html │ │ │ │ ├── src │ │ │ │ └── index.html │ │ │ │ ├── textarea │ │ │ │ └── index.html │ │ │ │ ├── transloco_mat_paginator_adapter │ │ │ │ └── index.html │ │ │ │ └── utils │ │ │ │ └── index.html │ │ └── index.html │ │ ├── material-icons │ │ ├── api │ │ │ ├── classes │ │ │ │ ├── CognizoneMatIconRegistry │ │ │ │ │ └── index.html │ │ │ │ └── CognizoneMaterialIconsModule │ │ │ │ │ └── index.html │ │ │ ├── enums │ │ │ │ └── MaterialTheme │ │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── interfaces │ │ │ │ └── CognizoneMaterialIconsOptions │ │ │ │ │ └── index.html │ │ │ └── modules │ │ │ │ └── index.html │ │ └── index.html │ │ ├── model-utils │ │ ├── api │ │ │ ├── classes │ │ │ │ ├── SelectOptionsProvidersMerger │ │ │ │ │ └── index.html │ │ │ │ └── SubSink │ │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── interfaces │ │ │ │ ├── ElasticAggregation │ │ │ │ │ └── index.html │ │ │ │ ├── ElasticBucket │ │ │ │ │ └── index.html │ │ │ │ ├── ElasticHit │ │ │ │ │ └── index.html │ │ │ │ ├── ElasticQuery │ │ │ │ │ └── index.html │ │ │ │ ├── ElasticSearchResponse │ │ │ │ │ └── index.html │ │ │ │ ├── GetSelectOptionsParams │ │ │ │ │ └── index.html │ │ │ │ ├── LangString │ │ │ │ │ └── index.html │ │ │ │ ├── LangStringSimple │ │ │ │ │ └── index.html │ │ │ │ ├── Pagination │ │ │ │ │ └── index.html │ │ │ │ ├── SelectOption │ │ │ │ │ └── index.html │ │ │ │ ├── SelectOptionCounts │ │ │ │ │ └── index.html │ │ │ │ ├── SelectOptionGroup │ │ │ │ │ └── index.html │ │ │ │ └── SelectOptionsProvider │ │ │ │ │ └── index.html │ │ │ └── modules │ │ │ │ └── index.html │ │ └── index.html │ │ ├── ng-application-profile │ │ ├── api │ │ │ ├── classes │ │ │ │ ├── ApFormBuilder │ │ │ │ │ └── index.html │ │ │ │ ├── ApHelper │ │ │ │ │ └── index.html │ │ │ │ ├── ApService │ │ │ │ │ └── index.html │ │ │ │ ├── ArrayMapper │ │ │ │ │ └── index.html │ │ │ │ ├── BooleanMapper │ │ │ │ │ └── index.html │ │ │ │ ├── CardinalityValidatorService │ │ │ │ │ └── index.html │ │ │ │ ├── DateMapper │ │ │ │ │ └── index.html │ │ │ │ ├── DateTimeMapper │ │ │ │ │ └── index.html │ │ │ │ ├── DefaultMapper │ │ │ │ │ └── index.html │ │ │ │ ├── IdGenerator │ │ │ │ │ └── index.html │ │ │ │ ├── JsonModelService │ │ │ │ │ └── index.html │ │ │ │ ├── MicroAsyncValidatorBuilder │ │ │ │ │ └── index.html │ │ │ │ ├── MicroValidatorBuilder │ │ │ │ │ └── index.html │ │ │ │ ├── NgApplicationProfileModule │ │ │ │ │ └── index.html │ │ │ │ ├── PrefixCcService │ │ │ │ │ └── index.html │ │ │ │ ├── ResourceGraphService │ │ │ │ │ └── index.html │ │ │ │ └── ResourceMapper │ │ │ │ │ └── index.html │ │ │ ├── enums │ │ │ │ ├── Datatype │ │ │ │ │ └── index.html │ │ │ │ └── DatatypeLong │ │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── interfaces │ │ │ │ ├── ApLoader │ │ │ │ │ └── index.html │ │ │ │ ├── ApplicationProfile │ │ │ │ │ └── index.html │ │ │ │ ├── ApplicationProfileRaw │ │ │ │ │ └── index.html │ │ │ │ ├── AttributeMapper │ │ │ │ │ └── index.html │ │ │ │ ├── AttributeProfile │ │ │ │ │ └── index.html │ │ │ │ ├── AttributeProfileRaw │ │ │ │ │ └── index.html │ │ │ │ ├── JsonModel │ │ │ │ │ └── index.html │ │ │ │ ├── JsonModelFlatGraph │ │ │ │ │ └── index.html │ │ │ │ ├── JsonModels │ │ │ │ │ └── index.html │ │ │ │ ├── MicroAttributeMapper │ │ │ │ │ └── index.html │ │ │ │ ├── Prefixes │ │ │ │ │ └── index.html │ │ │ │ ├── Resource │ │ │ │ │ └── index.html │ │ │ │ ├── ResourceAttribute │ │ │ │ │ └── index.html │ │ │ │ ├── ResourceGraph │ │ │ │ │ └── index.html │ │ │ │ ├── ResourceRaw │ │ │ │ │ └── index.html │ │ │ │ ├── TypeProfile │ │ │ │ │ └── index.html │ │ │ │ └── TypeProfileRaw │ │ │ │ │ └── index.html │ │ │ └── modules │ │ │ │ └── index.html │ │ └── index.html │ │ ├── ng-core │ │ ├── api │ │ │ ├── classes │ │ │ │ ├── ControlComponent │ │ │ │ │ └── index.html │ │ │ │ ├── DisabledControl │ │ │ │ │ └── index.html │ │ │ │ ├── LoadingService │ │ │ │ │ └── index.html │ │ │ │ ├── Logger │ │ │ │ │ └── index.html │ │ │ │ ├── LoggerModule │ │ │ │ │ └── index.html │ │ │ │ └── OnDestroy_ │ │ │ │ │ └── index.html │ │ │ ├── enums │ │ │ │ └── LogLevel │ │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── interfaces │ │ │ │ └── OnDestroyMixin │ │ │ │ │ └── index.html │ │ │ └── modules │ │ │ │ └── index.html │ │ └── index.html │ │ ├── ng-yasgui │ │ ├── api │ │ │ ├── classes │ │ │ │ ├── NgYasguiModule │ │ │ │ │ └── index.html │ │ │ │ ├── YasguiComponent │ │ │ │ │ └── index.html │ │ │ │ └── YasguiService │ │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── interfaces │ │ │ │ ├── CurrentYasgui │ │ │ │ │ └── index.html │ │ │ │ ├── Yasgui │ │ │ │ │ └── index.html │ │ │ │ └── Yasqe │ │ │ │ │ └── index.html │ │ │ └── modules │ │ │ │ └── index.html │ │ └── index.html │ │ ├── operation │ │ ├── api │ │ │ ├── classes │ │ │ │ ├── GetOperationDirective │ │ │ │ │ └── index.html │ │ │ │ ├── IfOperationDirective │ │ │ │ │ └── index.html │ │ │ │ ├── OperationDebug │ │ │ │ │ └── index.html │ │ │ │ ├── OperationDirective │ │ │ │ │ └── index.html │ │ │ │ ├── OperationGroupDebug │ │ │ │ │ └── index.html │ │ │ │ ├── OperationGroupDirective │ │ │ │ │ └── index.html │ │ │ │ ├── OperationGuard │ │ │ │ │ └── index.html │ │ │ │ ├── OperationUtils │ │ │ │ │ └── index.html │ │ │ │ ├── OperationViewerModalComponent │ │ │ │ │ └── index.html │ │ │ │ ├── OperationsModule │ │ │ │ │ └── index.html │ │ │ │ ├── OperationsService │ │ │ │ │ └── index.html │ │ │ │ ├── OperationsState │ │ │ │ │ └── index.html │ │ │ │ ├── RemoveOperationGroup │ │ │ │ │ └── index.html │ │ │ │ ├── SetOperationGroups │ │ │ │ │ └── index.html │ │ │ │ ├── ToggleDebugEnabled │ │ │ │ │ └── index.html │ │ │ │ └── UpdateOperationGroups │ │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── interfaces │ │ │ │ ├── Operation │ │ │ │ │ └── index.html │ │ │ │ ├── OperationChangeEvent │ │ │ │ │ └── index.html │ │ │ │ ├── OperationDebugOptions │ │ │ │ │ └── index.html │ │ │ │ ├── OperationGroup │ │ │ │ │ └── index.html │ │ │ │ ├── OperationGroupDebugOptions │ │ │ │ │ └── index.html │ │ │ │ ├── OperationGroupDescription │ │ │ │ │ └── index.html │ │ │ │ ├── OperationViewerModalComponentData │ │ │ │ │ └── index.html │ │ │ │ └── OperationsStateModel │ │ │ │ │ └── index.html │ │ │ └── modules │ │ │ │ └── index.html │ │ └── index.html │ │ ├── permissions │ │ ├── api │ │ │ ├── classes │ │ │ │ ├── EnabledForPermissionDirective │ │ │ │ │ └── index.html │ │ │ │ ├── GetHasPermissionDirective │ │ │ │ │ └── index.html │ │ │ │ ├── IfHasPermissionDirective │ │ │ │ │ └── index.html │ │ │ │ ├── PermissionsGuard │ │ │ │ │ └── index.html │ │ │ │ ├── PermissionsModule │ │ │ │ │ └── index.html │ │ │ │ └── PermissionsService │ │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── interfaces │ │ │ │ ├── GetHasPermissionContext │ │ │ │ │ └── index.html │ │ │ │ └── PermissionsProvider │ │ │ │ │ └── index.html │ │ │ └── modules │ │ │ │ └── index.html │ │ └── index.html │ │ ├── transloco-langstring │ │ ├── api │ │ │ ├── classes │ │ │ │ ├── LangStringPipe │ │ │ │ │ └── index.html │ │ │ │ └── TranslocoLangStringModule │ │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── modules │ │ │ │ └── index.html │ │ └── index.html │ │ └── user-action │ │ ├── api │ │ ├── classes │ │ │ ├── UserActionClient │ │ │ │ └── index.html │ │ │ ├── UserActionModule │ │ │ │ └── index.html │ │ │ ├── UserActionOptionsService │ │ │ │ └── index.html │ │ │ ├── UserActionService │ │ │ │ └── index.html │ │ │ └── UserActionTableComponent │ │ │ │ └── index.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── UserAction │ │ │ │ └── index.html │ │ │ ├── UserActionSearchOptions │ │ │ │ └── index.html │ │ │ └── UserActionsModuleOptions │ │ │ │ └── index.html │ │ └── modules │ │ │ └── index.html │ │ └── index.html ├── elastic-explorer │ ├── elastic-explorer-chrome-extension.zip │ ├── elastic-instances.json │ └── img │ │ ├── allow.png │ │ ├── dataValidation.png │ │ ├── elasticExplorer.png │ │ ├── facets.png │ │ ├── included.png │ │ ├── index.png │ │ ├── jsonModel.png │ │ ├── jsonModelFlatGraph.png │ │ ├── jsonUpload.png │ │ ├── manualMode.png │ │ ├── multipleTypes.png │ │ ├── rawData.png │ │ ├── rawFormat.png │ │ ├── searchByKeyword.png │ │ ├── searchByUri.png │ │ ├── structured.png │ │ ├── table.png │ │ ├── uriFilter.png │ │ └── webRemoval.png ├── img │ ├── favicon.ico │ └── logo.png ├── index.html └── sitemap.xml ├── jest.config.ts ├── jest.preset.js ├── libs ├── application-profile │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── models │ │ │ │ ├── application-profile-raw.ts │ │ │ │ ├── application-profile.ts │ │ │ │ ├── resource-graph.ts │ │ │ │ ├── resource.ts │ │ │ │ └── rule.ts │ │ │ └── utils │ │ │ │ └── get-concrete-type.ts │ │ └── public-api.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── cdk │ ├── .eslintrc.json │ ├── README.md │ ├── auto-resize-helper │ │ ├── auto-resize-helper.directive.ts │ │ ├── index.ts │ │ └── ng-package.json │ ├── core │ │ ├── index.ts │ │ ├── models │ │ │ └── focusable-elements-selector.ts │ │ ├── ng-package.json │ │ └── services │ │ │ └── id-generator.service.ts │ ├── defaults-to │ │ ├── defaults-to.pipe.ts │ │ ├── index.ts │ │ └── ng-package.json │ ├── feature-flag │ │ ├── feature-flag.service.ts │ │ ├── if-flag-enabled.directive.ts │ │ ├── index.ts │ │ └── ng-package.json │ ├── fetch-cache │ │ ├── index.ts │ │ ├── ng-package.json │ │ └── services │ │ │ ├── cache.service.ts │ │ │ ├── fetch-cache.service.ts │ │ │ ├── in-memory-cache.service.ts │ │ │ ├── index.ts │ │ │ └── storage-cache.service.ts │ ├── file-drop-zone │ │ ├── file-drop-zone.directive.ts │ │ ├── file-drop-zone.service.ts │ │ ├── index.ts │ │ └── ng-package.json │ ├── jest.config.ts │ ├── loading │ │ ├── abstract-load.directive.ts │ │ ├── if-loaded.directive.ts │ │ ├── if-loading.directive.ts │ │ ├── index.ts │ │ └── ng-package.json │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── pure-fn-pipe │ │ ├── index.ts │ │ ├── ng-package.json │ │ └── pure-fn.pipe.ts │ ├── pure-method-pipe │ │ ├── index.ts │ │ ├── ng-package.json │ │ └── pure-method.pipe.ts │ ├── result │ │ ├── index.ts │ │ ├── ng-package.json │ │ └── pipes │ │ │ ├── is-error.pipe.ts │ │ │ └── unwrap.pipe.ts │ ├── scrolling │ │ ├── index.ts │ │ ├── ng-package.json │ │ └── scroll-to-child-when-ready.directive.ts │ ├── src │ │ ├── index.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── cli │ ├── .ap-generationrc.json │ ├── .eslintignore │ ├── .eslintrc │ ├── .gitignore │ ├── .mocharc.json │ ├── README.md │ ├── assets │ │ └── templates │ │ │ ├── ap-interfaces-raw.ts.hbs │ │ │ ├── ap-interfaces.ts.hbs │ │ │ ├── index.ts.hbs │ │ │ ├── main.scss.hbs │ │ │ └── proxy.conf.js.hbs │ ├── bin │ │ ├── dev │ │ ├── dev.cmd │ │ ├── run │ │ └── run.cmd │ ├── package-lock.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── commands │ │ │ ├── add-linting.ts.old │ │ │ ├── create-ap-types.ts │ │ │ ├── ng-adapt-project.ts.old │ │ │ ├── sort-ap.ts │ │ │ └── validate-ap.ts │ │ ├── index.ts │ │ ├── models │ │ │ ├── angular-json.ts │ │ │ ├── default-prefixes.ts │ │ │ ├── index.ts │ │ │ └── package-json.ts │ │ ├── services │ │ │ ├── ap-fetch.service.ts │ │ │ ├── ap-interfaces-generation.service.ts │ │ │ ├── ap-raw-interfaces-generation.service.ts │ │ │ ├── ap-sub-class-mapping-generation.service.ts │ │ │ ├── index.ts │ │ │ ├── json.service.ts │ │ │ ├── prefix.service.ts │ │ │ └── template.service.ts │ │ └── utils │ │ │ └── normalize-class-id.ts │ ├── test │ │ ├── helpers │ │ │ └── init.js │ │ ├── placeholder.spec.ts │ │ └── tsconfig.json │ └── tsconfig.json ├── devtools │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── directives │ │ │ │ └── if-debug.directive.ts │ │ │ └── models │ │ │ │ ├── devtools-enabled.token.ts │ │ │ │ └── timer.ts │ │ ├── public-api.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── elastic │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── models │ │ │ │ ├── elastic-client.ts │ │ │ │ └── elastic-query.ts │ │ │ ├── services │ │ │ │ ├── elastic-ap-client.service.ts │ │ │ │ ├── elastic-client.service.ts │ │ │ │ └── elastic-raw-client.service.ts │ │ │ └── utils │ │ │ │ ├── get-by-uri-query.ts │ │ │ │ └── get-by-uris-query.ts │ │ ├── public-api.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── eslint-config │ ├── README.md │ ├── index.js │ ├── package.json │ ├── project.json │ └── template.js ├── html-diff │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── Action.ts │ │ │ ├── Diff.ts │ │ │ ├── Match.ts │ │ │ ├── MatchFinder.ts │ │ │ ├── MatchOptions.ts │ │ │ ├── Mode.ts │ │ │ ├── Operation.ts │ │ │ ├── Utils.ts │ │ │ ├── WordSplitter.ts │ │ │ └── index.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── i18n-transloco │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ └── services │ │ │ │ └── i18n-transloco.service.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.ivy.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── i18n │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── i18n.module.ts │ │ │ ├── pipes │ │ │ │ ├── label.pipe.ts │ │ │ │ └── translate.pipe.ts │ │ │ └── services │ │ │ │ └── i18n.service.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.ivy.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── json-ld-core │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── index.ts │ │ │ ├── models │ │ │ ├── index.ts │ │ │ ├── json-ld-container.ts │ │ │ ├── json-ld.ts │ │ │ └── value-descriptor.ts │ │ │ └── utils │ │ │ ├── get-all-nodes.ts │ │ │ ├── get-all-values.ts │ │ │ ├── get-child-uri.ts │ │ │ ├── get-children-uris.spec.ts │ │ │ ├── get-children-uris.ts │ │ │ ├── get-one-bool-value.ts │ │ │ ├── get-one-int-value.ts │ │ │ ├── get-one-literal-value.ts │ │ │ ├── get-one-node.ts │ │ │ ├── get-one-reference-value.ts │ │ │ ├── get-one-value.ts │ │ │ ├── get-raw-value.ts │ │ │ ├── get-raw-values.spec.ts │ │ │ ├── get-raw-values.ts │ │ │ ├── get-value-literal-type.ts │ │ │ ├── get-value.ts │ │ │ ├── get-values.ts │ │ │ ├── index.ts │ │ │ ├── is-json-ld-node.ts │ │ │ ├── is-of-type.ts │ │ │ ├── json-ld-traverser.spec.ts │ │ │ ├── json-ld-traverser.ts │ │ │ ├── json-ld-values-to-lang-string.ts │ │ │ ├── remove-value.ts │ │ │ └── tests │ │ │ ├── basic-test-graph.ts │ │ │ ├── deep-test-graph.ts │ │ │ ├── index.ts │ │ │ └── wide-test-graph.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── json-ld │ ├── .eslintrc.json │ ├── README.md │ ├── form │ │ ├── directives │ │ │ ├── graph-form.directive.ts │ │ │ ├── index.ts │ │ │ └── node-form.directive.ts │ │ ├── index.ts │ │ ├── json-ld-form.module.ts │ │ ├── ng-package.json │ │ └── services │ │ │ ├── graph-and-control-linking.service.ts │ │ │ ├── index.ts │ │ │ └── uris-store.service.ts │ ├── get-value │ │ ├── index.ts │ │ ├── json-ld-get-all-values.pipe.ts │ │ ├── json-ld-get-node.pipe.ts │ │ ├── json-ld-get-value.pipe.ts │ │ └── ng-package.json │ ├── jest.config.ts │ ├── label │ │ ├── index.ts │ │ ├── json-ld-label.directive.ts │ │ ├── json-ld-label.pipe.ts │ │ ├── json-ld-label.service.ts │ │ └── ng-package.json │ ├── ng-core │ │ ├── index.ts │ │ ├── ng-package.json │ │ └── services │ │ │ ├── __snapshots__ │ │ │ └── json-ld.service.spec.ts.snap │ │ │ ├── index.ts │ │ │ ├── json-ld.service.spec.ts │ │ │ └── json-ld.service.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── test-setup.ts │ ├── store │ │ ├── index.ts │ │ ├── json-ld-store.module.ts │ │ ├── models │ │ │ ├── graph-status.ts │ │ │ └── index.ts │ │ ├── ng-package.json │ │ ├── services │ │ │ ├── index.ts │ │ │ └── json-ld-store.service.ts │ │ └── store │ │ │ ├── graph.actions.ts │ │ │ ├── graph.state.ts │ │ │ └── index.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── json-model-graph │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── directives │ │ │ │ ├── if-attribute-in-ap.directive.ts │ │ │ │ ├── node-attribute-linked.directive.ts │ │ │ │ ├── node-attribute.directive.ts │ │ │ │ ├── node-uri.directive.ts │ │ │ │ └── root-uri.directive.ts │ │ │ ├── models │ │ │ │ ├── graph-status.ts │ │ │ │ └── node-recipe.ts │ │ │ ├── services │ │ │ │ ├── graph-and-control-linking.service.spec.ts │ │ │ │ ├── graph-and-control-linking.service.ts │ │ │ │ ├── graph-wrapper.factory.ts │ │ │ │ ├── graph-wrapper.ts │ │ │ │ ├── graph.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── node-wrapper.ts │ │ │ │ └── uris-store.service.ts │ │ │ └── store │ │ │ │ ├── graph.actions.ts │ │ │ │ └── graph.state.ts │ │ ├── public-api.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.ivy.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── json-model │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── index.ts │ │ │ ├── models │ │ │ │ ├── index.ts │ │ │ │ ├── json-model.ts │ │ │ │ └── resource.ts │ │ │ ├── provide-json-model.ts │ │ │ ├── services │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── json-model.service.spec.ts.snap │ │ │ │ │ └── resource-graph.service.spec.ts.snap │ │ │ │ ├── data-model-definition-helper.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── json-model.service.spec.ts │ │ │ │ ├── json-model.service.ts │ │ │ │ ├── mappers │ │ │ │ │ ├── array-mapper.service.ts │ │ │ │ │ ├── boolean-mapper.service.ts │ │ │ │ │ ├── date-mapper.service.ts │ │ │ │ │ ├── date-time-mapper.service.ts │ │ │ │ │ ├── default-mapper.service.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── lang-string-mapper.service.ts │ │ │ │ │ └── micro-attribute-mapper.ts │ │ │ │ ├── resource-graph.service.spec.ts │ │ │ │ ├── resource-graph.service.ts │ │ │ │ └── resource-mapper.service.ts │ │ │ └── utils │ │ │ │ ├── get-uri.ts │ │ │ │ ├── index.ts │ │ │ │ ├── is-curie.spec.ts │ │ │ │ ├── is-curie.ts │ │ │ │ ├── is-of-type.ts │ │ │ │ └── keys.ts │ │ ├── test-setup.ts │ │ └── test │ │ │ ├── data │ │ │ ├── casemates-concept-1.json │ │ │ ├── directives-eudossier-1.json │ │ │ ├── directives-eudossier-2.json │ │ │ ├── draft-1.json │ │ │ ├── draft-2.json │ │ │ ├── draft-3.json │ │ │ ├── draft-4.json │ │ │ ├── legiswiss-act-1.json │ │ │ └── treaty-json-model-1.json │ │ │ ├── directive-ap.json │ │ │ ├── legal-taxonomy.json │ │ │ ├── lux-legipro-ap.json │ │ │ ├── treaty-ap.json │ │ │ └── treaty-process-flat-graph.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── legi-cv │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── directives │ │ │ │ ├── cv-label.directive.ts │ │ │ │ ├── cv-options.directive.ts │ │ │ │ └── cv-value.directive.ts │ │ │ ├── models │ │ │ │ ├── collection.ts │ │ │ │ ├── concept-filterable-keys.ts │ │ │ │ ├── concept-scheme.ts │ │ │ │ ├── concept-wrapper.ts │ │ │ │ ├── concept.ts │ │ │ │ ├── cv.ts │ │ │ │ ├── get-cv-params.ts │ │ │ │ ├── legi-cv-options.ts │ │ │ │ └── match-type.ts │ │ │ ├── provide-legi-cv.ts │ │ │ ├── services │ │ │ │ ├── atomic-cv-client.service.ts │ │ │ │ ├── atomic-cv-provider.ts │ │ │ │ ├── collection-cv-provider.ts │ │ │ │ ├── concept-matcher.service.ts │ │ │ │ ├── concept-scheme-cv-provider.ts │ │ │ │ ├── cv-provider.ts │ │ │ │ ├── cv-select-options-provider.ts │ │ │ │ ├── cv-state.service.ts │ │ │ │ ├── cv.service.ts │ │ │ │ ├── elastic-atomic-cv-client.service.ts │ │ │ │ ├── index.ts │ │ │ │ └── legi-cv-options.service.ts │ │ │ └── store │ │ │ │ ├── cv.actions.ts │ │ │ │ └── cv.state.ts │ │ ├── public-api.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.ivy.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── lod-core │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── index.ts │ │ │ ├── models │ │ │ ├── index.ts │ │ │ ├── lod-context.ts │ │ │ ├── namespace.spec.ts │ │ │ ├── namespace.ts │ │ │ └── namespaces │ │ │ │ ├── dct.ts │ │ │ │ ├── hanami.ts │ │ │ │ ├── index.ts │ │ │ │ ├── owl.ts │ │ │ │ ├── rdf.ts │ │ │ │ ├── rdfs.ts │ │ │ │ ├── sh.ts │ │ │ │ └── xsd.ts │ │ │ └── utils │ │ │ ├── index.ts │ │ │ ├── is-curie.spec.ts │ │ │ └── is-curie.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── lod │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── models │ │ │ │ ├── index.ts │ │ │ │ └── lod-options.ts │ │ │ └── services │ │ │ │ ├── index.ts │ │ │ │ ├── lod-options.service.ts │ │ │ │ ├── prefix.service.spec.ts │ │ │ │ ├── prefix.service.ts │ │ │ │ ├── uri-generator.service.spec.ts │ │ │ │ └── uri-generator.service.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── material-icons │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── models │ │ │ │ └── cognizone-material-icons-options.ts │ │ │ ├── provide-cognizone-material-icons.ts │ │ │ └── services │ │ │ │ └── cognizone-mat-icon-registry.service.ts │ │ ├── public-api.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── model-utils │ ├── .eslintrc.json │ ├── CHANGELOG.md │ ├── README.md │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── elastic │ │ │ │ ├── index.ts │ │ │ │ ├── models │ │ │ │ │ ├── bool-query-builder.spec.ts │ │ │ │ │ ├── bool-query-builder.ts │ │ │ │ │ ├── bool-query.ts │ │ │ │ │ ├── elastic-dsl-query.ts │ │ │ │ │ ├── elastic-query.ts │ │ │ │ │ ├── elastic-search-response.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── match-phrase-prefix.spec.ts │ │ │ │ │ ├── match-phrase-prefix.ts │ │ │ │ │ ├── minimum-should-match.ts │ │ │ │ │ ├── range-query.spec.ts │ │ │ │ │ ├── range-query.ts │ │ │ │ │ ├── simple-query-string.spec.ts │ │ │ │ │ ├── simple-query-string.ts │ │ │ │ │ ├── term-query.spec.ts │ │ │ │ │ ├── term-query.ts │ │ │ │ │ ├── terms-query.spec.ts │ │ │ │ │ └── terms-query.ts │ │ │ │ └── utils │ │ │ │ │ ├── extract-one-source-from-elastic-response.spec.ts │ │ │ │ │ ├── extract-one-source-from-elastic-response.ts │ │ │ │ │ ├── extract-sources-from-elastic-response.spec.ts │ │ │ │ │ ├── extract-sources-from-elastic-response.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── map-elastic-sources.spec.ts │ │ │ │ │ └── map-elastic-sources.ts │ │ │ ├── models │ │ │ │ ├── completable.ts │ │ │ │ ├── cz-label.ts │ │ │ │ ├── data-type.ts │ │ │ │ ├── dictionary.ts │ │ │ │ ├── index.ts │ │ │ │ ├── lang-string.ts │ │ │ │ ├── many.ts │ │ │ │ ├── nil.ts │ │ │ │ ├── pagination.ts │ │ │ │ ├── primitive.ts │ │ │ │ ├── select-option.ts │ │ │ │ ├── sorter.ts │ │ │ │ ├── thunk.ts │ │ │ │ ├── typed-resource-context.ts │ │ │ │ ├── typed-resource-graph.ts │ │ │ │ ├── typed-resource.ts │ │ │ │ ├── unknown-object.ts │ │ │ │ └── values-of.ts │ │ │ ├── operators │ │ │ │ ├── debounce-sync.ts │ │ │ │ ├── or-else.ts │ │ │ │ └── select-prop.ts │ │ │ ├── pipe │ │ │ │ ├── index.ts │ │ │ │ ├── models │ │ │ │ │ ├── index.ts │ │ │ │ │ └── pipe-function.ts │ │ │ │ └── utils │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── pipe.spec.ts │ │ │ │ │ └── pipe.ts │ │ │ ├── result │ │ │ │ ├── README.md │ │ │ │ ├── index.ts │ │ │ │ ├── models │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── mapper.ts │ │ │ │ │ └── result.ts │ │ │ │ └── utils │ │ │ │ │ ├── error.spec.ts │ │ │ │ │ ├── error.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── is-error.spec.ts │ │ │ │ │ ├── is-error.ts │ │ │ │ │ ├── is-ok.spec.ts │ │ │ │ │ ├── is-ok.ts │ │ │ │ │ ├── lazy-or.spec.ts │ │ │ │ │ ├── lazy-or.ts │ │ │ │ │ ├── lazy-unwrap.spec.ts │ │ │ │ │ ├── lazy-unwrap.ts │ │ │ │ │ ├── map-error.spec.ts │ │ │ │ │ ├── map-error.ts │ │ │ │ │ ├── map-ok.spec.ts │ │ │ │ │ ├── map-ok.ts │ │ │ │ │ ├── ok.spec.ts │ │ │ │ │ ├── ok.ts │ │ │ │ │ ├── on.spec.ts │ │ │ │ │ ├── on.ts │ │ │ │ │ ├── or.spec.ts │ │ │ │ │ ├── or.ts │ │ │ │ │ ├── to-error.spec.ts │ │ │ │ │ ├── to-error.ts │ │ │ │ │ ├── to-ok.spec.ts │ │ │ │ │ ├── to-ok.ts │ │ │ │ │ ├── try-recover.spec.ts │ │ │ │ │ ├── try-recover.ts │ │ │ │ │ ├── unwrap-both.spec.ts │ │ │ │ │ ├── unwrap-both.ts │ │ │ │ │ ├── unwrap.spec.ts │ │ │ │ │ └── unwrap.ts │ │ │ └── utils │ │ │ │ ├── completable-to-observable.spec.ts │ │ │ │ ├── completable-to-observable.ts │ │ │ │ ├── completable-to-promise.spec.ts │ │ │ │ ├── completable-to-promise.ts │ │ │ │ ├── cz-label-to-string.spec.ts │ │ │ │ ├── cz-label-to-string.ts │ │ │ │ ├── date-to-date-string.spec.ts │ │ │ │ ├── date-to-date-string.ts │ │ │ │ ├── download-blob.spec.ts │ │ │ │ ├── download-blob.ts │ │ │ │ ├── extract-thunk-value.ts │ │ │ │ ├── get-all-properties.spec.ts │ │ │ │ ├── get-all-properties.ts │ │ │ │ ├── get-all-select-options.spec.ts │ │ │ │ ├── get-all-select-options.ts │ │ │ │ ├── get-lang-string-value.ts │ │ │ │ ├── group-select-options.spec.ts │ │ │ │ ├── group-select-options.ts │ │ │ │ ├── index.ts │ │ │ │ ├── iri-pattern.ts │ │ │ │ ├── is-empty.ts │ │ │ │ ├── is-select-option.spec.ts │ │ │ │ ├── is-select-option.ts │ │ │ │ ├── many-to-array.spec.ts │ │ │ │ ├── many-to-array.ts │ │ │ │ ├── many-to-one.spec.ts │ │ │ │ ├── many-to-one.ts │ │ │ │ ├── memoize.spec.ts │ │ │ │ ├── memoize.ts │ │ │ │ ├── not-nil.spec.ts │ │ │ │ ├── not-nil.ts │ │ │ │ ├── select-option-match-query.spec.ts │ │ │ │ ├── select-option-match-query.ts │ │ │ │ ├── select-options-providers-merger.ts │ │ │ │ ├── strict-entries.spec.ts │ │ │ │ ├── strict-entries.ts │ │ │ │ ├── sub-sink.spec.ts │ │ │ │ ├── sub-sink.ts │ │ │ │ ├── track-by-select-option.spec.ts │ │ │ │ └── track-by-select-option.ts │ │ └── test │ │ │ └── elastic-search-response-1.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── ng-application-profile │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── provide-ng-application-profile.ts │ │ │ ├── services │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── ap-helper.service.spec.ts.snap │ │ │ │ ├── ap-form-builder.service.ts │ │ │ │ ├── ap-helper.service.spec.ts │ │ │ │ ├── ap-helper.service.ts │ │ │ │ ├── ap-loader.ts │ │ │ │ ├── ap.service.ts │ │ │ │ └── validators │ │ │ │ │ └── cardinality-validator.service.ts │ │ │ └── store │ │ │ │ └── ap.store.ts │ │ ├── public-api.ts │ │ ├── test-setup.ts │ │ └── test │ │ │ └── directive-ap.json │ ├── tsconfig.json │ ├── tsconfig.lib.ivy.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── ng-core │ ├── .eslintrc.json │ ├── CHANGELOG.md │ ├── README.md │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── components │ │ │ │ ├── control.component.spec.ts │ │ │ │ └── control.component.ts │ │ │ ├── helpers │ │ │ │ ├── on-destroy.spec.ts │ │ │ │ └── on-destroy.ts │ │ │ ├── models │ │ │ │ └── disabled-control.ts │ │ │ ├── modules │ │ │ │ └── logger │ │ │ │ │ ├── logger.factory.ts │ │ │ │ │ ├── logger.service.ts │ │ │ │ │ ├── models │ │ │ │ │ ├── log-level.ts │ │ │ │ │ └── logger-namespace.token.ts │ │ │ │ │ ├── provide-logger.ts │ │ │ │ │ └── public-api.ts │ │ │ ├── operators │ │ │ │ ├── is-instance-of.spec.ts │ │ │ │ ├── is-instance-of.ts │ │ │ │ ├── share-replay-safe.ts │ │ │ │ └── start-with-tap.ts │ │ │ ├── public-api.ts │ │ │ ├── services │ │ │ │ ├── loading.service.ts │ │ │ │ └── ttl-cache.service.ts │ │ │ └── types │ │ │ │ └── maybe.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.ivy.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── ng-yasgui │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── assets │ │ │ ├── yasgui.min.css │ │ │ └── yasgui.min.js │ │ ├── index.ts │ │ ├── lib │ │ │ ├── components │ │ │ │ └── yasgui │ │ │ │ │ ├── yasgui.component.html │ │ │ │ │ ├── yasgui.component.scss │ │ │ │ │ └── yasgui.component.ts │ │ │ ├── models │ │ │ │ └── yasgui.ts │ │ │ └── services │ │ │ │ └── yasgui.service.ts │ │ ├── public-api.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.ivy.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── operation │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── components │ │ │ │ └── operation-viewer-modal │ │ │ │ │ └── operation-viewer-modal.component.ts │ │ │ ├── directives │ │ │ │ ├── get-operation.directive.ts │ │ │ │ ├── if-operation.directive.ts │ │ │ │ ├── operation-group.directive.ts │ │ │ │ └── operation.directive.ts │ │ │ ├── guards │ │ │ │ └── operation.guard.ts │ │ │ ├── models │ │ │ │ └── operation.ts │ │ │ ├── services │ │ │ │ ├── operation-debug.service.ts │ │ │ │ ├── operation-group-debug.service.ts │ │ │ │ ├── operation-utils.service.ts │ │ │ │ └── operations.service.ts │ │ │ └── store │ │ │ │ ├── operations.actions.ts │ │ │ │ └── operations.state.ts │ │ ├── public-api.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.ivy.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── permissions │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── directives │ │ │ │ ├── enabled-for-permission.directive.ts │ │ │ │ ├── get-has-permission.directive.ts │ │ │ │ └── if-has-permission.directive.ts │ │ │ ├── guards │ │ │ │ └── permissions.guard.ts │ │ │ └── services │ │ │ │ ├── permissions-provider.ts │ │ │ │ └── permissions.service.ts │ │ ├── public-api.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.ivy.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── prettier-config │ ├── README.md │ ├── index.json │ ├── package.json │ └── project.json ├── seo │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── directives │ │ │ │ ├── index.ts │ │ │ │ ├── meta-property.directive.spec.ts │ │ │ │ └── meta-property.directive.ts │ │ │ ├── index.ts │ │ │ ├── models │ │ │ │ ├── index.ts │ │ │ │ ├── meta-descriptor.ts │ │ │ │ ├── meta-id.ts │ │ │ │ ├── meta-ids.ts │ │ │ │ ├── meta-property-directive-props.ts │ │ │ │ ├── processor.ts │ │ │ │ ├── robots-values.ts │ │ │ │ ├── seo-options.ts │ │ │ │ └── seo-state.ts │ │ │ ├── services │ │ │ │ ├── index.ts │ │ │ │ ├── seo.service.spec.ts │ │ │ │ └── seo.service.ts │ │ │ └── utils │ │ │ │ ├── create-prefix.ts │ │ │ │ └── index.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── shacl-core │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── index.ts │ │ │ ├── models │ │ │ ├── hanami.model.ts │ │ │ ├── index.ts │ │ │ ├── path-mode.ts │ │ │ └── shapes-paths.ts │ │ │ └── utils │ │ │ ├── get-concrete-node-kind-of-value.spec.ts │ │ │ ├── get-concrete-node-kind-of-value.ts │ │ │ ├── get-concrete-node-kinds-of-property-shape.spec.ts │ │ │ ├── get-concrete-node-kinds-of-property-shape.ts │ │ │ ├── get-concrete-node-kinds.spec.ts │ │ │ ├── get-concrete-node-kinds.ts │ │ │ ├── get-path-descriptor.ts │ │ │ ├── get-target-classes.ts │ │ │ └── index.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── shacl │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── models │ │ │ │ ├── index.ts │ │ │ │ └── memoizer.ts │ │ │ └── services │ │ │ │ ├── index.ts │ │ │ │ ├── shacl-data-graph-helper.service.ts │ │ │ │ └── shacl-shapes-graph-helper.service.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── transloco-langstring │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── pipes │ │ │ │ └── lang-string.pipe.ts │ │ │ └── transloco-langstring.module.ts │ │ ├── public-api.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.ivy.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── tslint-config │ ├── README.md │ ├── index.json │ ├── package.json │ └── project.json └── ui-kit │ ├── .eslintrc.json │ ├── .storybook │ ├── main.js │ ├── preview.js │ └── tsconfig.json │ ├── README.md │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── spinner │ ├── index.ts │ ├── ng-package.json │ ├── spinner.component.stories.ts │ └── spinner.component.ts │ ├── src │ ├── index.ts │ └── test-setup.ts │ ├── styles │ ├── main.scss │ └── themes │ │ └── default.scss │ ├── toggletip │ ├── index.ts │ ├── ng-package.json │ ├── toggletip-trigger-for.directive.ts │ ├── toggletip.component.ts │ └── toggletip.module.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── nx.json ├── package.json ├── release.config.js ├── tools ├── anon.js ├── executors │ ├── build-assets │ │ ├── .gitignore │ │ ├── executor.json │ │ ├── impl.ts │ │ ├── package.json │ │ └── schema.json │ └── build-cli │ │ ├── .gitignore │ │ ├── executor.json │ │ ├── impl.ts │ │ ├── package.json │ │ └── schema.json ├── link-lib │ ├── .gitignore │ ├── start-lib-build.js │ ├── start-lib-sync.js │ └── start-lib.config.example.json ├── set-peer-deps.js ├── sync-cli-deps.js ├── sync-package-metadata.js ├── sync-versions.js └── tsconfig.tools.json └── tsconfig.base.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @cognizone/legi-frontend-devs -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/.github/workflows/deploy-docs.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.nxignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/.nxignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/.prettierrc -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/.storybook/tsconfig.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/README.md -------------------------------------------------------------------------------- /apps/docs-app-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs-app-e2e/.eslintrc.json -------------------------------------------------------------------------------- /apps/docs-app-e2e/cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs-app-e2e/cypress.json -------------------------------------------------------------------------------- /apps/docs-app-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs-app-e2e/project.json -------------------------------------------------------------------------------- /apps/docs-app-e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs-app-e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /apps/docs-app-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs-app-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/docs-app/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs-app/.eslintrc.json -------------------------------------------------------------------------------- /apps/docs-app/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs-app/jest.config.ts -------------------------------------------------------------------------------- /apps/docs-app/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs-app/project.json -------------------------------------------------------------------------------- /apps/docs-app/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs-app/src/app/app.module.ts -------------------------------------------------------------------------------- /apps/docs-app/src/app/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs-app/src/app/core/index.ts -------------------------------------------------------------------------------- /apps/docs-app/src/app/core/views/page-not-found/page-not-found.component.html: -------------------------------------------------------------------------------- 1 |
page-not-found works!
2 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/core/views/page-not-found/page-not-found.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/architecture/architecture.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/architecture/components/cd-default/cd-default.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/architecture/components/cd-on-push/cd-on-push.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/architecture/components/on-push-async-pipe/on-push-async-pipe.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/architecture/components/on-push-cd-ref/on-push-cd-ref.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/architecture/views/components-architecture/components-architecture.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/architecture/views/env-apis-and-flags/env-apis-and-flags.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/architecture/views/general-form-article/general-form-article.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/architecture/views/styling/styling.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/packages-doc/features/model-utils-doc/views/date-to-date-string/date-to-date-string.view.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/packages-doc/features/model-utils-doc/views/dictionary/dictionary.view.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/packages-doc/features/model-utils-doc/views/download-blob/download-blob.view.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/packages-doc/features/model-utils-doc/views/get-all-properties/get-all-properties.view.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/packages-doc/features/model-utils-doc/views/lang-string/lang-string.view.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/packages-doc/features/model-utils-doc/views/many/many.view.html: -------------------------------------------------------------------------------- 1 |many works!
2 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/packages-doc/features/model-utils-doc/views/many/many.view.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/packages-doc/features/model-utils-doc/views/nil/nil.view.html: -------------------------------------------------------------------------------- 1 |nil works!
2 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/packages-doc/features/model-utils-doc/views/nil/nil.view.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/packages-doc/features/model-utils-doc/views/or-else/or-else.view.html: -------------------------------------------------------------------------------- 1 |or-else works!
2 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/packages-doc/features/model-utils-doc/views/or-else/or-else.view.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/packages-doc/features/model-utils-doc/views/pagination/pagination.view.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/packages-doc/features/model-utils-doc/views/select-option/select-option.view.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/packages-doc/features/model-utils-doc/views/select-prop/select-prop.view.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/packages-doc/features/model-utils-doc/views/strict-entries/strict-entries.view.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/packages-doc/features/model-utils-doc/views/sub-sink/sub-sink.view.html: -------------------------------------------------------------------------------- 1 |sub-sink works!
2 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/packages-doc/features/model-utils-doc/views/sub-sink/sub-sink.view.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/packages-doc/features/ng-core-doc/views/logger-doc/logger-doc.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/packages-doc/features/ng-core-doc/views/on-destroy-mixin-doc/on-destroy-mixin-doc.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/features/packages-doc/views/libraries-list/libraries-list.view.scss: -------------------------------------------------------------------------------- 1 | mat-card { 2 | cursor: pointer; 3 | } 4 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/shared/components/article-title/article-title.component.scss: -------------------------------------------------------------------------------- 1 | .mat-h5 { 2 | margin: 0; 3 | } 4 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/shared/components/article/article.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/shared/components/code-link/code-link.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs-app/src/app/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs-app/src/app/shared/index.ts -------------------------------------------------------------------------------- /apps/docs-app/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs-app/src/favicon.ico -------------------------------------------------------------------------------- /apps/docs-app/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs-app/src/index.html -------------------------------------------------------------------------------- /apps/docs-app/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs-app/src/main.ts -------------------------------------------------------------------------------- /apps/docs-app/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs-app/src/polyfills.ts -------------------------------------------------------------------------------- /apps/docs-app/src/styles/layout/_grid.scss: -------------------------------------------------------------------------------- 1 | // If I had a grid system, I would put it there 2 | -------------------------------------------------------------------------------- /apps/docs-app/src/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs-app/src/styles/main.scss -------------------------------------------------------------------------------- /apps/docs-app/src/styles/vendors/bootstrap/_override.scss: -------------------------------------------------------------------------------- 1 | $border-radius: 0.5rem !default; 2 | -------------------------------------------------------------------------------- /apps/docs-app/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs-app/src/test-setup.ts -------------------------------------------------------------------------------- /apps/docs-app/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs-app/tsconfig.app.json -------------------------------------------------------------------------------- /apps/docs-app/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs-app/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/docs-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs-app/tsconfig.json -------------------------------------------------------------------------------- /apps/docs-app/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs-app/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs/.gitignore -------------------------------------------------------------------------------- /apps/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs/README.md -------------------------------------------------------------------------------- /apps/docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs/babel.config.js -------------------------------------------------------------------------------- /apps/docs/docs/guides/application-profile.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs/docs/libraries/devtools/_description.md: -------------------------------------------------------------------------------- 1 | Describe me if you can 2 | -------------------------------------------------------------------------------- /apps/docs/docs/libraries/elastic-explorer/_description.md: -------------------------------------------------------------------------------- 1 | Describe me if you can 2 | -------------------------------------------------------------------------------- /apps/docs/docs/libraries/elastic/_description.md: -------------------------------------------------------------------------------- 1 | Describe me if you can 2 | -------------------------------------------------------------------------------- /apps/docs/docs/libraries/i18n-transloco/_description.md: -------------------------------------------------------------------------------- 1 | Describe me if you can 2 | -------------------------------------------------------------------------------- /apps/docs/docs/libraries/i18n/_description.md: -------------------------------------------------------------------------------- 1 | Describe me if you can 2 | -------------------------------------------------------------------------------- /apps/docs/docs/libraries/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs/docs/libraries/index.mdx -------------------------------------------------------------------------------- /apps/docs/docs/libraries/json-model-graph/_description.md: -------------------------------------------------------------------------------- 1 | Describe me if you can 2 | -------------------------------------------------------------------------------- /apps/docs/docs/libraries/legi-cv/_description.md: -------------------------------------------------------------------------------- 1 | Describe me if you can 2 | -------------------------------------------------------------------------------- /apps/docs/docs/libraries/legi-shared/_description.md: -------------------------------------------------------------------------------- 1 | Describe me if you can 2 | -------------------------------------------------------------------------------- /apps/docs/docs/libraries/material-icons/_description.md: -------------------------------------------------------------------------------- 1 | Describe me if you can 2 | -------------------------------------------------------------------------------- /apps/docs/docs/libraries/ng-application-profile/_description.md: -------------------------------------------------------------------------------- 1 | Describe me if you can 2 | -------------------------------------------------------------------------------- /apps/docs/docs/libraries/ng-core/_description.md: -------------------------------------------------------------------------------- 1 | Describe me if you can 2 | -------------------------------------------------------------------------------- /apps/docs/docs/libraries/ng-yasgui/_description.md: -------------------------------------------------------------------------------- 1 | Describe me if you can 2 | -------------------------------------------------------------------------------- /apps/docs/docs/libraries/operation/_description.md: -------------------------------------------------------------------------------- 1 | Describe me if you can 2 | -------------------------------------------------------------------------------- /apps/docs/docs/libraries/permissions/_description.md: -------------------------------------------------------------------------------- 1 | Describe me if you can 2 | -------------------------------------------------------------------------------- /apps/docs/docs/libraries/transloco-langstring/_description.md: -------------------------------------------------------------------------------- 1 | Describe me if you can 2 | -------------------------------------------------------------------------------- /apps/docs/docs/libraries/user-action/_description.md: -------------------------------------------------------------------------------- 1 | Describe me if you can 2 | -------------------------------------------------------------------------------- /apps/docs/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs/docusaurus.config.js -------------------------------------------------------------------------------- /apps/docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs/package-lock.json -------------------------------------------------------------------------------- /apps/docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs/package.json -------------------------------------------------------------------------------- /apps/docs/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs/sidebars.js -------------------------------------------------------------------------------- /apps/docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs/src/css/custom.css -------------------------------------------------------------------------------- /apps/docs/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs/src/pages/index.module.css -------------------------------------------------------------------------------- /apps/docs/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs/src/pages/index.tsx -------------------------------------------------------------------------------- /apps/docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /apps/docs/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs/static/img/logo.png -------------------------------------------------------------------------------- /apps/docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/docs/tsconfig.json -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/core/interceptors/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/core/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/core/store/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/libs/elastic-explorer/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/libs/legi-shared/autocomplete/autocomplete-single/autocomplete-single.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/libs/legi-shared/autocomplete/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/libs/legi-shared/checkbox-group/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/libs/legi-shared/core/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/libs/legi-shared/date-picker/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/libs/legi-shared/error/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/libs/legi-shared/highlight/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/libs/legi-shared/input/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/libs/legi-shared/label/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/libs/legi-shared/label/label.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/libs/legi-shared/legal-taxonomy-cv-provider/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/libs/legi-shared/list-paginator/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/libs/legi-shared/loading-button/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/libs/legi-shared/radio-group/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/libs/legi-shared/select-option-sort/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/libs/legi-shared/select/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/libs/legi-shared/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/legi-shared.module'; 2 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/libs/legi-shared/textarea/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/libs/legi-shared/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/libs/legi-styles/stories/buttons/buttons.component.scss: -------------------------------------------------------------------------------- 1 | @import '../common'; 2 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/libs/legi-styles/stories/common.scss: -------------------------------------------------------------------------------- 1 | @import '../styles/components-pack'; 2 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/libs/legi-styles/styles/layout/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/libs/legi-styles/styles/themes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/libs/legi-styles/styles/vendors/_bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'bootstrap/base'; 2 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/libs/legi-styles/styles/vendors/_material.scss: -------------------------------------------------------------------------------- 1 | @import 'material/main'; 2 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/shared/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/shared/directives/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/shared/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/shared/pipes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/app/shared/services/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/styles/abstracts/_mixins.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/styles/abstracts/_variables.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/styles/base/_base.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/styles/base/_typography.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/styles/components-pack.scss: -------------------------------------------------------------------------------- 1 | @import 'abstracts'; 2 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/styles/layout/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/styles/themes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/elastic-explorer-chrome-extension/src/styles/vendors/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/ui-kit-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/ui-kit-e2e/.eslintrc.json -------------------------------------------------------------------------------- /apps/ui-kit-e2e/cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/ui-kit-e2e/cypress.json -------------------------------------------------------------------------------- /apps/ui-kit-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/ui-kit-e2e/project.json -------------------------------------------------------------------------------- /apps/ui-kit-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/apps/ui-kit-e2e/tsconfig.json -------------------------------------------------------------------------------- /decorate-angular-cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/decorate-angular-cli.js -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/assets/css/styles.c49afed5.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/css/styles.c49afed5.css -------------------------------------------------------------------------------- /docs/assets/js/00cd5775.90a34bbd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/00cd5775.90a34bbd.js -------------------------------------------------------------------------------- /docs/assets/js/02084a28.9e3f1741.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/02084a28.9e3f1741.js -------------------------------------------------------------------------------- /docs/assets/js/036c1e00.e0afbfc4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/036c1e00.e0afbfc4.js -------------------------------------------------------------------------------- /docs/assets/js/04376eab.0fe3971a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/04376eab.0fe3971a.js -------------------------------------------------------------------------------- /docs/assets/js/048e5099.5938e08b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/048e5099.5938e08b.js -------------------------------------------------------------------------------- /docs/assets/js/056f6a34.3cbddbe1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/056f6a34.3cbddbe1.js -------------------------------------------------------------------------------- /docs/assets/js/05c05504.d7603290.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/05c05504.d7603290.js -------------------------------------------------------------------------------- /docs/assets/js/06b2ac62.35bcaa8e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/06b2ac62.35bcaa8e.js -------------------------------------------------------------------------------- /docs/assets/js/06c354ef.e31da168.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/06c354ef.e31da168.js -------------------------------------------------------------------------------- /docs/assets/js/07774728.b1a805a7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/07774728.b1a805a7.js -------------------------------------------------------------------------------- /docs/assets/js/098b9bd3.0c0871fe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/098b9bd3.0c0871fe.js -------------------------------------------------------------------------------- /docs/assets/js/09a0bb49.2be30fde.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/09a0bb49.2be30fde.js -------------------------------------------------------------------------------- /docs/assets/js/0bbe7976.8320e3c1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/0bbe7976.8320e3c1.js -------------------------------------------------------------------------------- /docs/assets/js/0be3f0bd.00bb9f39.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/0be3f0bd.00bb9f39.js -------------------------------------------------------------------------------- /docs/assets/js/0c6c693a.9fc76530.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/0c6c693a.9fc76530.js -------------------------------------------------------------------------------- /docs/assets/js/0d6c78ce.5d68af2b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/0d6c78ce.5d68af2b.js -------------------------------------------------------------------------------- /docs/assets/js/0ecc199c.657d73fc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/0ecc199c.657d73fc.js -------------------------------------------------------------------------------- /docs/assets/js/0f587ffe.6eebdd95.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/0f587ffe.6eebdd95.js -------------------------------------------------------------------------------- /docs/assets/js/101acd4b.d98a7e0c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/101acd4b.d98a7e0c.js -------------------------------------------------------------------------------- /docs/assets/js/113361c8.2947de08.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/113361c8.2947de08.js -------------------------------------------------------------------------------- /docs/assets/js/114a4154.68faa531.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/114a4154.68faa531.js -------------------------------------------------------------------------------- /docs/assets/js/12bcda91.9e1d476c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/12bcda91.9e1d476c.js -------------------------------------------------------------------------------- /docs/assets/js/13ba36e9.d051bd83.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/13ba36e9.d051bd83.js -------------------------------------------------------------------------------- /docs/assets/js/154445e6.7b1270b4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/154445e6.7b1270b4.js -------------------------------------------------------------------------------- /docs/assets/js/15c627d9.5c43891e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/15c627d9.5c43891e.js -------------------------------------------------------------------------------- /docs/assets/js/16253903.67d49146.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/16253903.67d49146.js -------------------------------------------------------------------------------- /docs/assets/js/16e611a0.293dbd54.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/16e611a0.293dbd54.js -------------------------------------------------------------------------------- /docs/assets/js/17896441.554627d5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/17896441.554627d5.js -------------------------------------------------------------------------------- /docs/assets/js/17b7f140.6d61b247.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/17b7f140.6d61b247.js -------------------------------------------------------------------------------- /docs/assets/js/17d84c03.b236235e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/17d84c03.b236235e.js -------------------------------------------------------------------------------- /docs/assets/js/17ef375f.8e12ad06.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/17ef375f.8e12ad06.js -------------------------------------------------------------------------------- /docs/assets/js/18e2ee32.a7bec8ec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/18e2ee32.a7bec8ec.js -------------------------------------------------------------------------------- /docs/assets/js/19b3fd3a.1b0f79f9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/19b3fd3a.1b0f79f9.js -------------------------------------------------------------------------------- /docs/assets/js/1a959cb0.1dee0a8b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/1a959cb0.1dee0a8b.js -------------------------------------------------------------------------------- /docs/assets/js/1af0d896.683ab054.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/1af0d896.683ab054.js -------------------------------------------------------------------------------- /docs/assets/js/1be78505.83854ef3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/1be78505.83854ef3.js -------------------------------------------------------------------------------- /docs/assets/js/1bfb5b69.d21979de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/1bfb5b69.d21979de.js -------------------------------------------------------------------------------- /docs/assets/js/1d7d3b8e.f425fcf5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/1d7d3b8e.f425fcf5.js -------------------------------------------------------------------------------- /docs/assets/js/1da35c1c.a3ee3374.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/1da35c1c.a3ee3374.js -------------------------------------------------------------------------------- /docs/assets/js/1df93b7f.309d4e7b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/1df93b7f.309d4e7b.js -------------------------------------------------------------------------------- /docs/assets/js/1f342852.1cf21000.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/1f342852.1cf21000.js -------------------------------------------------------------------------------- /docs/assets/js/1f3fa6fe.20c97408.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/1f3fa6fe.20c97408.js -------------------------------------------------------------------------------- /docs/assets/js/1fa3d679.87283c28.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/1fa3d679.87283c28.js -------------------------------------------------------------------------------- /docs/assets/js/219afba4.201143e1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/219afba4.201143e1.js -------------------------------------------------------------------------------- /docs/assets/js/23ab8734.65806df6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/23ab8734.65806df6.js -------------------------------------------------------------------------------- /docs/assets/js/23c11a78.3e5f73fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/23c11a78.3e5f73fa.js -------------------------------------------------------------------------------- /docs/assets/js/23cbf17b.ba755695.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/23cbf17b.ba755695.js -------------------------------------------------------------------------------- /docs/assets/js/26052f6e.e6d8d39d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/26052f6e.e6d8d39d.js -------------------------------------------------------------------------------- /docs/assets/js/270096ef.864fab9d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/270096ef.864fab9d.js -------------------------------------------------------------------------------- /docs/assets/js/277910a4.4bf4d570.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/277910a4.4bf4d570.js -------------------------------------------------------------------------------- /docs/assets/js/28f84881.1fc7822c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/28f84881.1fc7822c.js -------------------------------------------------------------------------------- /docs/assets/js/29962ae0.8e898e12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/29962ae0.8e898e12.js -------------------------------------------------------------------------------- /docs/assets/js/2a0a64a4.b4273a98.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/2a0a64a4.b4273a98.js -------------------------------------------------------------------------------- /docs/assets/js/2a9a771c.6644eed1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/2a9a771c.6644eed1.js -------------------------------------------------------------------------------- /docs/assets/js/2af993ab.9597d22a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/2af993ab.9597d22a.js -------------------------------------------------------------------------------- /docs/assets/js/2b488a7f.55326353.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/2b488a7f.55326353.js -------------------------------------------------------------------------------- /docs/assets/js/2bbfebc4.2e846136.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/2bbfebc4.2e846136.js -------------------------------------------------------------------------------- /docs/assets/js/2bd553fe.12f0eb43.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/2bd553fe.12f0eb43.js -------------------------------------------------------------------------------- /docs/assets/js/2d2ebf80.1b483d09.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/2d2ebf80.1b483d09.js -------------------------------------------------------------------------------- /docs/assets/js/2d55efb3.0e5d45f9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/2d55efb3.0e5d45f9.js -------------------------------------------------------------------------------- /docs/assets/js/2e7c17ce.8ff5b014.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/2e7c17ce.8ff5b014.js -------------------------------------------------------------------------------- /docs/assets/js/2fdf46ca.26adcec4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/2fdf46ca.26adcec4.js -------------------------------------------------------------------------------- /docs/assets/js/301d1628.80427693.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/301d1628.80427693.js -------------------------------------------------------------------------------- /docs/assets/js/3278d165.7b528daa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/3278d165.7b528daa.js -------------------------------------------------------------------------------- /docs/assets/js/339ab082.d330e9f2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/339ab082.d330e9f2.js -------------------------------------------------------------------------------- /docs/assets/js/345b8c8f.2e7bd246.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/345b8c8f.2e7bd246.js -------------------------------------------------------------------------------- /docs/assets/js/34b136c9.45e0f74c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/34b136c9.45e0f74c.js -------------------------------------------------------------------------------- /docs/assets/js/390257b9.15eafa4d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/390257b9.15eafa4d.js -------------------------------------------------------------------------------- /docs/assets/js/3995a474.0f03022d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/3995a474.0f03022d.js -------------------------------------------------------------------------------- /docs/assets/js/3a4d89a0.e87cbcc0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/3a4d89a0.e87cbcc0.js -------------------------------------------------------------------------------- /docs/assets/js/3c215aa2.e0af3d8f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/3c215aa2.e0af3d8f.js -------------------------------------------------------------------------------- /docs/assets/js/3cb567bb.a1938d86.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/3cb567bb.a1938d86.js -------------------------------------------------------------------------------- /docs/assets/js/3e3d8ea6.9c175a3f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/3e3d8ea6.9c175a3f.js -------------------------------------------------------------------------------- /docs/assets/js/3eb51d09.e2508f2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/3eb51d09.e2508f2e.js -------------------------------------------------------------------------------- /docs/assets/js/3f5d62da.87245d01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/3f5d62da.87245d01.js -------------------------------------------------------------------------------- /docs/assets/js/3fd8a45f.f0a03a51.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/3fd8a45f.f0a03a51.js -------------------------------------------------------------------------------- /docs/assets/js/42326816.d33fc315.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/42326816.d33fc315.js -------------------------------------------------------------------------------- /docs/assets/js/4239f271.75a2b059.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/4239f271.75a2b059.js -------------------------------------------------------------------------------- /docs/assets/js/43e011fc.211650ad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/43e011fc.211650ad.js -------------------------------------------------------------------------------- /docs/assets/js/4505f52f.da504721.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/4505f52f.da504721.js -------------------------------------------------------------------------------- /docs/assets/js/45765ca4.1ba3fd3e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/45765ca4.1ba3fd3e.js -------------------------------------------------------------------------------- /docs/assets/js/45dc07f4.75ffb111.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/45dc07f4.75ffb111.js -------------------------------------------------------------------------------- /docs/assets/js/4608.6a9c52bd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/4608.6a9c52bd.js -------------------------------------------------------------------------------- /docs/assets/js/4911db4a.1d152660.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/4911db4a.1d152660.js -------------------------------------------------------------------------------- /docs/assets/js/4b5d7ff9.1c18af96.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/4b5d7ff9.1c18af96.js -------------------------------------------------------------------------------- /docs/assets/js/4ce5d6b8.92a9b42a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/4ce5d6b8.92a9b42a.js -------------------------------------------------------------------------------- /docs/assets/js/4d1064e6.374d963a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/4d1064e6.374d963a.js -------------------------------------------------------------------------------- /docs/assets/js/4e2b069a.80bb22b3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/4e2b069a.80bb22b3.js -------------------------------------------------------------------------------- /docs/assets/js/4ec2df53.c6292fed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/4ec2df53.c6292fed.js -------------------------------------------------------------------------------- /docs/assets/js/4ee62e87.ebec2822.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/4ee62e87.ebec2822.js -------------------------------------------------------------------------------- /docs/assets/js/4f156ee6.7c837c37.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/4f156ee6.7c837c37.js -------------------------------------------------------------------------------- /docs/assets/js/4f96e4d8.6aa65291.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/4f96e4d8.6aa65291.js -------------------------------------------------------------------------------- /docs/assets/js/5029fdbb.474815e4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/5029fdbb.474815e4.js -------------------------------------------------------------------------------- /docs/assets/js/517d0573.f025f100.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/517d0573.f025f100.js -------------------------------------------------------------------------------- /docs/assets/js/521a86ee.bebedda1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/521a86ee.bebedda1.js -------------------------------------------------------------------------------- /docs/assets/js/5241d864.4c77f8f6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/5241d864.4c77f8f6.js -------------------------------------------------------------------------------- /docs/assets/js/52c65c4b.aba4ec82.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/52c65c4b.aba4ec82.js -------------------------------------------------------------------------------- /docs/assets/js/53212829.1b5655e6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/53212829.1b5655e6.js -------------------------------------------------------------------------------- /docs/assets/js/53aef8ab.8f9fa1a9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/53aef8ab.8f9fa1a9.js -------------------------------------------------------------------------------- /docs/assets/js/54d4cc08.16972bae.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/54d4cc08.16972bae.js -------------------------------------------------------------------------------- /docs/assets/js/55523d9b.f407f5e7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/55523d9b.f407f5e7.js -------------------------------------------------------------------------------- /docs/assets/js/55835761.1be1c96b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/55835761.1be1c96b.js -------------------------------------------------------------------------------- /docs/assets/js/56248702.102ce8cd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/56248702.102ce8cd.js -------------------------------------------------------------------------------- /docs/assets/js/57152ffc.b4f2a764.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/57152ffc.b4f2a764.js -------------------------------------------------------------------------------- /docs/assets/js/572ebb91.a5ba2c54.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/572ebb91.a5ba2c54.js -------------------------------------------------------------------------------- /docs/assets/js/58295af1.215a0d8a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/58295af1.215a0d8a.js -------------------------------------------------------------------------------- /docs/assets/js/59bfc36c.5bddd3d7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/59bfc36c.5bddd3d7.js -------------------------------------------------------------------------------- /docs/assets/js/5c7dd174.3e32f5df.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/5c7dd174.3e32f5df.js -------------------------------------------------------------------------------- /docs/assets/js/5d969934.0083ea89.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/5d969934.0083ea89.js -------------------------------------------------------------------------------- /docs/assets/js/5e944385.552eeecc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/5e944385.552eeecc.js -------------------------------------------------------------------------------- /docs/assets/js/5ef6a60d.4f272ca2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/5ef6a60d.4f272ca2.js -------------------------------------------------------------------------------- /docs/assets/js/5f909c96.08561668.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/5f909c96.08561668.js -------------------------------------------------------------------------------- /docs/assets/js/60397a5e.1d12d315.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/60397a5e.1d12d315.js -------------------------------------------------------------------------------- /docs/assets/js/60ed99ae.194f5f7c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/60ed99ae.194f5f7c.js -------------------------------------------------------------------------------- /docs/assets/js/612ffe4d.f15db694.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/612ffe4d.f15db694.js -------------------------------------------------------------------------------- /docs/assets/js/6131db9c.c0263238.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/6131db9c.c0263238.js -------------------------------------------------------------------------------- /docs/assets/js/621b8832.e2f7d0c8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/621b8832.e2f7d0c8.js -------------------------------------------------------------------------------- /docs/assets/js/62f38123.fd050bd9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/62f38123.fd050bd9.js -------------------------------------------------------------------------------- /docs/assets/js/63ab7e17.87a8de08.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/63ab7e17.87a8de08.js -------------------------------------------------------------------------------- /docs/assets/js/64006316.2f68f5a5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/64006316.2f68f5a5.js -------------------------------------------------------------------------------- /docs/assets/js/675eeaac.c2cce0f3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/675eeaac.c2cce0f3.js -------------------------------------------------------------------------------- /docs/assets/js/6783d487.77c11ee4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/6783d487.77c11ee4.js -------------------------------------------------------------------------------- /docs/assets/js/690c8559.6ff74f77.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/690c8559.6ff74f77.js -------------------------------------------------------------------------------- /docs/assets/js/6b5e77c4.cef40ee0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/6b5e77c4.cef40ee0.js -------------------------------------------------------------------------------- /docs/assets/js/6b6d17f9.459e0f9e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/6b6d17f9.459e0f9e.js -------------------------------------------------------------------------------- /docs/assets/js/6c012cc4.6ebcd0af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/6c012cc4.6ebcd0af.js -------------------------------------------------------------------------------- /docs/assets/js/6c0b4ba4.c3bdb1f4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/6c0b4ba4.c3bdb1f4.js -------------------------------------------------------------------------------- /docs/assets/js/6c32c2a4.bce5f947.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/6c32c2a4.bce5f947.js -------------------------------------------------------------------------------- /docs/assets/js/6dfa6c8f.1d9c4c72.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/6dfa6c8f.1d9c4c72.js -------------------------------------------------------------------------------- /docs/assets/js/6ebd5956.2e9f821b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/6ebd5956.2e9f821b.js -------------------------------------------------------------------------------- /docs/assets/js/6f41a6a6.903e3e84.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/6f41a6a6.903e3e84.js -------------------------------------------------------------------------------- /docs/assets/js/6f6ad750.00cd6e0a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/6f6ad750.00cd6e0a.js -------------------------------------------------------------------------------- /docs/assets/js/6f991c2a.f00b361e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/6f991c2a.f00b361e.js -------------------------------------------------------------------------------- /docs/assets/js/70561b92.c9f3ba9d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/70561b92.c9f3ba9d.js -------------------------------------------------------------------------------- /docs/assets/js/71b5a543.5039f58c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/71b5a543.5039f58c.js -------------------------------------------------------------------------------- /docs/assets/js/71fc504f.59bcb108.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/71fc504f.59bcb108.js -------------------------------------------------------------------------------- /docs/assets/js/739f048c.7da663e6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/739f048c.7da663e6.js -------------------------------------------------------------------------------- /docs/assets/js/75fd6d92.b388ec86.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/75fd6d92.b388ec86.js -------------------------------------------------------------------------------- /docs/assets/js/7622712b.dd54d9c9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/7622712b.dd54d9c9.js -------------------------------------------------------------------------------- /docs/assets/js/78300e22.ac1f2529.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/78300e22.ac1f2529.js -------------------------------------------------------------------------------- /docs/assets/js/7830f9b4.8d4ae3db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/7830f9b4.8d4ae3db.js -------------------------------------------------------------------------------- /docs/assets/js/788a2b50.44d24dc5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/788a2b50.44d24dc5.js -------------------------------------------------------------------------------- /docs/assets/js/78a6f763.9e7651e0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/78a6f763.9e7651e0.js -------------------------------------------------------------------------------- /docs/assets/js/7970e402.386979db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/7970e402.386979db.js -------------------------------------------------------------------------------- /docs/assets/js/799be29c.1f3e3600.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/799be29c.1f3e3600.js -------------------------------------------------------------------------------- /docs/assets/js/7b33e7d2.60a5309c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/7b33e7d2.60a5309c.js -------------------------------------------------------------------------------- /docs/assets/js/7c04db56.88a102d0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/7c04db56.88a102d0.js -------------------------------------------------------------------------------- /docs/assets/js/7c17f69e.8f4c2fb9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/7c17f69e.8f4c2fb9.js -------------------------------------------------------------------------------- /docs/assets/js/7d64774d.abe08c57.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/7d64774d.abe08c57.js -------------------------------------------------------------------------------- /docs/assets/js/7d6d8038.cc763f0f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/7d6d8038.cc763f0f.js -------------------------------------------------------------------------------- /docs/assets/js/7f042965.137b542e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/7f042965.137b542e.js -------------------------------------------------------------------------------- /docs/assets/js/810b388b.321d8be3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/810b388b.321d8be3.js -------------------------------------------------------------------------------- /docs/assets/js/822e6d47.779050e0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/822e6d47.779050e0.js -------------------------------------------------------------------------------- /docs/assets/js/8274d551.96ec189e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/8274d551.96ec189e.js -------------------------------------------------------------------------------- /docs/assets/js/827cb262.66d504e1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/827cb262.66d504e1.js -------------------------------------------------------------------------------- /docs/assets/js/82845948.a6b434a4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/82845948.a6b434a4.js -------------------------------------------------------------------------------- /docs/assets/js/858ca1de.15cfbde2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/858ca1de.15cfbde2.js -------------------------------------------------------------------------------- /docs/assets/js/85c42a83.cf845511.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/85c42a83.cf845511.js -------------------------------------------------------------------------------- /docs/assets/js/880c87ee.d20a7123.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/880c87ee.d20a7123.js -------------------------------------------------------------------------------- /docs/assets/js/88402a80.54ad4cef.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/88402a80.54ad4cef.js -------------------------------------------------------------------------------- /docs/assets/js/892c3258.38046727.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/892c3258.38046727.js -------------------------------------------------------------------------------- /docs/assets/js/8b08dfc5.a6ac7a6a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/8b08dfc5.a6ac7a6a.js -------------------------------------------------------------------------------- /docs/assets/js/8b5a6629.9552ee63.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/8b5a6629.9552ee63.js -------------------------------------------------------------------------------- /docs/assets/js/8b9529d0.a4a41cb3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/8b9529d0.a4a41cb3.js -------------------------------------------------------------------------------- /docs/assets/js/8c2f3238.f2e35f6e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/8c2f3238.f2e35f6e.js -------------------------------------------------------------------------------- /docs/assets/js/8c8088a4.75c75026.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/8c8088a4.75c75026.js -------------------------------------------------------------------------------- /docs/assets/js/9010ca7a.164ca317.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/9010ca7a.164ca317.js -------------------------------------------------------------------------------- /docs/assets/js/903d2100.ad037670.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/903d2100.ad037670.js -------------------------------------------------------------------------------- /docs/assets/js/9054317c.8e70516d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/9054317c.8e70516d.js -------------------------------------------------------------------------------- /docs/assets/js/9253a7a0.413fa396.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/9253a7a0.413fa396.js -------------------------------------------------------------------------------- /docs/assets/js/930444ea.a3fba6ce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/930444ea.a3fba6ce.js -------------------------------------------------------------------------------- /docs/assets/js/935f2afb.0c23442a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/935f2afb.0c23442a.js -------------------------------------------------------------------------------- /docs/assets/js/94a58ed5.0ee2208f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/94a58ed5.0ee2208f.js -------------------------------------------------------------------------------- /docs/assets/js/95f9c642.bb76970f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/95f9c642.bb76970f.js -------------------------------------------------------------------------------- /docs/assets/js/96dc1498.fb206019.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/96dc1498.fb206019.js -------------------------------------------------------------------------------- /docs/assets/js/97e4044e.ca390bfa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/97e4044e.ca390bfa.js -------------------------------------------------------------------------------- /docs/assets/js/9826cf41.2fb93a88.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/9826cf41.2fb93a88.js -------------------------------------------------------------------------------- /docs/assets/js/994eed96.11405121.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/994eed96.11405121.js -------------------------------------------------------------------------------- /docs/assets/js/99d1fad1.944a61f5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/99d1fad1.944a61f5.js -------------------------------------------------------------------------------- /docs/assets/js/9a8c0b72.a0d0356b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/9a8c0b72.a0d0356b.js -------------------------------------------------------------------------------- /docs/assets/js/9b2a988f.7c3da8a5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/9b2a988f.7c3da8a5.js -------------------------------------------------------------------------------- /docs/assets/js/9b8b9460.f9283fda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/9b8b9460.f9283fda.js -------------------------------------------------------------------------------- /docs/assets/js/9bff105d.0286cf1b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/9bff105d.0286cf1b.js -------------------------------------------------------------------------------- /docs/assets/js/9c1dac86.fa61a141.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/9c1dac86.fa61a141.js -------------------------------------------------------------------------------- /docs/assets/js/9e4087bc.b4797fd8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/9e4087bc.b4797fd8.js -------------------------------------------------------------------------------- /docs/assets/js/9fdd6838.6cb9dcb3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/9fdd6838.6cb9dcb3.js -------------------------------------------------------------------------------- /docs/assets/js/a02be57d.0803194a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/a02be57d.0803194a.js -------------------------------------------------------------------------------- /docs/assets/js/a1c95738.b40c0d07.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/a1c95738.b40c0d07.js -------------------------------------------------------------------------------- /docs/assets/js/a3d3fdd9.324c9eac.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/a3d3fdd9.324c9eac.js -------------------------------------------------------------------------------- /docs/assets/js/a429000a.e1ebd255.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/a429000a.e1ebd255.js -------------------------------------------------------------------------------- /docs/assets/js/a496fecc.fa147f15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/a496fecc.fa147f15.js -------------------------------------------------------------------------------- /docs/assets/js/a4eb64e6.db5ec03c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/a4eb64e6.db5ec03c.js -------------------------------------------------------------------------------- /docs/assets/js/a55b1f55.34ec6876.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/a55b1f55.34ec6876.js -------------------------------------------------------------------------------- /docs/assets/js/a57f5c59.ffe97c02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/a57f5c59.ffe97c02.js -------------------------------------------------------------------------------- /docs/assets/js/a76bd4ea.3f6ee804.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/a76bd4ea.3f6ee804.js -------------------------------------------------------------------------------- /docs/assets/js/a76e5941.d1348d64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/a76e5941.d1348d64.js -------------------------------------------------------------------------------- /docs/assets/js/a7eb5a73.20d21e86.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/a7eb5a73.20d21e86.js -------------------------------------------------------------------------------- /docs/assets/js/a7fa2e06.0ab6a329.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/a7fa2e06.0ab6a329.js -------------------------------------------------------------------------------- /docs/assets/js/a8721daa.56a3e425.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/a8721daa.56a3e425.js -------------------------------------------------------------------------------- /docs/assets/js/a8cb20e6.5ce15e93.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/a8cb20e6.5ce15e93.js -------------------------------------------------------------------------------- /docs/assets/js/a94b3387.727830e9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/a94b3387.727830e9.js -------------------------------------------------------------------------------- /docs/assets/js/ab9ba2b0.0e115e98.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/ab9ba2b0.0e115e98.js -------------------------------------------------------------------------------- /docs/assets/js/ace08cca.a5d97d42.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/ace08cca.a5d97d42.js -------------------------------------------------------------------------------- /docs/assets/js/ad0c0b21.9aad4ce3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/ad0c0b21.9aad4ce3.js -------------------------------------------------------------------------------- /docs/assets/js/ad4d5fa0.cd541316.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/ad4d5fa0.cd541316.js -------------------------------------------------------------------------------- /docs/assets/js/af380d50.bb5ac60e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/af380d50.bb5ac60e.js -------------------------------------------------------------------------------- /docs/assets/js/afc2d06d.7f0cd042.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/afc2d06d.7f0cd042.js -------------------------------------------------------------------------------- /docs/assets/js/b0106716.3c279336.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/b0106716.3c279336.js -------------------------------------------------------------------------------- /docs/assets/js/b0761722.ee524626.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/b0761722.ee524626.js -------------------------------------------------------------------------------- /docs/assets/js/b0d11e0b.fa77fecc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/b0d11e0b.fa77fecc.js -------------------------------------------------------------------------------- /docs/assets/js/b202b092.f9ecb23e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/b202b092.f9ecb23e.js -------------------------------------------------------------------------------- /docs/assets/js/b21beba5.60187f17.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/b21beba5.60187f17.js -------------------------------------------------------------------------------- /docs/assets/js/b21bf887.c2fa7f64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/b21bf887.c2fa7f64.js -------------------------------------------------------------------------------- /docs/assets/js/b26c560e.43c037f2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/b26c560e.43c037f2.js -------------------------------------------------------------------------------- /docs/assets/js/b29168ac.5c029815.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/b29168ac.5c029815.js -------------------------------------------------------------------------------- /docs/assets/js/b2989d24.911ad8fc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/b2989d24.911ad8fc.js -------------------------------------------------------------------------------- /docs/assets/js/b31eb0d2.8032e79d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/b31eb0d2.8032e79d.js -------------------------------------------------------------------------------- /docs/assets/js/b3a11b0c.32a37bfd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/b3a11b0c.32a37bfd.js -------------------------------------------------------------------------------- /docs/assets/js/b4c7c8c3.41c07193.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/b4c7c8c3.41c07193.js -------------------------------------------------------------------------------- /docs/assets/js/b58e9968.75cedec8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/b58e9968.75cedec8.js -------------------------------------------------------------------------------- /docs/assets/js/b6b2c840.2a80ec88.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/b6b2c840.2a80ec88.js -------------------------------------------------------------------------------- /docs/assets/js/b72e46ba.c5694363.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/b72e46ba.c5694363.js -------------------------------------------------------------------------------- /docs/assets/js/b7af3b75.d01b8074.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/b7af3b75.d01b8074.js -------------------------------------------------------------------------------- /docs/assets/js/ba2e6d24.b37fc0af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/ba2e6d24.b37fc0af.js -------------------------------------------------------------------------------- /docs/assets/js/bb87afe6.29c09df7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/bb87afe6.29c09df7.js -------------------------------------------------------------------------------- /docs/assets/js/bc66961f.fdd82a14.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/bc66961f.fdd82a14.js -------------------------------------------------------------------------------- /docs/assets/js/bd4daeca.9642f73b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/bd4daeca.9642f73b.js -------------------------------------------------------------------------------- /docs/assets/js/bd5335af.716d0bbc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/bd5335af.716d0bbc.js -------------------------------------------------------------------------------- /docs/assets/js/be329c9e.16cd61b7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/be329c9e.16cd61b7.js -------------------------------------------------------------------------------- /docs/assets/js/bedeefdd.baaa5f00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/bedeefdd.baaa5f00.js -------------------------------------------------------------------------------- /docs/assets/js/bf949db7.82d675ab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/bf949db7.82d675ab.js -------------------------------------------------------------------------------- /docs/assets/js/c0c6329a.206997e5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/c0c6329a.206997e5.js -------------------------------------------------------------------------------- /docs/assets/js/c0cb07fb.f231b8d9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/c0cb07fb.f231b8d9.js -------------------------------------------------------------------------------- /docs/assets/js/c1af9023.907f3e09.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/c1af9023.907f3e09.js -------------------------------------------------------------------------------- /docs/assets/js/c1f43dc8.2648d7d9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/c1f43dc8.2648d7d9.js -------------------------------------------------------------------------------- /docs/assets/js/c2da6902.7435e4a8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/c2da6902.7435e4a8.js -------------------------------------------------------------------------------- /docs/assets/js/c2df8094.a6ff5398.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/c2df8094.a6ff5398.js -------------------------------------------------------------------------------- /docs/assets/js/c3207d28.6ce4f087.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/c3207d28.6ce4f087.js -------------------------------------------------------------------------------- /docs/assets/js/c366f8f8.e7574496.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/c366f8f8.e7574496.js -------------------------------------------------------------------------------- /docs/assets/js/c37ed82a.aac4587d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/c37ed82a.aac4587d.js -------------------------------------------------------------------------------- /docs/assets/js/c3b1d2e0.5a025bf8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/c3b1d2e0.5a025bf8.js -------------------------------------------------------------------------------- /docs/assets/js/c4115165.f317dd7f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/c4115165.f317dd7f.js -------------------------------------------------------------------------------- /docs/assets/js/c486b94e.c3861736.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/c486b94e.c3861736.js -------------------------------------------------------------------------------- /docs/assets/js/c4bc7fc1.dc8eb224.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/c4bc7fc1.dc8eb224.js -------------------------------------------------------------------------------- /docs/assets/js/c55617b1.7aa733f3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/c55617b1.7aa733f3.js -------------------------------------------------------------------------------- /docs/assets/js/c5ac0288.9e881e3c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/c5ac0288.9e881e3c.js -------------------------------------------------------------------------------- /docs/assets/js/c70028b4.e0e11e5e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/c70028b4.e0e11e5e.js -------------------------------------------------------------------------------- /docs/assets/js/c9f529dc.337e2c1c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/c9f529dc.337e2c1c.js -------------------------------------------------------------------------------- /docs/assets/js/ca77ed45.b24c9602.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/ca77ed45.b24c9602.js -------------------------------------------------------------------------------- /docs/assets/js/ca972fd0.a17e041a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/ca972fd0.a17e041a.js -------------------------------------------------------------------------------- /docs/assets/js/ce3ab51d.f3f7b593.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/ce3ab51d.f3f7b593.js -------------------------------------------------------------------------------- /docs/assets/js/cf5ac04d.6ed84a96.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/cf5ac04d.6ed84a96.js -------------------------------------------------------------------------------- /docs/assets/js/d03bcda4.9c97c378.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/d03bcda4.9c97c378.js -------------------------------------------------------------------------------- /docs/assets/js/d08e465f.d3c68597.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/d08e465f.d3c68597.js -------------------------------------------------------------------------------- /docs/assets/js/d0ab943c.2209b8de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/d0ab943c.2209b8de.js -------------------------------------------------------------------------------- /docs/assets/js/d0d264b1.c3a806ea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/d0d264b1.c3a806ea.js -------------------------------------------------------------------------------- /docs/assets/js/d140226e.b8727fcb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/d140226e.b8727fcb.js -------------------------------------------------------------------------------- /docs/assets/js/d1dd3bdd.39012644.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/d1dd3bdd.39012644.js -------------------------------------------------------------------------------- /docs/assets/js/d2417056.1475c36a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/d2417056.1475c36a.js -------------------------------------------------------------------------------- /docs/assets/js/d2db97a9.29733e50.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/d2db97a9.29733e50.js -------------------------------------------------------------------------------- /docs/assets/js/d3334e8b.085d65b3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/d3334e8b.085d65b3.js -------------------------------------------------------------------------------- /docs/assets/js/d60d7446.e80def74.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/d60d7446.e80def74.js -------------------------------------------------------------------------------- /docs/assets/js/d6584466.39f5ef58.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/d6584466.39f5ef58.js -------------------------------------------------------------------------------- /docs/assets/js/da0335d6.6f7c3df7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/da0335d6.6f7c3df7.js -------------------------------------------------------------------------------- /docs/assets/js/da5839d1.0e224a1f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/da5839d1.0e224a1f.js -------------------------------------------------------------------------------- /docs/assets/js/dade0b44.f2357882.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/dade0b44.f2357882.js -------------------------------------------------------------------------------- /docs/assets/js/db661285.9fb39320.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/db661285.9fb39320.js -------------------------------------------------------------------------------- /docs/assets/js/db8799fb.a13b86a8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/db8799fb.a13b86a8.js -------------------------------------------------------------------------------- /docs/assets/js/dcb52ba0.b98ea336.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/dcb52ba0.b98ea336.js -------------------------------------------------------------------------------- /docs/assets/js/dd135525.0f58c187.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/dd135525.0f58c187.js -------------------------------------------------------------------------------- /docs/assets/js/ddb4a884.aa3dd9e7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/ddb4a884.aa3dd9e7.js -------------------------------------------------------------------------------- /docs/assets/js/ddbd9bbd.a141e48f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/ddbd9bbd.a141e48f.js -------------------------------------------------------------------------------- /docs/assets/js/de097ade.f88d8e01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/de097ade.f88d8e01.js -------------------------------------------------------------------------------- /docs/assets/js/deb5d42a.756be939.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/deb5d42a.756be939.js -------------------------------------------------------------------------------- /docs/assets/js/def00605.db0928dd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/def00605.db0928dd.js -------------------------------------------------------------------------------- /docs/assets/js/df348d66.cdf3de15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/df348d66.cdf3de15.js -------------------------------------------------------------------------------- /docs/assets/js/df4655b0.2c40d282.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/df4655b0.2c40d282.js -------------------------------------------------------------------------------- /docs/assets/js/df9330f2.e58b1827.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/df9330f2.e58b1827.js -------------------------------------------------------------------------------- /docs/assets/js/dfa68ff5.55067972.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/dfa68ff5.55067972.js -------------------------------------------------------------------------------- /docs/assets/js/e0499967.bfe31360.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/e0499967.bfe31360.js -------------------------------------------------------------------------------- /docs/assets/js/e0e54bbc.4c07e66e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/e0e54bbc.4c07e66e.js -------------------------------------------------------------------------------- /docs/assets/js/e11b8436.1cd1dc76.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/e11b8436.1cd1dc76.js -------------------------------------------------------------------------------- /docs/assets/js/e2d94328.6049af16.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/e2d94328.6049af16.js -------------------------------------------------------------------------------- /docs/assets/js/e30b3b27.2a9f6dbb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/e30b3b27.2a9f6dbb.js -------------------------------------------------------------------------------- /docs/assets/js/e360ada3.9584d571.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/e360ada3.9584d571.js -------------------------------------------------------------------------------- /docs/assets/js/e6b598be.04cacf7d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/e6b598be.04cacf7d.js -------------------------------------------------------------------------------- /docs/assets/js/e70e671f.0b9017cd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/e70e671f.0b9017cd.js -------------------------------------------------------------------------------- /docs/assets/js/e86ff21f.fedb9091.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/e86ff21f.fedb9091.js -------------------------------------------------------------------------------- /docs/assets/js/e907323e.1ec7153b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/e907323e.1ec7153b.js -------------------------------------------------------------------------------- /docs/assets/js/eaf09924.61146a07.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/eaf09924.61146a07.js -------------------------------------------------------------------------------- /docs/assets/js/ebc26019.e6713cc6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/ebc26019.e6713cc6.js -------------------------------------------------------------------------------- /docs/assets/js/ec7db1c4.47d77971.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/ec7db1c4.47d77971.js -------------------------------------------------------------------------------- /docs/assets/js/ee3f9866.d86f8963.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/ee3f9866.d86f8963.js -------------------------------------------------------------------------------- /docs/assets/js/eeccce99.7b590aa4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/eeccce99.7b590aa4.js -------------------------------------------------------------------------------- /docs/assets/js/ef8fb505.8b10a9b3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/ef8fb505.8b10a9b3.js -------------------------------------------------------------------------------- /docs/assets/js/ef98abee.49cd4780.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/ef98abee.49cd4780.js -------------------------------------------------------------------------------- /docs/assets/js/f012e86f.22708161.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/f012e86f.22708161.js -------------------------------------------------------------------------------- /docs/assets/js/f019ca00.3f2fd361.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/f019ca00.3f2fd361.js -------------------------------------------------------------------------------- /docs/assets/js/f0849308.7fd15fbc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/f0849308.7fd15fbc.js -------------------------------------------------------------------------------- /docs/assets/js/f1e1c182.4a8c3a88.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/f1e1c182.4a8c3a88.js -------------------------------------------------------------------------------- /docs/assets/js/f22ea482.831dbf7e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/f22ea482.831dbf7e.js -------------------------------------------------------------------------------- /docs/assets/js/f2388044.8f0cb38b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/f2388044.8f0cb38b.js -------------------------------------------------------------------------------- /docs/assets/js/f2782d83.8b417ac1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/f2782d83.8b417ac1.js -------------------------------------------------------------------------------- /docs/assets/js/f34e05d7.40cb61d4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/f34e05d7.40cb61d4.js -------------------------------------------------------------------------------- /docs/assets/js/f3c50c66.60dd59ec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/f3c50c66.60dd59ec.js -------------------------------------------------------------------------------- /docs/assets/js/f49199d5.24f4796e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/f49199d5.24f4796e.js -------------------------------------------------------------------------------- /docs/assets/js/f4efec67.275dfd33.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/f4efec67.275dfd33.js -------------------------------------------------------------------------------- /docs/assets/js/f52d0482.92f79879.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/f52d0482.92f79879.js -------------------------------------------------------------------------------- /docs/assets/js/f599df42.8b36676a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/f599df42.8b36676a.js -------------------------------------------------------------------------------- /docs/assets/js/f66c0718.49057e57.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/f66c0718.49057e57.js -------------------------------------------------------------------------------- /docs/assets/js/f6dfd434.d2474fe2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/f6dfd434.d2474fe2.js -------------------------------------------------------------------------------- /docs/assets/js/f7295498.ee5795b4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/f7295498.ee5795b4.js -------------------------------------------------------------------------------- /docs/assets/js/f74fa2c4.d3c714e0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/f74fa2c4.d3c714e0.js -------------------------------------------------------------------------------- /docs/assets/js/f76b60c1.0e666460.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/f76b60c1.0e666460.js -------------------------------------------------------------------------------- /docs/assets/js/f80511c8.ab97c2bd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/f80511c8.ab97c2bd.js -------------------------------------------------------------------------------- /docs/assets/js/f9745ed7.39cbaa75.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/f9745ed7.39cbaa75.js -------------------------------------------------------------------------------- /docs/assets/js/f9b5c131.87e3b9ea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/f9b5c131.87e3b9ea.js -------------------------------------------------------------------------------- /docs/assets/js/f9b997f4.f7b124bd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/f9b997f4.f7b124bd.js -------------------------------------------------------------------------------- /docs/assets/js/fafeb891.51827a72.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/fafeb891.51827a72.js -------------------------------------------------------------------------------- /docs/assets/js/fe769149.b2e009cf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/fe769149.b2e009cf.js -------------------------------------------------------------------------------- /docs/assets/js/fea454d2.5e78d28e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/fea454d2.5e78d28e.js -------------------------------------------------------------------------------- /docs/assets/js/ff6f5c41.1209292e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/ff6f5c41.1209292e.js -------------------------------------------------------------------------------- /docs/assets/js/ffd67a7c.ac9aa3bf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/ffd67a7c.ac9aa3bf.js -------------------------------------------------------------------------------- /docs/assets/js/main.36dca16d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/assets/js/main.36dca16d.js -------------------------------------------------------------------------------- /docs/blog/archive/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/blog/archive/index.html -------------------------------------------------------------------------------- /docs/docs/libraries/i18n/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/docs/libraries/i18n/index.html -------------------------------------------------------------------------------- /docs/docs/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/docs/libraries/index.html -------------------------------------------------------------------------------- /docs/elastic-explorer/img/allow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/elastic-explorer/img/allow.png -------------------------------------------------------------------------------- /docs/elastic-explorer/img/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/elastic-explorer/img/index.png -------------------------------------------------------------------------------- /docs/elastic-explorer/img/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/elastic-explorer/img/table.png -------------------------------------------------------------------------------- /docs/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/img/favicon.ico -------------------------------------------------------------------------------- /docs/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/img/logo.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/jest.config.ts -------------------------------------------------------------------------------- /jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/jest.preset.js -------------------------------------------------------------------------------- /libs/application-profile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/application-profile/README.md -------------------------------------------------------------------------------- /libs/application-profile/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /libs/cdk/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cdk/.eslintrc.json -------------------------------------------------------------------------------- /libs/cdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cdk/README.md -------------------------------------------------------------------------------- /libs/cdk/auto-resize-helper/index.ts: -------------------------------------------------------------------------------- 1 | export * from './auto-resize-helper.directive'; 2 | -------------------------------------------------------------------------------- /libs/cdk/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cdk/core/index.ts -------------------------------------------------------------------------------- /libs/cdk/core/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cdk/core/ng-package.json -------------------------------------------------------------------------------- /libs/cdk/defaults-to/index.ts: -------------------------------------------------------------------------------- 1 | export * from './defaults-to.pipe'; 2 | -------------------------------------------------------------------------------- /libs/cdk/feature-flag/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cdk/feature-flag/index.ts -------------------------------------------------------------------------------- /libs/cdk/fetch-cache/index.ts: -------------------------------------------------------------------------------- 1 | export * from './services'; 2 | -------------------------------------------------------------------------------- /libs/cdk/file-drop-zone/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cdk/file-drop-zone/index.ts -------------------------------------------------------------------------------- /libs/cdk/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cdk/jest.config.ts -------------------------------------------------------------------------------- /libs/cdk/loading/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cdk/loading/index.ts -------------------------------------------------------------------------------- /libs/cdk/loading/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cdk/loading/ng-package.json -------------------------------------------------------------------------------- /libs/cdk/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cdk/ng-package.json -------------------------------------------------------------------------------- /libs/cdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cdk/package.json -------------------------------------------------------------------------------- /libs/cdk/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cdk/project.json -------------------------------------------------------------------------------- /libs/cdk/pure-fn-pipe/index.ts: -------------------------------------------------------------------------------- 1 | export * from './pure-fn.pipe'; 2 | -------------------------------------------------------------------------------- /libs/cdk/pure-method-pipe/index.ts: -------------------------------------------------------------------------------- 1 | export * from './pure-method.pipe'; 2 | -------------------------------------------------------------------------------- /libs/cdk/result/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cdk/result/index.ts -------------------------------------------------------------------------------- /libs/cdk/result/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cdk/result/ng-package.json -------------------------------------------------------------------------------- /libs/cdk/scrolling/index.ts: -------------------------------------------------------------------------------- 1 | export * from './scroll-to-child-when-ready.directive'; 2 | -------------------------------------------------------------------------------- /libs/cdk/scrolling/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cdk/scrolling/ng-package.json -------------------------------------------------------------------------------- /libs/cdk/src/index.ts: -------------------------------------------------------------------------------- 1 | export const name = 'cdk'; 2 | -------------------------------------------------------------------------------- /libs/cdk/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cdk/src/test-setup.ts -------------------------------------------------------------------------------- /libs/cdk/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cdk/tsconfig.json -------------------------------------------------------------------------------- /libs/cdk/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cdk/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/cdk/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cdk/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/cdk/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cdk/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/cli/.ap-generationrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cli/.ap-generationrc.json -------------------------------------------------------------------------------- /libs/cli/.eslintignore: -------------------------------------------------------------------------------- 1 | /dist 2 | -------------------------------------------------------------------------------- /libs/cli/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cli/.eslintrc -------------------------------------------------------------------------------- /libs/cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cli/.gitignore -------------------------------------------------------------------------------- /libs/cli/.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cli/.mocharc.json -------------------------------------------------------------------------------- /libs/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cli/README.md -------------------------------------------------------------------------------- /libs/cli/bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cli/bin/dev -------------------------------------------------------------------------------- /libs/cli/bin/dev.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\dev" %* -------------------------------------------------------------------------------- /libs/cli/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cli/bin/run -------------------------------------------------------------------------------- /libs/cli/bin/run.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\run" %* 4 | -------------------------------------------------------------------------------- /libs/cli/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cli/package-lock.json -------------------------------------------------------------------------------- /libs/cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cli/package.json -------------------------------------------------------------------------------- /libs/cli/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cli/project.json -------------------------------------------------------------------------------- /libs/cli/src/commands/sort-ap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cli/src/commands/sort-ap.ts -------------------------------------------------------------------------------- /libs/cli/src/index.ts: -------------------------------------------------------------------------------- 1 | export {run} from '@oclif/core' 2 | -------------------------------------------------------------------------------- /libs/cli/src/models/angular-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cli/src/models/angular-json.ts -------------------------------------------------------------------------------- /libs/cli/src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cli/src/models/index.ts -------------------------------------------------------------------------------- /libs/cli/src/models/package-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cli/src/models/package-json.ts -------------------------------------------------------------------------------- /libs/cli/src/services/index.ts: -------------------------------------------------------------------------------- 1 | export * from './json.service'; 2 | -------------------------------------------------------------------------------- /libs/cli/test/helpers/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cli/test/helpers/init.js -------------------------------------------------------------------------------- /libs/cli/test/placeholder.spec.ts: -------------------------------------------------------------------------------- 1 | describe('placeholder', () => { 2 | it('should do nothing'); 3 | }); 4 | -------------------------------------------------------------------------------- /libs/cli/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cli/test/tsconfig.json -------------------------------------------------------------------------------- /libs/cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/cli/tsconfig.json -------------------------------------------------------------------------------- /libs/devtools/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/devtools/.eslintrc.json -------------------------------------------------------------------------------- /libs/devtools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/devtools/README.md -------------------------------------------------------------------------------- /libs/devtools/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/devtools/jest.config.ts -------------------------------------------------------------------------------- /libs/devtools/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/devtools/ng-package.json -------------------------------------------------------------------------------- /libs/devtools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/devtools/package.json -------------------------------------------------------------------------------- /libs/devtools/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/devtools/project.json -------------------------------------------------------------------------------- /libs/devtools/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /libs/devtools/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/devtools/src/public-api.ts -------------------------------------------------------------------------------- /libs/devtools/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/devtools/src/test-setup.ts -------------------------------------------------------------------------------- /libs/devtools/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/devtools/tsconfig.json -------------------------------------------------------------------------------- /libs/devtools/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/devtools/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/devtools/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/devtools/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/elastic/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/elastic/.eslintrc.json -------------------------------------------------------------------------------- /libs/elastic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/elastic/README.md -------------------------------------------------------------------------------- /libs/elastic/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/elastic/jest.config.ts -------------------------------------------------------------------------------- /libs/elastic/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/elastic/ng-package.json -------------------------------------------------------------------------------- /libs/elastic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/elastic/package.json -------------------------------------------------------------------------------- /libs/elastic/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/elastic/project.json -------------------------------------------------------------------------------- /libs/elastic/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /libs/elastic/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/elastic/src/public-api.ts -------------------------------------------------------------------------------- /libs/elastic/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/elastic/src/test-setup.ts -------------------------------------------------------------------------------- /libs/elastic/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/elastic/tsconfig.json -------------------------------------------------------------------------------- /libs/elastic/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/elastic/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/elastic/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/elastic/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/elastic/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/elastic/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/eslint-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/eslint-config/README.md -------------------------------------------------------------------------------- /libs/eslint-config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/eslint-config/index.js -------------------------------------------------------------------------------- /libs/eslint-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/eslint-config/package.json -------------------------------------------------------------------------------- /libs/eslint-config/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/eslint-config/project.json -------------------------------------------------------------------------------- /libs/eslint-config/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/eslint-config/template.js -------------------------------------------------------------------------------- /libs/html-diff/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/html-diff/.eslintrc.json -------------------------------------------------------------------------------- /libs/html-diff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/html-diff/README.md -------------------------------------------------------------------------------- /libs/html-diff/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/html-diff/jest.config.ts -------------------------------------------------------------------------------- /libs/html-diff/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/html-diff/package.json -------------------------------------------------------------------------------- /libs/html-diff/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/html-diff/project.json -------------------------------------------------------------------------------- /libs/html-diff/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib'; 2 | -------------------------------------------------------------------------------- /libs/html-diff/src/lib/Action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/html-diff/src/lib/Action.ts -------------------------------------------------------------------------------- /libs/html-diff/src/lib/Diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/html-diff/src/lib/Diff.ts -------------------------------------------------------------------------------- /libs/html-diff/src/lib/Match.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/html-diff/src/lib/Match.ts -------------------------------------------------------------------------------- /libs/html-diff/src/lib/Mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/html-diff/src/lib/Mode.ts -------------------------------------------------------------------------------- /libs/html-diff/src/lib/Operation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/html-diff/src/lib/Operation.ts -------------------------------------------------------------------------------- /libs/html-diff/src/lib/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/html-diff/src/lib/Utils.ts -------------------------------------------------------------------------------- /libs/html-diff/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/html-diff/src/lib/index.ts -------------------------------------------------------------------------------- /libs/html-diff/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/html-diff/tsconfig.json -------------------------------------------------------------------------------- /libs/html-diff/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/html-diff/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/html-diff/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/html-diff/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/i18n-transloco/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/i18n-transloco/.eslintrc.json -------------------------------------------------------------------------------- /libs/i18n-transloco/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/i18n-transloco/README.md -------------------------------------------------------------------------------- /libs/i18n-transloco/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/i18n-transloco/jest.config.ts -------------------------------------------------------------------------------- /libs/i18n-transloco/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/i18n-transloco/ng-package.json -------------------------------------------------------------------------------- /libs/i18n-transloco/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/i18n-transloco/package.json -------------------------------------------------------------------------------- /libs/i18n-transloco/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/i18n-transloco/project.json -------------------------------------------------------------------------------- /libs/i18n-transloco/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/i18n-transloco/src/index.ts -------------------------------------------------------------------------------- /libs/i18n-transloco/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/i18n-transloco/tsconfig.json -------------------------------------------------------------------------------- /libs/i18n/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/i18n/.eslintrc.json -------------------------------------------------------------------------------- /libs/i18n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/i18n/README.md -------------------------------------------------------------------------------- /libs/i18n/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/i18n/jest.config.ts -------------------------------------------------------------------------------- /libs/i18n/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/i18n/ng-package.json -------------------------------------------------------------------------------- /libs/i18n/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/i18n/package.json -------------------------------------------------------------------------------- /libs/i18n/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/i18n/project.json -------------------------------------------------------------------------------- /libs/i18n/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/i18n/src/index.ts -------------------------------------------------------------------------------- /libs/i18n/src/lib/i18n.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/i18n/src/lib/i18n.module.ts -------------------------------------------------------------------------------- /libs/i18n/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/i18n/src/test-setup.ts -------------------------------------------------------------------------------- /libs/i18n/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/i18n/tsconfig.json -------------------------------------------------------------------------------- /libs/i18n/tsconfig.lib.ivy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/i18n/tsconfig.lib.ivy.json -------------------------------------------------------------------------------- /libs/i18n/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/i18n/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/i18n/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/i18n/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/i18n/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/i18n/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/json-ld-core/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-ld-core/.eslintrc.json -------------------------------------------------------------------------------- /libs/json-ld-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-ld-core/README.md -------------------------------------------------------------------------------- /libs/json-ld-core/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-ld-core/jest.config.ts -------------------------------------------------------------------------------- /libs/json-ld-core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-ld-core/package.json -------------------------------------------------------------------------------- /libs/json-ld-core/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-ld-core/project.json -------------------------------------------------------------------------------- /libs/json-ld-core/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib'; 2 | -------------------------------------------------------------------------------- /libs/json-ld-core/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-ld-core/src/lib/index.ts -------------------------------------------------------------------------------- /libs/json-ld-core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-ld-core/tsconfig.json -------------------------------------------------------------------------------- /libs/json-ld-core/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-ld-core/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/json-ld/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-ld/.eslintrc.json -------------------------------------------------------------------------------- /libs/json-ld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-ld/README.md -------------------------------------------------------------------------------- /libs/json-ld/form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-ld/form/index.ts -------------------------------------------------------------------------------- /libs/json-ld/form/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-ld/form/ng-package.json -------------------------------------------------------------------------------- /libs/json-ld/form/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-ld/form/services/index.ts -------------------------------------------------------------------------------- /libs/json-ld/get-value/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-ld/get-value/index.ts -------------------------------------------------------------------------------- /libs/json-ld/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-ld/jest.config.ts -------------------------------------------------------------------------------- /libs/json-ld/label/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-ld/label/index.ts -------------------------------------------------------------------------------- /libs/json-ld/label/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-ld/label/ng-package.json -------------------------------------------------------------------------------- /libs/json-ld/ng-core/index.ts: -------------------------------------------------------------------------------- 1 | export * from './services'; 2 | -------------------------------------------------------------------------------- /libs/json-ld/ng-core/services/index.ts: -------------------------------------------------------------------------------- 1 | export * from './json-ld.service'; 2 | -------------------------------------------------------------------------------- /libs/json-ld/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-ld/ng-package.json -------------------------------------------------------------------------------- /libs/json-ld/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-ld/package.json -------------------------------------------------------------------------------- /libs/json-ld/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-ld/project.json -------------------------------------------------------------------------------- /libs/json-ld/src/index.ts: -------------------------------------------------------------------------------- 1 | export const name = 'json-ld'; 2 | -------------------------------------------------------------------------------- /libs/json-ld/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-ld/src/test-setup.ts -------------------------------------------------------------------------------- /libs/json-ld/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-ld/store/index.ts -------------------------------------------------------------------------------- /libs/json-ld/store/models/graph-status.ts: -------------------------------------------------------------------------------- 1 | export type GraphStatus = 'pristine' | 'touched'; 2 | -------------------------------------------------------------------------------- /libs/json-ld/store/models/index.ts: -------------------------------------------------------------------------------- 1 | export * from './graph-status'; 2 | -------------------------------------------------------------------------------- /libs/json-ld/store/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-ld/store/ng-package.json -------------------------------------------------------------------------------- /libs/json-ld/store/services/index.ts: -------------------------------------------------------------------------------- 1 | export * from './json-ld-store.service'; 2 | -------------------------------------------------------------------------------- /libs/json-ld/store/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-ld/store/store/index.ts -------------------------------------------------------------------------------- /libs/json-ld/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-ld/tsconfig.json -------------------------------------------------------------------------------- /libs/json-ld/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-ld/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/json-ld/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-ld/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/json-ld/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-ld/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/json-model-graph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-model-graph/README.md -------------------------------------------------------------------------------- /libs/json-model-graph/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-model-graph/package.json -------------------------------------------------------------------------------- /libs/json-model-graph/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-model-graph/project.json -------------------------------------------------------------------------------- /libs/json-model-graph/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /libs/json-model-graph/src/lib/models/graph-status.ts: -------------------------------------------------------------------------------- 1 | export type GraphStatus = 'pristine' | 'touched'; 2 | -------------------------------------------------------------------------------- /libs/json-model-graph/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-model-graph/tsconfig.json -------------------------------------------------------------------------------- /libs/json-model/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-model/.eslintrc.json -------------------------------------------------------------------------------- /libs/json-model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-model/README.md -------------------------------------------------------------------------------- /libs/json-model/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-model/jest.config.ts -------------------------------------------------------------------------------- /libs/json-model/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-model/ng-package.json -------------------------------------------------------------------------------- /libs/json-model/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-model/package.json -------------------------------------------------------------------------------- /libs/json-model/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-model/project.json -------------------------------------------------------------------------------- /libs/json-model/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib'; 2 | -------------------------------------------------------------------------------- /libs/json-model/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-model/src/lib/index.ts -------------------------------------------------------------------------------- /libs/json-model/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-model/src/test-setup.ts -------------------------------------------------------------------------------- /libs/json-model/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-model/tsconfig.json -------------------------------------------------------------------------------- /libs/json-model/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-model/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/json-model/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/json-model/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/legi-cv/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/legi-cv/.eslintrc.json -------------------------------------------------------------------------------- /libs/legi-cv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/legi-cv/README.md -------------------------------------------------------------------------------- /libs/legi-cv/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/legi-cv/jest.config.ts -------------------------------------------------------------------------------- /libs/legi-cv/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/legi-cv/ng-package.json -------------------------------------------------------------------------------- /libs/legi-cv/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/legi-cv/package.json -------------------------------------------------------------------------------- /libs/legi-cv/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/legi-cv/project.json -------------------------------------------------------------------------------- /libs/legi-cv/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /libs/legi-cv/src/lib/models/cv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/legi-cv/src/lib/models/cv.ts -------------------------------------------------------------------------------- /libs/legi-cv/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/legi-cv/src/public-api.ts -------------------------------------------------------------------------------- /libs/legi-cv/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/legi-cv/src/test-setup.ts -------------------------------------------------------------------------------- /libs/legi-cv/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/legi-cv/tsconfig.json -------------------------------------------------------------------------------- /libs/legi-cv/tsconfig.lib.ivy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/legi-cv/tsconfig.lib.ivy.json -------------------------------------------------------------------------------- /libs/legi-cv/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/legi-cv/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/legi-cv/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/legi-cv/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/legi-cv/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/legi-cv/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/lod-core/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/lod-core/.eslintrc.json -------------------------------------------------------------------------------- /libs/lod-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/lod-core/README.md -------------------------------------------------------------------------------- /libs/lod-core/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/lod-core/jest.config.ts -------------------------------------------------------------------------------- /libs/lod-core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/lod-core/package.json -------------------------------------------------------------------------------- /libs/lod-core/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/lod-core/project.json -------------------------------------------------------------------------------- /libs/lod-core/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib'; 2 | -------------------------------------------------------------------------------- /libs/lod-core/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/lod-core/src/lib/index.ts -------------------------------------------------------------------------------- /libs/lod-core/src/lib/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './is-curie'; 2 | -------------------------------------------------------------------------------- /libs/lod-core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/lod-core/tsconfig.json -------------------------------------------------------------------------------- /libs/lod-core/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/lod-core/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/lod-core/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/lod-core/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/lod/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/lod/.eslintrc.json -------------------------------------------------------------------------------- /libs/lod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/lod/README.md -------------------------------------------------------------------------------- /libs/lod/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/lod/jest.config.ts -------------------------------------------------------------------------------- /libs/lod/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/lod/ng-package.json -------------------------------------------------------------------------------- /libs/lod/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/lod/package.json -------------------------------------------------------------------------------- /libs/lod/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/lod/project.json -------------------------------------------------------------------------------- /libs/lod/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/lod/src/index.ts -------------------------------------------------------------------------------- /libs/lod/src/lib/models/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lod-options'; 2 | -------------------------------------------------------------------------------- /libs/lod/src/lib/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/lod/src/lib/services/index.ts -------------------------------------------------------------------------------- /libs/lod/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/lod/src/test-setup.ts -------------------------------------------------------------------------------- /libs/lod/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/lod/tsconfig.json -------------------------------------------------------------------------------- /libs/lod/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/lod/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/lod/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/lod/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/lod/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/lod/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/material-icons/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/material-icons/.eslintrc.json -------------------------------------------------------------------------------- /libs/material-icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/material-icons/README.md -------------------------------------------------------------------------------- /libs/material-icons/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/material-icons/jest.config.ts -------------------------------------------------------------------------------- /libs/material-icons/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/material-icons/ng-package.json -------------------------------------------------------------------------------- /libs/material-icons/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/material-icons/package.json -------------------------------------------------------------------------------- /libs/material-icons/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/material-icons/project.json -------------------------------------------------------------------------------- /libs/material-icons/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /libs/material-icons/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/material-icons/tsconfig.json -------------------------------------------------------------------------------- /libs/model-utils/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/model-utils/.eslintrc.json -------------------------------------------------------------------------------- /libs/model-utils/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/model-utils/CHANGELOG.md -------------------------------------------------------------------------------- /libs/model-utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/model-utils/README.md -------------------------------------------------------------------------------- /libs/model-utils/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/model-utils/jest.config.ts -------------------------------------------------------------------------------- /libs/model-utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/model-utils/package.json -------------------------------------------------------------------------------- /libs/model-utils/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/model-utils/project.json -------------------------------------------------------------------------------- /libs/model-utils/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognizone/ng-cognizone/HEAD/libs/model-utils/src/index.ts -------------------------------------------------------------------------------- /libs/model-utils/src/lib/elastic/models/elastic-query.ts: -------------------------------------------------------------------------------- 1 | export type ElasticQuery = { 2 | _name?: string; 3 | }; 4 | -------------------------------------------------------------------------------- /libs/model-utils/src/lib/models/primitive.ts: -------------------------------------------------------------------------------- 1 | export type Primitive = boolean | number | string; 2 | -------------------------------------------------------------------------------- /libs/model-utils/src/lib/models/values-of.ts: -------------------------------------------------------------------------------- 1 | export type ValuesOf