├── .ci-env └── flags.sh ├── .editorconfig ├── .env ├── .firebaserc ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ └── issue.yml ├── PULL_REQUEST_TEMPLATE.md ├── TESTING.md ├── actions │ ├── bump-version │ │ ├── action.yml │ │ └── index.js │ ├── generate-conventional-release-notes │ │ ├── action.yml │ │ ├── closest-version.js │ │ └── index.js │ ├── get-version │ │ ├── action.yml │ │ └── index.js │ ├── helpers │ │ ├── angular-version.js │ │ ├── bumped-release.js │ │ ├── current-version.js │ │ ├── get-file-contents.js │ │ ├── get-release-tag.js │ │ ├── get-release-tag.spec.js │ │ ├── get-version.js │ │ ├── git-semver-tags.js │ │ └── test-helpers.sh │ ├── nodejs │ │ ├── action.yml │ │ ├── test-action.yml │ │ └── test-local.sh │ ├── parallel-commands │ │ ├── action.yml │ │ └── run-commands-in-parallel.sh │ ├── release-tags │ │ ├── action.yml │ │ └── index.js │ ├── set-up-git │ │ └── action.yml │ ├── test-release-actions-workflow.yml │ └── test-release-actions.sh ├── in-solidarity.yml ├── jest.config.js ├── mergeable.yml └── workflows │ ├── create-release.yml │ └── on-pull-request.yml ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg └── pre-commit ├── .npmrc ├── .nvmrc ├── .nxignore ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── .yarn ├── README.md └── releases │ └── yarn-4.12.0.cjs ├── .yarnrc.yml ├── CHANGELOG.md ├── CHANGELOG_OLD.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── LICENSES └── Apache-2.0.txt ├── README.md ├── REUSE.toml ├── apps └── docs │ ├── eslint.config.js │ ├── project.json │ ├── src │ ├── app.component.ts │ ├── app.config.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── 01.png │ │ ├── 02.png │ │ ├── 03.png │ │ ├── 04.png │ │ ├── 05.png │ │ ├── 06.png │ │ ├── 07.png │ │ ├── 08.png │ │ ├── 09.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── favicon.ico │ │ ├── headshot-male.jpg │ │ └── images │ │ │ ├── active.svg │ │ │ ├── logo-angular.svg │ │ │ ├── logo-github.svg │ │ │ ├── logo-sap.svg │ │ │ ├── new_component │ │ │ ├── empty-poster-code.png │ │ │ ├── finished-poster-component.png │ │ │ ├── poster-docs-works.png │ │ │ └── poster-module.png │ │ │ ├── sapIllus-Dialog-NoMail.svg │ │ │ ├── sapIllus-Ice-Cream-Demo-ExtraSmall.svg │ │ │ ├── sapIllus-Ice-Cream-Demo-Largev2.svg │ │ │ ├── sapIllus-Ice-Cream-Demo-Medium.svg │ │ │ ├── sapIllus-Ice-Cream-Demo-Small.svg │ │ │ ├── sapIllus-Phone-with-Icon-Demo-ExtraSmall.svg │ │ │ ├── sapIllus-Phone-with-Icon-Demo-Large.svg │ │ │ ├── sapIllus-Phone-with-Icon-Demo-Medium.svg │ │ │ ├── sapIllus-Phone-with-Icon-Demo-Small.svg │ │ │ ├── sapIllus-Scene-NoMail.svg │ │ │ ├── sapIllus-Spot-NoData.svg │ │ │ ├── sapIllus-Spot-NoMail.svg │ │ │ ├── sapIllus-UnknownFolder-Demo-ExtraSmall.svg │ │ │ ├── sapIllus-UnknownFolder-Demo-Large.svg │ │ │ ├── sapIllus-UnknownFolder-Demo-Medium.svg │ │ │ └── sapIllus-UnknownFolder-Demo-Small.svg │ ├── environments │ │ ├── app.routes.ts │ │ ├── btp.routes.ts │ │ ├── cdk.routes.ts │ │ ├── core.routes.ts │ │ ├── cx.routes.ts │ │ ├── i18n.routes.ts │ │ ├── platform.routes.ts │ │ ├── translations.prod.ts │ │ ├── translations.ts │ │ ├── ui5-webcomponents-ai.routes.ts │ │ ├── ui5-webcomponents-fiori.routes.ts │ │ └── ui5-webcomponents.routes.ts │ ├── favicon.ico │ ├── fd-typedoc │ │ ├── assets │ │ │ ├── css │ │ │ │ └── main.scss │ │ │ ├── images │ │ │ │ ├── icons.png │ │ │ │ ├── icons@2x.png │ │ │ │ ├── widgets.png │ │ │ │ └── widgets@2x.png │ │ │ └── js │ │ │ │ ├── main.js │ │ │ │ └── search.js │ │ ├── helpers │ │ │ └── main.helpers.js │ │ ├── layouts │ │ │ └── default.hbs │ │ ├── partials │ │ │ ├── comment.hbs │ │ │ ├── header.hbs │ │ │ ├── index.hbs │ │ │ ├── member.hbs │ │ │ ├── member.sources.hbs │ │ │ ├── members.group.hbs │ │ │ ├── members.hbs │ │ │ ├── type.hbs │ │ │ └── typeAndParent.hbs │ │ └── templates │ │ │ └── reflection.hbs │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.scss │ └── typings.d.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.netlify.json ├── commitlint.config.js ├── docs ├── CI.md └── README.md ├── e2e ├── eslint.config.js ├── index.ts ├── project.json ├── tsconfig.json ├── wdio.base-config.js └── wdio │ ├── axe │ ├── app-url.ts │ └── report.acs-spec.ts │ ├── btp-base-component.po.ts │ ├── core-base-component.po.ts │ ├── driver │ └── wdio.ts │ ├── helper │ ├── assertion-helper.ts │ └── common-helper.ts │ └── platform-base-component.po.ts ├── eslint.config.js ├── eslint.overrides.js ├── firebase.json ├── ignore.sh ├── jest-extended-matchers.ts ├── jest.config.base.ts ├── jest.config.ts ├── jest.preset.js ├── libs ├── .gitkeep ├── btp │ ├── CHANGELOG.md │ ├── README.md │ ├── button │ │ ├── button-type-guard.ts │ │ ├── index.ts │ │ ├── nested-button.directive.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ └── tool-header-button.directive.ts │ ├── eslint.config.js │ ├── fundamental-ngx.module.ts │ ├── index.ts │ ├── jest.config.ts │ ├── navigation-menu │ │ ├── ng-package.json │ │ ├── project.json │ │ └── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ ├── navigation-menu-item.component.ts │ │ │ ├── navigation-menu-popover-control.directive.ts │ │ │ ├── navigation-menu-popover.component.scss │ │ │ ├── navigation-menu-popover.component.ts │ │ │ ├── navigation-menu.component.ts │ │ │ └── navigation-menu.module.ts │ ├── navigation │ │ ├── components │ │ │ ├── navigation-end │ │ │ │ ├── navigation-content-end.component.spec.ts │ │ │ │ └── navigation-content-end.component.ts │ │ │ ├── navigation-item │ │ │ │ ├── navigation-list-item.component.html │ │ │ │ ├── navigation-list-item.component.spec.ts │ │ │ │ └── navigation-list-item.component.ts │ │ │ ├── navigation-link │ │ │ │ ├── navigation-link.component.html │ │ │ │ ├── navigation-link.component.spec.ts │ │ │ │ └── navigation-link.component.ts │ │ │ ├── navigation-list │ │ │ │ ├── navigation-list.component.html │ │ │ │ ├── navigation-list.component.spec.ts │ │ │ │ └── navigation-list.component.ts │ │ │ ├── navigation-more-button │ │ │ │ ├── navigation-more-button.component.html │ │ │ │ ├── navigation-more-button.component.spec.ts │ │ │ │ └── navigation-more-button.component.ts │ │ │ ├── navigation-start │ │ │ │ ├── navigation-content-start.component.html │ │ │ │ ├── navigation-content-start.component.spec.ts │ │ │ │ └── navigation-content-start.component.ts │ │ │ └── navigation │ │ │ │ ├── navigation.component.html │ │ │ │ ├── navigation.component.scss │ │ │ │ ├── navigation.component.spec.ts │ │ │ │ └── navigation.component.ts │ │ ├── directives │ │ │ ├── navigation-list-data-source.directive.ts │ │ │ └── navigation-list-item-ref.directive.ts │ │ ├── index.ts │ │ ├── models │ │ │ ├── navigation-content-container.class.ts │ │ │ ├── navigation-data-source-item.model.ts │ │ │ ├── navigation-item-link.class.ts │ │ │ ├── navigation-list-item.class.ts │ │ │ ├── navigation.class.ts │ │ │ └── navigation.types.ts │ │ ├── navigation.module.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ └── services │ │ │ └── navigation.service.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── search-field │ │ ├── ng-package.json │ │ ├── project.json │ │ └── src │ │ │ ├── index.ts │ │ │ ├── search-field.component.html │ │ │ └── search-field.component.ts │ ├── shared │ │ ├── ng-package.json │ │ ├── project.json │ │ └── src │ │ │ └── index.ts │ ├── splitter │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── interfaces │ │ │ └── splitter-pane-resize-event.interface.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── splitter-pagination │ │ │ ├── splitter-pagination.component.html │ │ │ ├── splitter-pagination.component.spec.ts │ │ │ └── splitter-pagination.component.ts │ │ ├── splitter-pane-container │ │ │ ├── no-default-pane.pipe.ts │ │ │ ├── splitter-pane-container.component.html │ │ │ ├── splitter-pane-container.component.spec.ts │ │ │ ├── splitter-pane-container.component.ts │ │ │ ├── splitter-pane-container.token.ts │ │ │ ├── splitter-pane-orientation.enum.ts │ │ │ └── splitter-pane.container.ts │ │ ├── splitter-resizer │ │ │ ├── splitter-resizer.component.html │ │ │ ├── splitter-resizer.component.spec.ts │ │ │ └── splitter-resizer.component.ts │ │ ├── splitter-split-pane │ │ │ ├── splitter-split-pane.component.html │ │ │ ├── splitter-split-pane.component.spec.ts │ │ │ └── splitter-split-pane.component.ts │ │ ├── splitter.component.scss │ │ ├── splitter.component.spec.ts │ │ ├── splitter.component.ts │ │ ├── splitter.module.ts │ │ └── test-setup.ts │ ├── test-setup.ts │ ├── tool-header │ │ ├── ng-package.json │ │ ├── project.json │ │ └── src │ │ │ ├── components │ │ │ ├── tool-header-action-separator.component.ts │ │ │ ├── tool-header-product-switch.component.ts │ │ │ └── tool-header │ │ │ │ ├── tool-header.component.html │ │ │ │ ├── tool-header.component.scss │ │ │ │ ├── tool-header.component.spec.ts │ │ │ │ └── tool-header.component.ts │ │ │ ├── directives │ │ │ ├── tool-header-action-button.directive.ts │ │ │ ├── tool-header-action.directive.ts │ │ │ ├── tool-header-auto-mode.directive.ts │ │ │ ├── tool-header-element.directive.ts │ │ │ ├── tool-header-group.directive.ts │ │ │ ├── tool-header-logo.directive.ts │ │ │ └── tool-header-user.directive.ts │ │ │ ├── index.ts │ │ │ ├── tool-header-action-button.type.ts │ │ │ ├── tool-header-action.class.ts │ │ │ ├── tool-header-component.class.ts │ │ │ └── tool-header-state.type.ts │ ├── tool-layout │ │ ├── ng-package.json │ │ ├── project.json │ │ └── src │ │ │ ├── directives │ │ │ ├── tool-layout-container.directive.ts │ │ │ ├── tool-layout-content-container.directive.ts │ │ │ ├── tool-layout-header-container.directive.ts │ │ │ └── tool-layout-navigation-container.directive.ts │ │ │ ├── index.ts │ │ │ ├── tool-layout.component.scss │ │ │ ├── tool-layout.component.spec.ts │ │ │ ├── tool-layout.component.ts │ │ │ └── tool-layout.module.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── cdk │ ├── CHANGELOG.md │ ├── README.md │ ├── data-source │ │ ├── base │ │ │ ├── abstract-data-provider.class.ts │ │ │ └── base-data-source.class.ts │ │ ├── data-source.directive.spec.ts │ │ ├── data-source.directive.ts │ │ ├── data-source.module.ts │ │ ├── helpers │ │ │ ├── apply-datasource-directive.ts │ │ │ ├── common.ts │ │ │ └── is-datasource.ts │ │ ├── index.ts │ │ ├── models │ │ │ ├── data-source-provider.ts │ │ │ ├── data-source.ts │ │ │ ├── index.ts │ │ │ └── matching-strategy.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── test-setup.ts │ │ └── tokens.ts │ ├── eslint.config.js │ ├── forms │ │ ├── cva │ │ │ ├── cva-control.class.ts │ │ │ ├── cva.directive.spec.ts │ │ │ └── cva.directive.ts │ │ ├── forms.module.ts │ │ ├── helpers │ │ │ └── state.ts │ │ ├── index.ts │ │ ├── models │ │ │ ├── control-type.model.ts │ │ │ ├── cva.ts │ │ │ ├── form-error.ts │ │ │ ├── form-field.ts │ │ │ ├── form-state.ts │ │ │ └── select-item.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── test-setup.ts │ │ └── tokens │ │ │ ├── form-field-control.token.ts │ │ │ └── form-field.token.ts │ ├── fundamental-ngx.module.ts │ ├── index.ts │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ └── utils │ │ ├── abstract-fd-ngx-class.ts │ │ ├── async-strategy │ │ ├── function-strategy.class.ts │ │ ├── index.ts │ │ ├── observable-strategy.class.ts │ │ ├── promise-strategy.class.ts │ │ ├── select-strategy.class.ts │ │ ├── subscription-strategy.interface.ts │ │ └── value-strategy.class.ts │ │ ├── coercion │ │ └── array.ts │ │ ├── components │ │ ├── dynamic-portal │ │ │ └── dynamic-portal.component.ts │ │ └── index.ts │ │ ├── consts │ │ ├── error-messages.ts │ │ ├── index.ts │ │ ├── overflow-priority-score.ts │ │ ├── unicode-letters.regex.ts │ │ └── unicode-numbers.regex.ts │ │ ├── datatypes │ │ ├── can-be-observable.type.ts │ │ ├── color-accent.datatype.ts │ │ ├── hash.datatype.ts │ │ ├── index.ts │ │ ├── object-nesting.types.ts │ │ └── size.datatype.ts │ │ ├── decorators │ │ ├── apply-css-class.decorator.ts │ │ ├── apply-css-style.decorator.ts │ │ ├── coerce-boolean.ts │ │ ├── coerce-css-pixel.ts │ │ ├── index.ts │ │ └── setter-alternator.ts │ │ ├── deprecated-selector.class.ts │ │ ├── directives │ │ ├── auto-complete │ │ │ ├── auto-complete.directive.spec.ts │ │ │ ├── auto-complete.directive.ts │ │ │ └── auto-complete.module.ts │ │ ├── breakpoints │ │ │ ├── breakpoint.directive.spec.ts │ │ │ ├── breakpoint.directive.ts │ │ │ └── responsive-breakpoints.ts │ │ ├── clicked │ │ │ ├── clicked-behavior.module.ts │ │ │ ├── clicked-event.plugin.ts │ │ │ ├── clicked.directive.ts │ │ │ ├── element-click.observable.ts │ │ │ ├── fdk-clicked-provider.service.ts │ │ │ ├── index.ts │ │ │ └── provide-fdk-clicked.ts │ │ ├── disabled │ │ │ ├── default-disabled-view-modifier.ts │ │ │ ├── disabled-behavior.directive.ts │ │ │ ├── disabled-behavior.interface.ts │ │ │ ├── disabled-behavior.module.ts │ │ │ ├── disabled-view-modifier.interface.ts │ │ │ ├── disabled.observer.ts │ │ │ ├── fdk-disabled-provider.service.ts │ │ │ ├── fdk-disabled.token.ts │ │ │ ├── index.ts │ │ │ └── set-disabled-state.ts │ │ ├── focus-key-manager │ │ │ ├── focus-key-manager-helpers.module.ts │ │ │ ├── focus-key-manager-item.directive.spec.ts │ │ │ ├── focus-key-manager-item.directive.ts │ │ │ ├── focus-key-manager-list.directive.spec.ts │ │ │ ├── focus-key-manager-list.directive.ts │ │ │ ├── focus-key-manager.tokens.ts │ │ │ └── index.ts │ │ ├── focusable-grid │ │ │ ├── focusable-grid.directive.ts │ │ │ ├── focusable-grid.module.ts │ │ │ ├── focusable-grid.tokens.ts │ │ │ └── index.ts │ │ ├── focusable-item │ │ │ ├── focusable-item.directive.ts │ │ │ ├── focusable-item.module.ts │ │ │ ├── focusable-item.tokens.ts │ │ │ ├── focusable-list.position.ts │ │ │ ├── focusable.item.ts │ │ │ ├── focusable.observer.ts │ │ │ ├── get-item-element.ts │ │ │ ├── index.ts │ │ │ ├── indirect-focusable-item.directive.ts │ │ │ ├── is-element-focusable-by-default.ts │ │ │ └── is-item-focusable.ts │ │ ├── focusable-list │ │ │ ├── focusable-list.directive.ts │ │ │ ├── focusable-list.module.ts │ │ │ ├── focusable-list.tokens.ts │ │ │ ├── index.ts │ │ │ ├── indirect-focusable-list.directive.ts │ │ │ └── scroll.ts │ │ ├── ignore-click-on-selection │ │ │ ├── ignore-click-on-selection.directive.ts │ │ │ ├── ignore-click-on-selection.module.ts │ │ │ └── tokens.ts │ │ ├── index.ts │ │ ├── initial-focus │ │ │ ├── initial-focus.directive.spec.ts │ │ │ ├── initial-focus.directive.ts │ │ │ └── initial-focus.module.ts │ │ ├── intersection-spy │ │ │ └── intersection-spy.directive.ts │ │ ├── line-clamp │ │ │ ├── line-clamp.directive.spec.ts │ │ │ ├── line-clamp.directive.ts │ │ │ └── line-clamp.module.ts │ │ ├── only-digits │ │ │ ├── only-digits.directive.spec.ts │ │ │ ├── only-digits.directive.ts │ │ │ └── only-digits.module.ts │ │ ├── overflow-list │ │ │ ├── overflow-list-item.directive.ts │ │ │ ├── overflow-list.directive.spec.ts │ │ │ ├── overflow-list.directive.ts │ │ │ └── overflow-list.module.ts │ │ ├── readonly │ │ │ ├── default-readonly-view-modifier.ts │ │ │ ├── fdk-readonly-provider.service.ts │ │ │ ├── fdk-readonly.token.ts │ │ │ ├── index.ts │ │ │ ├── readonly-behavior.directive.ts │ │ │ ├── readonly-behavior.interface.ts │ │ │ ├── readonly-behavior.module.ts │ │ │ ├── readonly-view-modifier.interface.ts │ │ │ ├── readonly.observer.ts │ │ │ └── set-readonly-state.ts │ │ ├── repeat │ │ │ ├── repeat.directive.ts │ │ │ └── repeat.module.ts │ │ ├── resize-observer │ │ │ ├── index.ts │ │ │ └── resize-observer.directive.ts │ │ ├── resize │ │ │ ├── resize-handle.directive.ts │ │ │ ├── resize.directive.ts │ │ │ └── resize.module.ts │ │ ├── selectable-list │ │ │ ├── index.ts │ │ │ ├── select-component-root.token.ts │ │ │ ├── selectable-item.directive.ts │ │ │ ├── selectable-item.token.ts │ │ │ ├── selectable-list.directive.ts │ │ │ ├── selectable-list.module.ts │ │ │ ├── selectable-list.tokens.ts │ │ │ ├── selection.service.spec.ts │ │ │ └── selection.service.ts │ │ ├── template │ │ │ ├── template.directive.spec.ts │ │ │ ├── template.directive.ts │ │ │ └── template.module.ts │ │ └── truncate │ │ │ ├── truncate.directive.spec.ts │ │ │ ├── truncate.directive.ts │ │ │ └── truncate.module.ts │ │ ├── drag-and-drop │ │ ├── dnd-item │ │ │ ├── dnd-item.directive.spec.ts │ │ │ └── dnd-item.directive.ts │ │ ├── dnd-keyboard-group │ │ │ └── dnd-keyboard-group.directive.ts │ │ ├── dnd-keyboard-item │ │ │ └── dnd-keyboard-item.directive.ts │ │ ├── dnd-list │ │ │ ├── dnd-list.directive.spec.ts │ │ │ └── dnd-list.directive.ts │ │ ├── dnd.interfaces.ts │ │ ├── drag-and-drop.module.ts │ │ ├── drag-and-drop.scss │ │ ├── index.ts │ │ └── tokens.ts │ │ ├── dynamic-component │ │ ├── dynamic-component-config.ts │ │ ├── dynamic-component-container.ts │ │ ├── dynamic-component-injector.ts │ │ ├── dynamic-component-service-provider.ts │ │ ├── dynamic-component.service.ts │ │ └── index.ts │ │ ├── functions │ │ ├── consumer-provider-factory.ts │ │ ├── element-size.spec.ts │ │ ├── element-size.ts │ │ ├── get-document-font-size.ts │ │ ├── index.ts │ │ ├── intersection-observable.spec.ts │ │ ├── intersection-observable.ts │ │ ├── is-compact-density.ts │ │ ├── is-odd.ts │ │ ├── key-util.spec.ts │ │ ├── key-util.ts │ │ ├── module-deprecations-provider.ts │ │ ├── parser-file-size.spec.ts │ │ ├── parser-file-size.ts │ │ ├── random-color-accent.ts │ │ ├── resize-observable.spec.ts │ │ ├── resize-observable.ts │ │ ├── scroll.ts │ │ └── uuidv4-generator.ts │ │ ├── helpers │ │ ├── destroy-observable.ts │ │ ├── dfs.ts │ │ ├── get-native-element.ts │ │ ├── index.ts │ │ ├── range-selector.spec.ts │ │ ├── range-selector.ts │ │ └── warn-once.ts │ │ ├── index.ts │ │ ├── interfaces │ │ ├── content-density.ts │ │ ├── css-class-builder.interface.ts │ │ ├── css-style-builder.interface.ts │ │ ├── has-element-ref.interface.ts │ │ ├── index.ts │ │ ├── keyboard-support-item.interface.ts │ │ ├── module-deprecation.interface.ts │ │ └── require.interface.ts │ │ ├── list-item │ │ └── list-item-utils.ts │ │ ├── models │ │ └── nullable.ts │ │ ├── ng-package.json │ │ ├── pipes │ │ ├── async-or-sync.pipe.spec.ts │ │ ├── async-or-sync.pipe.ts │ │ ├── displayFn.pipe.ts │ │ ├── filter-strings.pipe.ts │ │ ├── index.ts │ │ ├── is-compact.pipe.ts │ │ ├── make-async.pipe.spec.ts │ │ ├── make-async.pipe.ts │ │ ├── pipe.module.ts │ │ ├── safe.pipe.ts │ │ ├── search-highlight.pipe.ts │ │ ├── truncate.pipe.ts │ │ ├── two-digits.pipe.ts │ │ └── value-by-path.pipe.ts │ │ ├── project.json │ │ ├── services │ │ ├── content-density.service.ts │ │ ├── destroyed.service.ts │ │ ├── focus-trap.service.ts │ │ ├── index.ts │ │ ├── keyboard-support │ │ │ ├── keyboard-support.service.spec.ts │ │ │ └── keyboard-support.service.ts │ │ ├── local-storage.service.ts │ │ ├── observers │ │ │ └── attribute.observer.ts │ │ ├── resize-observer.service.ts │ │ ├── rtl.service.ts │ │ └── tabbable-element.service.ts │ │ ├── test-setup.ts │ │ ├── toast │ │ ├── base-toast-animations.ts │ │ ├── base-toast-positions.ts │ │ ├── base-toast.service.ts │ │ ├── classes │ │ │ ├── action-dismissible │ │ │ │ └── base-toast-action-dismissible-ref.ts │ │ │ ├── base-toast-animated-container.component.ts │ │ │ ├── base-toast-config.ts │ │ │ ├── base-toast-container.component.ts │ │ │ ├── base-toast-overlay-container.ts │ │ │ ├── base-toast-ref.ts │ │ │ └── duration-dismissible │ │ │ │ ├── base-toast-duration-dismissible-config.ts │ │ │ │ ├── base-toast-duration-dismissible-container.component.ts │ │ │ │ ├── base-toast-duration-dismissible-ref.ts │ │ │ │ └── base-toast-duration-dismissible.service.ts │ │ ├── index.ts │ │ └── interfaces │ │ │ ├── toast-container-component.interface.ts │ │ │ ├── toast-duration-dismissible-container-component.interface.ts │ │ │ └── toast-text-component.interface.ts │ │ ├── tokens │ │ ├── module-deprecations.token.ts │ │ └── viewport-size.observable.ts │ │ ├── typecheck.ts │ │ └── utils.module.ts ├── core │ ├── CHANGELOG.md │ ├── README.md │ ├── action-bar │ │ ├── action-bar-actions │ │ │ ├── action-bar-actions.directive.spec.ts │ │ │ └── action-bar-actions.directive.ts │ │ ├── action-bar-back │ │ │ ├── action-bar-back.directive.spec.ts │ │ │ └── action-bar-back.directive.ts │ │ ├── action-bar-description │ │ │ ├── action-bar-description.directive.spec.ts │ │ │ └── action-bar-description.directive.ts │ │ ├── action-bar-header │ │ │ ├── action-bar-header.directive.spec.ts │ │ │ └── action-bar-header.directive.ts │ │ ├── action-bar-mobile │ │ │ ├── action-bar-mobile.directive.spec.ts │ │ │ └── action-bar-mobile.directive.ts │ │ ├── action-bar-title │ │ │ ├── action-bar-title.component.spec.ts │ │ │ └── action-bar-title.component.ts │ │ ├── action-bar.component.scss │ │ ├── action-bar.component.spec.ts │ │ ├── action-bar.component.ts │ │ ├── action-bar.module.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ └── project.json │ ├── action-sheet │ │ ├── action-sheet-body │ │ │ ├── action-sheet-body.component.html │ │ │ └── action-sheet-body.component.ts │ │ ├── action-sheet-control │ │ │ └── action-sheet-control.component.ts │ │ ├── action-sheet-item │ │ │ ├── action-sheet-item.component.html │ │ │ └── action-sheet-item.component.ts │ │ ├── action-sheet-mobile │ │ │ ├── action-sheet-mobile.component.html │ │ │ └── action-sheet-mobile.component.ts │ │ ├── action-sheet.component.html │ │ ├── action-sheet.component.scss │ │ ├── action-sheet.component.spec.ts │ │ ├── action-sheet.component.ts │ │ ├── action-sheet.module.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ └── project.json │ ├── avatar-group-legacy │ │ ├── avatar-group-legacy.component.html │ │ ├── avatar-group-legacy.component.scss │ │ ├── avatar-group-legacy.component.spec.ts │ │ ├── avatar-group-legacy.component.ts │ │ ├── avatar-group-legacy.interface.ts │ │ ├── avatar-group-legacy.module.ts │ │ ├── directives │ │ │ ├── avatar-group-legacy-focusable-avatar.directive.spec.ts │ │ │ ├── avatar-group-legacy-focusable-avatar.directive.ts │ │ │ ├── avatar-group-legacy-item.directive.spec.ts │ │ │ ├── avatar-group-legacy-item.directive.ts │ │ │ ├── avatar-group-legacy-overflow-body.directive.spec.ts │ │ │ ├── avatar-group-legacy-overflow-body.directive.ts │ │ │ ├── avatar-group-legacy-overflow-button-text.directive.spec.ts │ │ │ ├── avatar-group-legacy-overflow-button-text.directive.ts │ │ │ ├── avatar-group-legacy-overflow-button.directive.spec.ts │ │ │ ├── avatar-group-legacy-overflow-button.directive.ts │ │ │ ├── avatar-group-legacy-overflow-item.directive.spec.ts │ │ │ ├── avatar-group-legacy-overflow-item.directive.ts │ │ │ ├── avatar-group-legacy-popover-control.directive.spec.ts │ │ │ └── avatar-group-legacy-popover-control.directive.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── rename-to-legacy.js │ │ └── tokens.ts │ ├── avatar-group │ │ ├── avatar-group.component.html │ │ ├── avatar-group.component.scss │ │ ├── avatar-group.component.spec.ts │ │ ├── avatar-group.component.ts │ │ ├── avatar-group.module.ts │ │ ├── components │ │ │ ├── avatar-group-host.component.scss │ │ │ ├── avatar-group-host.component.ts │ │ │ ├── avatar-group-overflow-body │ │ │ │ ├── avatar-group-overflow-body.component.html │ │ │ │ ├── avatar-group-overflow-body.component.scss │ │ │ │ └── avatar-group-overflow-body.component.ts │ │ │ ├── avatar-group-overflow-button.component.ts │ │ │ └── default-avatar-group-overflow-body │ │ │ │ ├── default-avatar-group-overflow-body.component.html │ │ │ │ ├── default-avatar-group-overflow-body.component.scss │ │ │ │ └── default-avatar-group-overflow-body.component.ts │ │ ├── directives │ │ │ ├── avatar-group-internal-overflow-button.directive.ts │ │ │ ├── avatar-group-item-renderer.directive.ts │ │ │ ├── avatar-group-item.directive.ts │ │ │ ├── avatar-group-overflow-body.directive.ts │ │ │ └── avatar-group-overflow-button.directive.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── test-setup.ts │ │ ├── tokens.ts │ │ └── types.ts │ ├── avatar │ │ ├── avatar-icon.pipe.ts │ │ ├── avatar-value-states.type.ts │ │ ├── avatar.component.html │ │ ├── avatar.component.scss │ │ ├── avatar.component.spec.ts │ │ ├── avatar.component.ts │ │ ├── avatar.module.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ └── tokens.ts │ ├── bar │ │ ├── bar.component.html │ │ ├── bar.component.scss │ │ ├── bar.component.spec.ts │ │ ├── bar.component.ts │ │ ├── bar.module.ts │ │ ├── button-bar │ │ │ ├── button-bar.component.spec.ts │ │ │ └── button-bar.component.ts │ │ ├── directives │ │ │ ├── bar-element.directive.spec.ts │ │ │ ├── bar-element.directive.ts │ │ │ ├── bar-left.directive.spec.ts │ │ │ ├── bar-left.directive.ts │ │ │ ├── bar-middle.directive.spec.ts │ │ │ ├── bar-middle.directive.ts │ │ │ ├── bar-right.directive.spec.ts │ │ │ └── bar-right.directive.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ └── tokens.ts │ ├── breadcrumb │ │ ├── breadcrumb-item.component.ts │ │ ├── breadcrumb.component.html │ │ ├── breadcrumb.component.scss │ │ ├── breadcrumb.component.spec.ts │ │ ├── breadcrumb.component.ts │ │ ├── breadcrumb.module.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ └── tokens.ts │ ├── busy-indicator │ │ ├── busy-indicator-extended │ │ │ ├── busy-indicator-extended.directive.spec.ts │ │ │ └── busy-indicator-extended.directive.ts │ │ ├── busy-indicator.component.html │ │ ├── busy-indicator.component.scss │ │ ├── busy-indicator.component.spec.ts │ │ ├── busy-indicator.component.ts │ │ ├── busy-indicator.module.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ └── tokens.ts │ ├── button │ │ ├── base-button.ts │ │ ├── button-badge.directive.ts │ │ ├── button.component.html │ │ ├── button.component.scss │ │ ├── button.component.spec.ts │ │ ├── button.component.ts │ │ ├── button.module.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ └── tokens.ts │ ├── calendar │ │ ├── calendar-directives.ts │ │ ├── calendar-errors.ts │ │ ├── calendar-header │ │ │ ├── calendar-header.component.html │ │ │ ├── calendar-header.component.scss │ │ │ ├── calendar-header.component.spec.ts │ │ │ └── calendar-header.component.ts │ │ ├── calendar-legend │ │ │ ├── calendar-legend-focusing.service.spec.ts │ │ │ ├── calendar-legend-focusing.service.ts │ │ │ ├── calendar-legend-item.component.spec.ts │ │ │ ├── calendar-legend-item.component.ts │ │ │ ├── calendar-legend.component.spec.ts │ │ │ └── calendar-legend.component.ts │ │ ├── calendar-views │ │ │ ├── calendar-aggregated-year-view │ │ │ │ ├── calendar-aggregated-year-view.component.html │ │ │ │ ├── calendar-aggregated-year-view.component.scss │ │ │ │ ├── calendar-aggregated-year-view.component.spec.ts │ │ │ │ └── calendar-aggregated-year-view.component.ts │ │ │ ├── calendar-day-view │ │ │ │ ├── calendar-day-view.component.html │ │ │ │ ├── calendar-day-view.component.scss │ │ │ │ ├── calendar-day-view.component.spec.ts │ │ │ │ └── calendar-day-view.component.ts │ │ │ ├── calendar-month-view │ │ │ │ ├── calendar-month-view.component.html │ │ │ │ ├── calendar-month-view.component.scss │ │ │ │ ├── calendar-month-view.component.spec.ts │ │ │ │ └── calendar-month-view.component.ts │ │ │ └── calendar-year-view │ │ │ │ ├── calendar-year-view.component.html │ │ │ │ ├── calendar-year-view.component.scss │ │ │ │ ├── calendar-year-view.component.spec.ts │ │ │ │ └── calendar-year-view.component.ts │ │ ├── calendar.component.html │ │ ├── calendar.component.scss │ │ ├── calendar.component.spec.ts │ │ ├── calendar.component.ts │ │ ├── calendar.module.ts │ │ ├── calendar.service.spec.ts │ │ ├── calendar.service.ts │ │ ├── i18n │ │ │ └── calendar-i18n-labels.ts │ │ ├── index.ts │ │ ├── models │ │ │ ├── aggregated-year.ts │ │ │ ├── calendar-current.ts │ │ │ ├── calendar-day.ts │ │ │ ├── calendar-month.ts │ │ │ ├── calendar-year-grid.ts │ │ │ ├── common.ts │ │ │ └── date-range.ts │ │ ├── ng-package.json │ │ ├── patch-deprecated-i18n-labels.ts │ │ ├── project.json │ │ └── types.ts │ ├── card │ │ ├── card-focus-item.model.ts │ │ ├── card-list │ │ │ └── card-list.directive.ts │ │ ├── card.component.html │ │ ├── card.component.scss │ │ ├── card.component.spec.ts │ │ ├── card.component.ts │ │ ├── card.module.ts │ │ ├── constants.ts │ │ ├── content │ │ │ ├── card-content.component.spec.ts │ │ │ └── card-content.component.ts │ │ ├── footer │ │ │ ├── card-footer-action-item.directive.ts │ │ │ ├── card-footer.component.html │ │ │ └── card-footer.component.ts │ │ ├── header-elements │ │ │ ├── card-counter.directive.spec.ts │ │ │ ├── card-counter.directive.ts │ │ │ ├── card-indicator-title.directive.ts │ │ │ ├── card-indicator-value.directive.ts │ │ │ ├── card-indicator.component.ts │ │ │ ├── card-numeric-container.component.html │ │ │ ├── card-numeric-container.component.ts │ │ │ ├── card-second-subtitle.directive.spec.ts │ │ │ ├── card-second-subtitle.directive.ts │ │ │ ├── card-subtitle.directive.spec.ts │ │ │ ├── card-subtitle.directive.ts │ │ │ ├── card-title.directive.spec.ts │ │ │ └── card-title.directive.ts │ │ ├── header │ │ │ ├── card-header-action.directive.ts │ │ │ ├── card-header-column.directive.ts │ │ │ ├── card-header-extended.component.ts │ │ │ ├── card-header-main.component.html │ │ │ ├── card-header-main.component.ts │ │ │ ├── card-header-numeric.component.ts │ │ │ ├── card-header-row.directive.ts │ │ │ ├── card-header.component.spec.ts │ │ │ └── card-header.component.ts │ │ ├── index.ts │ │ ├── kpi │ │ │ ├── card-kpi-analytics-content.directive.ts │ │ │ ├── card-kpi-analytics-label.directive.ts │ │ │ ├── card-kpi-analytics.directive.ts │ │ │ ├── card-kpi-header.component.html │ │ │ ├── card-kpi-header.component.ts │ │ │ ├── card-kpi-scale-icon.directive.ts │ │ │ ├── card-kpi-scale-text.directive.ts │ │ │ ├── card-kpi-value.directive.ts │ │ │ └── card-kpi.spec.ts │ │ ├── loader │ │ │ ├── card-loader.component.spec.ts │ │ │ └── card-loader.component.ts │ │ ├── media │ │ │ ├── card-media-content-container.directive.ts │ │ │ ├── card-media-heading.directive.ts │ │ │ ├── card-media-image-container.directive.ts │ │ │ ├── card-media-image.directive.ts │ │ │ ├── card-media-text.directive.ts │ │ │ └── card-media.component.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── token.ts │ │ └── utils.ts │ ├── carousel │ │ ├── carousel-item.directive.ts │ │ ├── carousel-item │ │ │ ├── carousel-item.component.html │ │ │ └── carousel-item.component.ts │ │ ├── carousel.component.html │ │ ├── carousel.component.scss │ │ ├── carousel.component.spec.ts │ │ ├── carousel.component.ts │ │ ├── carousel.directive.spec.ts │ │ ├── carousel.directive.ts │ │ ├── carousel.module.ts │ │ ├── carousel.service.ts │ │ ├── i18n │ │ │ └── carousel-resources.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ └── project.json │ ├── checkbox │ │ ├── checkbox.module.ts │ │ ├── checkbox │ │ │ ├── checkbox.component.html │ │ │ ├── checkbox.component.scss │ │ │ ├── checkbox.component.spec.ts │ │ │ ├── checkbox.component.ts │ │ │ └── fd-checkbox-values.interface.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ └── tokens.ts │ ├── combobox │ │ ├── combobox-item.directive.ts │ │ ├── combobox-item.ts │ │ ├── combobox-mobile │ │ │ ├── combobox-mobile.component.html │ │ │ ├── combobox-mobile.component.spec.ts │ │ │ ├── combobox-mobile.component.ts │ │ │ └── combobox-mobile.module.ts │ │ ├── combobox.component.html │ │ ├── combobox.component.scss │ │ ├── combobox.component.spec.ts │ │ ├── combobox.component.ts │ │ ├── combobox.interface.ts │ │ ├── combobox.module.ts │ │ ├── index.ts │ │ ├── list-group.pipe.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ └── tokens.ts │ ├── content-density │ │ ├── classes │ │ │ ├── abstract-content-density-storage.ts │ │ │ └── content-density-observer.settings.ts │ │ ├── content-density.module.ts │ │ ├── content-density.types.ts │ │ ├── directives │ │ │ ├── content-density.directive.spec.ts │ │ │ └── content-density.directive.ts │ │ ├── helpers │ │ │ ├── content-density-change-callback-factory.ts │ │ │ ├── density-type-checkers.ts │ │ │ └── get-changes-source.provider.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── provide-content-density.ts │ │ ├── providers │ │ │ ├── content-density-observer-providers.ts │ │ │ ├── local-content-density-storage.ts │ │ │ ├── memory-content-density-storage.ts │ │ │ └── url-content-density-storage.ts │ │ ├── services │ │ │ ├── content-density-observer.service.ts │ │ │ ├── deprecated-content-density.service.ts │ │ │ └── global-content-density.service.ts │ │ ├── testing │ │ │ └── mocked-local-content-density-directive.ts │ │ ├── tokens │ │ │ ├── content-density-directive.ts │ │ │ ├── content-density-storage-key.token.ts │ │ │ └── default-content-density.token.ts │ │ ├── types │ │ │ └── content-density.mode.ts │ │ └── variables │ │ │ └── default-content-density-consumer-config.ts │ ├── date-picker │ │ ├── date-picker-mobile │ │ │ ├── date-picker-mobile.component.html │ │ │ ├── date-picker-mobile.component.spec.ts │ │ │ └── date-picker-mobile.component.ts │ │ ├── date-picker.component.html │ │ ├── date-picker.component.scss │ │ ├── date-picker.component.spec.ts │ │ ├── date-picker.component.ts │ │ ├── date-picker.model.ts │ │ ├── date-picker.module.ts │ │ ├── errors.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ └── tokens.ts │ ├── datetime-picker │ │ ├── datetime-picker-mobile │ │ │ ├── datetime-picker-mobile.component.html │ │ │ ├── datetime-picker-mobile.component.spec.ts │ │ │ └── datetime-picker-mobile.component.ts │ │ ├── datetime-picker.component.html │ │ ├── datetime-picker.component.scss │ │ ├── datetime-picker.component.spec.ts │ │ ├── datetime-picker.component.ts │ │ ├── datetime-picker.model.ts │ │ ├── datetime-picker.module.ts │ │ ├── errors.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ └── tokens.ts │ ├── datetime │ │ ├── datetime-adapter.ts │ │ ├── datetime-format.pipes.ts │ │ ├── datetime-formats.ts │ │ ├── datetime-utils.ts │ │ ├── fd-date-formats.ts │ │ ├── fd-date.spec.ts │ │ ├── fd-date.ts │ │ ├── fd-date.utils.ts │ │ ├── fd-datetime-adapter.spec.ts │ │ ├── fd-datetime-adapter.ts │ │ ├── fd-datetime-pipes.module.ts │ │ ├── fd-datetime.module.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ └── provide-date-time.ts │ ├── dialog │ │ ├── base │ │ │ ├── dialog-base.class.ts │ │ │ ├── dialog-base.service.ts │ │ │ ├── dialog-config-base.class.ts │ │ │ ├── dialog-content-base.class.ts │ │ │ ├── dialog-footer-base.class.ts │ │ │ ├── dialog-header-base.class.ts │ │ │ └── dialog-ref-base.class.ts │ │ ├── dialog-body │ │ │ ├── dialog-body.component.html │ │ │ ├── dialog-body.component.spec.ts │ │ │ └── dialog-body.component.ts │ │ ├── dialog-close-button │ │ │ ├── dialog-close-button.component.spec.ts │ │ │ └── dialog-close-button.component.ts │ │ ├── dialog-container │ │ │ ├── dialog-container.component.scss │ │ │ ├── dialog-container.component.spec.ts │ │ │ └── dialog-container.component.ts │ │ ├── dialog-default │ │ │ ├── dialog-default.component.html │ │ │ ├── dialog-default.component.spec.ts │ │ │ └── dialog-default.component.ts │ │ ├── dialog-footer │ │ │ ├── dialog-footer.component.html │ │ │ ├── dialog-footer.component.spec.ts │ │ │ └── dialog-footer.component.ts │ │ ├── dialog-full-screen-toggler-button │ │ │ ├── dialog-full-screen-toggler-button.component.spec.ts │ │ │ └── dialog-full-screen-toggler-button.component.ts │ │ ├── dialog-header │ │ │ ├── dialog-header.component.html │ │ │ ├── dialog-header.component.spec.ts │ │ │ └── dialog-header.component.ts │ │ ├── dialog-service │ │ │ ├── dialog.service.spec.ts │ │ │ └── dialog.service.ts │ │ ├── dialog.component.html │ │ ├── dialog.component.scss │ │ ├── dialog.component.spec.ts │ │ ├── dialog.component.ts │ │ ├── dialog.module.ts │ │ ├── dialog.types.ts │ │ ├── directives │ │ │ ├── dialog-template.directive.ts │ │ │ └── dialog-title.directive.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── provide-dialog-service.ts │ │ ├── tokens.ts │ │ └── utils │ │ │ ├── dialog-config.class.ts │ │ │ ├── dialog-container.model.ts │ │ │ ├── dialog-default-content.class.ts │ │ │ ├── dialog-overlay.container.ts │ │ │ ├── dialog-position.class.ts │ │ │ ├── dialog-ref.class.ts │ │ │ ├── dialog-width-to-size.ts │ │ │ └── dialog.animations.ts │ ├── dynamic-page │ │ ├── constants.ts │ │ ├── directives │ │ │ ├── dynamic-page-header-subtitle.directive.ts │ │ │ └── dynamic-page-header-title.directive.ts │ │ ├── dynamic-page-content │ │ │ ├── dynamic-page-content.component.html │ │ │ ├── dynamic-page-content.component.scss │ │ │ └── dynamic-page-content.component.ts │ │ ├── dynamic-page-footer │ │ │ └── dynamic-page-footer.component.ts │ │ ├── dynamic-page-header │ │ │ ├── actions │ │ │ │ ├── dynamic-page-base-actions.ts │ │ │ │ ├── dynamic-page-global-actions.component.ts │ │ │ │ ├── dynamic-page-layout-actions.component.ts │ │ │ │ └── dynamic-page-title-content.component.ts │ │ │ ├── breadcrumb │ │ │ │ └── dynamic-page-breadcrumb.component.ts │ │ │ ├── header │ │ │ │ ├── dynamic-page-header.component.html │ │ │ │ ├── dynamic-page-header.component.scss │ │ │ │ ├── dynamic-page-header.component.spec.ts │ │ │ │ └── dynamic-page-header.component.ts │ │ │ └── subheader │ │ │ │ ├── dynamic-page-subheader.component.html │ │ │ │ ├── dynamic-page-subheader.component.spec.ts │ │ │ │ └── dynamic-page-subheader.component.ts │ │ ├── dynamic-page-wrapper.directive.ts │ │ ├── dynamic-page.component.html │ │ ├── dynamic-page.component.scss │ │ ├── dynamic-page.component.spec.ts │ │ ├── dynamic-page.component.ts │ │ ├── dynamic-page.config.ts │ │ ├── dynamic-page.interface.ts │ │ ├── dynamic-page.module.ts │ │ ├── dynamic-page.service.ts │ │ ├── dynamic-page.tokens.ts │ │ ├── index.ts │ │ ├── models │ │ │ └── title-directive-context.ts │ │ ├── ng-package.json │ │ ├── patch-header-i18n-texts.ts │ │ ├── project.json │ │ ├── tokens.ts │ │ └── utils.ts │ ├── dynamic-side-content │ │ ├── constants.ts │ │ ├── dynamic-side-content-main.component.spec.ts │ │ ├── dynamic-side-content-main.component.ts │ │ ├── dynamic-side-content-side.component.spec.ts │ │ ├── dynamic-side-content-side.component.ts │ │ ├── dynamic-side-content.component.html │ │ ├── dynamic-side-content.component.scss │ │ ├── dynamic-side-content.component.spec.ts │ │ ├── dynamic-side-content.component.ts │ │ ├── dynamic-side-content.module.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ └── utils.ts │ ├── environments │ │ └── environment.ts │ ├── eslint.config.js │ ├── facets │ │ ├── constants.ts │ │ ├── content │ │ │ └── facet-content.component.ts │ │ ├── facet-container.component.scss │ │ ├── facet-container.component.ts │ │ ├── facet-group.component.scss │ │ ├── facet-group.component.ts │ │ ├── facet.module.ts │ │ ├── facet │ │ │ ├── facet.component.html │ │ │ ├── facet.component.scss │ │ │ ├── facet.component.spec.ts │ │ │ └── facet.component.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ └── utils.ts │ ├── feed-input │ │ ├── directives │ │ │ ├── feed-input-avatar.directive.ts │ │ │ ├── feed-input-button.directive.ts │ │ │ └── feed-input-textarea.directive.ts │ │ ├── feed-input.component.html │ │ ├── feed-input.component.scss │ │ ├── feed-input.component.spec.ts │ │ ├── feed-input.component.ts │ │ ├── feed-input.module.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ └── project.json │ ├── feed-list-item │ │ ├── components │ │ │ ├── feed-list-action │ │ │ │ └── feed-list-action.component.ts │ │ │ ├── feed-list-avatar │ │ │ │ └── feed-list-avatar.component.ts │ │ │ ├── feed-list-footer │ │ │ │ └── feed-list-footer.component.ts │ │ │ ├── item │ │ │ │ ├── feed-list-item.component.html │ │ │ │ ├── feed-list-item.component.scss │ │ │ │ ├── feed-list-item.component.spec.ts │ │ │ │ └── feed-list-item.component.ts │ │ │ └── list │ │ │ │ ├── feed-list.component.html │ │ │ │ ├── feed-list.component.scss │ │ │ │ ├── feed-list.component.spec.ts │ │ │ │ └── feed-list.component.ts │ │ ├── constants.ts │ │ ├── directives │ │ │ ├── byline.directive.spec.ts │ │ │ └── byline.directive.ts │ │ ├── feed-list-item.module.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ └── project.json │ ├── file-uploader │ │ ├── directives │ │ │ ├── file-uploader-dragndrop.directive.ts │ │ │ └── file-uploader-select.directive.ts │ │ ├── file-upload.service.spec.ts │ │ ├── file-uploader.component.html │ │ ├── file-uploader.component.scss │ │ ├── file-uploader.component.spec.ts │ │ ├── file-uploader.component.ts │ │ ├── file-uploader.module.ts │ │ ├── file-uploader.service.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ └── project.json │ ├── fixed-card-layout │ │ ├── fixed-card-layout-item │ │ │ └── fixed-card-layout-item.component.ts │ │ ├── fixed-card-layout.component.html │ │ ├── fixed-card-layout.component.scss │ │ ├── fixed-card-layout.component.spec.ts │ │ ├── fixed-card-layout.component.ts │ │ ├── fixed-card-layout.module.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ └── project.json │ ├── flexible-column-layout │ │ ├── constants.ts │ │ ├── flexible-column-layout.component.html │ │ ├── flexible-column-layout.component.scss │ │ ├── flexible-column-layout.component.spec.ts │ │ ├── flexible-column-layout.component.ts │ │ ├── flexible-column-layout.module.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── provide-config.ts │ │ └── tokens.ts │ ├── form │ │ ├── fieldset │ │ │ ├── fieldset.component.scss │ │ │ ├── fieldset.component.spec.ts │ │ │ ├── fieldset.component.ts │ │ │ └── fieldset.module.ts │ │ ├── form-control │ │ │ ├── form-control.component.scss │ │ │ ├── form-control.component.spec.ts │ │ │ ├── form-control.component.ts │ │ │ └── form-control.module.ts │ │ ├── form-group │ │ │ ├── form-group.component.scss │ │ │ ├── form-group.component.spec.ts │ │ │ ├── form-group.component.ts │ │ │ └── form-group.module.ts │ │ ├── form-header │ │ │ ├── form-header.component.scss │ │ │ ├── form-header.component.spec.ts │ │ │ ├── form-header.component.ts │ │ │ └── form-header.module.ts │ │ ├── form-input-message-group │ │ │ ├── form-input-message-group.component.html │ │ │ ├── form-input-message-group.component.scss │ │ │ ├── form-input-message-group.component.spec.ts │ │ │ ├── form-input-message-group.component.ts │ │ │ └── form-input-message-group.module.ts │ │ ├── form-item-control │ │ │ └── form-item-control.ts │ │ ├── form-item │ │ │ ├── form-item.component.scss │ │ │ ├── form-item.component.spec.ts │ │ │ ├── form-item.component.ts │ │ │ └── form-item.module.ts │ │ ├── form-label │ │ │ ├── form-label.component.html │ │ │ ├── form-label.component.scss │ │ │ ├── form-label.component.spec.ts │ │ │ ├── form-label.component.ts │ │ │ └── form-label.module.ts │ │ ├── form-legend │ │ │ ├── form-legend.component.spec.ts │ │ │ ├── form-legend.directive.ts │ │ │ └── form-legend.module.ts │ │ ├── form-message │ │ │ ├── constants.ts │ │ │ ├── form-message.component.scss │ │ │ ├── form-message.component.spec.ts │ │ │ ├── form-message.component.ts │ │ │ ├── form-message.module.ts │ │ │ ├── popover-form-message.service.spec.ts │ │ │ └── popover-form-message.service.ts │ │ ├── form.module.ts │ │ ├── index.ts │ │ ├── inline-help-placement.type.ts │ │ ├── ng-package.json │ │ └── project.json │ ├── formatted-text │ │ ├── formatted-text.component.spec.ts │ │ ├── formatted-text.component.ts │ │ ├── formatted-text.module.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ └── utils │ │ │ └── html-sanitizer.ts │ ├── fundamental-ngx.module.ts │ ├── generic-tag │ │ ├── generic-tag.component.html │ │ ├── generic-tag.component.scss │ │ ├── generic-tag.component.spec.ts │ │ ├── generic-tag.component.ts │ │ ├── generic-tag.module.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ └── tokens.ts │ ├── grid-list │ │ ├── components │ │ │ ├── grid-list-filter-bar │ │ │ │ ├── grid-list-filter-bar.component.html │ │ │ │ ├── grid-list-filter-bar.component.spec.ts │ │ │ │ └── grid-list-filter-bar.component.ts │ │ │ ├── grid-list-footer │ │ │ │ ├── grid-list-footer.component.html │ │ │ │ ├── grid-list-footer.component.spec.ts │ │ │ │ └── grid-list-footer.component.ts │ │ │ ├── grid-list-group-header │ │ │ │ ├── grid-list-group-header.component.html │ │ │ │ ├── grid-list-group-header.component.spec.ts │ │ │ │ └── grid-list-group-header.component.ts │ │ │ ├── grid-list-item-footer-bar │ │ │ │ ├── grid-list-item-footer-bar.component.html │ │ │ │ ├── grid-list-item-footer-bar.component.spec.ts │ │ │ │ └── grid-list-item-footer-bar.component.ts │ │ │ ├── grid-list-item-toolbar │ │ │ │ ├── grid-list-item-toolbar.component.html │ │ │ │ ├── grid-list-item-toolbar.component.spec.ts │ │ │ │ └── grid-list-item-toolbar.component.ts │ │ │ ├── grid-list-item │ │ │ │ ├── grid-list-item.component.html │ │ │ │ ├── grid-list-item.component.scss │ │ │ │ ├── grid-list-item.component.spec.ts │ │ │ │ └── grid-list-item.component.ts │ │ │ ├── grid-list-more-btn │ │ │ │ ├── grid-list-more-btn.component.html │ │ │ │ ├── grid-list-more-btn.component.spec.ts │ │ │ │ └── grid-list-more-btn.component.ts │ │ │ ├── grid-list-title-bar-spacer │ │ │ │ └── grid-list-title-bar-spacer.component.ts │ │ │ ├── grid-list-title-bar │ │ │ │ ├── grid-list-title-bar.component.html │ │ │ │ ├── grid-list-title-bar.component.spec.ts │ │ │ │ ├── grid-list-title-bar.component.ts │ │ │ │ └── grid-list-title-bar.directive.ts │ │ │ └── grid-list │ │ │ │ ├── grid-list-base.component.ts │ │ │ │ ├── grid-list.component.html │ │ │ │ ├── grid-list.component.scss │ │ │ │ ├── grid-list.component.spec.ts │ │ │ │ └── grid-list.component.ts │ │ ├── directives │ │ │ ├── grid-list-item-body.directive.ts │ │ │ └── grid-list-item-image.directive.ts │ │ ├── grid-list.module.ts │ │ ├── helpers │ │ │ └── parse-layout-pattern.ts │ │ ├── index.ts │ │ ├── models │ │ │ └── grid-list-selection.models.ts │ │ ├── ng-package.json │ │ └── project.json │ ├── icon │ │ ├── icon.component.scss │ │ ├── icon.component.spec.ts │ │ ├── icon.component.ts │ │ ├── icon.module.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ └── tokens.ts │ ├── illustrated-message │ │ ├── components │ │ │ ├── illustrated-message-actions │ │ │ │ ├── illustrated-message-actions.component.spec.ts │ │ │ │ └── illustrated-message-actions.component.ts │ │ │ └── illustrated-message-figcaption │ │ │ │ ├── illustrated-message-figcaption.component.spec.ts │ │ │ │ └── illustrated-message-figcaption.component.ts │ │ ├── directives │ │ │ ├── illustrated-message-text │ │ │ │ ├── illustrated-message-text.directive.spec.ts │ │ │ │ └── illustrated-message-text.directive.ts │ │ │ └── illustrated-message-title │ │ │ │ ├── illustrated-message-title.directive.spec.ts │ │ │ │ └── illustrated-message-title.directive.ts │ │ ├── illustrated-message.component.html │ │ ├── illustrated-message.component.scss │ │ ├── illustrated-message.component.spec.ts │ │ ├── illustrated-message.component.ts │ │ ├── illustrated-message.module.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ └── project.json │ ├── index.ts │ ├── infinite-scroll │ │ ├── filler-test.spec.ts │ │ ├── index.ts │ │ ├── infinite-scroll.directive.ts │ │ ├── infinite-scroll.module.ts │ │ ├── ng-package.json │ │ └── project.json │ ├── info-label │ │ ├── index.ts │ │ ├── info-label.component.html │ │ ├── info-label.component.scss │ │ ├── info-label.component.spec.ts │ │ ├── info-label.component.ts │ │ ├── info-label.module.ts │ │ ├── ng-package.json │ │ └── project.json │ ├── inline-help │ │ ├── index.ts │ │ ├── inline-help.directive.spec.ts │ │ ├── inline-help.directive.ts │ │ ├── inline-help.module.ts │ │ ├── ng-package.json │ │ └── project.json │ ├── input-group │ │ ├── index.ts │ │ ├── input-group-directives.ts │ │ ├── input-group.component.html │ │ ├── input-group.component.scss │ │ ├── input-group.component.spec.ts │ │ ├── input-group.component.ts │ │ ├── input-group.module.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ └── types.ts │ ├── jest.config.ts │ ├── layout-grid │ │ ├── constants.ts │ │ ├── directives │ │ │ ├── layout-grid-col.directive.spec.ts │ │ │ ├── layout-grid-col.directive.ts │ │ │ └── layout-grid-row.directive.ts │ │ ├── index.ts │ │ ├── layout-grid.component.html │ │ ├── layout-grid.component.scss │ │ ├── layout-grid.component.spec.ts │ │ ├── layout-grid.component.ts │ │ ├── layout-grid.module.ts │ │ ├── ng-package.json │ │ └── project.json │ ├── layout-panel │ │ ├── index.ts │ │ ├── layout-panel-actions │ │ │ ├── layout-panel-actions.component.spec.ts │ │ │ └── layout-panel-actions.component.ts │ │ ├── layout-panel-body │ │ │ ├── layout-panel-body.component.spec.ts │ │ │ └── layout-panel-body.component.ts │ │ ├── layout-panel-description │ │ │ ├── layout-panel-description.component.html │ │ │ ├── layout-panel-description.component.spec.ts │ │ │ └── layout-panel-description.component.ts │ │ ├── layout-panel-filters │ │ │ ├── layout-panel-filters.component.spec.ts │ │ │ └── layout-panel-filters.component.ts │ │ ├── layout-panel-footer │ │ │ ├── layout-panel-footer.component.spec.ts │ │ │ └── layout-panel-footer.component.ts │ │ ├── layout-panel-head │ │ │ ├── layout-panel-head.component.spec.ts │ │ │ └── layout-panel-head.component.ts │ │ ├── layout-panel-header │ │ │ ├── layout-panel-header.component.html │ │ │ ├── layout-panel-header.component.spec.ts │ │ │ └── layout-panel-header.component.ts │ │ ├── layout-panel-title │ │ │ ├── layout-panel-title.directive.spec.ts │ │ │ └── layout-panel-title.directive.ts │ │ ├── layout-panel.component.html │ │ ├── layout-panel.component.scss │ │ ├── layout-panel.component.spec.ts │ │ ├── layout-panel.component.ts │ │ ├── layout-panel.module.ts │ │ ├── ng-package.json │ │ └── project.json │ ├── link │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── link.component.html │ │ ├── link.component.scss │ │ ├── link.component.spec.ts │ │ ├── link.component.ts │ │ ├── link.module.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ └── tokens.ts │ ├── list │ │ ├── directives │ │ │ ├── byline │ │ │ │ ├── list-byline-left.directive.spec.ts │ │ │ │ ├── list-byline-left.directive.ts │ │ │ │ ├── list-byline-right.directive.spec.ts │ │ │ │ ├── list-byline-right.directive.ts │ │ │ │ ├── list-byline.directive.spec.ts │ │ │ │ ├── list-byline.directive.ts │ │ │ │ ├── list-content.directive.spec.ts │ │ │ │ ├── list-content.directive.ts │ │ │ │ ├── list-thumbnail.directive.spec.ts │ │ │ │ └── list-thumbnail.directive.ts │ │ │ ├── list-footer.directive.spec.ts │ │ │ ├── list-footer.directive.ts │ │ │ ├── list-group-header.directive.spec.ts │ │ │ ├── list-group-header.directive.ts │ │ │ ├── list-icon.directive.spec.ts │ │ │ ├── list-icon.directive.ts │ │ │ ├── list-link.directive.spec.ts │ │ │ ├── list-link.directive.ts │ │ │ ├── list-navigation-item-arrow.directive.ts │ │ │ ├── list-navigation-item-text.directive.ts │ │ │ ├── list-secondary.directive.spec.ts │ │ │ ├── list-secondary.directive.ts │ │ │ ├── list-title-text.directive.spec.ts │ │ │ ├── list-title-text.directive.ts │ │ │ ├── list-title.directive.spec.ts │ │ │ ├── list-title.directive.ts │ │ │ └── subline │ │ │ │ ├── list-subline.directive.spec.ts │ │ │ │ └── list-subline.directive.ts │ │ ├── index.ts │ │ ├── list-component.interface.ts │ │ ├── list-focus-item.model.ts │ │ ├── list-item │ │ │ ├── list-item.component.html │ │ │ ├── list-item.component.spec.ts │ │ │ └── list-item.component.ts │ │ ├── list-message.directive.spec.ts │ │ ├── list-message.directive.ts │ │ ├── list-navigation-item │ │ │ ├── list-navigation-item.component.html │ │ │ ├── list-navigation-item.component.scss │ │ │ ├── list-navigation-item.component.spec.ts │ │ │ └── list-navigation-item.component.ts │ │ ├── list-unread-indicator.interface.ts │ │ ├── list.component.scss │ │ ├── list.component.spec.ts │ │ ├── list.component.ts │ │ ├── list.module.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ └── tokens.ts │ ├── menu │ │ ├── default-menu-item.class.ts │ │ ├── directives │ │ │ ├── glyph-menu-addon.directive.ts │ │ │ ├── menu-addon.directive.spec.ts │ │ │ ├── menu-addon.directive.ts │ │ │ ├── menu-item-input.directive.ts │ │ │ ├── menu-shortcut.directive.spec.ts │ │ │ ├── menu-shortcut.directive.ts │ │ │ ├── menu-title.directive.spec.ts │ │ │ ├── menu-title.directive.ts │ │ │ ├── menu-trigger.directive.spec.ts │ │ │ ├── menu-trigger.directive.ts │ │ │ ├── segmented-button │ │ │ │ ├── segmented-button-header.directive.ts │ │ │ │ └── segmented-button-option.directive.ts │ │ │ └── toggle-button.directive.ts │ │ ├── index.ts │ │ ├── menu-interactive.component.spec.ts │ │ ├── menu-interactive.component.ts │ │ ├── menu-item │ │ │ ├── menu-item.component.html │ │ │ ├── menu-item.component.spec.ts │ │ │ ├── menu-item.component.ts │ │ │ └── submenu.component.spec.ts │ │ ├── menu-keyboard.service.spec.ts │ │ ├── menu-keyboard.service.ts │ │ ├── menu-mobile │ │ │ ├── menu-mobile.component.html │ │ │ ├── menu-mobile.component.spec.ts │ │ │ └── menu-mobile.component.ts │ │ ├── menu-separator.directive.ts │ │ ├── menu.component.html │ │ ├── menu.component.scss │ │ ├── menu.component.spec.ts │ │ ├── menu.component.ts │ │ ├── menu.interface.ts │ │ ├── menu.module.ts │ │ ├── menu.tokens.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── public_api.ts │ │ └── services │ │ │ ├── menu.service.spec.ts │ │ │ └── menu.service.ts │ ├── message-box │ │ ├── directives │ │ │ └── message-box-template.directive.ts │ │ ├── index.ts │ │ ├── message-box-body │ │ │ ├── message-box-body.component.spec.ts │ │ │ └── message-box-body.component.ts │ │ ├── message-box-container │ │ │ ├── message-box-container.component.spec.ts │ │ │ └── message-box-container.component.ts │ │ ├── message-box-content.type.ts │ │ ├── message-box-default │ │ │ ├── message-box-default.component.html │ │ │ ├── message-box-default.component.spec.ts │ │ │ └── message-box-default.component.ts │ │ ├── message-box-footer │ │ │ ├── message-box-footer.component.html │ │ │ ├── message-box-footer.component.spec.ts │ │ │ └── message-box-footer.component.ts │ │ ├── message-box-header │ │ │ ├── message-box-header.component.html │ │ │ ├── message-box-header.component.spec.ts │ │ │ └── message-box-header.component.ts │ │ ├── message-box-semantic-icon │ │ │ ├── message-box-semantic-icon.component.spec.ts │ │ │ └── message-box-semantic-icon.component.ts │ │ ├── message-box.component.html │ │ ├── message-box.component.scss │ │ ├── message-box.component.spec.ts │ │ ├── message-box.component.ts │ │ ├── message-box.module.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── services │ │ │ ├── message-box.service.spec.ts │ │ │ └── message-box.service.ts │ │ └── utils │ │ │ ├── const.ts │ │ │ ├── message-box-config.class.ts │ │ │ ├── message-box-content.class.ts │ │ │ └── message-box-ref.class.ts │ ├── message-page │ │ ├── index.ts │ │ ├── message-page-actions │ │ │ ├── message-page-actions.component.spec.ts │ │ │ └── message-page-actions.component.ts │ │ ├── message-page-more │ │ │ ├── message-page-more.component.spec.ts │ │ │ └── message-page-more.component.ts │ │ ├── message-page-subtitle │ │ │ ├── message-page-subtitle.component.spec.ts │ │ │ └── message-page-subtitle.component.ts │ │ ├── message-page-title │ │ │ ├── message-page-title.component.spec.ts │ │ │ └── message-page-title.component.ts │ │ ├── message-page.component.html │ │ ├── message-page.component.scss │ │ ├── message-page.component.spec.ts │ │ ├── message-page.component.ts │ │ ├── message-page.module.ts │ │ ├── ng-package.json │ │ └── project.json │ ├── message-strip │ │ ├── alert │ │ │ ├── default-config.ts │ │ │ ├── index.ts │ │ │ ├── message-strip-alert-container-footer │ │ │ │ └── message-strip-alert-container-footer.component.ts │ │ │ ├── message-strip-alert-container │ │ │ │ ├── message-strip-alert-container.component.scss │ │ │ │ └── message-strip-alert-container.component.ts │ │ │ ├── message-strip-alert.position.ts │ │ │ ├── message-strip-alert.ref.ts │ │ │ ├── message-strip-alert.service.ts │ │ │ ├── message-strip-alert │ │ │ │ ├── message-strip-alert.component.html │ │ │ │ ├── message-strip-alert.component.ts │ │ │ │ └── message-strip-alert.interface.ts │ │ │ ├── message-strip-configuration-type.ts │ │ │ ├── open-message-strip-alert.config.ts │ │ │ └── tokens.ts │ │ ├── auto-dismiss-message-strip.directive.ts │ │ ├── index.ts │ │ ├── message-strip-icon.directive.ts │ │ ├── message-strip-indication-color.ts │ │ ├── message-strip-type.ts │ │ ├── message-strip.component.html │ │ ├── message-strip.component.scss │ │ ├── message-strip.component.spec.ts │ │ ├── message-strip.component.ts │ │ ├── message-strip.enum.ts │ │ ├── message-strip.module.ts │ │ ├── ng-package.json │ │ └── project.json │ ├── message-toast │ │ ├── components │ │ │ └── message-toast-text.component.ts │ │ ├── config │ │ │ └── message-toast.config.ts │ │ ├── constants │ │ │ ├── message-toast.animation.ts │ │ │ └── message-toast.token.ts │ │ ├── index.ts │ │ ├── message-toast.component.scss │ │ ├── message-toast.component.ts │ │ ├── message-toast.module.ts │ │ ├── message-toast.service.spec.ts │ │ ├── message-toast.service.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── provide-config.ts │ │ ├── ref │ │ │ └── message-toast.ref.ts │ │ └── toast-overlay-container.class.ts │ ├── micro-process-flow │ │ ├── components │ │ │ ├── micro-process-flow-icon │ │ │ │ ├── micro-process-flow-icon.component.html │ │ │ │ ├── micro-process-flow-icon.component.spec.ts │ │ │ │ └── micro-process-flow-icon.component.ts │ │ │ ├── micro-process-flow-item │ │ │ │ ├── micro-process-flow-item.component.html │ │ │ │ ├── micro-process-flow-item.component.spec.ts │ │ │ │ └── micro-process-flow-item.component.ts │ │ │ └── micro-process-flow │ │ │ │ ├── micro-process-flow.component.html │ │ │ │ ├── micro-process-flow.component.scss │ │ │ │ ├── micro-process-flow.component.spec.ts │ │ │ │ └── micro-process-flow.component.ts │ │ ├── index.ts │ │ ├── injection-tokens.ts │ │ ├── micro-process-flow-focusable-item.directive.spec.ts │ │ ├── micro-process-flow-focusable-item.directive.ts │ │ ├── micro-process-flow-intermediary-item.directive.spec.ts │ │ ├── micro-process-flow-intermediary-item.directive.ts │ │ ├── micro-process-flow.module.ts │ │ ├── mixins.scss │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── types.ts │ │ └── variables.scss │ ├── mobile-mode │ │ ├── filler-test.spec.ts │ │ ├── index.ts │ │ ├── mobile-control.interface.ts │ │ ├── mobile-mode-config.ts │ │ ├── mobile-mode.class.ts │ │ ├── ng-package.json │ │ └── project.json │ ├── multi-combobox │ │ ├── base-multi-combobox.class.ts │ │ ├── data-source │ │ │ ├── multi-combobox-data-source-parser.ts │ │ │ └── multi-combobox-data-source.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── mobile │ │ │ ├── mobile-multi-combobox.component.html │ │ │ ├── mobile-multi-combobox.component.scss │ │ │ ├── mobile-multi-combobox.component.spec.ts │ │ │ └── mobile-multi-combobox.component.ts │ │ ├── models │ │ │ ├── multi-combobox.interface.ts │ │ │ └── selection-change.event.ts │ │ ├── multi-announcer │ │ │ ├── multi-announcer.directive.spec.ts │ │ │ └── multi-announcer.directive.ts │ │ ├── multi-combobox-config.ts │ │ ├── multi-combobox.component.html │ │ ├── multi-combobox.component.scss │ │ ├── multi-combobox.component.spec.ts │ │ ├── multi-combobox.component.ts │ │ ├── multi-combobox.module.ts │ │ ├── multi-combobox.token.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ └── select-all-toggler │ │ │ ├── select-all-toggler.component.scss │ │ │ └── select-all-toggler.component.ts │ ├── multi-input │ │ ├── index.ts │ │ ├── multi-input-mobile │ │ │ ├── multi-input-mobile.component.html │ │ │ ├── multi-input-mobile.component.scss │ │ │ ├── multi-input-mobile.component.spec.ts │ │ │ ├── multi-input-mobile.component.ts │ │ │ └── multi-input-mobile.module.ts │ │ ├── multi-input.component.html │ │ ├── multi-input.component.scss │ │ ├── multi-input.component.spec.ts │ │ ├── multi-input.component.ts │ │ ├── multi-input.interface.ts │ │ ├── multi-input.module.ts │ │ ├── ng-package.json │ │ ├── pair-selection.model.ts │ │ └── project.json │ ├── nested-list │ │ ├── index.ts │ │ ├── nested-content │ │ │ ├── nested-list-content.directive.spec.ts │ │ │ └── nested-list-content.directive.ts │ │ ├── nested-item │ │ │ ├── nested-item.directive.spec.ts │ │ │ ├── nested-item.directive.ts │ │ │ ├── nested-item.interface.ts │ │ │ └── nested-item.service.ts │ │ ├── nested-link │ │ │ ├── nested-link.directive.spec.ts │ │ │ └── nested-link.directive.ts │ │ ├── nested-list-directives.spec.ts │ │ ├── nested-list-directives.ts │ │ ├── nested-list-keyboard.service.spec.ts │ │ ├── nested-list-keyboard.service.ts │ │ ├── nested-list-model.ts │ │ ├── nested-list-popover │ │ │ ├── nested-list-popover.component.html │ │ │ ├── nested-list-popover.component.scss │ │ │ ├── nested-list-popover.component.spec.ts │ │ │ ├── nested-list-popover.component.ts │ │ │ └── nested-list-popover.interface.ts │ │ ├── nested-list-state.service.ts │ │ ├── nested-list.module.ts │ │ ├── nested-list │ │ │ ├── nested-list.directive.spec.ts │ │ │ ├── nested-list.directive.ts │ │ │ └── nested-list.interface.ts │ │ ├── ng-package.json │ │ ├── prepared-nested-list │ │ │ ├── prepared-nested-list.component.html │ │ │ ├── prepared-nested-list.component.scss │ │ │ └── prepared-nested-list.component.ts │ │ └── project.json │ ├── ng-package.json │ ├── notification │ │ ├── directives │ │ │ ├── notification-footer-content.directive.spec.ts │ │ │ ├── notification-footer-content.directive.ts │ │ │ ├── notification-group-growing-item-title.directive.spec.ts │ │ │ ├── notification-group-growing-item-title.directive.ts │ │ │ ├── notification-group-header-title.directive.spec.ts │ │ │ ├── notification-group-header-title.directive.ts │ │ │ ├── notification-list.directive.spec.ts │ │ │ ├── notification-list.directive.ts │ │ │ ├── notification-message-strip-container.directive.spec.ts │ │ │ ├── notification-message-strip-container.directive.ts │ │ │ ├── notification-message-strip.directive.spec.ts │ │ │ ├── notification-message-strip.directive.ts │ │ │ ├── notification-paragraph.directive.spec.ts │ │ │ ├── notification-paragraph.directive.ts │ │ │ ├── notification-popover.directive.spec.ts │ │ │ ├── notification-popover.directive.ts │ │ │ ├── notification-separator.directive.spec.ts │ │ │ ├── notification-separator.directive.ts │ │ │ ├── notification-title.directive.spec.ts │ │ │ └── notification-title.directive.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── notification-actions │ │ │ ├── notification-actions.component.spec.ts │ │ │ └── notification-actions.component.ts │ │ ├── notification-body │ │ │ ├── notification-body.component.spec.ts │ │ │ └── notification-body.component.ts │ │ ├── notification-content │ │ │ ├── notification-content.component.spec.ts │ │ │ └── notification-content.component.ts │ │ ├── notification-footer │ │ │ ├── notification-footer.component.spec.ts │ │ │ └── notification-footer.component.ts │ │ ├── notification-group-growing-item │ │ │ ├── notification-group-growing-item.component.spec.ts │ │ │ └── notification-group-growing-item.component.ts │ │ ├── notification-group-header │ │ │ ├── notification-group-header.component.spec.ts │ │ │ └── notification-group-header.component.ts │ │ ├── notification-group-list │ │ │ ├── notification-group-list.component.spec.ts │ │ │ └── notification-group-list.component.ts │ │ ├── notification-group │ │ │ ├── notification-group.component.spec.ts │ │ │ └── notification-group.component.ts │ │ ├── notification-header │ │ │ ├── notification-header.component.spec.ts │ │ │ └── notification-header.component.ts │ │ ├── notification-link │ │ │ ├── notification-link.component.spec.ts │ │ │ └── notification-link.component.ts │ │ ├── notification-service │ │ │ ├── notification.service.spec.ts │ │ │ └── notification.service.ts │ │ ├── notification-utils │ │ │ ├── notification-config.ts │ │ │ ├── notification-container.ts │ │ │ ├── notification-group-base.ts │ │ │ └── notification-ref.ts │ │ ├── notification.module.ts │ │ ├── notification │ │ │ ├── notification.component.scss │ │ │ ├── notification.component.spec.ts │ │ │ └── notification.component.ts │ │ ├── project.json │ │ └── token.ts │ ├── object-attribute │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── object-attribute.component.html │ │ ├── object-attribute.component.scss │ │ ├── object-attribute.component.spec.ts │ │ ├── object-attribute.component.ts │ │ ├── object-attribute.module.ts │ │ └── project.json │ ├── object-identifier │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── object-identifier.component.scss │ │ ├── object-identifier.component.spec.ts │ │ ├── object-identifier.component.ts │ │ ├── object-identifier.module.ts │ │ └── project.json │ ├── object-marker │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── object-marker.component.scss │ │ ├── object-marker.component.spec.ts │ │ ├── object-marker.component.ts │ │ ├── object-marker.module.ts │ │ └── project.json │ ├── object-number │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── object-number.component.html │ │ ├── object-number.component.scss │ │ ├── object-number.component.spec.ts │ │ ├── object-number.component.ts │ │ ├── object-number.module.ts │ │ └── project.json │ ├── object-status │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── object-status.component.scss │ │ ├── object-status.component.spec.ts │ │ ├── object-status.component.ts │ │ ├── object-status.module.ts │ │ ├── project.json │ │ └── tokens.ts │ ├── overflow-layout │ │ ├── directives │ │ │ ├── overflow-expand.directive.ts │ │ │ ├── overflow-item-container-ref.directive.ts │ │ │ ├── overflow-item-container.directive.spec.ts │ │ │ ├── overflow-item-ref.directive.ts │ │ │ ├── overflow-layout-focusable-item.directive.ts │ │ │ ├── overflow-layout-item-container.directive.ts │ │ │ ├── overflow-layout-item.directive.ts │ │ │ └── overflow-layout-popover-content.directive.ts │ │ ├── index.ts │ │ ├── interfaces │ │ │ ├── overflow-container.interface.ts │ │ │ ├── overflow-expand.interface.ts │ │ │ ├── overflow-focusable-item.interface.ts │ │ │ ├── overflow-item-ref.interface.ts │ │ │ ├── overflow-item.interface.ts │ │ │ └── overflow-popover-content.interface.ts │ │ ├── ng-package.json │ │ ├── overflow-layout.component.html │ │ ├── overflow-layout.component.scss │ │ ├── overflow-layout.component.spec.ts │ │ ├── overflow-layout.component.ts │ │ ├── overflow-layout.module.ts │ │ ├── overflow-layout.service.ts │ │ ├── project.json │ │ └── tokens │ │ │ ├── overflow-container.token.ts │ │ │ ├── overflow-expand.token.ts │ │ │ ├── overflow-focusable-item.token.ts │ │ │ ├── overflow-item-ref.token.ts │ │ │ └── overflow-item.token.ts │ ├── package.json │ ├── pagination │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── pagination.component.html │ │ ├── pagination.component.scss │ │ ├── pagination.component.spec.ts │ │ ├── pagination.component.ts │ │ ├── pagination.model.ts │ │ ├── pagination.module.ts │ │ ├── pagination.service.spec.ts │ │ ├── pagination.service.ts │ │ └── project.json │ ├── panel │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── panel-content │ │ │ ├── panel-content.directive.spec.ts │ │ │ └── panel-content.directive.ts │ │ ├── panel-title │ │ │ ├── panel-title.directive.spec.ts │ │ │ └── panel-title.directive.ts │ │ ├── panel.component.html │ │ ├── panel.component.scss │ │ ├── panel.component.spec.ts │ │ ├── panel.component.ts │ │ ├── panel.module.ts │ │ └── project.json │ ├── popover │ │ ├── base │ │ │ └── base-popover.class.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── popover-body.directive.ts │ │ ├── popover-body │ │ │ ├── popover-body-directives │ │ │ │ ├── popover-body-footer.directive.spec.ts │ │ │ │ ├── popover-body-footer.directive.ts │ │ │ │ ├── popover-body-header.directive.spec.ts │ │ │ │ └── popover-body-header.directive.ts │ │ │ ├── popover-body.component.html │ │ │ ├── popover-body.component.scss │ │ │ ├── popover-body.component.spec.ts │ │ │ └── popover-body.component.ts │ │ ├── popover-child-content.interface.ts │ │ ├── popover-container │ │ │ └── popover-container.directive.ts │ │ ├── popover-control │ │ │ ├── popover-control.component.spec.ts │ │ │ └── popover-control.component.ts │ │ ├── popover-mobile │ │ │ ├── popover-mobile.component.html │ │ │ ├── popover-mobile.component.spec.ts │ │ │ ├── popover-mobile.component.ts │ │ │ └── popover-mobile.module.ts │ │ ├── popover-service │ │ │ ├── popover.service.spec.ts │ │ │ └── popover.service.ts │ │ ├── popover-trigger.directive.ts │ │ ├── popover.component.html │ │ ├── popover.component.spec.ts │ │ ├── popover.component.ts │ │ ├── popover.interface.ts │ │ ├── popover.module.ts │ │ ├── project.json │ │ └── tokens.ts │ ├── product-switch │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── product-switch-body │ │ │ ├── product-switch-body.component.html │ │ │ ├── product-switch-body.component.scss │ │ │ ├── product-switch-body.component.spec.ts │ │ │ ├── product-switch-body.component.ts │ │ │ └── product-switch.item.ts │ │ ├── product-switch-button.directive.ts │ │ ├── product-switch.module.ts │ │ ├── product-switch │ │ │ ├── product-switch.component.html │ │ │ ├── product-switch.component.spec.ts │ │ │ └── product-switch.component.ts │ │ ├── project.json │ │ └── tokens.ts │ ├── progress-indicator │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── progress-indicator.component.html │ │ ├── progress-indicator.component.scss │ │ ├── progress-indicator.component.spec.ts │ │ ├── progress-indicator.component.ts │ │ ├── progress-indicator.module.ts │ │ └── project.json │ ├── project.json │ ├── quick-view │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── quick-view-group-item-content │ │ │ ├── quick-view-group-item-content-element.directive.spec.ts │ │ │ ├── quick-view-group-item-content-element.directive.ts │ │ │ ├── quick-view-group-item-content.component.spec.ts │ │ │ └── quick-view-group-item-content.component.ts │ │ ├── quick-view-group-item-label │ │ │ ├── quick-view-group-item-label.component.html │ │ │ ├── quick-view-group-item-label.component.spec.ts │ │ │ └── quick-view-group-item-label.component.ts │ │ ├── quick-view-group-item │ │ │ ├── quick-view-group-item.component.html │ │ │ ├── quick-view-group-item.component.spec.ts │ │ │ └── quick-view-group-item.component.ts │ │ ├── quick-view-group-title │ │ │ ├── quick-view-group-title.component.html │ │ │ ├── quick-view-group-title.component.spec.ts │ │ │ └── quick-view-group-title.component.ts │ │ ├── quick-view-group │ │ │ ├── quick-view-group.component.html │ │ │ ├── quick-view-group.component.spec.ts │ │ │ └── quick-view-group.component.ts │ │ ├── quick-view-subheader-subtitle │ │ │ ├── quick-view-subheader-subtitle.component.html │ │ │ ├── quick-view-subheader-subtitle.component.spec.ts │ │ │ └── quick-view-subheader-subtitle.component.ts │ │ ├── quick-view-subheader-title │ │ │ ├── quick-view-subheader-title.component.html │ │ │ ├── quick-view-subheader-title.component.spec.ts │ │ │ └── quick-view-subheader-title.component.ts │ │ ├── quick-view-subheader │ │ │ ├── quick-view-subheader.component.html │ │ │ ├── quick-view-subheader.component.spec.ts │ │ │ └── quick-view-subheader.component.ts │ │ ├── quick-view-title │ │ │ ├── quick-view-title.component.html │ │ │ ├── quick-view-title.component.spec.ts │ │ │ └── quick-view-title.component.ts │ │ ├── quick-view.module.ts │ │ └── quick-view │ │ │ ├── quick-view.component.html │ │ │ ├── quick-view.component.scss │ │ │ ├── quick-view.component.spec.ts │ │ │ └── quick-view.component.ts │ ├── radio │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── radio-button │ │ │ ├── radio-button-reactive-form.component.spec.ts │ │ │ ├── radio-button.component.html │ │ │ ├── radio-button.component.scss │ │ │ ├── radio-button.component.spec.ts │ │ │ └── radio-button.component.ts │ │ ├── radio.module.ts │ │ └── tokens.ts │ ├── rating-indicator │ │ ├── components │ │ │ ├── rating-indicator.component.html │ │ │ ├── rating-indicator.component.scss │ │ │ ├── rating-indicator.component.spec.ts │ │ │ └── rating-indicator.component.ts │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── pipes │ │ │ ├── index.ts │ │ │ └── rating-star-label.pipe.ts │ │ ├── project.json │ │ └── rating-indicator.module.ts │ ├── resizable-card-layout │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── resizable-card-layout.module.ts │ │ └── resizable-card-layout │ │ │ ├── resizable-card-item │ │ │ ├── resizable-card-item.component.html │ │ │ ├── resizable-card-item.component.scss │ │ │ ├── resizable-card-item.component.spec.ts │ │ │ └── resizable-card-item.component.ts │ │ │ ├── resizable-card-layout.component.html │ │ │ ├── resizable-card-layout.component.scss │ │ │ ├── resizable-card-layout.component.spec.ts │ │ │ └── resizable-card-layout.component.ts │ ├── schematics │ │ ├── add-animations │ │ │ ├── add-animations.spec.ts │ │ │ ├── index.ts │ │ │ └── schema.json │ │ ├── add-dependencies │ │ │ ├── add-dependencies.spec.ts │ │ │ ├── index.ts │ │ │ └── schema.json │ │ ├── add-styles │ │ │ ├── add-styles.spec.ts │ │ │ ├── index.ts │ │ │ └── schema.json │ │ ├── add-theming │ │ │ ├── add-theming.spec.ts │ │ │ ├── index.ts │ │ │ └── schema.json │ │ ├── collection.json │ │ ├── jest.config.ts │ │ ├── models │ │ │ └── schema.ts │ │ ├── ng-add │ │ │ ├── index.ts │ │ │ └── schema.json │ │ ├── project.json │ │ ├── testing-utils │ │ │ └── create-clean-application.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── utils │ │ │ ├── calls-providers-function.ts │ │ │ ├── file-utils.ts │ │ │ ├── main-ts-file-path.ts │ │ │ ├── ng-module-utils.ts │ │ │ ├── one-time-packages.ts │ │ │ ├── package-utils.ts │ │ │ └── workspace.ts │ ├── scroll-spy │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── scroll-spy.directive.spec.ts │ │ ├── scroll-spy.directive.ts │ │ └── scroll-spy.module.ts │ ├── scrollbar │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── scrollbar.directive.spec.ts │ │ ├── scrollbar.directive.ts │ │ └── scrollbar.module.ts │ ├── segmented-button │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── segmented-button.component.scss │ │ ├── segmented-button.component.spec.ts │ │ ├── segmented-button.component.ts │ │ └── segmented-button.module.ts │ ├── select │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── option │ │ │ ├── option.component.html │ │ │ ├── option.component.spec.ts │ │ │ └── option.component.ts │ │ ├── options.interface.ts │ │ ├── project.json │ │ ├── select-key-manager.service.spec.ts │ │ ├── select-key-manager.service.ts │ │ ├── select-mobile │ │ │ ├── select-mobile.component.html │ │ │ ├── select-mobile.component.spec.ts │ │ │ ├── select-mobile.component.ts │ │ │ └── select-mobile.module.ts │ │ ├── select.component.html │ │ ├── select.component.scss │ │ ├── select.component.spec.ts │ │ ├── select.component.ts │ │ ├── select.interface.ts │ │ └── select.module.ts │ ├── settings │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── settings-container │ │ │ ├── settings-container.component.html │ │ │ ├── settings-container.component.scss │ │ │ ├── settings-container.component.spec.ts │ │ │ └── settings-container.component.ts │ │ ├── settings-content-container │ │ │ ├── settings-content-container.directive.spec.ts │ │ │ └── settings-content-container.directive.ts │ │ ├── settings-content │ │ │ ├── settings-content.directive.spec.ts │ │ │ └── settings-content.directive.ts │ │ ├── settings-detail-area │ │ │ ├── settings-detail-area.directive.spec.ts │ │ │ └── settings-detail-area.directive.ts │ │ ├── settings-dialog-body │ │ │ ├── settings-dialog-body.directive.spec.ts │ │ │ └── settings-dialog-body.directive.ts │ │ ├── settings-dialog-content │ │ │ ├── settings-dialog-content.directive.spec.ts │ │ │ └── settings-dialog-content.directive.ts │ │ ├── settings-header-button │ │ │ ├── settings-header-button.directive.spec.ts │ │ │ └── settings-header-button.directive.ts │ │ ├── settings-header │ │ │ ├── settings-header.directive.spec.ts │ │ │ └── settings-header.directive.ts │ │ ├── settings-list-area │ │ │ ├── settings-list-area.directive.spec.ts │ │ │ └── settings-list-area.directive.ts │ │ ├── settings-list-container │ │ │ ├── settings-list-container.directive.spec.ts │ │ │ └── settings-list-container.directive.ts │ │ ├── settings-profile-card-name │ │ │ ├── settings-profile-card-name.directive.spec.ts │ │ │ └── settings-profile-card-name.directive.ts │ │ ├── settings-profile-card-subline │ │ │ ├── settings-profile-card-subline.directive.spec.ts │ │ │ └── settings-profile-card-subline.directive.ts │ │ ├── settings-profile-card │ │ │ ├── settings-profile-card.directive.spec.ts │ │ │ └── settings-profile-card.directive.ts │ │ ├── settings.component.scss │ │ ├── settings.component.spec.ts │ │ ├── settings.component.ts │ │ └── settings.module.ts │ ├── shared │ │ ├── filler-test.spec.ts │ │ ├── index.ts │ │ ├── interfaces │ │ │ ├── popover-position.ts │ │ │ ├── search-component.interface.ts │ │ │ ├── special-day-rule.ts │ │ │ └── tablist.interface.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── services │ │ │ └── value-state-message.service.ts │ │ ├── tokens │ │ │ ├── dynamic-page-header.token.ts │ │ │ └── tabs.token.ts │ │ └── types │ │ │ └── heading-level.ts │ ├── shellbar │ │ ├── index.ts │ │ ├── model │ │ │ ├── shellbar-menu-item.ts │ │ │ ├── shellbar-sizes.ts │ │ │ ├── shellbar-user-menu.ts │ │ │ ├── shellbar-user.ts │ │ │ └── shellbar.ts │ │ ├── ng-package.json │ │ ├── product-menu │ │ │ ├── product-menu.component.html │ │ │ ├── product-menu.component.scss │ │ │ ├── product-menu.component.spec.ts │ │ │ └── product-menu.component.ts │ │ ├── project.json │ │ ├── shellbar-action │ │ │ ├── shellbar-action.component.html │ │ │ ├── shellbar-action.component.spec.ts │ │ │ └── shellbar-action.component.ts │ │ ├── shellbar-actions-mobile │ │ │ ├── shellbar-actions-mobile.component.html │ │ │ └── shellbar-actions-mobile.component.ts │ │ ├── shellbar-actions │ │ │ ├── shellbar-actions.component.html │ │ │ ├── shellbar-actions.component.spec.ts │ │ │ └── shellbar-actions.component.ts │ │ ├── shellbar-branding │ │ │ └── shellbar-branding.component.ts │ │ ├── shellbar-context-area │ │ │ └── shellbar-context-area.component.ts │ │ ├── shellbar-hide-priority.directive.ts │ │ ├── shellbar-logo │ │ │ ├── shellbar-logo.component.spec.ts │ │ │ └── shellbar-logo.component.ts │ │ ├── shellbar-separator │ │ │ └── shellbar-separator.component.ts │ │ ├── shellbar-sidenav.directive.spec.ts │ │ ├── shellbar-sidenav.directive.ts │ │ ├── shellbar-subtitle │ │ │ ├── shellbar-subtitle.component.html │ │ │ ├── shellbar-subtitle.component.spec.ts │ │ │ └── shellbar-subtitle.component.ts │ │ ├── shellbar-title │ │ │ ├── shellbar-title.component.html │ │ │ ├── shellbar-title.component.spec.ts │ │ │ └── shellbar-title.component.ts │ │ ├── shellbar.component.html │ │ ├── shellbar.component.scss │ │ ├── shellbar.component.spec.ts │ │ ├── shellbar.component.ts │ │ ├── shellbar.module.ts │ │ ├── tokens.ts │ │ └── user-menu │ │ │ ├── shellbar-user-menu-button.directive.ts │ │ │ ├── shellbar-user-menu.component.html │ │ │ ├── shellbar-user-menu.component.spec.ts │ │ │ └── shellbar-user-menu.component.ts │ ├── side-navigation │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── side-navigation-main.directive.spec.ts │ │ ├── side-navigation-main.directive.ts │ │ ├── side-navigation-model.ts │ │ ├── side-navigation-utility.directive.spec.ts │ │ ├── side-navigation-utility.directive.ts │ │ ├── side-navigation.component.html │ │ ├── side-navigation.component.scss │ │ ├── side-navigation.component.spec.ts │ │ ├── side-navigation.component.ts │ │ ├── side-navigation.interface.ts │ │ └── side-navigation.module.ts │ ├── skeleton │ │ ├── components │ │ │ ├── skeleton.component.html │ │ │ ├── skeleton.component.scss │ │ │ ├── skeleton.component.spec.ts │ │ │ └── skeleton.component.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── public-api.ts │ │ └── skeleton.module.ts │ ├── slider │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── slider-position.directive.ts │ │ ├── slider.component.html │ │ ├── slider.component.scss │ │ ├── slider.component.spec.ts │ │ ├── slider.component.ts │ │ ├── slider.model.ts │ │ └── slider.module.ts │ ├── split-button │ │ ├── index.ts │ │ ├── main-action.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── split-button-utils │ │ │ └── split-button.directives.ts │ │ ├── split-button.component.html │ │ ├── split-button.component.scss │ │ ├── split-button.component.spec.ts │ │ ├── split-button.component.ts │ │ └── split-button.module.ts │ ├── status-indicator │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── status-indicator.component.html │ │ ├── status-indicator.component.scss │ │ ├── status-indicator.component.spec.ts │ │ ├── status-indicator.component.ts │ │ └── status-indicator.module.ts │ ├── step-input │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── step-input.component.html │ │ ├── step-input.component.scss │ │ ├── step-input.component.spec.ts │ │ ├── step-input.component.ts │ │ └── step-input.module.ts │ ├── styles │ │ └── fundamental-ngx-core.css │ ├── switch │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── switch.component.html │ │ ├── switch.component.scss │ │ ├── switch.component.spec.ts │ │ ├── switch.component.ts │ │ └── switch.module.ts │ ├── table │ │ ├── directives │ │ │ ├── table-body.directive.spec.ts │ │ │ ├── table-body.directive.ts │ │ │ ├── table-cell.directive.spec.ts │ │ │ ├── table-cell.directive.ts │ │ │ ├── table-container.directive.ts │ │ │ ├── table-fixed.directive.ts │ │ │ ├── table-footer.directive.spec.ts │ │ │ ├── table-footer.directive.ts │ │ │ ├── table-header.directive.spec.ts │ │ │ ├── table-header.directive.ts │ │ │ ├── table-icon.directive.spec.ts │ │ │ ├── table-icon.directive.ts │ │ │ ├── table-inner.directive.spec.ts │ │ │ ├── table-inner.directive.ts │ │ │ ├── table-popover.directive.spec.ts │ │ │ ├── table-popover.directive.ts │ │ │ ├── table-responsive-wrapper.directive.ts │ │ │ ├── table-row.directive.spec.ts │ │ │ ├── table-row.directive.ts │ │ │ ├── table-status-indicator.directive.ts │ │ │ ├── table-text.directive.spec.ts │ │ │ └── table-text.directive.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── table-wrapper.component.spec.ts │ │ ├── table-wrapper.component.ts │ │ ├── table.component.scss │ │ ├── table.component.spec.ts │ │ ├── table.component.ts │ │ ├── table.module.ts │ │ ├── table.service.spec.ts │ │ └── table.service.ts │ ├── tabs │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── tab-item-expand │ │ │ ├── tab-item-expand.component.html │ │ │ ├── tab-item-expand.component.scss │ │ │ └── tab-item-expand.component.ts │ │ ├── tab-item │ │ │ ├── tab-item.directive.spec.ts │ │ │ └── tab-item.directive.ts │ │ ├── tab-link │ │ │ ├── tab-link.directive.spec.ts │ │ │ └── tab-link.directive.ts │ │ ├── tab-list-component.interface.ts │ │ ├── tab-list.component.html │ │ ├── tab-list.component.scss │ │ ├── tab-list.component.spec.ts │ │ ├── tab-list.component.ts │ │ ├── tab-list.token.ts │ │ ├── tab-nav │ │ │ ├── tab-nav.component.scss │ │ │ ├── tab-nav.component.spec.ts │ │ │ └── tab-nav.component.ts │ │ ├── tab-panel │ │ │ ├── tab-panel.component.html │ │ │ └── tab-panel.component.ts │ │ ├── tab-utils │ │ │ ├── tab-directives.component.spec.ts │ │ │ ├── tab-directives.ts │ │ │ └── tab-info.class.ts │ │ └── tabs.module.ts │ ├── test-setup.ts │ ├── tests │ │ ├── element-ref-mock.class.ts │ │ ├── event-objects.ts │ │ ├── filler-test.spec.ts │ │ ├── index.ts │ │ ├── injection-tokens.ts │ │ ├── mobile-mode-view-elements.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ └── when-stable.ts │ ├── text │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── text.component.html │ │ ├── text.component.scss │ │ ├── text.component.spec.ts │ │ ├── text.component.ts │ │ └── text.module.ts │ ├── theming │ │ ├── config.ts │ │ ├── index.ts │ │ ├── interfaces │ │ │ ├── theme.interface.ts │ │ │ └── theming-config.interface.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── provide-theming.ts │ │ ├── standard-themes.ts │ │ ├── theming-initializer.ts │ │ ├── theming.module.ts │ │ ├── theming.service.spec.ts │ │ ├── theming.service.ts │ │ └── tokens.ts │ ├── tile │ │ ├── directives │ │ │ ├── numeric-content.directives.spec.ts │ │ │ ├── numeric-content.directives.ts │ │ │ ├── tile.directives.spec.ts │ │ │ └── tile.directives.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── tile.component.html │ │ ├── tile.component.scss │ │ ├── tile.component.spec.ts │ │ ├── tile.component.ts │ │ └── tile.module.ts │ ├── time-picker │ │ ├── errors.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── time-picker.component.html │ │ ├── time-picker.component.scss │ │ ├── time-picker.component.spec.ts │ │ ├── time-picker.component.ts │ │ └── time-picker.module.ts │ ├── time │ │ ├── errors.ts │ │ ├── index.ts │ │ ├── models.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── time-column │ │ │ ├── time-column-config.ts │ │ │ ├── time-column.component.html │ │ │ ├── time-column.component.scss │ │ │ ├── time-column.component.spec.ts │ │ │ └── time-column.component.ts │ │ ├── time.component.html │ │ ├── time.component.scss │ │ ├── time.component.spec.ts │ │ ├── time.component.ts │ │ └── time.module.ts │ ├── timeline │ │ ├── components │ │ │ ├── timeline-node-body │ │ │ │ ├── timeline-node-body.component.html │ │ │ │ ├── timeline-node-body.component.spec.ts │ │ │ │ └── timeline-node-body.component.ts │ │ │ ├── timeline-node-footer │ │ │ │ └── timeline-node-footer.component.ts │ │ │ ├── timeline-node-header │ │ │ │ ├── timeline-node-header-info │ │ │ │ │ └── timeline-node-header-info.directive.ts │ │ │ │ └── timeline-node-header.directive.ts │ │ │ └── timeline-node │ │ │ │ ├── timeline-node-component.interface.ts │ │ │ │ ├── timeline-node.component.html │ │ │ │ ├── timeline-node.component.spec.ts │ │ │ │ └── timeline-node.component.ts │ │ ├── directives │ │ │ ├── class-bindings │ │ │ │ ├── timeline-header-info-sub-title.directive.spec.ts │ │ │ │ ├── timeline-header-info-sub-title.directive.ts │ │ │ │ ├── timeline-node-header-info-text.directive.spec.ts │ │ │ │ ├── timeline-node-header-info-text.directive.ts │ │ │ │ ├── timeline-node-header-info-title.directive.spec.ts │ │ │ │ └── timeline-node-header-info-title.directive.ts │ │ │ ├── timeline-first-list-outlet.directive.ts │ │ │ ├── timeline-node-def.directive.ts │ │ │ └── timeline-second-list-outlet.directive.ts │ │ ├── fundamental-styles │ │ │ ├── index.scss │ │ │ └── mixins.scss │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── services │ │ │ ├── position-strategies │ │ │ │ ├── base-strategy.ts │ │ │ │ ├── horizontal-double-sides-strategy.ts │ │ │ │ ├── horizontal-single-side-strategy.ts │ │ │ │ ├── position-strategy-factory.ts │ │ │ │ ├── vertical-double-sides-strategy.ts │ │ │ │ └── vertical-single-side-strategy.ts │ │ │ ├── timeline-position-control.service.spec.ts │ │ │ └── timeline-position-control.service.ts │ │ ├── timeline.component.html │ │ ├── timeline.component.scss │ │ ├── timeline.component.spec.ts │ │ ├── timeline.component.ts │ │ ├── timeline.module.ts │ │ └── types │ │ │ └── index.ts │ ├── title │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── title.component.scss │ │ ├── title.component.spec.ts │ │ ├── title.component.ts │ │ └── title.module.ts │ ├── token │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── token-input.directive.ts │ │ ├── token.component.html │ │ ├── token.component.scss │ │ ├── token.component.spec.ts │ │ ├── token.component.ts │ │ ├── token.module.ts │ │ ├── tokenizer.component.html │ │ ├── tokenizer.component.scss │ │ ├── tokenizer.component.spec.ts │ │ └── tokenizer.component.ts │ ├── toolbar │ │ ├── abstract-toolbar-item.class.ts │ │ ├── deprecated-toolbar-size.directive.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── tokens.ts │ │ ├── toolbar-form-label.directive.ts │ │ ├── toolbar-item.directive.ts │ │ ├── toolbar-label.directive.ts │ │ ├── toolbar-overflow-button-menu.directive.ts │ │ ├── toolbar-overflow-button.directive.ts │ │ ├── toolbar-separator.component.ts │ │ ├── toolbar-spacer.directive.ts │ │ ├── toolbar.component.html │ │ ├── toolbar.component.scss │ │ ├── toolbar.component.spec.ts │ │ ├── toolbar.component.ts │ │ └── toolbar.module.ts │ ├── tree │ │ ├── components │ │ │ └── tree-item │ │ │ │ ├── tree-item.component.html │ │ │ │ ├── tree-item.component.spec.ts │ │ │ │ └── tree-item.component.ts │ │ ├── data-source │ │ │ ├── tree-data-source-parser.ts │ │ │ └── tree-data-source.ts │ │ ├── directives │ │ │ ├── tree-item-button.directive.ts │ │ │ ├── tree-item-def.directive.ts │ │ │ ├── tree-item-icon.directive.ts │ │ │ └── tree-item.directive.ts │ │ ├── index.ts │ │ ├── models │ │ │ ├── base-tree-item.class.ts │ │ │ ├── selection-type.ts │ │ │ ├── tree-item-def-context.ts │ │ │ └── tree-item.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── tokens.ts │ │ ├── tree.component.html │ │ ├── tree.component.scss │ │ ├── tree.component.spec.ts │ │ ├── tree.component.ts │ │ ├── tree.module.ts │ │ ├── tree.service.spec.ts │ │ └── tree.service.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ ├── tsconfig.typedoc.json │ ├── upload-collection │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── upload-collection-button-group │ │ │ ├── upload-collection-button-group.component.html │ │ │ ├── upload-collection-button-group.component.spec.ts │ │ │ └── upload-collection-button-group.component.ts │ │ ├── upload-collection-form-item │ │ │ ├── upload-collection-form-item.component.html │ │ │ ├── upload-collection-form-item.component.spec.ts │ │ │ └── upload-collection-form-item.component.ts │ │ ├── upload-collection-item.directive.spec.ts │ │ ├── upload-collection-item.directive.ts │ │ ├── upload-collection-simple.directives.ts │ │ ├── upload-collection.component.scss │ │ ├── upload-collection.component.spec.ts │ │ ├── upload-collection.component.ts │ │ └── upload-collection.module.ts │ ├── user-menu │ │ ├── components │ │ │ ├── user-menu-body.component.html │ │ │ ├── user-menu-body.component.spec.ts │ │ │ ├── user-menu-body.component.ts │ │ │ ├── user-menu-content-container.component.spec.ts │ │ │ ├── user-menu-content-container.component.ts │ │ │ ├── user-menu-control.component.spec.ts │ │ │ ├── user-menu-control.component.ts │ │ │ ├── user-menu-footer.component.spec.ts │ │ │ ├── user-menu-footer.component.ts │ │ │ ├── user-menu-list-item.component.html │ │ │ ├── user-menu-list-item.component.ts │ │ │ ├── user-menu-list.component.spec.ts │ │ │ ├── user-menu-list.component.ts │ │ │ ├── user-menu-sublist.component.spec.ts │ │ │ └── user-menu-sublist.component.ts │ │ ├── directives │ │ │ ├── user-menu-control-element.directive.spec.ts │ │ │ ├── user-menu-control-element.directive.ts │ │ │ ├── user-menu-header-container.directive.spec.ts │ │ │ ├── user-menu-header-container.directive.ts │ │ │ ├── user-menu-header.directive.spec.ts │ │ │ ├── user-menu-header.directive.ts │ │ │ ├── user-menu-subline.directive.spec.ts │ │ │ ├── user-menu-subline.directive.ts │ │ │ ├── user-menu-user-name.directive.spec.ts │ │ │ └── user-menu-user-name.directive.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── user-menu.component.html │ │ ├── user-menu.component.scss │ │ ├── user-menu.component.spec.ts │ │ ├── user-menu.component.ts │ │ └── user-menu.module.ts │ ├── vertical-navigation │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── vertical-navigation-group-header.directive.ts │ │ ├── vertical-navigation-main-navigation.component.ts │ │ ├── vertical-navigation.component.html │ │ ├── vertical-navigation.component.scss │ │ ├── vertical-navigation.component.spec.ts │ │ ├── vertical-navigation.component.ts │ │ └── vertical-navigation.module.ts │ └── wizard │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── models │ │ └── wizard-step.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── wizard-content │ │ ├── wizard-content.component.html │ │ ├── wizard-content.component.scss │ │ ├── wizard-content.component.spec.ts │ │ └── wizard-content.component.ts │ │ ├── wizard-injection-token.ts │ │ ├── wizard-navigation │ │ ├── wizard-navigation.component.html │ │ ├── wizard-navigation.component.spec.ts │ │ └── wizard-navigation.component.ts │ │ ├── wizard-next-step │ │ ├── wizard-next-step.component.html │ │ ├── wizard-next-step.component.spec.ts │ │ └── wizard-next-step.component.ts │ │ ├── wizard-progress-bar │ │ └── wizard-progress-bar.directive.ts │ │ ├── wizard-step-indicator │ │ ├── wizard-step-indicator.component.html │ │ ├── wizard-step-indicator.component.spec.ts │ │ └── wizard-step-indicator.component.ts │ │ ├── wizard-step │ │ ├── wizard-step.component.html │ │ ├── wizard-step.component.spec.ts │ │ └── wizard-step.component.ts │ │ ├── wizard.component.html │ │ ├── wizard.component.scss │ │ ├── wizard.component.spec.ts │ │ ├── wizard.component.ts │ │ ├── wizard.module.ts │ │ ├── wizard.service.spec.ts │ │ └── wizard.service.ts ├── cx │ ├── CHANGELOG.md │ ├── README.md │ ├── eslint.config.js │ ├── fundamental-ngx.module.ts │ ├── index.ts │ ├── jest.config.ts │ ├── nested-list │ │ ├── index.ts │ │ ├── nested-content │ │ │ ├── nested-list-content.directive.spec.ts │ │ │ └── nested-list-content.directive.ts │ │ ├── nested-item │ │ │ ├── nested-item.component.ts │ │ │ ├── nested-item.interface.ts │ │ │ └── nested-item.service.ts │ │ ├── nested-link │ │ │ ├── nested-link.component.spec.ts │ │ │ └── nested-link.component.ts │ │ ├── nested-list-directives.spec.ts │ │ ├── nested-list-directives.ts │ │ ├── nested-list-keyboard.service.spec.ts │ │ ├── nested-list-keyboard.service.ts │ │ ├── nested-list-model.ts │ │ ├── nested-list-popover │ │ │ ├── nested-list-popover.component.html │ │ │ ├── nested-list-popover.component.scss │ │ │ ├── nested-list-popover.component.spec.ts │ │ │ ├── nested-list-popover.component.ts │ │ │ └── nested-list-popover.interface.ts │ │ ├── nested-list-state.service.ts │ │ ├── nested-list.module.ts │ │ ├── nested-list │ │ │ ├── nested-list.component.spec.ts │ │ │ ├── nested-list.component.ts │ │ │ └── nested-list.interface.ts │ │ ├── ng-package.json │ │ ├── prepared-nested-list │ │ │ ├── prepared-nested-list.component.html │ │ │ ├── prepared-nested-list.component.spec.ts │ │ │ └── prepared-nested-list.component.ts │ │ ├── project.json │ │ └── test-setup.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── schematics │ │ ├── collection.json │ │ ├── ng-add │ │ │ ├── index.ts │ │ │ ├── schema.json │ │ │ └── schema.ts │ │ ├── project.json │ │ ├── tsconfig.json │ │ └── utils │ │ │ └── ng-module-utils.ts │ ├── side-navigation │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── side-navigation-button.directive.ts │ │ ├── side-navigation-main.component.ts │ │ ├── side-navigation-model.ts │ │ ├── side-navigation-utility.directive.spec.ts │ │ ├── side-navigation-utility.directive.ts │ │ ├── side-navigation.component.html │ │ ├── side-navigation.component.scss │ │ ├── side-navigation.component.spec.ts │ │ ├── side-navigation.component.ts │ │ ├── side-navigation.module.ts │ │ └── test-setup.ts │ ├── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ └── tsconfig.typedoc.json ├── datetime-adapter │ ├── CHANGELOG.md │ ├── README.md │ ├── eslint.config.js │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── dayjs-datetime-adapter.module.ts │ │ │ ├── dayjs-datetime-adapter.spec.ts │ │ │ ├── dayjs-datetime-adapter.ts │ │ │ └── dayjs-datetime-formats.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── docs │ ├── btp │ │ ├── api-files.ts │ │ ├── button │ │ │ ├── button-docs.component.html │ │ │ ├── button-docs.component.ts │ │ │ ├── button-header │ │ │ │ ├── button-header.component.html │ │ │ │ └── button-header.component.ts │ │ │ ├── examples │ │ │ │ ├── nested-example.component.ts │ │ │ │ └── tool-header-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── docs-data.json │ │ ├── docs-routes.ts │ │ ├── eslint.config.js │ │ ├── index.ts │ │ ├── navigation │ │ │ ├── examples │ │ │ │ ├── basic-example │ │ │ │ │ ├── navigation-basic-example.component.html │ │ │ │ │ └── navigation-basic-example.component.ts │ │ │ │ ├── desktop │ │ │ │ │ ├── desktop.component.html │ │ │ │ │ └── desktop.component.ts │ │ │ │ ├── overlay │ │ │ │ │ ├── overlay.component.html │ │ │ │ │ └── overlay.component.ts │ │ │ │ ├── parent-item-link │ │ │ │ │ ├── navigation-parent-item-link.component.html │ │ │ │ │ └── navigation-parent-item-link.component.ts │ │ │ │ └── selection-mode │ │ │ │ │ ├── selection-mode.component.html │ │ │ │ │ └── selection-mode.component.ts │ │ │ ├── index.ts │ │ │ ├── navigation-docs.component.html │ │ │ ├── navigation-docs.component.ts │ │ │ ├── navigation-header │ │ │ │ ├── navigation-header.component.html │ │ │ │ └── navigation-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── project.json │ │ ├── search-field │ │ │ ├── examples │ │ │ │ └── basic-example │ │ │ │ │ ├── search-field-basic-example.component.html │ │ │ │ │ └── search-field-basic-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── search-field-docs.component.html │ │ │ ├── search-field-docs.component.ts │ │ │ ├── search-field-header │ │ │ │ ├── search-field-header.component.html │ │ │ │ └── search-field-header.component.ts │ │ │ └── tsconfig.json │ │ ├── splitter │ │ │ ├── e2e │ │ │ │ ├── splitter.e2e-spec.ts │ │ │ │ ├── spltiller.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── api │ │ │ │ │ ├── splitter-api-example.component.html │ │ │ │ │ └── splitter-api-example.component.ts │ │ │ │ ├── default │ │ │ │ │ ├── splitter-default-example.component.html │ │ │ │ │ └── splitter-default-example.component.ts │ │ │ │ ├── index.ts │ │ │ │ └── required-parent-width │ │ │ │ │ ├── splitter-required-parent-width-example.component.html │ │ │ │ │ └── splitter-required-parent-width-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── splitter-docs.component.html │ │ │ ├── splitter-docs.component.ts │ │ │ ├── splitter-header │ │ │ │ ├── splitter-header.component.html │ │ │ │ └── splitter-header.component.ts │ │ │ └── tsconfig.json │ │ ├── tool-header │ │ │ ├── examples │ │ │ │ ├── auto-mode-example │ │ │ │ │ ├── auto-mode-example.component.html │ │ │ │ │ └── auto-mode-example.component.ts │ │ │ │ ├── basic-example │ │ │ │ │ ├── tool-header-basic-example.component.html │ │ │ │ │ └── tool-header-basic-example.component.ts │ │ │ │ ├── custom-logo-example │ │ │ │ │ └── custom-logo-example.component.ts │ │ │ │ ├── menu-button-example │ │ │ │ │ └── menu-button-example.component.ts │ │ │ │ ├── product-switch-example │ │ │ │ │ └── product-switch-example.component.ts │ │ │ │ └── usage-with-layout-example │ │ │ │ │ ├── usage-with-layout-example.component.html │ │ │ │ │ └── usage-with-layout-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── tool-header-docs.component.html │ │ │ ├── tool-header-docs.component.ts │ │ │ ├── tool-header-header │ │ │ │ ├── tool-header-header.component.html │ │ │ │ └── tool-header-header.component.ts │ │ │ └── tsconfig.json │ │ ├── tool-layout │ │ │ ├── examples │ │ │ │ ├── basic-example │ │ │ │ │ ├── tool-layout-basic-example.component.html │ │ │ │ │ └── tool-layout-basic-example.component.ts │ │ │ │ ├── phone-example │ │ │ │ │ ├── tool-layout-phone-example.component.html │ │ │ │ │ └── tool-layout-phone-example.component.ts │ │ │ │ └── tablet-example │ │ │ │ │ ├── tool-layout-tablet-example.component.html │ │ │ │ │ └── tool-layout-tablet-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── tool-layout-docs.component.html │ │ │ ├── tool-layout-docs.component.ts │ │ │ ├── tool-layout-header │ │ │ │ ├── tool-layout-header.component.html │ │ │ │ └── tool-layout-header.component.ts │ │ │ └── tsconfig.json │ │ └── tsconfig.json │ ├── cdk │ │ ├── api-files.ts │ │ ├── breakpoint │ │ │ ├── breakpoint-docs.component.html │ │ │ ├── breakpoint-docs.component.ts │ │ │ ├── breakpoint-header │ │ │ │ ├── breakpoint-header.component.html │ │ │ │ └── breakpoint-header.component.ts │ │ │ ├── examples │ │ │ │ ├── alias-names-example │ │ │ │ │ └── alias-names-example.component.ts │ │ │ │ ├── basic-example │ │ │ │ │ ├── basic-example.component.html │ │ │ │ │ └── basic-example.component.ts │ │ │ │ └── different-observe-target-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── clicked │ │ │ ├── clicked-docs.component.html │ │ │ ├── clicked-docs.component.ts │ │ │ ├── clicked-header │ │ │ │ ├── clicked-header.component.html │ │ │ │ └── clicked-header.component.ts │ │ │ ├── examples │ │ │ │ ├── basic-example │ │ │ │ │ ├── basic-example.component.html │ │ │ │ │ └── basic-example.component.ts │ │ │ │ └── provider-example │ │ │ │ │ ├── provider-example.component.html │ │ │ │ │ ├── provider-example.component.ts │ │ │ │ │ └── usage-with-provider.directive.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── data-source │ │ │ ├── data-source-docs.component.html │ │ │ ├── data-source-docs.component.ts │ │ │ ├── data-source-header │ │ │ │ ├── data-source-header.component.html │ │ │ │ └── data-source-header.component.ts │ │ │ ├── e2e │ │ │ │ ├── data-source.e2e-spec.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── default │ │ │ │ │ ├── data-source-default-example.component.html │ │ │ │ │ └── data-source-default-example.component.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── disabled │ │ │ ├── disabled-docs.component.html │ │ │ ├── disabled-docs.component.ts │ │ │ ├── disabled-header │ │ │ │ ├── disabled-header.component.html │ │ │ │ └── disabled-header.component.ts │ │ │ ├── examples │ │ │ │ ├── default-example │ │ │ │ │ ├── default-example.component.html │ │ │ │ │ └── default-example.component.ts │ │ │ │ └── di-example │ │ │ │ │ ├── di-example.component.html │ │ │ │ │ ├── di-example.component.ts │ │ │ │ │ └── disabled-recipient.directive.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── docs-data.json │ │ ├── docs-routes.ts │ │ ├── drag-n-drop │ │ │ ├── dnd-docs.component.html │ │ │ ├── dnd-docs.component.ts │ │ │ ├── dnd-header │ │ │ │ ├── dnd-header.component.html │ │ │ │ └── dnd-header.component.ts │ │ │ ├── examples │ │ │ │ ├── default-example │ │ │ │ │ ├── default-example.component.html │ │ │ │ │ └── default-example.component.ts │ │ │ │ └── disabled-example │ │ │ │ │ ├── disabled-example.component.html │ │ │ │ │ └── disabled-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── eslint.config.js │ │ ├── focusable-grid │ │ │ ├── examples │ │ │ │ ├── default-example │ │ │ │ │ ├── default-example.component.html │ │ │ │ │ └── default-example.component.ts │ │ │ │ └── short-rows-example │ │ │ │ │ ├── short-rows-example.component.html │ │ │ │ │ └── short-rows-example.component.ts │ │ │ ├── focusable-grid-docs.component.html │ │ │ ├── focusable-grid-docs.component.ts │ │ │ ├── focusable-grid-header │ │ │ │ ├── focusable-grid-header.component.html │ │ │ │ └── focusable-grid-header.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── focusable-item │ │ │ ├── e2e │ │ │ │ ├── focusable-item.e2e-spec.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── default │ │ │ │ │ ├── focusable-item-default-example.component.html │ │ │ │ │ └── focusable-item-default-example.component.ts │ │ │ │ └── index.ts │ │ │ ├── focusable-item-docs.component.html │ │ │ ├── focusable-item-docs.component.ts │ │ │ ├── focusable-item-header │ │ │ │ ├── focusable-item-header.component.html │ │ │ │ └── focusable-item-header.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── focusable-list │ │ │ ├── examples │ │ │ │ └── default-example │ │ │ │ │ ├── default-example.component.html │ │ │ │ │ └── default-example.component.ts │ │ │ ├── focusable-list-docs.component.html │ │ │ ├── focusable-list-docs.component.ts │ │ │ ├── focusable-list-header │ │ │ │ ├── focusable-list-header.component.html │ │ │ │ └── focusable-list-header.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── forms │ │ │ ├── e2e │ │ │ │ ├── forms.e2e-spec.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── default │ │ │ │ │ ├── forms-default-example.component.html │ │ │ │ │ └── forms-default-example.component.ts │ │ │ │ └── index.ts │ │ │ ├── forms-docs.component.html │ │ │ ├── forms-docs.component.ts │ │ │ ├── forms-header │ │ │ │ ├── forms-header.component.html │ │ │ │ └── forms-header.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── index.ts │ │ ├── initial-focus │ │ │ ├── e2e │ │ │ │ ├── tsconfig.json │ │ │ │ └── utils.e2e-spec.ts │ │ │ ├── examples │ │ │ │ ├── default │ │ │ │ │ ├── initial-focus-default-example.component.html │ │ │ │ │ └── initial-focus-default-example.component.ts │ │ │ │ ├── index.ts │ │ │ │ └── nested-elements-example │ │ │ │ │ ├── nested-elements-example.component.html │ │ │ │ │ └── nested-elements-example.component.ts │ │ │ ├── index.ts │ │ │ ├── initial-focus-docs.component.html │ │ │ ├── initial-focus-docs.component.ts │ │ │ ├── initial-focus-header │ │ │ │ ├── initial-focus-header.component.html │ │ │ │ └── initial-focus-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── project.json │ │ ├── rtl-service │ │ │ ├── e2e │ │ │ │ ├── rtl-service.e2e-spec.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ └── rtl-service-basic-example │ │ │ │ │ ├── rtl-service-basic-example.component.html │ │ │ │ │ └── rtl-service-basic-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── rtl-service-docs.component.html │ │ │ ├── rtl-service-docs.component.ts │ │ │ ├── rtl-service-header │ │ │ │ ├── rtl-service-header.component.html │ │ │ │ ├── rtl-service-header.component.scss │ │ │ │ └── rtl-service-header.component.ts │ │ │ └── tsconfig.json │ │ ├── selectable-list │ │ │ ├── examples │ │ │ │ ├── advanced-usage │ │ │ │ │ ├── advanced-usage.component.html │ │ │ │ │ ├── advanced-usage.component.ts │ │ │ │ │ └── custom-selectable-item.directive.ts │ │ │ │ └── default-example │ │ │ │ │ ├── default-example.component.html │ │ │ │ │ └── default-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── selectable-list-docs.component.html │ │ │ ├── selectable-list-docs.component.ts │ │ │ ├── selectable-list-header │ │ │ │ ├── selectable-list-header.component.html │ │ │ │ └── selectable-list-header.component.ts │ │ │ └── tsconfig.json │ │ ├── tabbable │ │ │ ├── e2e │ │ │ │ ├── tsconfig.json │ │ │ │ └── utils.e2e-spec.ts │ │ │ ├── examples │ │ │ │ ├── default │ │ │ │ │ ├── tabbable-default-example.component.html │ │ │ │ │ └── tabbable-default-example.component.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── tabbable-docs.component.html │ │ │ ├── tabbable-docs.component.ts │ │ │ ├── tabbable-header │ │ │ │ ├── tabbable-header.component.html │ │ │ │ └── tabbable-header.component.ts │ │ │ └── tsconfig.json │ │ └── tsconfig.json │ ├── core │ │ ├── action-bar │ │ │ ├── action-bar-docs.component.html │ │ │ ├── action-bar-docs.component.scss │ │ │ ├── action-bar-docs.component.ts │ │ │ ├── action-bar-header │ │ │ │ ├── action-bar-header.component.html │ │ │ │ └── action-bar-header.component.ts │ │ │ ├── e2e │ │ │ │ ├── action-bar-contents.ts │ │ │ │ ├── action-bar.e2e-spec.ts │ │ │ │ ├── action-bar.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── action-bar-back-example.component.html │ │ │ │ ├── action-bar-back-example.component.ts │ │ │ │ ├── action-bar-contextual-menu-example.component.html │ │ │ │ ├── action-bar-examples.component.ts │ │ │ │ ├── action-bar-long-string-title-truncation-example.component.html │ │ │ │ ├── action-bar-long-string-title-truncation-example.component.ts │ │ │ │ ├── action-bar-mobile-example.component.html │ │ │ │ ├── action-bar-mobile-example.component.ts │ │ │ │ └── action-bar-no-back-example.component.html │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── action-sheet │ │ │ ├── action-sheet-docs.component.html │ │ │ ├── action-sheet-docs.component.ts │ │ │ ├── action-sheet-header │ │ │ │ ├── action-sheet-header.component.html │ │ │ │ └── action-sheet-header.component.ts │ │ │ ├── e2e │ │ │ │ ├── action-sheet-content.ts │ │ │ │ ├── action-sheet.e2e-spec.ts │ │ │ │ ├── action-sheet.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── action-sheet-compact │ │ │ │ │ ├── action-sheet-compact-example.component.html │ │ │ │ │ └── action-sheet-compact-example.component.ts │ │ │ │ ├── action-sheet-default │ │ │ │ │ ├── action-sheet-default-example.component.html │ │ │ │ │ └── action-sheet-default-example.component.ts │ │ │ │ ├── action-sheet-mobile │ │ │ │ │ ├── action-sheet-mobile-example.component.html │ │ │ │ │ └── action-sheet-mobile-example.component.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── api-files.ts │ │ ├── avatar-group-legacy │ │ │ ├── avatar-group-legacy-docs.component.html │ │ │ ├── avatar-group-legacy-docs.component.ts │ │ │ ├── avatar-group-legacy-header │ │ │ │ ├── avatar-group-legacy-header.component.html │ │ │ │ └── avatar-group-legacy-header.component.ts │ │ │ ├── examples │ │ │ │ ├── avatar-group-legacy-data-example.service.ts │ │ │ │ ├── avatar-group-legacy-group-type-example.component.html │ │ │ │ ├── avatar-group-legacy-group-type-example.component.ts │ │ │ │ ├── avatar-group-legacy-individual-type-example.component.html │ │ │ │ └── avatar-group-legacy-individual-type-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── avatar-group │ │ │ ├── avatar-group-docs.component.html │ │ │ ├── avatar-group-docs.component.ts │ │ │ ├── avatar-group-header │ │ │ │ ├── avatar-group-header.component.html │ │ │ │ └── avatar-group-header.component.ts │ │ │ ├── e2e │ │ │ │ ├── avatar-group.e2e-spec.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── avatar-group-data-example.service.ts │ │ │ │ ├── default │ │ │ │ │ ├── avatar-group-default-example.component.html │ │ │ │ │ └── avatar-group-default-example.component.ts │ │ │ │ ├── group-type │ │ │ │ │ ├── group-type-example.component.html │ │ │ │ │ └── group-type-example.component.ts │ │ │ │ ├── index.ts │ │ │ │ └── vertical │ │ │ │ │ ├── avatar-group-vertical-example.component.html │ │ │ │ │ └── avatar-group-vertical-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── avatar │ │ │ ├── avatar-docs.component.html │ │ │ ├── avatar-docs.component.ts │ │ │ ├── avatar-header │ │ │ │ ├── avatar-header.component.html │ │ │ │ └── avatar-header.component.ts │ │ │ ├── examples │ │ │ │ ├── avatar-accent-colors-example.component.html │ │ │ │ ├── avatar-accent-colors-example.component.ts │ │ │ │ ├── avatar-background-image-example.component.html │ │ │ │ ├── avatar-background-image-example.component.ts │ │ │ │ ├── avatar-borders-example.component.html │ │ │ │ ├── avatar-borders-example.component.ts │ │ │ │ ├── avatar-circle-example.component.html │ │ │ │ ├── avatar-circle-example.component.ts │ │ │ │ ├── avatar-default-image-with-alternative-options-example.component.html │ │ │ │ ├── avatar-default-image-with-alternative-options-example.component.ts │ │ │ │ ├── avatar-icon-example.component.html │ │ │ │ ├── avatar-icon-example.component.ts │ │ │ │ ├── avatar-initials-example.component.html │ │ │ │ ├── avatar-initials-example.component.ts │ │ │ │ ├── avatar-placeholder-example.component.html │ │ │ │ ├── avatar-placeholder-example.component.ts │ │ │ │ ├── avatar-tile-example.component.html │ │ │ │ ├── avatar-tile-example.component.ts │ │ │ │ ├── avatar-transparent-example.component.html │ │ │ │ ├── avatar-transparent-example.component.ts │ │ │ │ ├── avatar-value-state-example.component.html │ │ │ │ ├── avatar-value-state-example.component.ts │ │ │ │ ├── avatar-zoom-icon-example.component.html │ │ │ │ └── avatar-zoom-icon-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── bar │ │ │ ├── bar-docs.component.html │ │ │ ├── bar-docs.component.ts │ │ │ ├── bar-header │ │ │ │ ├── bar-header.component.html │ │ │ │ └── bar-header.component.ts │ │ │ ├── e2e │ │ │ │ ├── bar.e2e-spec.ts │ │ │ │ ├── bar.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── bar-custom-shellbar-example.component.html │ │ │ │ ├── bar-custom-shellbar-example.component.scss │ │ │ │ ├── bar-custom-shellbar-example.component.ts │ │ │ │ ├── bar-default-example.component.html │ │ │ │ ├── bar-default-example.component.ts │ │ │ │ ├── bar-floating-footer-example.component.html │ │ │ │ ├── bar-footer-example.component.html │ │ │ │ ├── bar-header-example.component.html │ │ │ │ ├── bar-header-example.component.ts │ │ │ │ ├── bar-header-subheader-example.component.html │ │ │ │ ├── bar-page-example.component.html │ │ │ │ ├── bar-page-example.component.ts │ │ │ │ ├── bar-page-responsive-example.component.html │ │ │ │ ├── bar-page-responsive-example.component.ts │ │ │ │ ├── bar-simple-examples.component.ts │ │ │ │ ├── bar-subheader-example.component.html │ │ │ │ ├── bar-with-title-example.component.html │ │ │ │ └── bar-with-title-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── breadcrumb │ │ │ ├── breadcrumb-docs.component.html │ │ │ ├── breadcrumb-docs.component.ts │ │ │ ├── breadcrumb-header │ │ │ │ ├── breadcrumb-header.component.html │ │ │ │ ├── breadcrumb-header.component.scss │ │ │ │ └── breadcrumb-header.component.ts │ │ │ ├── e2e │ │ │ │ ├── breadcrumb.e2e-spec.ts │ │ │ │ ├── breadcrumb.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── breadcrumb-examples.component.ts │ │ │ │ ├── breadcrumb-href-example.component.html │ │ │ │ └── breadcrumb-routerLink-example.component.html │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── busy-indicator │ │ │ ├── busy-indicator-docs.component.html │ │ │ ├── busy-indicator-docs.component.ts │ │ │ ├── busy-indicator-header │ │ │ │ ├── busy-indicator-header.component.html │ │ │ │ └── busy-indicator-header.component.ts │ │ │ ├── e2e │ │ │ │ ├── busy-indicator-contents.ts │ │ │ │ ├── busy-indicator.e2e-spec.ts │ │ │ │ ├── busy-indicator.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── busy-indicator-basic-example.component.html │ │ │ │ ├── busy-indicator-basic-example.component.ts │ │ │ │ ├── busy-indicator-extended-example.component.html │ │ │ │ ├── busy-indicator-extended-example.component.ts │ │ │ │ ├── busy-indicator-label-example.component.html │ │ │ │ ├── busy-indicator-label-example.component.ts │ │ │ │ ├── busy-indicator-size-example.component.html │ │ │ │ ├── busy-indicator-size-example.component.ts │ │ │ │ ├── busy-indicator-wrapper-example.component.html │ │ │ │ ├── busy-indicator-wrapper-example.component.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── button │ │ │ ├── button-docs.component.html │ │ │ ├── button-docs.component.ts │ │ │ ├── button-header │ │ │ │ ├── button-header.component.html │ │ │ │ ├── button-header.component.scss │ │ │ │ └── button-header.component.ts │ │ │ ├── e2e │ │ │ │ ├── button-contents.ts │ │ │ │ ├── button-tags.ts │ │ │ │ ├── button.e2e-spec.ts │ │ │ │ ├── button.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── button-badge-example.component.ts │ │ │ │ ├── button-icons-example.component.html │ │ │ │ ├── button-icons-example.component.ts │ │ │ │ ├── button-menu-example.component.html │ │ │ │ ├── button-menu-example.component.ts │ │ │ │ ├── button-sizes-example.component.html │ │ │ │ ├── button-sizes-example.component.ts │ │ │ │ ├── button-state-example.component.html │ │ │ │ ├── button-state-example.component.ts │ │ │ │ ├── button-toggled-example.component.html │ │ │ │ ├── button-toggled-example.component.ts │ │ │ │ ├── button-types-example.component.html │ │ │ │ └── button-types-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── calendar │ │ │ ├── calendar-docs.component.html │ │ │ ├── calendar-docs.component.ts │ │ │ ├── calendar-header │ │ │ │ ├── calendar-header.component.html │ │ │ │ ├── calendar-header.component.scss │ │ │ │ └── calendar-header.component.ts │ │ │ ├── e2e │ │ │ │ ├── calendar-contents.ts │ │ │ │ ├── calendar.e2e-spec.ts │ │ │ │ ├── calendar.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── calendar--i18n-moment-example.component.ts │ │ │ │ ├── calendar-bcp │ │ │ │ │ ├── calendar-bcp.html │ │ │ │ │ ├── calendar-bcp.ts │ │ │ │ │ └── locale.service.ts │ │ │ │ ├── calendar-disabled-navigation-buttons-example │ │ │ │ │ ├── calendar-disabled-navigation-buttons-example.component.html │ │ │ │ │ └── calendar-disabled-navigation-buttons-example.component.ts │ │ │ │ ├── calendar-form-example │ │ │ │ │ ├── calendar-form-example.component.html │ │ │ │ │ ├── calendar-form-example.component.scss │ │ │ │ │ └── calendar-form-example.component.ts │ │ │ │ ├── calendar-grid-example │ │ │ │ │ ├── calendar-grid-example.component.html │ │ │ │ │ ├── calendar-grid-example.component.scss │ │ │ │ │ └── calendar-grid-example.component.ts │ │ │ │ ├── calendar-i18n-example.component.ts │ │ │ │ ├── calendar-legend-example │ │ │ │ │ ├── calendar-legend-example.component.html │ │ │ │ │ └── calendar-legend-example.component.ts │ │ │ │ ├── calendar-mark-hover │ │ │ │ │ ├── calendar-mark-hover.component.html │ │ │ │ │ └── calendar-mark-hover.component.ts │ │ │ │ ├── calendar-mobile-example │ │ │ │ │ ├── calendar-mobile-example.component.html │ │ │ │ │ └── calendar-mobile-example.component.ts │ │ │ │ ├── calendar-monday-start-example.component.ts │ │ │ │ ├── calendar-multi-example.component.ts │ │ │ │ ├── calendar-multi-range-example.component.ts │ │ │ │ ├── calendar-options-example │ │ │ │ │ ├── calendar-options-example.component.html │ │ │ │ │ └── calendar-options-example.component.ts │ │ │ │ ├── calendar-programmatically-change-example.component.ts │ │ │ │ ├── calendar-range-example.component.ts │ │ │ │ ├── calendar-single-example.component.ts │ │ │ │ └── calendar-special-day-example │ │ │ │ │ ├── calendar-special-day-example.component.html │ │ │ │ │ └── calendar-special-day-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── card │ │ │ ├── card-docs.component.html │ │ │ ├── card-docs.component.ts │ │ │ ├── card-header │ │ │ │ ├── card-header.component.html │ │ │ │ └── card-header.component.ts │ │ │ ├── examples │ │ │ │ ├── bar-chart-list-card │ │ │ │ │ ├── bar-chart-list-card-example.component.html │ │ │ │ │ ├── bar-chart-list-card-example.component.scss │ │ │ │ │ ├── bar-chart-list-card-example.component.ts │ │ │ │ │ ├── card-bar.component.html │ │ │ │ │ ├── card-bar.component.scss │ │ │ │ │ └── card-bar.component.ts │ │ │ │ ├── calendar-card │ │ │ │ │ ├── card-calendar-example.component.html │ │ │ │ │ ├── card-calendar-example.component.scss │ │ │ │ │ └── card-calendar-example.component.ts │ │ │ │ ├── card-compact-example.component.html │ │ │ │ ├── card-compact-example.component.ts │ │ │ │ ├── card-example.component.html │ │ │ │ ├── card-example.component.scss │ │ │ │ ├── card-example.component.ts │ │ │ │ ├── card-footer-example.component.html │ │ │ │ ├── card-footer-example.component.ts │ │ │ │ ├── card-kpi-example.component.html │ │ │ │ ├── card-kpi-example.component.scss │ │ │ │ ├── card-kpi-example.component.ts │ │ │ │ ├── card-kpi-google-charts.service.ts │ │ │ │ ├── card-loader-example.component.html │ │ │ │ ├── card-loader-example.component.ts │ │ │ │ ├── card-loading │ │ │ │ │ ├── card-loading-example.component.html │ │ │ │ │ ├── card-loading-example.component.scss │ │ │ │ │ └── card-loading-example.component.ts │ │ │ │ ├── card-table-example.component.html │ │ │ │ ├── card-table-example.component.ts │ │ │ │ ├── interactive-card-header │ │ │ │ │ ├── interactive-card-header-example.component.html │ │ │ │ │ └── interactive-card-header-example.component.ts │ │ │ │ ├── interactive-card │ │ │ │ │ ├── interactive-card-example.component.html │ │ │ │ │ └── interactive-card-example.component.ts │ │ │ │ ├── link-list-card │ │ │ │ │ ├── card-link-list-example.component.html │ │ │ │ │ └── card-link-list-example.component.ts │ │ │ │ ├── list-card │ │ │ │ │ ├── card-list-example.component.html │ │ │ │ │ └── card-list-example.component.ts │ │ │ │ ├── media-banner-card │ │ │ │ │ ├── media-banner-card-example.component.html │ │ │ │ │ └── media-banner-card-example.component.ts │ │ │ │ ├── media-card │ │ │ │ │ ├── media-card-example.component.html │ │ │ │ │ └── media-card-example.component.ts │ │ │ │ ├── non-interactive-card │ │ │ │ │ ├── non-interactive-card-example.component.html │ │ │ │ │ └── non-interactive-card-example.component.ts │ │ │ │ ├── object-card │ │ │ │ │ ├── card-object-example.component.html │ │ │ │ │ ├── card-object-example.component.scss │ │ │ │ │ └── card-object-example.component.ts │ │ │ │ └── quick-view-card │ │ │ │ │ ├── card-quick-view-example.component.html │ │ │ │ │ └── card-quick-view-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── carousel │ │ │ ├── carousel-docs.component.html │ │ │ ├── carousel-docs.component.ts │ │ │ ├── carousel-header │ │ │ │ ├── carousel-header.component.html │ │ │ │ └── carousel-header.component.ts │ │ │ ├── e2e │ │ │ │ ├── carousel-contents.ts │ │ │ │ ├── carousel.e2e-spec.ts │ │ │ │ ├── carousel.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── carousel-auto-slides-example.component.html │ │ │ │ ├── carousel-auto-slides-example.component.scss │ │ │ │ ├── carousel-auto-slides-example.component.ts │ │ │ │ ├── carousel-background-example.component.html │ │ │ │ ├── carousel-background-example.component.scss │ │ │ │ ├── carousel-background-example.component.ts │ │ │ │ ├── carousel-content-navigation-example.component.html │ │ │ │ ├── carousel-content-navigation-example.component.ts │ │ │ │ ├── carousel-dynamic-items-example.component.html │ │ │ │ ├── carousel-dynamic-items-example.component.scss │ │ │ │ ├── carousel-dynamic-items-example.component.ts │ │ │ │ ├── carousel-error-message-example.component.html │ │ │ │ ├── carousel-error-message-example.component.ts │ │ │ │ ├── carousel-example.component.scss │ │ │ │ ├── carousel-hidden-navigation-example.component.html │ │ │ │ ├── carousel-hidden-navigation-example.component.ts │ │ │ │ ├── carousel-loading-content-example.component.html │ │ │ │ ├── carousel-loading-content-example.component.ts │ │ │ │ ├── carousel-looped-navigation-example.component.html │ │ │ │ ├── carousel-looped-navigation-example.component.ts │ │ │ │ ├── carousel-multiple-active-item-example.component.html │ │ │ │ ├── carousel-multiple-active-item-example.component.ts │ │ │ │ ├── carousel-no-page-indicator-example.component.html │ │ │ │ ├── carousel-no-page-indicator-example.component.ts │ │ │ │ ├── carousel-one-active-item-example.component.html │ │ │ │ ├── carousel-one-active-item-example.component.ts │ │ │ │ ├── carousel-vertical-direction-example.component.html │ │ │ │ └── carousel-vertical-direction-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── checkbox │ │ │ ├── checkbox-docs.component.html │ │ │ ├── checkbox-docs.component.ts │ │ │ ├── checkbox-header │ │ │ │ ├── checkbox-header.component.html │ │ │ │ └── checkbox-header.component.ts │ │ │ ├── e2e │ │ │ │ ├── checkbox-content.ts │ │ │ │ ├── checkbox.e2e-spec.ts │ │ │ │ ├── checkbox.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── checkbox-custom-label-example.component.ts │ │ │ │ ├── checkbox-custom-values-example.component.ts │ │ │ │ ├── checkbox-default-example.component.ts │ │ │ │ ├── checkbox-display-mode-example.component.ts │ │ │ │ ├── checkbox-label-wrapping-example.component.ts │ │ │ │ ├── checkbox-reactive-forms-example.component.ts │ │ │ │ ├── checkbox-states-example.component.ts │ │ │ │ ├── checkbox-tristate-example.component.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── combobox │ │ │ ├── combobox-docs.component.html │ │ │ ├── combobox-docs.component.ts │ │ │ ├── combobox-header │ │ │ │ ├── combobox-header.component.html │ │ │ │ ├── combobox-header.component.scss │ │ │ │ └── combobox-header.component.ts │ │ │ ├── e2e │ │ │ │ ├── combobox.e2e-spec.ts │ │ │ │ ├── combobox.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── combobox-async-example.component.html │ │ │ │ ├── combobox-async-example.component.ts │ │ │ │ ├── combobox-byline-example.component.html │ │ │ │ ├── combobox-byline-example.component.ts │ │ │ │ ├── combobox-columns-example.component.html │ │ │ │ ├── combobox-columns-example.component.ts │ │ │ │ ├── combobox-disabled-example.component.html │ │ │ │ ├── combobox-disabled-example.component.ts │ │ │ │ ├── combobox-displaywith-example.component.html │ │ │ │ ├── combobox-displaywith-example.component.ts │ │ │ │ ├── combobox-dynamic-example.component.html │ │ │ │ ├── combobox-dynamic-example.component.ts │ │ │ │ ├── combobox-example.component.html │ │ │ │ ├── combobox-example.component.scss │ │ │ │ ├── combobox-example.component.ts │ │ │ │ ├── combobox-forms-example.component.html │ │ │ │ ├── combobox-forms-example.component.scss │ │ │ │ ├── combobox-forms-example.component.ts │ │ │ │ ├── combobox-group-example.component.html │ │ │ │ ├── combobox-group-example.component.ts │ │ │ │ ├── combobox-height-example.component.html │ │ │ │ ├── combobox-height-example.component.ts │ │ │ │ ├── combobox-includes-example.component.html │ │ │ │ ├── combobox-includes-example.component.ts │ │ │ │ ├── combobox-inside-dialog-example.component.html │ │ │ │ ├── combobox-inside-dialog-example.component.ts │ │ │ │ ├── combobox-mobile │ │ │ │ │ ├── combobox-mobile-example.component.html │ │ │ │ │ └── combobox-mobile-example.component.ts │ │ │ │ ├── combobox-open-control-example.component.html │ │ │ │ ├── combobox-open-control-example.component.ts │ │ │ │ ├── combobox-search-field-example.component.html │ │ │ │ ├── combobox-search-field-example.component.ts │ │ │ │ ├── combobox-search-function-example.component.html │ │ │ │ ├── combobox-search-function-example.component.ts │ │ │ │ ├── combobox-template-example.component.html │ │ │ │ ├── combobox-template-example.component.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── content-density │ │ │ ├── content-density-docs.component.html │ │ │ ├── content-density-docs.component.ts │ │ │ ├── content-density-header │ │ │ │ ├── content-density-header.component.html │ │ │ │ └── content-density-header.component.ts │ │ │ ├── e2e │ │ │ │ ├── content-density.e2e-spec.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── content-density-example.component.html │ │ │ │ ├── content-density-example.component.ts │ │ │ │ ├── content-density-storage-example.module.ts │ │ │ │ ├── content-density-user │ │ │ │ │ ├── content-density-user.component.scss │ │ │ │ │ └── content-density-user.component.ts │ │ │ │ └── directive-usage │ │ │ │ │ ├── directive-usage-example.component.html │ │ │ │ │ └── directive-usage-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── date-picker │ │ │ ├── date-picker-docs.component.html │ │ │ ├── date-picker-docs.component.ts │ │ │ ├── date-picker-header │ │ │ │ ├── date-picker-header.component.html │ │ │ │ ├── date-picker-header.component.scss │ │ │ │ └── date-picker-header.component.ts │ │ │ ├── e2e │ │ │ │ ├── date-picker-contents.ts │ │ │ │ ├── date-picker-tags.ts │ │ │ │ ├── date-picker.e2e-spec.ts │ │ │ │ ├── date-picker.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── date-picker-allow-null-example.component.ts │ │ │ │ ├── date-picker-complex-i18n-example │ │ │ │ │ ├── date-picker-complex-i18n-example.component.html │ │ │ │ │ ├── date-picker-complex-i18n-example.component.scss │ │ │ │ │ └── date-picker-complex-i18n-example.component.ts │ │ │ │ ├── date-picker-disable-focus-scroll-example.component.ts │ │ │ │ ├── date-picker-disable-func-example │ │ │ │ │ ├── date-picker-disable-func-example.component.html │ │ │ │ │ └── date-picker-disable-func-example.component.ts │ │ │ │ ├── date-picker-disabled-example.component.ts │ │ │ │ ├── date-picker-form-example.component.ts │ │ │ │ ├── date-picker-form-multi-example.component.ts │ │ │ │ ├── date-picker-form-multi-range-example.component.ts │ │ │ │ ├── date-picker-form-range-example.component.ts │ │ │ │ ├── date-picker-format-example.component.ts │ │ │ │ ├── date-picker-i18n-example.component.ts │ │ │ │ ├── date-picker-multi-disable-func-example.component.ts │ │ │ │ ├── date-picker-multi-example.component.ts │ │ │ │ ├── date-picker-multi-range-example.component.ts │ │ │ │ ├── date-picker-position-example.component.ts │ │ │ │ ├── date-picker-range-disabled-example │ │ │ │ │ ├── date-picker-range-disabled-example.component.html │ │ │ │ │ └── date-picker-range-disabled-example.component.ts │ │ │ │ ├── date-picker-range-example.component.ts │ │ │ │ ├── date-picker-single-example.component.ts │ │ │ │ ├── date-picker-special-day-example │ │ │ │ │ ├── date-picker-special-day-example.component.html │ │ │ │ │ ├── date-picker-special-day-example.component.scss │ │ │ │ │ └── date-picker-special-day-example.component.ts │ │ │ │ ├── date-picker-today-button-example.component.ts │ │ │ │ ├── date-picker-update-on-blur-example.component.ts │ │ │ │ └── mobile-mode │ │ │ │ │ ├── date-picker-mobile-mode-example.component.html │ │ │ │ │ └── date-picker-mobile-mode-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── datetime-picker │ │ │ ├── datetime-picker-docs.component.html │ │ │ ├── datetime-picker-docs.component.scss │ │ │ ├── datetime-picker-docs.component.ts │ │ │ ├── datetime-picker-header │ │ │ │ ├── datetime-picker-header.component.html │ │ │ │ ├── datetime-picker-header.component.scss │ │ │ │ └── datetime-picker-header.component.ts │ │ │ ├── e2e │ │ │ │ ├── date-time-picker-contents.ts │ │ │ │ ├── date-time-picker.e2e-spec.ts │ │ │ │ ├── date-time-picker.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── datetime-allow-null-example │ │ │ │ │ └── datetime-allow-null-example.component.ts │ │ │ │ ├── datetime-disabled-example │ │ │ │ │ ├── datetime-disabled-example.component.html │ │ │ │ │ └── datetime-disabled-example.component.ts │ │ │ │ ├── datetime-example │ │ │ │ │ ├── datetime-example.component.html │ │ │ │ │ └── datetime-example.component.ts │ │ │ │ ├── datetime-form-example │ │ │ │ │ ├── datetime-form-example.component.html │ │ │ │ │ └── datetime-form-example.component.ts │ │ │ │ ├── datetime-format-example │ │ │ │ │ ├── datetime-format-example.component.html │ │ │ │ │ └── datetime-format-example.component.ts │ │ │ │ ├── datetime-mobile │ │ │ │ │ ├── datetime-mobile-example.component.html │ │ │ │ │ └── datetime-mobile-example.component.ts │ │ │ │ ├── datetime-picker-complex-i18n-example │ │ │ │ │ ├── datetime-picker-complex-i18n-example.component.html │ │ │ │ │ ├── datetime-picker-complex-i18n-example.component.scss │ │ │ │ │ └── datetime-picker-complex-i18n-example.component.ts │ │ │ │ ├── datetime-picker-update-on-blur-example │ │ │ │ │ └── datetime-picker-update-on-blur-example.component.ts │ │ │ │ └── datetime-program-example │ │ │ │ │ ├── datetime-program-example.component.html │ │ │ │ │ └── datetime-program-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── dayjs-datetime-adapter │ │ │ ├── dayjs-datetime-adapter-docs.component.html │ │ │ ├── dayjs-datetime-adapter-docs.component.ts │ │ │ ├── dayjs-datetime-adapter-header │ │ │ │ ├── dayjs-datetime-adapter-header.component.html │ │ │ │ └── dayjs-datetime-adapter-header.component.ts │ │ │ ├── e2e │ │ │ │ ├── dayjs-datetime-adapter.e2e-spec.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── date-picker-dayjs-adapter-example.component.html │ │ │ │ ├── date-picker-dayjs-adapter-example.component.ts │ │ │ │ ├── dayjs-adapter-options-example.component.html │ │ │ │ ├── dayjs-adapter-options-example.component.ts │ │ │ │ ├── dayjs-datetime-formats-example.component.html │ │ │ │ └── dayjs-datetime-formats-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── dialog │ │ │ ├── dialog-docs-header │ │ │ │ ├── dialog-docs-header.component.html │ │ │ │ └── dialog-docs-header.component.ts │ │ │ ├── dialog-docs.component.html │ │ │ ├── dialog-docs.component.ts │ │ │ ├── e2e │ │ │ │ ├── dialog-contents.ts │ │ │ │ ├── dialog.e2e-spec.ts │ │ │ │ ├── dialog.po.ts │ │ │ │ ├── dialog.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── auto-label │ │ │ │ │ ├── auto-label-dialog-example.component.html │ │ │ │ │ └── auto-label-dialog-example.component.ts │ │ │ │ ├── component-based │ │ │ │ │ ├── component-based-dialog-example.component.ts │ │ │ │ │ └── dialog-example.component.ts │ │ │ │ ├── dialog-backdrop-container │ │ │ │ │ ├── dialog-backdrop-container-example.component.html │ │ │ │ │ └── dialog-backdrop-container-example.component.ts │ │ │ │ ├── dialog-complex │ │ │ │ │ ├── dialog-complex-example.component.html │ │ │ │ │ └── dialog-complex-example.component.ts │ │ │ │ ├── dialog-configuration │ │ │ │ │ ├── dialog-configuration-example.component.html │ │ │ │ │ ├── dialog-configuration-example.component.scss │ │ │ │ │ └── dialog-configuration-example.component.ts │ │ │ │ ├── dialog-examples.component.scss │ │ │ │ ├── dialog-form │ │ │ │ │ ├── form-dialog-example.component.html │ │ │ │ │ └── form-dialog-example.component.ts │ │ │ │ ├── dialog-full-screen │ │ │ │ │ ├── dialog-full-screen-example.component.html │ │ │ │ │ └── dialog-full-screen-example.component.ts │ │ │ │ ├── dialog-inner-popover │ │ │ │ │ └── dialog-inner-popover.component.ts │ │ │ │ ├── dialog-mobile │ │ │ │ │ ├── dialog-mobile-example.component.html │ │ │ │ │ └── dialog-mobile-example.component.ts │ │ │ │ ├── dialog-object-example │ │ │ │ │ ├── dialog-object-example.component.html │ │ │ │ │ └── dialog-object-example.component.ts │ │ │ │ ├── dialog-position │ │ │ │ │ ├── dialog-position-example.component.html │ │ │ │ │ └── dialog-position-example.component.ts │ │ │ │ ├── dialog-state │ │ │ │ │ ├── dialog-state-example.component.html │ │ │ │ │ ├── dialog-state-example.component.scss │ │ │ │ │ └── dialog-state-example.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── stacked-dialogs │ │ │ │ │ ├── dialog-stacked-example.component.ts │ │ │ │ │ ├── first-dialog-example.component.ts │ │ │ │ │ └── second-dialog-example.component.ts │ │ │ │ └── template-based │ │ │ │ │ ├── template-based-dialog-example.component.html │ │ │ │ │ └── template-based-dialog-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── docs-data.json │ │ ├── docs-routes.ts │ │ ├── dynamic-page │ │ │ ├── dynamic-page-docs.component.html │ │ │ ├── dynamic-page-docs.component.ts │ │ │ ├── dynamic-page-header │ │ │ │ ├── dynamic-page-docs-header.component.ts │ │ │ │ └── dynamic-page-header.component.html │ │ │ ├── e2e │ │ │ │ ├── dynamic-page.e2e-spec.ts │ │ │ │ ├── dynamic-page.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── dp-wizard │ │ │ │ │ ├── dp-wizard-example.component.html │ │ │ │ │ └── dp-wizard-example.component.ts │ │ │ │ ├── dynamic-page-column-layout-example │ │ │ │ │ ├── dynamic-page-column-layout-example.component.html │ │ │ │ │ └── dynamic-page-column-layout-example.component.ts │ │ │ │ ├── dynamic-page-dynamic-container-height-example │ │ │ │ │ ├── dynamic-page-dynamic-container-height-example.component.html │ │ │ │ │ └── dynamic-page-dynamic-container-height-example.component.ts │ │ │ │ ├── dynamic-page-example.component.html │ │ │ │ ├── dynamic-page-example.component.scss │ │ │ │ ├── dynamic-page-example.component.ts │ │ │ │ ├── dynamic-page-facets-example │ │ │ │ │ ├── dynamic-page-facets-example.component.html │ │ │ │ │ └── dynamic-page-facets-example.component.ts │ │ │ │ ├── dynamic-page-responsive-example │ │ │ │ │ ├── dynamic-page-responsive-example.component.html │ │ │ │ │ └── dynamic-page-responsive-example.component.ts │ │ │ │ ├── dynamic-page-routing │ │ │ │ │ ├── dynamic-page-routing-example.component.html │ │ │ │ │ └── dynamic-page-routing-example.component.ts │ │ │ │ └── dynamic-page-tabs-example │ │ │ │ │ ├── dynamic-page-tabs-example.component.html │ │ │ │ │ └── dynamic-page-tabs-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── dynamic-side-content │ │ │ ├── dynamic-side-content-docs.component.html │ │ │ ├── dynamic-side-content-docs.component.ts │ │ │ ├── dynamic-side-content-header │ │ │ │ ├── dynamic-side-content-header.component.html │ │ │ │ └── dynamic-side-content-header.component.ts │ │ │ ├── e2e │ │ │ │ ├── dynamic-side-content.e2e-spec.ts │ │ │ │ ├── dynamic-side-content.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── dynamic-side-content-basic-example.component.html │ │ │ │ ├── dynamic-side-content-basic-example.component.ts │ │ │ │ ├── dynamic-side-content-positioning-example.component.html │ │ │ │ ├── dynamic-side-content-positioning-example.component.ts │ │ │ │ ├── dynamic-side-content-size-example.component.html │ │ │ │ ├── dynamic-side-content-size-example.component.ts │ │ │ │ └── dynamic-side-content.component.scss │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── eslint.config.js │ │ ├── facets │ │ │ ├── e2e │ │ │ │ ├── facets.e2e-spec.ts │ │ │ │ ├── facets.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── custom-facet-example.component.html │ │ │ │ ├── custom-facet-example.component.ts │ │ │ │ ├── facet-alignment-example.component.html │ │ │ │ ├── facet-alignment-example.component.ts │ │ │ │ ├── facet-group-example.component.html │ │ │ │ ├── facet-group-example.component.ts │ │ │ │ ├── facet-loading-example.component.html │ │ │ │ ├── facet-loading-example.component.ts │ │ │ │ ├── form-facet-example.component.html │ │ │ │ └── form-facet-example.component.ts │ │ │ ├── facet-docs.component.html │ │ │ ├── facet-header │ │ │ │ ├── facet-docs-header.component.ts │ │ │ │ └── facet-header.component.html │ │ │ ├── facets-docs.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── feed-input │ │ │ ├── e2e │ │ │ │ ├── feed-input-page-contents.ts │ │ │ │ ├── feed-input.e2e-spec.ts │ │ │ │ ├── feed-input.po.ts │ │ │ │ ├── feed-input.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── feed-input-circle-avatar-example │ │ │ │ │ ├── feed-input-circle-avatar-example.component.html │ │ │ │ │ └── feed-input-circle-avatar-example.component.ts │ │ │ │ ├── feed-input-disabled-example │ │ │ │ │ ├── feed-input-disabled-example.component.html │ │ │ │ │ └── feed-input-disabled-example.component.ts │ │ │ │ ├── feed-input-example │ │ │ │ │ ├── feed-input-example.component.html │ │ │ │ │ └── feed-input-example.component.ts │ │ │ │ ├── feed-input-grow-example │ │ │ │ │ ├── feed-input-grow-example.component.html │ │ │ │ │ └── feed-input-grow-example.component.ts │ │ │ │ ├── feed-input-no-avatar-example │ │ │ │ │ ├── feed-input-no-avatar-example.component.html │ │ │ │ │ └── feed-input-no-avatar-example.component.ts │ │ │ │ └── feed-input-placeholder-example │ │ │ │ │ ├── feed-input-placeholder-example.component.html │ │ │ │ │ └── feed-input-placeholder-example.component.ts │ │ │ ├── feed-input-docs.component.html │ │ │ ├── feed-input-docs.component.ts │ │ │ ├── feed-input-header │ │ │ │ ├── feed-input-header.component.html │ │ │ │ └── feed-input-header.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── feed-list-item │ │ │ ├── e2e │ │ │ │ ├── feed-list-item-contents.ts │ │ │ │ ├── feed-list-item.e2e-spec.ts │ │ │ │ ├── feed-list-item.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── fli-action │ │ │ │ │ ├── fli-action-example.component.html │ │ │ │ │ └── fli-action-example.component.ts │ │ │ │ ├── fli-avatar │ │ │ │ │ ├── fli-avatar-example.component.html │ │ │ │ │ └── fli-avatar-example.component.ts │ │ │ │ ├── fli-footer │ │ │ │ │ ├── fli-footer-example.component.html │ │ │ │ │ └── fli-footer-example.component.ts │ │ │ │ ├── fli-mobile │ │ │ │ │ ├── fli-mobile-example.component.html │ │ │ │ │ └── fli-mobile-example.component.ts │ │ │ │ ├── fli-simple │ │ │ │ │ ├── fli-simple-example.component.html │ │ │ │ │ └── fli-simple-example.component.ts │ │ │ │ └── index.ts │ │ │ ├── feed-list-item-docs.component.html │ │ │ ├── feed-list-item-docs.component.ts │ │ │ ├── feed-list-item-header │ │ │ │ ├── feed-list-item-header.component.html │ │ │ │ └── feed-list-item-header.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── file-uploader │ │ │ ├── e2e │ │ │ │ ├── file-uploader-contents.ts │ │ │ │ ├── file-uploader.e2e-spec.ts │ │ │ │ ├── file-uploader.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── file-uploader-disabled-example │ │ │ │ │ ├── file-uploader-disabled-example.component.html │ │ │ │ │ ├── file-uploader-disabled-example.component.scss │ │ │ │ │ └── file-uploader-example.component.ts │ │ │ │ ├── file-uploader-drag-disabled-example │ │ │ │ │ ├── file-uploader-drag-disabled-example.component.html │ │ │ │ │ ├── file-uploader-drag-disabled-example.component.scss │ │ │ │ │ └── file-uploader-drag-disabled-example.component.ts │ │ │ │ ├── file-uploader-example │ │ │ │ │ ├── file-uploader-example.component.html │ │ │ │ │ ├── file-uploader-example.component.scss │ │ │ │ │ └── file-uploader-example.component.ts │ │ │ │ ├── file-uploader-max-example │ │ │ │ │ ├── file-uploader-max-example.component.html │ │ │ │ │ ├── file-uploader-max-example.component.scss │ │ │ │ │ └── file-uploader-max-example.component.ts │ │ │ │ ├── file-uploader-min-example │ │ │ │ │ ├── file-uploader-min-example.component.html │ │ │ │ │ ├── file-uploader-min-example.component.scss │ │ │ │ │ └── file-uploader-min-example.component.ts │ │ │ │ └── file-uploader-truncation-example │ │ │ │ │ ├── file-uploader-truncation-example.component.html │ │ │ │ │ ├── file-uploader-truncation-example.component.scss │ │ │ │ │ └── file-uploader-truncation-example.component.ts │ │ │ ├── file-uploader-docs.component.html │ │ │ ├── file-uploader-docs.component.scss │ │ │ ├── file-uploader-docs.component.ts │ │ │ ├── file-uploader-header │ │ │ │ ├── file-uploader-header.component.html │ │ │ │ ├── file-uploader-header.component.scss │ │ │ │ └── file-uploader-header.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── fixed-card-layout │ │ │ ├── e2e │ │ │ │ ├── fixed-card-layout.e2e-spec.ts │ │ │ │ ├── fixed-card-layout.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── custom-column-width │ │ │ │ │ ├── fixed-card-layout-custom-column-width-example.component.html │ │ │ │ │ └── fixed-card-layout-custom-column-width-example.component.ts │ │ │ │ ├── custom-width │ │ │ │ │ ├── fixed-card-layout-custom-width-example.component.html │ │ │ │ │ └── fixed-card-layout-custom-width-example.component.ts │ │ │ │ ├── default │ │ │ │ │ ├── fixed-card-layout-examples.component.html │ │ │ │ │ └── fixed-card-layout-examples.component.ts │ │ │ │ ├── disabled-drag-drop │ │ │ │ │ ├── fixed-card-layout-disabled-drag.component.html │ │ │ │ │ └── fixed-card-layout-disabled-drag.component.ts │ │ │ │ ├── max-columns │ │ │ │ │ ├── fixed-card-layout-max-columns-example.component.html │ │ │ │ │ └── fixed-card-layout-max-columns-example.component.ts │ │ │ │ └── mobile │ │ │ │ │ ├── fixed-card-layout-mobile-examples.component.html │ │ │ │ │ └── fixed-card-layout-mobile-examples.component.ts │ │ │ ├── fixed-card-layout-docs-header │ │ │ │ ├── fixed-card-layout-docs-header.component.html │ │ │ │ └── fixed-card-layout-docs-header.component.ts │ │ │ ├── fixed-card-layout-docs.component.html │ │ │ ├── fixed-card-layout-docs.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── flexible-column-layout │ │ │ ├── e2e │ │ │ │ ├── flexible-column-layout.e2e-spec.ts │ │ │ │ ├── flexible-column-layout.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── custom-config │ │ │ │ │ ├── flexible-column-layout-custom-config-example.component.html │ │ │ │ │ ├── flexible-column-layout-custom-config-example.component.scss │ │ │ │ │ ├── flexible-column-layout-custom-config-example.component.ts │ │ │ │ │ └── flexible-column-layout-global-config-example.ts │ │ │ │ ├── default │ │ │ │ │ ├── flexible-column-layout-example.component.html │ │ │ │ │ ├── flexible-column-layout-example.component.scss │ │ │ │ │ └── flexible-column-layout-example.component.ts │ │ │ │ └── dynamic-page │ │ │ │ │ ├── flexible-column-layout-dynamic-page-example.component.html │ │ │ │ │ ├── flexible-column-layout-dynamic-page-example.component.scss │ │ │ │ │ └── flexible-column-layout-dynamic-page-example.component.ts │ │ │ ├── flexible-column-layout-docs-header │ │ │ │ ├── flexible-column-layout-docs-header.component.html │ │ │ │ └── flexible-column-layout-docs-header.component.ts │ │ │ ├── flexible-column-layout-docs.component.html │ │ │ ├── flexible-column-layout-docs.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── form-message │ │ │ ├── e2e │ │ │ │ ├── form-message-contents.ts │ │ │ │ ├── form-message.e2e-spec.ts │ │ │ │ ├── form-message.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── form-message-example.component.html │ │ │ │ ├── form-message-example.component.ts │ │ │ │ └── state-message │ │ │ │ │ ├── form-messaging-state-example.component.html │ │ │ │ │ └── form-messaging-state-example.component.ts │ │ │ ├── form-message-docs.component.html │ │ │ ├── form-message-docs.component.ts │ │ │ ├── form-message-header │ │ │ │ ├── form-message-header.component.html │ │ │ │ └── form-message-header.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── formatted-text │ │ │ ├── examples │ │ │ │ ├── base │ │ │ │ │ ├── formatted-text-example.component.html │ │ │ │ │ └── formatted-text-example.component.ts │ │ │ │ ├── links │ │ │ │ │ ├── formatted-text-links-example.component.html │ │ │ │ │ └── formatted-text-links-example.component.ts │ │ │ │ └── script │ │ │ │ │ ├── formatted-text-script-example.component.html │ │ │ │ │ └── formatted-text-script-example.component.ts │ │ │ ├── formatted-text-docs.component.html │ │ │ ├── formatted-text-docs.component.ts │ │ │ ├── formatted-text-header │ │ │ │ ├── formatted-text-header.component.html │ │ │ │ └── formatted-text-header.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── generic-tag │ │ │ ├── examples │ │ │ │ ├── generic-tag-default-example.component.html │ │ │ │ └── generic-tag-default-example.component.ts │ │ │ ├── generic-tag-docs.component.html │ │ │ ├── generic-tag-docs.component.ts │ │ │ ├── generic-tag-header │ │ │ │ ├── generic-tag-header.component.html │ │ │ │ └── generic-tag-header.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── global-config │ │ │ ├── examples │ │ │ │ ├── dialog-global-config-example │ │ │ │ │ └── dialog-global-config-example.module.ts │ │ │ │ ├── message-box-global-config-example │ │ │ │ │ └── message-box-global-config-example.module.ts │ │ │ │ ├── mobile-mode-global-config-example │ │ │ │ │ └── mobile-mode-global-config-example.module.ts │ │ │ │ └── popover-mobile-global-config-example │ │ │ │ │ └── popover-mobile-global-config-example.module.ts │ │ │ ├── global-config-docs.component.html │ │ │ ├── global-config-docs.component.ts │ │ │ ├── global-config-header │ │ │ │ ├── global-config-header.component.html │ │ │ │ └── global-config-header.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── grid-list │ │ │ ├── e2e │ │ │ │ ├── grid-list-content.ts │ │ │ │ ├── grid-list.e2e-spec.ts │ │ │ │ ├── grid-list.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── auto-height │ │ │ │ │ ├── grid-list-auto-height-example.component.html │ │ │ │ │ ├── grid-list-auto-height-example.component.scss │ │ │ │ │ └── grid-list-auto-height-example.component.ts │ │ │ │ ├── combo-select │ │ │ │ │ ├── grid-list-combo-select-example.component.html │ │ │ │ │ ├── grid-list-combo-select-example.component.scss │ │ │ │ │ └── grid-list-combo-select-example.component.ts │ │ │ │ ├── dnd │ │ │ │ │ ├── grid-list-dnd-example.component.html │ │ │ │ │ ├── grid-list-dnd-example.component.scss │ │ │ │ │ └── grid-list-dnd-example.component.ts │ │ │ │ ├── focusing │ │ │ │ │ ├── grid-list-focusing-example.component.html │ │ │ │ │ ├── grid-list-focusing-example.component.scss │ │ │ │ │ └── grid-list-focusing-example.component.ts │ │ │ │ ├── footer │ │ │ │ │ ├── grid-list-footer-example.component.html │ │ │ │ │ ├── grid-list-footer-example.component.scss │ │ │ │ │ └── grid-list-footer-example.component.ts │ │ │ │ ├── grid-list.component.scss │ │ │ │ ├── group │ │ │ │ │ ├── grid-list-group-example.component.html │ │ │ │ │ ├── grid-list-group-example.component.scss │ │ │ │ │ └── grid-list-group-example.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── layout │ │ │ │ │ ├── grid-list-layout-example.component.html │ │ │ │ │ ├── grid-list-layout-example.component.scss │ │ │ │ │ └── grid-list-layout-example.component.ts │ │ │ │ ├── more │ │ │ │ │ ├── grid-list-more-example.component.html │ │ │ │ │ ├── grid-list-more-example.component.scss │ │ │ │ │ └── grid-list-more-example.component.ts │ │ │ │ ├── states │ │ │ │ │ ├── grid-list-states-example.component.html │ │ │ │ │ ├── grid-list-states-example.component.scss │ │ │ │ │ └── grid-list-states-example.component.ts │ │ │ │ └── statuses │ │ │ │ │ ├── grid-list-statuses-example.component.html │ │ │ │ │ ├── grid-list-statuses-example.component.scss │ │ │ │ │ └── grid-list-statuses-example.component.ts │ │ │ ├── grid-list-docs.component.html │ │ │ ├── grid-list-docs.component.ts │ │ │ ├── grid-list-header │ │ │ │ ├── grid-list-header.component.html │ │ │ │ └── grid-list-header.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── icon │ │ │ ├── e2e │ │ │ │ ├── icon.e2e-spec.ts │ │ │ │ ├── icon.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── icon-businessSuiteInAppSymbols-example.component.html │ │ │ │ ├── icon-businessSuiteInAppSymbols-example.component.scss │ │ │ │ ├── icon-businessSuiteInAppSymbols-example.component.ts │ │ │ │ ├── icon-color-example.component.scss │ │ │ │ ├── icon-color-example.component.ts │ │ │ │ ├── icon-example.component.html │ │ │ │ ├── icon-example.component.scss │ │ │ │ ├── icon-example.component.ts │ │ │ │ ├── icon-tnt-example.component.html │ │ │ │ ├── icon-tnt-example.component.scss │ │ │ │ └── icon-tnt-example.component.ts │ │ │ ├── icon-docs.component.html │ │ │ ├── icon-docs.component.ts │ │ │ ├── icon-header │ │ │ │ ├── icon-header.component.html │ │ │ │ ├── icon-header.component.scss │ │ │ │ └── icon-header.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── search-icons │ │ │ │ ├── available-sap-icons.ts │ │ │ │ ├── search-icons.component.html │ │ │ │ └── search-icons.component.ts │ │ │ └── tsconfig.json │ │ ├── illustrated-message │ │ │ ├── e2e │ │ │ │ ├── illustrated-message.e2e-spec.ts │ │ │ │ ├── illustrated-message.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── illustrated-message-dialog-example.component.html │ │ │ │ ├── illustrated-message-dialog-example.component.ts │ │ │ │ ├── illustrated-message-dot-example.component.html │ │ │ │ ├── illustrated-message-dot-example.component.ts │ │ │ │ ├── illustrated-message-example.component.html │ │ │ │ ├── illustrated-message-example.component.ts │ │ │ │ ├── illustrated-message-inline-example.component.html │ │ │ │ ├── illustrated-message-inline-example.component.ts │ │ │ │ ├── illustrated-message-spot-example.component.html │ │ │ │ └── illustrated-message-spot-example.component.ts │ │ │ ├── illustrated-message-docs.component.html │ │ │ ├── illustrated-message-docs.component.ts │ │ │ ├── illustrated-message-header │ │ │ │ ├── illustrated-message-header.component.html │ │ │ │ └── illustrated-message-header.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── index.ts │ │ ├── infinite-scroll │ │ │ ├── e2e │ │ │ │ ├── infinite-scroll.e2e-spec.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ └── infinite-scroll-basic-example │ │ │ │ │ ├── infinite-scroll-basic-example.component.html │ │ │ │ │ └── infinite-scroll-basic-example.component.ts │ │ │ ├── index.ts │ │ │ ├── infinite-scroll-docs.component.html │ │ │ ├── infinite-scroll-docs.component.ts │ │ │ ├── infinite-scroll-header │ │ │ │ ├── infinite-scroll-header.component.html │ │ │ │ ├── infinite-scroll-header.component.scss │ │ │ │ └── infinite-scroll-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── info-label │ │ │ ├── e2e │ │ │ │ ├── info-label-contents.ts │ │ │ │ ├── info-label.e2e-spec.ts │ │ │ │ ├── info-label.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── info-label-example.component.html │ │ │ │ ├── info-label-example.component.scss │ │ │ │ └── info-label-example.component.ts │ │ │ ├── index.ts │ │ │ ├── info-label-docs.component.html │ │ │ ├── info-label-docs.component.ts │ │ │ ├── info-label-header │ │ │ │ ├── info-label-header.component.html │ │ │ │ ├── info-label-header.component.scss │ │ │ │ └── info-label-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── inline-help │ │ │ ├── e2e │ │ │ │ ├── inline-help-contents.ts │ │ │ │ ├── inline-help.e2e-spec.ts │ │ │ │ ├── inline-help.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── inline-help-example.component.html │ │ │ │ ├── inline-help-example.component.ts │ │ │ │ ├── inline-help-styled-example.component.html │ │ │ │ ├── inline-help-styled-example.component.ts │ │ │ │ ├── inline-help-template-example │ │ │ │ │ ├── inline-help-template-example.component.html │ │ │ │ │ └── inline-help-template-example.component.ts │ │ │ │ ├── inline-help-trigger-example.component.html │ │ │ │ └── inline-help-trigger-example.component.ts │ │ │ ├── index.ts │ │ │ ├── inline-help-docs.component.html │ │ │ ├── inline-help-docs.component.ts │ │ │ ├── inline-help-header │ │ │ │ ├── inline-help-header.component.html │ │ │ │ ├── inline-help-header.component.scss │ │ │ │ └── inline-help-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── input-group │ │ │ ├── e2e │ │ │ │ ├── input-group-contents.ts │ │ │ │ ├── input-group.e2e-spec.ts │ │ │ │ ├── input-group.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── index.ts │ │ │ │ ├── input-group-button-example.component.html │ │ │ │ ├── input-group-complex-example.component.html │ │ │ │ ├── input-group-examples.component.ts │ │ │ │ ├── input-group-form-example │ │ │ │ │ ├── input-group-form-example.component.html │ │ │ │ │ └── input-group-form-example.component.ts │ │ │ │ ├── input-group-icon-example.component.html │ │ │ │ ├── input-group-search-example │ │ │ │ │ ├── input-group-search-example.component.html │ │ │ │ │ └── input-group-search-example.component.ts │ │ │ │ ├── input-group-states-example.component.html │ │ │ │ ├── input-group-text-compact-example.component.html │ │ │ │ └── input-group-text-example.component.html │ │ │ ├── index.ts │ │ │ ├── input-group-docs.component.html │ │ │ ├── input-group-docs.component.ts │ │ │ ├── input-group-header │ │ │ │ ├── input-group-header.component.html │ │ │ │ └── input-group-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── input │ │ │ ├── e2e │ │ │ │ ├── input-page-contents.ts │ │ │ │ ├── input.e2e-spec.ts │ │ │ │ ├── input.po.ts │ │ │ │ ├── input.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── input-example.component.html │ │ │ │ ├── input-examples.component.ts │ │ │ │ ├── input-form-group-example.component.html │ │ │ │ ├── input-form-group-example.component.scss │ │ │ │ ├── input-form-group-example.component.ts │ │ │ │ ├── input-inline-help-example.component.html │ │ │ │ └── input-state-example.component.html │ │ │ ├── index.ts │ │ │ ├── input-docs.component.html │ │ │ ├── input-docs.component.ts │ │ │ ├── input-header │ │ │ │ ├── input-header.component.html │ │ │ │ └── input-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── layout-grid │ │ │ ├── e2e │ │ │ │ ├── layout-grid.e2e-spec.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── example-layout-grid-block.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── layout-grid-basic-example.component.html │ │ │ │ ├── layout-grid-basic-example.component.ts │ │ │ │ ├── layout-grid-growing-example.component.html │ │ │ │ ├── layout-grid-growing-example.component.ts │ │ │ │ ├── layout-grid-nesting-example.component.html │ │ │ │ ├── layout-grid-nesting-example.component.ts │ │ │ │ ├── layout-grid-no-gap-example.component.html │ │ │ │ ├── layout-grid-no-gap-example.component.ts │ │ │ │ ├── layout-grid-offset-example.component.html │ │ │ │ ├── layout-grid-offset-example.component.ts │ │ │ │ ├── layout-grid-responsive-example.component.html │ │ │ │ ├── layout-grid-responsive-example.component.ts │ │ │ │ ├── layout-grid-responsive-offset-example.component.html │ │ │ │ ├── layout-grid-responsive-offset-example.component.ts │ │ │ │ ├── layout-grid-row-example.component.html │ │ │ │ └── layout-grid-row-example.component.ts │ │ │ ├── index.ts │ │ │ ├── layout-grid-docs-header │ │ │ │ ├── layout-grid-docs-header.component.html │ │ │ │ └── layout-grid-docs-header.component.ts │ │ │ ├── layout-grid-docs.component.html │ │ │ ├── layout-grid-docs.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── layout-panel │ │ │ ├── e2e │ │ │ │ ├── layout-panel.e2e-spec.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── layout-panel-edge-bleed-example.component.html │ │ │ │ ├── layout-panel-edge-bleed-example.component.ts │ │ │ │ ├── layout-panel-example.component.html │ │ │ │ ├── layout-panel-examples.component.ts │ │ │ │ ├── layout-panel-footer-variations-example.component.html │ │ │ │ ├── layout-panel-footer-variations-example.component.ts │ │ │ │ ├── layout-panel-transparent-example.component.html │ │ │ │ └── layout-panel-transparent-example.component.ts │ │ │ ├── index.ts │ │ │ ├── layout-panel-docs-header │ │ │ │ ├── layout-panel-docs-header.component.html │ │ │ │ ├── layout-panel-docs-header.component.scss │ │ │ │ └── layout-panel-docs-header.component.ts │ │ │ ├── layout-panel-docs.component.html │ │ │ ├── layout-panel-docs.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── link │ │ │ ├── e2e │ │ │ │ ├── link.e2e-spec.ts │ │ │ │ ├── link.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── link-example.component.html │ │ │ │ └── link-example.component.ts │ │ │ ├── index.ts │ │ │ ├── link-docs.component.html │ │ │ ├── link-docs.component.ts │ │ │ ├── link-header │ │ │ │ ├── link-header.component.html │ │ │ │ └── link-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── list-byline │ │ │ ├── e2e │ │ │ │ ├── list-byline.e2e-spec.ts │ │ │ │ ├── list-byline.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── list-byline-borderless-example │ │ │ │ │ ├── list-byline-borderless-example.component.html │ │ │ │ │ └── list-byline-borderless-example.component.ts │ │ │ │ ├── list-byline-button-example │ │ │ │ │ ├── list-byline-button-example.component.html │ │ │ │ │ └── list-byline-button-example.component.ts │ │ │ │ ├── list-byline-interactive-example │ │ │ │ │ ├── list-byline-interactive-example.component.html │ │ │ │ │ └── list-byline-interactive-example.component.ts │ │ │ │ ├── list-byline-loading-example │ │ │ │ │ ├── list-byline-loading-example.component.html │ │ │ │ │ └── list-byline-loading-example.component.ts │ │ │ │ ├── list-byline-navigation-example │ │ │ │ │ ├── list-byline-navigation-example.component.html │ │ │ │ │ └── list-byline-navigation-example.component.ts │ │ │ │ ├── list-byline-selection-example │ │ │ │ │ ├── list-byline-selection-example.component.html │ │ │ │ │ └── list-byline-selection-example.component.ts │ │ │ │ ├── list-byline-standard-example │ │ │ │ │ ├── list-byline-standard-example.component.html │ │ │ │ │ └── list-byline-standard-example.component.ts │ │ │ │ ├── list-byline-unread-example │ │ │ │ │ ├── list-byline-unread-example.component.html │ │ │ │ │ └── list-byline-unread-example.component.ts │ │ │ │ └── list-byline-wrap-example │ │ │ │ │ ├── list-byline-wrap-example.component.html │ │ │ │ │ └── list-byline-wrap-example.component.ts │ │ │ ├── index.ts │ │ │ ├── list-byline-docs.component.html │ │ │ ├── list-byline-docs.component.ts │ │ │ ├── list-byline-header │ │ │ │ ├── list-byline-header.component.html │ │ │ │ └── list-byline-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── list-subline │ │ │ ├── examples │ │ │ │ ├── list-subline-standard-example.component.html │ │ │ │ └── list-subline-standard-example.component.ts │ │ │ ├── index.ts │ │ │ ├── list-subline-docs.component.html │ │ │ ├── list-subline-docs.component.ts │ │ │ ├── list-subline-header │ │ │ │ ├── list-subline-header.component.html │ │ │ │ └── list-subline-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── list │ │ │ ├── e2e │ │ │ │ ├── standard-list.e2e-spec.ts │ │ │ │ ├── standard-list.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── list-action-example │ │ │ │ │ ├── list-action-example.component.html │ │ │ │ │ └── list-action-example.component.ts │ │ │ │ ├── list-borderless-example │ │ │ │ │ ├── list-borderless-example.component.html │ │ │ │ │ ├── list-borderless-example.component.scss │ │ │ │ │ └── list-borderless-example.component.ts │ │ │ │ ├── list-complex-example.component.html │ │ │ │ ├── list-data-example │ │ │ │ │ ├── list-data-example.component.html │ │ │ │ │ ├── list-data-example.component.scss │ │ │ │ │ ├── list-data-example.component.ts │ │ │ │ │ └── sort.pipe.ts │ │ │ │ ├── list-dnd-example │ │ │ │ │ ├── list-dnd-example.component.html │ │ │ │ │ └── list-dnd-example.component.ts │ │ │ │ ├── list-example.component.html │ │ │ │ ├── list-examples.component.ts │ │ │ │ ├── list-icon-example.component.html │ │ │ │ ├── list-infinite-scroll-example.component.html │ │ │ │ ├── list-infinite-scroll-example.component.ts │ │ │ │ ├── list-interactive-example │ │ │ │ │ ├── list-interactive-example.component.html │ │ │ │ │ └── list-interactive-example.component.ts │ │ │ │ ├── list-keyboard-example │ │ │ │ │ ├── list-keyboard-example.component.html │ │ │ │ │ └── list-keyboard-example.component.ts │ │ │ │ ├── list-loading-example │ │ │ │ │ ├── list-loading-example.component.html │ │ │ │ │ └── list-loading-example.component.ts │ │ │ │ ├── list-nav-indicator-example │ │ │ │ │ ├── list-nav-indicator-example.component.html │ │ │ │ │ └── list-nav-indicator-example.component.ts │ │ │ │ ├── list-navigation-example │ │ │ │ │ ├── list-navigation-example.component.html │ │ │ │ │ └── list-navigation-example.component.ts │ │ │ │ ├── list-secondary-example.component.html │ │ │ │ └── list-selection-example │ │ │ │ │ ├── list-selection-example.component.html │ │ │ │ │ ├── list-selection-example.component.scss │ │ │ │ │ └── list-selection-example.component.ts │ │ │ ├── index.ts │ │ │ ├── list-docs.component.html │ │ │ ├── list-docs.component.ts │ │ │ ├── list-header │ │ │ │ ├── list-header.component.html │ │ │ │ ├── list-header.component.scss │ │ │ │ └── list-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── menu │ │ │ ├── e2e │ │ │ │ ├── menu-contents.ts │ │ │ │ ├── menu.e2e-spec.ts │ │ │ │ ├── menu.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── extended-menu-example.component.ts │ │ │ │ ├── menu-addon-example.component.html │ │ │ │ ├── menu-addon-example.component.scss │ │ │ │ ├── menu-example.component.html │ │ │ │ ├── menu-examples.component.ts │ │ │ │ ├── menu-mobile-example.component.html │ │ │ │ ├── menu-mobile-example.component.ts │ │ │ │ ├── menu-scrollbar-example.component.html │ │ │ │ ├── menu-scrollbar-example.component.ts │ │ │ │ ├── menu-separator-example.component.html │ │ │ │ ├── menu-with-submenu-example.component.html │ │ │ │ └── menu-with-submenu-example.component.ts │ │ │ ├── index.ts │ │ │ ├── menu-docs.component.html │ │ │ ├── menu-docs.component.ts │ │ │ ├── menu-header │ │ │ │ ├── menu-header.component.html │ │ │ │ └── menu-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── message-box │ │ │ ├── e2e │ │ │ │ ├── message-box.e2e-spec.ts │ │ │ │ ├── message-box.po.ts │ │ │ │ ├── message-box.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── complex-template │ │ │ │ │ ├── complex-template-example.component.ts │ │ │ │ │ └── message-box-complex-example.component.ts │ │ │ │ ├── component-based │ │ │ │ │ ├── component-based-message-box-example.component.ts │ │ │ │ │ └── message-box-example.component.ts │ │ │ │ ├── custom-position │ │ │ │ │ ├── message-box-position-example.component.html │ │ │ │ │ └── message-box-position-example.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── mobile-mode │ │ │ │ │ ├── message-box-mobile-example.component.html │ │ │ │ │ └── message-box-mobile-example.component.ts │ │ │ │ ├── object-based │ │ │ │ │ ├── object-based-message-box-example.component.html │ │ │ │ │ └── object-based-message-box-example.component.ts │ │ │ │ ├── semantic-types │ │ │ │ │ ├── semantic-types-example.component.html │ │ │ │ │ └── semantic-types-example.component.ts │ │ │ │ └── template-based │ │ │ │ │ ├── template-based-message-box-example.component.html │ │ │ │ │ └── template-based-message-box-example.component.ts │ │ │ ├── index.ts │ │ │ ├── message-box-docs-header │ │ │ │ ├── message-box-docs-header.component.html │ │ │ │ └── message-box-docs-header.component.ts │ │ │ ├── message-box-docs.component.html │ │ │ ├── message-box-docs.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── message-page │ │ │ ├── e2e │ │ │ │ ├── message-page-content.ts │ │ │ │ ├── message-page.e2e-spec.ts │ │ │ │ ├── message-page.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── message-page-actions-example.component.html │ │ │ │ ├── message-page-custom-icon-example.component.html │ │ │ │ ├── message-page-error-example.component.html │ │ │ │ ├── message-page-examples.component.ts │ │ │ │ ├── message-page-filter-example.component.html │ │ │ │ ├── message-page-no-icon-example.component.html │ │ │ │ ├── message-page-no-items-example.component.html │ │ │ │ └── message-page-search-example.component.html │ │ │ ├── index.ts │ │ │ ├── message-page-docs.component.html │ │ │ ├── message-page-docs.component.ts │ │ │ ├── message-page-header │ │ │ │ ├── message-page-header.component.html │ │ │ │ └── message-page-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── message-strip │ │ │ ├── e2e │ │ │ │ ├── message-strip.contents.ts │ │ │ │ ├── message-strip.e2e-spec.ts │ │ │ │ ├── message-strip.po.ts │ │ │ │ ├── message-strip.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── message-strip-alert-example.component.ts │ │ │ │ ├── message-strip-auto-dismiss-example.component.ts │ │ │ │ ├── message-strip-custom-icon-example.component.ts │ │ │ │ ├── message-strip-example.component.html │ │ │ │ ├── message-strip-example.component.scss │ │ │ │ ├── message-strip-example.component.ts │ │ │ │ ├── message-strip-indication-colors-example.component.ts │ │ │ │ ├── message-strip-noicon-example.component.html │ │ │ │ ├── message-strip-noicon-example.component.ts │ │ │ │ ├── message-strip-width-example.component.html │ │ │ │ └── message-strip-width-example.component.ts │ │ │ ├── index.ts │ │ │ ├── message-strip-docs.component.html │ │ │ ├── message-strip-docs.component.ts │ │ │ ├── message-strip-header │ │ │ │ ├── message-strip-header.component.html │ │ │ │ └── message-strip-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── message-toast │ │ │ ├── e2e │ │ │ │ ├── message-toast.e2e-spec.ts │ │ │ │ ├── message-toast.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── message-toast-content-example.component.ts │ │ │ │ ├── message-toast-example.component.html │ │ │ │ ├── message-toast-example.component.ts │ │ │ │ ├── message-toast-position-example.component.html │ │ │ │ └── message-toast-position-example.component.ts │ │ │ ├── index.ts │ │ │ ├── message-toast-docs.component.html │ │ │ ├── message-toast-docs.component.ts │ │ │ ├── message-toast-header │ │ │ │ ├── message-toast-header.component.html │ │ │ │ └── message-toast-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── micro-process-flow │ │ │ ├── e2e │ │ │ │ ├── micro-process-flow.e2e-spec.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── micro-process-flow-custom-width-example.component.html │ │ │ │ ├── micro-process-flow-custom-width-example.component.ts │ │ │ │ ├── micro-process-flow-example.component.html │ │ │ │ ├── micro-process-flow-example.component.ts │ │ │ │ ├── micro-process-flow-independent-items-example.component.html │ │ │ │ ├── micro-process-flow-independent-items-example.component.ts │ │ │ │ ├── micro-process-flow-object-between-nodes-example.component.html │ │ │ │ ├── micro-process-flow-object-between-nodes-example.component.ts │ │ │ │ ├── micro-process-flow-other-controls-example.component.html │ │ │ │ ├── micro-process-flow-other-controls-example.component.ts │ │ │ │ ├── micro-process-flow-overflow-example.component.html │ │ │ │ ├── micro-process-flow-overflow-example.component.ts │ │ │ │ ├── micro-process-flow-popover-example.component.html │ │ │ │ └── micro-process-flow-popover-example.component.ts │ │ │ ├── index.ts │ │ │ ├── micro-process-flow-docs.component.html │ │ │ ├── micro-process-flow-docs.component.ts │ │ │ ├── micro-process-flow-header │ │ │ │ ├── micro-process-flow-header.component.html │ │ │ │ └── micro-process-flow-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── moment-datetime-adapter │ │ │ ├── examples │ │ │ │ ├── date-picker-moment-adapter-example.component.html │ │ │ │ ├── date-picker-moment-adapter-example.component.ts │ │ │ │ ├── moment-adapter-options-example.component.html │ │ │ │ ├── moment-adapter-options-example.component.ts │ │ │ │ ├── moment-datetime-formats-example.component.html │ │ │ │ └── moment-datetime-formats-example.component.ts │ │ │ ├── index.ts │ │ │ ├── moment-datetime-adapter-docs.component.html │ │ │ ├── moment-datetime-adapter-docs.component.ts │ │ │ ├── moment-datetime-adapter-header │ │ │ │ ├── moment-datetime-adapter-header.component.html │ │ │ │ └── moment-datetime-adapter-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── multi-combobox │ │ │ ├── e2e │ │ │ │ ├── multi-combobox.e2e-spec.ts │ │ │ │ ├── multi-combobox.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── multi-combobox-byline │ │ │ │ │ ├── multi-combobox-byline-example.component.html │ │ │ │ │ └── multi-combobox-byline-example.component.ts │ │ │ │ ├── multi-combobox-columns │ │ │ │ │ ├── multi-combobox-columns-example.component.html │ │ │ │ │ └── multi-combobox-columns-example.component.ts │ │ │ │ ├── multi-combobox-datasource │ │ │ │ │ ├── multi-combobox-datasource-example.component.html │ │ │ │ │ └── multi-combobox-datasource-example.component.ts │ │ │ │ ├── multi-combobox-forms │ │ │ │ │ ├── multi-combobox-forms-example.component.html │ │ │ │ │ └── multi-combobox-forms-example.component.ts │ │ │ │ ├── multi-combobox-group │ │ │ │ │ ├── multi-combobox-group-example.component.html │ │ │ │ │ └── multi-combobox-group-example.component.ts │ │ │ │ ├── multi-combobox-inside-dialog │ │ │ │ │ ├── multi-combobox-inside-dialog-example.component.html │ │ │ │ │ └── multi-combobox-inside-dialog-example.component.ts │ │ │ │ ├── multi-combobox-loading │ │ │ │ │ ├── multi-combobox-loading-example.component.html │ │ │ │ │ └── multi-combobox-loading-example.component.ts │ │ │ │ ├── multi-combobox-mobile │ │ │ │ │ ├── multi-combobox-mobile-example.component.html │ │ │ │ │ └── multi-combobox-mobile-example.component.ts │ │ │ │ ├── multi-combobox-states │ │ │ │ │ ├── multi-combobox-states-example.component.html │ │ │ │ │ └── multi-combobox-states-example.component.ts │ │ │ │ └── tokenizer │ │ │ │ │ ├── multi-combobox-responsive-tokenizer-example.component.html │ │ │ │ │ └── multi-combobox-responsive-tokenizer-example.component.ts │ │ │ ├── index.ts │ │ │ ├── multi-combobox-docs.component.html │ │ │ ├── multi-combobox-docs.component.ts │ │ │ ├── multi-combobox-header │ │ │ │ ├── multi-combobox-header.component.html │ │ │ │ └── multi-combobox-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── multi-input │ │ │ ├── e2e │ │ │ │ ├── multi-input-contents.ts │ │ │ │ ├── multi-input.e2e-spec.ts │ │ │ │ ├── multi-input.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── multi-input-addon-clicked-example │ │ │ │ │ ├── multi-input-addon-clicked-example.component.html │ │ │ │ │ └── multi-input-addon-clicked-example.component.ts │ │ │ │ ├── multi-input-async-example │ │ │ │ │ ├── multi-input-async-example.component.html │ │ │ │ │ └── multi-input-async-example.component.ts │ │ │ │ ├── multi-input-compact-example │ │ │ │ │ ├── multi-input-compact-example.component.html │ │ │ │ │ └── multi-input-compact-example.component.ts │ │ │ │ ├── multi-input-custom-item-example │ │ │ │ │ ├── multi-input-custom-item-example.component.html │ │ │ │ │ └── multi-input-custom-item-example.component.ts │ │ │ │ ├── multi-input-displaywith-example │ │ │ │ │ ├── multi-input-displaywith-example.component.html │ │ │ │ │ └── multi-input-displaywith-example.component.ts │ │ │ │ ├── multi-input-dropdown-width-example │ │ │ │ │ ├── multi-input-dropdown-width-example.component.html │ │ │ │ │ └── multi-input-dropdown-width-example.component.ts │ │ │ │ ├── multi-input-example │ │ │ │ │ ├── multi-input-example.component.html │ │ │ │ │ └── multi-input-example.component.ts │ │ │ │ ├── multi-input-filter-example │ │ │ │ │ ├── multi-input-filter-example.component.html │ │ │ │ │ └── multi-input-filter-example.component.ts │ │ │ │ ├── multi-input-form-example │ │ │ │ │ ├── multi-input-form-example.component.html │ │ │ │ │ └── multi-input-form-example.component.ts │ │ │ │ ├── multi-input-includes-example │ │ │ │ │ ├── multi-input-includes-example.component.html │ │ │ │ │ └── multi-input-includes-example.component.ts │ │ │ │ ├── multi-input-mobile-example │ │ │ │ │ ├── multi-input-mobile-example.component.html │ │ │ │ │ └── multi-input-mobile-example.component.ts │ │ │ │ ├── multi-input-new-tokens-example │ │ │ │ │ ├── multi-input-new-tokens-example.component.html │ │ │ │ │ └── multi-input-new-tokens-example.component.ts │ │ │ │ └── multi-input-option-item-example │ │ │ │ │ └── multi-input-option-item-example.component.ts │ │ │ ├── index.ts │ │ │ ├── multi-input-docs.component.html │ │ │ ├── multi-input-docs.component.scss │ │ │ ├── multi-input-docs.component.ts │ │ │ ├── multi-input-header │ │ │ │ ├── multi-input-header.component.html │ │ │ │ ├── multi-input-header.component.scss │ │ │ │ └── multi-input-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── notification │ │ │ ├── examples │ │ │ │ ├── component-as-content │ │ │ │ │ ├── notification-component-as-content-example.component.ts │ │ │ │ │ ├── notification-content.component.html │ │ │ │ │ └── notification-content.component.ts │ │ │ │ ├── notification-group │ │ │ │ │ ├── notification-group-example.component.html │ │ │ │ │ └── notification-group-example.component.ts │ │ │ │ ├── notification-options │ │ │ │ │ ├── notification-options-example.component.html │ │ │ │ │ └── notification-options-example.component.ts │ │ │ │ └── template-as-content │ │ │ │ │ ├── notification-open-template-example.component.html │ │ │ │ │ └── notification-open-template-example.component.ts │ │ │ ├── index.ts │ │ │ ├── notification-docs-header │ │ │ │ ├── notification-docs-header.component.html │ │ │ │ ├── notification-docs-header.component.scss │ │ │ │ └── notification-docs-header.component.ts │ │ │ ├── notification-docs.component.html │ │ │ ├── notification-docs.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── object-attribute │ │ │ ├── e2e │ │ │ │ ├── object-attribute-contents.ts │ │ │ │ ├── object-attribute.e2e-spec.ts │ │ │ │ ├── object-attribute.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── object-attribute-example.component.html │ │ │ │ ├── object-attribute-examples.component.ts │ │ │ │ ├── object-attribute-link-example.component.html │ │ │ │ ├── object-attribute-link-example.component.ts │ │ │ │ └── object-attribute-truncate-example.component.html │ │ │ ├── index.ts │ │ │ ├── object-attribute-docs.component.html │ │ │ ├── object-attribute-docs.component.ts │ │ │ ├── object-attribute-header │ │ │ │ ├── object-attribute-header.component.html │ │ │ │ └── object-attribute-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── object-identifier │ │ │ ├── e2e │ │ │ │ ├── object-identifier.e2e-spec.ts │ │ │ │ ├── object-identifier.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── object-identifier-bold-example.component.html │ │ │ │ ├── object-identifier-components.ts │ │ │ │ ├── object-identifier-default-example.component.html │ │ │ │ ├── object-identifier-descriptive-example.component.html │ │ │ │ ├── object-identifier-link-example.component.html │ │ │ │ ├── object-identifier-table-example.component.html │ │ │ │ └── object-identifier-table-example.component.ts │ │ │ ├── index.ts │ │ │ ├── object-identifier-docs.component.html │ │ │ ├── object-identifier-docs.component.ts │ │ │ ├── object-identifier-header │ │ │ │ ├── object-identifier-header.component.html │ │ │ │ ├── object-identifier-header.component.scss │ │ │ │ └── object-identifier-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── object-marker │ │ │ ├── e2e │ │ │ │ ├── object-marker-content.ts │ │ │ │ ├── object-marker.e2e-spec.ts │ │ │ │ ├── object-marker.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── object-marker-Icon-text-example.component.html │ │ │ │ ├── object-marker-clickable-example.component.html │ │ │ │ ├── object-marker-clickable-example.component.ts │ │ │ │ ├── object-marker-example.component.html │ │ │ │ ├── object-marker-example.component.ts │ │ │ │ └── object-marker-text-example.component.html │ │ │ ├── index.ts │ │ │ ├── object-marker-docs.component.html │ │ │ ├── object-marker-docs.component.ts │ │ │ ├── object-marker-header │ │ │ │ ├── object-marker-header.component.html │ │ │ │ └── object-marker-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── object-number │ │ │ ├── e2e │ │ │ │ ├── object-number-content.ts │ │ │ │ ├── object-number.e2e-spec.ts │ │ │ │ ├── object-number.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── object-number-basic-example.component.html │ │ │ │ ├── object-number-bold-example.component.html │ │ │ │ ├── object-number-decimal-example.component.html │ │ │ │ ├── object-number-examples.component.scss │ │ │ │ ├── object-number-examples.component.ts │ │ │ │ ├── object-number-large-example.component.html │ │ │ │ ├── object-number-status-example.component.html │ │ │ │ ├── object-number-truncation-example.component.html │ │ │ │ └── object-number-units-example.component.html │ │ │ ├── index.ts │ │ │ ├── object-number-docs.component.html │ │ │ ├── object-number-docs.component.ts │ │ │ ├── object-number-header │ │ │ │ ├── object-number-header.component.html │ │ │ │ └── object-number-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── object-page │ │ │ ├── examples │ │ │ │ ├── object-page-example.component.html │ │ │ │ └── object-page-example.component.ts │ │ │ ├── index.ts │ │ │ ├── object-page-docs.component.html │ │ │ ├── object-page-docs.component.ts │ │ │ ├── object-page-header │ │ │ │ ├── object-page-docs-header.component.ts │ │ │ │ └── object-page-header.component.html │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── object-status │ │ │ ├── examples │ │ │ │ ├── object-status-default-example.component.html │ │ │ │ ├── object-status-default-example.component.ts │ │ │ │ ├── object-status-examples.component.scss │ │ │ │ ├── object-status-inverted-example.component.html │ │ │ │ ├── object-status-inverted-example.component.ts │ │ │ │ ├── object-status-large-example.component.html │ │ │ │ └── object-status-large-example.component.ts │ │ │ ├── index.ts │ │ │ ├── object-status-docs.component.html │ │ │ ├── object-status-docs.component.ts │ │ │ ├── object-status-header │ │ │ │ ├── object-status-header.component.html │ │ │ │ ├── object-status-header.component.scss │ │ │ │ └── object-status-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── overflow-layout │ │ │ ├── e2e │ │ │ │ ├── overflow-layout.e2e-spec.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── always-visible │ │ │ │ │ ├── overflow-layout-always-visible-example.component.html │ │ │ │ │ └── overflow-layout-always-visible-example.component.ts │ │ │ │ ├── complex │ │ │ │ │ ├── overflow-layout-complex-example.component.html │ │ │ │ │ ├── overflow-layout-complex-example.component.scss │ │ │ │ │ └── overflow-layout-complex-example.component.ts │ │ │ │ ├── default │ │ │ │ │ ├── overflow-layout-default-example.component.html │ │ │ │ │ ├── overflow-layout-default-example.component.ts │ │ │ │ │ └── styles.scss │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── overflow-layout-docs.component.html │ │ │ ├── overflow-layout-docs.component.ts │ │ │ ├── overflow-layout-header │ │ │ │ ├── overflow-layout-header.component.html │ │ │ │ └── overflow-layout-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── pagination │ │ │ ├── e2e │ │ │ │ ├── pagination-contents.ts │ │ │ │ ├── pagination.e2e-spec.ts │ │ │ │ ├── pagination.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── pagination-example.component.ts │ │ │ │ ├── pagination-mobile │ │ │ │ │ ├── pagination-mobile-example.component.html │ │ │ │ │ └── pagination-mobile-example.component.ts │ │ │ │ ├── pagination-per-page │ │ │ │ │ ├── pagination-per-page-example.component.html │ │ │ │ │ └── pagination-per-page-example.component.ts │ │ │ │ └── pagination-showing-example.component.ts │ │ │ ├── index.ts │ │ │ ├── pagination-docs.component.html │ │ │ ├── pagination-docs.component.ts │ │ │ ├── pagination-header │ │ │ │ ├── pagination-header.component.html │ │ │ │ ├── pagination-header.component.scss │ │ │ │ └── pagination-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── panel │ │ │ ├── examples │ │ │ │ ├── panel-expandable-example.component.html │ │ │ │ ├── panel-expandable-example.component.ts │ │ │ │ ├── panel-fixed-example.component.html │ │ │ │ ├── panel-fixed-example.component.ts │ │ │ │ ├── panel-fixed-height-example.component.html │ │ │ │ ├── panel-fixed-height-example.component.ts │ │ │ │ ├── panel-transparent-example.component.html │ │ │ │ └── panel-transparent-example.component.ts │ │ │ ├── index.ts │ │ │ ├── panel-docs-header │ │ │ │ ├── panel-docs-header.component.html │ │ │ │ ├── panel-docs-header.component.scss │ │ │ │ └── panel-docs-header.component.ts │ │ │ ├── panel-docs.component.html │ │ │ ├── panel-docs.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── popover │ │ │ ├── e2e │ │ │ │ ├── popover-contents.ts │ │ │ │ ├── popover.e2e-spec.ts │ │ │ │ ├── popover.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── popover-c-fill │ │ │ │ │ ├── popover-c-fill.component.html │ │ │ │ │ └── popover-c-fill.component.ts │ │ │ │ ├── popover-closing-example │ │ │ │ │ ├── popover-closing-example.component.html │ │ │ │ │ ├── popover-closing-example.component.scss │ │ │ │ │ └── popover-closing-example.component.ts │ │ │ │ ├── popover-complex-example │ │ │ │ │ ├── popover-complex-example.component.html │ │ │ │ │ ├── popover-complex-example.component.scss │ │ │ │ │ └── popover-complex-example.component.ts │ │ │ │ ├── popover-container-example │ │ │ │ │ ├── popover-container-example.component.html │ │ │ │ │ └── popover-container-example.component.ts │ │ │ │ ├── popover-dialog │ │ │ │ │ ├── popover-dialog-example.component.html │ │ │ │ │ └── popover-dialog-example.component.ts │ │ │ │ ├── popover-dropdown │ │ │ │ │ ├── popover-dropdown-example.component.ts │ │ │ │ │ ├── popover-dropdown.component.html │ │ │ │ │ └── popover-dropdown.component.scss │ │ │ │ ├── popover-dynamic-container-height │ │ │ │ │ ├── popover-dynamic-container-height-example.component.html │ │ │ │ │ └── popover-dynamic-container-height-example.component.ts │ │ │ │ ├── popover-dynamic │ │ │ │ │ ├── popover-dynamic-example.component.html │ │ │ │ │ └── popover-dynamic-example.component.ts │ │ │ │ ├── popover-focus-example │ │ │ │ │ ├── popover-focus-example.component.html │ │ │ │ │ └── popover-focus-example.component.ts │ │ │ │ ├── popover-inside-popover │ │ │ │ │ ├── popover-inside-popover-example.component.html │ │ │ │ │ └── popover-inside-popover-example.component.ts │ │ │ │ ├── popover-lazy-init-of-body │ │ │ │ │ ├── popover-lazy-init-of-body-example.component.ts │ │ │ │ │ └── popover-lazy-loaded-body.component.ts │ │ │ │ ├── popover-mobile │ │ │ │ │ ├── popover-mobile-example.component.html │ │ │ │ │ └── popover-mobile-example.component.ts │ │ │ │ ├── popover-new-placement │ │ │ │ │ ├── popover-cdk-placement-example.component.html │ │ │ │ │ └── popover-cdk-placement-example.component.ts │ │ │ │ ├── popover-placement │ │ │ │ │ ├── popover-placement-example.component.html │ │ │ │ │ ├── popover-placement-example.component.scss │ │ │ │ │ └── popover-placement-example.component.ts │ │ │ │ ├── popover-programmatic │ │ │ │ │ ├── popover-programmatic-open-example.component.html │ │ │ │ │ ├── popover-programmatic-open-example.component.scss │ │ │ │ │ └── popover-programmatic-open-example.component.ts │ │ │ │ ├── popover-resizable │ │ │ │ │ ├── popover-resizable-example.component.html │ │ │ │ │ ├── popover-resizable-example.component.scss │ │ │ │ │ └── popover-resizable-example.component.ts │ │ │ │ ├── popover-scroll-example │ │ │ │ │ ├── popover-scroll-example.component.html │ │ │ │ │ ├── popover-scroll-example.component.scss │ │ │ │ │ └── popover-scroll-example.component.ts │ │ │ │ ├── popover-simple │ │ │ │ │ ├── popover-example.component.html │ │ │ │ │ ├── popover-example.component.scss │ │ │ │ │ └── popover-example.component.ts │ │ │ │ └── popover-trigger-example │ │ │ │ │ ├── popover-trigger-example.component.html │ │ │ │ │ └── popover-trigger-example.component.ts │ │ │ ├── index.ts │ │ │ ├── popover-docs.component.html │ │ │ ├── popover-docs.component.ts │ │ │ ├── popover-header │ │ │ │ ├── popover-header.component.html │ │ │ │ ├── popover-header.component.scss │ │ │ │ └── popover-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── product-switch │ │ │ ├── e2e │ │ │ │ ├── product-switch-contents.ts │ │ │ │ ├── product-switch.e2e-spec.ts │ │ │ │ ├── product-switch.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── product-switch-dnd-example.component.html │ │ │ │ ├── product-switch-dnd-example.component.ts │ │ │ │ ├── product-switch-list │ │ │ │ │ ├── product-switch-list-example.component.html │ │ │ │ │ └── product-switch-list-example.component.ts │ │ │ │ ├── product-switch-small-example.component.html │ │ │ │ └── product-switch-small-example.component.ts │ │ │ ├── index.ts │ │ │ ├── product-switch-docs-header │ │ │ │ ├── product-switch-docs-header.component.html │ │ │ │ ├── product-switch-docs-header.component.scss │ │ │ │ └── product-switch-docs-header.component.ts │ │ │ ├── product-switch-docs.component.html │ │ │ ├── product-switch-docs.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── progress-indicator │ │ │ ├── e2e │ │ │ │ ├── progress-indicator.e2e-spec.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── progress-indicator-animation.component.html │ │ │ │ ├── progress-indicator-animation.component.ts │ │ │ │ ├── progress-indicator-default.component.html │ │ │ │ ├── progress-indicator-default.component.ts │ │ │ │ ├── progress-indicator-state.component.html │ │ │ │ ├── progress-indicator-state.component.ts │ │ │ │ ├── progress-indicator-truncation.component.html │ │ │ │ └── progress-indicator-truncation.component.ts │ │ │ ├── index.ts │ │ │ ├── progress-indicator-docs.component.html │ │ │ ├── progress-indicator-docs.component.scss │ │ │ ├── progress-indicator-docs.component.ts │ │ │ ├── progress-indicator-header │ │ │ │ ├── progress-indicator-header.component.html │ │ │ │ └── progress-indicator-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── project.json │ │ ├── quick-view │ │ │ ├── e2e │ │ │ │ ├── quick-view-content.ts │ │ │ │ ├── quick-view.e2e-spec.ts │ │ │ │ ├── quick-view.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── quick-view-base-example.component.html │ │ │ │ ├── quick-view-base-example.component.ts │ │ │ │ ├── quick-view-dialog-example.component.html │ │ │ │ ├── quick-view-dialog-example.component.ts │ │ │ │ ├── quick-view-popover-example.component.html │ │ │ │ └── quick-view-popover-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── quick-view-docs-header │ │ │ │ ├── quick-view-docs-header.component.html │ │ │ │ ├── quick-view-docs-header.component.scss │ │ │ │ └── quick-view-docs-header.component.ts │ │ │ ├── quick-view-docs.component.html │ │ │ ├── quick-view-docs.component.ts │ │ │ └── tsconfig.json │ │ ├── radio │ │ │ ├── examples │ │ │ │ ├── index.ts │ │ │ │ ├── radio-example.component.html │ │ │ │ ├── radio-example.component.ts │ │ │ │ ├── radio-form-group-example.component.html │ │ │ │ ├── radio-form-group-example.component.scss │ │ │ │ ├── radio-form-group-example.component.ts │ │ │ │ ├── radio-truncation-example.component.html │ │ │ │ └── radio-truncation-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── radio-docs.component.html │ │ │ ├── radio-docs.component.ts │ │ │ ├── radio-header │ │ │ │ ├── radio-header.component.html │ │ │ │ └── radio-header.component.ts │ │ │ └── tsconfig.json │ │ ├── rating-indicator │ │ │ ├── e2e │ │ │ │ ├── rating-indicator.e2e-spec.ts │ │ │ │ ├── rating-indicator.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── index.ts │ │ │ │ ├── rating-indicator-example.component.html │ │ │ │ ├── rating-indicator-examples.component.ts │ │ │ │ ├── rating-indicator-ratings.component.html │ │ │ │ ├── rating-indicator-ratings.component.ts │ │ │ │ ├── rating-indicator-sizes.component.html │ │ │ │ ├── rating-indicator-sizes.component.ts │ │ │ │ ├── ri-custom-icon-example.component.html │ │ │ │ ├── ri-custom-icon-example.component.ts │ │ │ │ ├── ri-display-mode-example.component.html │ │ │ │ └── ri-display-mode-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── rating-indicator-docs-header │ │ │ │ ├── rating-indicator-docs-header.component.html │ │ │ │ └── rating-indicator-docs-header.component.ts │ │ │ ├── rating-indicator-docs.component.html │ │ │ ├── rating-indicator-docs.component.ts │ │ │ └── tsconfig.json │ │ ├── resizable-card-layout │ │ │ ├── e2e │ │ │ │ ├── resizable-card-layout.contents.ts │ │ │ │ ├── resizable-card-layout.e2e-spec.ts │ │ │ │ ├── resizable-card-layout.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── resizable-card-layout-example-itemconfig.component.html │ │ │ │ ├── resizable-card-layout-example-itemconfig.component.ts │ │ │ │ ├── resizable-card-layout-example-layoutconfig.component.html │ │ │ │ ├── resizable-card-layout-example-layoutconfig.component.ts │ │ │ │ ├── resizable-card-layout-example.component.html │ │ │ │ ├── resizable-card-layout-example.component.scss │ │ │ │ └── resizable-card-layout-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── resizable-card-layout-docs-header │ │ │ │ ├── resizable-card-layout-docs-header.component.html │ │ │ │ └── resizable-card-layout-docs-header.component.ts │ │ │ ├── resizable-card-layout-docs.component.html │ │ │ ├── resizable-card-layout-docs.component.ts │ │ │ └── tsconfig.json │ │ ├── schema │ │ │ ├── README.md │ │ │ ├── eslint.config.js │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── alert.schema.ts │ │ │ │ │ ├── button.schema.ts │ │ │ │ │ ├── core-schema.module.ts │ │ │ │ │ ├── dialog.schema.ts │ │ │ │ │ ├── input-group.schema.ts │ │ │ │ │ ├── message-strip.schema.ts │ │ │ │ │ ├── pagination.schema.ts │ │ │ │ │ ├── rating-indicator.schema.ts │ │ │ │ │ ├── schemas.ts │ │ │ │ │ ├── slider.schema.ts │ │ │ │ │ ├── switch.schema.ts │ │ │ │ │ ├── table.schema.ts │ │ │ │ │ ├── tabs.schema.ts │ │ │ │ │ └── time.schema.ts │ │ │ └── tsconfig.json │ │ ├── scroll-spy │ │ │ ├── e2e │ │ │ │ ├── scroll-spy.e2e-spec.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── scroll-spy-custom-example │ │ │ │ │ ├── scroll-spy-custom-example.component.html │ │ │ │ │ ├── scroll-spy-custom-example.component.scss │ │ │ │ │ └── scroll-spy-custom-example.component.ts │ │ │ │ ├── scroll-spy-custom-offset │ │ │ │ │ ├── scroll-spy-offset-example.component.html │ │ │ │ │ ├── scroll-spy-offset-example.component.scss │ │ │ │ │ └── scroll-spy-offset-example.component.ts │ │ │ │ └── scroll-spy-example │ │ │ │ │ ├── scroll-spy-example.component.html │ │ │ │ │ ├── scroll-spy-example.component.scss │ │ │ │ │ └── scroll-spy-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── scroll-spy-docs.component.html │ │ │ ├── scroll-spy-docs.component.scss │ │ │ ├── scroll-spy-docs.component.ts │ │ │ ├── scroll-spy-header │ │ │ │ ├── scroll-spy-header.component.html │ │ │ │ ├── scroll-spy-header.component.scss │ │ │ │ └── scroll-spy-header.component.ts │ │ │ └── tsconfig.json │ │ ├── scrollbar │ │ │ ├── e2e │ │ │ │ ├── scrollbar.e2e-spec.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── scrollbar-example.component.ts │ │ │ │ ├── scrollbar-no-horizontal-example.component.ts │ │ │ │ └── scrollbar-no-vertical-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── scrollbar-docs.component.html │ │ │ ├── scrollbar-docs.component.ts │ │ │ ├── scrollbar-header │ │ │ │ ├── scrollbar-header.component.html │ │ │ │ └── scrollbar-header.component.ts │ │ │ └── tsconfig.json │ │ ├── segmented-button │ │ │ ├── examples │ │ │ │ ├── segmented-button-complex-example │ │ │ │ │ ├── segmented-button-complex-example.component.html │ │ │ │ │ └── segmented-button-complex-example.component.ts │ │ │ │ ├── segmented-button-default-example.component.html │ │ │ │ ├── segmented-button-default-example.component.ts │ │ │ │ ├── segmented-button-form-example │ │ │ │ │ ├── segmented-button-form-example.component.html │ │ │ │ │ └── segmented-button-form-example.component.ts │ │ │ │ ├── segmented-button-toggle-example.component.html │ │ │ │ └── segmented-button-toggle-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── segmented-button-docs.component.html │ │ │ ├── segmented-button-docs.component.ts │ │ │ ├── segmented-button-header │ │ │ │ ├── segmented-button-header.component.html │ │ │ │ ├── segmented-button-header.component.scss │ │ │ │ └── segmented-button-header.component.ts │ │ │ └── tsconfig.json │ │ ├── select │ │ │ ├── e2e │ │ │ │ ├── select.e2e-spec.ts │ │ │ │ ├── select.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── select-adding-example │ │ │ │ │ ├── select-adding-example.component.html │ │ │ │ │ ├── select-adding-example.component.scss │ │ │ │ │ └── select-adding-example.component.ts │ │ │ │ ├── select-custom-comparator-example │ │ │ │ │ ├── select-custom-comparator-example.component.html │ │ │ │ │ └── select-custom-comparator-example.component.ts │ │ │ │ ├── select-custom-trigger │ │ │ │ │ ├── select-custom-trigger.component.html │ │ │ │ │ ├── select-custom-trigger.component.scss │ │ │ │ │ └── select-custom-trigger.component.ts │ │ │ │ ├── select-forms │ │ │ │ │ ├── select-forms.component.html │ │ │ │ │ ├── select-forms.component.scss │ │ │ │ │ └── select-forms.component.ts │ │ │ │ ├── select-height │ │ │ │ │ ├── select-max-height-example.component.html │ │ │ │ │ └── select-max-height-example.component.ts │ │ │ │ ├── select-mobile-example │ │ │ │ │ ├── select-mobile-example.component.html │ │ │ │ │ └── select-mobile-example.component.ts │ │ │ │ ├── select-mode-example │ │ │ │ │ ├── select-mode-example.component.html │ │ │ │ │ └── select-mode-example.component.ts │ │ │ │ ├── select-nested-options │ │ │ │ │ ├── select-nested-options.component.html │ │ │ │ │ ├── select-nested-options.component.scss │ │ │ │ │ └── select-nested-options.component.ts │ │ │ │ ├── select-programmatic-example │ │ │ │ │ ├── select-programmatic-example.component.html │ │ │ │ │ ├── select-programmatic-example.component.scss │ │ │ │ │ └── select-programmatic-example.component.ts │ │ │ │ └── select-semantic-state-example │ │ │ │ │ ├── select-semantic-state-example.component.html │ │ │ │ │ └── select-semantic-state-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── select-docs.component.html │ │ │ ├── select-docs.component.ts │ │ │ ├── select-header │ │ │ │ ├── select-header.component.html │ │ │ │ └── select-header.component.ts │ │ │ └── tsconfig.json │ │ ├── settings-dialog │ │ │ ├── examples │ │ │ │ ├── index.ts │ │ │ │ ├── template-based-settings-byline │ │ │ │ │ ├── template-based-settings-dialog-byline-example.component.html │ │ │ │ │ └── template-based-settings-dialog-byline-example.component.ts │ │ │ │ └── template-based-settings │ │ │ │ │ ├── template-based-settings-dialog-example.component.html │ │ │ │ │ └── template-based-settings-dialog-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── settings-dialog-docs-header │ │ │ │ ├── settings-dialog-docs-header.component.html │ │ │ │ └── settings-dialog-docs-header.component.ts │ │ │ ├── settings-dialog-docs.component.html │ │ │ ├── settings-dialog-docs.component.ts │ │ │ └── tsconfig.json │ │ ├── shellbar │ │ │ ├── e2e │ │ │ │ ├── shellbar.e2e-spec.ts │ │ │ │ ├── shellbar.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── shellbar-basic-example.component.html │ │ │ │ ├── shellbar-basic-example.component.ts │ │ │ │ ├── shellbar-branding-context-area-example │ │ │ │ │ ├── shellbar-branding-context-area-example.component.html │ │ │ │ │ └── shellbar-branding-context-area-example.component.ts │ │ │ │ ├── shellbar-collapsible-example.component.html │ │ │ │ ├── shellbar-collapsible-example.component.ts │ │ │ │ ├── shellbar-growing-group-example │ │ │ │ │ ├── shellbar-growing-group-example.component.html │ │ │ │ │ └── shellbar-growing-group-example.component.ts │ │ │ │ └── shellbar-responsive-example │ │ │ │ │ ├── shellbar-responsive-example.component.html │ │ │ │ │ └── shellbar-responsive-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── shellbar-docs-header │ │ │ │ ├── shellbar-docs-header.component.html │ │ │ │ ├── shellbar-docs-header.component.scss │ │ │ │ └── shellbar-docs-header.component.ts │ │ │ ├── shellbar-docs.component.html │ │ │ ├── shellbar-docs.component.ts │ │ │ └── tsconfig.json │ │ ├── side-navigation │ │ │ ├── examples │ │ │ │ ├── side-navigation-condensed-example │ │ │ │ │ ├── side-navigation-condensed-example.component.html │ │ │ │ │ └── side-navigation-condensed-example.component.ts │ │ │ │ ├── side-navigation-condensed-object-example │ │ │ │ │ ├── side-navigation-condensed-object-example.component.html │ │ │ │ │ └── side-navigation-condensed-object-example.component.ts │ │ │ │ ├── side-navigation-example.component.html │ │ │ │ ├── side-navigation-examples.component.scss │ │ │ │ ├── side-navigation-examples.component.ts │ │ │ │ ├── side-navigation-icons-example.component.html │ │ │ │ ├── side-navigation-multiple-selected-example │ │ │ │ │ ├── side-navigation-multiple-selected-example.component.html │ │ │ │ │ └── side-navigation-multiple-selected-example.component.ts │ │ │ │ ├── side-navigation-object-example │ │ │ │ │ ├── side-navigation-object-example.component.html │ │ │ │ │ └── side-navigation-object-example.component.ts │ │ │ │ └── side-navigation-programmatically-example │ │ │ │ │ ├── side-navigation-programmatically-example.component.html │ │ │ │ │ └── side-navigation-programmatically-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── side-navigation-docs.component.html │ │ │ ├── side-navigation-docs.component.ts │ │ │ ├── side-navigation-header │ │ │ │ ├── side-navigation-header.component.html │ │ │ │ ├── side-navigation-header.component.scss │ │ │ │ └── side-navigation-header.component.ts │ │ │ └── tsconfig.json │ │ ├── skeleton │ │ │ ├── e2e │ │ │ │ ├── skeleton.e2e-spec.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── complex │ │ │ │ │ ├── skeleton-complex-example.component.html │ │ │ │ │ └── skeleton-complex-example.component.ts │ │ │ │ └── component │ │ │ │ │ ├── skeleton-component-example.component.html │ │ │ │ │ └── skeleton-component-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── skeleton-docs.component.html │ │ │ ├── skeleton-docs.component.ts │ │ │ ├── skeleton-header │ │ │ │ ├── skeleton-header.component.html │ │ │ │ └── skeleton-header.component.ts │ │ │ └── tsconfig.json │ │ ├── slider │ │ │ ├── e2e │ │ │ │ ├── slider-contents.ts │ │ │ │ ├── slider.e2e-spec.ts │ │ │ │ ├── slider.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── base │ │ │ │ │ ├── slider-basic-example.component.html │ │ │ │ │ └── slider-basic-example.component.ts │ │ │ │ ├── cozy │ │ │ │ │ ├── slider-cozy-example.component.html │ │ │ │ │ └── slider-cozy-example.component.ts │ │ │ │ ├── custom-values │ │ │ │ │ ├── slider-custom-values-example.component.html │ │ │ │ │ └── slider-custom-values-example.component.ts │ │ │ │ ├── disabled │ │ │ │ │ ├── slider-disabled-example.component.html │ │ │ │ │ └── slider-disabled-example.component.ts │ │ │ │ ├── form │ │ │ │ │ ├── slider-form-example.component.html │ │ │ │ │ └── slider-form-example.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── range │ │ │ │ │ ├── slider-range-example.component.html │ │ │ │ │ └── slider-range-example.component.ts │ │ │ │ ├── ticks-and-labels │ │ │ │ │ ├── slider-ticks-and-labels-example.component.html │ │ │ │ │ └── slider-ticks-and-labels-example.component.ts │ │ │ │ ├── tooltip │ │ │ │ │ ├── slider-tooltip-example.component.html │ │ │ │ │ └── slider-tooltip-example.component.ts │ │ │ │ └── vertical │ │ │ │ │ ├── vertical-slider-example.component.html │ │ │ │ │ └── vertical-slider-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── slider-docs.component.html │ │ │ ├── slider-docs.component.ts │ │ │ ├── slider-header │ │ │ │ ├── slider-header.component.html │ │ │ │ ├── slider-header.component.scss │ │ │ │ └── slider-header.component.ts │ │ │ └── tsconfig.json │ │ ├── split-button │ │ │ ├── e2e │ │ │ │ ├── split-button.e2e-spec.ts │ │ │ │ ├── split-button.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── split-button-behaviors-example.component.html │ │ │ │ ├── split-button-behaviors-example.component.ts │ │ │ │ ├── split-button-examples.component.scss │ │ │ │ ├── split-button-icons-example.component.html │ │ │ │ ├── split-button-icons-example.component.ts │ │ │ │ ├── split-button-options-example.component.html │ │ │ │ ├── split-button-options-example.component.ts │ │ │ │ ├── split-button-programmatical-example.component.html │ │ │ │ ├── split-button-programmatical-example.component.ts │ │ │ │ ├── split-button-template-example.component.html │ │ │ │ ├── split-button-template-example.component.ts │ │ │ │ ├── split-button-types-example.component.html │ │ │ │ └── split-button-types-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── split-button-docs.component.html │ │ │ ├── split-button-docs.component.scss │ │ │ ├── split-button-docs.component.ts │ │ │ ├── split-button-header │ │ │ │ ├── split-button-header.component.html │ │ │ │ ├── split-button-header.component.scss │ │ │ │ └── split-button-header.component.ts │ │ │ └── tsconfig.json │ │ ├── status-indicator │ │ │ ├── examples │ │ │ │ ├── status-indicator-angled-filling.component.html │ │ │ │ ├── status-indicator-angled-filling.component.ts │ │ │ │ ├── status-indicator-circular-fill-anti-clockwise.component.html │ │ │ │ ├── status-indicator-circular-fill-anti-clockwise.component.ts │ │ │ │ ├── status-indicator-circular-fill-clockwise.component.html │ │ │ │ ├── status-indicator-circular-fill-clockwise.component.ts │ │ │ │ ├── status-indicator-clickable-type.component.html │ │ │ │ ├── status-indicator-clickable-type.component.ts │ │ │ │ ├── status-indicator-default.component.html │ │ │ │ ├── status-indicator-default.component.ts │ │ │ │ ├── status-indicator-fill-type.component.html │ │ │ │ ├── status-indicator-fill-type.component.ts │ │ │ │ ├── status-indicator-label.component.html │ │ │ │ ├── status-indicator-label.component.ts │ │ │ │ ├── status-indicator-linear-fill-type.component.html │ │ │ │ ├── status-indicator-linear-fill-type.component.ts │ │ │ │ ├── status-indicator-size.component.html │ │ │ │ └── status-indicator-size.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── status-indicator-docs.component.html │ │ │ ├── status-indicator-docs.component.scss │ │ │ ├── status-indicator-docs.component.ts │ │ │ ├── status-indicator-header │ │ │ │ ├── status-indicator-header.component.html │ │ │ │ └── status-indicator-header.component.ts │ │ │ └── tsconfig.json │ │ ├── step-input │ │ │ ├── e2e │ │ │ │ ├── step-input-content.ts │ │ │ │ ├── step-input.e2e-spec.ts │ │ │ │ ├── step-input.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── step-inpt-default-example │ │ │ │ │ └── step-input-default-example.component.ts │ │ │ │ ├── step-input-configuration-example │ │ │ │ │ └── step-input-configuration-example.component.ts │ │ │ │ ├── step-input-currency-example │ │ │ │ │ └── step-input-currency-example.component.ts │ │ │ │ ├── step-input-form-example │ │ │ │ │ └── step-input-form-example.component.ts │ │ │ │ ├── step-input-label-example │ │ │ │ │ └── step-input-label-example.component.ts │ │ │ │ ├── step-input-locale-example │ │ │ │ │ └── step-input-locale-example.component.ts │ │ │ │ └── step-input-state-example │ │ │ │ │ └── step-input-state-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── step-input-docs.component.html │ │ │ ├── step-input-docs.component.scss │ │ │ ├── step-input-docs.component.ts │ │ │ ├── step-input-header │ │ │ │ ├── step-input-header.component.html │ │ │ │ └── step-input-header.component.ts │ │ │ └── tsconfig.json │ │ ├── switch │ │ │ ├── e2e │ │ │ │ ├── switch.e2e-spec.ts │ │ │ │ ├── switch.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── disabled-switch-example │ │ │ │ │ ├── disabled-switch-example.component.html │ │ │ │ │ ├── disabled-switch-example.component.scss │ │ │ │ │ └── disabled-switch-example.component.ts │ │ │ │ ├── semantic-switch-example │ │ │ │ │ ├── semantic-switch-example.component.html │ │ │ │ │ └── semantic-switch-example.component.ts │ │ │ │ ├── switch-binding-example │ │ │ │ │ ├── switch-binding-example.component.html │ │ │ │ │ ├── switch-binding-example.component.scss │ │ │ │ │ └── switch-binding-example.component.ts │ │ │ │ ├── switch-form-example │ │ │ │ │ ├── switch-forms-example.component.html │ │ │ │ │ ├── switch-forms-example.component.scss │ │ │ │ │ └── switch-forms-example.component.ts │ │ │ │ └── switch-sizes-example │ │ │ │ │ ├── switch-sizes-example.component.html │ │ │ │ │ ├── switch-sizes-example.component.scss │ │ │ │ │ └── switch-sizes-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── switch-docs.component.html │ │ │ ├── switch-docs.component.ts │ │ │ ├── switch-header │ │ │ │ ├── switch-header.component.html │ │ │ │ ├── switch-header.component.scss │ │ │ │ └── switch-header.component.ts │ │ │ └── tsconfig.json │ │ ├── table │ │ │ ├── e2e │ │ │ │ ├── table-content.ts │ │ │ │ ├── table.e2e-spec.ts │ │ │ │ ├── table.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── loading │ │ │ │ │ ├── table-loading-example.component.html │ │ │ │ │ └── table-loading-example.component.ts │ │ │ │ ├── no-data │ │ │ │ │ ├── no-data-example.component.html │ │ │ │ │ └── no-data-example.component.ts │ │ │ │ ├── table-activable-example.component.html │ │ │ │ ├── table-activable-example.component.ts │ │ │ │ ├── table-cdk-example.component.html │ │ │ │ ├── table-cdk-example.component.scss │ │ │ │ ├── table-cdk-example.component.ts │ │ │ │ ├── table-checkboxes-example.component.html │ │ │ │ ├── table-checkboxes-example.component.ts │ │ │ │ ├── table-column-sorting-example.component.html │ │ │ │ ├── table-column-sorting-example.component.ts │ │ │ │ ├── table-custom-columns-example │ │ │ │ │ ├── table-custom-columns-example.component.html │ │ │ │ │ ├── table-custom-columns-example.component.ts │ │ │ │ │ └── table-custom-dialog.component.ts │ │ │ │ ├── table-example.component.html │ │ │ │ ├── table-example.component.ts │ │ │ │ ├── table-fixed-example.component.html │ │ │ │ ├── table-fixed-example.component.ts │ │ │ │ ├── table-focusable-example │ │ │ │ │ ├── table-focusable-example.component.html │ │ │ │ │ └── table-focusable-example.component.ts │ │ │ │ ├── table-footer-example.component.html │ │ │ │ ├── table-footer-example.component.ts │ │ │ │ ├── table-navigatable-row-example.component.html │ │ │ │ ├── table-navigatable-row-example.component.ts │ │ │ │ ├── table-page-scroll-example.component.html │ │ │ │ ├── table-page-scroll-example.component.ts │ │ │ │ ├── table-pagination-example.component.html │ │ │ │ ├── table-pagination-example.component.ts │ │ │ │ ├── table-popin-example │ │ │ │ │ ├── table-popin-example.component.html │ │ │ │ │ └── table-popin-example.component.ts │ │ │ │ ├── table-responsive-example.component.html │ │ │ │ ├── table-responsive-example.component.scss │ │ │ │ ├── table-responsive-example.component.ts │ │ │ │ ├── table-semantic-example.component.html │ │ │ │ ├── table-semantic-example.component.ts │ │ │ │ ├── table-toolbar-example.component.html │ │ │ │ ├── table-toolbar-example.component.ts │ │ │ │ ├── table-without-borders-example.component.html │ │ │ │ └── table-without-borders-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── table-docs-header │ │ │ │ ├── table-docs-header.component.html │ │ │ │ ├── table-docs-header.component.scss │ │ │ │ └── table-docs-header.component.ts │ │ │ ├── table-docs.component.html │ │ │ ├── table-docs.component.scss │ │ │ ├── table-docs.component.ts │ │ │ └── tsconfig.json │ │ ├── tabs │ │ │ ├── e2e │ │ │ │ ├── tabs.e2e-spec.ts │ │ │ │ ├── tabs.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── adding-tab-example │ │ │ │ │ ├── adding-tab-example.component.html │ │ │ │ │ ├── adding-tab-example.component.scss │ │ │ │ │ └── adding-tab-example.component.ts │ │ │ │ ├── complex-title-example │ │ │ │ │ ├── complex-title-example.component.html │ │ │ │ │ └── complex-title-example.component.ts │ │ │ │ ├── default-tab │ │ │ │ │ ├── default-tab-example.component.html │ │ │ │ │ └── default-tab-example.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── tab-collapsible-example │ │ │ │ │ ├── tab-collapsible-example.component.html │ │ │ │ │ └── tab-collapsible-example.component.ts │ │ │ │ ├── tab-collapsible-overflow-example │ │ │ │ │ ├── tab-collapsible-overflow-example.component.html │ │ │ │ │ └── tab-collapsible-overflow-example.component.ts │ │ │ │ ├── tab-counter-example │ │ │ │ │ ├── tab-counter-example.component.html │ │ │ │ │ └── tab-counter-example.component.ts │ │ │ │ ├── tab-filter-example │ │ │ │ │ ├── tab-filter-example.component.html │ │ │ │ │ └── tab-filter-example.component.ts │ │ │ │ ├── tab-form-element-example │ │ │ │ │ ├── tab-form-element-example.component.html │ │ │ │ │ └── tab-form-element-example.component.ts │ │ │ │ ├── tab-icon-only-example │ │ │ │ │ ├── tab-icon-only-example.component.html │ │ │ │ │ └── tab-icon-only-example.component.ts │ │ │ │ ├── tab-navigation-children │ │ │ │ │ └── tab-navigation-children.ts │ │ │ │ ├── tab-navigation-mode-example │ │ │ │ │ ├── tab-navigation-mode-example-component.ts │ │ │ │ │ └── tabs-navigation-mode-example.component.html │ │ │ │ ├── tab-process-example │ │ │ │ │ ├── tab-process-example.component.html │ │ │ │ │ └── tab-process-example.component.ts │ │ │ │ ├── tab-selection-example │ │ │ │ │ ├── tab-selection-example.component.html │ │ │ │ │ ├── tab-selection-example.component.scss │ │ │ │ │ └── tab-selection-example.component.ts │ │ │ │ ├── tab-stacked-content-example │ │ │ │ │ ├── tab-stacked-content-example.component.html │ │ │ │ │ └── tab-stacked-content-example.component.ts │ │ │ │ └── tabs-example │ │ │ │ │ ├── tabs-example.component.html │ │ │ │ │ └── tabs-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── tabs-docs.component.html │ │ │ ├── tabs-docs.component.scss │ │ │ ├── tabs-docs.component.ts │ │ │ ├── tabs-header │ │ │ │ ├── tabs-header.component.html │ │ │ │ ├── tabs-header.component.scss │ │ │ │ └── tabs-header.component.ts │ │ │ └── tsconfig.json │ │ ├── text │ │ │ ├── e2e │ │ │ │ ├── text-contents.ts │ │ │ │ ├── text.e2e-spec.ts │ │ │ │ ├── text.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── text-basic.component.html │ │ │ │ ├── text-basic.component.ts │ │ │ │ ├── text-expandable.component.html │ │ │ │ ├── text-expandable.component.ts │ │ │ │ ├── text-hyphenation.component.html │ │ │ │ ├── text-hyphenation.component.scss │ │ │ │ ├── text-hyphenation.component.ts │ │ │ │ ├── text-max-lines.component.html │ │ │ │ ├── text-max-lines.component.ts │ │ │ │ ├── text-whitespaces.component.html │ │ │ │ └── text-whitespaces.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── text-docs.component.html │ │ │ ├── text-docs.component.ts │ │ │ ├── text-header │ │ │ │ ├── text-header.component.html │ │ │ │ └── text-header.component.ts │ │ │ └── tsconfig.json │ │ ├── textarea │ │ │ ├── e2e │ │ │ │ ├── textarea-contents.ts │ │ │ │ ├── textarea.e2e-spec.ts │ │ │ │ ├── textarea.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── textarea-example.component.html │ │ │ │ ├── textarea-examples.component.ts │ │ │ │ ├── textarea-form-group-example.component.html │ │ │ │ ├── textarea-form-group-example.component.scss │ │ │ │ ├── textarea-form-group-example.component.ts │ │ │ │ ├── textarea-inline-help-example.component.html │ │ │ │ └── textarea-state-example.component.html │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── textarea-docs.component.html │ │ │ ├── textarea-docs.component.ts │ │ │ ├── textarea-header │ │ │ │ ├── textarea-header.component.html │ │ │ │ └── textarea-header.component.ts │ │ │ └── tsconfig.json │ │ ├── theming │ │ │ ├── e2e │ │ │ │ ├── theming.e2e-spec.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── custom-config-example.ts │ │ │ │ ├── custom-theme-example.component.html │ │ │ │ ├── custom-theme-example.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── theming-example.component.html │ │ │ │ ├── theming-example.component.ts │ │ │ │ ├── theming-url-example.component.html │ │ │ │ └── theming-url-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── theming-docs.component.html │ │ │ ├── theming-docs.component.ts │ │ │ ├── theming-header │ │ │ │ ├── theming-header.component.html │ │ │ │ └── theming-header.component.ts │ │ │ └── tsconfig.json │ │ ├── tile │ │ │ ├── examples │ │ │ │ ├── kpi-tile-example.component.html │ │ │ │ ├── kpi-tile-example.component.ts │ │ │ │ ├── launch-tile-example.component.html │ │ │ │ ├── launch-tile-example.component.scss │ │ │ │ ├── launch-tile-example.component.ts │ │ │ │ ├── misc-tile-example.component.html │ │ │ │ ├── misc-tile-example.component.ts │ │ │ │ ├── tile-columns-example.component.html │ │ │ │ ├── tile-columns-example.component.ts │ │ │ │ ├── tile-generic-example.component.html │ │ │ │ └── tile-generic-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── tile-docs-header │ │ │ │ ├── tile-docs-header.component.html │ │ │ │ ├── tile-docs-header.component.scss │ │ │ │ └── tile-docs-header.component.ts │ │ │ ├── tile-docs.component.html │ │ │ ├── tile-docs.component.ts │ │ │ └── tsconfig.json │ │ ├── time-picker │ │ │ ├── e2e │ │ │ │ ├── time-picker.e2e-spec.ts │ │ │ │ ├── time-picker.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── time-picker-allow-null-example.component.html │ │ │ │ ├── time-picker-allow-null-example.component.ts │ │ │ │ ├── time-picker-compact-example.component.html │ │ │ │ ├── time-picker-compact-example.component.ts │ │ │ │ ├── time-picker-disabled-example.component.html │ │ │ │ ├── time-picker-disabled-example.component.ts │ │ │ │ ├── time-picker-example.component.html │ │ │ │ ├── time-picker-example.component.ts │ │ │ │ ├── time-picker-form-example.component.html │ │ │ │ ├── time-picker-form-example.component.scss │ │ │ │ ├── time-picker-form-example.component.ts │ │ │ │ ├── time-picker-format-example.component.html │ │ │ │ ├── time-picker-format-example.component.ts │ │ │ │ └── time-picker-locale-example │ │ │ │ │ ├── time-picker-locale-example.component.html │ │ │ │ │ └── time-picker-locale-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── time-picker-docs.component.html │ │ │ ├── time-picker-docs.component.ts │ │ │ ├── time-picker-header │ │ │ │ ├── time-picker-header.component.html │ │ │ │ ├── time-picker-header.component.scss │ │ │ │ └── time-picker-header.component.ts │ │ │ └── tsconfig.json │ │ ├── time │ │ │ ├── e2e │ │ │ │ ├── time-contents.ts │ │ │ │ ├── time.e2e-spec.ts │ │ │ │ ├── time.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── time-12-example.component.html │ │ │ │ ├── time-12-example.component.ts │ │ │ │ ├── time-example.component.html │ │ │ │ ├── time-example.component.ts │ │ │ │ ├── time-form-example.component.html │ │ │ │ ├── time-form-example.component.scss │ │ │ │ ├── time-form-example.component.ts │ │ │ │ ├── time-no-seconds-example.component.html │ │ │ │ ├── time-no-seconds-example.component.ts │ │ │ │ ├── time-no-spinners-example │ │ │ │ │ ├── time-no-spinners-example.component.html │ │ │ │ │ └── time-no-spinners-example.component.ts │ │ │ │ ├── time-only-hours-example.component.html │ │ │ │ ├── time-only-hours-example.component.ts │ │ │ │ ├── time-programmatically-example.component.html │ │ │ │ ├── time-programmatically-example.component.ts │ │ │ │ ├── time-sizes-example.component.html │ │ │ │ ├── time-sizes-example.component.ts │ │ │ │ └── time-two-digits-example │ │ │ │ │ ├── time-two-digits-example.component.html │ │ │ │ │ └── time-two-digits-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── time-docs.component.html │ │ │ ├── time-docs.component.ts │ │ │ ├── time-header │ │ │ │ ├── time-header.component.html │ │ │ │ ├── time-header.component.scss │ │ │ │ └── time-header.component.ts │ │ │ └── tsconfig.json │ │ ├── timeline │ │ │ ├── e2e │ │ │ │ ├── timeline.e2e-spec.ts │ │ │ │ ├── timeline.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── loading │ │ │ │ │ ├── timeline-loading-example.component.html │ │ │ │ │ └── timeline-loading-example.component.ts │ │ │ │ ├── timeline-basic-example │ │ │ │ │ ├── timeline-basic-example.component.html │ │ │ │ │ ├── timeline-basic-example.component.scss │ │ │ │ │ ├── timeline-basic-example.component.ts │ │ │ │ │ └── timeline-example-data.ts │ │ │ │ ├── timeline-horizontal-axis-example.component.ts │ │ │ │ ├── timeline-horizontal-double-side-example.component.ts │ │ │ │ ├── timeline-template-example.component.html │ │ │ │ └── timeline-vertical-double-side-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── timeline-docs.component.html │ │ │ ├── timeline-docs.component.ts │ │ │ ├── timeline-header-docs │ │ │ │ ├── timeline-header-docs.component.html │ │ │ │ └── timeline-header-docs.component.ts │ │ │ └── tsconfig.json │ │ ├── title │ │ │ ├── e2e │ │ │ │ ├── title-contents.ts │ │ │ │ ├── title.e2e-spec.ts │ │ │ │ ├── title.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── title-elision-example.component.html │ │ │ │ ├── title-examples.component.ts │ │ │ │ ├── title-semantic-example.component.html │ │ │ │ ├── title-visual-example.component.html │ │ │ │ └── title-wrapping-example.component.html │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── title-docs.component.html │ │ │ ├── title-docs.component.ts │ │ │ ├── title-header │ │ │ │ ├── title-header.component.html │ │ │ │ └── title-header.component.ts │ │ │ └── tsconfig.json │ │ ├── token │ │ │ ├── e2e │ │ │ │ ├── token.e2e-spec.ts │ │ │ │ ├── token.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── token-compact-example │ │ │ │ │ ├── token-compact-example.component.html │ │ │ │ │ └── token-compact-example.component.ts │ │ │ │ ├── token-example │ │ │ │ │ ├── token-example.component.html │ │ │ │ │ └── token-example.component.ts │ │ │ │ ├── token-readonly-example │ │ │ │ │ ├── token-readonly-example.component.html │ │ │ │ │ └── token-readonly-example.component.ts │ │ │ │ ├── token-selected-example │ │ │ │ │ ├── token-selected-example.component.html │ │ │ │ │ └── token-selected-example.component.ts │ │ │ │ ├── tokenizer-compact-example │ │ │ │ │ ├── tokenizer-compact-example.component.html │ │ │ │ │ └── tokenizer-compact-example.component.ts │ │ │ │ └── tokenizer-example │ │ │ │ │ ├── tokenizer-example.component.html │ │ │ │ │ └── tokenizer-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── token-docs.component.html │ │ │ ├── token-docs.component.scss │ │ │ ├── token-docs.component.ts │ │ │ ├── token-header │ │ │ │ ├── token-header.component.html │ │ │ │ ├── token-header.component.scss │ │ │ │ └── token-header.component.ts │ │ │ └── tsconfig.json │ │ ├── toolbar │ │ │ ├── e2e │ │ │ │ ├── toolbar-contents.ts │ │ │ │ ├── toolbar.e2e-spec.ts │ │ │ │ ├── toolbar.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── toolbar-example.component.ts │ │ │ │ ├── toolbar-overflow-example.component.html │ │ │ │ ├── toolbar-overflow-example.component.ts │ │ │ │ ├── toolbar-overflow-grouping-example.component.html │ │ │ │ ├── toolbar-overflow-priority-example.component.html │ │ │ │ ├── toolbar-separator-example.component.html │ │ │ │ ├── toolbar-spacer-example.component.html │ │ │ │ ├── toolbar-title-example.component.html │ │ │ │ └── toolbar-type-example.component.html │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── toolbar-documentation.component.html │ │ │ ├── toolbar-documentation.component.scss │ │ │ ├── toolbar-documentation.component.ts │ │ │ ├── toolbar-header │ │ │ │ ├── toolbar-header.component.html │ │ │ │ ├── toolbar-header.component.scss │ │ │ │ └── toolbar-header.component.ts │ │ │ └── tsconfig.json │ │ ├── tree │ │ │ ├── e2e │ │ │ │ ├── tree.e2e-spec.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── lazily-loaded-tree-items-example.component.html │ │ │ │ ├── lazily-loaded-tree-items-example.component.ts │ │ │ │ ├── navigatable-tree-example.component.html │ │ │ │ ├── navigatable-tree-example.component.ts │ │ │ │ ├── simple-tree-example.component.html │ │ │ │ ├── simple-tree-example.component.ts │ │ │ │ ├── tree-action-buttons-example.component.html │ │ │ │ ├── tree-action-buttons-example.component.ts │ │ │ │ ├── tree-highlight-indicators-example.component.html │ │ │ │ ├── tree-highlight-indicators-example.component.ts │ │ │ │ ├── tree-with-forms-example.component.html │ │ │ │ └── tree-with-forms-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── tree-docs.component.html │ │ │ ├── tree-docs.component.ts │ │ │ ├── tree-header │ │ │ │ ├── tree-header.component.html │ │ │ │ ├── tree-header.component.scss │ │ │ │ └── tree-header.component.ts │ │ │ └── tsconfig.json │ │ ├── truncate │ │ │ ├── examples │ │ │ │ ├── truncate-example.component.ts │ │ │ │ └── truncate-text-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── truncate-docs-header │ │ │ │ ├── truncate-docs-header.component.html │ │ │ │ └── truncate-docs-header.component.ts │ │ │ ├── truncate-docs.component.html │ │ │ ├── truncate-docs.component.ts │ │ │ └── tsconfig.json │ │ ├── tsconfig.json │ │ ├── upload-collection │ │ │ ├── e2e │ │ │ │ ├── tsconfig.json │ │ │ │ ├── upload-collection-contents.ts │ │ │ │ ├── upload-collection.e2e-spec.ts │ │ │ │ └── upload-collection.po.ts │ │ │ ├── examples │ │ │ │ ├── upload-collection-complex-example.component.html │ │ │ │ ├── upload-collection-complex-example.component.ts │ │ │ │ ├── upload-collection-custom-example.component.html │ │ │ │ ├── upload-collection-custom-example.component.ts │ │ │ │ ├── upload-collection-empty-example.component.html │ │ │ │ ├── upload-collection-empty-example.component.ts │ │ │ │ ├── upload-collection-example.component.html │ │ │ │ ├── upload-collection-example.component.ts │ │ │ │ ├── upload-collection-small-example.component.html │ │ │ │ └── upload-collection-small-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── tsconfig.json │ │ │ ├── upload-collection-docs.component.html │ │ │ ├── upload-collection-docs.component.ts │ │ │ └── upload-collection-header │ │ │ │ ├── upload-collection-header.component.html │ │ │ │ └── upload-collection-header.component.ts │ │ ├── user-menu │ │ │ ├── examples │ │ │ │ ├── user-menu-default-example.component.html │ │ │ │ ├── user-menu-default-example.component.ts │ │ │ │ ├── user-menu-mobile-example.component.html │ │ │ │ └── user-menu-mobile-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── tsconfig.json │ │ │ ├── user-menu-docs.component.html │ │ │ ├── user-menu-docs.component.ts │ │ │ └── user-menu-header │ │ │ │ ├── user-menu-header.component.html │ │ │ │ └── user-menu-header.component.ts │ │ ├── vertical-navigation │ │ │ ├── e2e │ │ │ │ ├── tsconfig.json │ │ │ │ ├── vertical-navigation.e2e-spec.ts │ │ │ │ └── vertical-navigation.po.ts │ │ │ ├── examples │ │ │ │ ├── vertical-navigation-condensed-example.component.html │ │ │ │ ├── vertical-navigation-condensed-example.component.ts │ │ │ │ ├── vertical-navigation-default-example.component.html │ │ │ │ ├── vertical-navigation-default-example.component.ts │ │ │ │ ├── vertical-navigation-grouping-example.component.html │ │ │ │ ├── vertical-navigation-grouping-example.component.ts │ │ │ │ ├── vertical-navigation-no-icons-example.component.html │ │ │ │ └── vertical-navigation-no-icons-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── tsconfig.json │ │ │ ├── vertical-navigation-docs.component.html │ │ │ ├── vertical-navigation-docs.component.ts │ │ │ └── vertical-navigation-header │ │ │ │ ├── vertical-navigation-header.component.html │ │ │ │ └── vertical-navigation-header.component.ts │ │ └── wizard │ │ │ ├── e2e │ │ │ ├── tsconfig.json │ │ │ ├── wizard.e2e-spec.ts │ │ │ ├── wizard.po.ts │ │ │ └── wizard.tags.ts │ │ │ ├── examples │ │ │ ├── loading │ │ │ │ ├── wizard-loading-example.component.html │ │ │ │ ├── wizard-loading-example.component.scss │ │ │ │ └── wizard-loading-example.component.ts │ │ │ ├── wizard-branching-example.component.html │ │ │ ├── wizard-branching-example.component.scss │ │ │ ├── wizard-branching-example.component.ts │ │ │ ├── wizard-customizable-example.component.html │ │ │ ├── wizard-customizable-example.component.scss │ │ │ ├── wizard-customizable-example.component.ts │ │ │ ├── wizard-dialog-example.component.html │ │ │ ├── wizard-dialog-example.component.scss │ │ │ ├── wizard-dialog-example.component.ts │ │ │ ├── wizard-example.component.html │ │ │ ├── wizard-example.component.scss │ │ │ ├── wizard-example.component.ts │ │ │ ├── wizard-mobile-example.component.html │ │ │ ├── wizard-mobile-example.component.ts │ │ │ ├── wizard-ngfor-example.component.html │ │ │ ├── wizard-ngfor-example.component.scss │ │ │ ├── wizard-ngfor-example.component.ts │ │ │ ├── wizard-visible-summary-example.component.html │ │ │ ├── wizard-visible-summary-example.component.scss │ │ │ └── wizard-visible-summary-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── tsconfig.json │ │ │ ├── wizard-docs.component.html │ │ │ ├── wizard-docs.component.ts │ │ │ └── wizard-header │ │ │ ├── wizard-header.component.html │ │ │ └── wizard-header.component.ts │ ├── cx │ │ ├── api-files.ts │ │ ├── docs-data.json │ │ ├── docs-routes.ts │ │ ├── eslint.config.js │ │ ├── index.ts │ │ ├── project.json │ │ ├── side-navigation │ │ │ ├── examples │ │ │ │ ├── side-navigation-cozy-wide-icon-3-level-example.component.html │ │ │ │ ├── side-navigation-cozy-wide-icon-3-level-example.component.ts │ │ │ │ ├── side-navigation-cozy-wide-text-only-1-level-example.component.html │ │ │ │ ├── side-navigation-cozy-wide-text-only-1-level-example.component.ts │ │ │ │ ├── side-navigation-cozy-wide-text-only-3-level-example.component.html │ │ │ │ ├── side-navigation-cozy-wide-text-only-3-level-example.component.ts │ │ │ │ ├── side-navigation-dynamic-width-example.component.html │ │ │ │ ├── side-navigation-dynamic-width-example.component.ts │ │ │ │ ├── side-navigation-expand-collapse-example.component.html │ │ │ │ ├── side-navigation-expand-collapse-example.component.ts │ │ │ │ ├── side-navigation-filter-example.component.html │ │ │ │ ├── side-navigation-filter-example.component.ts │ │ │ │ ├── side-navigation-mobile-example.component.html │ │ │ │ ├── side-navigation-mobile-example.component.ts │ │ │ │ ├── side-navigation-narrow-example.component.html │ │ │ │ ├── side-navigation-narrow-example.component.ts │ │ │ │ ├── side-navigation-overflow-example.component.html │ │ │ │ ├── side-navigation-overflow-example.component.ts │ │ │ │ ├── side-navigation-shellbar-example.component.html │ │ │ │ ├── side-navigation-shellbar-example.component.ts │ │ │ │ ├── side-navigation-wide-icon-1-level-example.component.html │ │ │ │ └── side-navigation-wide-icon-1-level-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── side-navigation-docs.component.html │ │ │ ├── side-navigation-docs.component.ts │ │ │ ├── side-navigation-header │ │ │ │ ├── side-navigation-header.component.html │ │ │ │ └── side-navigation-header.component.ts │ │ │ └── tsconfig.json │ │ └── tsconfig.json │ ├── i18n │ │ ├── changing-translations │ │ │ ├── changing-translations-docs.component.html │ │ │ ├── changing-translations-docs.component.ts │ │ │ ├── changing-translations-header │ │ │ │ ├── changing-translations-header.component.html │ │ │ │ └── changing-translations-header.component.ts │ │ │ ├── examples │ │ │ │ ├── i18n-language-change-example │ │ │ │ │ ├── language-change-example.component.html │ │ │ │ │ └── language-change-example.component.ts │ │ │ │ └── i18n-locale-change-example │ │ │ │ │ ├── locale-change-example.component.html │ │ │ │ │ └── locale-change-example.component.ts │ │ │ └── index.ts │ │ ├── docs-data.json │ │ ├── docs-routes.ts │ │ ├── eslint.config.js │ │ ├── index.ts │ │ ├── loading-translations │ │ │ ├── index.ts │ │ │ ├── loading-translations-docs.component.html │ │ │ ├── loading-translations-docs.component.ts │ │ │ └── loading-translations-header │ │ │ │ ├── loading-translations-header.component.html │ │ │ │ └── loading-translations-header.component.ts │ │ ├── patching-translations │ │ │ ├── examples │ │ │ │ └── i18n-translation-customization-example │ │ │ │ │ ├── i18n-translation-customization-example.component.html │ │ │ │ │ ├── i18n-translation-customization-example.component.ts │ │ │ │ │ ├── translation-wrapper-1.component.ts │ │ │ │ │ └── translation-wrapper-2.component.ts │ │ │ ├── index.ts │ │ │ ├── patching-translations-docs.component.html │ │ │ ├── patching-translations-docs.component.ts │ │ │ └── patching-translations-header │ │ │ │ ├── patching-translations-header.component.html │ │ │ │ └── patching-translations-header.component.ts │ │ ├── platform-i18n-header │ │ │ ├── platform-i18n-header.component.html │ │ │ └── platform-i18n-header.component.ts │ │ ├── project.json │ │ ├── translation-resolver │ │ │ ├── examples │ │ │ │ ├── basic-usage-example.component.ts │ │ │ │ ├── using-translation-pipe-example.component.ts │ │ │ │ └── using-utility-functions-example.component.ts │ │ │ ├── index.ts │ │ │ ├── translation-resolver-docs.component.html │ │ │ ├── translation-resolver-docs.component.ts │ │ │ └── translation-resolver-header │ │ │ │ ├── translation-resolver-header.component.html │ │ │ │ └── translation-resolver-header.component.ts │ │ ├── tsconfig.json │ │ ├── writing-translations.component.html │ │ └── writing-translations.component.ts │ ├── platform │ │ ├── action-list-item │ │ │ ├── examples │ │ │ │ ├── platform-action-list-item-border-less-example.component.html │ │ │ │ ├── platform-action-list-item-border-less-example.component.ts │ │ │ │ ├── platform-action-list-item-example.component.html │ │ │ │ └── platform-action-list-item-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-action-list-item-docs.component.html │ │ │ ├── platform-action-list-item-docs.component.ts │ │ │ ├── platform-action-list-item-header │ │ │ │ ├── platform-action-list-item-header.component.html │ │ │ │ └── platform-action-list-item-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── api-files.ts │ │ ├── approval-flow │ │ │ ├── e2e │ │ │ │ ├── approval-flow-contents.ts │ │ │ │ ├── approval-flow.e2e-spec.ts │ │ │ │ ├── approval-flow.po.ts │ │ │ │ ├── approval-flow.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── platform-approval-flow-custom-status-example.component.html │ │ │ │ ├── platform-approval-flow-custom-status-example.component.ts │ │ │ │ ├── platform-approval-flow-example.component.html │ │ │ │ └── platform-approval-flow-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-approval-flow-docs.component.html │ │ │ ├── platform-approval-flow-docs.component.ts │ │ │ ├── platform-approval-flow-header │ │ │ │ ├── platform-approval-flow-header.component.html │ │ │ │ ├── platform-approval-flow-header.component.scss │ │ │ │ └── platform-approval-flow-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── button │ │ │ ├── examples │ │ │ │ ├── platform-button-examples.component.ts │ │ │ │ ├── platform-button-examples.scss │ │ │ │ ├── platform-button-icons-example.component.html │ │ │ │ ├── platform-button-truncate-example.component.html │ │ │ │ └── platform-button-types-example.component.html │ │ │ ├── index.ts │ │ │ ├── platform-button-docs.component.html │ │ │ ├── platform-button-docs.component.ts │ │ │ ├── platform-button-header │ │ │ │ ├── platform-button-header.component.html │ │ │ │ ├── platform-button-header.component.scss │ │ │ │ └── platform-button-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── checkbox-group │ │ │ ├── e2e │ │ │ │ ├── checkbox-group-page-content.ts │ │ │ │ ├── checkbox-group.e2e-spec.ts │ │ │ │ ├── checkbox-group.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── platform-checkbox-group-content-checkbox.component.html │ │ │ │ ├── platform-checkbox-group-content-checkbox.component.ts │ │ │ │ ├── platform-checkbox-group-example.component.html │ │ │ │ ├── platform-checkbox-group-examples.component.ts │ │ │ │ ├── platform-checkbox-group-list-object.component.html │ │ │ │ ├── platform-checkbox-group-list-object.component.ts │ │ │ │ ├── platform-checkbox-group-list.component.html │ │ │ │ └── platform-checkbox-group-list.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-checkbox-group-docs.component.html │ │ │ ├── platform-checkbox-group-docs.component.ts │ │ │ ├── platform-checkbox-group-header │ │ │ │ ├── platform-checkbox-group-header.component.html │ │ │ │ └── platform-checkbox-group-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── checkbox │ │ │ ├── e2e │ │ │ │ ├── checkbox-page-contents.ts │ │ │ │ ├── checkbox.e2e-spec.ts │ │ │ │ ├── checkbox.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── platform-binary-checkbox-no-form.component.html │ │ │ │ ├── platform-binary-checkbox-no-form.component.ts │ │ │ │ ├── platform-binary-checkbox.component.html │ │ │ │ ├── platform-binary-checkbox.component.ts │ │ │ │ ├── platform-checkbox-a11y.component.html │ │ │ │ ├── platform-checkbox-a11y.component.ts │ │ │ │ ├── platform-checkbox-error-handling.component.html │ │ │ │ ├── platform-checkbox-error-handling.component.ts │ │ │ │ ├── platform-multiselect-checkbox.component.html │ │ │ │ ├── platform-multiselect-checkbox.component.ts │ │ │ │ ├── platform-tristate-checkbox.component.html │ │ │ │ └── platform-tristate-checkbox.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-checkbox-docs.component.html │ │ │ ├── platform-checkbox-docs.component.ts │ │ │ ├── platform-checkbox-header │ │ │ │ ├── platform-checkbox-header.component.html │ │ │ │ └── platform-checkbox-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── combobox │ │ │ ├── e2e │ │ │ │ ├── combobox.e2e-spec.ts │ │ │ │ ├── combobox.page-content.ts │ │ │ │ ├── combobox.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── combobox-byline │ │ │ │ │ ├── combobox-byline-example.component.html │ │ │ │ │ └── combobox-byline-example.component.ts │ │ │ │ ├── combobox-columns │ │ │ │ │ ├── combobox-columns-example.component.html │ │ │ │ │ └── combobox-columns-example.component.ts │ │ │ │ ├── combobox-datasource │ │ │ │ │ ├── combobox-datasource-example.component.html │ │ │ │ │ └── combobox-datasource-example.component.ts │ │ │ │ ├── combobox-forms │ │ │ │ │ ├── combobox-forms-example.component.html │ │ │ │ │ └── combobox-forms-example.component.ts │ │ │ │ ├── combobox-group │ │ │ │ │ ├── combobox-group-example.component.html │ │ │ │ │ └── combobox-group-example.component.ts │ │ │ │ ├── combobox-loading │ │ │ │ │ ├── combobox-loading-example.component.html │ │ │ │ │ └── combobox-loading-example.component.ts │ │ │ │ ├── combobox-mobile │ │ │ │ │ ├── combobox-mobile-example.component.html │ │ │ │ │ └── combobox-mobile-example.component.ts │ │ │ │ ├── combobox-standard │ │ │ │ │ ├── combobox-standard.component.html │ │ │ │ │ └── combobox-standard.component.ts │ │ │ │ ├── combobox-states │ │ │ │ │ ├── combobox-states-example.component.html │ │ │ │ │ └── combobox-states-example.component.ts │ │ │ │ └── combobox-templates │ │ │ │ │ ├── combobox-templates-example.component.html │ │ │ │ │ └── combobox-templates-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-combobox-docs.component.html │ │ │ ├── platform-combobox-docs.component.ts │ │ │ ├── platform-combobox-header │ │ │ │ ├── platform-combobox-header.component.html │ │ │ │ └── platform-combobox-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── date-picker │ │ │ ├── e2e │ │ │ │ ├── date-picker.e2e-spec.ts │ │ │ │ ├── date-picker.po.ts │ │ │ │ ├── date-picker.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── mobile │ │ │ │ │ ├── platform-date-picker-mobile-example.component.html │ │ │ │ │ └── platform-date-picker-mobile-example.component.ts │ │ │ │ ├── platform-date-picker-disable-func-example.component.html │ │ │ │ ├── platform-date-picker-disable-func-example.component.ts │ │ │ │ ├── platform-date-picker-example.component.html │ │ │ │ ├── platform-date-picker-example.component.ts │ │ │ │ ├── platform-date-picker-format-example.component.html │ │ │ │ ├── platform-date-picker-format-example.component.ts │ │ │ │ ├── platform-date-picker-i18n-example.component.html │ │ │ │ ├── platform-date-picker-i18n-example.component.ts │ │ │ │ └── platform-date-picker-update-on-blur-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-date-picker-docs.component.html │ │ │ ├── platform-date-picker-docs.component.ts │ │ │ ├── platform-date-picker-header │ │ │ │ ├── platform-date-picker-header.component.html │ │ │ │ └── platform-date-picker-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── datetime-picker │ │ │ ├── e2e │ │ │ │ ├── datetime-picker.e2e-spec.ts │ │ │ │ ├── datetime-picker.po.ts │ │ │ │ ├── datetime-picker.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── mobile │ │ │ │ │ ├── platform-datetime-picker-mobile-example.component.html │ │ │ │ │ └── platform-datetime-picker-mobile-example.component.ts │ │ │ │ ├── platform-datetime-picker-basic-example.component.html │ │ │ │ ├── platform-datetime-picker-basic-example.component.ts │ │ │ │ ├── platform-datetime-picker-disable-function-example.component.html │ │ │ │ ├── platform-datetime-picker-disable-function-example.component.ts │ │ │ │ ├── platform-datetime-picker-reactive-example.component.html │ │ │ │ ├── platform-datetime-picker-reactive-example.component.ts │ │ │ │ ├── platform-datetime-picker-template-example.component.html │ │ │ │ ├── platform-datetime-picker-template-example.component.ts │ │ │ │ └── platform-datetime-picker-update-on-blur-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-datetime-picker-docs.component.html │ │ │ ├── platform-datetime-picker-docs.component.ts │ │ │ ├── platform-datetime-picker-header │ │ │ │ ├── platform-datetime-picker-header.component.html │ │ │ │ └── platform-datetime-picker-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── display-list-item │ │ │ ├── e2e │ │ │ │ ├── display-list-item-contents.ts │ │ │ │ ├── display-list-item.e2e-spec.ts │ │ │ │ ├── display-list-item.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── platform-display-list-item-border-less-example.component.html │ │ │ │ ├── platform-display-list-item-border-less-example.component.ts │ │ │ │ ├── platform-display-list-item-example.component.html │ │ │ │ ├── platform-display-list-item-example.component.ts │ │ │ │ ├── platform-display-list-item-with-navigation-example.component.html │ │ │ │ └── platform-display-list-item-with-navigation-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-display-list-item-docs.component.html │ │ │ ├── platform-display-list-item-docs.component.ts │ │ │ ├── platform-display-list-item-header │ │ │ │ ├── platform-display-list-item-header.component.html │ │ │ │ └── platform-display-list-item-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── docs-data.json │ │ ├── docs-routes.ts │ │ ├── dynamic-page │ │ │ ├── e2e │ │ │ │ ├── dynamic-page-contents.ts │ │ │ │ ├── dynamic-page.e2e-spec.ts │ │ │ │ ├── dynamic-page.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── platform-dynamic-page-example.component.html │ │ │ │ ├── platform-dynamic-page-example.component.scss │ │ │ │ ├── platform-dynamic-page-example.component.ts │ │ │ │ ├── platform-dynamic-page-facets-example.component.html │ │ │ │ ├── platform-dynamic-page-facets-example.component.scss │ │ │ │ ├── platform-dynamic-page-facets-example.component.ts │ │ │ │ ├── platform-dynamic-page-flexible-column-example.component.html │ │ │ │ ├── platform-dynamic-page-flexible-column-example.component.scss │ │ │ │ ├── platform-dynamic-page-flexible-column-example.component.ts │ │ │ │ ├── platform-dynamic-page-non-collapsible-example.component.html │ │ │ │ ├── platform-dynamic-page-non-collapsible-example.component.scss │ │ │ │ ├── platform-dynamic-page-non-collapsible-example.component.ts │ │ │ │ ├── platform-dynamic-page-page-overflow.service.ts │ │ │ │ ├── platform-dynamic-page-responsive-padding-example.component.html │ │ │ │ ├── platform-dynamic-page-responsive-padding-example.component.scss │ │ │ │ ├── platform-dynamic-page-responsive-padding-example.component.ts │ │ │ │ ├── platform-dynamic-page-snap-scroll-example.component.html │ │ │ │ ├── platform-dynamic-page-snap-scroll-example.component.scss │ │ │ │ ├── platform-dynamic-page-snap-scroll-example.component.ts │ │ │ │ ├── platform-dynamic-page-tabbed-example.component.html │ │ │ │ ├── platform-dynamic-page-tabbed-example.component.scss │ │ │ │ └── platform-dynamic-page-tabbed-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-dynamic-page-docs.component.html │ │ │ ├── platform-dynamic-page-docs.component.ts │ │ │ ├── platform-dynamic-page-header │ │ │ │ ├── platform-dynamic-page-header.component.html │ │ │ │ └── platform-dynamic-page-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── eslint.config.js │ │ ├── feed-input │ │ │ ├── e2e │ │ │ │ ├── feed-input-page-contents.ts │ │ │ │ ├── feed-input.e2e-spec.ts │ │ │ │ ├── feed-input.po.ts │ │ │ │ ├── feed-input.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── platform-feed-input-disabled-example │ │ │ │ │ ├── platform-feed-input-disabled-example.component.html │ │ │ │ │ └── platform-feed-input-disabled-example.component.ts │ │ │ │ ├── platform-feed-input-example │ │ │ │ │ ├── platform-feed-input-example.component.html │ │ │ │ │ └── platform-feed-input-example.component.ts │ │ │ │ ├── platform-feed-input-max-height-example │ │ │ │ │ ├── platform-feed-input-max-height-example.component.html │ │ │ │ │ └── platform-feed-input-max-height-example.component.ts │ │ │ │ ├── platform-feed-input-no-avatar-example │ │ │ │ │ ├── platform-feed-input-no-avatar-example.component.html │ │ │ │ │ └── platform-feed-input-no-avatar-example.component.ts │ │ │ │ └── platform-feed-input-placeholder-example │ │ │ │ │ ├── platform-feed-input-placeholder-example.component.html │ │ │ │ │ └── platform-feed-input-placeholder-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-feed-input-docs.component.html │ │ │ ├── platform-feed-input-docs.component.ts │ │ │ ├── platform-feed-input-header │ │ │ │ ├── platform-feed-input-header.component.html │ │ │ │ ├── platform-feed-input-header.component.scss │ │ │ │ └── platform-feed-input-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── form-container │ │ │ ├── e2e │ │ │ │ ├── form-container.e2e-spec.ts │ │ │ │ ├── form-container.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── platform-field-layout │ │ │ │ │ ├── platform-field-column-change-example.component.html │ │ │ │ │ ├── platform-field-column-change-example.component.ts │ │ │ │ │ ├── platform-field-isinline-change-example.component.html │ │ │ │ │ └── platform-field-isinline-change-example.component.ts │ │ │ │ ├── platform-form-basic │ │ │ │ │ ├── platform-form-basic-example.component.html │ │ │ │ │ └── platform-form-basic-example.component.ts │ │ │ │ ├── platform-form-container-complex-example.component.html │ │ │ │ ├── platform-form-container-complex-example.component.ts │ │ │ │ ├── platform-form-container-possible-example.component.html │ │ │ │ ├── platform-form-container-possible-example.component.ts │ │ │ │ ├── platform-form-container-recommended-example.component.html │ │ │ │ ├── platform-form-container-recommended-example.component.ts │ │ │ │ ├── platform-form-custom-layout.component.html │ │ │ │ ├── platform-form-custom-layout.component.ts │ │ │ │ └── platform-form-group │ │ │ │ │ ├── platform-form-group-example.component.html │ │ │ │ │ └── platform-form-group-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-form-container-docs.component.html │ │ │ ├── platform-form-container-docs.component.ts │ │ │ ├── platform-form-container-header │ │ │ │ ├── platform-form-container-header.component.html │ │ │ │ └── platform-form-container-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── form-generator │ │ │ ├── e2e │ │ │ │ ├── form-generator-contents.ts │ │ │ │ ├── form-generator.e2e-spec.ts │ │ │ │ ├── form-generator.po.ts │ │ │ │ ├── form-generator.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── advanced │ │ │ │ │ ├── platform-form-generator-advanced-example.component.html │ │ │ │ │ └── platform-form-generator-advanced-example.component.ts │ │ │ │ ├── loading │ │ │ │ │ ├── platform-form-generator-loading-example.component.html │ │ │ │ │ └── platform-form-generator-loading-example.component.ts │ │ │ │ ├── platform-form-generator-custom-component-example.component.html │ │ │ │ ├── platform-form-generator-custom-component-example.component.ts │ │ │ │ ├── platform-form-generator-custom-error-example.component.html │ │ │ │ ├── platform-form-generator-custom-error-example.component.ts │ │ │ │ ├── platform-form-generator-custom-field-layout-example.component.html │ │ │ │ ├── platform-form-generator-custom-field-layout-example.component.ts │ │ │ │ ├── platform-form-generator-example.component.html │ │ │ │ ├── platform-form-generator-example.component.ts │ │ │ │ ├── platform-form-generator-field-layout-example.component.html │ │ │ │ ├── platform-form-generator-field-layout-example.component.ts │ │ │ │ ├── platform-form-generator-global-config-example.ts │ │ │ │ ├── platform-form-generator-grouping-example.component.html │ │ │ │ ├── platform-form-generator-grouping-example.component.ts │ │ │ │ ├── platform-form-generator-inline-help-example.component.html │ │ │ │ ├── platform-form-generator-inline-help-example.component.ts │ │ │ │ ├── platform-form-generator-no-colons-example.component.html │ │ │ │ ├── platform-form-generator-no-colons-example.component.ts │ │ │ │ ├── platform-form-generator-observable-example.component.html │ │ │ │ ├── platform-form-generator-observable-example.component.ts │ │ │ │ ├── platform-form-generator-programatic-submit.component.html │ │ │ │ └── platform-form-generator-programatic-submit.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-form-generator-docs.component.html │ │ │ ├── platform-form-generator-docs.component.ts │ │ │ ├── platform-form-generator-header │ │ │ │ ├── platform-form-generator-header.component.html │ │ │ │ └── platform-form-generator-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── icon-tab-bar │ │ │ ├── e2e │ │ │ │ ├── icon-tab-bar-contents.ts │ │ │ │ ├── icon-tab-bar.e2e-spec.ts │ │ │ │ ├── icon-tab-bar.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── async-tabs │ │ │ │ │ ├── icon-tab-bar-async-tabs-example.component.html │ │ │ │ │ └── icon-tab-bar-async-tabs-example.component.ts │ │ │ │ ├── closable-tabs │ │ │ │ │ ├── icon-tab-bar-closable-tabs-example.component.html │ │ │ │ │ └── icon-tab-bar-closable-tabs-example.component.ts │ │ │ │ ├── config-for-examples │ │ │ │ │ ├── icon-type-config.ts │ │ │ │ │ └── text-type.config.ts │ │ │ │ ├── platform-icon-tab-bar-configurable-paddings-example │ │ │ │ │ ├── platform-icon-tab-bar-configurable-paddings-example.component.html │ │ │ │ │ └── platform-icon-tab-bar-configurable-paddings-example.component.ts │ │ │ │ ├── platform-icon-tab-bar-filter-type-example │ │ │ │ │ ├── platform-icon-tab-bar-filter-type-example.component.html │ │ │ │ │ └── platform-icon-tab-bar-filter-type-example.component.ts │ │ │ │ ├── platform-icon-tab-bar-icon-only-type-example │ │ │ │ │ ├── platform-icon-tab-bar-icon-only-type-example.component.html │ │ │ │ │ └── platform-icon-tab-bar-icon-only-type-example.component.ts │ │ │ │ ├── platform-icon-tab-bar-icon-type-example │ │ │ │ │ ├── platform-icon-tab-bar-icon-type-example.component.html │ │ │ │ │ └── platform-icon-tab-bar-icon-type-example.component.ts │ │ │ │ ├── platform-icon-tab-bar-process-type-example │ │ │ │ │ ├── platform-icon-tab-bar-process-type-example.component.html │ │ │ │ │ └── platform-icon-tab-bar-process-type-example.component.ts │ │ │ │ ├── platform-icon-tab-bar-text-type-example │ │ │ │ │ ├── platform-icon-tab-bar-text-type-example.component.html │ │ │ │ │ └── platform-icon-tab-bar-text-type-example.component.ts │ │ │ │ ├── tabs-content │ │ │ │ │ ├── icon-tab-bar-tabs-content-example.component.html │ │ │ │ │ └── icon-tab-bar-tabs-content-example.component.ts │ │ │ │ └── two-click-area │ │ │ │ │ ├── icon-tab-bar-two-click-area-example.component.html │ │ │ │ │ └── icon-tab-bar-two-click-area-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-icon-tab-bar-docs.component.html │ │ │ ├── platform-icon-tab-bar-docs.component.ts │ │ │ ├── platform-icon-tab-bar-header │ │ │ │ ├── platform-icon-tab-bar-header.component.html │ │ │ │ └── platform-icon-tab-bar-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── index.ts │ │ ├── info-label │ │ │ ├── examples │ │ │ │ ├── platform-info-label-example.component.html │ │ │ │ ├── platform-info-label-example.component.scss │ │ │ │ └── platform-info-label-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-info-label-docs.component.html │ │ │ ├── platform-info-label-docs.component.ts │ │ │ ├── platform-info-label-header │ │ │ │ ├── platform-info-label-header.component.html │ │ │ │ └── platform-info-label-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── input-group │ │ │ ├── e2e │ │ │ │ ├── input-group-page-contents.ts │ │ │ │ ├── input-group.e2e-spec.ts │ │ │ │ ├── input-group.po.ts │ │ │ │ ├── input-group.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── platform-input-group-compact-example.component.html │ │ │ │ ├── platform-input-group-compact-example.component.ts │ │ │ │ ├── platform-input-group-disabled-example.component.html │ │ │ │ ├── platform-input-group-disabled-example.component.ts │ │ │ │ ├── platform-input-group-form-example.component.html │ │ │ │ ├── platform-input-group-form-example.component.ts │ │ │ │ ├── platform-input-group-standard-example.component.html │ │ │ │ └── platform-input-group-standard-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-input-group-docs.component.html │ │ │ ├── platform-input-group-docs.component.ts │ │ │ ├── platform-input-group-header │ │ │ │ ├── platform-input-group-header.component.html │ │ │ │ └── platform-input-group-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── input │ │ │ ├── examples │ │ │ │ ├── platform-input-auto-complete-validation-example.component.html │ │ │ │ ├── platform-input-auto-complete-validation-example.component.scss │ │ │ │ ├── platform-input-auto-complete-validation-example.component.ts │ │ │ │ ├── platform-input-example.component.html │ │ │ │ ├── platform-input-example.component.ts │ │ │ │ ├── platform-input-reactive-min-max-validation-example.component.html │ │ │ │ ├── platform-input-reactive-min-max-validation-example.component.ts │ │ │ │ ├── platform-input-reactive-validation-example.component.html │ │ │ │ └── platform-input-reactive-validation-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-input-docs.component.html │ │ │ ├── platform-input-docs.component.ts │ │ │ ├── platform-input-header │ │ │ │ ├── platform-input-header.component.html │ │ │ │ └── platform-input-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── link │ │ │ ├── examples │ │ │ │ ├── platform-link-example.component.html │ │ │ │ ├── platform-link-example.component.ts │ │ │ │ ├── platform-link-misc-examples.component.html │ │ │ │ ├── platform-link-misc-examples.component.ts │ │ │ │ ├── platform-link-types-example.component.html │ │ │ │ └── platform-link-types-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-link-docs.component.html │ │ │ ├── platform-link-docs.component.ts │ │ │ ├── platform-link-header │ │ │ │ ├── platform-link-header.component.html │ │ │ │ └── platform-link-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── list │ │ │ ├── e2e │ │ │ │ ├── list-contents.ts │ │ │ │ ├── list.e2e-spec.ts │ │ │ │ ├── list.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── loading │ │ │ │ │ ├── platform-list-loading-example.component.html │ │ │ │ │ └── platform-list-loading-example.component.ts │ │ │ │ ├── platform-list-border-less-example.component.html │ │ │ │ ├── platform-list-border-less-example.component.ts │ │ │ │ ├── platform-list-example.component.html │ │ │ │ ├── platform-list-example.component.ts │ │ │ │ ├── platform-list-free-content-example.component.html │ │ │ │ ├── platform-list-free-content-example.component.ts │ │ │ │ ├── platform-list-with-buttons-example.component.html │ │ │ │ ├── platform-list-with-buttons-example.component.ts │ │ │ │ ├── platform-list-with-delete-button-example.component.html │ │ │ │ ├── platform-list-with-delete-button-example.component.ts │ │ │ │ ├── platform-list-with-footer-example.component.html │ │ │ │ ├── platform-list-with-footer-example.component.ts │ │ │ │ ├── platform-list-with-group-header-example.component.html │ │ │ │ ├── platform-list-with-infinite-scroll-example.component.html │ │ │ │ ├── platform-list-with-infinite-scroll-example.component.ts │ │ │ │ ├── platform-list-with-item-counter-example.component.html │ │ │ │ ├── platform-list-with-item-counter-example.component.ts │ │ │ │ ├── platform-list-with-more-button-example.component.html │ │ │ │ ├── platform-list-with-more-button-example.component.ts │ │ │ │ ├── platform-list-with-navigation-example.component.html │ │ │ │ ├── platform-list-with-navigation-example.component.ts │ │ │ │ ├── platform-list-with-nodata-example.component.html │ │ │ │ ├── platform-list-with-selection-example.component.html │ │ │ │ ├── platform-list-with-selection-example.component.ts │ │ │ │ ├── platform-list-with-single-selection-example.component.html │ │ │ │ ├── platform-list-with-single-selection-example.component.ts │ │ │ │ └── platform-list-with-unread-example.component.html │ │ │ ├── index.ts │ │ │ ├── platform-list-docs.component.html │ │ │ ├── platform-list-docs.component.ts │ │ │ ├── platform-list-header │ │ │ │ ├── platform-list-header.component.html │ │ │ │ ├── platform-list-header.component.scss │ │ │ │ └── platform-list-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── menu-button │ │ │ ├── examples │ │ │ │ ├── platform-menu-button-example.component.html │ │ │ │ ├── platform-menu-button-example.component.ts │ │ │ │ ├── platform-menu-button-state-example.component.html │ │ │ │ └── platform-menu-button-state-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-menu-button-docs.component.html │ │ │ ├── platform-menu-button-docs.component.ts │ │ │ ├── platform-menu-button-header │ │ │ │ ├── platform-menu-button-header.component.html │ │ │ │ └── platform-menu-button-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── menu │ │ │ ├── e2e │ │ │ │ ├── menu.e2e-spec.ts │ │ │ │ ├── menu.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── platform-menu-basic-example.component.html │ │ │ │ ├── platform-menu-basic-example.component.ts │ │ │ │ ├── platform-menu-cascade-example.component.html │ │ │ │ ├── platform-menu-cascade-example.component.ts │ │ │ │ ├── platform-menu-example-styles.scss │ │ │ │ ├── platform-menu-scrolling-example.component.html │ │ │ │ ├── platform-menu-scrolling-example.component.ts │ │ │ │ ├── platform-menu-with-icons-example.component.html │ │ │ │ ├── platform-menu-with-icons-example.component.ts │ │ │ │ ├── platform-menu-x-position-example.component.html │ │ │ │ └── platform-menu-x-position-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-menu-docs.component.html │ │ │ ├── platform-menu-docs.component.ts │ │ │ ├── platform-menu-header │ │ │ │ ├── platform-menu-header.component.html │ │ │ │ └── platform-menu-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── message-popover │ │ │ ├── e2e │ │ │ │ ├── message-popover.e2e-spec.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── custom-config │ │ │ │ │ ├── example-module.ts │ │ │ │ │ ├── message-popover-custom-config-example.component.html │ │ │ │ │ └── message-popover-custom-config-example.component.ts │ │ │ │ ├── default │ │ │ │ │ ├── message-popover-default-example.component.html │ │ │ │ │ └── message-popover-default-example.component.ts │ │ │ │ ├── form-container │ │ │ │ │ ├── form-container-example.component.html │ │ │ │ │ └── form-container-example.component.ts │ │ │ │ ├── form-generator │ │ │ │ │ ├── form-generator-component-example.component.html │ │ │ │ │ └── form-generator-component-example.component.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── message-popover-docs.component.html │ │ │ ├── message-popover-docs.component.ts │ │ │ ├── message-popover-header │ │ │ │ ├── message-popover-header.component.html │ │ │ │ └── message-popover-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── multi-combobox │ │ │ ├── e2e │ │ │ │ ├── multi-combobox.e2e-spec.ts │ │ │ │ ├── multi-combobox.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── multi-combobox-columns │ │ │ │ │ ├── multi-combobox-columns-example.component.html │ │ │ │ │ └── multi-combobox-columns-example.component.ts │ │ │ │ ├── multi-combobox-datasource │ │ │ │ │ ├── multi-combobox-datasource-example.component.html │ │ │ │ │ └── multi-combobox-datasource-example.component.ts │ │ │ │ ├── multi-combobox-forms │ │ │ │ │ ├── multi-combobox-forms-example.component.html │ │ │ │ │ └── multi-combobox-forms-example.component.ts │ │ │ │ ├── multi-combobox-group │ │ │ │ │ ├── multi-combobox-group-example.component.html │ │ │ │ │ └── multi-combobox-group-example.component.ts │ │ │ │ ├── multi-combobox-loading │ │ │ │ │ ├── multi-combobox-loading-example.component.html │ │ │ │ │ └── multi-combobox-loading-example.component.ts │ │ │ │ ├── multi-combobox-mobile │ │ │ │ │ ├── multi-combobox-mobile-example.component.html │ │ │ │ │ └── multi-combobox-mobile-example.component.ts │ │ │ │ ├── multi-combobox-remote-datasource │ │ │ │ │ └── multi-combobox-remote-datasource-example.component.ts │ │ │ │ └── multi-combobox-states │ │ │ │ │ ├── multi-combobox-states-example.component.html │ │ │ │ │ └── multi-combobox-states-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-multi-combobox-docs.component.html │ │ │ ├── platform-multi-combobox-docs.component.ts │ │ │ ├── platform-multi-combobox-header │ │ │ │ ├── platform-multi-combobox-header.component.html │ │ │ │ └── platform-multi-combobox-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── multi-input │ │ │ ├── e2e │ │ │ │ ├── multi-input.e2e-spec.ts │ │ │ │ ├── multi-input.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── platform-multi-input-compact-example.component.html │ │ │ │ ├── platform-multi-input-compact-example.component.ts │ │ │ │ ├── platform-multi-input-complex-example.component.html │ │ │ │ ├── platform-multi-input-complex-example.component.ts │ │ │ │ ├── platform-multi-input-decline-example.component.html │ │ │ │ ├── platform-multi-input-decline-example.component.ts │ │ │ │ ├── platform-multi-input-disabled.component.html │ │ │ │ ├── platform-multi-input-disabled.component.ts │ │ │ │ ├── platform-multi-input-example.component.html │ │ │ │ ├── platform-multi-input-example.component.ts │ │ │ │ ├── platform-multi-input-grouped-example.component.html │ │ │ │ ├── platform-multi-input-grouped-example.component.ts │ │ │ │ ├── platform-multi-input-loading-example.component.html │ │ │ │ ├── platform-multi-input-loading-example.component.ts │ │ │ │ ├── platform-multi-input-mobile-example.component.html │ │ │ │ ├── platform-multi-input-mobile-example.component.ts │ │ │ │ ├── platform-multi-input-reactive-example.component.html │ │ │ │ └── platform-multi-input-reactive-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-multi-input-docs.component.html │ │ │ ├── platform-multi-input-docs.component.ts │ │ │ ├── platform-multi-input-header │ │ │ │ ├── platform-multi-input-header.component.html │ │ │ │ └── platform-multi-input-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── object-list-item │ │ │ ├── e2e │ │ │ │ ├── object-list-item-contents.ts │ │ │ │ ├── object-list-item.e2e-spec.ts │ │ │ │ ├── object-list-item.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── platform-object-list-item-border-less-example.component.html │ │ │ │ ├── platform-object-list-item-border-less-example.component.ts │ │ │ │ ├── platform-object-list-item-example.component.html │ │ │ │ ├── platform-object-list-item-example.component.ts │ │ │ │ ├── platform-object-list-item-with-row-navigation-example.component.html │ │ │ │ ├── platform-object-list-item-with-row-navigation-example.component.ts │ │ │ │ ├── platform-object-list-item-with-row-selection-and-navigation-example.component.html │ │ │ │ ├── platform-object-list-item-with-row-selection-and-navigation-example.component.ts │ │ │ │ ├── platform-object-list-item-with-row-selection-example.component.html │ │ │ │ └── platform-object-list-item-with-row-selection-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-object-list-item-docs.component.html │ │ │ ├── platform-object-list-item-docs.component.ts │ │ │ ├── platform-object-list-item-header │ │ │ │ ├── platform-object-list-item-header.component.html │ │ │ │ └── platform-object-list-item-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── object-marker │ │ │ ├── e2e │ │ │ │ ├── object-marker-contents.ts │ │ │ │ ├── object-marker.e2e-spec.ts │ │ │ │ ├── object-marker.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── index.ts │ │ │ │ ├── object-marker-example.scss │ │ │ │ ├── object-marker-text-and-icon │ │ │ │ │ ├── object-marker-text-and-icon-example.component.html │ │ │ │ │ ├── object-marker-text-and-icon-example.component.scss │ │ │ │ │ └── object-marker-text-and-icon-example.component.ts │ │ │ │ ├── object-marker-text-clickable │ │ │ │ │ ├── object-marker-text-clickable-example.component.html │ │ │ │ │ ├── object-marker-text-clickable-example.component.scss │ │ │ │ │ └── object-marker-text-clickable-example.component.ts │ │ │ │ ├── object-marker-text-only-example │ │ │ │ │ ├── object-marker-text-only-example.component.html │ │ │ │ │ ├── object-marker-text-only-example.component.scss │ │ │ │ │ └── object-marker-text-only-example.component.ts │ │ │ │ └── object-marker │ │ │ │ │ ├── object-marker-example.component.html │ │ │ │ │ ├── object-marker-example.component.scss │ │ │ │ │ └── object-marker-example.component.ts │ │ │ ├── index.ts │ │ │ ├── object-marker-header │ │ │ │ ├── object-marker-header.component.html │ │ │ │ └── object-marker-header.component.ts │ │ │ ├── platform-object-marker-docs.component.html │ │ │ ├── platform-object-marker-docs.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── object-status │ │ │ ├── examples │ │ │ │ ├── platform-object-status-clickable-and-icon-example.component.html │ │ │ │ ├── platform-object-status-clickable-and-icon-example.component.scss │ │ │ │ ├── platform-object-status-clickable-and-icon-example.component.ts │ │ │ │ ├── platform-object-status-example.component.html │ │ │ │ ├── platform-object-status-example.component.scss │ │ │ │ ├── platform-object-status-example.component.ts │ │ │ │ ├── platform-object-status-generic-text-example.component.html │ │ │ │ ├── platform-object-status-generic-text-example.component.ts │ │ │ │ ├── platform-object-status-icon-text-example.component.html │ │ │ │ ├── platform-object-status-inverted-example.component.html │ │ │ │ ├── platform-object-status-inverted-generic-text-example.component.html │ │ │ │ ├── platform-object-status-inverted-generic-text-example.component.ts │ │ │ │ ├── platform-object-status-large-example.component.html │ │ │ │ ├── platform-object-status-large-example.component.scss │ │ │ │ ├── platform-object-status-large-example.component.ts │ │ │ │ └── platform-object-status-text-example.component.html │ │ │ ├── index.ts │ │ │ ├── platform-object-status-docs.component.html │ │ │ ├── platform-object-status-docs.component.ts │ │ │ ├── platform-object-status-header │ │ │ │ ├── platform-object-status-header.component.html │ │ │ │ └── platform-object-status-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── page-footer │ │ │ ├── e2e │ │ │ │ ├── page-footer-contents.ts │ │ │ │ ├── page-footer.e2e-spec.ts │ │ │ │ ├── page-footer.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── platform-page-footer-example.component.html │ │ │ │ ├── platform-page-footer-example.component.ts │ │ │ │ ├── platform-page-footer-multiple-line-example.component.html │ │ │ │ └── platform-page-footer-with-icon-example.component.html │ │ │ ├── index.ts │ │ │ ├── platform-page-footer-docs.component.html │ │ │ ├── platform-page-footer-docs.component.ts │ │ │ ├── platform-page-footer-header │ │ │ │ ├── platform-page-footer-header.component.html │ │ │ │ └── platform-page-footer-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── panel │ │ │ ├── examples │ │ │ │ ├── platform-panel-actions-example.component.html │ │ │ │ ├── platform-panel-actions-example.component.ts │ │ │ │ ├── platform-panel-config-example.component.html │ │ │ │ ├── platform-panel-config-example.component.ts │ │ │ │ ├── platform-panel-expandable-example.component.html │ │ │ │ ├── platform-panel-expandable-example.component.ts │ │ │ │ ├── platform-panel-fixed-example.component.html │ │ │ │ ├── platform-panel-fixed-example.component.ts │ │ │ │ ├── platform-panel-fixed-height-example.component.html │ │ │ │ └── platform-panel-fixed-height-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-panel-docs.component.html │ │ │ ├── platform-panel-docs.component.ts │ │ │ ├── platform-panel-header │ │ │ │ ├── platform-panel-header.component.html │ │ │ │ └── platform-panel-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── project.json │ │ ├── radio-group │ │ │ ├── e2e │ │ │ │ ├── radio-group.e2e-spec.ts │ │ │ │ ├── radio-group.po.ts │ │ │ │ ├── radio-group.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── platform-radio-group-content-example.component.html │ │ │ │ ├── platform-radio-group-content-examples.component.ts │ │ │ │ ├── platform-radio-group-disabled-example.component.html │ │ │ │ ├── platform-radio-group-disabled-examples.component.ts │ │ │ │ ├── platform-radio-group-list-example.component.html │ │ │ │ ├── platform-radio-group-list-examples.component.ts │ │ │ │ ├── platform-radio-group-list-items-example.component.html │ │ │ │ └── platform-radio-group-list-items-examples.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-radio-group-docs.component.html │ │ │ ├── platform-radio-group-docs.component.ts │ │ │ ├── platform-radio-group-header │ │ │ │ ├── platform-radio-group-header.component.html │ │ │ │ └── platform-radio-group-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── schema │ │ │ ├── index.ts │ │ │ ├── platform-schema.module.ts │ │ │ ├── project.json │ │ │ ├── schemas │ │ │ │ ├── button-schema.ts │ │ │ │ ├── platform-schema.ts │ │ │ │ ├── slider-schema.ts │ │ │ │ └── table-schema.ts │ │ │ └── tsconfig.json │ │ ├── search-field │ │ │ ├── e2e │ │ │ │ ├── search-field-content.ts │ │ │ │ ├── search-field.e2e-spec.ts │ │ │ │ ├── search-field.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── platform-search-field-basic-example.component.html │ │ │ │ ├── platform-search-field-basic-example.component.scss │ │ │ │ ├── platform-search-field-basic-example.component.ts │ │ │ │ ├── platform-search-field-categories-example.component.html │ │ │ │ ├── platform-search-field-categories-example.component.scss │ │ │ │ ├── platform-search-field-categories-example.component.ts │ │ │ │ ├── platform-search-field-data-source-example.component.html │ │ │ │ ├── platform-search-field-data-source-example.component.scss │ │ │ │ ├── platform-search-field-data-source-example.component.ts │ │ │ │ ├── platform-search-field-data-source-example.service.ts │ │ │ │ ├── platform-search-field-example.component.scss │ │ │ │ └── platform-search-field-mobile │ │ │ │ │ ├── platform-search-field-mobile-example.component.html │ │ │ │ │ └── platform-search-field-mobile-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-search-field-docs.component.html │ │ │ ├── platform-search-field-docs.component.ts │ │ │ ├── platform-search-field-header │ │ │ │ ├── platform-search-field-header.component.html │ │ │ │ └── platform-search-field-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── select │ │ │ ├── e2e │ │ │ │ ├── select-contents.ts │ │ │ │ ├── select.e2e-spec.ts │ │ │ │ ├── select.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── platform-select-columns │ │ │ │ │ ├── platform-select-columns-example.component.html │ │ │ │ │ └── platform-select-columns-example.component.ts │ │ │ │ ├── platform-select-custom-trigger │ │ │ │ │ ├── platform-select-custom-trigger.component.html │ │ │ │ │ ├── platform-select-custom-trigger.component.scss │ │ │ │ │ └── platform-select-custom-trigger.component.ts │ │ │ │ ├── platform-select-forms │ │ │ │ │ ├── platform-select-forms.component.html │ │ │ │ │ ├── platform-select-forms.component.scss │ │ │ │ │ └── platform-select-forms.component.ts │ │ │ │ ├── platform-select-height │ │ │ │ │ ├── platform-select-max-height-example.component.html │ │ │ │ │ └── platform-select-max-height-example.component.ts │ │ │ │ ├── platform-select-mobile-example │ │ │ │ │ ├── platform-select-mobile-example.component.html │ │ │ │ │ └── platform-select-mobile-example.component.ts │ │ │ │ ├── platform-select-mode-example │ │ │ │ │ ├── platform-select-mode-example.component.html │ │ │ │ │ └── platform-select-mode-example.component.ts │ │ │ │ ├── platform-select-none │ │ │ │ │ ├── platform-select-none-example.component.html │ │ │ │ │ └── platform-select-none-example.component.ts │ │ │ │ ├── platform-select-nowrap │ │ │ │ │ ├── platform-select-nowrap-example.component.html │ │ │ │ │ └── platform-select-nowrap-example.component.ts │ │ │ │ └── platform-select-semantic-state-example │ │ │ │ │ ├── platform-select-semantic-state-example.component.html │ │ │ │ │ └── platform-select-semantic-state-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-select-docs.component.html │ │ │ ├── platform-select-docs.component.ts │ │ │ ├── platform-select-header │ │ │ │ ├── platform-select-header.component.html │ │ │ │ └── platform-select-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── settings-generator │ │ │ ├── e2e │ │ │ │ ├── settings-generator.e2e-spec.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── custom-control │ │ │ │ │ ├── settings-generator-custom-control-example.component.html │ │ │ │ │ └── settings-generator-custom-control-example.component.ts │ │ │ │ ├── custom-layout │ │ │ │ │ ├── settings-generator-custom-layout-example.component.html │ │ │ │ │ └── settings-generator-custom-layout-example.component.ts │ │ │ │ ├── default │ │ │ │ │ ├── default-config.ts │ │ │ │ │ ├── settings-generator-default-example.component.html │ │ │ │ │ └── settings-generator-default-example.component.ts │ │ │ │ ├── dialog │ │ │ │ │ ├── settings-generator-dialog-example.component.html │ │ │ │ │ └── settings-generator-dialog-example.component.ts │ │ │ │ ├── index.ts │ │ │ │ └── message-popover │ │ │ │ │ ├── settings-generator-message-popover-example.component.html │ │ │ │ │ └── settings-generator-message-popover-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── settings-generator-docs.component.html │ │ │ ├── settings-generator-docs.component.ts │ │ │ ├── settings-generator-header │ │ │ │ ├── settings-generator-header.component.html │ │ │ │ └── settings-generator-header.component.ts │ │ │ └── tsconfig.json │ │ ├── slider │ │ │ ├── e2e │ │ │ │ ├── slider-content.ts │ │ │ │ ├── slider.e2e-spec.ts │ │ │ │ ├── slider.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── base │ │ │ │ │ ├── slider-basic-example.component.html │ │ │ │ │ └── slider-basic-example.component.ts │ │ │ │ ├── custom-values │ │ │ │ │ ├── slider-custom-values-example.component.html │ │ │ │ │ └── slider-custom-values-example.component.ts │ │ │ │ ├── disabled │ │ │ │ │ ├── slider-disabled-example.component.html │ │ │ │ │ └── slider-disabled-example.component.ts │ │ │ │ ├── form-field │ │ │ │ │ ├── slider-form-field-example.component.html │ │ │ │ │ └── slider-form-field-example.component.ts │ │ │ │ ├── range │ │ │ │ │ ├── slider-range-example.component.html │ │ │ │ │ └── slider-range-example.component.ts │ │ │ │ ├── ticks-and-labels │ │ │ │ │ ├── slider-ticks-and-labels-example.component.html │ │ │ │ │ └── slider-ticks-and-labels-example.component.ts │ │ │ │ └── tooltip │ │ │ │ │ ├── slider-tooltip-example.component.html │ │ │ │ │ └── slider-tooltip-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── slider-docs.component.html │ │ │ ├── slider-docs.component.ts │ │ │ ├── slider-header │ │ │ │ ├── slider-header.component.html │ │ │ │ └── slider-header.component.ts │ │ │ └── tsconfig.json │ │ ├── smart-filter-bar │ │ │ ├── e2e │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── custom-toolbar │ │ │ │ │ ├── smart-filter-bar-custom-toolbar-example.component.html │ │ │ │ │ └── smart-filter-bar-custom-toolbar-example.component.ts │ │ │ │ ├── loading │ │ │ │ │ ├── platform-smart-filter-bar-loading-example.component.html │ │ │ │ │ └── platform-smart-filter-bar-loading-example.component.ts │ │ │ │ ├── platform-smart-filter-bar-basic-example.component.html │ │ │ │ ├── platform-smart-filter-bar-basic-example.component.ts │ │ │ │ ├── platform-smart-filter-bar-custom-filter-example.component.html │ │ │ │ ├── platform-smart-filter-bar-custom-filter-example.component.ts │ │ │ │ ├── platform-smart-filter-bar-custom-labels-example.component.html │ │ │ │ ├── platform-smart-filter-bar-custom-labels-example.component.ts │ │ │ │ ├── platform-smart-filter-bar-dynamic-page-example.component.html │ │ │ │ ├── platform-smart-filter-bar-dynamic-page-example.component.ts │ │ │ │ ├── platform-smart-filter-bar-observable-example.component.html │ │ │ │ └── platform-smart-filter-bar-observable-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-smart-filter-bar-docs.component.html │ │ │ ├── platform-smart-filter-bar-docs.component.ts │ │ │ ├── platform-smart-filter-bar-header │ │ │ │ ├── platform-smart-filter-bar-header.component.html │ │ │ │ └── platform-smart-filter-bar-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── split-menu-button │ │ │ ├── e2e │ │ │ │ ├── split-menu-button-page-contents.ts │ │ │ │ ├── split-menu-button.e2e-spec.ts │ │ │ │ ├── split-menu-button.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── platform-split-button-behaviors-example.component.html │ │ │ │ ├── platform-split-button-behaviors-example.component.ts │ │ │ │ ├── platform-split-button-icons-example.component.html │ │ │ │ ├── platform-split-button-icons-example.component.ts │ │ │ │ ├── platform-split-button-types-example.component.html │ │ │ │ └── platform-split-button-types-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-split-menu-button-header │ │ │ │ ├── platform-split-menu-button-header.component.html │ │ │ │ └── platform-split-menu-button-header.component.ts │ │ │ ├── platform-split-menu-button.component.html │ │ │ ├── platform-split-menu-button.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── standard-list-item │ │ │ ├── e2e │ │ │ │ ├── standard-list-item-contents.ts │ │ │ │ ├── standard-list-item.e2e-spec.ts │ │ │ │ ├── standard-list-item.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── platform-non-byline-standard-list-item-example.component.html │ │ │ │ ├── platform-standard-list-item-border-less-example.component.html │ │ │ │ ├── platform-standard-list-item-border-less-example.component.ts │ │ │ │ ├── platform-standard-list-item-example.component.html │ │ │ │ ├── platform-standard-list-item-example.component.ts │ │ │ │ ├── platform-standard-list-item-with-footer-example.component.html │ │ │ │ ├── platform-standard-list-item-with-footer-example.component.ts │ │ │ │ ├── platform-standard-list-item-with-group-header-example.component.html │ │ │ │ ├── platform-standard-list-item-with-inverted-secondary-type-example.component.html │ │ │ │ ├── platform-standard-list-item-with-navigation-example.component.html │ │ │ │ ├── platform-standard-list-item-with-navigation-example.component.ts │ │ │ │ ├── platform-standard-list-item-with-secondary-type-example.component.html │ │ │ │ ├── platform-standard-list-item-with-selection-example.component.html │ │ │ │ ├── platform-standard-list-item-with-selection-example.component.ts │ │ │ │ ├── platform-standard-list-item-with-single-selection-example.component.html │ │ │ │ ├── platform-standard-list-item-with-single-selection-example.component.ts │ │ │ │ ├── platform-standard-list-unread-example.component.html │ │ │ │ └── platform-standard-list-unread-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-standard-list-item-docs.component.html │ │ │ ├── platform-standard-list-item-docs.component.ts │ │ │ ├── platform-standard-list-item-header │ │ │ │ ├── platform-standard-list-item-header.component.html │ │ │ │ └── platform-standard-list-item-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── step-input │ │ │ ├── e2e │ │ │ │ ├── step-input.e2e-spec.ts │ │ │ │ ├── step-input.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── platform-number-step-input-example.component.html │ │ │ │ ├── platform-number-step-input-example.component.scss │ │ │ │ ├── platform-number-step-input-example.component.ts │ │ │ │ ├── platform-number-step-input-reactive-example.component.html │ │ │ │ ├── platform-number-step-input-reactive-example.component.scss │ │ │ │ ├── platform-number-step-input-reactive-example.component.ts │ │ │ │ ├── platform-number-step-input-state-example.component.html │ │ │ │ ├── platform-number-step-input-state-example.component.scss │ │ │ │ ├── platform-number-step-input-state-example.component.ts │ │ │ │ ├── platform-number-step-input-template-example.component.html │ │ │ │ ├── platform-number-step-input-template-example.component.scss │ │ │ │ ├── platform-number-step-input-template-example.component.ts │ │ │ │ └── platform-step-input-example.scss │ │ │ ├── index.ts │ │ │ ├── platform-step-input-docs.component.html │ │ │ ├── platform-step-input-docs.component.ts │ │ │ ├── platform-step-input-header │ │ │ │ ├── platform-step-input-header.component.html │ │ │ │ └── platform-step-input-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── switch │ │ │ ├── e2e │ │ │ │ ├── swich-page-content.ts │ │ │ │ ├── switch.e2e-spec.ts │ │ │ │ ├── switch.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── disabled-switch-example │ │ │ │ │ ├── disabled-switch-example.component.html │ │ │ │ │ └── disabled-switch-example.component.ts │ │ │ │ ├── semantic-switch-example │ │ │ │ │ ├── semantic-switch-example.component.html │ │ │ │ │ └── semantic-switch-example.component.ts │ │ │ │ ├── switch-config-example │ │ │ │ │ ├── switch-config-example.component.html │ │ │ │ │ └── switch-config-example.component.ts │ │ │ │ ├── switch-form-example │ │ │ │ │ ├── switch-forms-example.component.html │ │ │ │ │ └── switch-forms-example.component.ts │ │ │ │ └── switch-sizes-example │ │ │ │ │ ├── switch-sizes-example.component.html │ │ │ │ │ └── switch-sizes-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── switch-docs.component.html │ │ │ ├── switch-docs.component.ts │ │ │ ├── switch-header │ │ │ │ ├── switch-header.component.html │ │ │ │ └── switch-header.component.ts │ │ │ └── tsconfig.json │ │ ├── table │ │ │ ├── child-docs │ │ │ │ ├── advanced │ │ │ │ │ ├── advanced-examples-docs.component.html │ │ │ │ │ └── advanced-examples-docs.component.ts │ │ │ │ ├── clickable-rows │ │ │ │ │ ├── clickable-rows-docs.component.html │ │ │ │ │ └── clickable-rows-docs.component.ts │ │ │ │ ├── p13-dialog │ │ │ │ │ ├── p13-dialog-docs.component.html │ │ │ │ │ └── p13-dialog-docs.component.ts │ │ │ │ ├── pagination │ │ │ │ │ ├── table-pagination-docs.component.html │ │ │ │ │ └── table-pagination-docs.component.ts │ │ │ │ ├── preserving-state │ │ │ │ │ ├── preserved-state-docs.component.html │ │ │ │ │ └── preserved-state-docs.component.ts │ │ │ │ ├── row-selection │ │ │ │ │ ├── row-selection-docs.component.html │ │ │ │ │ └── row-selection-docs.component.ts │ │ │ │ ├── scrolling │ │ │ │ │ ├── table-scrolling-docs.component.html │ │ │ │ │ └── table-scrolling-docs.component.ts │ │ │ │ └── settings-dialog │ │ │ │ │ ├── settings-dialog-docs.component.html │ │ │ │ │ └── settings-dialog-docs.component.ts │ │ │ ├── e2e │ │ │ │ ├── table-clickable-rows.e2e-spec.ts │ │ │ │ ├── table-common-tests.ts │ │ │ │ ├── table-contents.ts │ │ │ │ ├── table-p13-dialog.e2e-spec.ts │ │ │ │ ├── table-row-selection.e2e-spec.ts │ │ │ │ ├── table-scrolling.e2e-spec.ts │ │ │ │ ├── table-settings-dialog.e2e-spec.ts │ │ │ │ ├── table.e2e-spec.ts │ │ │ │ ├── table.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── advanced-scrolling │ │ │ │ │ ├── advanced-scrolling-example.component.html │ │ │ │ │ └── advanced-scrolling-example.component.ts │ │ │ │ ├── custom-pagination │ │ │ │ │ ├── table-custom-pagination-example.component.html │ │ │ │ │ ├── table-custom-pagination-example.component.ts │ │ │ │ │ ├── table-custom-pagination-outer-scroll-example.component.html │ │ │ │ │ └── table-custom-pagination-outer-scroll-example.component.ts │ │ │ │ ├── editable-rows │ │ │ │ │ ├── platform-table-editable-rows-example.component.html │ │ │ │ │ └── platform-table-editable-rows-example.component.ts │ │ │ │ ├── initial-loading │ │ │ │ │ ├── platform-table-initial-loading-example.component.html │ │ │ │ │ └── platform-table-initial-loading-example.component.ts │ │ │ │ ├── platform-table-activable-example.component.html │ │ │ │ ├── platform-table-activable-example.component.ts │ │ │ │ ├── platform-table-columns-ngfor-example.component.html │ │ │ │ ├── platform-table-columns-ngfor-example.component.ts │ │ │ │ ├── platform-table-custom-column-example.component.html │ │ │ │ ├── platform-table-custom-column-example.component.ts │ │ │ │ ├── platform-table-custom-title-example.component.html │ │ │ │ ├── platform-table-custom-title-example.component.ts │ │ │ │ ├── platform-table-custom-width-example.component.html │ │ │ │ ├── platform-table-custom-width-example.component.ts │ │ │ │ ├── platform-table-data-items-example.ts │ │ │ │ ├── platform-table-data-provider-example.ts │ │ │ │ ├── platform-table-default-example.component.html │ │ │ │ ├── platform-table-default-example.component.ts │ │ │ │ ├── platform-table-filterable-example.component.html │ │ │ │ ├── platform-table-filterable-example.component.ts │ │ │ │ ├── platform-table-footer-example.component.html │ │ │ │ ├── platform-table-footer-example.component.ts │ │ │ │ ├── platform-table-freezable-example.component.html │ │ │ │ ├── platform-table-freezable-example.component.ts │ │ │ │ ├── platform-table-groupable-example.component.html │ │ │ │ ├── platform-table-groupable-example.component.ts │ │ │ │ ├── platform-table-initial-state-example.component.html │ │ │ │ ├── platform-table-initial-state-example.component.ts │ │ │ │ ├── platform-table-loading-example.component.html │ │ │ │ ├── platform-table-loading-example.component.ts │ │ │ │ ├── platform-table-multiple-row-selection-example.component.html │ │ │ │ ├── platform-table-multiple-row-selection-example.component.ts │ │ │ │ ├── platform-table-navigatable-row-indicator-example.component.html │ │ │ │ ├── platform-table-navigatable-row-indicator-example.component.ts │ │ │ │ ├── platform-table-no-items-template-example.component.html │ │ │ │ ├── platform-table-no-items-template-example.component.ts │ │ │ │ ├── platform-table-no-outer-borders-example.component.html │ │ │ │ ├── platform-table-no-outer-borders-example.component.ts │ │ │ │ ├── platform-table-outer-scroll-example.component.html │ │ │ │ ├── platform-table-outer-scroll-example.component.ts │ │ │ │ ├── platform-table-p13-columns-example.component.html │ │ │ │ ├── platform-table-p13-columns-example.component.ts │ │ │ │ ├── platform-table-p13-filter-example.component.html │ │ │ │ ├── platform-table-p13-filter-example.component.ts │ │ │ │ ├── platform-table-p13-group-example.component.html │ │ │ │ ├── platform-table-p13-group-example.component.ts │ │ │ │ ├── platform-table-p13-sort-example.component.html │ │ │ │ ├── platform-table-p13-sort-example.component.ts │ │ │ │ ├── platform-table-page-scrolling-example.component.html │ │ │ │ ├── platform-table-page-scrolling-example.component.ts │ │ │ │ ├── platform-table-responsive-columns-example.component.html │ │ │ │ ├── platform-table-responsive-columns-example.component.ts │ │ │ │ ├── platform-table-row-class-example.component.html │ │ │ │ ├── platform-table-row-class-example.component.ts │ │ │ │ ├── platform-table-semantic-example.component.html │ │ │ │ ├── platform-table-semantic-example.component.ts │ │ │ │ ├── platform-table-settings-dialog-example.component.html │ │ │ │ ├── platform-table-settings-dialog-example.component.ts │ │ │ │ ├── platform-table-single-row-selection-example.component.html │ │ │ │ ├── platform-table-single-row-selection-example.component.ts │ │ │ │ ├── platform-table-sortable-example.component.html │ │ │ │ ├── platform-table-sortable-example.component.ts │ │ │ │ ├── platform-table-tree-example.component.html │ │ │ │ ├── platform-table-tree-example.component.ts │ │ │ │ ├── platform-table-wrap-example.component.html │ │ │ │ ├── platform-table-wrap-example.component.ts │ │ │ │ ├── preserved-state │ │ │ │ │ ├── platform-table-preserved-state-example.component.html │ │ │ │ │ └── platform-table-preserved-state-example.component.ts │ │ │ │ ├── standard-pagination │ │ │ │ │ ├── platform-table-standard-pagination-example.component.html │ │ │ │ │ └── platform-table-standard-pagination-example.component.ts │ │ │ │ └── virtual-scroll │ │ │ │ │ ├── platform-table-virtual-scroll-example.component.html │ │ │ │ │ └── platform-table-virtual-scroll-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-table-docs.component.html │ │ │ ├── platform-table-docs.component.ts │ │ │ ├── platform-table-header │ │ │ │ ├── platform-table-header.component.html │ │ │ │ └── platform-table-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── textarea │ │ │ ├── e2e │ │ │ │ ├── textarea-page-content.ts │ │ │ │ ├── textarea.e2e-spec.ts │ │ │ │ ├── textarea.po.ts │ │ │ │ ├── textarea.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── platform-textarea-autogrow-example.component.html │ │ │ │ ├── platform-textarea-autogrow-example.component.ts │ │ │ │ ├── platform-textarea-basic-example.component.html │ │ │ │ ├── platform-textarea-basic-example.component.ts │ │ │ │ ├── platform-textarea-counter-example.component.html │ │ │ │ ├── platform-textarea-counter-example.component.ts │ │ │ │ ├── platform-textarea-counter-template-example.component.html │ │ │ │ └── platform-textarea-counter-template-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-textarea-docs.component.html │ │ │ ├── platform-textarea-docs.component.ts │ │ │ ├── platform-textarea-header │ │ │ │ ├── platform-textarea-header.component.html │ │ │ │ ├── platform-textarea-header.component.scss │ │ │ │ └── platform-textarea-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── time-picker │ │ │ ├── e2e │ │ │ │ ├── time-picker.e2e-spec.ts │ │ │ │ ├── time-picker.po.ts │ │ │ │ ├── time-picker.ts │ │ │ │ └── tsconfig.json │ │ │ ├── examples │ │ │ │ ├── platform-time-picker-basic-example.component.html │ │ │ │ ├── platform-time-picker-basic-example.component.ts │ │ │ │ ├── platform-time-picker-reactive-example.component.html │ │ │ │ ├── platform-time-picker-reactive-example.component.ts │ │ │ │ ├── platform-time-picker-template-example.component.html │ │ │ │ └── platform-time-picker-template-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-time-picker-docs.component.html │ │ │ ├── platform-time-picker-docs.component.ts │ │ │ ├── platform-time-picker-header │ │ │ │ ├── platform-time-picker-header.component.html │ │ │ │ └── platform-time-picker-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── tsconfig.json │ │ ├── variant-management │ │ │ ├── e2e │ │ │ │ ├── tsconfig.json │ │ │ │ └── variant-management.e2e-spec.ts │ │ │ ├── examples │ │ │ │ ├── default │ │ │ │ │ ├── variant-management-default-example.component.html │ │ │ │ │ └── variant-management-default-example.component.ts │ │ │ │ ├── dynamic-page │ │ │ │ │ ├── variant-management-dynamic-page-example.component.html │ │ │ │ │ └── variant-management-dynamic-page-example.component.ts │ │ │ │ ├── index.ts │ │ │ │ └── table │ │ │ │ │ ├── variant-management-table-example.component.html │ │ │ │ │ └── variant-management-table-example.component.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── tsconfig.json │ │ │ ├── variant-management-docs.component.html │ │ │ ├── variant-management-docs.component.ts │ │ │ └── variant-management-header │ │ │ │ ├── variant-management-header.component.html │ │ │ │ └── variant-management-header.component.ts │ │ ├── vhd │ │ │ ├── e2e │ │ │ │ ├── tsconfig.json │ │ │ │ ├── vhd-contents.ts │ │ │ │ ├── vhd.e2e-spec.ts │ │ │ │ ├── vhd.po.ts │ │ │ │ └── vhd.ts │ │ │ ├── examples │ │ │ │ ├── column-template │ │ │ │ │ ├── platform-vhd-column-template-example.component.html │ │ │ │ │ └── platform-vhd-column-template-example.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── initial-loading │ │ │ │ │ ├── platform-vhd-initial-loading-example.component.html │ │ │ │ │ └── platform-vhd-initial-loading-example.component.ts │ │ │ │ ├── platform-vhd-basic-example.component.html │ │ │ │ ├── platform-vhd-basic-example.component.ts │ │ │ │ ├── platform-vhd-input-example.component.html │ │ │ │ ├── platform-vhd-input-example.component.ts │ │ │ │ ├── platform-vhd-loading-example.component.html │ │ │ │ ├── platform-vhd-loading-example.component.ts │ │ │ │ ├── platform-vhd-mobile-example.component.html │ │ │ │ ├── platform-vhd-mobile-example.component.ts │ │ │ │ ├── platform-vhd-multi-input-example.component.html │ │ │ │ ├── platform-vhd-multi-input-example.component.ts │ │ │ │ ├── platform-vhd-strategy-labels-example.component.html │ │ │ │ ├── platform-vhd-strategy-labels-example.component.ts │ │ │ │ ├── platform-vhd-token-example.component.html │ │ │ │ └── platform-vhd-token-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-vhd-header │ │ │ │ ├── platform-vhd-header.component.html │ │ │ │ └── platform-vhd-header.component.ts │ │ │ ├── platform-vhd.docs.component.html │ │ │ ├── platform-vhd.docs.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ └── wizard-generator │ │ │ ├── e2e │ │ │ ├── tsconfig.json │ │ │ ├── wizard-generator.e2e-spec.ts │ │ │ ├── wizard-generator.po.ts │ │ │ └── wizard-generator.ts │ │ │ ├── examples │ │ │ ├── loading │ │ │ │ ├── wizard-generator-loading-example.component.html │ │ │ │ └── wizard-generator-loading-example.component.ts │ │ │ ├── wizard-generator-condition-example.component.html │ │ │ ├── wizard-generator-condition-example.component.ts │ │ │ ├── wizard-generator-customizable-embeded-example.component.html │ │ │ ├── wizard-generator-customizable-embeded-example.component.ts │ │ │ ├── wizard-generator-customizable-example.component.html │ │ │ ├── wizard-generator-customizable-example.component.ts │ │ │ ├── wizard-generator-default-example.component.html │ │ │ ├── wizard-generator-default-example.component.ts │ │ │ ├── wizard-generator-dialog-example.component.html │ │ │ ├── wizard-generator-dialog-example.component.ts │ │ │ ├── wizard-generator-external-navigation-example.component.html │ │ │ ├── wizard-generator-external-navigation-example.component.ts │ │ │ ├── wizard-generator-onchange-example.component.html │ │ │ ├── wizard-generator-onchange-example.component.ts │ │ │ ├── wizard-generator-responsive-dialog-example.component.html │ │ │ ├── wizard-generator-responsive-dialog-example.component.ts │ │ │ ├── wizard-generator-responsive-paddings-example.component.html │ │ │ ├── wizard-generator-responsive-paddings-example.component.ts │ │ │ ├── wizard-generator-special-elements-example.component.html │ │ │ ├── wizard-generator-special-elements-example.component.ts │ │ │ ├── wizard-generator-summary-objects-example.component.html │ │ │ ├── wizard-generator-summary-objects-example.component.ts │ │ │ ├── wizard-generator-visibility-between-steps-example.component.html │ │ │ ├── wizard-generator-visibility-between-steps-example.component.ts │ │ │ ├── wizard-generator-visible-summary-branching-example.component.html │ │ │ ├── wizard-generator-visible-summary-branching-example.component.ts │ │ │ ├── wizard-generator-visible-summary-example.component.html │ │ │ └── wizard-generator-visible-summary-example.component.ts │ │ │ ├── index.ts │ │ │ ├── platform-wizard-generator-docs.component.html │ │ │ ├── platform-wizard-generator-docs.component.ts │ │ │ ├── platform-wizard-generator-header │ │ │ ├── platform-wizard-generator-header.component.html │ │ │ └── platform-wizard-generator-header.component.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ ├── schema │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── consts │ │ │ │ └── schemas.ts │ │ │ │ ├── containers │ │ │ │ ├── schema-group │ │ │ │ │ ├── schema-group.component.html │ │ │ │ │ ├── schema-group.component.scss │ │ │ │ │ └── schema-group.component.ts │ │ │ │ └── schema │ │ │ │ │ ├── schema.component.html │ │ │ │ │ ├── schema.component.scss │ │ │ │ │ └── schema.component.ts │ │ │ │ ├── models │ │ │ │ └── schema.model.ts │ │ │ │ ├── pipes │ │ │ │ └── type-casting.pipe.ts │ │ │ │ ├── schema.module.ts │ │ │ │ └── services │ │ │ │ └── schema-factory │ │ │ │ └── schema-factory.service.ts │ │ └── tsconfig.json │ ├── shared-pages │ │ ├── eslint.config.js │ │ ├── index.ts │ │ ├── library-doc-shell-page.component.html │ │ ├── library-doc-shell-page.component.ts │ │ ├── library-readme-page.component.ts │ │ ├── new-component-page.component.ts │ │ ├── project.json │ │ └── tsconfig.json │ ├── shared │ │ ├── NEW_COMPONENT.md │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── common-components │ │ │ │ └── datetime-important │ │ │ │ │ ├── datetime-important.component.html │ │ │ │ │ └── datetime-important.component.ts │ │ │ │ ├── core-helpers │ │ │ │ ├── api │ │ │ │ │ ├── api.component.html │ │ │ │ │ ├── api.component.scss │ │ │ │ │ └── api.component.ts │ │ │ │ ├── code-example │ │ │ │ │ ├── code-example.component.html │ │ │ │ │ ├── code-example.component.scss │ │ │ │ │ ├── code-example.component.ts │ │ │ │ │ └── example-file.ts │ │ │ │ ├── code-snippet │ │ │ │ │ └── code-snippet.component.ts │ │ │ │ ├── component-example │ │ │ │ │ ├── component-example.component.scss │ │ │ │ │ └── component-example.component.ts │ │ │ │ ├── deprecated-alerts │ │ │ │ │ ├── deprecated-alerts.component.html │ │ │ │ │ └── deprecated-alerts.component.ts │ │ │ │ ├── description │ │ │ │ │ └── description.ts │ │ │ │ ├── directionality │ │ │ │ │ └── directionality.component.ts │ │ │ │ ├── doc-page │ │ │ │ │ ├── doc-page.component.html │ │ │ │ │ └── doc-page.component.ts │ │ │ │ ├── docs-section-title │ │ │ │ │ ├── docs-section-title.component.scss │ │ │ │ │ └── docs-section-title.component.ts │ │ │ │ ├── example-background │ │ │ │ │ └── example-background.component.ts │ │ │ │ ├── header-tabs │ │ │ │ │ ├── header-tabs.component.html │ │ │ │ │ ├── header-tabs.component.scss │ │ │ │ │ └── header-tabs.component.ts │ │ │ │ ├── header │ │ │ │ │ └── header.component.ts │ │ │ │ ├── i18n-docs │ │ │ │ │ ├── i18n-docs-loader.service.ts │ │ │ │ │ ├── i18n-docs.component.html │ │ │ │ │ └── i18n-docs.component.ts │ │ │ │ ├── import │ │ │ │ │ └── import.component.ts │ │ │ │ ├── pipes │ │ │ │ │ ├── filter.pipe.ts │ │ │ │ │ └── sort.pipe.ts │ │ │ │ ├── playground │ │ │ │ │ ├── playground.component.html │ │ │ │ │ ├── playground.component.ts │ │ │ │ │ └── playground.components.scss │ │ │ │ ├── sections-toolbar │ │ │ │ │ ├── section.interface.ts │ │ │ │ │ ├── sections-toolbar.component.html │ │ │ │ │ ├── sections-toolbar.component.scss │ │ │ │ │ └── sections-toolbar.component.ts │ │ │ │ ├── seperator │ │ │ │ │ └── seperator.component.ts │ │ │ │ ├── stackblitz │ │ │ │ │ ├── code-example-stack │ │ │ │ │ │ ├── angular.json │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── stackblitzrc │ │ │ │ │ │ ├── styles.scss │ │ │ │ │ │ └── tsconfig.json │ │ │ │ │ ├── interfaces │ │ │ │ │ │ ├── stackblitz-parameters.ts │ │ │ │ │ │ └── stackblitz-project.ts │ │ │ │ │ ├── stackblitz-dependencies.ts │ │ │ │ │ └── stackblitz.service.ts │ │ │ │ └── toolbar │ │ │ │ │ ├── toolbar.component.html │ │ │ │ │ ├── toolbar.component.scss │ │ │ │ │ └── toolbar.component.ts │ │ │ │ ├── documentation-base.component.scss │ │ │ │ ├── documentation-base.component.ts │ │ │ │ ├── getAsset.ts │ │ │ │ ├── router-utils.ts │ │ │ │ ├── services │ │ │ │ ├── api-docs.service.ts │ │ │ │ ├── copy.service.ts │ │ │ │ ├── docs.service.ts │ │ │ │ └── example-child.service.ts │ │ │ │ ├── tokens │ │ │ │ ├── current-component.token.ts │ │ │ │ ├── has-i18n.token.ts │ │ │ │ ├── package-json.token.ts │ │ │ │ └── translations.token.ts │ │ │ │ └── utilities │ │ │ │ ├── animations │ │ │ │ ├── collapse.ts │ │ │ │ └── common.ts │ │ │ │ ├── consts │ │ │ │ ├── index.ts │ │ │ │ ├── mobile-dialog.consts.ts │ │ │ │ └── mobile-mode-configuration-tokens.ts │ │ │ │ ├── icons.ts │ │ │ │ ├── index.ts │ │ │ │ └── libraries.ts │ │ └── tsconfig.json │ ├── ui5-webcomponents-ai │ │ ├── api-files.ts │ │ ├── button │ │ │ ├── button-docs.html │ │ │ ├── button-docs.ts │ │ │ ├── examples │ │ │ │ ├── basic-sample.html │ │ │ │ └── basic-sample.ts │ │ │ ├── header │ │ │ │ ├── button-header.html │ │ │ │ └── button-header.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── docs-data.json │ │ ├── docs-routes.ts │ │ ├── eslint.config.js │ │ ├── index.ts │ │ ├── project.json │ │ └── tsconfig.json │ ├── ui5-webcomponents-fiori │ │ ├── api-files.ts │ │ ├── barcode-scanner-dialog │ │ │ ├── barcode-scanner-dialog-docs.html │ │ │ ├── barcode-scanner-dialog-docs.ts │ │ │ ├── examples │ │ │ │ ├── barcode-scanner-dialog-sample.html │ │ │ │ └── barcode-scanner-dialog-sample.ts │ │ │ ├── header │ │ │ │ ├── barcode-scanner-dialog-header.html │ │ │ │ └── barcode-scanner-dialog-header.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── docs-data.json │ │ ├── docs-routes.ts │ │ ├── dynamic-page │ │ │ ├── dynamic-page-docs.html │ │ │ ├── dynamic-page-docs.ts │ │ │ ├── examples │ │ │ │ ├── dynamic-page-sample.html │ │ │ │ └── dynamic-page-sample.ts │ │ │ ├── header │ │ │ │ ├── dynamic-page-header.html │ │ │ │ └── dynamic-page-header.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── eslint.config.js │ │ ├── index.ts │ │ ├── media-gallery │ │ │ ├── examples │ │ │ │ ├── media-gallery-sample.html │ │ │ │ └── media-gallery-sample.ts │ │ │ ├── header │ │ │ │ ├── media-gallery-header.html │ │ │ │ └── media-gallery-header.ts │ │ │ ├── index.ts │ │ │ ├── media-gallery-docs.html │ │ │ ├── media-gallery-docs.ts │ │ │ ├── project.json │ │ │ └── tsconfig.json │ │ ├── project.json │ │ ├── timeline │ │ │ ├── examples │ │ │ │ ├── index.ts │ │ │ │ ├── timeline-sample.html │ │ │ │ └── timeline-sample.ts │ │ │ ├── header │ │ │ │ ├── timeline-header.html │ │ │ │ └── timeline-header.ts │ │ │ ├── index.ts │ │ │ ├── project.json │ │ │ ├── timeline-docs.html │ │ │ ├── timeline-docs.ts │ │ │ └── tsconfig.json │ │ └── tsconfig.json │ └── ui5-webcomponents │ │ ├── api-files.ts │ │ ├── avatar-group │ │ ├── avatar-group-docs.html │ │ ├── avatar-group-docs.ts │ │ ├── examples │ │ │ ├── avatar-group-sample.html │ │ │ └── avatar-group-sample.ts │ │ ├── header │ │ │ ├── avatar-group-header.html │ │ │ └── avatar-group-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ └── tsconfig.json │ │ ├── avatar │ │ ├── avatar-docs.html │ │ ├── avatar-docs.ts │ │ ├── examples │ │ │ ├── avatar-types.html │ │ │ ├── avatar-types.ts │ │ │ ├── basic-sample.html │ │ │ └── basic-sample.ts │ │ ├── header │ │ │ ├── avatar-header.html │ │ │ └── avatar-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ └── tsconfig.json │ │ ├── bar │ │ ├── bar-docs.html │ │ ├── bar-docs.ts │ │ ├── examples │ │ │ ├── accessible-role.html │ │ │ ├── accessible-role.ts │ │ │ ├── basic-sample.html │ │ │ └── basic-sample.ts │ │ ├── header │ │ │ ├── bar-header.html │ │ │ └── bar-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ └── tsconfig.json │ │ ├── breadcrumbs │ │ ├── breadcrumbs-docs.html │ │ ├── breadcrumbs-docs.ts │ │ ├── examples │ │ │ ├── basic-sample.html │ │ │ ├── basic-sample.ts │ │ │ ├── design.html │ │ │ ├── design.ts │ │ │ ├── overflow.html │ │ │ ├── overflow.ts │ │ │ ├── separators.html │ │ │ └── separators.ts │ │ ├── header │ │ │ ├── breadcrumbs-header.html │ │ │ └── breadcrumbs-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ └── tsconfig.json │ │ ├── busy-indicator │ │ ├── busy-indicator-docs.html │ │ ├── busy-indicator-docs.ts │ │ ├── examples │ │ │ ├── basic-sample.html │ │ │ ├── basic-sample.ts │ │ │ ├── delay.html │ │ │ ├── delay.ts │ │ │ ├── sizes.html │ │ │ ├── sizes.ts │ │ │ ├── text-placement.html │ │ │ └── text-placement.ts │ │ ├── header │ │ │ ├── busy-indicator-header.html │ │ │ └── busy-indicator-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ └── tsconfig.json │ │ ├── button │ │ ├── button-docs.html │ │ ├── button-docs.ts │ │ ├── examples │ │ │ ├── button-sample.html │ │ │ └── button-sample.ts │ │ ├── header │ │ │ ├── button-header.html │ │ │ └── button-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ └── tsconfig.json │ │ ├── calendar-legend │ │ ├── calendar-legend-docs.html │ │ ├── calendar-legend-docs.ts │ │ ├── examples │ │ │ ├── basic-sample.html │ │ │ ├── basic-sample.ts │ │ │ ├── hidden-items.html │ │ │ ├── hidden-items.ts │ │ │ ├── item-types.html │ │ │ └── item-types.ts │ │ ├── header │ │ │ ├── calendar-legend-header.html │ │ │ └── calendar-legend-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ └── tsconfig.json │ │ ├── calendar │ │ ├── calendar-docs.html │ │ ├── calendar-docs.ts │ │ ├── examples │ │ │ ├── calendar-sample.html │ │ │ └── calendar-sample.ts │ │ ├── header │ │ │ ├── calendar-header.html │ │ │ └── calendar-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ └── tsconfig.json │ │ ├── card │ │ ├── card-docs.html │ │ ├── card-docs.ts │ │ ├── examples │ │ │ ├── card-sample.html │ │ │ └── card-sample.ts │ │ ├── header │ │ │ ├── card-header.html │ │ │ └── card-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ └── tsconfig.json │ │ ├── carousel │ │ ├── carousel-docs.html │ │ ├── carousel-docs.ts │ │ ├── examples │ │ │ ├── carousel-sample.html │ │ │ └── carousel-sample.ts │ │ ├── header │ │ │ ├── carousel-header.html │ │ │ └── carousel-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ └── tsconfig.json │ │ ├── check-box │ │ ├── checkbox-docs.html │ │ ├── checkbox-docs.ts │ │ ├── examples │ │ │ ├── basic-sample.html │ │ │ ├── basic-sample.ts │ │ │ ├── in-form.html │ │ │ ├── in-form.ts │ │ │ ├── states.html │ │ │ ├── states.ts │ │ │ ├── value-states.html │ │ │ ├── value-states.ts │ │ │ ├── wrapping.html │ │ │ └── wrapping.ts │ │ ├── header │ │ │ ├── checkbox-header.html │ │ │ └── checkbox-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ └── tsconfig.json │ │ ├── color-palette-popover │ │ ├── color-palette-popover-docs.html │ │ ├── color-palette-popover-docs.ts │ │ ├── examples │ │ │ ├── basic-sample.html │ │ │ ├── basic-sample.ts │ │ │ ├── default-color.html │ │ │ ├── default-color.ts │ │ │ ├── more-colors.html │ │ │ └── more-colors.ts │ │ ├── header │ │ │ ├── color-palette-popover-header.html │ │ │ └── color-palette-popover-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ └── tsconfig.json │ │ ├── color-palette │ │ ├── color-palette-docs.html │ │ ├── color-palette-docs.ts │ │ ├── examples │ │ │ ├── basic-sample.html │ │ │ └── basic-sample.ts │ │ ├── header │ │ │ ├── color-palette-header.html │ │ │ └── color-palette-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ └── tsconfig.json │ │ ├── color-picker │ │ ├── color-picker-docs.html │ │ ├── color-picker-docs.ts │ │ ├── examples │ │ │ ├── basic-sample.html │ │ │ ├── basic-sample.ts │ │ │ ├── simplified.html │ │ │ └── simplified.ts │ │ ├── header │ │ │ ├── color-picker-header.html │ │ │ └── color-picker-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ └── tsconfig.json │ │ ├── combo-box │ │ ├── combo-box-docs.html │ │ ├── combo-box-docs.ts │ │ ├── examples │ │ │ ├── additional-text.html │ │ │ ├── additional-text.ts │ │ │ ├── basic-sample.html │ │ │ ├── basic-sample.ts │ │ │ ├── clear-icon.html │ │ │ ├── clear-icon.ts │ │ │ ├── filter.html │ │ │ ├── filter.ts │ │ │ ├── items-grouping.html │ │ │ ├── items-grouping.ts │ │ │ ├── states.html │ │ │ ├── states.ts │ │ │ ├── value-state.html │ │ │ └── value-state.ts │ │ ├── header │ │ │ ├── combo-box-header.html │ │ │ └── combo-box-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ └── tsconfig.json │ │ ├── date-picker │ │ ├── date-picker-docs.html │ │ ├── date-picker-docs.ts │ │ ├── examples │ │ │ ├── basic-sample.html │ │ │ ├── basic-sample.ts │ │ │ ├── calendar-types-sample.html │ │ │ ├── calendar-types-sample.ts │ │ │ ├── component-states-sample.html │ │ │ ├── component-states-sample.ts │ │ │ ├── format-sample.html │ │ │ ├── format-sample.ts │ │ │ ├── min-max-sample.html │ │ │ ├── min-max-sample.ts │ │ │ ├── value-state-sample.html │ │ │ └── value-state-sample.ts │ │ ├── header │ │ │ ├── date-picker-header.html │ │ │ └── date-picker-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ └── tsconfig.json │ │ ├── date-range-picker │ │ ├── date-range-picker-docs.html │ │ ├── date-range-picker-docs.ts │ │ ├── examples │ │ │ ├── basic-sample.html │ │ │ ├── basic-sample.ts │ │ │ ├── component-states-sample.html │ │ │ ├── component-states-sample.ts │ │ │ ├── delimiter-sample.html │ │ │ ├── delimiter-sample.ts │ │ │ ├── format-sample.html │ │ │ ├── format-sample.ts │ │ │ ├── min-max-sample.html │ │ │ ├── min-max-sample.ts │ │ │ ├── value-state-sample.html │ │ │ └── value-state-sample.ts │ │ ├── header │ │ │ ├── date-range-picker-header.html │ │ │ └── date-range-picker-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ └── tsconfig.json │ │ ├── docs-data.json │ │ ├── docs-routes.ts │ │ ├── eslint.config.js │ │ ├── expandable-text │ │ ├── examples │ │ │ ├── basic-sample.html │ │ │ ├── basic-sample.ts │ │ │ ├── overflow-mode-popover.html │ │ │ └── overflow-mode-popover.ts │ │ ├── expandable-text-docs.html │ │ ├── expandable-text-docs.ts │ │ ├── header │ │ │ ├── expandable-text-header.html │ │ │ └── expandable-text-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ └── tsconfig.json │ │ ├── form │ │ ├── examples │ │ │ ├── basic-sample.html │ │ │ ├── basic-sample.ts │ │ │ ├── column-span.html │ │ │ ├── column-span.ts │ │ │ ├── custom-header.html │ │ │ ├── custom-header.ts │ │ │ ├── edit.html │ │ │ ├── edit.ts │ │ │ ├── empty-span.html │ │ │ ├── empty-span.ts │ │ │ ├── header-text-wrapping.html │ │ │ ├── header-text-wrapping.ts │ │ │ ├── label-span.html │ │ │ ├── label-span.ts │ │ │ ├── labels-on-top.html │ │ │ ├── labels-on-top.ts │ │ │ ├── layouts.html │ │ │ ├── layouts.ts │ │ │ ├── validation.html │ │ │ └── validation.ts │ │ ├── form-docs.html │ │ ├── form-docs.ts │ │ ├── header │ │ │ ├── form-header.html │ │ │ └── form-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ └── tsconfig.json │ │ ├── icon │ │ ├── examples │ │ │ ├── basic-sample.html │ │ │ ├── basic-sample.ts │ │ │ ├── business-suite-icons.html │ │ │ ├── business-suite-icons.ts │ │ │ ├── customization.html │ │ │ ├── customization.ts │ │ │ ├── designs.html │ │ │ ├── designs.ts │ │ │ ├── interactive.html │ │ │ ├── interactive.ts │ │ │ ├── tnt-icons.html │ │ │ └── tnt-icons.ts │ │ ├── header │ │ │ ├── icon-header.html │ │ │ └── icon-header.ts │ │ ├── icon-docs.html │ │ ├── icon-docs.ts │ │ ├── index.ts │ │ ├── project.json │ │ └── tsconfig.json │ │ ├── index.ts │ │ ├── input │ │ ├── examples │ │ │ ├── input-sample.html │ │ │ └── input-sample.ts │ │ ├── header │ │ │ ├── input-header.html │ │ │ └── input-header.ts │ │ ├── index.ts │ │ ├── input-docs.html │ │ ├── input-docs.ts │ │ ├── project.json │ │ └── tsconfig.json │ │ ├── label │ │ ├── examples │ │ │ ├── label-sample.html │ │ │ └── label-sample.ts │ │ ├── header │ │ │ ├── label-header.html │ │ │ └── label-header.ts │ │ ├── index.ts │ │ ├── label-docs.html │ │ ├── label-docs.ts │ │ ├── project.json │ │ └── tsconfig.json │ │ ├── link │ │ ├── examples │ │ │ ├── link-sample.html │ │ │ └── link-sample.ts │ │ ├── header │ │ │ ├── link-header.html │ │ │ └── link-header.ts │ │ ├── index.ts │ │ ├── link-docs.html │ │ ├── link-docs.ts │ │ ├── project.json │ │ └── tsconfig.json │ │ ├── list │ │ ├── examples │ │ │ ├── basic-sample.html │ │ │ ├── basic-sample.ts │ │ │ ├── drag-and-drop.html │ │ │ ├── drag-and-drop.ts │ │ │ ├── grouping.html │ │ │ ├── grouping.ts │ │ │ ├── growing-list.html │ │ │ ├── growing-list.ts │ │ │ ├── multiple-drag-and-drop.html │ │ │ ├── multiple-drag-and-drop.ts │ │ │ ├── no-data.html │ │ │ ├── no-data.ts │ │ │ ├── selection-modes.html │ │ │ ├── selection-modes.ts │ │ │ ├── separators.html │ │ │ ├── separators.ts │ │ │ ├── wrapping.html │ │ │ └── wrapping.ts │ │ ├── header │ │ │ ├── list-header.html │ │ │ └── list-header.ts │ │ ├── index.ts │ │ ├── list-docs.html │ │ ├── list-docs.ts │ │ ├── project.json │ │ └── tsconfig.json │ │ ├── message-strip │ │ ├── examples │ │ │ ├── basic-sample.html │ │ │ ├── basic-sample.ts │ │ │ ├── custom-icon.html │ │ │ ├── custom-icon.ts │ │ │ ├── customization.html │ │ │ ├── customization.ts │ │ │ ├── designs.html │ │ │ ├── designs.ts │ │ │ ├── hide-icon-and-close-button.html │ │ │ └── hide-icon-and-close-button.ts │ │ ├── header │ │ │ ├── message-strip-header.html │ │ │ └── message-strip-header.ts │ │ ├── index.ts │ │ ├── message-strip-docs.html │ │ ├── message-strip-docs.ts │ │ ├── project.json │ │ └── tsconfig.json │ │ ├── panel │ │ ├── examples │ │ │ ├── basic-sample.html │ │ │ ├── basic-sample.ts │ │ │ ├── custom-header.html │ │ │ ├── custom-header.ts │ │ │ ├── fixed-panel.html │ │ │ ├── fixed-panel.ts │ │ │ ├── sticky-header-panel.html │ │ │ └── sticky-header-panel.ts │ │ ├── header │ │ │ ├── panel-header.html │ │ │ └── panel-header.ts │ │ ├── index.ts │ │ ├── panel-docs.html │ │ ├── panel-docs.ts │ │ ├── project.json │ │ └── tsconfig.json │ │ ├── popover │ │ ├── examples │ │ │ ├── basic-popover.html │ │ │ ├── basic-popover.scss │ │ │ └── basic-popover.ts │ │ ├── header │ │ │ ├── popover-header.html │ │ │ └── popover-header.ts │ │ ├── index.ts │ │ ├── popover-docs.html │ │ ├── popover-docs.ts │ │ ├── project.json │ │ └── tsconfig.json │ │ ├── progress-indicator │ │ ├── examples │ │ │ ├── basic-progress-indicator.html │ │ │ ├── basic-progress-indicator.ts │ │ │ ├── custom-display-progress-indicator.html │ │ │ ├── custom-display-progress-indicator.ts │ │ │ ├── value-state-progress-indicator.html │ │ │ └── value-state-progress-indicator.ts │ │ ├── header │ │ │ ├── progress-indicator-header.html │ │ │ └── progress-indicator-header.ts │ │ ├── index.ts │ │ ├── progress-indicator-docs.html │ │ ├── progress-indicator-docs.ts │ │ ├── project.json │ │ └── tsconfig.json │ │ ├── project.json │ │ ├── rating-indicator │ │ ├── examples │ │ │ ├── basic-sample.html │ │ │ ├── basic-sample.ts │ │ │ ├── sizes.html │ │ │ └── sizes.ts │ │ ├── header │ │ │ ├── rating-indicator-header.html │ │ │ └── rating-indicator-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ ├── rating-indicator-docs.html │ │ ├── rating-indicator-docs.ts │ │ └── tsconfig.json │ │ ├── segmented-button │ │ ├── examples │ │ │ ├── segmented-button-sample.html │ │ │ └── segmented-button-sample.ts │ │ ├── header │ │ │ ├── segmented-button-header.html │ │ │ └── segmented-button-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ ├── segmented-button-docs.html │ │ ├── segmented-button-docs.ts │ │ └── tsconfig.json │ │ ├── slider │ │ ├── examples │ │ │ ├── slider-sample.html │ │ │ └── slider-sample.ts │ │ ├── header │ │ │ ├── slider-header.html │ │ │ └── slider-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ ├── slider-docs.html │ │ ├── slider-docs.ts │ │ └── tsconfig.json │ │ ├── step-input │ │ ├── examples │ │ │ ├── basic-step-input.html │ │ │ ├── basic-step-input.ts │ │ │ ├── precision-step-input.html │ │ │ ├── precision-step-input.ts │ │ │ ├── range-step-input.html │ │ │ ├── range-step-input.ts │ │ │ ├── value-state-step-input.html │ │ │ └── value-state-step-input.ts │ │ ├── header │ │ │ ├── step-input-header.html │ │ │ └── step-input-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ ├── step-input-docs.html │ │ ├── step-input-docs.ts │ │ └── tsconfig.json │ │ ├── switch │ │ ├── examples │ │ │ ├── basic-sample.html │ │ │ ├── basic-sample.ts │ │ │ ├── design-switch.html │ │ │ └── design-switch.ts │ │ ├── header │ │ │ ├── switch-header.html │ │ │ └── switch-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ ├── switch-docs.html │ │ ├── switch-docs.ts │ │ └── tsconfig.json │ │ ├── tag │ │ ├── examples │ │ │ ├── basic-sample.html │ │ │ ├── basic-sample.ts │ │ │ ├── color-schemes.html │ │ │ ├── color-schemes.ts │ │ │ ├── designs.html │ │ │ ├── designs.ts │ │ │ ├── interactive.html │ │ │ ├── interactive.ts │ │ │ ├── sizes.html │ │ │ ├── sizes.ts │ │ │ ├── wrapping.html │ │ │ └── wrapping.ts │ │ ├── header │ │ │ ├── tag-header.html │ │ │ └── tag-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ ├── tag-docs.html │ │ ├── tag-docs.ts │ │ └── tsconfig.json │ │ ├── text-area │ │ ├── examples │ │ │ ├── basic-sample.html │ │ │ ├── basic-sample.ts │ │ │ ├── character-limit.html │ │ │ ├── character-limit.ts │ │ │ ├── events.html │ │ │ ├── events.ts │ │ │ ├── growing.html │ │ │ ├── growing.ts │ │ │ ├── value-states.html │ │ │ └── value-states.ts │ │ ├── header │ │ │ ├── textarea-header.html │ │ │ └── textarea-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ ├── textarea-docs.html │ │ ├── textarea-docs.ts │ │ └── tsconfig.json │ │ ├── text │ │ ├── examples │ │ │ ├── basic-sample.html │ │ │ ├── basic-sample.ts │ │ │ ├── custom-styling.html │ │ │ ├── custom-styling.ts │ │ │ ├── empty-indicator.html │ │ │ ├── empty-indicator.ts │ │ │ ├── hyphenation.html │ │ │ ├── hyphenation.ts │ │ │ ├── max-lines.html │ │ │ ├── max-lines.ts │ │ │ ├── white-space.html │ │ │ └── white-space.ts │ │ ├── header │ │ │ ├── text-header.html │ │ │ └── text-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ ├── text-docs.html │ │ ├── text-docs.ts │ │ └── tsconfig.json │ │ ├── time-picker │ │ ├── examples │ │ │ ├── basic-sample.html │ │ │ ├── basic-sample.ts │ │ │ ├── events.html │ │ │ ├── events.ts │ │ │ ├── format-patterns.html │ │ │ ├── format-patterns.ts │ │ │ ├── states.html │ │ │ ├── states.ts │ │ │ ├── value-states.html │ │ │ └── value-states.ts │ │ ├── header │ │ │ ├── time-picker-header.html │ │ │ └── time-picker-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ ├── time-picker-docs.html │ │ ├── time-picker-docs.ts │ │ └── tsconfig.json │ │ ├── title │ │ ├── examples │ │ │ ├── basic-sample.html │ │ │ ├── basic-sample.ts │ │ │ ├── levels.html │ │ │ ├── levels.ts │ │ │ ├── sizes.html │ │ │ ├── sizes.ts │ │ │ ├── wrapping.html │ │ │ └── wrapping.ts │ │ ├── header │ │ │ ├── title-header.html │ │ │ └── title-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ ├── title-docs.html │ │ ├── title-docs.ts │ │ └── tsconfig.json │ │ ├── toast │ │ ├── examples │ │ │ ├── basic-sample.html │ │ │ ├── basic-sample.ts │ │ │ ├── duration.html │ │ │ ├── duration.ts │ │ │ ├── placement.html │ │ │ └── placement.ts │ │ ├── header │ │ │ ├── toast-header.html │ │ │ └── toast-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ ├── toast-docs.html │ │ ├── toast-docs.ts │ │ └── tsconfig.json │ │ ├── toggle-button │ │ ├── examples │ │ │ ├── basic-sample.html │ │ │ ├── basic-sample.ts │ │ │ ├── designs.html │ │ │ ├── designs.ts │ │ │ ├── icons.html │ │ │ ├── icons.ts │ │ │ ├── interactive.html │ │ │ └── interactive.ts │ │ ├── header │ │ │ ├── toggle-button-header.html │ │ │ └── toggle-button-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ ├── toggle-button-docs.html │ │ ├── toggle-button-docs.ts │ │ └── tsconfig.json │ │ ├── token │ │ ├── examples │ │ │ ├── basic-sample.html │ │ │ ├── basic-sample.ts │ │ │ ├── token-in-multi-input.html │ │ │ └── token-in-multi-input.ts │ │ ├── header │ │ │ ├── token-header.html │ │ │ └── token-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ ├── token-docs.html │ │ ├── token-docs.ts │ │ └── tsconfig.json │ │ ├── tokenizer │ │ ├── examples │ │ │ ├── basic-sample.html │ │ │ ├── basic-sample.ts │ │ │ ├── clear-all.html │ │ │ ├── clear-all.ts │ │ │ ├── multi-line.html │ │ │ ├── multi-line.ts │ │ │ ├── readonly.html │ │ │ └── readonly.ts │ │ ├── header │ │ │ ├── tokenizer-header.html │ │ │ └── tokenizer-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ ├── tokenizer-docs.html │ │ ├── tokenizer-docs.ts │ │ └── tsconfig.json │ │ ├── toolbar │ │ ├── examples │ │ │ ├── alignment.html │ │ │ ├── alignment.ts │ │ │ ├── basic-sample.html │ │ │ ├── basic-sample.ts │ │ │ ├── complex.html │ │ │ ├── complex.ts │ │ │ ├── design.html │ │ │ ├── design.ts │ │ │ ├── overflow.html │ │ │ └── overflow.ts │ │ ├── header │ │ │ ├── toolbar-header.html │ │ │ └── toolbar-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ ├── toolbar-docs.html │ │ ├── toolbar-docs.ts │ │ └── tsconfig.json │ │ ├── tree │ │ ├── examples │ │ │ ├── basic-sample.html │ │ │ ├── basic-sample.ts │ │ │ ├── custom-content.html │ │ │ ├── custom-content.ts │ │ │ ├── drag-and-drop.html │ │ │ ├── drag-and-drop.ts │ │ │ ├── icons.html │ │ │ ├── icons.ts │ │ │ ├── lazy-loading.html │ │ │ ├── lazy-loading.ts │ │ │ ├── selection.html │ │ │ └── selection.ts │ │ ├── header │ │ │ ├── tree-header.html │ │ │ └── tree-header.ts │ │ ├── index.ts │ │ ├── project.json │ │ ├── tree-docs.html │ │ ├── tree-docs.ts │ │ └── tsconfig.json │ │ └── tsconfig.json ├── i18n │ ├── CHANGELOG.md │ ├── README.md │ ├── eslint.config.js │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── directives │ │ │ │ ├── index.ts │ │ │ │ └── patch-language.directive.ts │ │ │ ├── i18n.module.ts │ │ │ ├── languages │ │ │ │ ├── albanian.ts │ │ │ │ ├── arabic.ts │ │ │ │ ├── bulgarian.ts │ │ │ │ ├── chinese.ts │ │ │ │ ├── chinese_simplified.ts │ │ │ │ ├── chinese_traditional.ts │ │ │ │ ├── croatian.ts │ │ │ │ ├── czech.ts │ │ │ │ ├── danish.ts │ │ │ │ ├── dutch.ts │ │ │ │ ├── english.ts │ │ │ │ ├── finnish.ts │ │ │ │ ├── french.ts │ │ │ │ ├── georgian.ts │ │ │ │ ├── german.ts │ │ │ │ ├── greek.ts │ │ │ │ ├── hebrew.ts │ │ │ │ ├── hindi.ts │ │ │ │ ├── hungarian.ts │ │ │ │ ├── index.ts │ │ │ │ ├── italian.ts │ │ │ │ ├── japanese.ts │ │ │ │ ├── kazakh.ts │ │ │ │ ├── korean.ts │ │ │ │ ├── malay.ts │ │ │ │ ├── norwegian.ts │ │ │ │ ├── polish.ts │ │ │ │ ├── portuguese.ts │ │ │ │ ├── romanian.ts │ │ │ │ ├── russian.ts │ │ │ │ ├── serbian.ts │ │ │ │ ├── slovak.ts │ │ │ │ ├── slovenian.ts │ │ │ │ ├── spanish.ts │ │ │ │ ├── swedish.ts │ │ │ │ ├── thai.ts │ │ │ │ ├── turkish.ts │ │ │ │ └── ukrainian.ts │ │ │ ├── models │ │ │ │ ├── fd-language-key-ctx.ts │ │ │ │ ├── fd-language-key-identifier.ts │ │ │ │ ├── fd-language-key.ts │ │ │ │ ├── fd-language.ts │ │ │ │ ├── flat-fd-language.ts │ │ │ │ ├── index.ts │ │ │ │ └── patch-language.ts │ │ │ ├── pipes │ │ │ │ ├── fd-translate.pipe.spec.ts │ │ │ │ ├── fd-translate.pipe.ts │ │ │ │ └── index.ts │ │ │ ├── translations │ │ │ │ ├── translations.properties │ │ │ │ ├── translations.spec.ts │ │ │ │ ├── translations.ts │ │ │ │ ├── translations_ar.properties │ │ │ │ ├── translations_ar.spec.ts │ │ │ │ ├── translations_ar.ts │ │ │ │ ├── translations_bg.properties │ │ │ │ ├── translations_bg.spec.ts │ │ │ │ ├── translations_bg.ts │ │ │ │ ├── translations_cs.properties │ │ │ │ ├── translations_cs.spec.ts │ │ │ │ ├── translations_cs.ts │ │ │ │ ├── translations_da.properties │ │ │ │ ├── translations_da.spec.ts │ │ │ │ ├── translations_da.ts │ │ │ │ ├── translations_de.properties │ │ │ │ ├── translations_de.spec.ts │ │ │ │ ├── translations_de.ts │ │ │ │ ├── translations_el.properties │ │ │ │ ├── translations_el.spec.ts │ │ │ │ ├── translations_el.ts │ │ │ │ ├── translations_en_US_sappsd.properties │ │ │ │ ├── translations_en_US_sappsd.spec.ts │ │ │ │ ├── translations_en_US_sappsd.ts │ │ │ │ ├── translations_es.properties │ │ │ │ ├── translations_es.spec.ts │ │ │ │ ├── translations_es.ts │ │ │ │ ├── translations_fi.properties │ │ │ │ ├── translations_fi.spec.ts │ │ │ │ ├── translations_fi.ts │ │ │ │ ├── translations_fr.properties │ │ │ │ ├── translations_fr.spec.ts │ │ │ │ ├── translations_fr.ts │ │ │ │ ├── translations_he.properties │ │ │ │ ├── translations_he.spec.ts │ │ │ │ ├── translations_he.ts │ │ │ │ ├── translations_hi.properties │ │ │ │ ├── translations_hi.spec.ts │ │ │ │ ├── translations_hi.ts │ │ │ │ ├── translations_hr.properties │ │ │ │ ├── translations_hr.spec.ts │ │ │ │ ├── translations_hr.ts │ │ │ │ ├── translations_hu.properties │ │ │ │ ├── translations_hu.spec.ts │ │ │ │ ├── translations_hu.ts │ │ │ │ ├── translations_it.properties │ │ │ │ ├── translations_it.spec.ts │ │ │ │ ├── translations_it.ts │ │ │ │ ├── translations_ja.properties │ │ │ │ ├── translations_ja.spec.ts │ │ │ │ ├── translations_ja.ts │ │ │ │ ├── translations_ka.properties │ │ │ │ ├── translations_ka.spec.ts │ │ │ │ ├── translations_ka.ts │ │ │ │ ├── translations_kk.properties │ │ │ │ ├── translations_kk.spec.ts │ │ │ │ ├── translations_kk.ts │ │ │ │ ├── translations_ko.properties │ │ │ │ ├── translations_ko.spec.ts │ │ │ │ ├── translations_ko.ts │ │ │ │ ├── translations_ms.properties │ │ │ │ ├── translations_ms.spec.ts │ │ │ │ ├── translations_ms.ts │ │ │ │ ├── translations_nl.properties │ │ │ │ ├── translations_nl.spec.ts │ │ │ │ ├── translations_nl.ts │ │ │ │ ├── translations_no.properties │ │ │ │ ├── translations_no.spec.ts │ │ │ │ ├── translations_no.ts │ │ │ │ ├── translations_pl.properties │ │ │ │ ├── translations_pl.spec.ts │ │ │ │ ├── translations_pl.ts │ │ │ │ ├── translations_pt.properties │ │ │ │ ├── translations_pt.spec.ts │ │ │ │ ├── translations_pt.ts │ │ │ │ ├── translations_ro.properties │ │ │ │ ├── translations_ro.spec.ts │ │ │ │ ├── translations_ro.ts │ │ │ │ ├── translations_ru.properties │ │ │ │ ├── translations_ru.spec.ts │ │ │ │ ├── translations_ru.ts │ │ │ │ ├── translations_sh.properties │ │ │ │ ├── translations_sh.spec.ts │ │ │ │ ├── translations_sh.ts │ │ │ │ ├── translations_sk.properties │ │ │ │ ├── translations_sk.spec.ts │ │ │ │ ├── translations_sk.ts │ │ │ │ ├── translations_sl.properties │ │ │ │ ├── translations_sl.spec.ts │ │ │ │ ├── translations_sl.ts │ │ │ │ ├── translations_sq.properties │ │ │ │ ├── translations_sq.spec.ts │ │ │ │ ├── translations_sq.ts │ │ │ │ ├── translations_sv.properties │ │ │ │ ├── translations_sv.spec.ts │ │ │ │ ├── translations_sv.ts │ │ │ │ ├── translations_th.properties │ │ │ │ ├── translations_th.spec.ts │ │ │ │ ├── translations_th.ts │ │ │ │ ├── translations_tr.properties │ │ │ │ ├── translations_tr.spec.ts │ │ │ │ ├── translations_tr.ts │ │ │ │ ├── translations_uk.properties │ │ │ │ ├── translations_uk.spec.ts │ │ │ │ ├── translations_uk.ts │ │ │ │ ├── translations_zh_CN.properties │ │ │ │ ├── translations_zh_CN.spec.ts │ │ │ │ ├── translations_zh_CN.ts │ │ │ │ ├── translations_zh_TW.properties │ │ │ │ ├── translations_zh_TW.spec.ts │ │ │ │ └── translations_zh_TW.ts │ │ │ └── utils │ │ │ │ ├── flatten-translations.ts │ │ │ │ ├── index.ts │ │ │ │ ├── load-json.spec.ts │ │ │ │ ├── load-json.ts │ │ │ │ ├── load-properties.ts │ │ │ │ ├── patch-language.ts │ │ │ │ ├── resolve-helpers │ │ │ │ ├── common-types.ts │ │ │ │ ├── index.ts │ │ │ │ ├── resolve-translations-observable.ts │ │ │ │ ├── resolve-translations-signal.ts │ │ │ │ └── resolve-translations-sync.ts │ │ │ │ ├── tokens.ts │ │ │ │ ├── translation-resolver.spec.ts │ │ │ │ ├── translation-resolver.ts │ │ │ │ └── translation-tester.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── moment-adapter │ ├── CHANGELOG.md │ ├── README.md │ ├── eslint.config.js │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── moment-datetime-adapter.spec.ts │ │ │ ├── moment-datetime-adapter.ts │ │ │ ├── moment-datetime-formats.ts │ │ │ └── moment-datetime.module.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.schematics.json │ └── tsconfig.spec.json ├── nx-plugin │ ├── CHANGELOG.md │ ├── README.md │ ├── eslint.config.js │ ├── executors.json │ ├── generators.json │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ │ ├── e2e-utils │ │ │ ├── affected-projects.ts │ │ │ ├── get-projects.ts │ │ │ ├── options.type.ts │ │ │ ├── run-wdio.ts │ │ │ ├── spec-files.ts │ │ │ └── start-dev-server.ts │ │ ├── executors │ │ │ ├── compile-typedoc │ │ │ │ ├── README.md │ │ │ │ ├── executor.ts │ │ │ │ ├── schema.d.ts │ │ │ │ ├── schema.json │ │ │ │ └── theme │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── partials │ │ │ │ │ ├── comment.summary.tsx │ │ │ │ │ ├── comment.tags.tsx │ │ │ │ │ ├── comment.tsx │ │ │ │ │ ├── default.layout.tsx │ │ │ │ │ ├── hierarchy.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── member.declaration.tsx │ │ │ │ │ ├── member.getter-setter.tsx │ │ │ │ │ ├── member.signatures.tsx │ │ │ │ │ ├── member.sources.tsx │ │ │ │ │ ├── member.tsx │ │ │ │ │ ├── reflection.tsx │ │ │ │ │ └── type.tsx │ │ │ │ │ └── utils.tsx │ │ │ ├── e2e-test-app │ │ │ │ ├── executor.ts │ │ │ │ ├── schema.d.ts │ │ │ │ └── schema.json │ │ │ ├── e2e-test │ │ │ │ ├── README.md │ │ │ │ ├── executor.ts │ │ │ │ ├── schema.d.ts │ │ │ │ ├── schema.json │ │ │ │ └── schema.type.ts │ │ │ └── transform-translations │ │ │ │ ├── duplicates.ts │ │ │ │ ├── executor.ts │ │ │ │ ├── schema.d.ts │ │ │ │ ├── schema.json │ │ │ │ └── update-typings.ts │ │ ├── generators │ │ │ ├── migrate-to-jest │ │ │ │ ├── generator.ts │ │ │ │ └── schema.json │ │ │ ├── sap-component │ │ │ │ ├── add-entry-to-api-files.ts │ │ │ │ ├── add-entry-to-docs-routes.ts │ │ │ │ ├── files │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── __fileName__-docs.component.html.template │ │ │ │ │ │ ├── __fileName__-docs.component.ts.template │ │ │ │ │ │ ├── __fileName__-header │ │ │ │ │ │ │ ├── __fileName__-header.component.html.template │ │ │ │ │ │ │ └── __fileName__-header.component.ts.template │ │ │ │ │ │ ├── e2e │ │ │ │ │ │ │ ├── __fileName__.e2e-spec.ts.template │ │ │ │ │ │ │ └── tsconfig.json.template │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ │ ├── __fileName__-default-example.component.html.template │ │ │ │ │ │ │ │ └── __fileName__-default-example.component.ts.template │ │ │ │ │ │ │ └── index.ts.template │ │ │ │ │ │ ├── index.ts.template │ │ │ │ │ │ ├── project.json.template │ │ │ │ │ │ └── tsconfig.json.template │ │ │ │ │ └── library │ │ │ │ │ │ ├── __fileName__.component.ts.template │ │ │ │ │ │ ├── index.ts.template │ │ │ │ │ │ ├── ng-package.json.template │ │ │ │ │ │ └── project.json.template │ │ │ │ ├── generation-context.ts │ │ │ │ ├── generator.ts │ │ │ │ └── schema.json │ │ │ └── sync-versions │ │ │ │ ├── generator.ts │ │ │ │ ├── schema.d.ts │ │ │ │ ├── schema.json │ │ │ │ └── utils.ts │ │ ├── index.ts │ │ ├── test-setup.ts │ │ └── verify-nx-tags.spec.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── platform │ ├── CHANGELOG.md │ ├── README.md │ ├── approval-flow │ │ ├── approval-flow-add-node │ │ │ ├── approval-flow-add-node.component.html │ │ │ ├── approval-flow-add-node.component.scss │ │ │ ├── approval-flow-add-node.component.spec.ts │ │ │ └── approval-flow-add-node.component.ts │ │ ├── approval-flow-approver-details │ │ │ ├── approval-flow-approver-details.component.html │ │ │ └── approval-flow-approver-details.component.ts │ │ ├── approval-flow-graph.ts │ │ ├── approval-flow-messages │ │ │ ├── approval-flow-messages.component.html │ │ │ ├── approval-flow-messages.component.scss │ │ │ └── approval-flow-messages.component.ts │ │ ├── approval-flow-node │ │ │ ├── approval-flow-drop-zone.directive.ts │ │ │ ├── approval-flow-node.component.html │ │ │ ├── approval-flow-node.component.scss │ │ │ ├── approval-flow-node.component.spec.ts │ │ │ └── approval-flow-node.component.ts │ │ ├── approval-flow-select-type │ │ │ ├── approval-flow-select-type.component.html │ │ │ ├── approval-flow-select-type.component.scss │ │ │ ├── approval-flow-select-type.component.spec.ts │ │ │ └── approval-flow-select-type.component.ts │ │ ├── approval-flow-team-list │ │ │ ├── approval-flow-team-list.component.html │ │ │ ├── approval-flow-team-list.component.scss │ │ │ ├── approval-flow-team-list.component.spec.ts │ │ │ └── approval-flow-team-list.component.ts │ │ ├── approval-flow-toolbar-actions │ │ │ ├── approval-flow-toolbar-actions.component.html │ │ │ ├── approval-flow-toolbar-actions.component.scss │ │ │ ├── approval-flow-toolbar-actions.component.spec.ts │ │ │ └── approval-flow-toolbar-actions.component.ts │ │ ├── approval-flow-user-details │ │ │ ├── approval-flow-user-details.component.html │ │ │ ├── approval-flow-user-details.component.scss │ │ │ └── approval-flow-user-details.component.ts │ │ ├── approval-flow-user-list │ │ │ ├── approval-flow-user-list.component.html │ │ │ ├── approval-flow-user-list.component.scss │ │ │ ├── approval-flow-user-list.component.spec.ts │ │ │ └── approval-flow-user-list.component.ts │ │ ├── approval-flow.component.html │ │ ├── approval-flow.component.scss │ │ ├── approval-flow.component.spec.ts │ │ ├── approval-flow.component.ts │ │ ├── approval-flow.module.ts │ │ ├── helpers │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── interfaces │ │ │ ├── approval-node.ts │ │ │ ├── approval-process.ts │ │ │ ├── approval-status.ts │ │ │ ├── approval-team.ts │ │ │ ├── approval-user.ts │ │ │ ├── index.ts │ │ │ └── send-reminders-data.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── services │ │ │ └── approval-flow-add-node-view.service.ts │ │ ├── styles │ │ │ └── approval-flow-dialog.scss │ │ └── tests │ │ │ ├── data.ts │ │ │ └── providers.ts │ ├── button │ │ ├── button.component.html │ │ ├── button.component.scss │ │ ├── button.component.spec.ts │ │ ├── button.component.ts │ │ ├── button.model.ts │ │ ├── button.module.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ └── tokens.ts │ ├── dynamic-page │ │ ├── constants.ts │ │ ├── directives │ │ │ ├── dynamic-page-header-subtitle.directive.ts │ │ │ └── dynamic-page-header-title.directive.ts │ │ ├── dynamic-page-content │ │ │ ├── dynamic-page-content-host.component.ts │ │ │ └── dynamic-page-content.component.ts │ │ ├── dynamic-page-footer │ │ │ └── dynamic-page-footer.component.ts │ │ ├── dynamic-page-header │ │ │ ├── actions │ │ │ │ ├── global-actions │ │ │ │ │ └── dynamic-page-global-actions.component.ts │ │ │ │ └── layout-actions │ │ │ │ │ └── dynamic-page-layout-actions.component.ts │ │ │ ├── breadcrumb │ │ │ │ └── dynamic-page-breadcrumb.component.ts │ │ │ ├── header │ │ │ │ └── dynamic-page-header.component.ts │ │ │ ├── key-info │ │ │ │ └── dynamic-page-key-info.component.ts │ │ │ └── title │ │ │ │ ├── dynamic-page-title-image.component.ts │ │ │ │ ├── dynamic-page-title.component.spec.ts │ │ │ │ └── dynamic-page-title.component.ts │ │ ├── dynamic-page.component.html │ │ ├── dynamic-page.component.scss │ │ ├── dynamic-page.component.spec.ts │ │ ├── dynamic-page.component.ts │ │ ├── dynamic-page.config.ts │ │ ├── dynamic-page.module.ts │ │ ├── dynamic-page.tokens.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── platform-dynamic-page.interface.ts │ │ ├── project.json │ │ └── utils.ts │ ├── eslint.config.js │ ├── feed-input │ │ ├── feed-input.component.html │ │ ├── feed-input.component.scss │ │ ├── feed-input.component.spec.ts │ │ ├── feed-input.component.ts │ │ ├── feed-input.module.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ └── project.json │ ├── form │ │ ├── auto-complete │ │ │ ├── auto-complete.directive.spec.ts │ │ │ ├── auto-complete.directive.ts │ │ │ └── auto-complete.module.ts │ │ ├── checkbox-group │ │ │ ├── checkbox-group.component.html │ │ │ ├── checkbox-group.component.spec.ts │ │ │ ├── checkbox-group.component.ts │ │ │ └── checkbox-group.module.ts │ │ ├── checkbox │ │ │ ├── checkbox.component.html │ │ │ ├── checkbox.component.spec.ts │ │ │ ├── checkbox.component.ts │ │ │ └── checkbox.module.ts │ │ ├── combobox │ │ │ ├── combobox-mobile │ │ │ │ ├── combobox-mobile.module.ts │ │ │ │ └── combobox │ │ │ │ │ ├── combobox-mobile.component.html │ │ │ │ │ ├── combobox-mobile.component.spec.ts │ │ │ │ │ └── combobox-mobile.component.ts │ │ │ ├── combobox.config.ts │ │ │ ├── combobox.interface.ts │ │ │ ├── combobox.module.ts │ │ │ ├── combobox │ │ │ │ ├── combobox.component.html │ │ │ │ ├── combobox.component.scss │ │ │ │ ├── combobox.component.spec.ts │ │ │ │ └── combobox.component.ts │ │ │ ├── commons │ │ │ │ └── base-combobox.ts │ │ │ ├── directives │ │ │ │ └── combobox-item.directive.ts │ │ │ └── index.ts │ │ ├── date-picker │ │ │ ├── date-picker.component.html │ │ │ ├── date-picker.component.spec.ts │ │ │ ├── date-picker.component.ts │ │ │ └── date-picker.module.ts │ │ ├── datetime-picker │ │ │ ├── datetime-picker.component.html │ │ │ ├── datetime-picker.component.spec.ts │ │ │ ├── datetime-picker.component.ts │ │ │ ├── datetime-picker.module.ts │ │ │ └── errors.ts │ │ ├── form-generator │ │ │ ├── base-dynamic-form-generator-control.ts │ │ │ ├── config │ │ │ │ ├── default-components-list.ts │ │ │ │ ├── default-form-generator-hint-options.ts │ │ │ │ └── default-validation-errors.ts │ │ │ ├── controls │ │ │ │ ├── dynamic-form-generator-checkbox │ │ │ │ │ ├── dynamic-form-generator-checkbox.component.html │ │ │ │ │ └── dynamic-form-generator-checkbox.component.ts │ │ │ │ ├── dynamic-form-generator-datepicker │ │ │ │ │ ├── dynamic-form-generator-datepicker.component.html │ │ │ │ │ └── dynamic-form-generator-datepicker.component.ts │ │ │ │ ├── dynamic-form-generator-editor │ │ │ │ │ ├── dynamic-form-generator-editor.component.html │ │ │ │ │ └── dynamic-form-generator-editor.component.ts │ │ │ │ ├── dynamic-form-generator-input │ │ │ │ │ ├── dynamic-form-generator-input.component.html │ │ │ │ │ └── dynamic-form-generator-input.component.ts │ │ │ │ ├── dynamic-form-generator-multi-input │ │ │ │ │ ├── dynamic-form-generator-multi-input.component.html │ │ │ │ │ └── dynamic-form-generator-multi-input.component.ts │ │ │ │ ├── dynamic-form-generator-object-status │ │ │ │ │ ├── dynamic-form-generator-object-status.component.html │ │ │ │ │ └── dynamic-form-generator-object-status.component.ts │ │ │ │ ├── dynamic-form-generator-radio │ │ │ │ │ ├── dynamic-form-generator-radio.component.html │ │ │ │ │ └── dynamic-form-generator-radio.component.ts │ │ │ │ ├── dynamic-form-generator-select │ │ │ │ │ ├── dynamic-form-generator-select.component.html │ │ │ │ │ └── dynamic-form-generator-select.component.ts │ │ │ │ └── dynamic-form-generator-switch │ │ │ │ │ ├── dynamic-form-generator-switch.component.html │ │ │ │ │ └── dynamic-form-generator-switch.component.ts │ │ │ ├── dynamic-form-control-field.directive.spec.ts │ │ │ ├── dynamic-form-control-field.directive.ts │ │ │ ├── dynamic-form-control.directive.ts │ │ │ ├── dynamic-form-control.ts │ │ │ ├── fdp-form-generator.module.ts │ │ │ ├── form-generator-components-accessor.service.spec.ts │ │ │ ├── form-generator-components-accessor.service.ts │ │ │ ├── form-generator-field │ │ │ │ ├── form-generator-field.component.html │ │ │ │ └── form-generator-field.component.ts │ │ │ ├── form-generator.service.spec.ts │ │ │ ├── form-generator.service.ts │ │ │ ├── form-generator.tokens.ts │ │ │ ├── form-generator │ │ │ │ ├── form-generator.component.html │ │ │ │ ├── form-generator.component.spec.ts │ │ │ │ └── form-generator.component.ts │ │ │ ├── helpers.ts │ │ │ ├── interfaces │ │ │ │ ├── dynamic-abstract-control.ts │ │ │ │ ├── dynamic-form-group.ts │ │ │ │ ├── dynamic-form-item.ts │ │ │ │ ├── form-component-definition.ts │ │ │ │ └── form-generator-module-config.ts │ │ │ ├── pipes │ │ │ │ ├── get-hint-options.pipe.ts │ │ │ │ └── get-ordered-form-controls.pipe.ts │ │ │ ├── providers │ │ │ │ └── providers.ts │ │ │ └── public_api.ts │ │ ├── form-group │ │ │ ├── config │ │ │ │ └── default-form-field-hint-options.ts │ │ │ ├── constants.ts │ │ │ ├── fdp-form.module.ts │ │ │ ├── fdp-form.tokens.ts │ │ │ ├── form-field-error │ │ │ │ ├── form-field-error-description.directive.ts │ │ │ │ ├── form-field-error-heading.directive.ts │ │ │ │ ├── form-field-error.directive.ts │ │ │ │ └── tokens.ts │ │ │ ├── form-field-extras │ │ │ │ └── form-field-extras.component.ts │ │ │ ├── form-field-group │ │ │ │ ├── form-field-group.component.scss │ │ │ │ └── form-field-group.component.ts │ │ │ ├── form-field │ │ │ │ ├── form-field.component.html │ │ │ │ ├── form-field.component.scss │ │ │ │ └── form-field.component.ts │ │ │ ├── form-group-header │ │ │ │ ├── form-group-header.component.html │ │ │ │ └── form-group-header.component.ts │ │ │ ├── form-group.component.html │ │ │ ├── form-group.component.scss │ │ │ ├── form-group.component.ts │ │ │ ├── helpers.ts │ │ │ ├── pipes │ │ │ │ └── field-group-row-value.pipe.ts │ │ │ └── services │ │ │ │ └── form-field-layout.service.ts │ │ ├── form-helpers.ts │ │ ├── form.spec.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── input-group │ │ │ ├── addon-body.component.spec.ts │ │ │ ├── addon-body.component.ts │ │ │ ├── addon.component.ts │ │ │ ├── constants.ts │ │ │ ├── input-group.component.html │ │ │ ├── input-group.component.scss │ │ │ ├── input-group.component.spec.ts │ │ │ ├── input-group.component.ts │ │ │ ├── input-group.config.ts │ │ │ ├── input-group.module.ts │ │ │ ├── input.component.ts │ │ │ └── public_api.ts │ │ ├── input-message-group-with-template │ │ │ ├── input-message-group-with-template.component.html │ │ │ ├── input-message-group-with-template.component.scss │ │ │ └── input-message-group-with-template.component.ts │ │ ├── input │ │ │ ├── fdp-input.module.ts │ │ │ ├── input.component.html │ │ │ ├── input.component.scss │ │ │ ├── input.component.spec.ts │ │ │ └── input.component.ts │ │ ├── models │ │ │ └── field.model.ts │ │ ├── multi-combobox │ │ │ ├── commons │ │ │ │ └── base-multi-combobox.ts │ │ │ ├── index.ts │ │ │ ├── multi-combobox-cva.spec.ts │ │ │ ├── multi-combobox-mobile │ │ │ │ ├── multi-combobox-mobile.module.ts │ │ │ │ └── multi-combobox │ │ │ │ │ ├── multi-combobox-mobile.component.html │ │ │ │ │ ├── multi-combobox-mobile.component.spec.ts │ │ │ │ │ └── multi-combobox-mobile.component.ts │ │ │ ├── multi-combobox.config.ts │ │ │ ├── multi-combobox.interface.ts │ │ │ ├── multi-combobox.module.ts │ │ │ └── multi-combobox │ │ │ │ ├── multi-combobox.component.html │ │ │ │ ├── multi-combobox.component.scss │ │ │ │ ├── multi-combobox.component.spec.ts │ │ │ │ └── multi-combobox.component.ts │ │ ├── multi-input │ │ │ ├── base-multi-input.ts │ │ │ ├── index.ts │ │ │ ├── multi-input-mobile │ │ │ │ ├── multi-input-mobile.component.html │ │ │ │ ├── multi-input-mobile.component.scss │ │ │ │ ├── multi-input-mobile.component.ts │ │ │ │ └── multi-input-mobile.module.ts │ │ │ ├── multi-input.component.html │ │ │ ├── multi-input.component.scss │ │ │ ├── multi-input.component.spec.ts │ │ │ ├── multi-input.component.ts │ │ │ ├── multi-input.config.ts │ │ │ ├── multi-input.interface.ts │ │ │ └── multi-input.module.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── radio-group │ │ │ ├── radio-group.component.html │ │ │ ├── radio-group.component.spec.ts │ │ │ ├── radio-group.component.ts │ │ │ ├── radio-group.module.ts │ │ │ └── radio │ │ │ │ ├── radio.component.html │ │ │ │ ├── radio.component.spec.ts │ │ │ │ └── radio.component.ts │ │ ├── select │ │ │ ├── commons │ │ │ │ └── base-select.ts │ │ │ ├── index.ts │ │ │ ├── models │ │ │ │ └── select.models.ts │ │ │ ├── select.config.ts │ │ │ ├── select.module.ts │ │ │ └── select │ │ │ │ ├── select.component.html │ │ │ │ ├── select.component.scss │ │ │ │ ├── select.component.spec.ts │ │ │ │ └── select.component.ts │ │ ├── step-input │ │ │ ├── base.step-input.ts │ │ │ ├── number │ │ │ │ ├── number-step-input.component.html │ │ │ │ ├── number-step-input.component.scss │ │ │ │ ├── number-step-input.component.spec.ts │ │ │ │ └── number-step-input.component.ts │ │ │ ├── public_api.ts │ │ │ ├── step-input-action-button.ts │ │ │ ├── step-input-control.directive.ts │ │ │ ├── step-input-decrement.directive.ts │ │ │ ├── step-input-increment.directive.ts │ │ │ ├── step-input.config.ts │ │ │ ├── step-input.module.ts │ │ │ ├── step-input.scss │ │ │ └── step-input.util.ts │ │ ├── switch │ │ │ ├── switch.module.ts │ │ │ └── switch │ │ │ │ ├── index.ts │ │ │ │ ├── switch.component.html │ │ │ │ ├── switch.component.spec.ts │ │ │ │ ├── switch.component.ts │ │ │ │ └── switch.config.ts │ │ ├── text-area │ │ │ ├── text-area-cva.spec.ts │ │ │ ├── text-area.component.html │ │ │ ├── text-area.component.scss │ │ │ ├── text-area.component.spec.ts │ │ │ ├── text-area.component.ts │ │ │ ├── text-area.config.ts │ │ │ └── text-area.module.ts │ │ └── time-picker │ │ │ ├── time-picker.component.html │ │ │ ├── time-picker.component.spec.ts │ │ │ ├── time-picker.component.ts │ │ │ └── time-picker.module.ts │ ├── fundamental-ngx.module.ts │ ├── icon-tab-bar │ │ ├── components │ │ │ ├── closable-icon-tab-bar.class.ts │ │ │ ├── icon-tab-bar-base.class.ts │ │ │ ├── icon-tab-bar-filter-type │ │ │ │ ├── icon-tab-bar-filter-type.component.html │ │ │ │ └── icon-tab-bar-filter-type.component.ts │ │ │ ├── icon-tab-bar-icon-type │ │ │ │ ├── icon-tab-bar-icon-type.component.html │ │ │ │ └── icon-tab-bar-icon-type.component.ts │ │ │ ├── icon-tab-bar-process-type │ │ │ │ ├── icon-tab-bar-process-type.component.html │ │ │ │ ├── icon-tab-bar-process-type.component.spec.ts │ │ │ │ └── icon-tab-bar-process-type.component.ts │ │ │ ├── icon-tab-bar-tab │ │ │ │ ├── icon-tab-bar-tab.component.html │ │ │ │ ├── icon-tab-bar-tab.component.spec.ts │ │ │ │ └── icon-tab-bar-tab.component.ts │ │ │ ├── icon-tab-bar-text-type │ │ │ │ ├── icon-tab-bar-text-type.component.html │ │ │ │ ├── icon-tab-bar-text-type.component.spec.ts │ │ │ │ └── icon-tab-bar-text-type.component.ts │ │ │ ├── index.ts │ │ │ ├── popovers │ │ │ │ ├── icon-tab-bar-popover-base.class.ts │ │ │ │ ├── icon-tab-bar-popover │ │ │ │ │ ├── icon-tab-bar-popover.component.html │ │ │ │ │ └── icon-tab-bar-popover.component.ts │ │ │ │ └── text-type-popover │ │ │ │ │ ├── text-type-popover.component.html │ │ │ │ │ ├── text-type-popover.component.spec.ts │ │ │ │ │ └── text-type-popover.component.ts │ │ │ └── text-type-tab-item │ │ │ │ ├── icon-tab-bar-text-type-tab-item.component.html │ │ │ │ └── icon-tab-bar-text-type-tab-item.component.ts │ │ ├── constants.ts │ │ ├── directives │ │ │ ├── dnd │ │ │ │ ├── icon-bar-dnd-container.directive.ts │ │ │ │ ├── icon-bar-dnd-item.directive.ts │ │ │ │ └── icon-bar-dnd-list.directive.ts │ │ │ ├── icon-tab-bar-free-content.directive.ts │ │ │ └── icon-tab-title.directive.ts │ │ ├── icon-tab-bar.component.html │ │ ├── icon-tab-bar.component.scss │ │ ├── icon-tab-bar.component.spec.ts │ │ ├── icon-tab-bar.component.ts │ │ ├── icon-tab-bar.module.ts │ │ ├── index.ts │ │ ├── interfaces │ │ │ ├── icon-tab-bar-item.interface.ts │ │ │ ├── tab-color-associations.interface.ts │ │ │ └── tab-config.interface.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── tests-helper.ts │ │ └── types.ts │ ├── index.ts │ ├── info-label │ │ ├── index.ts │ │ ├── info-label.component.html │ │ ├── info-label.component.spec.ts │ │ ├── info-label.component.ts │ │ ├── info-label.module.ts │ │ ├── ng-package.json │ │ └── project.json │ ├── jest.config.ts │ ├── link │ │ ├── index.ts │ │ ├── link.component.html │ │ ├── link.component.scss │ │ ├── link.component.spec.ts │ │ ├── link.component.ts │ │ ├── link.module.ts │ │ ├── ng-package.json │ │ └── project.json │ ├── list │ │ ├── action-list-item │ │ │ ├── action-list-item.component.html │ │ │ ├── action-list-item.component.spec.ts │ │ │ ├── action-list-item.component.ts │ │ │ └── action-list-item.module.ts │ │ ├── base-list-item.ts │ │ ├── display-list-item │ │ │ ├── display-list-item.component.html │ │ │ ├── display-list-item.component.spec.ts │ │ │ ├── display-list-item.component.ts │ │ │ └── display-list-item.module.ts │ │ ├── fdpListComponent.token.ts │ │ ├── free-content-list-item │ │ │ ├── free-content-list-item.component.html │ │ │ ├── free-content-list-item.component.scss │ │ │ ├── free-content-list-item.component.spec.ts │ │ │ └── free-content-list-item.component.ts │ │ ├── index.ts │ │ ├── list-group-footer.component.ts │ │ ├── list-group-header.component.ts │ │ ├── list.component.html │ │ ├── list.component.scss │ │ ├── list.component.spec.ts │ │ ├── list.component.ts │ │ ├── list.config.ts │ │ ├── list.module.ts │ │ ├── load-more-content.directive.ts │ │ ├── models │ │ │ └── list.ts │ │ ├── ng-package.json │ │ ├── object-list-item │ │ │ ├── object-list-item-row.component.ts │ │ │ ├── object-list-item.component.html │ │ │ ├── object-list-item.component.scss │ │ │ ├── object-list-item.component.spec.ts │ │ │ ├── object-list-item.component.ts │ │ │ └── object-list-item.module.ts │ │ ├── project.json │ │ └── standard-list-item │ │ │ ├── standard-list-item.component.html │ │ │ ├── standard-list-item.component.spec.ts │ │ │ ├── standard-list-item.component.ts │ │ │ └── standard-list-item.module.ts │ ├── menu-button │ │ ├── index.ts │ │ ├── menu-button.component.html │ │ ├── menu-button.component.scss │ │ ├── menu-button.component.spec.ts │ │ ├── menu-button.component.ts │ │ ├── menu-button.module.ts │ │ ├── ng-package.json │ │ └── project.json │ ├── menu │ │ ├── index.ts │ │ ├── menu-item.component.html │ │ ├── menu-item.component.scss │ │ ├── menu-item.component.ts │ │ ├── menu-trigger.directive.ts │ │ ├── menu.component.html │ │ ├── menu.component.scss │ │ ├── menu.component.ts │ │ ├── menu.module.ts │ │ ├── menu.spec.ts │ │ ├── ng-package.json │ │ └── project.json │ ├── message-popover │ │ ├── components │ │ │ ├── message-popover-form-wrapper │ │ │ │ ├── message-popover-form-wrapper.component.spec.ts │ │ │ │ └── message-popover-form-wrapper.component.ts │ │ │ └── message-view │ │ │ │ ├── message-view.component.html │ │ │ │ └── message-view.component.ts │ │ ├── default-config.ts │ │ ├── directives │ │ │ └── message-popover-form-item.directive.ts │ │ ├── index.ts │ │ ├── message-popover.component.html │ │ ├── message-popover.component.scss │ │ ├── message-popover.component.spec.ts │ │ ├── message-popover.component.ts │ │ ├── models │ │ │ ├── message-popover-entry.interface.ts │ │ │ ├── message-popover-wrapper.interface.ts │ │ │ └── message-popover.interface.ts │ │ ├── ng-package.json │ │ ├── platform-message-popover.module.ts │ │ ├── project.json │ │ └── utils.ts │ ├── ng-package.json │ ├── object-attribute │ │ ├── index.ts │ │ ├── ng-package.json │ │ └── project.json │ ├── object-marker │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── object-marker.component.html │ │ ├── object-marker.component.spec.ts │ │ ├── object-marker.component.ts │ │ ├── object-marker.module.ts │ │ └── project.json │ ├── object-status │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── object-status.component.html │ │ ├── object-status.component.spec.ts │ │ ├── object-status.component.ts │ │ ├── object-status.module.ts │ │ └── project.json │ ├── package.json │ ├── page-footer │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── page-footer.component.html │ │ ├── page-footer.component.scss │ │ ├── page-footer.component.spec.ts │ │ ├── page-footer.component.ts │ │ ├── page-footer.module.ts │ │ └── project.json │ ├── panel │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── panel-actions.component.ts │ │ ├── panel-content │ │ │ ├── panel-content.component.scss │ │ │ └── panel-content.component.ts │ │ ├── panel.component.html │ │ ├── panel.component.spec.ts │ │ ├── panel.component.ts │ │ ├── panel.config.ts │ │ ├── panel.module.ts │ │ └── project.json │ ├── project.json │ ├── schematics │ │ ├── collection.json │ │ ├── ng-add │ │ │ ├── index.ts │ │ │ ├── schema.json │ │ │ └── schema.ts │ │ ├── project.json │ │ ├── tsconfig.json │ │ └── utils │ │ │ └── package-utils.ts │ ├── search-field │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── search-field-mobile │ │ │ ├── search-field-mobile.interface.ts │ │ │ ├── search-field-mobile.module.ts │ │ │ └── search-field │ │ │ │ ├── search-field-mobile.component.html │ │ │ │ ├── search-field-mobile.component.spec.ts │ │ │ │ └── search-field-mobile.component.ts │ │ ├── search-field.component.html │ │ ├── search-field.component.scss │ │ ├── search-field.component.spec.ts │ │ ├── search-field.component.ts │ │ └── search-field.module.ts │ ├── settings-generator │ │ ├── controls │ │ │ └── theme-selector-list │ │ │ │ ├── icon.html │ │ │ │ ├── theme-selector-list.component.html │ │ │ │ ├── theme-selector-list.component.scss │ │ │ │ └── theme-selector-list.component.ts │ │ ├── default-config.ts │ │ ├── index.ts │ │ ├── layouts │ │ │ ├── base-settings-generator-layout.ts │ │ │ └── settings-generator-sidebar-layout │ │ │ │ ├── settings-generator-sidebar-icon │ │ │ │ ├── settings-generator-sidebar-icon.component.html │ │ │ │ └── settings-generator-sidebar-icon.component.ts │ │ │ │ ├── settings-generator-sidebar-layout.component.html │ │ │ │ └── settings-generator-sidebar-layout.component.ts │ │ ├── models │ │ │ ├── settings-config.model.ts │ │ │ ├── settings-generator.model.ts │ │ │ └── settings.model.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── settings-generator-content │ │ │ ├── settings-generator-content.component.html │ │ │ ├── settings-generator-content.component.spec.ts │ │ │ ├── settings-generator-content.component.ts │ │ │ └── settings-generator-section │ │ │ │ ├── settings-generator-section.component.html │ │ │ │ ├── settings-generator-section.component.spec.ts │ │ │ │ └── settings-generator-section.component.ts │ │ ├── settings-generator-layout-accessor.service.ts │ │ ├── settings-generator.component.html │ │ ├── settings-generator.component.scss │ │ ├── settings-generator.component.spec.ts │ │ ├── settings-generator.component.ts │ │ ├── settings-generator.module.ts │ │ ├── settings-generator.service.spec.ts │ │ ├── settings-generator.service.ts │ │ ├── tokens.ts │ │ └── typings.d.ts │ ├── shared │ │ ├── base.ts │ │ ├── domain │ │ │ ├── array-data-source.ts │ │ │ ├── base-data-provider.ts │ │ │ ├── data-model.ts │ │ │ ├── data-source.ts │ │ │ ├── index.ts │ │ │ └── observable-data-source.ts │ │ ├── form │ │ │ ├── base.input.ts │ │ │ ├── collection-base.input.ts │ │ │ ├── form-error.ts │ │ │ ├── form-field.ts │ │ │ ├── form-options.ts │ │ │ ├── hint-options.ts │ │ │ ├── inline-layout-collection-base.input.ts │ │ │ └── public_api.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── pipes │ │ │ ├── convert-bytes │ │ │ │ ├── convert-bytes.pipe.spec.ts │ │ │ │ ├── convert-bytes.pipe.ts │ │ │ │ └── index.ts │ │ │ ├── pipe.module.ts │ │ │ └── public_api.ts │ │ ├── platform.config.ts │ │ ├── preset-management │ │ │ ├── preset-managed-component.interface.ts │ │ │ └── preset-management.token.ts │ │ ├── project.json │ │ ├── testing │ │ │ ├── event-objects.ts │ │ │ └── public_api.ts │ │ └── utils │ │ │ ├── lang.ts │ │ │ └── public_api.ts │ ├── slider │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── slider.component.html │ │ ├── slider.component.spec.ts │ │ ├── slider.component.ts │ │ └── slider.module.ts │ ├── smart-filter-bar │ │ ├── components │ │ │ ├── smart-filter-bar-condition-field │ │ │ │ ├── base-smart-filter-bar-condition-field.ts │ │ │ │ ├── smart-filter-bar-condition-field.component.html │ │ │ │ └── smart-filter-bar-condition-field.component.ts │ │ │ ├── smart-filter-bar-conditions-dialog │ │ │ │ ├── smart-filter-bar-conditions-dialog.component.html │ │ │ │ ├── smart-filter-bar-conditions-dialog.component.spec.ts │ │ │ │ └── smart-filter-bar-conditions-dialog.component.ts │ │ │ └── smart-filter-bar-settings-dialog │ │ │ │ ├── data-provider.ts │ │ │ │ ├── smart-filter-bar-settings-dialog.component.html │ │ │ │ ├── smart-filter-bar-settings-dialog.component.spec.ts │ │ │ │ └── smart-filter-bar-settings-dialog.component.ts │ │ ├── constants.ts │ │ ├── directives │ │ │ ├── smart-filter-bar-field-definition.directive.spec.ts │ │ │ ├── smart-filter-bar-field-definition.directive.ts │ │ │ ├── smart-filter-bar-subject.directive.spec.ts │ │ │ ├── smart-filter-bar-subject.directive.ts │ │ │ └── smart-filter-bar-toolbar-item.directive.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── interfaces │ │ │ ├── smart-filter-bar-change.ts │ │ │ ├── smart-filter-bar-condition.ts │ │ │ ├── smart-filter-bar-custom-filter-config.ts │ │ │ ├── smart-filter-bar-field-definition.ts │ │ │ ├── smart-filter-bar-field-filter-item.ts │ │ │ ├── smart-filter-bar-settings-dialog-config.ts │ │ │ ├── smart-filter-bar-visibility-category.ts │ │ │ ├── smart-filter-dynamic-form-item.ts │ │ │ └── strategy-labels.type.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── providers │ │ │ └── smart-filter-bar.provider.ts │ │ ├── smart-filter-bar.class.ts │ │ ├── smart-filter-bar.component.html │ │ ├── smart-filter-bar.component.scss │ │ ├── smart-filter-bar.component.spec.ts │ │ ├── smart-filter-bar.component.ts │ │ ├── smart-filter-bar.module.ts │ │ ├── smart-filter-bar.service.spec.ts │ │ └── smart-filter-bar.service.ts │ ├── split-menu-button │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── split-menu-button.component.html │ │ ├── split-menu-button.component.scss │ │ ├── split-menu-button.component.spec.ts │ │ ├── split-menu-button.component.ts │ │ └── split-menu-button.module.ts │ ├── table-helpers │ │ ├── constants │ │ │ ├── index.ts │ │ │ └── tokens.ts │ │ ├── directives │ │ │ ├── index.ts │ │ │ ├── platform-table-column-responsive.directive.ts │ │ │ ├── table-cell-header-popover.directive.ts │ │ │ ├── table-cell-resizable.directive.ts │ │ │ ├── table-cell.directive.ts │ │ │ ├── table-data-source.directive.ts │ │ │ ├── table-draggable.directive.ts │ │ │ ├── table-header-resizer.directive.ts │ │ │ ├── table-header.directive.ts │ │ │ ├── table-initial-state.directive.ts │ │ │ ├── table-scrollable.directive.ts │ │ │ ├── table-view-settings-filter-custom.directive.ts │ │ │ └── table-virtual-scroll.directive.ts │ │ ├── domain │ │ │ ├── array-data-source.ts │ │ │ ├── data-source-parser.class.ts │ │ │ ├── index.ts │ │ │ ├── observable-data-source.ts │ │ │ ├── table-data-provider.ts │ │ │ └── table-data-source.ts │ │ ├── enums │ │ │ ├── collection-filter.enum.ts │ │ │ ├── column-align.enum.ts │ │ │ ├── filter-type.enum.ts │ │ │ ├── index.ts │ │ │ ├── row-type.enum.ts │ │ │ ├── selection-mode.enum.ts │ │ │ └── sort-direction.enum.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── interfaces │ │ │ ├── collection-filter.interface.ts │ │ │ ├── collection-group.interface.ts │ │ │ ├── collection-page.interface.ts │ │ │ ├── collection-sort.interface.ts │ │ │ ├── collection-state.interface.ts │ │ │ ├── column-responsive-state.interface.ts │ │ │ ├── index.ts │ │ │ ├── selection-value.interface.ts │ │ │ └── table-state.interface.ts │ │ ├── models │ │ │ ├── column-freeze-event.model.ts │ │ │ ├── columns-change-event.model.ts │ │ │ ├── data-source.type.ts │ │ │ ├── directives.ts │ │ │ ├── dnd.ts │ │ │ ├── filter-change-event.model.ts │ │ │ ├── group-change-event.model.ts │ │ │ ├── index.ts │ │ │ ├── page-change-event.model.ts │ │ │ ├── row-comparator.model.ts │ │ │ ├── save-rows-event.interface.ts │ │ │ ├── search-change-event.model.ts │ │ │ ├── selection-change-event.model.ts │ │ │ ├── sort-change-event.model.ts │ │ │ ├── table-cell-activate-event.model.ts │ │ │ ├── table-dialog-common-data.model.ts │ │ │ ├── table-item.model.ts │ │ │ ├── table-managed-preset.ts │ │ │ ├── table-row-activate-event.model.ts │ │ │ ├── table-row-toggle-open-state-event.model.ts │ │ │ ├── table-row.model.ts │ │ │ ├── table-rows-rearrange-event.model.ts │ │ │ └── tree-table.model.ts │ │ ├── ng-package.json │ │ ├── pipes │ │ │ ├── cell-styles.pipe.ts │ │ │ ├── column-resizable-side.pipe.ts │ │ │ ├── column-sorting-direction.pipe.spec.ts │ │ │ ├── column-sorting-direction.pipe.ts │ │ │ ├── index.ts │ │ │ ├── row-classes.pipe.ts │ │ │ └── selection-cell-styles.pipe.ts │ │ ├── project.json │ │ ├── services │ │ │ ├── table-column-resize.service.spec.ts │ │ │ ├── table-column-resize.service.ts │ │ │ ├── table-responsive.service.spec.ts │ │ │ ├── table-responsive.service.ts │ │ │ ├── table-row.service.ts │ │ │ ├── table-scroll-dispatcher.service.spec.ts │ │ │ ├── table-scroll-dispatcher.service.ts │ │ │ ├── table.service.spec.ts │ │ │ └── table.service.ts │ │ ├── table-cell.class.ts │ │ ├── table-column.ts │ │ ├── table-helpers.module.ts │ │ ├── table.ts │ │ └── utils.ts │ ├── table │ │ ├── components │ │ │ ├── growing-button │ │ │ │ ├── table-growing-button.component.html │ │ │ │ └── table-growing-button.component.ts │ │ │ ├── index.ts │ │ │ ├── no-data-wrapper │ │ │ │ └── no-data-wrapper.component.ts │ │ │ ├── reset-button │ │ │ │ ├── reset-button.component.spec.ts │ │ │ │ └── reset-button.component.ts │ │ │ ├── table-cell-header-popover │ │ │ │ ├── table-cell-header-popover.component.html │ │ │ │ ├── table-cell-header-popover.component.spec.ts │ │ │ │ └── table-cell-header-popover.component.ts │ │ │ ├── table-column-resizer │ │ │ │ ├── table-column-resizer.component.scss │ │ │ │ ├── table-column-resizer.component.spec.ts │ │ │ │ └── table-column-resizer.component.ts │ │ │ ├── table-column │ │ │ │ └── table-column.component.ts │ │ │ ├── table-editable-cell │ │ │ │ ├── table-editable-cell.component.html │ │ │ │ └── table-editable-cell.component.ts │ │ │ ├── table-footer-row │ │ │ │ ├── table-footer-row.component.html │ │ │ │ └── table-footer-row.component.ts │ │ │ ├── table-group-row │ │ │ │ ├── table-group-row.component.html │ │ │ │ └── table-group-row.component.ts │ │ │ ├── table-header-cell-content │ │ │ │ ├── table-header-cell-content.component.html │ │ │ │ └── table-header-cell-content.component.ts │ │ │ ├── table-header-row │ │ │ │ ├── table-header-row.component.html │ │ │ │ └── table-header-row.component.ts │ │ │ ├── table-p13-dialog │ │ │ │ ├── columns │ │ │ │ │ ├── columns.component.html │ │ │ │ │ ├── columns.component.scss │ │ │ │ │ ├── columns.component.spec.ts │ │ │ │ │ └── columns.component.ts │ │ │ │ ├── filtering │ │ │ │ │ ├── filter-rule.component.html │ │ │ │ │ ├── filter-rule.component.ts │ │ │ │ │ ├── filtering.component.html │ │ │ │ │ ├── filtering.component.scss │ │ │ │ │ ├── filtering.component.spec.ts │ │ │ │ │ ├── filtering.component.ts │ │ │ │ │ └── filtering.model.ts │ │ │ │ ├── grouping │ │ │ │ │ ├── grouping.component.html │ │ │ │ │ ├── grouping.component.scss │ │ │ │ │ ├── grouping.component.spec.ts │ │ │ │ │ └── grouping.component.ts │ │ │ │ ├── sorting │ │ │ │ │ ├── sorting.component.html │ │ │ │ │ ├── sorting.component.scss │ │ │ │ │ ├── sorting.component.spec.ts │ │ │ │ │ └── sorting.component.ts │ │ │ │ ├── table-p13-columns.component.ts │ │ │ │ ├── table-p13-dialog.component.spec.ts │ │ │ │ ├── table-p13-dialog.component.ts │ │ │ │ ├── table-p13-filter.component.ts │ │ │ │ ├── table-p13-group.component.ts │ │ │ │ └── table-p13-sort.component.ts │ │ │ ├── table-popping-row │ │ │ │ ├── table-popping-row.component.html │ │ │ │ └── table-popping-row.component.ts │ │ │ ├── table-row │ │ │ │ ├── table-row.component.html │ │ │ │ └── table-row.component.ts │ │ │ ├── table-toolbar │ │ │ │ ├── table-toolbar-actions.component.spec.ts │ │ │ │ ├── table-toolbar-actions.component.ts │ │ │ │ ├── table-toolbar-left-actions.component.ts │ │ │ │ ├── table-toolbar.component.html │ │ │ │ ├── table-toolbar.component.spec.ts │ │ │ │ ├── table-toolbar.component.ts │ │ │ │ └── table-toolbar.ts │ │ │ └── table-view-settings-dialog │ │ │ │ ├── filtering │ │ │ │ ├── constants.ts │ │ │ │ ├── filter-custom.component.html │ │ │ │ ├── filter-custom.component.ts │ │ │ │ ├── filter-multi-select.component.html │ │ │ │ ├── filter-multi-select.component.ts │ │ │ │ ├── filter-single-select.component.html │ │ │ │ ├── filter-single-select.component.ts │ │ │ │ ├── filter-step.component.html │ │ │ │ ├── filter-step.component.ts │ │ │ │ ├── filters-active-step.ts │ │ │ │ ├── filters-list-step.component.html │ │ │ │ ├── filters-list-step.component.ts │ │ │ │ ├── filters.component.html │ │ │ │ ├── filters.component.spec.ts │ │ │ │ └── filters.component.ts │ │ │ │ ├── grouping │ │ │ │ ├── grouping.component.html │ │ │ │ ├── grouping.component.spec.ts │ │ │ │ └── grouping.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── settings-dialog │ │ │ │ ├── settings-dialog.component.html │ │ │ │ ├── settings-dialog.component.spec.ts │ │ │ │ └── settings-dialog.component.ts │ │ │ │ ├── sorting │ │ │ │ ├── sorting.component.html │ │ │ │ ├── sorting.component.spec.ts │ │ │ │ └── sorting.component.ts │ │ │ │ ├── table-view-settings-dialog.component.spec.ts │ │ │ │ ├── table-view-settings-dialog.component.ts │ │ │ │ ├── table-view-settings-filter.component.spec.ts │ │ │ │ ├── table-view-settings-filter.component.ts │ │ │ │ └── table-view-settings.model.ts │ │ ├── index.ts │ │ ├── mocks │ │ │ └── table-column-resize-mock.service.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── table.component.html │ │ ├── table.component.scss │ │ ├── table.component.spec.ts │ │ ├── table.component.ts │ │ ├── table.module.ts │ │ └── tests │ │ │ ├── helpers.ts │ │ │ ├── table.component-host.spec.ts │ │ │ ├── table.component-initial-state.spec.ts │ │ │ ├── table.component-internal.spec.ts │ │ │ ├── table.component-page-scrolling.spec.ts │ │ │ ├── table.component-tree-lazy-loading.spec.ts │ │ │ └── table.component-tree.spec.ts │ ├── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ ├── value-help-dialog │ │ ├── components │ │ │ ├── base-tab │ │ │ │ └── vhd-base-tab.component.ts │ │ │ ├── define-tab │ │ │ │ ├── define-tab.component.html │ │ │ │ ├── define-tab.component.scss │ │ │ │ ├── define-tab.component.spec.ts │ │ │ │ └── define-tab.component.ts │ │ │ ├── index.ts │ │ │ ├── select-tab │ │ │ │ ├── select-tab.component.html │ │ │ │ ├── select-tab.component.scss │ │ │ │ ├── select-tab.component.spec.ts │ │ │ │ └── select-tab.component.ts │ │ │ └── value-help-dialog-filter │ │ │ │ ├── value-help-dialog-filter.component.spec.ts │ │ │ │ └── value-help-dialog-filter.component.ts │ │ ├── constans │ │ │ ├── condition-display.function.ts │ │ │ ├── index.ts │ │ │ └── variables.ts │ │ ├── directives │ │ │ ├── condition-count-message.directive.ts │ │ │ ├── value-help-column-def.directive.ts │ │ │ └── value-help-filter-def.directive.ts │ │ ├── index.ts │ │ ├── models │ │ │ ├── index.ts │ │ │ ├── vhd-component.model.ts │ │ │ ├── vhd-data.source.ts │ │ │ ├── vhd-filter-rule.model.ts │ │ │ ├── vhd-filter.model.ts │ │ │ ├── vhd-strategy.enum.ts │ │ │ ├── vhd-tab-type.enum.ts │ │ │ ├── vhd-table-selection.type.ts │ │ │ ├── vhd-type-condition.enum.ts │ │ │ └── vhd-value.model.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── value-help-dialog.module.ts │ │ └── value-help-dialog │ │ │ ├── value-help-dialog.component.html │ │ │ ├── value-help-dialog.component.scss │ │ │ ├── value-help-dialog.component.spec.ts │ │ │ └── value-help-dialog.component.ts │ ├── variant-management │ │ ├── components │ │ │ ├── manage-variant-item │ │ │ │ ├── manage-variant-item.component.html │ │ │ │ ├── manage-variant-item.component.spec.ts │ │ │ │ └── manage-variant-item.component.ts │ │ │ ├── manage-variants-dialog │ │ │ │ ├── data-provider.ts │ │ │ │ ├── manage-variants-dialog.component.html │ │ │ │ └── manage-variants-dialog.component.ts │ │ │ └── variant-management-wrapper │ │ │ │ ├── variant-management-wrapper.component.spec.ts │ │ │ │ └── variant-management-wrapper.component.ts │ │ ├── directives │ │ │ └── variant-management-dirty-label.directive.ts │ │ ├── index.ts │ │ ├── models │ │ │ ├── save-dialog.model.ts │ │ │ ├── variant-management.ts │ │ │ └── variant.interface.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── tokens.ts │ │ ├── variant-item.class.ts │ │ ├── variant-management.component.html │ │ ├── variant-management.component.scss │ │ ├── variant-management.component.spec.ts │ │ ├── variant-management.component.ts │ │ └── variant-management.module.ts │ └── wizard-generator │ │ ├── base-wizard-generator.ts │ │ ├── components │ │ ├── dialog-wizard-generator │ │ │ ├── dialog-wizard-generator.component.html │ │ │ └── dialog-wizard-generator.component.ts │ │ ├── wizard-body │ │ │ ├── wizard-body.component.html │ │ │ ├── wizard-body.component.spec.ts │ │ │ └── wizard-body.component.ts │ │ ├── wizard-generator-step │ │ │ ├── wizard-generator-step.component.html │ │ │ ├── wizard-generator-step.component.spec.ts │ │ │ └── wizard-generator-step.component.ts │ │ ├── wizard-generator │ │ │ ├── wizard-generator.component.html │ │ │ ├── wizard-generator.component.spec.ts │ │ │ └── wizard-generator.component.ts │ │ └── wizard-summary-step │ │ │ ├── wizard-summary-section │ │ │ ├── wizard-summary-section.component.html │ │ │ └── wizard-summary-section.component.ts │ │ │ ├── wizard-summary-step.component.html │ │ │ ├── wizard-summary-step.component.spec.ts │ │ │ └── wizard-summary-step.component.ts │ │ ├── directives │ │ ├── wizard-generator-finish-button.directive.ts │ │ ├── wizard-generator-go-next-button.directive.ts │ │ ├── wizard-generator-review-button.directive.ts │ │ └── wizard-generator-summary-step.directive.ts │ │ ├── index.ts │ │ ├── interfaces │ │ ├── wizard-dialog-data.interface.ts │ │ ├── wizard-generator-form-group.interface.ts │ │ ├── wizard-generator-forms.interface.ts │ │ ├── wizard-generator-item.interface.ts │ │ ├── wizard-generator-summary-item.interface.ts │ │ ├── wizard-navigation-buttons.interface.ts │ │ ├── wizard-step.interface.ts │ │ └── wizard-title.interface.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── wizard-dialog-generator.service.spec.ts │ │ ├── wizard-dialog-generator.service.ts │ │ ├── wizard-generator.module.ts │ │ ├── wizard-generator.service.spec.ts │ │ └── wizard-generator.service.ts ├── ui5-webcomponents-ai │ ├── CHANGELOG.md │ ├── README.md │ ├── eslint.config.js │ ├── fundamental-ngx.module.ts │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ ├── tsconfig.typedoc.json │ └── ui5.module.ts ├── ui5-webcomponents-base │ ├── CHANGELOG.md │ ├── README.md │ ├── eslint.config.js │ ├── fundamental-ngx.module.ts │ ├── index.ts │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── test-setup.ts │ ├── theming │ │ ├── base-webcomponents-theming-provider.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── supported-themes.ts │ │ ├── theming-api.ts │ │ ├── ui5-theming-api.ts │ │ ├── ui5-theming.models.ts │ │ └── ui5-theming.module.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ ├── tsconfig.typedoc.json │ └── ui5.module.ts ├── ui5-webcomponents-fiori │ ├── CHANGELOG.md │ ├── README.md │ ├── eslint.config.js │ ├── fundamental-ngx.module.ts │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ ├── tsconfig.typedoc.json │ └── ui5.module.ts ├── ui5-webcomponents │ ├── CHANGELOG.md │ ├── README.md │ ├── eslint.config.js │ ├── fundamental-ngx.module.ts │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ └── tsconfig.typedoc.json └── webc-generator │ ├── CHANGELOG.md │ ├── README.md │ ├── eslint.config.js │ ├── executors.json │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ ├── executors │ │ └── generate │ │ │ ├── component-template.ts │ │ │ ├── executor.ts │ │ │ ├── schema.d.ts │ │ │ ├── schema.json │ │ │ └── utils │ │ │ ├── cva.ts │ │ │ ├── ng-package.json │ │ │ └── theming-service-template.tpl │ └── index.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── metadata.yaml ├── netlify.toml ├── ngx-fundamental.iml ├── nx.json ├── package.json ├── scripts ├── release-hotfix.js └── reset-placeholders.js ├── translation_v2.json ├── tsconfig.base.json ├── versions.json ├── wdio.conf.js ├── wdio_docs.conf.js ├── webpack.config.js └── yarn.lock /.ci-env/flags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/.ci-env/flags.sh -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/.env -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/.firebaserc -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/.github/ISSUE_TEMPLATE/issue.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/.github/TESTING.md -------------------------------------------------------------------------------- /.github/actions/helpers/current-version.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./get-version')(); 2 | -------------------------------------------------------------------------------- /.github/actions/nodejs/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/.github/actions/nodejs/action.yml -------------------------------------------------------------------------------- /.github/in-solidarity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/.github/in-solidarity.yml -------------------------------------------------------------------------------- /.github/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | displayName: 'github-related-scripts' 3 | }; 4 | -------------------------------------------------------------------------------- /.github/mergeable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/.github/mergeable.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn run pre-commit 5 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v22.12.0 2 | -------------------------------------------------------------------------------- /.nxignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/.nxignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/.yarn/README.md -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.12.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/.yarn/releases/yarn-4.12.0.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG_OLD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/CHANGELOG_OLD.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/REUSE.toml -------------------------------------------------------------------------------- /apps/docs/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/apps/docs/eslint.config.js -------------------------------------------------------------------------------- /apps/docs/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/apps/docs/project.json -------------------------------------------------------------------------------- /apps/docs/src/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/apps/docs/src/app.component.ts -------------------------------------------------------------------------------- /apps/docs/src/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/apps/docs/src/app.config.ts -------------------------------------------------------------------------------- /apps/docs/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs/src/assets/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/apps/docs/src/assets/01.png -------------------------------------------------------------------------------- /apps/docs/src/assets/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/apps/docs/src/assets/02.png -------------------------------------------------------------------------------- /apps/docs/src/assets/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/apps/docs/src/assets/03.png -------------------------------------------------------------------------------- /apps/docs/src/assets/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/apps/docs/src/assets/04.png -------------------------------------------------------------------------------- /apps/docs/src/assets/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/apps/docs/src/assets/05.png -------------------------------------------------------------------------------- /apps/docs/src/assets/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/apps/docs/src/assets/06.png -------------------------------------------------------------------------------- /apps/docs/src/assets/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/apps/docs/src/assets/07.png -------------------------------------------------------------------------------- /apps/docs/src/assets/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/apps/docs/src/assets/08.png -------------------------------------------------------------------------------- /apps/docs/src/assets/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/apps/docs/src/assets/09.png -------------------------------------------------------------------------------- /apps/docs/src/assets/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/apps/docs/src/assets/10.png -------------------------------------------------------------------------------- /apps/docs/src/assets/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/apps/docs/src/assets/11.png -------------------------------------------------------------------------------- /apps/docs/src/assets/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/apps/docs/src/assets/12.png -------------------------------------------------------------------------------- /apps/docs/src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/apps/docs/src/assets/favicon.ico -------------------------------------------------------------------------------- /apps/docs/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/apps/docs/src/favicon.ico -------------------------------------------------------------------------------- /apps/docs/src/fd-typedoc/assets/js/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs/src/fd-typedoc/assets/js/search.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs/src/fd-typedoc/partials/header.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs/src/fd-typedoc/partials/index.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/apps/docs/src/index.html -------------------------------------------------------------------------------- /apps/docs/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/apps/docs/src/main.ts -------------------------------------------------------------------------------- /apps/docs/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/apps/docs/src/polyfills.ts -------------------------------------------------------------------------------- /apps/docs/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/apps/docs/src/styles.scss -------------------------------------------------------------------------------- /apps/docs/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/apps/docs/src/typings.d.ts -------------------------------------------------------------------------------- /apps/docs/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/apps/docs/tsconfig.app.json -------------------------------------------------------------------------------- /apps/docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/apps/docs/tsconfig.json -------------------------------------------------------------------------------- /apps/docs/tsconfig.netlify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/apps/docs/tsconfig.netlify.json -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /docs/CI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/docs/CI.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/docs/README.md -------------------------------------------------------------------------------- /e2e/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/e2e/eslint.config.js -------------------------------------------------------------------------------- /e2e/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/e2e/index.ts -------------------------------------------------------------------------------- /e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/e2e/project.json -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /e2e/wdio.base-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/e2e/wdio.base-config.js -------------------------------------------------------------------------------- /e2e/wdio/axe/app-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/e2e/wdio/axe/app-url.ts -------------------------------------------------------------------------------- /e2e/wdio/axe/report.acs-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/e2e/wdio/axe/report.acs-spec.ts -------------------------------------------------------------------------------- /e2e/wdio/btp-base-component.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/e2e/wdio/btp-base-component.po.ts -------------------------------------------------------------------------------- /e2e/wdio/core-base-component.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/e2e/wdio/core-base-component.po.ts -------------------------------------------------------------------------------- /e2e/wdio/driver/wdio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/e2e/wdio/driver/wdio.ts -------------------------------------------------------------------------------- /e2e/wdio/helper/common-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/e2e/wdio/helper/common-helper.ts -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/eslint.config.js -------------------------------------------------------------------------------- /eslint.overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/eslint.overrides.js -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/firebase.json -------------------------------------------------------------------------------- /ignore.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | git log -1 --pretty=%B | grep dependabot 4 | -------------------------------------------------------------------------------- /jest-extended-matchers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/jest-extended-matchers.ts -------------------------------------------------------------------------------- /jest.config.base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/jest.config.base.ts -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/jest.config.ts -------------------------------------------------------------------------------- /jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/jest.preset.js -------------------------------------------------------------------------------- /libs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/btp/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/CHANGELOG.md -------------------------------------------------------------------------------- /libs/btp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/README.md -------------------------------------------------------------------------------- /libs/btp/button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/button/index.ts -------------------------------------------------------------------------------- /libs/btp/button/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/button/ng-package.json -------------------------------------------------------------------------------- /libs/btp/button/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/button/project.json -------------------------------------------------------------------------------- /libs/btp/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/eslint.config.js -------------------------------------------------------------------------------- /libs/btp/fundamental-ngx.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/fundamental-ngx.module.ts -------------------------------------------------------------------------------- /libs/btp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/index.ts -------------------------------------------------------------------------------- /libs/btp/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/jest.config.ts -------------------------------------------------------------------------------- /libs/btp/navigation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/navigation/index.ts -------------------------------------------------------------------------------- /libs/btp/navigation/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/navigation/project.json -------------------------------------------------------------------------------- /libs/btp/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/ng-package.json -------------------------------------------------------------------------------- /libs/btp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/package.json -------------------------------------------------------------------------------- /libs/btp/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/project.json -------------------------------------------------------------------------------- /libs/btp/search-field/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/search-field/project.json -------------------------------------------------------------------------------- /libs/btp/search-field/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './search-field.component'; 2 | -------------------------------------------------------------------------------- /libs/btp/shared/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/shared/ng-package.json -------------------------------------------------------------------------------- /libs/btp/shared/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/shared/project.json -------------------------------------------------------------------------------- /libs/btp/shared/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/shared/src/index.ts -------------------------------------------------------------------------------- /libs/btp/splitter/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/splitter/constants.ts -------------------------------------------------------------------------------- /libs/btp/splitter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/splitter/index.ts -------------------------------------------------------------------------------- /libs/btp/splitter/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/splitter/ng-package.json -------------------------------------------------------------------------------- /libs/btp/splitter/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/splitter/project.json -------------------------------------------------------------------------------- /libs/btp/splitter/splitter.component.scss: -------------------------------------------------------------------------------- 1 | @import 'fundamental-styles/dist/splitter.css'; 2 | -------------------------------------------------------------------------------- /libs/btp/splitter/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/splitter/test-setup.ts -------------------------------------------------------------------------------- /libs/btp/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/test-setup.ts -------------------------------------------------------------------------------- /libs/btp/tool-header/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/tool-header/project.json -------------------------------------------------------------------------------- /libs/btp/tool-header/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/tool-header/src/index.ts -------------------------------------------------------------------------------- /libs/btp/tool-layout/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/tool-layout/project.json -------------------------------------------------------------------------------- /libs/btp/tool-layout/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/tool-layout/src/index.ts -------------------------------------------------------------------------------- /libs/btp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/tsconfig.json -------------------------------------------------------------------------------- /libs/btp/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/btp/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/btp/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/btp/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/cdk/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/CHANGELOG.md -------------------------------------------------------------------------------- /libs/cdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/README.md -------------------------------------------------------------------------------- /libs/cdk/data-source/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/data-source/index.ts -------------------------------------------------------------------------------- /libs/cdk/data-source/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/data-source/project.json -------------------------------------------------------------------------------- /libs/cdk/data-source/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/data-source/test-setup.ts -------------------------------------------------------------------------------- /libs/cdk/data-source/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/data-source/tokens.ts -------------------------------------------------------------------------------- /libs/cdk/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/eslint.config.js -------------------------------------------------------------------------------- /libs/cdk/forms/forms.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/forms/forms.module.ts -------------------------------------------------------------------------------- /libs/cdk/forms/helpers/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/forms/helpers/state.ts -------------------------------------------------------------------------------- /libs/cdk/forms/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/forms/index.ts -------------------------------------------------------------------------------- /libs/cdk/forms/models/cva.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/forms/models/cva.ts -------------------------------------------------------------------------------- /libs/cdk/forms/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/forms/ng-package.json -------------------------------------------------------------------------------- /libs/cdk/forms/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/forms/project.json -------------------------------------------------------------------------------- /libs/cdk/forms/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/forms/test-setup.ts -------------------------------------------------------------------------------- /libs/cdk/fundamental-ngx.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/fundamental-ngx.module.ts -------------------------------------------------------------------------------- /libs/cdk/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/index.ts -------------------------------------------------------------------------------- /libs/cdk/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/jest.config.ts -------------------------------------------------------------------------------- /libs/cdk/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/ng-package.json -------------------------------------------------------------------------------- /libs/cdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/package.json -------------------------------------------------------------------------------- /libs/cdk/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/project.json -------------------------------------------------------------------------------- /libs/cdk/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/test-setup.ts -------------------------------------------------------------------------------- /libs/cdk/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/tsconfig.json -------------------------------------------------------------------------------- /libs/cdk/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/cdk/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/cdk/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/cdk/utils/coercion/array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/utils/coercion/array.ts -------------------------------------------------------------------------------- /libs/cdk/utils/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/utils/components/index.ts -------------------------------------------------------------------------------- /libs/cdk/utils/consts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/utils/consts/index.ts -------------------------------------------------------------------------------- /libs/cdk/utils/datatypes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/utils/datatypes/index.ts -------------------------------------------------------------------------------- /libs/cdk/utils/decorators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/utils/decorators/index.ts -------------------------------------------------------------------------------- /libs/cdk/utils/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/utils/directives/index.ts -------------------------------------------------------------------------------- /libs/cdk/utils/directives/resize-observer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './resize-observer.directive'; 2 | -------------------------------------------------------------------------------- /libs/cdk/utils/dynamic-component/dynamic-component-service-provider.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/cdk/utils/functions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/utils/functions/index.ts -------------------------------------------------------------------------------- /libs/cdk/utils/functions/is-odd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/utils/functions/is-odd.ts -------------------------------------------------------------------------------- /libs/cdk/utils/functions/scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/utils/functions/scroll.ts -------------------------------------------------------------------------------- /libs/cdk/utils/helpers/dfs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/utils/helpers/dfs.ts -------------------------------------------------------------------------------- /libs/cdk/utils/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/utils/helpers/index.ts -------------------------------------------------------------------------------- /libs/cdk/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/utils/index.ts -------------------------------------------------------------------------------- /libs/cdk/utils/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/utils/interfaces/index.ts -------------------------------------------------------------------------------- /libs/cdk/utils/models/nullable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/utils/models/nullable.ts -------------------------------------------------------------------------------- /libs/cdk/utils/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/utils/ng-package.json -------------------------------------------------------------------------------- /libs/cdk/utils/pipes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/utils/pipes/index.ts -------------------------------------------------------------------------------- /libs/cdk/utils/pipes/safe.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/utils/pipes/safe.pipe.ts -------------------------------------------------------------------------------- /libs/cdk/utils/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/utils/project.json -------------------------------------------------------------------------------- /libs/cdk/utils/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/utils/services/index.ts -------------------------------------------------------------------------------- /libs/cdk/utils/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/utils/test-setup.ts -------------------------------------------------------------------------------- /libs/cdk/utils/toast/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/utils/toast/index.ts -------------------------------------------------------------------------------- /libs/cdk/utils/typecheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/utils/typecheck.ts -------------------------------------------------------------------------------- /libs/cdk/utils/utils.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cdk/utils/utils.module.ts -------------------------------------------------------------------------------- /libs/core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/CHANGELOG.md -------------------------------------------------------------------------------- /libs/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/README.md -------------------------------------------------------------------------------- /libs/core/action-bar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/action-bar/index.ts -------------------------------------------------------------------------------- /libs/core/action-bar/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/action-bar/project.json -------------------------------------------------------------------------------- /libs/core/action-sheet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/action-sheet/index.ts -------------------------------------------------------------------------------- /libs/core/avatar-group/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/avatar-group/index.ts -------------------------------------------------------------------------------- /libs/core/avatar-group/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/avatar-group/tokens.ts -------------------------------------------------------------------------------- /libs/core/avatar-group/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/avatar-group/types.ts -------------------------------------------------------------------------------- /libs/core/avatar/avatar.component.scss: -------------------------------------------------------------------------------- 1 | @import 'fundamental-styles/dist/avatar.css'; 2 | -------------------------------------------------------------------------------- /libs/core/avatar/avatar.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/avatar/avatar.module.ts -------------------------------------------------------------------------------- /libs/core/avatar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/avatar/index.ts -------------------------------------------------------------------------------- /libs/core/avatar/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/avatar/ng-package.json -------------------------------------------------------------------------------- /libs/core/avatar/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/avatar/project.json -------------------------------------------------------------------------------- /libs/core/avatar/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/avatar/tokens.ts -------------------------------------------------------------------------------- /libs/core/bar/bar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/bar/bar.component.html -------------------------------------------------------------------------------- /libs/core/bar/bar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/bar/bar.component.scss -------------------------------------------------------------------------------- /libs/core/bar/bar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/bar/bar.component.ts -------------------------------------------------------------------------------- /libs/core/bar/bar.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/bar/bar.module.ts -------------------------------------------------------------------------------- /libs/core/bar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/bar/index.ts -------------------------------------------------------------------------------- /libs/core/bar/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/bar/ng-package.json -------------------------------------------------------------------------------- /libs/core/bar/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/bar/project.json -------------------------------------------------------------------------------- /libs/core/bar/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/bar/tokens.ts -------------------------------------------------------------------------------- /libs/core/breadcrumb/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/breadcrumb/index.ts -------------------------------------------------------------------------------- /libs/core/breadcrumb/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/breadcrumb/project.json -------------------------------------------------------------------------------- /libs/core/breadcrumb/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/breadcrumb/tokens.ts -------------------------------------------------------------------------------- /libs/core/busy-indicator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/busy-indicator/index.ts -------------------------------------------------------------------------------- /libs/core/busy-indicator/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/busy-indicator/tokens.ts -------------------------------------------------------------------------------- /libs/core/button/base-button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/button/base-button.ts -------------------------------------------------------------------------------- /libs/core/button/button.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/button/button.module.ts -------------------------------------------------------------------------------- /libs/core/button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/button/index.ts -------------------------------------------------------------------------------- /libs/core/button/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/button/ng-package.json -------------------------------------------------------------------------------- /libs/core/button/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/button/project.json -------------------------------------------------------------------------------- /libs/core/button/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/button/tokens.ts -------------------------------------------------------------------------------- /libs/core/calendar/calendar-header/calendar-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/core/calendar/calendar-views/calendar-aggregated-year-view/calendar-aggregated-year-view.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/core/calendar/calendar-views/calendar-month-view/calendar-month-view.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/core/calendar/calendar-views/calendar-year-view/calendar-year-view.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/core/calendar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/calendar/index.ts -------------------------------------------------------------------------------- /libs/core/calendar/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/calendar/ng-package.json -------------------------------------------------------------------------------- /libs/core/calendar/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/calendar/project.json -------------------------------------------------------------------------------- /libs/core/calendar/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/calendar/types.ts -------------------------------------------------------------------------------- /libs/core/card/card.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/card/card.component.html -------------------------------------------------------------------------------- /libs/core/card/card.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/card/card.component.scss -------------------------------------------------------------------------------- /libs/core/card/card.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/card/card.component.ts -------------------------------------------------------------------------------- /libs/core/card/card.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/card/card.module.ts -------------------------------------------------------------------------------- /libs/core/card/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/card/constants.ts -------------------------------------------------------------------------------- /libs/core/card/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/card/index.ts -------------------------------------------------------------------------------- /libs/core/card/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/card/ng-package.json -------------------------------------------------------------------------------- /libs/core/card/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/card/project.json -------------------------------------------------------------------------------- /libs/core/card/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/card/token.ts -------------------------------------------------------------------------------- /libs/core/card/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/card/utils.ts -------------------------------------------------------------------------------- /libs/core/carousel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/carousel/index.ts -------------------------------------------------------------------------------- /libs/core/carousel/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/carousel/ng-package.json -------------------------------------------------------------------------------- /libs/core/carousel/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/carousel/project.json -------------------------------------------------------------------------------- /libs/core/checkbox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/checkbox/index.ts -------------------------------------------------------------------------------- /libs/core/checkbox/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/checkbox/ng-package.json -------------------------------------------------------------------------------- /libs/core/checkbox/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/checkbox/project.json -------------------------------------------------------------------------------- /libs/core/checkbox/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/checkbox/tokens.ts -------------------------------------------------------------------------------- /libs/core/combobox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/combobox/index.ts -------------------------------------------------------------------------------- /libs/core/combobox/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/combobox/ng-package.json -------------------------------------------------------------------------------- /libs/core/combobox/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/combobox/project.json -------------------------------------------------------------------------------- /libs/core/combobox/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/combobox/tokens.ts -------------------------------------------------------------------------------- /libs/core/content-density/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/content-density/index.ts -------------------------------------------------------------------------------- /libs/core/date-picker/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/date-picker/errors.ts -------------------------------------------------------------------------------- /libs/core/date-picker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/date-picker/index.ts -------------------------------------------------------------------------------- /libs/core/date-picker/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/date-picker/project.json -------------------------------------------------------------------------------- /libs/core/date-picker/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/date-picker/tokens.ts -------------------------------------------------------------------------------- /libs/core/datetime-picker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/datetime-picker/index.ts -------------------------------------------------------------------------------- /libs/core/datetime/fd-date.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/datetime/fd-date.spec.ts -------------------------------------------------------------------------------- /libs/core/datetime/fd-date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/datetime/fd-date.ts -------------------------------------------------------------------------------- /libs/core/datetime/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/datetime/index.ts -------------------------------------------------------------------------------- /libs/core/datetime/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/datetime/ng-package.json -------------------------------------------------------------------------------- /libs/core/datetime/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/datetime/project.json -------------------------------------------------------------------------------- /libs/core/dialog/dialog.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/dialog/dialog.module.ts -------------------------------------------------------------------------------- /libs/core/dialog/dialog.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/dialog/dialog.types.ts -------------------------------------------------------------------------------- /libs/core/dialog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/dialog/index.ts -------------------------------------------------------------------------------- /libs/core/dialog/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/dialog/ng-package.json -------------------------------------------------------------------------------- /libs/core/dialog/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/dialog/project.json -------------------------------------------------------------------------------- /libs/core/dialog/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/dialog/tokens.ts -------------------------------------------------------------------------------- /libs/core/dynamic-page/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/dynamic-page/index.ts -------------------------------------------------------------------------------- /libs/core/dynamic-page/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/dynamic-page/tokens.ts -------------------------------------------------------------------------------- /libs/core/dynamic-page/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/dynamic-page/utils.ts -------------------------------------------------------------------------------- /libs/core/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/eslint.config.js -------------------------------------------------------------------------------- /libs/core/facets/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/facets/constants.ts -------------------------------------------------------------------------------- /libs/core/facets/facet.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/facets/facet.module.ts -------------------------------------------------------------------------------- /libs/core/facets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/facets/index.ts -------------------------------------------------------------------------------- /libs/core/facets/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/facets/ng-package.json -------------------------------------------------------------------------------- /libs/core/facets/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/facets/project.json -------------------------------------------------------------------------------- /libs/core/facets/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/facets/utils.ts -------------------------------------------------------------------------------- /libs/core/feed-input/feed-input.component.scss: -------------------------------------------------------------------------------- 1 | @import 'fundamental-styles/dist/feed-input.css'; 2 | -------------------------------------------------------------------------------- /libs/core/feed-input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/feed-input/index.ts -------------------------------------------------------------------------------- /libs/core/feed-input/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/feed-input/project.json -------------------------------------------------------------------------------- /libs/core/feed-list-item/components/list/feed-list.component.scss: -------------------------------------------------------------------------------- 1 | @import 'fundamental-styles/dist/feed-list.css'; 2 | -------------------------------------------------------------------------------- /libs/core/feed-list-item/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/feed-list-item/index.ts -------------------------------------------------------------------------------- /libs/core/file-uploader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/file-uploader/index.ts -------------------------------------------------------------------------------- /libs/core/form/fieldset/fieldset.component.scss: -------------------------------------------------------------------------------- 1 | @import 'fundamental-styles/dist/fieldset.css'; 2 | -------------------------------------------------------------------------------- /libs/core/form/form-group/form-group.component.scss: -------------------------------------------------------------------------------- 1 | @import 'fundamental-styles/dist/form-group.css'; 2 | -------------------------------------------------------------------------------- /libs/core/form/form-header/form-header.component.scss: -------------------------------------------------------------------------------- 1 | @import 'fundamental-styles/dist/form-header.css'; 2 | -------------------------------------------------------------------------------- /libs/core/form/form.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/form/form.module.ts -------------------------------------------------------------------------------- /libs/core/form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/form/index.ts -------------------------------------------------------------------------------- /libs/core/form/inline-help-placement.type.ts: -------------------------------------------------------------------------------- 1 | export type InlineHelpFormPlacement = 'before' | 'after'; 2 | -------------------------------------------------------------------------------- /libs/core/form/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/form/ng-package.json -------------------------------------------------------------------------------- /libs/core/form/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/form/project.json -------------------------------------------------------------------------------- /libs/core/formatted-text/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/formatted-text/index.ts -------------------------------------------------------------------------------- /libs/core/generic-tag/generic-tag.component.scss: -------------------------------------------------------------------------------- 1 | @import 'fundamental-styles/dist/generic-tag.css'; 2 | -------------------------------------------------------------------------------- /libs/core/generic-tag/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/generic-tag/index.ts -------------------------------------------------------------------------------- /libs/core/generic-tag/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/generic-tag/project.json -------------------------------------------------------------------------------- /libs/core/generic-tag/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/generic-tag/tokens.ts -------------------------------------------------------------------------------- /libs/core/grid-list/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/grid-list/index.ts -------------------------------------------------------------------------------- /libs/core/grid-list/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/grid-list/project.json -------------------------------------------------------------------------------- /libs/core/icon/icon.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/icon/icon.component.scss -------------------------------------------------------------------------------- /libs/core/icon/icon.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/icon/icon.component.ts -------------------------------------------------------------------------------- /libs/core/icon/icon.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/icon/icon.module.ts -------------------------------------------------------------------------------- /libs/core/icon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/icon/index.ts -------------------------------------------------------------------------------- /libs/core/icon/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/icon/ng-package.json -------------------------------------------------------------------------------- /libs/core/icon/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/icon/project.json -------------------------------------------------------------------------------- /libs/core/icon/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/icon/tokens.ts -------------------------------------------------------------------------------- /libs/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/index.ts -------------------------------------------------------------------------------- /libs/core/infinite-scroll/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/infinite-scroll/index.ts -------------------------------------------------------------------------------- /libs/core/info-label/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/info-label/index.ts -------------------------------------------------------------------------------- /libs/core/info-label/info-label.component.scss: -------------------------------------------------------------------------------- 1 | @import 'fundamental-styles/dist/info-label.css'; 2 | -------------------------------------------------------------------------------- /libs/core/info-label/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/info-label/project.json -------------------------------------------------------------------------------- /libs/core/inline-help/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/inline-help/index.ts -------------------------------------------------------------------------------- /libs/core/inline-help/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/inline-help/project.json -------------------------------------------------------------------------------- /libs/core/input-group/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/input-group/index.ts -------------------------------------------------------------------------------- /libs/core/input-group/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/input-group/project.json -------------------------------------------------------------------------------- /libs/core/input-group/types.ts: -------------------------------------------------------------------------------- 1 | export type InputGroupPlacement = 'before' | 'after'; 2 | -------------------------------------------------------------------------------- /libs/core/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/jest.config.ts -------------------------------------------------------------------------------- /libs/core/layout-grid/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/layout-grid/constants.ts -------------------------------------------------------------------------------- /libs/core/layout-grid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/layout-grid/index.ts -------------------------------------------------------------------------------- /libs/core/layout-grid/layout-grid.component.scss: -------------------------------------------------------------------------------- 1 | @import 'fundamental-styles/dist/layout-grid.css'; 2 | -------------------------------------------------------------------------------- /libs/core/layout-grid/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/layout-grid/project.json -------------------------------------------------------------------------------- /libs/core/layout-panel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/layout-panel/index.ts -------------------------------------------------------------------------------- /libs/core/link/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/link/constants.ts -------------------------------------------------------------------------------- /libs/core/link/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/link/index.ts -------------------------------------------------------------------------------- /libs/core/link/link.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/link/link.component.html -------------------------------------------------------------------------------- /libs/core/link/link.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/link/link.component.scss -------------------------------------------------------------------------------- /libs/core/link/link.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/link/link.component.ts -------------------------------------------------------------------------------- /libs/core/link/link.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/link/link.module.ts -------------------------------------------------------------------------------- /libs/core/link/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/link/ng-package.json -------------------------------------------------------------------------------- /libs/core/link/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/link/project.json -------------------------------------------------------------------------------- /libs/core/link/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/link/tokens.ts -------------------------------------------------------------------------------- /libs/core/list/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/list/index.ts -------------------------------------------------------------------------------- /libs/core/list/list-navigation-item/list-navigation-item.component.scss: -------------------------------------------------------------------------------- 1 | @import 'fundamental-styles/dist/popover.css'; 2 | -------------------------------------------------------------------------------- /libs/core/list/list.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/list/list.component.scss -------------------------------------------------------------------------------- /libs/core/list/list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/list/list.component.ts -------------------------------------------------------------------------------- /libs/core/list/list.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/list/list.module.ts -------------------------------------------------------------------------------- /libs/core/list/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/list/ng-package.json -------------------------------------------------------------------------------- /libs/core/list/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/list/project.json -------------------------------------------------------------------------------- /libs/core/list/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/list/tokens.ts -------------------------------------------------------------------------------- /libs/core/menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/menu/index.ts -------------------------------------------------------------------------------- /libs/core/menu/menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/menu/menu.component.html -------------------------------------------------------------------------------- /libs/core/menu/menu.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/menu/menu.component.scss -------------------------------------------------------------------------------- /libs/core/menu/menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/menu/menu.component.ts -------------------------------------------------------------------------------- /libs/core/menu/menu.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/menu/menu.interface.ts -------------------------------------------------------------------------------- /libs/core/menu/menu.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/menu/menu.module.ts -------------------------------------------------------------------------------- /libs/core/menu/menu.tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/menu/menu.tokens.ts -------------------------------------------------------------------------------- /libs/core/menu/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/menu/ng-package.json -------------------------------------------------------------------------------- /libs/core/menu/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/menu/project.json -------------------------------------------------------------------------------- /libs/core/menu/public_api.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/core/message-box/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/message-box/index.ts -------------------------------------------------------------------------------- /libs/core/message-box/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/message-box/project.json -------------------------------------------------------------------------------- /libs/core/message-page/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/message-page/index.ts -------------------------------------------------------------------------------- /libs/core/message-page/message-page.component.scss: -------------------------------------------------------------------------------- 1 | @import 'fundamental-styles/dist/message-page.css'; 2 | -------------------------------------------------------------------------------- /libs/core/message-strip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/message-strip/index.ts -------------------------------------------------------------------------------- /libs/core/message-toast/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/message-toast/index.ts -------------------------------------------------------------------------------- /libs/core/mobile-mode/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/mobile-mode/index.ts -------------------------------------------------------------------------------- /libs/core/mobile-mode/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/mobile-mode/project.json -------------------------------------------------------------------------------- /libs/core/multi-combobox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/multi-combobox/index.ts -------------------------------------------------------------------------------- /libs/core/multi-combobox/mobile/mobile-multi-combobox.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/core/multi-input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/multi-input/index.ts -------------------------------------------------------------------------------- /libs/core/multi-input/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/multi-input/project.json -------------------------------------------------------------------------------- /libs/core/nested-list/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/nested-list/index.ts -------------------------------------------------------------------------------- /libs/core/nested-list/prepared-nested-list/prepared-nested-list.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/core/nested-list/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/nested-list/project.json -------------------------------------------------------------------------------- /libs/core/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/ng-package.json -------------------------------------------------------------------------------- /libs/core/notification/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/notification/index.ts -------------------------------------------------------------------------------- /libs/core/notification/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/notification/token.ts -------------------------------------------------------------------------------- /libs/core/object-attribute/object-attribute.component.scss: -------------------------------------------------------------------------------- 1 | @import 'fundamental-styles/dist/object-attribute.css'; 2 | -------------------------------------------------------------------------------- /libs/core/object-identifier/object-identifier.component.scss: -------------------------------------------------------------------------------- 1 | @import 'fundamental-styles/dist/object-identifier.css'; 2 | -------------------------------------------------------------------------------- /libs/core/object-marker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/object-marker/index.ts -------------------------------------------------------------------------------- /libs/core/object-marker/object-marker.component.scss: -------------------------------------------------------------------------------- 1 | @import 'fundamental-styles/dist/object-marker.css'; 2 | -------------------------------------------------------------------------------- /libs/core/object-number/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/object-number/index.ts -------------------------------------------------------------------------------- /libs/core/object-number/object-number.component.scss: -------------------------------------------------------------------------------- 1 | @import 'fundamental-styles/dist/object-number.css'; 2 | -------------------------------------------------------------------------------- /libs/core/object-status/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/object-status/index.ts -------------------------------------------------------------------------------- /libs/core/object-status/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/object-status/tokens.ts -------------------------------------------------------------------------------- /libs/core/overflow-layout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/overflow-layout/index.ts -------------------------------------------------------------------------------- /libs/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/package.json -------------------------------------------------------------------------------- /libs/core/pagination/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/pagination/index.ts -------------------------------------------------------------------------------- /libs/core/pagination/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/pagination/project.json -------------------------------------------------------------------------------- /libs/core/panel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/panel/index.ts -------------------------------------------------------------------------------- /libs/core/panel/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/panel/ng-package.json -------------------------------------------------------------------------------- /libs/core/panel/panel.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/panel/panel.component.ts -------------------------------------------------------------------------------- /libs/core/panel/panel.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/panel/panel.module.ts -------------------------------------------------------------------------------- /libs/core/panel/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/panel/project.json -------------------------------------------------------------------------------- /libs/core/popover/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/popover/index.ts -------------------------------------------------------------------------------- /libs/core/popover/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/popover/ng-package.json -------------------------------------------------------------------------------- /libs/core/popover/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/popover/project.json -------------------------------------------------------------------------------- /libs/core/popover/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/popover/tokens.ts -------------------------------------------------------------------------------- /libs/core/product-switch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/product-switch/index.ts -------------------------------------------------------------------------------- /libs/core/product-switch/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/product-switch/tokens.ts -------------------------------------------------------------------------------- /libs/core/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/project.json -------------------------------------------------------------------------------- /libs/core/quick-view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/quick-view/index.ts -------------------------------------------------------------------------------- /libs/core/quick-view/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/quick-view/project.json -------------------------------------------------------------------------------- /libs/core/radio/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/radio/index.ts -------------------------------------------------------------------------------- /libs/core/radio/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/radio/ng-package.json -------------------------------------------------------------------------------- /libs/core/radio/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/radio/project.json -------------------------------------------------------------------------------- /libs/core/radio/radio-button/radio-button.component.scss: -------------------------------------------------------------------------------- 1 | @import 'fundamental-styles/dist/radio.css'; 2 | -------------------------------------------------------------------------------- /libs/core/radio/radio.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/radio/radio.module.ts -------------------------------------------------------------------------------- /libs/core/radio/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/radio/tokens.ts -------------------------------------------------------------------------------- /libs/core/rating-indicator/pipes/index.ts: -------------------------------------------------------------------------------- 1 | export * from './rating-star-label.pipe'; 2 | -------------------------------------------------------------------------------- /libs/core/schematics/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/schematics/project.json -------------------------------------------------------------------------------- /libs/core/schematics/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/schematics/tsconfig.json -------------------------------------------------------------------------------- /libs/core/scroll-spy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/scroll-spy/index.ts -------------------------------------------------------------------------------- /libs/core/scroll-spy/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/scroll-spy/project.json -------------------------------------------------------------------------------- /libs/core/scrollbar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/scrollbar/index.ts -------------------------------------------------------------------------------- /libs/core/scrollbar/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/scrollbar/project.json -------------------------------------------------------------------------------- /libs/core/select/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/select/index.ts -------------------------------------------------------------------------------- /libs/core/select/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/select/ng-package.json -------------------------------------------------------------------------------- /libs/core/select/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/select/project.json -------------------------------------------------------------------------------- /libs/core/select/select.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/select/select.module.ts -------------------------------------------------------------------------------- /libs/core/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/settings/index.ts -------------------------------------------------------------------------------- /libs/core/settings/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/settings/ng-package.json -------------------------------------------------------------------------------- /libs/core/settings/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/settings/project.json -------------------------------------------------------------------------------- /libs/core/settings/settings.component.scss: -------------------------------------------------------------------------------- 1 | @import 'fundamental-styles/dist/settings.css'; 2 | -------------------------------------------------------------------------------- /libs/core/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/shared/index.ts -------------------------------------------------------------------------------- /libs/core/shared/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/shared/ng-package.json -------------------------------------------------------------------------------- /libs/core/shared/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/shared/project.json -------------------------------------------------------------------------------- /libs/core/shellbar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/shellbar/index.ts -------------------------------------------------------------------------------- /libs/core/shellbar/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/shellbar/ng-package.json -------------------------------------------------------------------------------- /libs/core/shellbar/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/shellbar/project.json -------------------------------------------------------------------------------- /libs/core/shellbar/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/shellbar/tokens.ts -------------------------------------------------------------------------------- /libs/core/side-navigation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/side-navigation/index.ts -------------------------------------------------------------------------------- /libs/core/skeleton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /libs/core/skeleton/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/skeleton/ng-package.json -------------------------------------------------------------------------------- /libs/core/skeleton/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/skeleton/project.json -------------------------------------------------------------------------------- /libs/core/skeleton/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/skeleton/public-api.ts -------------------------------------------------------------------------------- /libs/core/slider/constants.ts: -------------------------------------------------------------------------------- 1 | export const MIN_DISTANCE_BETWEEN_TICKS = 8; 2 | -------------------------------------------------------------------------------- /libs/core/slider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/slider/index.ts -------------------------------------------------------------------------------- /libs/core/slider/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/slider/ng-package.json -------------------------------------------------------------------------------- /libs/core/slider/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/slider/project.json -------------------------------------------------------------------------------- /libs/core/slider/slider.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/slider/slider.model.ts -------------------------------------------------------------------------------- /libs/core/slider/slider.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/slider/slider.module.ts -------------------------------------------------------------------------------- /libs/core/split-button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/split-button/index.ts -------------------------------------------------------------------------------- /libs/core/split-button/split-button.component.scss: -------------------------------------------------------------------------------- 1 | @import 'fundamental-styles/dist/button-split.css'; 2 | -------------------------------------------------------------------------------- /libs/core/status-indicator/status-indicator.component.scss: -------------------------------------------------------------------------------- 1 | @import 'fundamental-styles/dist/status-indicator.css'; 2 | -------------------------------------------------------------------------------- /libs/core/step-input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/step-input/index.ts -------------------------------------------------------------------------------- /libs/core/step-input/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/step-input/project.json -------------------------------------------------------------------------------- /libs/core/styles/fundamental-ngx-core.css: -------------------------------------------------------------------------------- 1 | @import 'fundamental-styles/dist/icon.css'; 2 | -------------------------------------------------------------------------------- /libs/core/switch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/switch/index.ts -------------------------------------------------------------------------------- /libs/core/switch/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/switch/ng-package.json -------------------------------------------------------------------------------- /libs/core/switch/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/switch/project.json -------------------------------------------------------------------------------- /libs/core/switch/switch.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/switch/switch.module.ts -------------------------------------------------------------------------------- /libs/core/table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/table/index.ts -------------------------------------------------------------------------------- /libs/core/table/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/table/ng-package.json -------------------------------------------------------------------------------- /libs/core/table/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/table/project.json -------------------------------------------------------------------------------- /libs/core/table/table.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/table/table.component.ts -------------------------------------------------------------------------------- /libs/core/table/table.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/table/table.module.ts -------------------------------------------------------------------------------- /libs/core/table/table.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/table/table.service.ts -------------------------------------------------------------------------------- /libs/core/tabs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tabs/index.ts -------------------------------------------------------------------------------- /libs/core/tabs/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tabs/ng-package.json -------------------------------------------------------------------------------- /libs/core/tabs/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tabs/project.json -------------------------------------------------------------------------------- /libs/core/tabs/tab-list.token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tabs/tab-list.token.ts -------------------------------------------------------------------------------- /libs/core/tabs/tab-nav/tab-nav.component.scss: -------------------------------------------------------------------------------- 1 | @import 'fundamental-styles/dist/tabs.css'; 2 | -------------------------------------------------------------------------------- /libs/core/tabs/tabs.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tabs/tabs.module.ts -------------------------------------------------------------------------------- /libs/core/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/test-setup.ts -------------------------------------------------------------------------------- /libs/core/tests/event-objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tests/event-objects.ts -------------------------------------------------------------------------------- /libs/core/tests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tests/index.ts -------------------------------------------------------------------------------- /libs/core/tests/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tests/ng-package.json -------------------------------------------------------------------------------- /libs/core/tests/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tests/project.json -------------------------------------------------------------------------------- /libs/core/tests/when-stable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tests/when-stable.ts -------------------------------------------------------------------------------- /libs/core/text/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/text/index.ts -------------------------------------------------------------------------------- /libs/core/text/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/text/ng-package.json -------------------------------------------------------------------------------- /libs/core/text/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/text/project.json -------------------------------------------------------------------------------- /libs/core/text/text.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/text/text.component.html -------------------------------------------------------------------------------- /libs/core/text/text.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/text/text.component.scss -------------------------------------------------------------------------------- /libs/core/text/text.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/text/text.component.ts -------------------------------------------------------------------------------- /libs/core/text/text.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/text/text.module.ts -------------------------------------------------------------------------------- /libs/core/theming/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/theming/config.ts -------------------------------------------------------------------------------- /libs/core/theming/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/theming/index.ts -------------------------------------------------------------------------------- /libs/core/theming/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/theming/ng-package.json -------------------------------------------------------------------------------- /libs/core/theming/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/theming/project.json -------------------------------------------------------------------------------- /libs/core/theming/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/theming/tokens.ts -------------------------------------------------------------------------------- /libs/core/tile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tile/index.ts -------------------------------------------------------------------------------- /libs/core/tile/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tile/ng-package.json -------------------------------------------------------------------------------- /libs/core/tile/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tile/project.json -------------------------------------------------------------------------------- /libs/core/tile/tile.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tile/tile.component.html -------------------------------------------------------------------------------- /libs/core/tile/tile.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tile/tile.component.scss -------------------------------------------------------------------------------- /libs/core/tile/tile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tile/tile.component.ts -------------------------------------------------------------------------------- /libs/core/tile/tile.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tile/tile.module.ts -------------------------------------------------------------------------------- /libs/core/time-picker/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/time-picker/errors.ts -------------------------------------------------------------------------------- /libs/core/time-picker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/time-picker/index.ts -------------------------------------------------------------------------------- /libs/core/time-picker/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/time-picker/project.json -------------------------------------------------------------------------------- /libs/core/time/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/time/errors.ts -------------------------------------------------------------------------------- /libs/core/time/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/time/index.ts -------------------------------------------------------------------------------- /libs/core/time/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/time/models.ts -------------------------------------------------------------------------------- /libs/core/time/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/time/ng-package.json -------------------------------------------------------------------------------- /libs/core/time/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/time/project.json -------------------------------------------------------------------------------- /libs/core/time/time.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/time/time.component.html -------------------------------------------------------------------------------- /libs/core/time/time.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/time/time.component.scss -------------------------------------------------------------------------------- /libs/core/time/time.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/time/time.component.ts -------------------------------------------------------------------------------- /libs/core/time/time.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/time/time.module.ts -------------------------------------------------------------------------------- /libs/core/timeline/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/timeline/index.ts -------------------------------------------------------------------------------- /libs/core/timeline/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/timeline/ng-package.json -------------------------------------------------------------------------------- /libs/core/timeline/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/timeline/project.json -------------------------------------------------------------------------------- /libs/core/timeline/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/timeline/types/index.ts -------------------------------------------------------------------------------- /libs/core/title/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/title/index.ts -------------------------------------------------------------------------------- /libs/core/title/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/title/ng-package.json -------------------------------------------------------------------------------- /libs/core/title/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/title/project.json -------------------------------------------------------------------------------- /libs/core/title/title.component.scss: -------------------------------------------------------------------------------- 1 | @import 'fundamental-styles/dist/title.css'; 2 | -------------------------------------------------------------------------------- /libs/core/title/title.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/title/title.component.ts -------------------------------------------------------------------------------- /libs/core/title/title.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/title/title.module.ts -------------------------------------------------------------------------------- /libs/core/token/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/token/index.ts -------------------------------------------------------------------------------- /libs/core/token/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/token/ng-package.json -------------------------------------------------------------------------------- /libs/core/token/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/token/project.json -------------------------------------------------------------------------------- /libs/core/token/token.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/token/token.component.ts -------------------------------------------------------------------------------- /libs/core/token/token.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/token/token.module.ts -------------------------------------------------------------------------------- /libs/core/toolbar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/toolbar/index.ts -------------------------------------------------------------------------------- /libs/core/toolbar/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/toolbar/ng-package.json -------------------------------------------------------------------------------- /libs/core/toolbar/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/toolbar/project.json -------------------------------------------------------------------------------- /libs/core/toolbar/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/toolbar/tokens.ts -------------------------------------------------------------------------------- /libs/core/tree/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tree/index.ts -------------------------------------------------------------------------------- /libs/core/tree/models/tree-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tree/models/tree-item.ts -------------------------------------------------------------------------------- /libs/core/tree/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tree/ng-package.json -------------------------------------------------------------------------------- /libs/core/tree/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tree/project.json -------------------------------------------------------------------------------- /libs/core/tree/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tree/tokens.ts -------------------------------------------------------------------------------- /libs/core/tree/tree.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tree/tree.component.html -------------------------------------------------------------------------------- /libs/core/tree/tree.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tree/tree.component.scss -------------------------------------------------------------------------------- /libs/core/tree/tree.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tree/tree.component.ts -------------------------------------------------------------------------------- /libs/core/tree/tree.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tree/tree.module.ts -------------------------------------------------------------------------------- /libs/core/tree/tree.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tree/tree.service.ts -------------------------------------------------------------------------------- /libs/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tsconfig.json -------------------------------------------------------------------------------- /libs/core/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/core/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/core/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/core/tsconfig.typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/tsconfig.typedoc.json -------------------------------------------------------------------------------- /libs/core/upload-collection/upload-collection.component.scss: -------------------------------------------------------------------------------- 1 | @import 'fundamental-styles/dist/upload-collection.css'; 2 | -------------------------------------------------------------------------------- /libs/core/user-menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/user-menu/index.ts -------------------------------------------------------------------------------- /libs/core/user-menu/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/user-menu/project.json -------------------------------------------------------------------------------- /libs/core/wizard/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/wizard/constants.ts -------------------------------------------------------------------------------- /libs/core/wizard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/wizard/index.ts -------------------------------------------------------------------------------- /libs/core/wizard/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/wizard/ng-package.json -------------------------------------------------------------------------------- /libs/core/wizard/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/wizard/project.json -------------------------------------------------------------------------------- /libs/core/wizard/wizard-content/wizard-content.component.scss: -------------------------------------------------------------------------------- 1 | .fd-wizard-tall-content { 2 | height: auto; 3 | } 4 | -------------------------------------------------------------------------------- /libs/core/wizard/wizard.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/wizard/wizard.module.ts -------------------------------------------------------------------------------- /libs/core/wizard/wizard.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/core/wizard/wizard.service.ts -------------------------------------------------------------------------------- /libs/cx/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cx/CHANGELOG.md -------------------------------------------------------------------------------- /libs/cx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cx/README.md -------------------------------------------------------------------------------- /libs/cx/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cx/eslint.config.js -------------------------------------------------------------------------------- /libs/cx/fundamental-ngx.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cx/fundamental-ngx.module.ts -------------------------------------------------------------------------------- /libs/cx/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cx/index.ts -------------------------------------------------------------------------------- /libs/cx/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cx/jest.config.ts -------------------------------------------------------------------------------- /libs/cx/nested-list/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cx/nested-list/index.ts -------------------------------------------------------------------------------- /libs/cx/nested-list/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cx/nested-list/project.json -------------------------------------------------------------------------------- /libs/cx/nested-list/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cx/nested-list/test-setup.ts -------------------------------------------------------------------------------- /libs/cx/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cx/ng-package.json -------------------------------------------------------------------------------- /libs/cx/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cx/package.json -------------------------------------------------------------------------------- /libs/cx/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cx/project.json -------------------------------------------------------------------------------- /libs/cx/schematics/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cx/schematics/collection.json -------------------------------------------------------------------------------- /libs/cx/schematics/ng-add/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cx/schematics/ng-add/index.ts -------------------------------------------------------------------------------- /libs/cx/schematics/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cx/schematics/project.json -------------------------------------------------------------------------------- /libs/cx/schematics/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cx/schematics/tsconfig.json -------------------------------------------------------------------------------- /libs/cx/side-navigation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cx/side-navigation/index.ts -------------------------------------------------------------------------------- /libs/cx/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cx/test-setup.ts -------------------------------------------------------------------------------- /libs/cx/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cx/tsconfig.json -------------------------------------------------------------------------------- /libs/cx/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cx/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/cx/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cx/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/cx/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cx/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/cx/tsconfig.typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/cx/tsconfig.typedoc.json -------------------------------------------------------------------------------- /libs/datetime-adapter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/datetime-adapter/CHANGELOG.md -------------------------------------------------------------------------------- /libs/datetime-adapter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/datetime-adapter/README.md -------------------------------------------------------------------------------- /libs/datetime-adapter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/datetime-adapter/package.json -------------------------------------------------------------------------------- /libs/datetime-adapter/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/datetime-adapter/project.json -------------------------------------------------------------------------------- /libs/datetime-adapter/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/datetime-adapter/src/index.ts -------------------------------------------------------------------------------- /libs/docs/btp/api-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/btp/api-files.ts -------------------------------------------------------------------------------- /libs/docs/btp/button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/btp/button/index.ts -------------------------------------------------------------------------------- /libs/docs/btp/button/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/btp/button/project.json -------------------------------------------------------------------------------- /libs/docs/btp/button/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/btp/button/tsconfig.json -------------------------------------------------------------------------------- /libs/docs/btp/docs-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/btp/docs-data.json -------------------------------------------------------------------------------- /libs/docs/btp/docs-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/btp/docs-routes.ts -------------------------------------------------------------------------------- /libs/docs/btp/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/btp/eslint.config.js -------------------------------------------------------------------------------- /libs/docs/btp/index.ts: -------------------------------------------------------------------------------- 1 | export { ROUTES as default } from './docs-routes'; 2 | -------------------------------------------------------------------------------- /libs/docs/btp/navigation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/btp/navigation/index.ts -------------------------------------------------------------------------------- /libs/docs/btp/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/btp/project.json -------------------------------------------------------------------------------- /libs/docs/btp/splitter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/btp/splitter/index.ts -------------------------------------------------------------------------------- /libs/docs/btp/tool-header/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/btp/tool-header/index.ts -------------------------------------------------------------------------------- /libs/docs/btp/tool-layout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/btp/tool-layout/index.ts -------------------------------------------------------------------------------- /libs/docs/btp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/btp/tsconfig.json -------------------------------------------------------------------------------- /libs/docs/cdk/api-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/cdk/api-files.ts -------------------------------------------------------------------------------- /libs/docs/cdk/breakpoint/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/cdk/breakpoint/index.ts -------------------------------------------------------------------------------- /libs/docs/cdk/clicked/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/cdk/clicked/index.ts -------------------------------------------------------------------------------- /libs/docs/cdk/clicked/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/cdk/clicked/project.json -------------------------------------------------------------------------------- /libs/docs/cdk/data-source/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/cdk/data-source/index.ts -------------------------------------------------------------------------------- /libs/docs/cdk/disabled/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/cdk/disabled/index.ts -------------------------------------------------------------------------------- /libs/docs/cdk/docs-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/cdk/docs-data.json -------------------------------------------------------------------------------- /libs/docs/cdk/docs-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/cdk/docs-routes.ts -------------------------------------------------------------------------------- /libs/docs/cdk/drag-n-drop/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/cdk/drag-n-drop/index.ts -------------------------------------------------------------------------------- /libs/docs/cdk/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/cdk/eslint.config.js -------------------------------------------------------------------------------- /libs/docs/cdk/focusable-item/examples/default/focusable-item-default-example.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/cdk/forms/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/cdk/forms/index.ts -------------------------------------------------------------------------------- /libs/docs/cdk/forms/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/cdk/forms/project.json -------------------------------------------------------------------------------- /libs/docs/cdk/forms/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/cdk/forms/tsconfig.json -------------------------------------------------------------------------------- /libs/docs/cdk/index.ts: -------------------------------------------------------------------------------- 1 | export { ROUTES as default } from './docs-routes'; 2 | -------------------------------------------------------------------------------- /libs/docs/cdk/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/cdk/project.json -------------------------------------------------------------------------------- /libs/docs/cdk/rtl-service/e2e/rtl-service.e2e-spec.ts: -------------------------------------------------------------------------------- 1 | describe('RTL Service', () => {}); 2 | -------------------------------------------------------------------------------- /libs/docs/cdk/rtl-service/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/cdk/rtl-service/index.ts -------------------------------------------------------------------------------- /libs/docs/cdk/rtl-service/rtl-service-header/rtl-service-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/cdk/tabbable/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/cdk/tabbable/index.ts -------------------------------------------------------------------------------- /libs/docs/cdk/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/cdk/tsconfig.json -------------------------------------------------------------------------------- /libs/docs/core/action-bar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/action-bar/index.ts -------------------------------------------------------------------------------- /libs/docs/core/api-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/api-files.ts -------------------------------------------------------------------------------- /libs/docs/core/avatar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/avatar/index.ts -------------------------------------------------------------------------------- /libs/docs/core/avatar/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/avatar/project.json -------------------------------------------------------------------------------- /libs/docs/core/bar/e2e/bar.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/bar/e2e/bar.po.ts -------------------------------------------------------------------------------- /libs/docs/core/bar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/bar/index.ts -------------------------------------------------------------------------------- /libs/docs/core/bar/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/bar/project.json -------------------------------------------------------------------------------- /libs/docs/core/bar/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/bar/tsconfig.json -------------------------------------------------------------------------------- /libs/docs/core/breadcrumb/breadcrumb-header/breadcrumb-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/breadcrumb/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/breadcrumb/index.ts -------------------------------------------------------------------------------- /libs/docs/core/button/button-header/button-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/button/index.ts -------------------------------------------------------------------------------- /libs/docs/core/button/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/button/project.json -------------------------------------------------------------------------------- /libs/docs/core/calendar/calendar-header/calendar-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/calendar/examples/calendar-grid-example/calendar-grid-example.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/calendar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/calendar/index.ts -------------------------------------------------------------------------------- /libs/docs/core/card/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/card/index.ts -------------------------------------------------------------------------------- /libs/docs/core/card/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/card/project.json -------------------------------------------------------------------------------- /libs/docs/core/card/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/card/tsconfig.json -------------------------------------------------------------------------------- /libs/docs/core/carousel/examples/carousel-auto-slides-example.component.scss: -------------------------------------------------------------------------------- 1 | @import 'carousel-example.component.scss'; 2 | -------------------------------------------------------------------------------- /libs/docs/core/carousel/examples/carousel-background-example.component.scss: -------------------------------------------------------------------------------- 1 | @import 'carousel-example.component.scss'; 2 | -------------------------------------------------------------------------------- /libs/docs/core/carousel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/carousel/index.ts -------------------------------------------------------------------------------- /libs/docs/core/checkbox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/checkbox/index.ts -------------------------------------------------------------------------------- /libs/docs/core/combobox/combobox-header/combobox-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/combobox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/combobox/index.ts -------------------------------------------------------------------------------- /libs/docs/core/content-density/e2e/content-density.e2e-spec.ts: -------------------------------------------------------------------------------- 1 | describe('Content Density', () => {}); 2 | -------------------------------------------------------------------------------- /libs/docs/core/date-picker/date-picker-header/date-picker-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/date-picker/examples/date-picker-special-day-example/date-picker-special-day-example.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/datetime-picker/datetime-picker-docs.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/datetime-picker/datetime-picker-header/datetime-picker-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/dialog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/dialog/index.ts -------------------------------------------------------------------------------- /libs/docs/core/dialog/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/dialog/project.json -------------------------------------------------------------------------------- /libs/docs/core/docs-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/docs-data.json -------------------------------------------------------------------------------- /libs/docs/core/docs-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/docs-routes.ts -------------------------------------------------------------------------------- /libs/docs/core/dynamic-page/examples/dynamic-page-example.component.scss: -------------------------------------------------------------------------------- 1 | .overlay-content { 2 | width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /libs/docs/core/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/eslint.config.js -------------------------------------------------------------------------------- /libs/docs/core/facets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/facets/index.ts -------------------------------------------------------------------------------- /libs/docs/core/facets/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/facets/project.json -------------------------------------------------------------------------------- /libs/docs/core/feed-input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/feed-input/index.ts -------------------------------------------------------------------------------- /libs/docs/core/file-uploader/file-uploader-docs.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/file-uploader/file-uploader-header/file-uploader-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/grid-list/examples/dnd/grid-list-dnd-example.component.scss: -------------------------------------------------------------------------------- 1 | @import '../grid-list.component.scss'; 2 | -------------------------------------------------------------------------------- /libs/docs/core/grid-list/examples/footer/grid-list-footer-example.component.scss: -------------------------------------------------------------------------------- 1 | @import '../grid-list.component.scss'; 2 | -------------------------------------------------------------------------------- /libs/docs/core/grid-list/examples/group/grid-list-group-example.component.scss: -------------------------------------------------------------------------------- 1 | @import '../grid-list.component.scss'; 2 | -------------------------------------------------------------------------------- /libs/docs/core/grid-list/examples/layout/grid-list-layout-example.component.scss: -------------------------------------------------------------------------------- 1 | @import '../grid-list.component.scss'; 2 | -------------------------------------------------------------------------------- /libs/docs/core/grid-list/examples/more/grid-list-more-example.component.scss: -------------------------------------------------------------------------------- 1 | @import '../grid-list.component.scss'; 2 | -------------------------------------------------------------------------------- /libs/docs/core/grid-list/examples/states/grid-list-states-example.component.scss: -------------------------------------------------------------------------------- 1 | @import '../grid-list.component.scss'; 2 | -------------------------------------------------------------------------------- /libs/docs/core/grid-list/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/grid-list/index.ts -------------------------------------------------------------------------------- /libs/docs/core/icon/e2e/icon.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/icon/e2e/icon.po.ts -------------------------------------------------------------------------------- /libs/docs/core/icon/examples/icon-color-example.component.scss: -------------------------------------------------------------------------------- 1 | @import 'icon-example.component.scss'; 2 | -------------------------------------------------------------------------------- /libs/docs/core/icon/examples/icon-tnt-example.component.scss: -------------------------------------------------------------------------------- 1 | @import 'icon-example.component.scss'; 2 | -------------------------------------------------------------------------------- /libs/docs/core/icon/icon-header/icon-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/icon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/icon/index.ts -------------------------------------------------------------------------------- /libs/docs/core/icon/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/icon/project.json -------------------------------------------------------------------------------- /libs/docs/core/icon/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/icon/tsconfig.json -------------------------------------------------------------------------------- /libs/docs/core/index.ts: -------------------------------------------------------------------------------- 1 | export { ROUTES as default } from './docs-routes'; 2 | -------------------------------------------------------------------------------- /libs/docs/core/infinite-scroll/e2e/infinite-scroll.e2e-spec.ts: -------------------------------------------------------------------------------- 1 | describe('Infinite Scroll', () => {}); 2 | -------------------------------------------------------------------------------- /libs/docs/core/infinite-scroll/infinite-scroll-header/infinite-scroll-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/info-label/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/info-label/index.ts -------------------------------------------------------------------------------- /libs/docs/core/info-label/info-label-header/info-label-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/inline-help/inline-help-header/inline-help-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/input/e2e/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/input/e2e/input.ts -------------------------------------------------------------------------------- /libs/docs/core/input/examples/input-form-group-example.component.scss: -------------------------------------------------------------------------------- 1 | input { 2 | margin-bottom: 10px; 3 | } 4 | -------------------------------------------------------------------------------- /libs/docs/core/input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/input/index.ts -------------------------------------------------------------------------------- /libs/docs/core/input/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/input/project.json -------------------------------------------------------------------------------- /libs/docs/core/input/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/input/tsconfig.json -------------------------------------------------------------------------------- /libs/docs/core/layout-grid/e2e/layout-grid.e2e-spec.ts: -------------------------------------------------------------------------------- 1 | describe('Layout grid', () => {}); 2 | -------------------------------------------------------------------------------- /libs/docs/core/layout-panel/e2e/layout-panel.e2e-spec.ts: -------------------------------------------------------------------------------- 1 | describe('layout-panel', () => {}); 2 | -------------------------------------------------------------------------------- /libs/docs/core/layout-panel/layout-panel-docs-header/layout-panel-docs-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/link/e2e/link.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/link/e2e/link.po.ts -------------------------------------------------------------------------------- /libs/docs/core/link/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/link/index.ts -------------------------------------------------------------------------------- /libs/docs/core/link/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/link/project.json -------------------------------------------------------------------------------- /libs/docs/core/link/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/link/tsconfig.json -------------------------------------------------------------------------------- /libs/docs/core/list/examples/list-borderless-example/list-borderless-example.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/list/examples/list-data-example/list-data-example.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/list/examples/list-selection-example/list-selection-example.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/list/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/list/index.ts -------------------------------------------------------------------------------- /libs/docs/core/list/list-header/list-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/list/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/list/project.json -------------------------------------------------------------------------------- /libs/docs/core/list/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/list/tsconfig.json -------------------------------------------------------------------------------- /libs/docs/core/menu/e2e/menu-contents.ts: -------------------------------------------------------------------------------- 1 | export const emptyValuesArr = ['', '""', null, undefined]; 2 | -------------------------------------------------------------------------------- /libs/docs/core/menu/e2e/menu.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/menu/e2e/menu.po.ts -------------------------------------------------------------------------------- /libs/docs/core/menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/menu/index.ts -------------------------------------------------------------------------------- /libs/docs/core/menu/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/menu/project.json -------------------------------------------------------------------------------- /libs/docs/core/menu/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/menu/tsconfig.json -------------------------------------------------------------------------------- /libs/docs/core/micro-process-flow/e2e/micro-process-flow.e2e-spec.ts: -------------------------------------------------------------------------------- 1 | describe('micro-process-flow', () => {}); 2 | -------------------------------------------------------------------------------- /libs/docs/core/multi-input/multi-input-docs.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/multi-input/multi-input-header/multi-input-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/object-identifier/object-identifier-header/object-identifier-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/object-status/object-status-header/object-status-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/overflow-layout/e2e/overflow-layout.e2e-spec.ts: -------------------------------------------------------------------------------- 1 | describe('Overflow Layout', () => {}); 2 | -------------------------------------------------------------------------------- /libs/docs/core/pagination/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/pagination/index.ts -------------------------------------------------------------------------------- /libs/docs/core/pagination/pagination-header/pagination-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/panel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/panel/index.ts -------------------------------------------------------------------------------- /libs/docs/core/panel/panel-docs-header/panel-docs-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/panel/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/panel/project.json -------------------------------------------------------------------------------- /libs/docs/core/panel/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/panel/tsconfig.json -------------------------------------------------------------------------------- /libs/docs/core/popover/examples/popover-scroll-example/popover-scroll-example.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/popover/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/popover/index.ts -------------------------------------------------------------------------------- /libs/docs/core/popover/popover-header/popover-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/product-switch/product-switch-docs-header/product-switch-docs-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/progress-indicator/e2e/progress-indicator.e2e-spec.ts: -------------------------------------------------------------------------------- 1 | describe('Progress Indicator', () => {}); 2 | -------------------------------------------------------------------------------- /libs/docs/core/progress-indicator/progress-indicator-docs.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/project.json -------------------------------------------------------------------------------- /libs/docs/core/quick-view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/quick-view/index.ts -------------------------------------------------------------------------------- /libs/docs/core/quick-view/quick-view-docs-header/quick-view-docs-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/radio/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/radio/index.ts -------------------------------------------------------------------------------- /libs/docs/core/radio/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/radio/project.json -------------------------------------------------------------------------------- /libs/docs/core/radio/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/radio/tsconfig.json -------------------------------------------------------------------------------- /libs/docs/core/schema/README.md: -------------------------------------------------------------------------------- 1 | # schema 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | -------------------------------------------------------------------------------- /libs/docs/core/schema/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/schema/project.json -------------------------------------------------------------------------------- /libs/docs/core/schema/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/schema/src/index.ts -------------------------------------------------------------------------------- /libs/docs/core/scroll-spy/e2e/scroll-spy.e2e-spec.ts: -------------------------------------------------------------------------------- 1 | describe('Scroll Spy', () => {}); 2 | -------------------------------------------------------------------------------- /libs/docs/core/scroll-spy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/scroll-spy/index.ts -------------------------------------------------------------------------------- /libs/docs/core/scroll-spy/scroll-spy-docs.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/scroll-spy/scroll-spy-header/scroll-spy-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/scrollbar/e2e/scrollbar.e2e-spec.ts: -------------------------------------------------------------------------------- 1 | describe('Scrollbar', () => {}); 2 | -------------------------------------------------------------------------------- /libs/docs/core/scrollbar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/scrollbar/index.ts -------------------------------------------------------------------------------- /libs/docs/core/segmented-button/segmented-button-header/segmented-button-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/select/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/select/index.ts -------------------------------------------------------------------------------- /libs/docs/core/select/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/select/project.json -------------------------------------------------------------------------------- /libs/docs/core/shellbar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/shellbar/index.ts -------------------------------------------------------------------------------- /libs/docs/core/shellbar/shellbar-docs-header/shellbar-docs-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/side-navigation/side-navigation-header/side-navigation-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/skeleton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/skeleton/index.ts -------------------------------------------------------------------------------- /libs/docs/core/slider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/slider/index.ts -------------------------------------------------------------------------------- /libs/docs/core/slider/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/slider/project.json -------------------------------------------------------------------------------- /libs/docs/core/slider/slider-header/slider-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/split-button/split-button-header/split-button-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/step-input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/step-input/index.ts -------------------------------------------------------------------------------- /libs/docs/core/switch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/switch/index.ts -------------------------------------------------------------------------------- /libs/docs/core/switch/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/switch/project.json -------------------------------------------------------------------------------- /libs/docs/core/switch/switch-header/switch-header.component.scss: -------------------------------------------------------------------------------- 1 | fd-switch { 2 | margin-bottom: 20px; 3 | } 4 | -------------------------------------------------------------------------------- /libs/docs/core/table/examples/table-responsive-example.component.scss: -------------------------------------------------------------------------------- 1 | td { 2 | min-width: 200px; 3 | } 4 | -------------------------------------------------------------------------------- /libs/docs/core/table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/table/index.ts -------------------------------------------------------------------------------- /libs/docs/core/table/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/table/project.json -------------------------------------------------------------------------------- /libs/docs/core/table/table-docs-header/table-docs-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/table/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/table/tsconfig.json -------------------------------------------------------------------------------- /libs/docs/core/tabs/e2e/tabs.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/tabs/e2e/tabs.po.ts -------------------------------------------------------------------------------- /libs/docs/core/tabs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/tabs/index.ts -------------------------------------------------------------------------------- /libs/docs/core/tabs/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/tabs/project.json -------------------------------------------------------------------------------- /libs/docs/core/tabs/tabs-header/tabs-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/tabs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/tabs/tsconfig.json -------------------------------------------------------------------------------- /libs/docs/core/text/e2e/text.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/text/e2e/text.po.ts -------------------------------------------------------------------------------- /libs/docs/core/text/examples/text-hyphenation.component.scss: -------------------------------------------------------------------------------- 1 | .hyphens-example-holder { 2 | width: 215px; 3 | } 4 | -------------------------------------------------------------------------------- /libs/docs/core/text/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/text/index.ts -------------------------------------------------------------------------------- /libs/docs/core/text/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/text/project.json -------------------------------------------------------------------------------- /libs/docs/core/text/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/text/tsconfig.json -------------------------------------------------------------------------------- /libs/docs/core/textarea/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/textarea/index.ts -------------------------------------------------------------------------------- /libs/docs/core/theming/e2e/theming.e2e-spec.ts: -------------------------------------------------------------------------------- 1 | describe('Theming', () => {}); 2 | -------------------------------------------------------------------------------- /libs/docs/core/theming/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/theming/index.ts -------------------------------------------------------------------------------- /libs/docs/core/tile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/tile/index.ts -------------------------------------------------------------------------------- /libs/docs/core/tile/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/tile/project.json -------------------------------------------------------------------------------- /libs/docs/core/tile/tile-docs-header/tile-docs-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/tile/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/tile/tsconfig.json -------------------------------------------------------------------------------- /libs/docs/core/time-picker/time-picker-header/time-picker-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/time/e2e/time.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/time/e2e/time.po.ts -------------------------------------------------------------------------------- /libs/docs/core/time/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/time/index.ts -------------------------------------------------------------------------------- /libs/docs/core/time/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/time/project.json -------------------------------------------------------------------------------- /libs/docs/core/time/time-header/time-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/time/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/time/tsconfig.json -------------------------------------------------------------------------------- /libs/docs/core/timeline/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/timeline/index.ts -------------------------------------------------------------------------------- /libs/docs/core/title/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/title/index.ts -------------------------------------------------------------------------------- /libs/docs/core/title/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/title/project.json -------------------------------------------------------------------------------- /libs/docs/core/title/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/title/tsconfig.json -------------------------------------------------------------------------------- /libs/docs/core/token/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/token/index.ts -------------------------------------------------------------------------------- /libs/docs/core/token/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/token/project.json -------------------------------------------------------------------------------- /libs/docs/core/token/token-docs.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/token/token-header/token-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/token/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/token/tsconfig.json -------------------------------------------------------------------------------- /libs/docs/core/toolbar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/toolbar/index.ts -------------------------------------------------------------------------------- /libs/docs/core/toolbar/toolbar-documentation.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/toolbar/toolbar-header/toolbar-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/tree/e2e/tree.e2e-spec.ts: -------------------------------------------------------------------------------- 1 | describe('Tree', () => {}); 2 | -------------------------------------------------------------------------------- /libs/docs/core/tree/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/tree/index.ts -------------------------------------------------------------------------------- /libs/docs/core/tree/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/tree/project.json -------------------------------------------------------------------------------- /libs/docs/core/tree/tree-header/tree-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/core/tree/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/tree/tsconfig.json -------------------------------------------------------------------------------- /libs/docs/core/truncate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/truncate/index.ts -------------------------------------------------------------------------------- /libs/docs/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/tsconfig.json -------------------------------------------------------------------------------- /libs/docs/core/user-menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/user-menu/index.ts -------------------------------------------------------------------------------- /libs/docs/core/wizard/examples/wizard-branching-example.component.scss: -------------------------------------------------------------------------------- 1 | @import './wizard-example.component'; 2 | -------------------------------------------------------------------------------- /libs/docs/core/wizard/examples/wizard-customizable-example.component.scss: -------------------------------------------------------------------------------- 1 | @import './wizard-example.component'; 2 | -------------------------------------------------------------------------------- /libs/docs/core/wizard/examples/wizard-dialog-example.component.scss: -------------------------------------------------------------------------------- 1 | @import './wizard-example.component'; 2 | -------------------------------------------------------------------------------- /libs/docs/core/wizard/examples/wizard-ngfor-example.component.scss: -------------------------------------------------------------------------------- 1 | @import './wizard-example.component'; 2 | -------------------------------------------------------------------------------- /libs/docs/core/wizard/examples/wizard-visible-summary-example.component.scss: -------------------------------------------------------------------------------- 1 | @import './wizard-example.component'; 2 | -------------------------------------------------------------------------------- /libs/docs/core/wizard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/wizard/index.ts -------------------------------------------------------------------------------- /libs/docs/core/wizard/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/core/wizard/project.json -------------------------------------------------------------------------------- /libs/docs/cx/api-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/cx/api-files.ts -------------------------------------------------------------------------------- /libs/docs/cx/docs-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/cx/docs-data.json -------------------------------------------------------------------------------- /libs/docs/cx/docs-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/cx/docs-routes.ts -------------------------------------------------------------------------------- /libs/docs/cx/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/cx/eslint.config.js -------------------------------------------------------------------------------- /libs/docs/cx/index.ts: -------------------------------------------------------------------------------- 1 | export { ROUTES as default } from './docs-routes'; 2 | -------------------------------------------------------------------------------- /libs/docs/cx/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/cx/project.json -------------------------------------------------------------------------------- /libs/docs/cx/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/cx/tsconfig.json -------------------------------------------------------------------------------- /libs/docs/i18n/docs-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/i18n/docs-data.json -------------------------------------------------------------------------------- /libs/docs/i18n/docs-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/i18n/docs-routes.ts -------------------------------------------------------------------------------- /libs/docs/i18n/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/i18n/eslint.config.js -------------------------------------------------------------------------------- /libs/docs/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/i18n/index.ts -------------------------------------------------------------------------------- /libs/docs/i18n/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/i18n/project.json -------------------------------------------------------------------------------- /libs/docs/i18n/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/i18n/tsconfig.json -------------------------------------------------------------------------------- /libs/docs/platform/api-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/platform/api-files.ts -------------------------------------------------------------------------------- /libs/docs/platform/approval-flow/platform-approval-flow-header/platform-approval-flow-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/platform/button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/platform/button/index.ts -------------------------------------------------------------------------------- /libs/docs/platform/button/platform-button-header/platform-button-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/platform/feed-input/platform-feed-input-header/platform-feed-input-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/platform/index.ts: -------------------------------------------------------------------------------- 1 | export { ROUTES as default } from './docs-routes'; 2 | -------------------------------------------------------------------------------- /libs/docs/platform/list/platform-list-header/platform-list-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/platform/object-list-item/e2e/object-list-item-contents.ts: -------------------------------------------------------------------------------- 1 | export const navUrl = '/platform/home'; 2 | -------------------------------------------------------------------------------- /libs/docs/platform/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/platform/project.json -------------------------------------------------------------------------------- /libs/docs/platform/textarea/platform-textarea-header/platform-textarea-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/docs/platform/vhd/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/platform/vhd/index.ts -------------------------------------------------------------------------------- /libs/docs/schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/schema/README.md -------------------------------------------------------------------------------- /libs/docs/schema/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/schema/project.json -------------------------------------------------------------------------------- /libs/docs/schema/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/schema/src/index.ts -------------------------------------------------------------------------------- /libs/docs/schema/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/schema/tsconfig.json -------------------------------------------------------------------------------- /libs/docs/shared-pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/shared-pages/index.ts -------------------------------------------------------------------------------- /libs/docs/shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/shared/README.md -------------------------------------------------------------------------------- /libs/docs/shared/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/shared/project.json -------------------------------------------------------------------------------- /libs/docs/shared/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/shared/src/index.ts -------------------------------------------------------------------------------- /libs/docs/shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/docs/shared/tsconfig.json -------------------------------------------------------------------------------- /libs/docs/ui5-webcomponents-ai/index.ts: -------------------------------------------------------------------------------- 1 | export { ROUTES as default } from './docs-routes'; 2 | -------------------------------------------------------------------------------- /libs/docs/ui5-webcomponents-fiori/index.ts: -------------------------------------------------------------------------------- 1 | export { ROUTES as default } from './docs-routes'; 2 | -------------------------------------------------------------------------------- /libs/docs/ui5-webcomponents/index.ts: -------------------------------------------------------------------------------- 1 | export { ROUTES as default } from './docs-routes'; 2 | -------------------------------------------------------------------------------- /libs/i18n/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/i18n/CHANGELOG.md -------------------------------------------------------------------------------- /libs/i18n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/i18n/README.md -------------------------------------------------------------------------------- /libs/i18n/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/i18n/eslint.config.js -------------------------------------------------------------------------------- /libs/i18n/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/i18n/jest.config.ts -------------------------------------------------------------------------------- /libs/i18n/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/i18n/ng-package.json -------------------------------------------------------------------------------- /libs/i18n/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/i18n/package.json -------------------------------------------------------------------------------- /libs/i18n/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/i18n/project.json -------------------------------------------------------------------------------- /libs/i18n/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/i18n/src/index.ts -------------------------------------------------------------------------------- /libs/i18n/src/lib/directives/index.ts: -------------------------------------------------------------------------------- 1 | export * from './patch-language.directive'; 2 | -------------------------------------------------------------------------------- /libs/i18n/src/lib/pipes/index.ts: -------------------------------------------------------------------------------- 1 | export * from './fd-translate.pipe'; 2 | -------------------------------------------------------------------------------- /libs/i18n/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/i18n/src/test-setup.ts -------------------------------------------------------------------------------- /libs/i18n/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/i18n/tsconfig.json -------------------------------------------------------------------------------- /libs/i18n/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/i18n/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/i18n/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/i18n/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/moment-adapter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/moment-adapter/README.md -------------------------------------------------------------------------------- /libs/nx-plugin/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/nx-plugin/CHANGELOG.md -------------------------------------------------------------------------------- /libs/nx-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/nx-plugin/README.md -------------------------------------------------------------------------------- /libs/nx-plugin/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/nx-plugin/eslint.config.js -------------------------------------------------------------------------------- /libs/nx-plugin/executors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/nx-plugin/executors.json -------------------------------------------------------------------------------- /libs/nx-plugin/generators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/nx-plugin/generators.json -------------------------------------------------------------------------------- /libs/nx-plugin/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/nx-plugin/jest.config.ts -------------------------------------------------------------------------------- /libs/nx-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/nx-plugin/package.json -------------------------------------------------------------------------------- /libs/nx-plugin/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/nx-plugin/project.json -------------------------------------------------------------------------------- /libs/nx-plugin/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/nx-plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/nx-plugin/tsconfig.json -------------------------------------------------------------------------------- /libs/platform/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/CHANGELOG.md -------------------------------------------------------------------------------- /libs/platform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/README.md -------------------------------------------------------------------------------- /libs/platform/button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/button/index.ts -------------------------------------------------------------------------------- /libs/platform/button/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/button/tokens.ts -------------------------------------------------------------------------------- /libs/platform/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/eslint.config.js -------------------------------------------------------------------------------- /libs/platform/feed-input/feed-input.component.scss: -------------------------------------------------------------------------------- 1 | @import 'fundamental-styles/dist/feed-input.css'; 2 | -------------------------------------------------------------------------------- /libs/platform/form/form.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/form/form.spec.ts -------------------------------------------------------------------------------- /libs/platform/form/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/form/helpers.ts -------------------------------------------------------------------------------- /libs/platform/form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/form/index.ts -------------------------------------------------------------------------------- /libs/platform/form/input-group/input-group.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/platform/form/input/input.component.scss: -------------------------------------------------------------------------------- 1 | .fd-input { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /libs/platform/form/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/form/project.json -------------------------------------------------------------------------------- /libs/platform/form/switch/switch/index.ts: -------------------------------------------------------------------------------- 1 | export * from './switch.component'; 2 | -------------------------------------------------------------------------------- /libs/platform/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/index.ts -------------------------------------------------------------------------------- /libs/platform/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/jest.config.ts -------------------------------------------------------------------------------- /libs/platform/link/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/link/index.ts -------------------------------------------------------------------------------- /libs/platform/link/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/link/project.json -------------------------------------------------------------------------------- /libs/platform/list/free-content-list-item/free-content-list-item.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/platform/list/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/list/index.ts -------------------------------------------------------------------------------- /libs/platform/list/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/list/project.json -------------------------------------------------------------------------------- /libs/platform/menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/menu/index.ts -------------------------------------------------------------------------------- /libs/platform/menu/menu-item.component.scss: -------------------------------------------------------------------------------- 1 | @import 'fundamental-styles/dist/menu.css'; 2 | -------------------------------------------------------------------------------- /libs/platform/menu/menu.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/menu/menu.spec.ts -------------------------------------------------------------------------------- /libs/platform/menu/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/menu/project.json -------------------------------------------------------------------------------- /libs/platform/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/ng-package.json -------------------------------------------------------------------------------- /libs/platform/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/package.json -------------------------------------------------------------------------------- /libs/platform/page-footer/page-footer.component.scss: -------------------------------------------------------------------------------- 1 | @import 'fundamental-styles/dist/page-footer.css'; 2 | -------------------------------------------------------------------------------- /libs/platform/panel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/panel/index.ts -------------------------------------------------------------------------------- /libs/platform/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/project.json -------------------------------------------------------------------------------- /libs/platform/schematics/ng-add/schema.ts: -------------------------------------------------------------------------------- 1 | export interface Schema { 2 | project: string; 3 | } 4 | -------------------------------------------------------------------------------- /libs/platform/shared/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/shared/base.ts -------------------------------------------------------------------------------- /libs/platform/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/shared/index.ts -------------------------------------------------------------------------------- /libs/platform/shared/pipes/convert-bytes/index.ts: -------------------------------------------------------------------------------- 1 | export * from './convert-bytes.pipe'; 2 | -------------------------------------------------------------------------------- /libs/platform/shared/testing/public_api.ts: -------------------------------------------------------------------------------- 1 | export * from './event-objects'; 2 | -------------------------------------------------------------------------------- /libs/platform/shared/utils/public_api.ts: -------------------------------------------------------------------------------- 1 | export * from './lang'; 2 | -------------------------------------------------------------------------------- /libs/platform/slider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/slider/index.ts -------------------------------------------------------------------------------- /libs/platform/table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/table/index.ts -------------------------------------------------------------------------------- /libs/platform/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/test-setup.ts -------------------------------------------------------------------------------- /libs/platform/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/tsconfig.json -------------------------------------------------------------------------------- /libs/platform/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/platform/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/platform/value-help-dialog/constans/variables.ts: -------------------------------------------------------------------------------- 1 | export const MAX_CHARACTER_HINT_COUNT = 7; 2 | -------------------------------------------------------------------------------- /libs/ui5-webcomponents-base/index.ts: -------------------------------------------------------------------------------- 1 | export * from './types'; 2 | -------------------------------------------------------------------------------- /libs/webc-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/libs/webc-generator/README.md -------------------------------------------------------------------------------- /libs/webc-generator/src/executors/generate/utils/ng-package.json: -------------------------------------------------------------------------------- 1 | { "lib": { "entryFile": "./index.ts" } } 2 | -------------------------------------------------------------------------------- /libs/webc-generator/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/metadata.yaml -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/netlify.toml -------------------------------------------------------------------------------- /ngx-fundamental.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/ngx-fundamental.iml -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/package.json -------------------------------------------------------------------------------- /scripts/release-hotfix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/scripts/release-hotfix.js -------------------------------------------------------------------------------- /scripts/reset-placeholders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/scripts/reset-placeholders.js -------------------------------------------------------------------------------- /translation_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/translation_v2.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/versions.json -------------------------------------------------------------------------------- /wdio.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/wdio.conf.js -------------------------------------------------------------------------------- /wdio_docs.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/wdio_docs.conf.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/fundamental-ngx/HEAD/yarn.lock --------------------------------------------------------------------------------