@quadrel-enterprise-ui/framework 1.0.0 → 18.19.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/global-vars.json +18 -0
- package/esm2022/lib/button/__mocks__/mock-button-grid.component.mjs +14 -0
- package/esm2022/lib/button/__mocks__/mock-button-stack-button.component.mjs +21 -0
- package/esm2022/lib/button/__mocks__/mock-button-stack.component.mjs +14 -0
- package/esm2022/lib/button/__mocks__/mock-button.component.mjs +30 -0
- package/esm2022/lib/button/__mocks__/mock-button.directives.mjs +19 -0
- package/esm2022/lib/button/__mocks__/mock-button.module.mjs +52 -0
- package/esm2022/lib/button/__mocks__/mock-icon-button.component.mjs +17 -0
- package/esm2022/lib/button/button/additional-info/button-additional-info.component.mjs +48 -0
- package/esm2022/lib/button/button/button.component.mjs +98 -0
- package/esm2022/lib/button/button-grid/button-grid.component.mjs +16 -0
- package/esm2022/lib/button/button-stack/button-stack-button/button-stack-button.component.mjs +46 -0
- package/esm2022/lib/button/button-stack/button-stack-container/button-stack.component.mjs +39 -0
- package/esm2022/lib/button/button.module.mjs +89 -0
- package/esm2022/lib/button/directives/button.directives.mjs +40 -0
- package/esm2022/lib/button/icon-button/icon-button.component.mjs +51 -0
- package/esm2022/lib/button/menu-button/menu-button.component.mjs +95 -0
- package/esm2022/lib/button/model/button-config.mjs +2 -0
- package/esm2022/lib/button/model/button.types.mjs +2 -0
- package/esm2022/lib/chips/__mocks__/mock-chip.component.mjs +42 -0
- package/esm2022/lib/chips/__mocks__/mock-chips.module.mjs +19 -0
- package/esm2022/lib/chips/chip/chip.component.mjs +79 -0
- package/esm2022/lib/chips/chips.module.mjs +20 -0
- package/esm2022/lib/chips/interfaces/chip.interface.mjs +2 -0
- package/esm2022/lib/comments/add-comment/add-comment-dialog.component.mjs +138 -0
- package/esm2022/lib/comments/comments.component.mjs +73 -0
- package/esm2022/lib/comments/comments.module.mjs +60 -0
- package/esm2022/lib/comments/menu/comment-menu.component.mjs +19 -0
- package/esm2022/lib/comments/model/comments.interface.mjs +2 -0
- package/esm2022/lib/comments/pipes/stripe-html.pipe.mjs +18 -0
- package/esm2022/lib/contact-card/__mocks__/mock-contact-card.component.mjs +19 -0
- package/esm2022/lib/contact-card/__mocks__/mock-contact-card.module.mjs +19 -0
- package/esm2022/lib/contact-card/contact-card.component.mjs +285 -0
- package/esm2022/lib/contact-card/contact-card.module.mjs +25 -0
- package/esm2022/lib/contact-card/menu/contact-card-menu.component.mjs +80 -0
- package/esm2022/lib/contact-card/model/contact-card-actions-config.interface.mjs +2 -0
- package/esm2022/lib/contact-card/model/contact-data.interface.mjs +2 -0
- package/esm2022/lib/container/__mocks__/mock-action-footer.component.mjs +14 -0
- package/esm2022/lib/container/__mocks__/mock-container-create-content.component.mjs +22 -0
- package/esm2022/lib/container/__mocks__/mock-container-create-default.component.mjs +18 -0
- package/esm2022/lib/container/__mocks__/mock-container-section.component.mjs +18 -0
- package/esm2022/lib/container/__mocks__/mock-container-toolbar-action.component.mjs +41 -0
- package/esm2022/lib/container/__mocks__/mock-container-toolbar-filter.component.mjs +14 -0
- package/esm2022/lib/container/__mocks__/mock-container-toolbar-title.component.mjs +14 -0
- package/esm2022/lib/container/__mocks__/mock-container-toolbar.component.mjs +17 -0
- package/esm2022/lib/container/__mocks__/mock-container.component.mjs +40 -0
- package/esm2022/lib/container/__mocks__/mock-container.module.mjs +85 -0
- package/esm2022/lib/container/__mocks__/mock-create-delete-alert.component.mjs +20 -0
- package/esm2022/lib/container/__mocks__/mock-form-group.component.mjs +39 -0
- package/esm2022/lib/container/container.component.mjs +217 -0
- package/esm2022/lib/container/container.module.mjs +64 -0
- package/esm2022/lib/container/model/container-type.mjs +2 -0
- package/esm2022/lib/container/model/toolbar.interface.mjs +2 -0
- package/esm2022/lib/container/section/container-section.component.mjs +41 -0
- package/esm2022/lib/container/section/header/container-section-header.component.mjs +16 -0
- package/esm2022/lib/container/section/info/container-section-info.component.mjs +14 -0
- package/esm2022/lib/container/services/container-action.service.mjs +19 -0
- package/esm2022/lib/container/services/container-layout.service.mjs +33 -0
- package/esm2022/lib/container/toolbar/action/container-toolbar-action.component.mjs +107 -0
- package/esm2022/lib/container/toolbar/container-toolbar.component.mjs +76 -0
- package/esm2022/lib/container/toolbar/filter/container-toolbar-filter.component.mjs +17 -0
- package/esm2022/lib/container/toolbar/title/container-toolbar-title.component.mjs +16 -0
- package/esm2022/lib/content-grid/__mocks__/mock-content-grid-column.mjs +14 -0
- package/esm2022/lib/content-grid/__mocks__/mock-content-grid-row.mjs +14 -0
- package/esm2022/lib/content-grid/__mocks__/mock-content-grid.mjs +14 -0
- package/esm2022/lib/content-grid/__mocks__/mock-content-grid.module.mjs +19 -0
- package/esm2022/lib/content-grid/content-grid/content-grid.component.mjs +31 -0
- package/esm2022/lib/content-grid/content-grid-column/content-grid-column.component.mjs +17 -0
- package/esm2022/lib/content-grid/content-grid-row/content-grid-row.component.mjs +18 -0
- package/esm2022/lib/content-grid/content-grid.module.mjs +21 -0
- package/esm2022/lib/core/__mocks__/mock-breakpoint.service.mjs +8 -0
- package/esm2022/lib/core/__mocks__/mock-core.module.mjs +42 -0
- package/esm2022/lib/core/__mocks__/mock-disabled.directive.mjs +14 -0
- package/esm2022/lib/core/__mocks__/mock-popover-on-click.directive.mjs +107 -0
- package/esm2022/lib/core/__mocks__/mock-rwd-disabled.directive.mjs +14 -0
- package/esm2022/lib/core/__mocks__/mock-translate.pipe.mjs +14 -0
- package/esm2022/lib/core/__mocks__/mock-visually-hidden.directive.mjs +14 -0
- package/esm2022/lib/core/autofocus/autofocus.directive.mjs +42 -0
- package/esm2022/lib/core/autofocus/autofocus.module.mjs +18 -0
- package/esm2022/lib/core/autofocus/autofocus.service.mjs +20 -0
- package/esm2022/lib/core/breadcrumbs/breadcrumbs.component.mjs +154 -0
- package/esm2022/lib/core/breadcrumbs/breadcrumbs.module.mjs +21 -0
- package/esm2022/lib/core/breadcrumbs/model/breadcrumbs.interface.mjs +2 -0
- package/esm2022/lib/core/breadcrumbs/services/breadcrumbs.service.mjs +61 -0
- package/esm2022/lib/core/breadcrumbs/services/dialog-breadcrumbs.service.mjs +15 -0
- package/esm2022/lib/core/core.module.mjs +54 -0
- package/esm2022/lib/core/data-facets/blank/data-facets-blank.component.mjs +34 -0
- package/esm2022/lib/core/data-facets/boolean/data-facets-boolean.component.mjs +23 -0
- package/esm2022/lib/core/data-facets/chip/data-facets-chip.component.mjs +63 -0
- package/esm2022/lib/core/data-facets/chip/data-facets-chip.interfaces.mjs +2 -0
- package/esm2022/lib/core/data-facets/chip/truncated-indicator/data-facets-chip-truncated-indicator.component.mjs +98 -0
- package/esm2022/lib/core/data-facets/chip/truncated-tooltip/data-facets-chip-truncated-tooltip.component.mjs +139 -0
- package/esm2022/lib/core/data-facets/currency/data-facets-currency.component.mjs +71 -0
- package/esm2022/lib/core/data-facets/currency/data-facets-currency.interfaces.mjs +2 -0
- package/esm2022/lib/core/data-facets/data-facets-context.service.mjs +17 -0
- package/esm2022/lib/core/data-facets/data-facets.model.mjs +34 -0
- package/esm2022/lib/core/data-facets/data-facets.module.mjs +62 -0
- package/esm2022/lib/core/data-facets/date/data-facets-date.component.mjs +98 -0
- package/esm2022/lib/core/data-facets/date/data-facets-date.interfaces.mjs +2 -0
- package/esm2022/lib/core/data-facets/icon/data-facets-icon.component.mjs +24 -0
- package/esm2022/lib/core/data-facets/integer/data-facets-integer.component.mjs +22 -0
- package/esm2022/lib/core/data-facets/link/data-facets-link.component.mjs +70 -0
- package/esm2022/lib/core/data-facets/link/data-facets-link.interfaces.mjs +2 -0
- package/esm2022/lib/core/data-facets/progress/data-facets-progress.component.mjs +34 -0
- package/esm2022/lib/core/data-facets/status/data-facets-status.component.mjs +24 -0
- package/esm2022/lib/core/data-facets/status/data-facets-status.interfaces.mjs +2 -0
- package/esm2022/lib/core/data-facets/text/data-facets-text.component.mjs +49 -0
- package/esm2022/lib/core/data-facets/text/data-facets-text.interfaces.mjs +2 -0
- package/esm2022/lib/core/disabled/disabled.directive.mjs +14 -0
- package/esm2022/lib/core/focusable/focusable.directive.mjs +27 -0
- package/esm2022/lib/core/focusable/focusable.mjs +2 -0
- package/esm2022/lib/core/focusable/focusable.module.mjs +16 -0
- package/esm2022/lib/core/focusable/focusable.token.mjs +6 -0
- package/esm2022/lib/core/model/app-enviroment.interface.mjs +2 -0
- package/esm2022/lib/core/model/app-enviroment.token.mjs +3 -0
- package/esm2022/lib/core/model/breakpoint.interface.mjs +3 -0
- package/esm2022/lib/core/model/translation.interface.mjs +2 -0
- package/esm2022/lib/core/pipes/file-size.pipe.mjs +41 -0
- package/esm2022/lib/core/pipes/placeholder.pipe.mjs +17 -0
- package/esm2022/lib/core/pipes/placeholders.pipe.mjs +20 -0
- package/esm2022/lib/core/pipes/sanitize-html.pipe.mjs +20 -0
- package/esm2022/lib/core/popover/popover/popover.component.mjs +52 -0
- package/esm2022/lib/core/popover/popover-on-click/popover-on-click.directive.mjs +261 -0
- package/esm2022/lib/core/popover/popover-on-hover/popover-on-hover.directive.mjs +91 -0
- package/esm2022/lib/core/popover/popover-parent.service.mjs +11 -0
- package/esm2022/lib/core/popover/popover-sizing.service.mjs +163 -0
- package/esm2022/lib/core/popover/popover-top-first.token.mjs +3 -0
- package/esm2022/lib/core/popover/popover.module.mjs +22 -0
- package/esm2022/lib/core/popover/popover.service.mjs +18 -0
- package/esm2022/lib/core/projection-guard/projection-guard.component.mjs +33 -0
- package/esm2022/lib/core/rwd-disabled/rwd-disabled.directive.mjs +14 -0
- package/esm2022/lib/core/rxjs/delay-and-hold.operator.mjs +52 -0
- package/esm2022/lib/core/services/breakpoint.service.mjs +34 -0
- package/esm2022/lib/core/services/element.service.mjs +16 -0
- package/esm2022/lib/core/services/event-broker.service.mjs +76 -0
- package/esm2022/lib/core/services/push-events.service.mjs +153 -0
- package/esm2022/lib/core/services/scrolling.service.mjs +47 -0
- package/esm2022/lib/core/services/translate.service.mjs +48 -0
- package/esm2022/lib/core/tools/constantCase.tools.mjs +3 -0
- package/esm2022/lib/core/tools/convertPxToRem.tools.mjs +3 -0
- package/esm2022/lib/core/tooltip/model/tooltip-content.interface.mjs +2 -0
- package/esm2022/lib/core/tooltip/tooltip/tooltip.component.mjs +15 -0
- package/esm2022/lib/core/tooltip/tooltip-at-intersection/tooltip-at-intersection.directive.mjs +115 -0
- package/esm2022/lib/core/tooltip/tooltip-on-tap-hover/tooltip-on-click.directive.mjs +101 -0
- package/esm2022/lib/core/tooltip/tooltip.module.mjs +21 -0
- package/esm2022/lib/core/types/utility.types.mjs +2 -0
- package/esm2022/lib/core/visually-hidden/visually-hidden.directive.mjs +14 -0
- package/esm2022/lib/dialog/action/dialog-action.component.mjs +11 -0
- package/esm2022/lib/dialog/auth-session-end/dialog-auth-session-end.component.mjs +33 -0
- package/esm2022/lib/dialog/confirmation/dialog-confirmation.component.mjs +227 -0
- package/esm2022/lib/dialog/dialog.component.mjs +100 -0
- package/esm2022/lib/dialog/dialog.module.mjs +106 -0
- package/esm2022/lib/dialog/models/confirmation.model.mjs +6 -0
- package/esm2022/lib/dialog/models/dialog-config.model.mjs +10 -0
- package/esm2022/lib/dialog/models/record-stepper.model.mjs +2 -0
- package/esm2022/lib/dialog/models/session-end-result.model.mjs +2 -0
- package/esm2022/lib/dialog/page-dialog-with-breadcrumbs/page-dialog-with-breadcrumbs.component.mjs +14 -0
- package/esm2022/lib/dialog/record-stepper/dialog-record-stepper.component.mjs +80 -0
- package/esm2022/lib/dialog/services/dialog-auth-session-end.service.mjs +38 -0
- package/esm2022/lib/dialog/services/dialog.service.mjs +128 -0
- package/esm2022/lib/file-collector/__mocks__/mock-file-collector-dialog-item-error.component.mjs +19 -0
- package/esm2022/lib/file-collector/__mocks__/mock-file-collector-dialog-item-progress.component.mjs +21 -0
- package/esm2022/lib/file-collector/__mocks__/mock-file-collector-dialog-item.component.mjs +25 -0
- package/esm2022/lib/file-collector/__mocks__/mock-file-collector-item-name.component.mjs +18 -0
- package/esm2022/lib/file-collector/__mocks__/mock-file-collector-item-size.component.mjs +18 -0
- package/esm2022/lib/file-collector/__mocks__/mock-file-collector-item-tools.component.mjs +34 -0
- package/esm2022/lib/file-collector/__mocks__/mock-file-collector-item.component.mjs +40 -0
- package/esm2022/lib/file-collector/__mocks__/mock-file-collector.component.mjs +14 -0
- package/esm2022/lib/file-collector/__mocks__/mock-file-collector.module.mjs +42 -0
- package/esm2022/lib/file-collector/allowed-files-description/file-collector-allowed-files-description.component.mjs +34 -0
- package/esm2022/lib/file-collector/dialog/file-collector-dialog.component.mjs +47 -0
- package/esm2022/lib/file-collector/dialog/item/error/file-collector-dialog-item-error.component.mjs +39 -0
- package/esm2022/lib/file-collector/dialog/item/file-collector-dialog-item.component.mjs +41 -0
- package/esm2022/lib/file-collector/dialog/item/progress/file-collector-dialog-item-progress.component.mjs +64 -0
- package/esm2022/lib/file-collector/file-collector.component.mjs +256 -0
- package/esm2022/lib/file-collector/file-collector.module.mjs +95 -0
- package/esm2022/lib/file-collector/file-delete-dialog/file-delete-dialog.component.mjs +35 -0
- package/esm2022/lib/file-collector/item/file-collector-item.component.mjs +44 -0
- package/esm2022/lib/file-collector/item/name/file-collector-item-name.component.mjs +15 -0
- package/esm2022/lib/file-collector/item/size/file-collector-item-size.component.mjs +17 -0
- package/esm2022/lib/file-collector/item/tools/file-collector-item-tools.component.mjs +79 -0
- package/esm2022/lib/file-collector/item/upload-timestamp/upload-timestamp.component.mjs +16 -0
- package/esm2022/lib/file-collector/models/collected-file.mjs +2 -0
- package/esm2022/lib/file-collector/models/file-collector-config.mjs +2 -0
- package/esm2022/lib/file-collector/models/file-manager-token.mjs +3 -0
- package/esm2022/lib/file-collector/models/file-manager.mjs +2 -0
- package/esm2022/lib/file-collector/models/file-type.mjs +2 -0
- package/esm2022/lib/file-collector/models/file-upload.mjs +9 -0
- package/esm2022/lib/file-collector/models/upload-progress.mjs +12 -0
- package/esm2022/lib/file-collector/pipes/filesize.pipe.mjs +40 -0
- package/esm2022/lib/file-collector/pipes/upload-timestamp.pipe.mjs +26 -0
- package/esm2022/lib/file-collector/services/file-collector-validation.service.mjs +36 -0
- package/esm2022/lib/file-collector/services/file-collector.service.mjs +86 -0
- package/esm2022/lib/file-collector/services/file-type.service.mjs +119 -0
- package/esm2022/lib/filter/__mocks__/mock-filter-category-boolean.mjs +31 -0
- package/esm2022/lib/filter/__mocks__/mock-filter-category-date-range.mjs +35 -0
- package/esm2022/lib/filter/__mocks__/mock-filter-category-date.mjs +35 -0
- package/esm2022/lib/filter/__mocks__/mock-filter-category-free-text.mjs +34 -0
- package/esm2022/lib/filter/__mocks__/mock-filter-category-select.mjs +31 -0
- package/esm2022/lib/filter/__mocks__/mock-filter-category.mjs +35 -0
- package/esm2022/lib/filter/__mocks__/mock-filter-item-boolean.mjs +37 -0
- package/esm2022/lib/filter/__mocks__/mock-filter-item-date-range.mjs +38 -0
- package/esm2022/lib/filter/__mocks__/mock-filter-item-date.mjs +38 -0
- package/esm2022/lib/filter/__mocks__/mock-filter-item-free-text.mjs +37 -0
- package/esm2022/lib/filter/__mocks__/mock-filter-item-multi-select.mjs +34 -0
- package/esm2022/lib/filter/__mocks__/mock-filter-item-single-select.mjs +34 -0
- package/esm2022/lib/filter/__mocks__/mock-filter.mjs +32 -0
- package/esm2022/lib/filter/__mocks__/mock-filter.module.mjs +89 -0
- package/esm2022/lib/filter/__mocks__/mock-filter.service.mjs +87 -0
- package/esm2022/lib/filter/__mocks__/mock-localeDate.pipe.mjs +15 -0
- package/esm2022/lib/filter/category/boolean/filter-category-boolean.component.mjs +36 -0
- package/esm2022/lib/filter/category/date/filter-category-date.component.mjs +62 -0
- package/esm2022/lib/filter/category/date-range/filter-category-date-range.component.mjs +75 -0
- package/esm2022/lib/filter/category/filter-category.component.mjs +110 -0
- package/esm2022/lib/filter/category/free-text/filter-category-free-text.component.mjs +61 -0
- package/esm2022/lib/filter/category/select/filter-category-select.component.mjs +129 -0
- package/esm2022/lib/filter/filter-service/filter.service.mjs +206 -0
- package/esm2022/lib/filter/filter.component.mjs +308 -0
- package/esm2022/lib/filter/filter.module.mjs +101 -0
- package/esm2022/lib/filter/helpers/filter-active-items.helper.mjs +26 -0
- package/esm2022/lib/filter/helpers/filter-active.helper.mjs +6 -0
- package/esm2022/lib/filter/helpers/filter-get.helper.mjs +18 -0
- package/esm2022/lib/filter/helpers/filter-postbody.helper.mjs +6 -0
- package/esm2022/lib/filter/helpers/filter-query-parser.helper.mjs +27 -0
- package/esm2022/lib/filter/helpers/filter-query.helper.mjs +39 -0
- package/esm2022/lib/filter/helpers/filter-selection-validator.helper.mjs +33 -0
- package/esm2022/lib/filter/helpers/filter-state.helpers.mjs +88 -0
- package/esm2022/lib/filter/helpers/filter-update.helper.mjs +84 -0
- package/esm2022/lib/filter/item/boolean/filter-item-boolean.component.mjs +62 -0
- package/esm2022/lib/filter/item/date/filter-item-date.component.mjs +68 -0
- package/esm2022/lib/filter/item/date-range/filter-item-date-range.component.mjs +107 -0
- package/esm2022/lib/filter/item/free-text/filter-item-free-text.component.mjs +82 -0
- package/esm2022/lib/filter/item/multi-select/filter-item-multi-select.component.mjs +62 -0
- package/esm2022/lib/filter/item/single-select/filter-item-single-select.component.mjs +72 -0
- package/esm2022/lib/filter/model/filter-config.interface.mjs +2 -0
- package/esm2022/lib/filter/model/filter-post-body.interface.mjs +2 -0
- package/esm2022/lib/filter/model/filter-reducer.interface.mjs +2 -0
- package/esm2022/lib/filter/model/filter-state.interface.mjs +2 -0
- package/esm2022/lib/filter/model/filter-types.interface.mjs +2 -0
- package/esm2022/lib/filter/pipes/localeDate.pipe.mjs +54 -0
- package/esm2022/lib/filter/services/dependent-filters.service.mjs +61 -0
- package/esm2022/lib/filter/services/filter-rest-param.tools.mjs +27 -0
- package/esm2022/lib/filter/services/filter-router-connector.service.mjs +111 -0
- package/esm2022/lib/filter/store/filter.actions.mjs +25 -0
- package/esm2022/lib/filter/store/filter.reducer.mjs +98 -0
- package/esm2022/lib/filter/store/filter.selector.mjs +38 -0
- package/esm2022/lib/forms/__mocks__/mock-calendar.component.mjs +31 -0
- package/esm2022/lib/forms/__mocks__/mock-checkbox-chips-item.component.mjs +23 -0
- package/esm2022/lib/forms/__mocks__/mock-checkbox-chips.component.mjs +32 -0
- package/esm2022/lib/forms/__mocks__/mock-checkbox.component.mjs +38 -0
- package/esm2022/lib/forms/__mocks__/mock-checkboxes.component.mjs +35 -0
- package/esm2022/lib/forms/__mocks__/mock-datepicker.component.mjs +34 -0
- package/esm2022/lib/forms/__mocks__/mock-dropdown.component.mjs +44 -0
- package/esm2022/lib/forms/__mocks__/mock-filter-form-items.component.mjs +27 -0
- package/esm2022/lib/forms/__mocks__/mock-form-error.component.mjs +19 -0
- package/esm2022/lib/forms/__mocks__/mock-form-group-error.component.mjs +22 -0
- package/esm2022/lib/forms/__mocks__/mock-form-hint.component.mjs +31 -0
- package/esm2022/lib/forms/__mocks__/mock-form-label.component.mjs +39 -0
- package/esm2022/lib/forms/__mocks__/mock-form-readonly.component.mjs +26 -0
- package/esm2022/lib/forms/__mocks__/mock-form-viewonly.component.mjs +26 -0
- package/esm2022/lib/forms/__mocks__/mock-forms.module.mjs +118 -0
- package/esm2022/lib/forms/__mocks__/mock-input.component.mjs +95 -0
- package/esm2022/lib/forms/__mocks__/mock-pin-code.component.mjs +76 -0
- package/esm2022/lib/forms/__mocks__/mock-radio-buttons.component.mjs +38 -0
- package/esm2022/lib/forms/__mocks__/mock-switch.component.mjs +56 -0
- package/esm2022/lib/forms/__mocks__/mock-switches.component.mjs +54 -0
- package/esm2022/lib/forms/__mocks__/mock-textarea.component.mjs +50 -0
- package/esm2022/lib/forms/checkbox-chips/checkbox-chips.component.mjs +250 -0
- package/esm2022/lib/forms/checkbox-chips/item/checkbox-chips-item.component.mjs +34 -0
- package/esm2022/lib/forms/checkbox-chips/services/checkbox-chips.service.mjs +33 -0
- package/esm2022/lib/forms/checkboxes/checkbox/checkbox.component.mjs +93 -0
- package/esm2022/lib/forms/checkboxes/checkboxes-service/checkboxes.service.mjs +106 -0
- package/esm2022/lib/forms/checkboxes/checkboxes.component.mjs +354 -0
- package/esm2022/lib/forms/datepicker/adapter/date-adapter.mjs +116 -0
- package/esm2022/lib/forms/datepicker/calendar/calendar.component.mjs +186 -0
- package/esm2022/lib/forms/datepicker/datepicker.component.mjs +490 -0
- package/esm2022/lib/forms/datepicker/service/timepicker.service.mjs +68 -0
- package/esm2022/lib/forms/dropdown/dropdown.component.mjs +491 -0
- package/esm2022/lib/forms/dropdown/options/dropdown-options.component.mjs +90 -0
- package/esm2022/lib/forms/file-upload/file-upload.component.mjs +333 -0
- package/esm2022/lib/forms/file-upload/model/file-upload.model.mjs +46 -0
- package/esm2022/lib/forms/file-upload/services/file-upload.service.mjs +61 -0
- package/esm2022/lib/forms/forms/forms.component.mjs +16 -0
- package/esm2022/lib/forms/input/helpers/get-value-with-unit.mjs +22 -0
- package/esm2022/lib/forms/input/input.component.mjs +601 -0
- package/esm2022/lib/forms/input/options/input-options.component.mjs +64 -0
- package/esm2022/lib/forms/input/options/input-options.directive.mjs +281 -0
- package/esm2022/lib/forms/input/units/input-units.component.mjs +62 -0
- package/esm2022/lib/forms/model/datepicker.mjs +7 -0
- package/esm2022/lib/forms/model/form-options-resolver.mjs +22 -0
- package/esm2022/lib/forms/model/forms.interface.mjs +2 -0
- package/esm2022/lib/forms/model/options.interface.mjs +2 -0
- package/esm2022/lib/forms/model/radio-buttons.mjs +2 -0
- package/esm2022/lib/forms/multi-input/interfaces/multi-input-chip.interface.mjs +2 -0
- package/esm2022/lib/forms/multi-input/multi-input-chip/multi-input-chip.component.mjs +95 -0
- package/esm2022/lib/forms/multi-input/multi-input-menu/multi-input-menu.component.mjs +83 -0
- package/esm2022/lib/forms/multi-input/multi-input-service/multi-input.service.mjs +102 -0
- package/esm2022/lib/forms/multi-input/multi-input.component.mjs +540 -0
- package/esm2022/lib/forms/pin-code/pin-code-service/pin-code.service.mjs +90 -0
- package/esm2022/lib/forms/pin-code/pin-code.component.mjs +454 -0
- package/esm2022/lib/forms/qd-form.module.mjs +189 -0
- package/esm2022/lib/forms/radio-buttons/radio-buttons-service/radio-buttons.service.mjs +45 -0
- package/esm2022/lib/forms/radio-buttons/radio-buttons.component.mjs +326 -0
- package/esm2022/lib/forms/reactive-forms/controls/form-array-factory.service.mjs +72 -0
- package/esm2022/lib/forms/reactive-forms/controls/form-array.mjs +320 -0
- package/esm2022/lib/forms/reactive-forms/controls/form-builder.mjs +126 -0
- package/esm2022/lib/forms/reactive-forms/controls/form-control.mjs +61 -0
- package/esm2022/lib/forms/reactive-forms/controls/form-group.mjs +4 -0
- package/esm2022/lib/forms/richtext/richtext.component.mjs +214 -0
- package/esm2022/lib/forms/shared/components/filter-form-items/filter-form-items.component.mjs +34 -0
- package/esm2022/lib/forms/shared/components/form-error/form-error.component.mjs +48 -0
- package/esm2022/lib/forms/shared/components/form-hint/form-hint.component.mjs +40 -0
- package/esm2022/lib/forms/shared/components/form-input/form-input.component.mjs +43 -0
- package/esm2022/lib/forms/shared/components/form-label/form-label.component.mjs +59 -0
- package/esm2022/lib/forms/shared/components/form-readonly/form-readonly.component.mjs +45 -0
- package/esm2022/lib/forms/shared/components/form-viewonly/form-viewonly.component.mjs +50 -0
- package/esm2022/lib/forms/shared/helpers/forms-options.helpers.mjs +21 -0
- package/esm2022/lib/forms/shared/helpers/forms.helpers.mjs +87 -0
- package/esm2022/lib/forms/shared/helpers/has-validators.helpers.mjs +10 -0
- package/esm2022/lib/forms/shared/services/action-emitter.service.mjs +17 -0
- package/esm2022/lib/forms/shared/services/form-keyboard.service.mjs +52 -0
- package/esm2022/lib/forms/shared/services/form-options.service.mjs +102 -0
- package/esm2022/lib/forms/shared/services/options-resolver.registry.mjs +32 -0
- package/esm2022/lib/forms/shared/validators/validators.mjs +247 -0
- package/esm2022/lib/forms/switches/switch/switch.component.mjs +102 -0
- package/esm2022/lib/forms/switches/switches-service/switches.service.mjs +67 -0
- package/esm2022/lib/forms/switches/switches.component.mjs +300 -0
- package/esm2022/lib/forms/textarea/textarea.component.mjs +296 -0
- package/esm2022/lib/grid/__mocks__/mock-column.directive.mjs +17 -0
- package/esm2022/lib/grid/__mocks__/mock-columns.directive.mjs +26 -0
- package/esm2022/lib/grid/__mocks__/mock-grid.module.mjs +18 -0
- package/esm2022/lib/grid/directives/column-auto-fill.directive.mjs +54 -0
- package/esm2022/lib/grid/directives/column-break-before.directive.mjs +55 -0
- package/esm2022/lib/grid/directives/column-disable-responsive-colspans.directive.mjs +60 -0
- package/esm2022/lib/grid/directives/column-full-grid-width.directive.mjs +56 -0
- package/esm2022/lib/grid/directives/column-next-in-same-row.directive.mjs +79 -0
- package/esm2022/lib/grid/directives/column.directive.mjs +91 -0
- package/esm2022/lib/grid/directives/columns-disable-auto-fill.directive.mjs +55 -0
- package/esm2022/lib/grid/directives/columns-disable-responsive-colspans.directive.mjs +56 -0
- package/esm2022/lib/grid/directives/columns-max.directive.mjs +67 -0
- package/esm2022/lib/grid/directives/columns.directive.mjs +83 -0
- package/esm2022/lib/grid/grid.component.mjs +67 -0
- package/esm2022/lib/grid/grid.module.mjs +77 -0
- package/esm2022/lib/grid/model/grid-config.interface.mjs +2 -0
- package/esm2022/lib/grid/model/subgrid-config.interface.mjs +2 -0
- package/esm2022/lib/grid/services/grid-auto-fill.service.mjs +165 -0
- package/esm2022/lib/grid/services/grid.service.mjs +22 -0
- package/esm2022/lib/grid/subgrid/subgrid.component.mjs +77 -0
- package/esm2022/lib/helpers/html-plaintext.helper.mjs +11 -0
- package/esm2022/lib/helpers/language.helper.mjs +5 -0
- package/esm2022/lib/helpers/load-javascript-asset.helper.mjs +10 -0
- package/esm2022/lib/helpers/relative-time.helper.mjs +22 -0
- package/esm2022/lib/icon/__mocks__/mock-icon.component.mjs +36 -0
- package/esm2022/lib/icon/__mocks__/mock-icon.module.mjs +17 -0
- package/esm2022/lib/icon/custom-icons/logo.mjs +201 -0
- package/esm2022/lib/icon/icon/icon-definitions.mjs +287 -0
- package/esm2022/lib/icon/icon/icon.component.mjs +78 -0
- package/esm2022/lib/icon/icon.module.mjs +19 -0
- package/esm2022/lib/image/__mocks__/mock-image.component.mjs +30 -0
- package/esm2022/lib/image/__mocks__/mock-image.module.mjs +17 -0
- package/esm2022/lib/image/image/image.component.mjs +83 -0
- package/esm2022/lib/image/image.module.mjs +21 -0
- package/esm2022/lib/layout/__mocks__/mock-action-bar.component.mjs +37 -0
- package/esm2022/lib/layout/__mocks__/mock-active-content-tab.directive.mjs +18 -0
- package/esm2022/lib/layout/__mocks__/mock-button-enabled.directive.mjs +21 -0
- package/esm2022/lib/layout/__mocks__/mock-layout-container.component.mjs +14 -0
- package/esm2022/lib/layout/__mocks__/mock-layout-renderer.component.mjs +37 -0
- package/esm2022/lib/layout/__mocks__/mock-layout.module.mjs +97 -0
- package/esm2022/lib/layout/__mocks__/mock-page-process-header-title.component.mjs +14 -0
- package/esm2022/lib/layout/__mocks__/mock-page-process-header.component.mjs +66 -0
- package/esm2022/lib/layout/__mocks__/mock-page-title.component.mjs +16 -0
- package/esm2022/lib/layout/__mocks__/mock-panel-title.component.mjs +18 -0
- package/esm2022/lib/layout/__mocks__/mock-panel.component.mjs +24 -0
- package/esm2022/lib/layout/__mocks__/mock-truncated-text.directive.mjs +43 -0
- package/esm2022/lib/layout/action-bar/action-bar.component.mjs +78 -0
- package/esm2022/lib/layout/action-bar/button-enabled.directive.mjs +63 -0
- package/esm2022/lib/layout/container/container.component.mjs +153 -0
- package/esm2022/lib/layout/content/page-process-header/page-process-header/page-process-header.component.mjs +181 -0
- package/esm2022/lib/layout/content/page-process-header/page-process-header-title/page-process-header-title.component.mjs +17 -0
- package/esm2022/lib/layout/content/page-title/page-title.component.mjs +37 -0
- package/esm2022/lib/layout/directives/active-content-tab.directive.mjs +55 -0
- package/esm2022/lib/layout/directives/calculate-full-height.directive.mjs +57 -0
- package/esm2022/lib/layout/directives/viewport-adaptive.directive.mjs +25 -0
- package/esm2022/lib/layout/force-line-break/force-line-break.directive.mjs +17 -0
- package/esm2022/lib/layout/interfaces/process-list.mjs +2 -0
- package/esm2022/lib/layout/layout-renderer/layout-renderer.component.mjs +79 -0
- package/esm2022/lib/layout/layout.module.mjs +175 -0
- package/esm2022/lib/layout/modal-fullscreen-container/modal-fullscreen-container.component.mjs +157 -0
- package/esm2022/lib/layout/panel/container/panel.component.mjs +80 -0
- package/esm2022/lib/layout/panel/title/panel-title.component.mjs +50 -0
- package/esm2022/lib/layout/panel/types/panel-types.mjs +2 -0
- package/esm2022/lib/layout/service/layout.service.mjs +42 -0
- package/esm2022/lib/layout/service/panel.service.mjs +43 -0
- package/esm2022/lib/lists/__mocks__/mock-container-pairs-caption.component.mjs +14 -0
- package/esm2022/lib/lists/__mocks__/mock-container-pairs-container.component.mjs +14 -0
- package/esm2022/lib/lists/__mocks__/mock-container-pairs-header.component.mjs +14 -0
- package/esm2022/lib/lists/__mocks__/mock-container-pairs-item.component.mjs +14 -0
- package/esm2022/lib/lists/__mocks__/mock-container-pairs-value.component.mjs +14 -0
- package/esm2022/lib/lists/__mocks__/mock-list.module.mjs +86 -0
- package/esm2022/lib/lists/__mocks__/mock-status-error.component.mjs +14 -0
- package/esm2022/lib/lists/__mocks__/mock-status-pairs-caption.component.mjs +14 -0
- package/esm2022/lib/lists/__mocks__/mock-status-pairs-item.component.mjs +14 -0
- package/esm2022/lib/lists/__mocks__/mock-status-pairs-value.component.mjs +14 -0
- package/esm2022/lib/lists/__mocks__/mock-status-pairs.component.mjs +14 -0
- package/esm2022/lib/lists/__mocks__/mock-vertical-pairs-caption.component.mjs +18 -0
- package/esm2022/lib/lists/__mocks__/mock-vertical-pairs-item.component.mjs +14 -0
- package/esm2022/lib/lists/__mocks__/mock-vertical-pairs-value.component.mjs +18 -0
- package/esm2022/lib/lists/__mocks__/mock-vertical-pairs.component.mjs +14 -0
- package/esm2022/lib/lists/list.module.mjs +111 -0
- package/esm2022/lib/lists/model/list.interface.mjs +2 -0
- package/esm2022/lib/lists/pairs/container-pairs/container-pairs-caption/container-pairs-caption.component.mjs +16 -0
- package/esm2022/lib/lists/pairs/container-pairs/container-pairs-container/container-pairs-container.component.mjs +30 -0
- package/esm2022/lib/lists/pairs/container-pairs/container-pairs-header/container-pairs-header.component.mjs +16 -0
- package/esm2022/lib/lists/pairs/container-pairs/container-pairs-item/container-pairs-item.component.mjs +17 -0
- package/esm2022/lib/lists/pairs/container-pairs/container-pairs-value/container-pairs-value.component.mjs +16 -0
- package/esm2022/lib/lists/pairs/horizontal-pairs/horizontal-pairs-caption/horizontal-pairs-caption.component.mjs +16 -0
- package/esm2022/lib/lists/pairs/horizontal-pairs/horizontal-pairs-container/horizontal-pairs.component.mjs +41 -0
- package/esm2022/lib/lists/pairs/horizontal-pairs/horizontal-pairs-item/horizontal-pairs-item.component.mjs +17 -0
- package/esm2022/lib/lists/pairs/horizontal-pairs/horizontal-pairs-value/horizontal-pairs-value.component.mjs +16 -0
- package/esm2022/lib/lists/pairs/status-pairs/status-pairs-caption/status-pairs-caption.component.mjs +16 -0
- package/esm2022/lib/lists/pairs/status-pairs/status-pairs-container/status-pairs.component.mjs +65 -0
- package/esm2022/lib/lists/pairs/status-pairs/status-pairs-error/status-pairs-error.component.mjs +29 -0
- package/esm2022/lib/lists/pairs/status-pairs/status-pairs-item/status-pairs-item.component.mjs +29 -0
- package/esm2022/lib/lists/pairs/status-pairs/status-pairs-value/status-pairs-value.component.mjs +16 -0
- package/esm2022/lib/lists/pairs/vertical-pairs/vertical-pairs-caption/vertical-pairs-caption.component.mjs +16 -0
- package/esm2022/lib/lists/pairs/vertical-pairs/vertical-pairs-container/vertical-pairs.component.mjs +41 -0
- package/esm2022/lib/lists/pairs/vertical-pairs/vertical-pairs-item/vertical-pairs-item.component.mjs +27 -0
- package/esm2022/lib/lists/pairs/vertical-pairs/vertical-pairs-value/vertical-pairs-value.component.mjs +16 -0
- package/esm2022/lib/master-layout/__mocks__/mock-header-widget.component.mjs +45 -0
- package/esm2022/lib/master-layout/__mocks__/mock-master-layout-banner.component.mjs +14 -0
- package/esm2022/lib/master-layout/__mocks__/mock-master-layout-footer.component.mjs +14 -0
- package/esm2022/lib/master-layout/__mocks__/mock-master-layout-header.component.mjs +43 -0
- package/esm2022/lib/master-layout/__mocks__/mock-master-layout.component.mjs +27 -0
- package/esm2022/lib/master-layout/__mocks__/mock-master-layout.module.mjs +43 -0
- package/esm2022/lib/master-layout/header-widget/header-widget.component.mjs +164 -0
- package/esm2022/lib/master-layout/master-layout/master-layout.component.mjs +132 -0
- package/esm2022/lib/master-layout/master-layout-banner/master-layout-banner.component.mjs +47 -0
- package/esm2022/lib/master-layout/master-layout-footer/master-layout-footer.component.mjs +20 -0
- package/esm2022/lib/master-layout/master-layout-header/master-layout-header.component.mjs +98 -0
- package/esm2022/lib/master-layout/master-layout.module.mjs +82 -0
- package/esm2022/lib/master-layout/model/page-level.mjs +7 -0
- package/esm2022/lib/master-layout/model/service-navigation.mjs +2 -0
- package/esm2022/lib/master-layout/service/language-from-url.service.mjs +63 -0
- package/esm2022/lib/master-layout/service/master-layout.service.mjs +43 -0
- package/esm2022/lib/master-layout/service-navigation/service-navigation.component.mjs +21 -0
- package/esm2022/lib/navigation/stepper/__mocks__/mock-step-action.component.mjs +49 -0
- package/esm2022/lib/navigation/stepper/__mocks__/mock-step-item.component.mjs +53 -0
- package/esm2022/lib/navigation/stepper/__mocks__/mock-step.component.mjs +50 -0
- package/esm2022/lib/navigation/stepper/__mocks__/mock-stepper.component.mjs +25 -0
- package/esm2022/lib/navigation/stepper/__mocks__/mock-stepper.module.mjs +22 -0
- package/esm2022/lib/navigation/stepper/interfaces/stepper.mjs +2 -0
- package/esm2022/lib/navigation/stepper/step/step.component.mjs +182 -0
- package/esm2022/lib/navigation/stepper/step-action/step-action.component.mjs +73 -0
- package/esm2022/lib/navigation/stepper/step-item/step-item.component.mjs +108 -0
- package/esm2022/lib/navigation/stepper/stepper/stepper.component.mjs +368 -0
- package/esm2022/lib/navigation/stepper/stepper.module.mjs +27 -0
- package/esm2022/lib/navigation/tab-bar/__mocks__/mock-tab-bar.module.mjs +20 -0
- package/esm2022/lib/navigation/tab-bar/__mocks__/mock-tab-link.component.mjs +23 -0
- package/esm2022/lib/navigation/tab-bar/__mocks__/mock-tab-nav-bar.component.mjs +15 -0
- package/esm2022/lib/navigation/tab-bar/tab-bar.module.mjs +21 -0
- package/esm2022/lib/navigation/tab-bar/tab-link/tab-link.component.mjs +52 -0
- package/esm2022/lib/navigation/tab-bar/tab-nav-bar/tab-nav-bar.component.mjs +17 -0
- package/esm2022/lib/navigation/tabs/__mocks__/mock-tab-action.component.mjs +34 -0
- package/esm2022/lib/navigation/tabs/__mocks__/mock-tab-item.component.mjs +51 -0
- package/esm2022/lib/navigation/tabs/__mocks__/mock-tab-pending-tasks.component.mjs +29 -0
- package/esm2022/lib/navigation/tabs/__mocks__/mock-tab.component.mjs +54 -0
- package/esm2022/lib/navigation/tabs/__mocks__/mock-tabs-page-leave-handler.component.mjs +25 -0
- package/esm2022/lib/navigation/tabs/__mocks__/mock-tabs.component.mjs +43 -0
- package/esm2022/lib/navigation/tabs/__mocks__/mock-tabs.module.mjs +48 -0
- package/esm2022/lib/navigation/tabs/interfaces/tabs.interface.mjs +2 -0
- package/esm2022/lib/navigation/tabs/services/tabs.service.mjs +72 -0
- package/esm2022/lib/navigation/tabs/tab/tab.component.mjs +135 -0
- package/esm2022/lib/navigation/tabs/tab-action/tab-action.component.mjs +33 -0
- package/esm2022/lib/navigation/tabs/tab-item/tab-item.component.mjs +92 -0
- package/esm2022/lib/navigation/tabs/tab-pending-tasks/tab-pending-tasks.component.mjs +36 -0
- package/esm2022/lib/navigation/tabs/tabs/tabs.component.mjs +245 -0
- package/esm2022/lib/navigation/tabs/tabs.module.mjs +51 -0
- package/esm2022/lib/navigation-tiles/__mocks__/mock-navigation-tile.component.mjs +21 -0
- package/esm2022/lib/navigation-tiles/__mocks__/mock-navigation-tiles.component.mjs +14 -0
- package/esm2022/lib/navigation-tiles/__mocks__/mock-navigation-tiles.module.mjs +18 -0
- package/esm2022/lib/navigation-tiles/navigation-tile/navigation-tile.component.mjs +42 -0
- package/esm2022/lib/navigation-tiles/navigation-tiles/navigation-tiles.component.mjs +23 -0
- package/esm2022/lib/navigation-tiles/navigation-tiles.module.mjs +22 -0
- package/esm2022/lib/notifications/__mocks__/mock-notification.component.mjs +29 -0
- package/esm2022/lib/notifications/__mocks__/mock-notification.content.component.mjs +15 -0
- package/esm2022/lib/notifications/__mocks__/mock-notifications-service.service.mjs +32 -0
- package/esm2022/lib/notifications/__mocks__/mock-notifications.component.mjs +17 -0
- package/esm2022/lib/notifications/__mocks__/mock-notifications.module.mjs +24 -0
- package/esm2022/lib/notifications/directives/snackbar-listener.directive.mjs +70 -0
- package/esm2022/lib/notifications/interfaces/notifications.mjs +2 -0
- package/esm2022/lib/notifications/notification/notification.component.mjs +547 -0
- package/esm2022/lib/notifications/notification-content/notification-content.component.mjs +14 -0
- package/esm2022/lib/notifications/notifications/notifications.component.mjs +35 -0
- package/esm2022/lib/notifications/notifications.module.mjs +47 -0
- package/esm2022/lib/notifications/services/notifications-http-interceptor.service.mjs +111 -0
- package/esm2022/lib/notifications/services/notifications-service.service.mjs +122 -0
- package/esm2022/lib/notifications/services/os-notifications/desktop-notifications.service.mjs +85 -0
- package/esm2022/lib/notifications/services/os-notifications/os-notifications.service.mjs +29 -0
- package/esm2022/lib/notifications/services/snackbar.service.mjs +65 -0
- package/esm2022/lib/notifications/snackbar/snackbar.component.mjs +25 -0
- package/esm2022/lib/page/__mocks__/mock-page-footer.component.mjs +14 -0
- package/esm2022/lib/page/__mocks__/mock-page-header.component.mjs +14 -0
- package/esm2022/lib/page/__mocks__/mock-page.component.mjs +19 -0
- package/esm2022/lib/page/__mocks__/mock-page.module.mjs +21 -0
- package/esm2022/lib/page/cancel-confirmation-dialog/page-cancel-confirmation-dialog.component.mjs +38 -0
- package/esm2022/lib/page/control-panel/page-control-panel.component.mjs +55 -0
- package/esm2022/lib/page/footer/page-footer-custom-content.directive.mjs +25 -0
- package/esm2022/lib/page/footer/page-footer.component.mjs +30 -0
- package/esm2022/lib/page/info-banner/page-info-banner.component.mjs +124 -0
- package/esm2022/lib/page/model/page-config.interface.mjs +2 -0
- package/esm2022/lib/page/model/page-control-panel-config.interface.mjs +2 -0
- package/esm2022/lib/page/model/page-footer-action.interface.mjs +9 -0
- package/esm2022/lib/page/model/page-header-facet.interface.mjs +2 -0
- package/esm2022/lib/page/model/page-info-banner.interface.mjs +2 -0
- package/esm2022/lib/page/model/page-object-resolver.mjs +6 -0
- package/esm2022/lib/page/object-header/context-select-dialog/context-select-dialog.component.mjs +95 -0
- package/esm2022/lib/page/object-header/dynamic-facet/dynamic-facet.component.mjs +53 -0
- package/esm2022/lib/page/object-header/dynamic-facet/dynamic-facet.directive.mjs +17 -0
- package/esm2022/lib/page/object-header/dynamic-facets.service.mjs +38 -0
- package/esm2022/lib/page/object-header/facets/crititcality-facet/criticality-facet.component.mjs +29 -0
- package/esm2022/lib/page/object-header/facets/date-facet/date-facet.component.mjs +22 -0
- package/esm2022/lib/page/object-header/facets/multi-select-facet/multi-select-facet.component.mjs +27 -0
- package/esm2022/lib/page/object-header/facets/progress-facet/progress-facet.component.mjs +21 -0
- package/esm2022/lib/page/object-header/facets/references-facet/references-facet.component.mjs +22 -0
- package/esm2022/lib/page/object-header/facets/single-select-facet/single-select-facet.component.mjs +27 -0
- package/esm2022/lib/page/object-header/facets/status-facet/status-facet.component.mjs +25 -0
- package/esm2022/lib/page/object-header/facets/value-facet/value-facet.component.mjs +21 -0
- package/esm2022/lib/page/object-header/page-object-header.component.mjs +307 -0
- package/esm2022/lib/page/page.component.mjs +632 -0
- package/esm2022/lib/page/page.module.mjs +168 -0
- package/esm2022/lib/page/shared/directives/connect-form-state-to-page.directive.mjs +91 -0
- package/esm2022/lib/page/shared/services/context.service.mjs +75 -0
- package/esm2022/lib/page/shared/services/form-group-manager.service.mjs +180 -0
- package/esm2022/lib/page/shared/services/page-footer.service.mjs +54 -0
- package/esm2022/lib/page/shared/services/page-store.service.mjs +33 -0
- package/esm2022/lib/page/shared/services/page-submit-action.service.mjs +69 -0
- package/esm2022/lib/page/shared/services/resolver-trigger.service.mjs +57 -0
- package/esm2022/lib/page-stepper/adaptors/page-stepper-adapter.directive.mjs +66 -0
- package/esm2022/lib/page-stepper/cancel-dialog/page-stepper-cancel-dialog.component.mjs +50 -0
- package/esm2022/lib/page-stepper/header/page-step-header.component.mjs +60 -0
- package/esm2022/lib/page-stepper/model/page-step-resolver.token.mjs +3 -0
- package/esm2022/lib/page-stepper/model/page-step.resolver.mjs +2 -0
- package/esm2022/lib/page-stepper/model/qd-page-stepper-config.mjs +2 -0
- package/esm2022/lib/page-stepper/page-step/page-step.component.mjs +79 -0
- package/esm2022/lib/page-stepper/page-stepper.component.mjs +295 -0
- package/esm2022/lib/page-stepper/page-stepper.module.mjs +61 -0
- package/esm2022/lib/page-tabs/adaptors/page-tabs-adapter.directive.mjs +68 -0
- package/esm2022/lib/page-tabs/model/page-tabs-config.mjs +2 -0
- package/esm2022/lib/page-tabs/model/page-tabs-selection-event.mjs +2 -0
- package/esm2022/lib/page-tabs/page-tab/page-tab.component.mjs +84 -0
- package/esm2022/lib/page-tabs/page-tab-header/counter/page-tab-header-counters.component.mjs +33 -0
- package/esm2022/lib/page-tabs/page-tab-header/page-tab-header.component.mjs +57 -0
- package/esm2022/lib/page-tabs/page-tabs.component.mjs +314 -0
- package/esm2022/lib/page-tabs/page-tabs.module.mjs +54 -0
- package/esm2022/lib/panel-section/actions/panel-section-actions.component.mjs +61 -0
- package/esm2022/lib/panel-section/model/panel-section-config.interface.mjs +2 -0
- package/esm2022/lib/panel-section/model/panel-section-status-config.interface.mjs +2 -0
- package/esm2022/lib/panel-section/model/panel-section-text-paragraph-config.interface.mjs +2 -0
- package/esm2022/lib/panel-section/panel-section.component.mjs +98 -0
- package/esm2022/lib/panel-section/panel-section.module.mjs +41 -0
- package/esm2022/lib/panel-section/services/panel-section-action.service.mjs +18 -0
- package/esm2022/lib/panel-section/status/panel-section-status.component.mjs +23 -0
- package/esm2022/lib/panel-section/text-paragraph/panel-section-text-paragraph.component.mjs +19 -0
- package/esm2022/lib/place-holder/__mocks__/mock-place-holder.component.mjs +19 -0
- package/esm2022/lib/place-holder/__mocks__/mock-place-holder.module.mjs +17 -0
- package/esm2022/lib/place-holder/place-holder/place-holder.component.mjs +21 -0
- package/esm2022/lib/place-holder/place-holder.module.mjs +19 -0
- package/esm2022/lib/progress-bar/__mocks__/mock-indeterminate-progress-bar.component.mjs +15 -0
- package/esm2022/lib/progress-bar/__mocks__/mock-percentage-progress-bar.component.mjs +28 -0
- package/esm2022/lib/progress-bar/__mocks__/mock-progress-bar.module.mjs +19 -0
- package/esm2022/lib/progress-bar/indeterminate/indeterminate-progress-bar.component.mjs +14 -0
- package/esm2022/lib/progress-bar/percentage/percentage-progress-bar.component.mjs +51 -0
- package/esm2022/lib/progress-bar/progress-bar.module.mjs +21 -0
- package/esm2022/lib/qd-ui-mock.module.mjs +149 -0
- package/esm2022/lib/qd-ui.module.mjs +233 -0
- package/esm2022/lib/quick-edit/model/quick-edit-config.mjs +2 -0
- package/esm2022/lib/quick-edit/model/quick-edit-data.mjs +2 -0
- package/esm2022/lib/quick-edit/qd-ng-for.directive.mjs +58 -0
- package/esm2022/lib/quick-edit/quick-edit.component.mjs +391 -0
- package/esm2022/lib/quick-edit/quick-edit.module.mjs +62 -0
- package/esm2022/lib/search/__mocks__/mock-search.component.mjs +19 -0
- package/esm2022/lib/search/__mocks__/mock-search.module.mjs +19 -0
- package/esm2022/lib/search/helpers/search-update.helper.mjs +19 -0
- package/esm2022/lib/search/model/search-options.interface.mjs +2 -0
- package/esm2022/lib/search/model/search-post-body.mjs +2 -0
- package/esm2022/lib/search/model/search-store.interface.mjs +2 -0
- package/esm2022/lib/search/search.component.mjs +209 -0
- package/esm2022/lib/search/search.module.mjs +45 -0
- package/esm2022/lib/search/services/search-router-connector.service.mjs +109 -0
- package/esm2022/lib/search/services/search-store.service.mjs +34 -0
- package/esm2022/lib/search/services/search.service.mjs +106 -0
- package/esm2022/lib/search/store/search.actions.mjs +10 -0
- package/esm2022/lib/search/store/search.reducer.mjs +10 -0
- package/esm2022/lib/search/store/search.selector.mjs +8 -0
- package/esm2022/lib/section/__mocks__/mock-section-toolbar.component.mjs +19 -0
- package/esm2022/lib/section/__mocks__/mock-section.component.mjs +19 -0
- package/esm2022/lib/section/__mocks__/mock-section.module.mjs +20 -0
- package/esm2022/lib/section/adaptors/section-adapter.directive.mjs +66 -0
- package/esm2022/lib/section/connectors/table/connector-table-context.directive.mjs +150 -0
- package/esm2022/lib/section/connectors/table/connector-table-filter.directive.mjs +97 -0
- package/esm2022/lib/section/connectors/table/connector-table-search.directive.mjs +91 -0
- package/esm2022/lib/section/model/section-config.interface.mjs +2 -0
- package/esm2022/lib/section/model/toolbar-components.interface.mjs +2 -0
- package/esm2022/lib/section/section.component.mjs +185 -0
- package/esm2022/lib/section/section.module.mjs +77 -0
- package/esm2022/lib/section/services/section-toolbar-action.service.mjs +18 -0
- package/esm2022/lib/section/services/toolbar-components.service.mjs +17 -0
- package/esm2022/lib/section/toolbar/action/section-toolbar-action.component.mjs +158 -0
- package/esm2022/lib/section/toolbar/section-toolbar.component.mjs +59 -0
- package/esm2022/lib/shell/__mocks__/mock-counter-badge.component.mjs +14 -0
- package/esm2022/lib/shell/__mocks__/mock-header-widget-desktop.component.mjs +37 -0
- package/esm2022/lib/shell/__mocks__/mock-header-widget-mobile.component.mjs +37 -0
- package/esm2022/lib/shell/__mocks__/mock-shell-footer.component.mjs +14 -0
- package/esm2022/lib/shell/__mocks__/mock-shell-header-banner.component.mjs +14 -0
- package/esm2022/lib/shell/__mocks__/mock-shell-header-search.component.mjs +14 -0
- package/esm2022/lib/shell/__mocks__/mock-shell-header-widget.component.mjs +18 -0
- package/esm2022/lib/shell/__mocks__/mock-shell-header.component.mjs +19 -0
- package/esm2022/lib/shell/__mocks__/mock-shell-toolbar-item.component.mjs +19 -0
- package/esm2022/lib/shell/__mocks__/mock-shell-toolbar.component.mjs +14 -0
- package/esm2022/lib/shell/__mocks__/mock-shell.component.mjs +19 -0
- package/esm2022/lib/shell/__mocks__/mock-shell.module.mjs +69 -0
- package/esm2022/lib/shell/footer/shell-footer.component.mjs +24 -0
- package/esm2022/lib/shell/header/banner/shell-header-banner.component.mjs +33 -0
- package/esm2022/lib/shell/header/counter-badge/counter-badge.component.mjs +18 -0
- package/esm2022/lib/shell/header/search/shell-header-search.component.mjs +16 -0
- package/esm2022/lib/shell/header/service-navigation/shell-service-navigation.component.mjs +156 -0
- package/esm2022/lib/shell/header/service-navigation/shell-service-navigation.module.mjs +19 -0
- package/esm2022/lib/shell/header/shell-header.component.mjs +193 -0
- package/esm2022/lib/shell/header/toolbar/shell-toolbar.component.mjs +20 -0
- package/esm2022/lib/shell/header/toolbar/toolbar-item/shell-toolbar-item.component.mjs +25 -0
- package/esm2022/lib/shell/header/widget/shell-header-widget.component.mjs +115 -0
- package/esm2022/lib/shell/left/navigation/link/shell-left-navigation-link.component.mjs +27 -0
- package/esm2022/lib/shell/left/navigation/shell-left-navigation.component.mjs +17 -0
- package/esm2022/lib/shell/left/shell-left.component.mjs +29 -0
- package/esm2022/lib/shell/model/default-config.mjs +8 -0
- package/esm2022/lib/shell/model/eportal.interface.mjs +2 -0
- package/esm2022/lib/shell/model/route-data.interface.mjs +2 -0
- package/esm2022/lib/shell/model/shell-config.interface.mjs +2 -0
- package/esm2022/lib/shell/model/shell-footer-copyright-info.interface.mjs +2 -0
- package/esm2022/lib/shell/model/shell-header-widget-config.interface.mjs +2 -0
- package/esm2022/lib/shell/model/shell-navigation-config.interface.mjs +2 -0
- package/esm2022/lib/shell/model/shell-service-navigation-config.interface.mjs +2 -0
- package/esm2022/lib/shell/model/shell-toolbar-config.interface.mjs +2 -0
- package/esm2022/lib/shell/right/notification/shell-notification.component.mjs +95 -0
- package/esm2022/lib/shell/right/notifications/shell-notifications.component.mjs +25 -0
- package/esm2022/lib/shell/right/shell-right.component.mjs +56 -0
- package/esm2022/lib/shell/right/toolbar/shell-right-toolbar.component.mjs +28 -0
- package/esm2022/lib/shell/services/banner.service.mjs +27 -0
- package/esm2022/lib/shell/services/eportal-language.service.mjs +44 -0
- package/esm2022/lib/shell/services/navigation.service.mjs +60 -0
- package/esm2022/lib/shell/services/pams-environment.service.mjs +22 -0
- package/esm2022/lib/shell/services/service-navigation.service.mjs +208 -0
- package/esm2022/lib/shell/services/shell-header-minimization.service.mjs +37 -0
- package/esm2022/lib/shell/services/shell-header-widget.service.mjs +178 -0
- package/esm2022/lib/shell/services/shell-left.service.mjs +27 -0
- package/esm2022/lib/shell/services/shell-right.service.mjs +46 -0
- package/esm2022/lib/shell/shell.component.mjs +199 -0
- package/esm2022/lib/shell/shell.module.mjs +134 -0
- package/esm2022/lib/spinner/spinner.component.mjs +11 -0
- package/esm2022/lib/spinner/spinner.module.mjs +19 -0
- package/esm2022/lib/status-indicator/__mocks__/mock-status-indicator-cpation.component.mjs +14 -0
- package/esm2022/lib/status-indicator/__mocks__/mock-status-indicator-item.component.mjs +22 -0
- package/esm2022/lib/status-indicator/__mocks__/mock-status-indicator.component.mjs +33 -0
- package/esm2022/lib/status-indicator/__mocks__/mock-status-indicator.module.mjs +27 -0
- package/esm2022/lib/status-indicator/interfaces/status-indicator.interface.mjs +2 -0
- package/esm2022/lib/status-indicator/status-indicator/status-indicator.component.mjs +48 -0
- package/esm2022/lib/status-indicator/status-indicator-caption/status-indicator-caption.component.mjs +14 -0
- package/esm2022/lib/status-indicator/status-indicator-item/status-indicator-item.component.mjs +45 -0
- package/esm2022/lib/status-indicator/status-indicator.module.mjs +21 -0
- package/esm2022/lib/table/__mocks__/mock-sort.component.mjs +29 -0
- package/esm2022/lib/table/__mocks__/mock-table-body-plain.component.mjs +27 -0
- package/esm2022/lib/table/__mocks__/mock-table-body-tree.component.mjs +27 -0
- package/esm2022/lib/table/__mocks__/mock-table-data-blank.component.mjs +15 -0
- package/esm2022/lib/table/__mocks__/mock-table-data-boolean.component.mjs +19 -0
- package/esm2022/lib/table/__mocks__/mock-table-data-date.component.mjs +23 -0
- package/esm2022/lib/table/__mocks__/mock-table-data-integer.component.mjs +19 -0
- package/esm2022/lib/table/__mocks__/mock-table-data-link.component.mjs +29 -0
- package/esm2022/lib/table/__mocks__/mock-table-data-progress.component.mjs +19 -0
- package/esm2022/lib/table/__mocks__/mock-table-data-text.component.mjs +26 -0
- package/esm2022/lib/table/__mocks__/mock-table-empty-state.component.mjs +22 -0
- package/esm2022/lib/table/__mocks__/mock-table-head.component.mjs +24 -0
- package/esm2022/lib/table/__mocks__/mock-table-paginator-page-size.directive.mjs +18 -0
- package/esm2022/lib/table/__mocks__/mock-table-paginator.component.mjs +24 -0
- package/esm2022/lib/table/__mocks__/mock-table.component.mjs +33 -0
- package/esm2022/lib/table/__mocks__/mock-table.module.mjs +63 -0
- package/esm2022/lib/table/body/table-body.component.mjs +57 -0
- package/esm2022/lib/table/empty-state/table-empty-state.component.mjs +34 -0
- package/esm2022/lib/table/head/table-head.component.mjs +65 -0
- package/esm2022/lib/table/helpers/spring-tools.mjs +20 -0
- package/esm2022/lib/table/model/connectors-state.enum.mjs +7 -0
- package/esm2022/lib/table/model/paginator-direction.enum.mjs +8 -0
- package/esm2022/lib/table/model/sort-direction.enum.mjs +7 -0
- package/esm2022/lib/table/model/table-config-actions.interface.mjs +2 -0
- package/esm2022/lib/table/model/table-config-content.interface.mjs +2 -0
- package/esm2022/lib/table/model/table-config.interface.mjs +2 -0
- package/esm2022/lib/table/model/table-data-resolver.mjs +10 -0
- package/esm2022/lib/table/model/table-data-resolver.token.mjs +6 -0
- package/esm2022/lib/table/model/table-data.interface.mjs +2 -0
- package/esm2022/lib/table/model/table-row-selection.interface.mjs +2 -0
- package/esm2022/lib/table/model/table-store.interface.mjs +2 -0
- package/esm2022/lib/table/paginator/page-size/table-paginator-page-size.component.mjs +104 -0
- package/esm2022/lib/table/paginator/page-size/table-paginator-page-size.directive.mjs +53 -0
- package/esm2022/lib/table/paginator/scroll-to-pagination.directive.mjs +77 -0
- package/esm2022/lib/table/paginator/table-paginator.component.mjs +128 -0
- package/esm2022/lib/table/row/actions/secondary/menu/table-row-actions-secondary-menu.component.mjs +94 -0
- package/esm2022/lib/table/row/selection/table-row-selection.component.mjs +49 -0
- package/esm2022/lib/table/row/table-row.component.mjs +102 -0
- package/esm2022/lib/table/services/empty-state.service.mjs +25 -0
- package/esm2022/lib/table/services/external-action-result.service.mjs +16 -0
- package/esm2022/lib/table/services/filling-width.service.mjs +174 -0
- package/esm2022/lib/table/services/resolver.service.mjs +82 -0
- package/esm2022/lib/table/services/responsive-row.service.mjs +106 -0
- package/esm2022/lib/table/services/row-selection.service.mjs +60 -0
- package/esm2022/lib/table/services/secondary-actions.service.mjs +18 -0
- package/esm2022/lib/table/sort/table-sort.component.mjs +126 -0
- package/esm2022/lib/table/store/table-store-selector.service.mjs +123 -0
- package/esm2022/lib/table/store/table-store.service.mjs +138 -0
- package/esm2022/lib/table/store/table-update.helper.mjs +81 -0
- package/esm2022/lib/table/store/table.actions.mjs +40 -0
- package/esm2022/lib/table/store/table.reducer.mjs +21 -0
- package/esm2022/lib/table/table.component.mjs +472 -0
- package/esm2022/lib/table/table.module.mjs +105 -0
- package/esm2022/lib/text-section/__mocks__/mock-text-section-headline.component.mjs +14 -0
- package/esm2022/lib/text-section/__mocks__/mock-text-section-paragraph.component.mjs +14 -0
- package/esm2022/lib/text-section/__mocks__/mock-text-section.component.mjs +14 -0
- package/esm2022/lib/text-section/__mocks__/mock-text-section.module.mjs +19 -0
- package/esm2022/lib/text-section/text-section-headline/text-section-headline.component.mjs +16 -0
- package/esm2022/lib/text-section/text-section-paragraph/text-section-paragraph.component.mjs +16 -0
- package/esm2022/lib/text-section/text-section.component.mjs +28 -0
- package/esm2022/lib/text-section/text-section.module.mjs +21 -0
- package/esm2022/lib/tiles/__mocks__/mock-tile-button-list.component.mjs +14 -0
- package/esm2022/lib/tiles/__mocks__/mock-tile-text-list-item.component.mjs +14 -0
- package/esm2022/lib/tiles/__mocks__/mock-tile-text-list.component.mjs +14 -0
- package/esm2022/lib/tiles/__mocks__/mock-tile-title.component.mjs +14 -0
- package/esm2022/lib/tiles/__mocks__/mock-tile.component.mjs +18 -0
- package/esm2022/lib/tiles/__mocks__/mock-tiles-container-title.component.mjs +14 -0
- package/esm2022/lib/tiles/__mocks__/mock-tiles-container.component.mjs +18 -0
- package/esm2022/lib/tiles/__mocks__/mock-tiles.module.mjs +51 -0
- package/esm2022/lib/tiles/model/tile-config.mjs +2 -0
- package/esm2022/lib/tiles/model/tiles-config.mjs +2 -0
- package/esm2022/lib/tiles/tile/tile.component.mjs +42 -0
- package/esm2022/lib/tiles/tile-button-list/tile-button-list.component.mjs +15 -0
- package/esm2022/lib/tiles/tile-text-list/tile-text-list.component.mjs +11 -0
- package/esm2022/lib/tiles/tile-text-list-item/tile-text-list-item.component.mjs +11 -0
- package/esm2022/lib/tiles/tile-title/tile-title.component.mjs +11 -0
- package/esm2022/lib/tiles/tiles-title/tiles-title.component.mjs +11 -0
- package/esm2022/lib/tiles/tiles.component.mjs +22 -0
- package/esm2022/lib/tiles/tiles.module.mjs +55 -0
- package/esm2022/lib/tree/body/tree-body.component.mjs +46 -0
- package/esm2022/lib/tree/empty-state/tree-empty-state.component.mjs +34 -0
- package/esm2022/lib/tree/error/grouped-indices-not-consecutive.error.mjs +7 -0
- package/esm2022/lib/tree/head/tree-head.component.mjs +64 -0
- package/esm2022/lib/tree/model/tree-column-detail.interface.mjs +2 -0
- package/esm2022/lib/tree/model/tree-config-actions.interface.mjs +2 -0
- package/esm2022/lib/tree/model/tree-config.interface.mjs +2 -0
- package/esm2022/lib/tree/model/tree-data.interface.mjs +2 -0
- package/esm2022/lib/tree/row/actions/secondary/menu/tree-row-actions-secondary-menu.component.mjs +98 -0
- package/esm2022/lib/tree/row/tree-row.component.mjs +85 -0
- package/esm2022/lib/tree/services/row-expander.service.mjs +117 -0
- package/esm2022/lib/tree/services/tree-group.service.mjs +87 -0
- package/esm2022/lib/tree/services/tree-rows.service.mjs +151 -0
- package/esm2022/lib/tree/tree.component.mjs +244 -0
- package/esm2022/lib/tree/tree.module.mjs +80 -0
- package/esm2022/public-api.mjs +79 -0
- package/esm2022/quadrel-ui-qd-ui.mjs +5 -0
- package/fesm2022/quadrel-ui-qd-ui.mjs +37960 -0
- package/fesm2022/quadrel-ui-qd-ui.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/button/__mocks__/mock-button-grid.component.d.ts +5 -0
- package/lib/button/__mocks__/mock-button-stack-button.component.d.ts +7 -0
- package/lib/button/__mocks__/mock-button-stack.component.d.ts +5 -0
- package/lib/button/__mocks__/mock-button.component.d.ts +10 -0
- package/lib/button/__mocks__/mock-button.directives.d.ts +9 -0
- package/lib/button/__mocks__/mock-button.module.d.ts +20 -0
- package/lib/button/__mocks__/mock-icon-button.component.d.ts +7 -0
- package/lib/button/button/additional-info/button-additional-info.component.d.ts +14 -0
- package/lib/button/button/button.component.d.ts +40 -0
- package/lib/button/button-grid/button-grid.component.d.ts +10 -0
- package/lib/button/button-stack/button-stack-button/button-stack-button.component.d.ts +23 -0
- package/lib/button/button-stack/button-stack-container/button-stack.component.d.ts +16 -0
- package/lib/button/button.module.d.ts +31 -0
- package/lib/button/directives/button.directives.d.ts +24 -0
- package/lib/button/icon-button/icon-button.component.d.ts +25 -0
- package/lib/button/menu-button/menu-button.component.d.ts +57 -0
- package/lib/button/model/button-config.d.ts +75 -0
- package/lib/button/model/button.types.d.ts +1 -0
- package/lib/chips/__mocks__/mock-chip.component.d.ts +14 -0
- package/lib/chips/__mocks__/mock-chips.module.d.ts +10 -0
- package/lib/chips/chip/chip.component.d.ts +42 -0
- package/lib/chips/chips.module.d.ts +12 -0
- package/lib/chips/interfaces/chip.interface.d.ts +2 -0
- package/lib/comments/add-comment/add-comment-dialog.component.d.ts +29 -0
- package/lib/comments/comments.component.d.ts +21 -0
- package/lib/comments/comments.module.d.ts +22 -0
- package/lib/comments/menu/comment-menu.component.d.ts +8 -0
- package/lib/comments/model/comments.interface.d.ts +192 -0
- package/lib/comments/pipes/stripe-html.pipe.d.ts +7 -0
- package/lib/contact-card/__mocks__/mock-contact-card.component.d.ts +7 -0
- package/lib/contact-card/__mocks__/mock-contact-card.module.d.ts +10 -0
- package/lib/contact-card/contact-card.component.d.ts +166 -0
- package/lib/contact-card/contact-card.module.d.ts +16 -0
- package/lib/contact-card/menu/contact-card-menu.component.d.ts +31 -0
- package/lib/contact-card/model/contact-card-actions-config.interface.d.ts +43 -0
- package/lib/contact-card/model/contact-data.interface.d.ts +162 -0
- package/lib/container/__mocks__/mock-action-footer.component.d.ts +5 -0
- package/lib/container/__mocks__/mock-container-create-content.component.d.ts +9 -0
- package/lib/container/__mocks__/mock-container-create-default.component.d.ts +7 -0
- package/lib/container/__mocks__/mock-container-section.component.d.ts +7 -0
- package/lib/container/__mocks__/mock-container-toolbar-action.component.d.ts +16 -0
- package/lib/container/__mocks__/mock-container-toolbar-filter.component.d.ts +5 -0
- package/lib/container/__mocks__/mock-container-toolbar-title.component.d.ts +5 -0
- package/lib/container/__mocks__/mock-container-toolbar.component.d.ts +8 -0
- package/lib/container/__mocks__/mock-container.component.d.ts +17 -0
- package/lib/container/__mocks__/mock-container.module.d.ts +30 -0
- package/lib/container/__mocks__/mock-create-delete-alert.component.d.ts +7 -0
- package/lib/container/__mocks__/mock-form-group.component.d.ts +14 -0
- package/lib/container/container.component.d.ts +86 -0
- package/lib/container/container.module.d.ts +31 -0
- package/lib/container/model/container-type.d.ts +12 -0
- package/lib/container/model/toolbar.interface.d.ts +40 -0
- package/lib/container/section/container-section.component.d.ts +22 -0
- package/lib/container/section/header/container-section-header.component.d.ts +10 -0
- package/lib/container/section/info/container-section-info.component.d.ts +8 -0
- package/lib/container/services/container-action.service.d.ts +10 -0
- package/lib/container/services/container-layout.service.d.ts +20 -0
- package/lib/container/toolbar/action/container-toolbar-action.component.d.ts +45 -0
- package/lib/container/toolbar/container-toolbar.component.d.ts +26 -0
- package/lib/container/toolbar/filter/container-toolbar-filter.component.d.ts +11 -0
- package/lib/container/toolbar/title/container-toolbar-title.component.d.ts +10 -0
- package/lib/content-grid/__mocks__/mock-content-grid-column.d.ts +5 -0
- package/lib/content-grid/__mocks__/mock-content-grid-row.d.ts +5 -0
- package/lib/content-grid/__mocks__/mock-content-grid.d.ts +5 -0
- package/lib/content-grid/__mocks__/mock-content-grid.module.d.ts +13 -0
- package/lib/content-grid/content-grid/content-grid.component.d.ts +15 -0
- package/lib/content-grid/content-grid-column/content-grid-column.component.d.ts +11 -0
- package/lib/content-grid/content-grid-row/content-grid-row.component.d.ts +12 -0
- package/lib/content-grid/content-grid.module.d.ts +14 -0
- package/lib/core/__mocks__/mock-breakpoint.service.d.ts +5 -0
- package/lib/core/__mocks__/mock-core.module.d.ts +18 -0
- package/lib/core/__mocks__/mock-disabled.directive.d.ts +5 -0
- package/lib/core/__mocks__/mock-popover-on-click.directive.d.ts +33 -0
- package/lib/core/__mocks__/mock-rwd-disabled.directive.d.ts +5 -0
- package/lib/core/__mocks__/mock-translate.pipe.d.ts +7 -0
- package/lib/core/__mocks__/mock-visually-hidden.directive.d.ts +5 -0
- package/lib/core/autofocus/autofocus.directive.d.ts +13 -0
- package/lib/core/autofocus/autofocus.module.d.ts +8 -0
- package/lib/core/autofocus/autofocus.service.d.ts +8 -0
- package/lib/core/breadcrumbs/breadcrumbs.component.d.ts +124 -0
- package/lib/core/breadcrumbs/breadcrumbs.module.d.ts +11 -0
- package/lib/core/breadcrumbs/model/breadcrumbs.interface.d.ts +26 -0
- package/lib/core/breadcrumbs/services/breadcrumbs.service.d.ts +20 -0
- package/lib/core/breadcrumbs/services/dialog-breadcrumbs.service.d.ts +7 -0
- package/lib/core/core.module.d.ts +28 -0
- package/lib/core/data-facets/blank/data-facets-blank.component.d.ts +14 -0
- package/lib/core/data-facets/boolean/data-facets-boolean.component.d.ts +12 -0
- package/lib/core/data-facets/chip/data-facets-chip.component.d.ts +27 -0
- package/lib/core/data-facets/chip/data-facets-chip.interfaces.d.ts +43 -0
- package/lib/core/data-facets/chip/truncated-indicator/data-facets-chip-truncated-indicator.component.d.ts +30 -0
- package/lib/core/data-facets/chip/truncated-tooltip/data-facets-chip-truncated-tooltip.component.d.ts +38 -0
- package/lib/core/data-facets/currency/data-facets-currency.component.d.ts +26 -0
- package/lib/core/data-facets/currency/data-facets-currency.interfaces.d.ts +17 -0
- package/lib/core/data-facets/data-facets-context.service.d.ts +12 -0
- package/lib/core/data-facets/data-facets.model.d.ts +36 -0
- package/lib/core/data-facets/data-facets.module.d.ts +32 -0
- package/lib/core/data-facets/date/data-facets-date.component.d.ts +33 -0
- package/lib/core/data-facets/date/data-facets-date.interfaces.d.ts +47 -0
- package/lib/core/data-facets/icon/data-facets-icon.component.d.ts +12 -0
- package/lib/core/data-facets/integer/data-facets-integer.component.d.ts +12 -0
- package/lib/core/data-facets/link/data-facets-link.component.d.ts +24 -0
- package/lib/core/data-facets/link/data-facets-link.interfaces.d.ts +49 -0
- package/lib/core/data-facets/progress/data-facets-progress.component.d.ts +17 -0
- package/lib/core/data-facets/status/data-facets-status.component.d.ts +13 -0
- package/lib/core/data-facets/status/data-facets-status.interfaces.d.ts +14 -0
- package/lib/core/data-facets/text/data-facets-text.component.d.ts +19 -0
- package/lib/core/data-facets/text/data-facets-text.interfaces.d.ts +17 -0
- package/lib/core/disabled/disabled.directive.d.ts +5 -0
- package/lib/core/focusable/focusable.d.ts +9 -0
- package/lib/core/focusable/focusable.directive.d.ts +9 -0
- package/lib/core/focusable/focusable.module.d.ts +7 -0
- package/lib/core/focusable/focusable.token.d.ts +5 -0
- package/lib/core/model/app-enviroment.interface.d.ts +32 -0
- package/lib/core/model/app-enviroment.token.d.ts +4 -0
- package/lib/core/model/breakpoint.interface.d.ts +9 -0
- package/lib/core/model/translation.interface.d.ts +20 -0
- package/lib/core/pipes/file-size.pipe.d.ts +10 -0
- package/lib/core/pipes/placeholder.pipe.d.ts +7 -0
- package/lib/core/pipes/placeholders.pipe.d.ts +9 -0
- package/lib/core/pipes/sanitize-html.pipe.d.ts +10 -0
- package/lib/core/popover/popover/popover.component.d.ts +22 -0
- package/lib/core/popover/popover-on-click/popover-on-click.directive.d.ts +54 -0
- package/lib/core/popover/popover-on-hover/popover-on-hover.directive.d.ts +26 -0
- package/lib/core/popover/popover-parent.service.d.ts +7 -0
- package/lib/core/popover/popover-sizing.service.d.ts +62 -0
- package/lib/core/popover/popover-top-first.token.d.ts +2 -0
- package/lib/core/popover/popover.module.d.ts +10 -0
- package/lib/core/popover/popover.service.d.ts +11 -0
- package/lib/core/projection-guard/projection-guard.component.d.ts +13 -0
- package/lib/core/rwd-disabled/rwd-disabled.directive.d.ts +5 -0
- package/lib/core/rxjs/delay-and-hold.operator.d.ts +51 -0
- package/lib/core/services/breakpoint.service.d.ts +18 -0
- package/lib/core/services/element.service.d.ts +6 -0
- package/lib/core/services/event-broker.service.d.ts +55 -0
- package/lib/core/services/push-events.service.d.ts +77 -0
- package/lib/core/services/scrolling.service.d.ts +14 -0
- package/lib/core/services/translate.service.d.ts +15 -0
- package/lib/core/tools/constantCase.tools.d.ts +1 -0
- package/lib/core/tools/convertPxToRem.tools.d.ts +1 -0
- package/lib/core/tooltip/model/tooltip-content.interface.d.ts +17 -0
- package/lib/core/tooltip/tooltip/tooltip.component.d.ts +9 -0
- package/lib/core/tooltip/tooltip-at-intersection/tooltip-at-intersection.directive.d.ts +36 -0
- package/lib/core/tooltip/tooltip-on-tap-hover/tooltip-on-click.directive.d.ts +23 -0
- package/lib/core/tooltip/tooltip.module.d.ts +11 -0
- package/lib/core/types/utility.types.d.ts +2 -0
- package/lib/core/visually-hidden/visually-hidden.directive.d.ts +5 -0
- package/lib/dialog/action/dialog-action.component.d.ts +5 -0
- package/lib/dialog/auth-session-end/dialog-auth-session-end.component.d.ts +15 -0
- package/lib/dialog/confirmation/dialog-confirmation.component.d.ts +121 -0
- package/lib/dialog/dialog.component.d.ts +60 -0
- package/lib/dialog/dialog.module.d.ts +36 -0
- package/lib/dialog/models/confirmation.model.d.ts +116 -0
- package/lib/dialog/models/dialog-config.model.d.ts +50 -0
- package/lib/dialog/models/record-stepper.model.d.ts +25 -0
- package/lib/dialog/models/session-end-result.model.d.ts +13 -0
- package/lib/dialog/page-dialog-with-breadcrumbs/page-dialog-with-breadcrumbs.component.d.ts +5 -0
- package/lib/dialog/record-stepper/dialog-record-stepper.component.d.ts +33 -0
- package/lib/dialog/services/dialog-auth-session-end.service.d.ts +20 -0
- package/lib/dialog/services/dialog.service.d.ts +49 -0
- package/lib/file-collector/__mocks__/mock-file-collector-dialog-item-error.component.d.ts +7 -0
- package/lib/file-collector/__mocks__/mock-file-collector-dialog-item-progress.component.d.ts +7 -0
- package/lib/file-collector/__mocks__/mock-file-collector-dialog-item.component.d.ts +10 -0
- package/lib/file-collector/__mocks__/mock-file-collector-item-name.component.d.ts +7 -0
- package/lib/file-collector/__mocks__/mock-file-collector-item-size.component.d.ts +7 -0
- package/lib/file-collector/__mocks__/mock-file-collector-item-tools.component.d.ts +13 -0
- package/lib/file-collector/__mocks__/mock-file-collector-item.component.d.ts +15 -0
- package/lib/file-collector/__mocks__/mock-file-collector.component.d.ts +5 -0
- package/lib/file-collector/__mocks__/mock-file-collector.module.d.ts +17 -0
- package/lib/file-collector/allowed-files-description/file-collector-allowed-files-description.component.d.ts +13 -0
- package/lib/file-collector/dialog/file-collector-dialog.component.d.ts +17 -0
- package/lib/file-collector/dialog/item/error/file-collector-dialog-item-error.component.d.ts +15 -0
- package/lib/file-collector/dialog/item/file-collector-dialog-item.component.d.ts +13 -0
- package/lib/file-collector/dialog/item/progress/file-collector-dialog-item-progress.component.d.ts +21 -0
- package/lib/file-collector/file-collector.component.d.ts +131 -0
- package/lib/file-collector/file-collector.module.d.ts +36 -0
- package/lib/file-collector/file-delete-dialog/file-delete-dialog.component.d.ts +13 -0
- package/lib/file-collector/item/file-collector-item.component.d.ts +15 -0
- package/lib/file-collector/item/name/file-collector-item-name.component.d.ts +6 -0
- package/lib/file-collector/item/size/file-collector-item-size.component.d.ts +6 -0
- package/lib/file-collector/item/tools/file-collector-item-tools.component.d.ts +23 -0
- package/lib/file-collector/item/upload-timestamp/upload-timestamp.component.d.ts +6 -0
- package/lib/file-collector/models/collected-file.d.ts +32 -0
- package/lib/file-collector/models/file-collector-config.d.ts +75 -0
- package/lib/file-collector/models/file-manager-token.d.ts +2 -0
- package/lib/file-collector/models/file-manager.d.ts +17 -0
- package/lib/file-collector/models/file-type.d.ts +6 -0
- package/lib/file-collector/models/file-upload.d.ts +14 -0
- package/lib/file-collector/models/upload-progress.d.ts +32 -0
- package/lib/file-collector/pipes/filesize.pipe.d.ts +9 -0
- package/lib/file-collector/pipes/upload-timestamp.pipe.d.ts +10 -0
- package/lib/file-collector/services/file-collector-validation.service.d.ts +13 -0
- package/lib/file-collector/services/file-collector.service.d.ts +21 -0
- package/lib/file-collector/services/file-type.service.d.ts +10 -0
- package/lib/filter/__mocks__/mock-filter-category-boolean.d.ts +9 -0
- package/lib/filter/__mocks__/mock-filter-category-date-range.d.ts +11 -0
- package/lib/filter/__mocks__/mock-filter-category-date.d.ts +11 -0
- package/lib/filter/__mocks__/mock-filter-category-free-text.d.ts +10 -0
- package/lib/filter/__mocks__/mock-filter-category-select.d.ts +9 -0
- package/lib/filter/__mocks__/mock-filter-category.d.ts +10 -0
- package/lib/filter/__mocks__/mock-filter-item-boolean.d.ts +11 -0
- package/lib/filter/__mocks__/mock-filter-item-date-range.d.ts +12 -0
- package/lib/filter/__mocks__/mock-filter-item-date.d.ts +12 -0
- package/lib/filter/__mocks__/mock-filter-item-free-text.d.ts +11 -0
- package/lib/filter/__mocks__/mock-filter-item-multi-select.d.ts +10 -0
- package/lib/filter/__mocks__/mock-filter-item-single-select.d.ts +10 -0
- package/lib/filter/__mocks__/mock-filter.d.ts +10 -0
- package/lib/filter/__mocks__/mock-filter.module.d.ts +37 -0
- package/lib/filter/__mocks__/mock-filter.service.d.ts +35 -0
- package/lib/filter/__mocks__/mock-localeDate.pipe.d.ts +8 -0
- package/lib/filter/category/boolean/filter-category-boolean.component.d.ts +15 -0
- package/lib/filter/category/date/filter-category-date.component.d.ts +26 -0
- package/lib/filter/category/date-range/filter-category-date-range.component.d.ts +31 -0
- package/lib/filter/category/filter-category.component.d.ts +35 -0
- package/lib/filter/category/free-text/filter-category-free-text.component.d.ts +21 -0
- package/lib/filter/category/select/filter-category-select.component.d.ts +34 -0
- package/lib/filter/filter-service/filter.service.d.ts +54 -0
- package/lib/filter/filter.component.d.ts +122 -0
- package/lib/filter/filter.module.d.ts +36 -0
- package/lib/filter/helpers/filter-active-items.helper.d.ts +3 -0
- package/lib/filter/helpers/filter-active.helper.d.ts +3 -0
- package/lib/filter/helpers/filter-get.helper.d.ts +12 -0
- package/lib/filter/helpers/filter-postbody.helper.d.ts +3 -0
- package/lib/filter/helpers/filter-query-parser.helper.d.ts +2 -0
- package/lib/filter/helpers/filter-query.helper.d.ts +8 -0
- package/lib/filter/helpers/filter-selection-validator.helper.d.ts +2 -0
- package/lib/filter/helpers/filter-state.helpers.d.ts +10 -0
- package/lib/filter/helpers/filter-update.helper.d.ts +12 -0
- package/lib/filter/item/boolean/filter-item-boolean.component.d.ts +21 -0
- package/lib/filter/item/date/filter-item-date.component.d.ts +24 -0
- package/lib/filter/item/date-range/filter-item-date-range.component.d.ts +31 -0
- package/lib/filter/item/free-text/filter-item-free-text.component.d.ts +25 -0
- package/lib/filter/item/multi-select/filter-item-multi-select.component.d.ts +21 -0
- package/lib/filter/item/single-select/filter-item-single-select.component.d.ts +24 -0
- package/lib/filter/model/filter-config.interface.d.ts +83 -0
- package/lib/filter/model/filter-post-body.interface.d.ts +8 -0
- package/lib/filter/model/filter-reducer.interface.d.ts +4 -0
- package/lib/filter/model/filter-state.interface.d.ts +12 -0
- package/lib/filter/model/filter-types.interface.d.ts +1 -0
- package/lib/filter/pipes/localeDate.pipe.d.ts +15 -0
- package/lib/filter/services/dependent-filters.service.d.ts +19 -0
- package/lib/filter/services/filter-rest-param.tools.d.ts +22 -0
- package/lib/filter/services/filter-router-connector.service.d.ts +23 -0
- package/lib/filter/store/filter.actions.d.ts +91 -0
- package/lib/filter/store/filter.reducer.d.ts +3 -0
- package/lib/filter/store/filter.selector.d.ts +128 -0
- package/lib/forms/__mocks__/mock-calendar.component.d.ts +11 -0
- package/lib/forms/__mocks__/mock-checkbox-chips-item.component.d.ts +8 -0
- package/lib/forms/__mocks__/mock-checkbox-chips.component.d.ts +10 -0
- package/lib/forms/__mocks__/mock-checkbox.component.d.ts +14 -0
- package/lib/forms/__mocks__/mock-checkboxes.component.d.ts +11 -0
- package/lib/forms/__mocks__/mock-datepicker.component.d.ts +12 -0
- package/lib/forms/__mocks__/mock-dropdown.component.d.ts +15 -0
- package/lib/forms/__mocks__/mock-filter-form-items.component.d.ts +8 -0
- package/lib/forms/__mocks__/mock-form-error.component.d.ts +7 -0
- package/lib/forms/__mocks__/mock-form-group-error.component.d.ts +8 -0
- package/lib/forms/__mocks__/mock-form-hint.component.d.ts +10 -0
- package/lib/forms/__mocks__/mock-form-label.component.d.ts +12 -0
- package/lib/forms/__mocks__/mock-form-readonly.component.d.ts +8 -0
- package/lib/forms/__mocks__/mock-form-viewonly.component.d.ts +8 -0
- package/lib/forms/__mocks__/mock-forms.module.d.ts +48 -0
- package/lib/forms/__mocks__/mock-input.component.d.ts +25 -0
- package/lib/forms/__mocks__/mock-pin-code.component.d.ts +21 -0
- package/lib/forms/__mocks__/mock-radio-buttons.component.d.ts +14 -0
- package/lib/forms/__mocks__/mock-switch.component.d.ts +19 -0
- package/lib/forms/__mocks__/mock-switches.component.d.ts +19 -0
- package/lib/forms/__mocks__/mock-textarea.component.d.ts +19 -0
- package/lib/forms/checkbox-chips/checkbox-chips.component.d.ts +116 -0
- package/lib/forms/checkbox-chips/item/checkbox-chips-item.component.d.ts +10 -0
- package/lib/forms/checkbox-chips/services/checkbox-chips.service.d.ts +10 -0
- package/lib/forms/checkboxes/checkbox/checkbox.component.d.ts +24 -0
- package/lib/forms/checkboxes/checkboxes-service/checkboxes.service.d.ts +23 -0
- package/lib/forms/checkboxes/checkboxes.component.d.ts +135 -0
- package/lib/forms/datepicker/adapter/date-adapter.d.ts +55 -0
- package/lib/forms/datepicker/calendar/calendar.component.d.ts +57 -0
- package/lib/forms/datepicker/datepicker.component.d.ts +158 -0
- package/lib/forms/datepicker/service/timepicker.service.d.ts +12 -0
- package/lib/forms/dropdown/dropdown.component.d.ts +186 -0
- package/lib/forms/dropdown/options/dropdown-options.component.d.ts +30 -0
- package/lib/forms/file-upload/file-upload.component.d.ts +164 -0
- package/lib/forms/file-upload/model/file-upload.model.d.ts +91 -0
- package/lib/forms/file-upload/services/file-upload.service.d.ts +13 -0
- package/lib/forms/forms/forms.component.d.ts +10 -0
- package/lib/forms/input/helpers/get-value-with-unit.d.ts +2 -0
- package/lib/forms/input/input.component.d.ts +334 -0
- package/lib/forms/input/options/input-options.component.d.ts +26 -0
- package/lib/forms/input/options/input-options.directive.d.ts +81 -0
- package/lib/forms/input/units/input-units.component.d.ts +21 -0
- package/lib/forms/model/datepicker.d.ts +35 -0
- package/lib/forms/model/form-options-resolver.d.ts +65 -0
- package/lib/forms/model/forms.interface.d.ts +520 -0
- package/lib/forms/model/options.interface.d.ts +84 -0
- package/lib/forms/model/radio-buttons.d.ts +6 -0
- package/lib/forms/multi-input/interfaces/multi-input-chip.interface.d.ts +1 -0
- package/lib/forms/multi-input/multi-input-chip/multi-input-chip.component.d.ts +26 -0
- package/lib/forms/multi-input/multi-input-menu/multi-input-menu.component.d.ts +35 -0
- package/lib/forms/multi-input/multi-input-service/multi-input.service.d.ts +27 -0
- package/lib/forms/multi-input/multi-input.component.d.ts +166 -0
- package/lib/forms/pin-code/pin-code-service/pin-code.service.d.ts +28 -0
- package/lib/forms/pin-code/pin-code.component.d.ts +154 -0
- package/lib/forms/qd-form.module.d.ts +72 -0
- package/lib/forms/radio-buttons/radio-buttons-service/radio-buttons.service.d.ts +16 -0
- package/lib/forms/radio-buttons/radio-buttons.component.d.ts +125 -0
- package/lib/forms/reactive-forms/controls/form-array-factory.service.d.ts +13 -0
- package/lib/forms/reactive-forms/controls/form-array.d.ts +236 -0
- package/lib/forms/reactive-forms/controls/form-builder.d.ts +98 -0
- package/lib/forms/reactive-forms/controls/form-control.d.ts +18 -0
- package/lib/forms/reactive-forms/controls/form-group.d.ts +3 -0
- package/lib/forms/richtext/richtext.component.d.ts +108 -0
- package/lib/forms/shared/components/filter-form-items/filter-form-items.component.d.ts +12 -0
- package/lib/forms/shared/components/form-error/form-error.component.d.ts +17 -0
- package/lib/forms/shared/components/form-hint/form-hint.component.d.ts +14 -0
- package/lib/forms/shared/components/form-input/form-input.component.d.ts +18 -0
- package/lib/forms/shared/components/form-label/form-label.component.d.ts +17 -0
- package/lib/forms/shared/components/form-readonly/form-readonly.component.d.ts +15 -0
- package/lib/forms/shared/components/form-viewonly/form-viewonly.component.d.ts +18 -0
- package/lib/forms/shared/helpers/forms-options.helpers.d.ts +5 -0
- package/lib/forms/shared/helpers/forms.helpers.d.ts +81 -0
- package/lib/forms/shared/helpers/has-validators.helpers.d.ts +2 -0
- package/lib/forms/shared/services/action-emitter.service.d.ts +12 -0
- package/lib/forms/shared/services/form-keyboard.service.d.ts +15 -0
- package/lib/forms/shared/services/form-options.service.d.ts +33 -0
- package/lib/forms/shared/services/options-resolver.registry.d.ts +11 -0
- package/lib/forms/shared/validators/validators.d.ts +126 -0
- package/lib/forms/switches/switch/switch.component.d.ts +27 -0
- package/lib/forms/switches/switches-service/switches.service.d.ts +14 -0
- package/lib/forms/switches/switches.component.d.ts +125 -0
- package/lib/forms/textarea/textarea.component.d.ts +118 -0
- package/lib/grid/__mocks__/mock-column.directive.d.ts +6 -0
- package/lib/grid/__mocks__/mock-columns.directive.d.ts +11 -0
- package/lib/grid/__mocks__/mock-grid.module.d.ts +11 -0
- package/lib/grid/directives/column-auto-fill.directive.d.ts +30 -0
- package/lib/grid/directives/column-break-before.directive.d.ts +30 -0
- package/lib/grid/directives/column-disable-responsive-colspans.directive.d.ts +35 -0
- package/lib/grid/directives/column-full-grid-width.directive.d.ts +31 -0
- package/lib/grid/directives/column-next-in-same-row.directive.d.ts +35 -0
- package/lib/grid/directives/column.directive.d.ts +49 -0
- package/lib/grid/directives/columns-disable-auto-fill.directive.d.ts +32 -0
- package/lib/grid/directives/columns-disable-responsive-colspans.directive.d.ts +30 -0
- package/lib/grid/directives/columns-max.directive.d.ts +35 -0
- package/lib/grid/directives/columns.directive.d.ts +43 -0
- package/lib/grid/grid.component.d.ts +31 -0
- package/lib/grid/grid.module.d.ts +34 -0
- package/lib/grid/model/grid-config.interface.d.ts +34 -0
- package/lib/grid/model/subgrid-config.interface.d.ts +27 -0
- package/lib/grid/services/grid-auto-fill.service.d.ts +39 -0
- package/lib/grid/services/grid.service.d.ts +12 -0
- package/lib/grid/subgrid/subgrid.component.d.ts +43 -0
- package/lib/helpers/html-plaintext.helper.d.ts +1 -0
- package/lib/helpers/language.helper.d.ts +1 -0
- package/lib/helpers/load-javascript-asset.helper.d.ts +1 -0
- package/lib/helpers/relative-time.helper.d.ts +3 -0
- package/lib/icon/__mocks__/mock-icon.component.d.ts +9 -0
- package/lib/icon/__mocks__/mock-icon.module.d.ts +9 -0
- package/lib/icon/custom-icons/logo.d.ts +1 -0
- package/lib/icon/icon/icon-definitions.d.ts +6 -0
- package/lib/icon/icon/icon.component.d.ts +28 -0
- package/lib/icon/icon.module.d.ts +10 -0
- package/lib/image/__mocks__/mock-image.component.d.ts +10 -0
- package/lib/image/__mocks__/mock-image.module.d.ts +9 -0
- package/lib/image/image/image.component.d.ts +63 -0
- package/lib/image/image.module.d.ts +12 -0
- package/lib/layout/__mocks__/mock-action-bar.component.d.ts +14 -0
- package/lib/layout/__mocks__/mock-active-content-tab.directive.d.ts +7 -0
- package/lib/layout/__mocks__/mock-button-enabled.directive.d.ts +7 -0
- package/lib/layout/__mocks__/mock-layout-container.component.d.ts +5 -0
- package/lib/layout/__mocks__/mock-layout-renderer.component.d.ts +13 -0
- package/lib/layout/__mocks__/mock-layout.module.d.ts +30 -0
- package/lib/layout/__mocks__/mock-page-process-header-title.component.d.ts +5 -0
- package/lib/layout/__mocks__/mock-page-process-header.component.d.ts +26 -0
- package/lib/layout/__mocks__/mock-page-title.component.d.ts +7 -0
- package/lib/layout/__mocks__/mock-panel-title.component.d.ts +7 -0
- package/lib/layout/__mocks__/mock-panel.component.d.ts +9 -0
- package/lib/layout/__mocks__/mock-truncated-text.directive.d.ts +12 -0
- package/lib/layout/action-bar/action-bar.component.d.ts +33 -0
- package/lib/layout/action-bar/button-enabled.directive.d.ts +25 -0
- package/lib/layout/container/container.component.d.ts +67 -0
- package/lib/layout/content/page-process-header/page-process-header/page-process-header.component.d.ts +101 -0
- package/lib/layout/content/page-process-header/page-process-header-title/page-process-header-title.component.d.ts +10 -0
- package/lib/layout/content/page-title/page-title.component.d.ts +22 -0
- package/lib/layout/directives/active-content-tab.directive.d.ts +21 -0
- package/lib/layout/directives/calculate-full-height.directive.d.ts +21 -0
- package/lib/layout/directives/viewport-adaptive.directive.d.ts +7 -0
- package/lib/layout/force-line-break/force-line-break.directive.d.ts +8 -0
- package/lib/layout/interfaces/process-list.d.ts +9 -0
- package/lib/layout/layout-renderer/layout-renderer.component.d.ts +26 -0
- package/lib/layout/layout.module.d.ts +49 -0
- package/lib/layout/modal-fullscreen-container/modal-fullscreen-container.component.d.ts +47 -0
- package/lib/layout/panel/container/panel.component.d.ts +29 -0
- package/lib/layout/panel/title/panel-title.component.d.ts +23 -0
- package/lib/layout/panel/types/panel-types.d.ts +5 -0
- package/lib/layout/service/layout.service.d.ts +24 -0
- package/lib/layout/service/panel.service.d.ts +13 -0
- package/lib/lists/__mocks__/mock-container-pairs-caption.component.d.ts +5 -0
- package/lib/lists/__mocks__/mock-container-pairs-container.component.d.ts +5 -0
- package/lib/lists/__mocks__/mock-container-pairs-header.component.d.ts +5 -0
- package/lib/lists/__mocks__/mock-container-pairs-item.component.d.ts +5 -0
- package/lib/lists/__mocks__/mock-container-pairs-value.component.d.ts +5 -0
- package/lib/lists/__mocks__/mock-list.module.d.ts +35 -0
- package/lib/lists/__mocks__/mock-status-error.component.d.ts +5 -0
- package/lib/lists/__mocks__/mock-status-pairs-caption.component.d.ts +5 -0
- package/lib/lists/__mocks__/mock-status-pairs-item.component.d.ts +5 -0
- package/lib/lists/__mocks__/mock-status-pairs-value.component.d.ts +5 -0
- package/lib/lists/__mocks__/mock-status-pairs.component.d.ts +5 -0
- package/lib/lists/__mocks__/mock-vertical-pairs-caption.component.d.ts +6 -0
- package/lib/lists/__mocks__/mock-vertical-pairs-item.component.d.ts +5 -0
- package/lib/lists/__mocks__/mock-vertical-pairs-value.component.d.ts +6 -0
- package/lib/lists/__mocks__/mock-vertical-pairs.component.d.ts +5 -0
- package/lib/lists/list.module.d.ts +45 -0
- package/lib/lists/model/list.interface.d.ts +5 -0
- package/lib/lists/pairs/container-pairs/container-pairs-caption/container-pairs-caption.component.d.ts +10 -0
- package/lib/lists/pairs/container-pairs/container-pairs-container/container-pairs-container.component.d.ts +24 -0
- package/lib/lists/pairs/container-pairs/container-pairs-header/container-pairs-header.component.d.ts +10 -0
- package/lib/lists/pairs/container-pairs/container-pairs-item/container-pairs-item.component.d.ts +11 -0
- package/lib/lists/pairs/container-pairs/container-pairs-value/container-pairs-value.component.d.ts +10 -0
- package/lib/lists/pairs/horizontal-pairs/horizontal-pairs-caption/horizontal-pairs-caption.component.d.ts +10 -0
- package/lib/lists/pairs/horizontal-pairs/horizontal-pairs-container/horizontal-pairs.component.d.ts +25 -0
- package/lib/lists/pairs/horizontal-pairs/horizontal-pairs-item/horizontal-pairs-item.component.d.ts +11 -0
- package/lib/lists/pairs/horizontal-pairs/horizontal-pairs-value/horizontal-pairs-value.component.d.ts +10 -0
- package/lib/lists/pairs/status-pairs/status-pairs-caption/status-pairs-caption.component.d.ts +10 -0
- package/lib/lists/pairs/status-pairs/status-pairs-container/status-pairs.component.d.ts +36 -0
- package/lib/lists/pairs/status-pairs/status-pairs-error/status-pairs-error.component.d.ts +16 -0
- package/lib/lists/pairs/status-pairs/status-pairs-item/status-pairs-item.component.d.ts +17 -0
- package/lib/lists/pairs/status-pairs/status-pairs-value/status-pairs-value.component.d.ts +10 -0
- package/lib/lists/pairs/vertical-pairs/vertical-pairs-caption/vertical-pairs-caption.component.d.ts +10 -0
- package/lib/lists/pairs/vertical-pairs/vertical-pairs-container/vertical-pairs.component.d.ts +25 -0
- package/lib/lists/pairs/vertical-pairs/vertical-pairs-item/vertical-pairs-item.component.d.ts +20 -0
- package/lib/lists/pairs/vertical-pairs/vertical-pairs-value/vertical-pairs-value.component.d.ts +10 -0
- package/lib/master-layout/__mocks__/mock-header-widget.component.d.ts +16 -0
- package/lib/master-layout/__mocks__/mock-master-layout-banner.component.d.ts +5 -0
- package/lib/master-layout/__mocks__/mock-master-layout-footer.component.d.ts +5 -0
- package/lib/master-layout/__mocks__/mock-master-layout-header.component.d.ts +15 -0
- package/lib/master-layout/__mocks__/mock-master-layout.component.d.ts +9 -0
- package/lib/master-layout/__mocks__/mock-master-layout.module.d.ts +18 -0
- package/lib/master-layout/header-widget/header-widget.component.d.ts +55 -0
- package/lib/master-layout/master-layout/master-layout.component.d.ts +48 -0
- package/lib/master-layout/master-layout-banner/master-layout-banner.component.d.ts +25 -0
- package/lib/master-layout/master-layout-footer/master-layout-footer.component.d.ts +10 -0
- package/lib/master-layout/master-layout-header/master-layout-header.component.d.ts +48 -0
- package/lib/master-layout/master-layout.module.d.ts +30 -0
- package/lib/master-layout/model/page-level.d.ts +5 -0
- package/lib/master-layout/model/service-navigation.d.ts +3 -0
- package/lib/master-layout/service/language-from-url.service.d.ts +14 -0
- package/lib/master-layout/service/master-layout.service.d.ts +16 -0
- package/lib/master-layout/service-navigation/service-navigation.component.d.ts +13 -0
- package/lib/navigation/stepper/__mocks__/mock-step-action.component.d.ts +16 -0
- package/lib/navigation/stepper/__mocks__/mock-step-item.component.d.ts +17 -0
- package/lib/navigation/stepper/__mocks__/mock-step.component.d.ts +18 -0
- package/lib/navigation/stepper/__mocks__/mock-stepper.component.d.ts +7 -0
- package/lib/navigation/stepper/__mocks__/mock-stepper.module.d.ts +16 -0
- package/lib/navigation/stepper/interfaces/stepper.d.ts +12 -0
- package/lib/navigation/stepper/step/step.component.d.ts +125 -0
- package/lib/navigation/stepper/step-action/step-action.component.d.ts +29 -0
- package/lib/navigation/stepper/step-item/step-item.component.d.ts +35 -0
- package/lib/navigation/stepper/stepper/stepper.component.d.ts +127 -0
- package/lib/navigation/stepper/stepper.module.d.ts +21 -0
- package/lib/navigation/tab-bar/__mocks__/mock-tab-bar.module.d.ts +12 -0
- package/lib/navigation/tab-bar/__mocks__/mock-tab-link.component.d.ts +7 -0
- package/lib/navigation/tab-bar/__mocks__/mock-tab-nav-bar.component.d.ts +5 -0
- package/lib/navigation/tab-bar/tab-bar.module.d.ts +13 -0
- package/lib/navigation/tab-bar/tab-link/tab-link.component.d.ts +26 -0
- package/lib/navigation/tab-bar/tab-nav-bar/tab-nav-bar.component.d.ts +11 -0
- package/lib/navigation/tabs/__mocks__/mock-tab-action.component.d.ts +11 -0
- package/lib/navigation/tabs/__mocks__/mock-tab-item.component.d.ts +17 -0
- package/lib/navigation/tabs/__mocks__/mock-tab-pending-tasks.component.d.ts +9 -0
- package/lib/navigation/tabs/__mocks__/mock-tab.component.d.ts +19 -0
- package/lib/navigation/tabs/__mocks__/mock-tabs-page-leave-handler.component.d.ts +7 -0
- package/lib/navigation/tabs/__mocks__/mock-tabs.component.d.ts +15 -0
- package/lib/navigation/tabs/__mocks__/mock-tabs.module.d.ts +20 -0
- package/lib/navigation/tabs/interfaces/tabs.interface.d.ts +27 -0
- package/lib/navigation/tabs/services/tabs.service.d.ts +25 -0
- package/lib/navigation/tabs/tab/tab.component.d.ts +79 -0
- package/lib/navigation/tabs/tab-action/tab-action.component.d.ts +16 -0
- package/lib/navigation/tabs/tab-item/tab-item.component.d.ts +34 -0
- package/lib/navigation/tabs/tab-pending-tasks/tab-pending-tasks.component.d.ts +21 -0
- package/lib/navigation/tabs/tabs/tabs.component.d.ts +81 -0
- package/lib/navigation/tabs/tabs.module.d.ts +22 -0
- package/lib/navigation-tiles/__mocks__/mock-navigation-tile.component.d.ts +7 -0
- package/lib/navigation-tiles/__mocks__/mock-navigation-tiles.component.d.ts +5 -0
- package/lib/navigation-tiles/__mocks__/mock-navigation-tiles.module.d.ts +11 -0
- package/lib/navigation-tiles/navigation-tile/navigation-tile.component.d.ts +22 -0
- package/lib/navigation-tiles/navigation-tiles/navigation-tiles.component.d.ts +17 -0
- package/lib/navigation-tiles/navigation-tiles.module.d.ts +14 -0
- package/lib/notifications/__mocks__/mock-notification.component.d.ts +10 -0
- package/lib/notifications/__mocks__/mock-notification.content.component.d.ts +5 -0
- package/lib/notifications/__mocks__/mock-notifications-service.service.d.ts +24 -0
- package/lib/notifications/__mocks__/mock-notifications.component.d.ts +6 -0
- package/lib/notifications/__mocks__/mock-notifications.module.d.ts +15 -0
- package/lib/notifications/directives/snackbar-listener.directive.d.ts +21 -0
- package/lib/notifications/interfaces/notifications.d.ts +119 -0
- package/lib/notifications/notification/notification.component.d.ts +498 -0
- package/lib/notifications/notification-content/notification-content.component.d.ts +8 -0
- package/lib/notifications/notifications/notifications.component.d.ts +19 -0
- package/lib/notifications/notifications.module.d.ts +23 -0
- package/lib/notifications/services/notifications-http-interceptor.service.d.ts +24 -0
- package/lib/notifications/services/notifications-service.service.d.ts +32 -0
- package/lib/notifications/services/os-notifications/desktop-notifications.service.d.ts +19 -0
- package/lib/notifications/services/os-notifications/os-notifications.service.d.ts +12 -0
- package/lib/notifications/services/snackbar.service.d.ts +20 -0
- package/lib/notifications/snackbar/snackbar.component.d.ts +15 -0
- package/lib/page/__mocks__/mock-page-footer.component.d.ts +5 -0
- package/lib/page/__mocks__/mock-page-header.component.d.ts +5 -0
- package/lib/page/__mocks__/mock-page.component.d.ts +6 -0
- package/lib/page/__mocks__/mock-page.module.d.ts +12 -0
- package/lib/page/cancel-confirmation-dialog/page-cancel-confirmation-dialog.component.d.ts +14 -0
- package/lib/page/control-panel/page-control-panel.component.d.ts +46 -0
- package/lib/page/footer/page-footer-custom-content.directive.d.ts +11 -0
- package/lib/page/footer/page-footer.component.d.ts +18 -0
- package/lib/page/info-banner/page-info-banner.component.d.ts +93 -0
- package/lib/page/model/page-config.interface.d.ts +494 -0
- package/lib/page/model/page-control-panel-config.interface.d.ts +23 -0
- package/lib/page/model/page-footer-action.interface.d.ts +45 -0
- package/lib/page/model/page-header-facet.interface.d.ts +85 -0
- package/lib/page/model/page-info-banner.interface.d.ts +28 -0
- package/lib/page/model/page-object-resolver.d.ts +48 -0
- package/lib/page/object-header/context-select-dialog/context-select-dialog.component.d.ts +34 -0
- package/lib/page/object-header/dynamic-facet/dynamic-facet.component.d.ts +21 -0
- package/lib/page/object-header/dynamic-facet/dynamic-facet.directive.d.ts +8 -0
- package/lib/page/object-header/dynamic-facets.service.d.ts +11 -0
- package/lib/page/object-header/facets/crititcality-facet/criticality-facet.component.d.ts +11 -0
- package/lib/page/object-header/facets/date-facet/date-facet.component.d.ts +9 -0
- package/lib/page/object-header/facets/multi-select-facet/multi-select-facet.component.d.ts +10 -0
- package/lib/page/object-header/facets/progress-facet/progress-facet.component.d.ts +9 -0
- package/lib/page/object-header/facets/references-facet/references-facet.component.d.ts +12 -0
- package/lib/page/object-header/facets/single-select-facet/single-select-facet.component.d.ts +10 -0
- package/lib/page/object-header/facets/status-facet/status-facet.component.d.ts +10 -0
- package/lib/page/object-header/facets/value-facet/value-facet.component.d.ts +9 -0
- package/lib/page/object-header/page-object-header.component.d.ts +79 -0
- package/lib/page/page.component.d.ts +445 -0
- package/lib/page/page.module.d.ts +52 -0
- package/lib/page/shared/directives/connect-form-state-to-page.directive.d.ts +47 -0
- package/lib/page/shared/services/context.service.d.ts +50 -0
- package/lib/page/shared/services/form-group-manager.service.d.ts +86 -0
- package/lib/page/shared/services/page-footer.service.d.ts +23 -0
- package/lib/page/shared/services/page-store.service.d.ts +15 -0
- package/lib/page/shared/services/page-submit-action.service.d.ts +22 -0
- package/lib/page/shared/services/resolver-trigger.service.d.ts +13 -0
- package/lib/page-stepper/adaptors/page-stepper-adapter.directive.d.ts +46 -0
- package/lib/page-stepper/cancel-dialog/page-stepper-cancel-dialog.component.d.ts +9 -0
- package/lib/page-stepper/header/page-step-header.component.d.ts +32 -0
- package/lib/page-stepper/model/page-step-resolver.token.d.ts +3 -0
- package/lib/page-stepper/model/page-step.resolver.d.ts +10 -0
- package/lib/page-stepper/model/qd-page-stepper-config.d.ts +86 -0
- package/lib/page-stepper/page-step/page-step.component.d.ts +32 -0
- package/lib/page-stepper/page-stepper.component.d.ts +62 -0
- package/lib/page-stepper/page-stepper.module.d.ts +26 -0
- package/lib/page-tabs/adaptors/page-tabs-adapter.directive.d.ts +48 -0
- package/lib/page-tabs/model/page-tabs-config.d.ts +125 -0
- package/lib/page-tabs/model/page-tabs-selection-event.d.ts +22 -0
- package/lib/page-tabs/page-tab/page-tab.component.d.ts +33 -0
- package/lib/page-tabs/page-tab-header/counter/page-tab-header-counters.component.d.ts +13 -0
- package/lib/page-tabs/page-tab-header/page-tab-header.component.d.ts +34 -0
- package/lib/page-tabs/page-tabs.component.d.ts +154 -0
- package/lib/page-tabs/page-tabs.module.d.ts +22 -0
- package/lib/panel-section/actions/panel-section-actions.component.d.ts +15 -0
- package/lib/panel-section/model/panel-section-config.interface.d.ts +68 -0
- package/lib/panel-section/model/panel-section-status-config.interface.d.ts +12 -0
- package/lib/panel-section/model/panel-section-text-paragraph-config.interface.d.ts +15 -0
- package/lib/panel-section/panel-section.component.d.ts +55 -0
- package/lib/panel-section/panel-section.module.d.ts +19 -0
- package/lib/panel-section/services/panel-section-action.service.d.ts +9 -0
- package/lib/panel-section/status/panel-section-status.component.d.ts +8 -0
- package/lib/panel-section/text-paragraph/panel-section-text-paragraph.component.d.ts +10 -0
- package/lib/place-holder/__mocks__/mock-place-holder.component.d.ts +6 -0
- package/lib/place-holder/__mocks__/mock-place-holder.module.d.ts +9 -0
- package/lib/place-holder/place-holder/place-holder.component.d.ts +11 -0
- package/lib/place-holder/place-holder.module.d.ts +10 -0
- package/lib/progress-bar/__mocks__/mock-indeterminate-progress-bar.component.d.ts +5 -0
- package/lib/progress-bar/__mocks__/mock-percentage-progress-bar.component.d.ts +8 -0
- package/lib/progress-bar/__mocks__/mock-progress-bar.module.d.ts +12 -0
- package/lib/progress-bar/indeterminate/indeterminate-progress-bar.component.d.ts +8 -0
- package/lib/progress-bar/percentage/percentage-progress-bar.component.d.ts +24 -0
- package/lib/progress-bar/progress-bar.module.d.ts +13 -0
- package/lib/qd-ui-mock.module.d.ts +33 -0
- package/lib/qd-ui.module.d.ts +47 -0
- package/lib/quick-edit/model/quick-edit-config.d.ts +171 -0
- package/lib/quick-edit/model/quick-edit-data.d.ts +13 -0
- package/lib/quick-edit/qd-ng-for.directive.d.ts +16 -0
- package/lib/quick-edit/quick-edit.component.d.ts +198 -0
- package/lib/quick-edit/quick-edit.module.d.ts +23 -0
- package/lib/search/__mocks__/mock-search.component.d.ts +7 -0
- package/lib/search/__mocks__/mock-search.module.d.ts +10 -0
- package/lib/search/helpers/search-update.helper.d.ts +4 -0
- package/lib/search/model/search-options.interface.d.ts +133 -0
- package/lib/search/model/search-post-body.d.ts +10 -0
- package/lib/search/model/search-store.interface.d.ts +10 -0
- package/lib/search/search.component.d.ts +84 -0
- package/lib/search/search.module.d.ts +18 -0
- package/lib/search/services/search-router-connector.service.d.ts +25 -0
- package/lib/search/services/search-store.service.d.ts +14 -0
- package/lib/search/services/search.service.d.ts +27 -0
- package/lib/search/store/search.actions.d.ts +25 -0
- package/lib/search/store/search.reducer.d.ts +3 -0
- package/lib/search/store/search.selector.d.ts +14 -0
- package/lib/section/__mocks__/mock-section-toolbar.component.d.ts +6 -0
- package/lib/section/__mocks__/mock-section.component.d.ts +6 -0
- package/lib/section/__mocks__/mock-section.module.d.ts +11 -0
- package/lib/section/adaptors/section-adapter.directive.d.ts +46 -0
- package/lib/section/connectors/table/connector-table-context.directive.d.ts +122 -0
- package/lib/section/connectors/table/connector-table-filter.directive.d.ts +52 -0
- package/lib/section/connectors/table/connector-table-search.directive.d.ts +51 -0
- package/lib/section/model/section-config.interface.d.ts +243 -0
- package/lib/section/model/toolbar-components.interface.d.ts +27 -0
- package/lib/section/section.component.d.ts +115 -0
- package/lib/section/section.module.d.ts +28 -0
- package/lib/section/services/section-toolbar-action.service.d.ts +10 -0
- package/lib/section/services/toolbar-components.service.d.ts +9 -0
- package/lib/section/toolbar/action/section-toolbar-action.component.d.ts +35 -0
- package/lib/section/toolbar/section-toolbar.component.d.ts +23 -0
- package/lib/shell/__mocks__/mock-counter-badge.component.d.ts +5 -0
- package/lib/shell/__mocks__/mock-header-widget-desktop.component.d.ts +15 -0
- package/lib/shell/__mocks__/mock-header-widget-mobile.component.d.ts +15 -0
- package/lib/shell/__mocks__/mock-shell-footer.component.d.ts +5 -0
- package/lib/shell/__mocks__/mock-shell-header-banner.component.d.ts +5 -0
- package/lib/shell/__mocks__/mock-shell-header-search.component.d.ts +5 -0
- package/lib/shell/__mocks__/mock-shell-header-widget.component.d.ts +6 -0
- package/lib/shell/__mocks__/mock-shell-header.component.d.ts +6 -0
- package/lib/shell/__mocks__/mock-shell-toolbar-item.component.d.ts +6 -0
- package/lib/shell/__mocks__/mock-shell-toolbar.component.d.ts +5 -0
- package/lib/shell/__mocks__/mock-shell.component.d.ts +6 -0
- package/lib/shell/__mocks__/mock-shell.module.d.ts +28 -0
- package/lib/shell/footer/shell-footer.component.d.ts +10 -0
- package/lib/shell/header/banner/shell-header-banner.component.d.ts +11 -0
- package/lib/shell/header/counter-badge/counter-badge.component.d.ts +9 -0
- package/lib/shell/header/search/shell-header-search.component.d.ts +7 -0
- package/lib/shell/header/service-navigation/shell-service-navigation.component.d.ts +43 -0
- package/lib/shell/header/service-navigation/shell-service-navigation.module.d.ts +8 -0
- package/lib/shell/header/shell-header.component.d.ts +71 -0
- package/lib/shell/header/toolbar/shell-toolbar.component.d.ts +10 -0
- package/lib/shell/header/toolbar/toolbar-item/shell-toolbar-item.component.d.ts +11 -0
- package/lib/shell/header/widget/shell-header-widget.component.d.ts +33 -0
- package/lib/shell/left/navigation/link/shell-left-navigation-link.component.d.ts +8 -0
- package/lib/shell/left/navigation/shell-left-navigation.component.d.ts +7 -0
- package/lib/shell/left/shell-left.component.d.ts +11 -0
- package/lib/shell/model/default-config.d.ts +2 -0
- package/lib/shell/model/eportal.interface.d.ts +19 -0
- package/lib/shell/model/route-data.interface.d.ts +2 -0
- package/lib/shell/model/shell-config.interface.d.ts +80 -0
- package/lib/shell/model/shell-footer-copyright-info.interface.d.ts +15 -0
- package/lib/shell/model/shell-header-widget-config.interface.d.ts +307 -0
- package/lib/shell/model/shell-navigation-config.interface.d.ts +24 -0
- package/lib/shell/model/shell-service-navigation-config.interface.d.ts +341 -0
- package/lib/shell/model/shell-toolbar-config.interface.d.ts +21 -0
- package/lib/shell/right/notification/shell-notification.component.d.ts +31 -0
- package/lib/shell/right/notifications/shell-notifications.component.d.ts +13 -0
- package/lib/shell/right/shell-right.component.d.ts +19 -0
- package/lib/shell/right/toolbar/shell-right-toolbar.component.d.ts +12 -0
- package/lib/shell/services/banner.service.d.ts +11 -0
- package/lib/shell/services/eportal-language.service.d.ts +14 -0
- package/lib/shell/services/navigation.service.d.ts +23 -0
- package/lib/shell/services/pams-environment.service.d.ts +8 -0
- package/lib/shell/services/service-navigation.service.d.ts +58 -0
- package/lib/shell/services/shell-header-minimization.service.d.ts +18 -0
- package/lib/shell/services/shell-header-widget.service.d.ts +33 -0
- package/lib/shell/services/shell-left.service.d.ts +15 -0
- package/lib/shell/services/shell-right.service.d.ts +23 -0
- package/lib/shell/shell.component.d.ts +102 -0
- package/lib/shell/shell.module.d.ts +33 -0
- package/lib/spinner/spinner.component.d.ts +5 -0
- package/lib/spinner/spinner.module.d.ts +10 -0
- package/lib/status-indicator/__mocks__/mock-status-indicator-cpation.component.d.ts +5 -0
- package/lib/status-indicator/__mocks__/mock-status-indicator-item.component.d.ts +8 -0
- package/lib/status-indicator/__mocks__/mock-status-indicator.component.d.ts +11 -0
- package/lib/status-indicator/__mocks__/mock-status-indicator.module.d.ts +14 -0
- package/lib/status-indicator/interfaces/status-indicator.interface.d.ts +8 -0
- package/lib/status-indicator/status-indicator/status-indicator.component.d.ts +27 -0
- package/lib/status-indicator/status-indicator-caption/status-indicator-caption.component.d.ts +8 -0
- package/lib/status-indicator/status-indicator-item/status-indicator-item.component.d.ts +20 -0
- package/lib/status-indicator/status-indicator.module.d.ts +12 -0
- package/lib/table/__mocks__/mock-sort.component.d.ts +9 -0
- package/lib/table/__mocks__/mock-table-body-plain.component.d.ts +8 -0
- package/lib/table/__mocks__/mock-table-body-tree.component.d.ts +8 -0
- package/lib/table/__mocks__/mock-table-data-blank.component.d.ts +5 -0
- package/lib/table/__mocks__/mock-table-data-boolean.component.d.ts +6 -0
- package/lib/table/__mocks__/mock-table-data-date.component.d.ts +7 -0
- package/lib/table/__mocks__/mock-table-data-integer.component.d.ts +6 -0
- package/lib/table/__mocks__/mock-table-data-link.component.d.ts +9 -0
- package/lib/table/__mocks__/mock-table-data-progress.component.d.ts +6 -0
- package/lib/table/__mocks__/mock-table-data-text.component.d.ts +8 -0
- package/lib/table/__mocks__/mock-table-empty-state.component.d.ts +8 -0
- package/lib/table/__mocks__/mock-table-head.component.d.ts +7 -0
- package/lib/table/__mocks__/mock-table-paginator-page-size.directive.d.ts +6 -0
- package/lib/table/__mocks__/mock-table-paginator.component.d.ts +7 -0
- package/lib/table/__mocks__/mock-table.component.d.ts +14 -0
- package/lib/table/__mocks__/mock-table.module.d.ts +24 -0
- package/lib/table/body/table-body.component.d.ts +22 -0
- package/lib/table/empty-state/table-empty-state.component.d.ts +12 -0
- package/lib/table/head/table-head.component.d.ts +24 -0
- package/lib/table/helpers/spring-tools.d.ts +5 -0
- package/lib/table/model/connectors-state.enum.d.ts +5 -0
- package/lib/table/model/paginator-direction.enum.d.ts +6 -0
- package/lib/table/model/sort-direction.enum.d.ts +5 -0
- package/lib/table/model/table-config-actions.interface.d.ts +164 -0
- package/lib/table/model/table-config-content.interface.d.ts +199 -0
- package/lib/table/model/table-config.interface.d.ts +261 -0
- package/lib/table/model/table-data-resolver.d.ts +75 -0
- package/lib/table/model/table-data-resolver.token.d.ts +5 -0
- package/lib/table/model/table-data.interface.d.ts +78 -0
- package/lib/table/model/table-row-selection.interface.d.ts +11 -0
- package/lib/table/model/table-store.interface.d.ts +54 -0
- package/lib/table/paginator/page-size/table-paginator-page-size.component.d.ts +36 -0
- package/lib/table/paginator/page-size/table-paginator-page-size.directive.d.ts +22 -0
- package/lib/table/paginator/scroll-to-pagination.directive.d.ts +27 -0
- package/lib/table/paginator/table-paginator.component.d.ts +43 -0
- package/lib/table/row/actions/secondary/menu/table-row-actions-secondary-menu.component.d.ts +34 -0
- package/lib/table/row/selection/table-row-selection.component.d.ts +17 -0
- package/lib/table/row/table-row.component.d.ts +34 -0
- package/lib/table/services/empty-state.service.d.ts +12 -0
- package/lib/table/services/external-action-result.service.d.ts +8 -0
- package/lib/table/services/filling-width.service.d.ts +38 -0
- package/lib/table/services/resolver.service.d.ts +25 -0
- package/lib/table/services/responsive-row.service.d.ts +27 -0
- package/lib/table/services/row-selection.service.d.ts +24 -0
- package/lib/table/services/secondary-actions.service.d.ts +10 -0
- package/lib/table/sort/table-sort.component.d.ts +38 -0
- package/lib/table/store/table-store-selector.service.d.ts +47 -0
- package/lib/table/store/table-store.service.d.ts +64 -0
- package/lib/table/store/table-update.helper.d.ts +22 -0
- package/lib/table/store/table.actions.d.ts +153 -0
- package/lib/table/store/table.reducer.d.ts +3 -0
- package/lib/table/table.component.d.ts +248 -0
- package/lib/table/table.module.d.ts +42 -0
- package/lib/text-section/__mocks__/mock-text-section-headline.component.d.ts +5 -0
- package/lib/text-section/__mocks__/mock-text-section-paragraph.component.d.ts +5 -0
- package/lib/text-section/__mocks__/mock-text-section.component.d.ts +5 -0
- package/lib/text-section/__mocks__/mock-text-section.module.d.ts +13 -0
- package/lib/text-section/text-section-headline/text-section-headline.component.d.ts +10 -0
- package/lib/text-section/text-section-paragraph/text-section-paragraph.component.d.ts +10 -0
- package/lib/text-section/text-section.component.d.ts +22 -0
- package/lib/text-section/text-section.module.d.ts +14 -0
- package/lib/tiles/__mocks__/mock-tile-button-list.component.d.ts +5 -0
- package/lib/tiles/__mocks__/mock-tile-text-list-item.component.d.ts +5 -0
- package/lib/tiles/__mocks__/mock-tile-text-list.component.d.ts +5 -0
- package/lib/tiles/__mocks__/mock-tile-title.component.d.ts +5 -0
- package/lib/tiles/__mocks__/mock-tile.component.d.ts +6 -0
- package/lib/tiles/__mocks__/mock-tiles-container-title.component.d.ts +5 -0
- package/lib/tiles/__mocks__/mock-tiles-container.component.d.ts +6 -0
- package/lib/tiles/__mocks__/mock-tiles.module.d.ts +21 -0
- package/lib/tiles/model/tile-config.d.ts +24 -0
- package/lib/tiles/model/tiles-config.d.ts +9 -0
- package/lib/tiles/tile/tile.component.d.ts +22 -0
- package/lib/tiles/tile-button-list/tile-button-list.component.d.ts +5 -0
- package/lib/tiles/tile-text-list/tile-text-list.component.d.ts +5 -0
- package/lib/tiles/tile-text-list-item/tile-text-list-item.component.d.ts +5 -0
- package/lib/tiles/tile-title/tile-title.component.d.ts +5 -0
- package/lib/tiles/tiles-title/tiles-title.component.d.ts +5 -0
- package/lib/tiles/tiles.component.d.ts +13 -0
- package/lib/tiles/tiles.module.d.ts +26 -0
- package/lib/tree/body/tree-body.component.d.ts +22 -0
- package/lib/tree/empty-state/tree-empty-state.component.d.ts +12 -0
- package/lib/tree/error/grouped-indices-not-consecutive.error.d.ts +3 -0
- package/lib/tree/head/tree-head.component.d.ts +24 -0
- package/lib/tree/model/tree-column-detail.interface.d.ts +52 -0
- package/lib/tree/model/tree-config-actions.interface.d.ts +57 -0
- package/lib/tree/model/tree-config.interface.d.ts +237 -0
- package/lib/tree/model/tree-data.interface.d.ts +43 -0
- package/lib/tree/row/actions/secondary/menu/tree-row-actions-secondary-menu.component.d.ts +32 -0
- package/lib/tree/row/tree-row.component.d.ts +27 -0
- package/lib/tree/services/row-expander.service.d.ts +53 -0
- package/lib/tree/services/tree-group.service.d.ts +27 -0
- package/lib/tree/services/tree-rows.service.d.ts +29 -0
- package/lib/tree/tree.component.d.ts +114 -0
- package/lib/tree/tree.module.d.ts +28 -0
- package/package.json +14 -7
- package/public-api.d.ts +80 -0
- package/src/assets/i18n/de.json +483 -0
- package/src/assets/i18n/en.json +414 -0
- package/src/assets/i18n/fr.json +336 -0
- package/src/assets/i18n/it.json +336 -0
- package/src/assets/styles/components/_components.all.scss +11 -0
- package/src/assets/styles/components/_components.button.scss +213 -0
- package/src/assets/styles/components/_components.chips.scss +205 -0
- package/src/assets/styles/components/_components.datePicker.scss +204 -0
- package/src/assets/styles/components/_components.dialog.scss +31 -0
- package/src/assets/styles/components/_components.grid.scss +37 -0
- package/src/assets/styles/components/_components.master-layout.scss +97 -0
- package/src/assets/styles/components/_components.menuPanel.scss +49 -0
- package/src/assets/styles/components/_components.paginator.scss +43 -0
- package/src/assets/styles/components/_components.radio-button.scss +17 -0
- package/src/assets/styles/components/_components.table.scss +230 -0
- package/src/assets/styles/components/forms/_components.forms.all.scss +8 -0
- package/src/assets/styles/components/forms/_components.forms.dropdown.scss +19 -0
- package/src/assets/styles/components/forms/_components.forms.inputFields.scss +260 -0
- package/src/assets/styles/components/forms/_components.forms.selectBox.scss +245 -0
- package/src/assets/styles/components/forms/_components.forms.textField.scss +126 -0
- package/src/assets/styles/elements/_elements.all.scss +1 -0
- package/src/assets/styles/generic/_generic.all.scss +6 -0
- package/src/assets/styles/generic/_generic.checkbox.scss +1 -0
- package/src/assets/styles/generic/_generic.fonts.scss +7 -0
- package/src/assets/styles/generic/_generic.layout.scss +19 -0
- package/src/assets/styles/generic/_generic.material.scss +0 -0
- package/src/assets/styles/generic/_generic.normalize.scss +356 -0
- package/src/assets/styles/generic/_generic.resetButton.scss +6 -0
- package/src/assets/styles/index.scss +9 -0
- package/src/assets/styles/objects/_objects.a11y.scss +24 -0
- package/src/assets/styles/objects/_objects.all.scss +3 -0
- package/src/assets/styles/objects/_objects.forceLineBreak.scss +7 -0
- package/src/assets/styles/objects/_objects.hasTooltip.scss +3 -0
- package/src/assets/styles/settings/_setting.all.scss +13 -0
- package/src/assets/styles/settings/_settings.colors.scss +50 -0
- package/src/assets/styles/settings/_settings.fonts.scss +39 -0
- package/src/assets/styles/settings/_settings.formFields.scss +4 -0
- package/src/assets/styles/settings/_settings.globalVars.scss +18 -0
- package/src/assets/styles/settings/_settings.grid.scss +43 -0
- package/src/assets/styles/settings/_settings.horizontalSpacing.scss +5 -0
- package/src/assets/styles/settings/_settings.iconFont.scss +4 -0
- package/src/assets/styles/settings/_settings.layoutHeader.scss +15 -0
- package/src/assets/styles/settings/_settings.material.scss +98 -0
- package/src/assets/styles/settings/_settings.page.scss +4 -0
- package/src/assets/styles/settings/_settings.shell.scss +6 -0
- package/src/assets/styles/settings/_settings.variables.scss +17 -0
- package/src/assets/styles/settings/_settings.verticalRythm.scss +6 -0
- package/src/assets/styles/tools/_tools.all.scss +15 -0
- package/src/assets/styles/tools/_tools.boxShadowOverlay.scss +6 -0
- package/src/assets/styles/tools/_tools.breakpoints.scss +117 -0
- package/src/assets/styles/tools/_tools.colorMapper.scss +21 -0
- package/src/assets/styles/tools/_tools.convertPxToRem.scss +60 -0
- package/src/assets/styles/tools/_tools.fonts.scss +51 -0
- package/src/assets/styles/tools/_tools.getBaseFontSize.scss +15 -0
- package/src/assets/styles/tools/_tools.grid.scss +163 -0
- package/src/assets/styles/tools/_tools.layoutHeader.scss +15 -0
- package/src/assets/styles/tools/_tools.layoutWidth.scss +18 -0
- package/src/assets/styles/tools/_tools.mixins.scss +99 -0
- package/src/assets/styles/tools/_tools.overlayBackdrop.scss +12 -0
- package/src/assets/styles/tools/_tools.rwdDisabled.scss +33 -0
- package/src/assets/styles/tools/_tools.text.scss +19 -0
- package/src/assets/styles/tools/_tools.toolTip.scss +17 -0
- package/src/assets/styles/utilities/_utilities.all.scss +1 -0
- package/src/assets/styles/utilities/_utilities.display.scss +3 -0
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
// @ts-strict-ignore
|
|
2
|
+
import { Injectable } from '@angular/core';
|
|
3
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
4
|
+
import { of, ReplaySubject, take } from 'rxjs';
|
|
5
|
+
import { Store } from '@ngrx/store';
|
|
6
|
+
import { QdFilterActions } from '../store/filter.actions';
|
|
7
|
+
import { QdFilterSelector, selectItem } from '../store/filter.selector';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
import * as i1 from "@ngrx/store";
|
|
10
|
+
import * as i2 from "@ngx-translate/core";
|
|
11
|
+
export class QdFilterService {
|
|
12
|
+
store;
|
|
13
|
+
translateService;
|
|
14
|
+
queryStringSubjects = [];
|
|
15
|
+
filterUrlParameterSubjects = [];
|
|
16
|
+
postBodySubjects = [];
|
|
17
|
+
constructor(store, translateService) {
|
|
18
|
+
this.store = store;
|
|
19
|
+
this.translateService = translateService;
|
|
20
|
+
}
|
|
21
|
+
getItems$(filterId, categoryIndex) {
|
|
22
|
+
return this.store.select(QdFilterSelector.selectItems, {
|
|
23
|
+
filterId,
|
|
24
|
+
categoryIndex
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
getItemById$(filterId, categoryIndex, itemIndex) {
|
|
28
|
+
return this.store.select(selectItem(filterId, categoryIndex, itemIndex));
|
|
29
|
+
}
|
|
30
|
+
getMinDate$(filterId, categoryIndex, itemIndex) {
|
|
31
|
+
return itemIndex === 1
|
|
32
|
+
? this.store.select(QdFilterSelector.selectItemDate, {
|
|
33
|
+
categoryIndex,
|
|
34
|
+
itemIndex: 0,
|
|
35
|
+
filterId
|
|
36
|
+
})
|
|
37
|
+
: of(undefined);
|
|
38
|
+
}
|
|
39
|
+
getMaxDate$(filterId, categoryIndex, itemIndex) {
|
|
40
|
+
return itemIndex === 0
|
|
41
|
+
? this.store.select(QdFilterSelector.selectItemDate, {
|
|
42
|
+
categoryIndex,
|
|
43
|
+
itemIndex: 1,
|
|
44
|
+
filterId
|
|
45
|
+
})
|
|
46
|
+
: of(undefined);
|
|
47
|
+
}
|
|
48
|
+
getQueryString$(filterId) {
|
|
49
|
+
return this.getQueryStringSubject(filterId).asObservable();
|
|
50
|
+
}
|
|
51
|
+
getFilterUrlParameter$(filterId) {
|
|
52
|
+
return this.getFilterUrlParameterSubject(filterId).asObservable();
|
|
53
|
+
}
|
|
54
|
+
getPostBody$(filterId) {
|
|
55
|
+
return this.getPostBodySubject(filterId).asObservable();
|
|
56
|
+
}
|
|
57
|
+
emitQueryString(filterId, outputLegacyQueryStringFormat) {
|
|
58
|
+
this.getCurrentQueryString(filterId, outputLegacyQueryStringFormat)
|
|
59
|
+
.pipe(take(1))
|
|
60
|
+
.subscribe(queryString => {
|
|
61
|
+
this.getQueryStringSubject(filterId).next(queryString);
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
getCurrentQueryString(filterId, outputLegacyQueryStringFormat) {
|
|
65
|
+
return this.store.select(state => QdFilterSelector.selectQueryString(state, { filterId, outputLegacyQueryStringFormat }));
|
|
66
|
+
}
|
|
67
|
+
emitFilterUrlParameterString(filterId) {
|
|
68
|
+
this.getCurrentFilterUrlParameterString(filterId)
|
|
69
|
+
.pipe(take(1))
|
|
70
|
+
.subscribe(queryString => {
|
|
71
|
+
this.getFilterUrlParameterSubject(filterId).next(queryString);
|
|
72
|
+
});
|
|
73
|
+
}
|
|
74
|
+
getCurrentFilterUrlParameterString(filterId) {
|
|
75
|
+
return this.store.select(state => QdFilterSelector.selectFilterUrlParameter(state, { filterId }));
|
|
76
|
+
}
|
|
77
|
+
emitPostBody(filterId) {
|
|
78
|
+
this.getCurrentPostBody(filterId)
|
|
79
|
+
.pipe(take(1))
|
|
80
|
+
.subscribe(postBody => {
|
|
81
|
+
this.getPostBodySubject(filterId).next(postBody);
|
|
82
|
+
});
|
|
83
|
+
}
|
|
84
|
+
getCurrentPostBody(filterId) {
|
|
85
|
+
return this.store.select(state => QdFilterSelector.selectPostBody(state, { filterId }));
|
|
86
|
+
}
|
|
87
|
+
/**
|
|
88
|
+
* State Selector
|
|
89
|
+
*/
|
|
90
|
+
selectFilterDataById$(filterId) {
|
|
91
|
+
return this.store.select(QdFilterSelector.selectFilterDataById, { filterId });
|
|
92
|
+
}
|
|
93
|
+
selectHasActiveCategory$(filterId) {
|
|
94
|
+
return this.store.select(QdFilterSelector.selectHasActiveCategory, { filterId });
|
|
95
|
+
}
|
|
96
|
+
getCategoryById$(filterId, categoryIndex) {
|
|
97
|
+
return this.store.select(QdFilterSelector.selectCategoryById, {
|
|
98
|
+
filterId,
|
|
99
|
+
categoryIndex
|
|
100
|
+
});
|
|
101
|
+
}
|
|
102
|
+
getFilterCategoryValue$(filterId, categoryIndex) {
|
|
103
|
+
return this.store.select(QdFilterSelector.selectFilterCategoryValue, {
|
|
104
|
+
filterId,
|
|
105
|
+
categoryIndex
|
|
106
|
+
});
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* Action dispatcher
|
|
110
|
+
*/
|
|
111
|
+
initFilterState(filterId, filterData) {
|
|
112
|
+
this.store.dispatch(QdFilterActions.initFilterState({ filterId, filterData }));
|
|
113
|
+
}
|
|
114
|
+
updateItem(filterId, categoryIndex, itemIndex, value) {
|
|
115
|
+
this.store.dispatch(QdFilterActions.updateItem({
|
|
116
|
+
filterId,
|
|
117
|
+
categoryIndex,
|
|
118
|
+
itemIndex,
|
|
119
|
+
value
|
|
120
|
+
}));
|
|
121
|
+
}
|
|
122
|
+
updateCategoryItems(filterId, categoryIndex, items) {
|
|
123
|
+
this.store.dispatch(QdFilterActions.updateCategoryItems({
|
|
124
|
+
filterId,
|
|
125
|
+
categoryIndex,
|
|
126
|
+
items
|
|
127
|
+
}));
|
|
128
|
+
}
|
|
129
|
+
setItemIsActive(filterId, categoryIndex, itemIndex, isActive) {
|
|
130
|
+
this.store.dispatch(QdFilterActions.setItemIsActive({
|
|
131
|
+
categoryIndex,
|
|
132
|
+
itemIndex,
|
|
133
|
+
isActive,
|
|
134
|
+
filterId
|
|
135
|
+
}));
|
|
136
|
+
}
|
|
137
|
+
setItemsStateSingleSelect(filterId, categoryIndex, itemIndex) {
|
|
138
|
+
this.store.dispatch(QdFilterActions.setItemsStateSingleSelect({
|
|
139
|
+
categoryIndex,
|
|
140
|
+
itemIndex,
|
|
141
|
+
filterId
|
|
142
|
+
}));
|
|
143
|
+
}
|
|
144
|
+
hideShowItems(filterId, categoryIndex, filterKey) {
|
|
145
|
+
this.store.dispatch(QdFilterActions.hideShowItems({
|
|
146
|
+
filterId,
|
|
147
|
+
categoryIndex,
|
|
148
|
+
filterKey,
|
|
149
|
+
translateFunc: key => this.translateService.instant(key)
|
|
150
|
+
}));
|
|
151
|
+
}
|
|
152
|
+
updateCategoryTranslation(filterId, filterData) {
|
|
153
|
+
this.store.dispatch(QdFilterActions.updateCategoryTranslation({
|
|
154
|
+
filterId,
|
|
155
|
+
filterData
|
|
156
|
+
}));
|
|
157
|
+
}
|
|
158
|
+
setFilterSelection(filterId, filterSelection) {
|
|
159
|
+
this.store.dispatch(QdFilterActions.setFilterSelection({
|
|
160
|
+
filterId,
|
|
161
|
+
filterSelection
|
|
162
|
+
}));
|
|
163
|
+
}
|
|
164
|
+
resetEmissionReplaySubjects(filterId) {
|
|
165
|
+
this.queryStringSubjects[filterId] = new ReplaySubject(1);
|
|
166
|
+
this.postBodySubjects[filterId] = new ReplaySubject(1);
|
|
167
|
+
this.filterUrlParameterSubjects[filterId] = new ReplaySubject(1);
|
|
168
|
+
}
|
|
169
|
+
setCategoryFilter(filterId, categoryIndex, filter) {
|
|
170
|
+
this.store.dispatch(QdFilterActions.setCategoryFilter({
|
|
171
|
+
filterId,
|
|
172
|
+
categoryIndex,
|
|
173
|
+
filter
|
|
174
|
+
}));
|
|
175
|
+
}
|
|
176
|
+
resetCategoryFilter(filterId, categoryIndex) {
|
|
177
|
+
this.store.dispatch(QdFilterActions.resetCategoryFilter({
|
|
178
|
+
filterId,
|
|
179
|
+
categoryIndex
|
|
180
|
+
}));
|
|
181
|
+
}
|
|
182
|
+
getQueryStringSubject(filterId) {
|
|
183
|
+
if (!this.queryStringSubjects[filterId])
|
|
184
|
+
this.queryStringSubjects[filterId] = new ReplaySubject(1);
|
|
185
|
+
return this.queryStringSubjects[filterId];
|
|
186
|
+
}
|
|
187
|
+
getFilterUrlParameterSubject(filterId) {
|
|
188
|
+
if (!this.filterUrlParameterSubjects[filterId])
|
|
189
|
+
this.filterUrlParameterSubjects[filterId] = new ReplaySubject(1);
|
|
190
|
+
return this.filterUrlParameterSubjects[filterId];
|
|
191
|
+
}
|
|
192
|
+
getPostBodySubject(filterId) {
|
|
193
|
+
if (!this.postBodySubjects[filterId])
|
|
194
|
+
this.postBodySubjects[filterId] = new ReplaySubject(1);
|
|
195
|
+
return this.postBodySubjects[filterId];
|
|
196
|
+
}
|
|
197
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: QdFilterService, deps: [{ token: i1.Store }, { token: i2.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
198
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: QdFilterService, providedIn: 'root' });
|
|
199
|
+
}
|
|
200
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: QdFilterService, decorators: [{
|
|
201
|
+
type: Injectable,
|
|
202
|
+
args: [{
|
|
203
|
+
providedIn: 'root'
|
|
204
|
+
}]
|
|
205
|
+
}], ctorParameters: () => [{ type: i1.Store }, { type: i2.TranslateService }] });
|
|
206
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmlsdGVyLnNlcnZpY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL3FkLXVpL3NyYy9saWIvZmlsdGVyL2ZpbHRlci1zZXJ2aWNlL2ZpbHRlci5zZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLG9CQUFvQjtBQUNwQixPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzNDLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBQ3ZELE9BQU8sRUFBYyxFQUFFLEVBQUUsYUFBYSxFQUFXLElBQUksRUFBRSxNQUFNLE1BQU0sQ0FBQztBQUNwRSxPQUFPLEVBQUUsS0FBSyxFQUFFLE1BQU0sYUFBYSxDQUFDO0FBSXBDLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUMxRCxPQUFPLEVBQUUsZ0JBQWdCLEVBQWlCLFVBQVUsRUFBRSxNQUFNLDBCQUEwQixDQUFDOzs7O0FBS3ZGLE1BQU0sT0FBTyxlQUFlO0lBS0c7SUFBNkM7SUFKbEUsbUJBQW1CLEdBQTRCLEVBQUUsQ0FBQztJQUNsRCwwQkFBMEIsR0FBNEIsRUFBRSxDQUFDO0lBQ3pELGdCQUFnQixHQUEwQyxFQUFFLENBQUM7SUFFckUsWUFBNkIsS0FBMkIsRUFBa0IsZ0JBQWtDO1FBQS9FLFVBQUssR0FBTCxLQUFLLENBQXNCO1FBQWtCLHFCQUFnQixHQUFoQixnQkFBZ0IsQ0FBa0I7SUFBRyxDQUFDO0lBRWhILFNBQVMsQ0FBQyxRQUFRLEVBQUUsYUFBYTtRQUMvQixPQUFPLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLGdCQUFnQixDQUFDLFdBQVcsRUFBRTtZQUNyRCxRQUFRO1lBQ1IsYUFBYTtTQUNkLENBQUMsQ0FBQztJQUNMLENBQUM7SUFFRCxZQUFZLENBQUMsUUFBUSxFQUFFLGFBQWEsRUFBRSxTQUFTO1FBQzdDLE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FB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QUVPLHFCQUFxQixDQUFDLFFBQVE7UUFDcEMsSUFBSSxDQUFDLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxRQUFRLENBQUM7WUFBRSxJQUFJLENBQUMsbUJBQW1CLENBQUMsUUFBUSxDQUFDLEdBQUcsSUFBSSxhQUFhLENBQVMsQ0FBQyxDQUFDLENBQUM7UUFFM0csT0FBTyxJQUFJLENBQUMsbUJBQW1CLENBQUMsUUFBUSxDQUFDLENBQUM7SUFDNUMsQ0FBQztJQUVPLDRCQUE0QixDQUFDLFFBQVE7UUFDM0MsSUFBSSxDQUFDLElBQUksQ0FBQywwQkFBMEIsQ0FBQyxRQUFRLENBQUM7WUFDNUMsSUFBSSxDQUFDLDBCQUEwQixDQUFDLFFBQVEsQ0FBQyxHQUFHLElBQUksYUFBYSxDQUFTLENBQUMsQ0FBQyxDQUFDO1FBRTNFLE9BQU8sSUFBSSxDQUFDLDBCQUEwQixDQUFDLFFBQVEsQ0FBQyxDQUFDO0lBQ25ELENBQUM7SUFFTyxrQkFBa0IsQ0FBQyxRQUFRO1FBQ2pDLElBQUksQ0FBQyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsUUFBUSxDQUFDO1lBQUUsSUFBSSxDQUFDLGdCQUFnQixDQUFDLFFBQVEsQ0FBQyxHQUFHLElBQUksYUFBYSxDQUF1QixDQUFDLENBQUMsQ0FBQztRQUVuSCxPQUFPLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxRQUFRLENBQUMsQ0FBQztJQUN6QyxDQUFDO3VHQXpPVSxlQUFlOzJHQUFmLGVBQWUsY0FGZCxNQUFNOzsyRkFFUCxlQUFlO2tCQUgzQixVQUFVO21CQUFDO29CQUNWLFVBQVUsRUFBRSxNQUFNO2lCQUNuQiIsInNvdXJjZXNDb250ZW50IjpbIi8vIEB0cy1zdHJpY3QtaWdub3JlXG5pbXBvcnQgeyBJbmplY3RhYmxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBUcmFuc2xhdGVTZXJ2aWNlIH0gZnJvbSAnQG5neC10cmFuc2xhdGUvY29yZSc7XG5pbXBvcnQgeyBPYnNlcnZhYmxlLCBvZiwgUmVwbGF5U3ViamVjdCwgU3ViamVjdCwgdGFrZSB9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHsgU3RvcmUgfSBmcm9tICdAbmdyeC9zdG9yZSc7XG5cbmltcG9ydCB7IFFkRmlsdGVyQ2F0ZWdvcnksIFFkRmlsdGVySXRlbSwgUWRGaWx0ZXJTZWxlY3Rpb24gfSBmcm9tICcuLi9tb2RlbC9maWx0ZXItY29uZmlnLmludGVyZmFjZSc7XG5pbXBvcnQgeyBRZEZpbHRlclBvc3RCb2R5RGF0YSB9IGZyb20gJy4uL21vZGVsL2ZpbHRlci1wb3N0LWJvZHkuaW50ZXJmYWNlJztcbmltcG9ydCB7IFFkRmlsdGVyQWN0aW9ucyB9IGZyb20gJy4uL3N0b3JlL2ZpbHRlci5hY3Rpb25zJztcbmltcG9ydCB7IFFkRmlsdGVyU2VsZWN0b3IsIFFkRmlsdGVyU3RhdGUsIHNlbGVjdEl0ZW0gfSBmcm9tICcuLi9zdG9yZS9maWx0ZXIuc2VsZWN0b3InO1xuXG5ASW5qZWN0YWJsZSh7XG4gIHByb3ZpZGVkSW46ICdyb290J1xufSlcbmV4cG9ydCBjbGFzcyBRZEZpbHRlclNlcnZpY2Uge1xuICBwcml2YXRlIHF1ZXJ5U3RyaW5nU3ViamVjdHM6IFJlcGxheVN1YmplY3Q8c3RyaW5nPltdID0gW107XG4gIHByaXZhdGUgZmlsdGVyVXJsUGFyYW1ldGVyU3ViamVjdHM6IFJlcGxheVN1YmplY3Q8c3RyaW5nPltdID0gW107XG4gIHByaXZhdGUgcG9zdEJvZHlTdWJqZWN0czogUmVwbGF5U3ViamVjdDxRZEZpbHRlclBvc3RCb2R5RGF0YT5bXSA9IFtdO1xuXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgcmVhZG9ubHkgc3RvcmU6IFN0b3JlPFFkRmlsdGVyU3RhdGU+LCBwdWJsaWMgcmVhZG9ubHkgdHJhbnNsYXRlU2VydmljZTogVHJhbnNsYXRlU2VydmljZSkge31cblxuICBnZXRJdGVtcyQoZmlsdGVySWQsIGNhdGVnb3J5SW5kZXgpOiBPYnNlcnZhYmxlPGFueT4ge1xuICAgIHJldHVybiB0aGlzLnN0b3JlLnNlbGVjdChRZEZpbHRlclNlbGVjdG9yLnNlbGVjdEl0ZW1zLCB7XG4gICAgICBmaWx0ZXJJZCxcbiAgICAgIGNhdGVnb3J5SW5kZXhcbiAgICB9KTtcbiAgfVxuXG4gIGdldEl0ZW1CeUlkJChmaWx0ZXJJZCwgY2F0ZWdvcnlJbmRleCwgaXRlbUluZGV4KTogT2JzZXJ2YWJsZTxRZEZpbHRlckl0ZW0+IHtcbiAgICByZXR1cm4gdGhpcy5zdG9yZS5zZWxlY3Qoc2VsZWN0SXRlbShmaWx0ZXJJZCwgY2F0ZWdvcnlJbmRleCwgaXRlbUluZGV4KSk7XG4gIH1cblxuICBnZXRNaW5EYXRlJChmaWx0ZXJJZCwgY2F0ZWdvcnlJbmRleCwgaXRlbUluZGV4KTogT2JzZXJ2YWJsZTxzdHJpbmcgfCB1bmRlZmluZWQ+IHtcbiAgICByZXR1cm4gaXRlbUluZGV4ID09PSAxXG4gICAgICA/IHRoaXMuc3RvcmUuc2VsZWN0KFFkRmlsdGVyU2VsZWN0b3Iuc2VsZWN0SXRlbURhdGUsIHtcbiAgICAgICAgICBjYXRlZ29yeUluZGV4LFxuICAgICAgICAgIGl0ZW1JbmRleDogMCxcbiAgICAgICAgICBmaWx0ZXJJZFxuICAgICAgICB9KVxuICAgICAgOiBvZih1bmRlZmluZWQpO1xuICB9XG5cbiAgZ2V0TWF4RGF0ZSQoZmlsdGVySWQsIGNhdGVnb3J5SW5kZXgsIGl0ZW1JbmRleCk6IE9ic2VydmFibGU8c3RyaW5nIHwgdW5kZWZpbmVkPiB7XG4gICAgcmV0dXJuIGl0ZW1JbmRleCA9PT0gMFxuICAgICAgPyB0aGlzLnN0b3JlLnNlbGVjdChRZEZpbHRlclNlbGVjdG9yLnNlbGVjdEl0ZW1EYXRlLCB7XG4gICAgICAgICAgY2F0ZWdvcnlJbmRleCxcbiAgICAgICAgICBpdGVtSW5kZXg6IDEsXG4gICAgICAgICAgZmlsdGVySWRcbiAgICAgICAgfSlcbiAgICAgIDogb2YodW5kZWZpbmVkKTtcbiAgfVxuXG4gIGdldFF1ZXJ5U3RyaW5nJChmaWx0ZXJJZCk6IE9ic2VydmFibGU8c3RyaW5nPiB7XG4gICAgcmV0dXJuIHRoaXMuZ2V0UXVlcnlTdHJpbmdTdWJqZWN0KGZpbHRlcklkKS5hc09ic2VydmFibGUoKTtcbiAgfVxuXG4gIGdldEZpbHRlclVybFBhcmFtZXRlciQoZmlsdGVySWQpOiBPYnNlcnZhYmxlPHN0cmluZz4ge1xuICAgIHJldHVybiB0aGlzLmdldEZpbHRlclVybFBhcmFtZXRlclN1YmplY3QoZmlsdGVySWQpLmFzT2JzZXJ2YWJsZSgpO1xuICB9XG5cbiAgZ2V0UG9zdEJvZHkkKGZpbHRlcklkKTogT2JzZXJ2YWJsZTxRZEZpbHRlclBvc3RCb2R5RGF0YT4ge1xuICAgIHJldHVybiB0aGlzLmdldFBvc3RCb2R5U3ViamVjdChmaWx0ZXJJZCkuYXNPYnNlcnZhYmxlKCk7XG4gIH1cblxuICBlbWl0UXVlcnlTdHJpbmcoZmlsdGVySWQ6IHN0cmluZywgb3V0cHV0TGVnYWN5UXVlcnlTdHJpbmdGb3JtYXQ6IGJvb2xlYW4pOiB2b2lkIHtcbiAgICB0aGlzLmdldEN1cnJlbnRRdWVyeVN0cmluZyhmaWx0ZXJJZCwgb3V0cHV0TGVnYWN5UXVlcnlTdHJpbmdGb3JtYXQpXG4gICAgICAucGlwZSh0YWtlKDEpKVxuICAgICAgLnN1YnNjcmliZShxdWVyeVN0cmluZyA9PiB7XG4gICAgICAgIHRoaXMuZ2V0UXVlcnlTdHJpbmdTdWJqZWN0KGZpbHRlcklkKS5uZXh0KHF1ZXJ5U3RyaW5nKTtcbiAgICAgIH0pO1xuICB9XG5cbiAgZ2V0Q3VycmVudFF1ZXJ5U3RyaW5nKGZpbHRlcklkOiBzdHJpbmcsIG91dHB1dExlZ2FjeVF1ZXJ5U3RyaW5nRm9ybWF0OiBib29sZWFuKTogT2JzZXJ2YWJsZTxzdHJpbmc+IHtcbiAgICByZXR1cm4gdGhpcy5zdG9yZS5zZWxlY3Qoc3RhdGUgPT5cbiAgICAgIFFkRmlsdGVyU2VsZWN0b3Iuc2VsZWN0UXVlcnlTdHJpbmcoc3RhdGUsIHsgZmlsdGVySWQsIG91dHB1dExlZ2FjeVF1ZXJ5U3RyaW5nRm9ybWF0IH0pXG4gICAgKTtcbiAgfVxuXG4gIGVtaXRGaWx0ZXJVcmxQYXJhbWV0ZXJTdHJpbmcoZmlsdGVySWQ6IHN0cmluZyk6IHZvaWQge1xuICAgIHRoaXMuZ2V0Q3VycmVudEZpbHRlclVybFBhcmFtZXRlclN0cmluZyhmaWx0ZXJJZClcbiAgICAgIC5waXBlKHRha2UoMSkpXG4gICAgICAuc3Vic2NyaWJlKHF1ZXJ5U3RyaW5nID0+IHtcbiAgICAgICAgdGhpcy5nZXRGaWx0ZXJVcmxQYXJhbWV0ZXJTdWJqZWN0KGZpbHRlcklkKS5uZXh0KHF1ZXJ5U3RyaW5nKTtcbiAgICAgIH0pO1xuICB9XG5cbiAgZ2V0Q3VycmVudEZpbHRlclVybFBhcmFtZXRlclN0cmluZyhmaWx0ZXJJZDogc3RyaW5nKTogT2JzZXJ2YWJsZTxzdHJpbmc+IHtcbiAgICByZXR1cm4gdGhpcy5zdG9yZS5zZWxlY3Qoc3RhdGUgPT4gUWRGaWx0ZXJTZWxlY3Rvci5zZWxlY3RGaWx0ZXJVcmxQYXJhbWV0ZXIoc3RhdGUsIHsgZmlsdGVySWQgfSkpO1xuICB9XG5cbiAgZW1pdFBvc3RCb2R5KGZpbHRlcklkKTogdm9pZCB7XG4gICAgdGhpcy5nZXRDdXJyZW50UG9zdEJvZHkoZmlsdGVySWQpXG4gICAgICAucGlwZSh0YWtlKDEpKVxuICAgICAgLnN1YnNjcmliZShwb3N0Qm9keSA9PiB7XG4gICAgICAgIHRoaXMuZ2V0UG9zdEJvZHlTdWJqZWN0KGZpbHRlcklkKS5uZXh0KHBvc3RCb2R5KTtcbiAgICAgIH0pO1xuICB9XG5cbiAgZ2V0Q3VycmVudFBvc3RCb2R5KGZpbHRlcklkKTogT2JzZXJ2YWJsZTxRZEZpbHRlclBvc3RCb2R5RGF0YT4ge1xuICAgIHJldHVybiB0aGlzLnN0b3JlLnNlbGVjdChzdGF0ZSA9PiBRZEZpbHRlclNlbGVjdG9yLnNlbGVjdFBvc3RCb2R5KHN0YXRlLCB7IGZpbHRlcklkIH0pKTtcbiAgfVxuXG4gIC8qKlxuICAgKiBTdGF0ZSBTZWxlY3RvclxuICAgKi9cbiAgc2VsZWN0RmlsdGVyRGF0YUJ5SWQkKGZpbHRlcklkKTogT2JzZXJ2YWJsZTxRZEZpbHRlckNhdGVnb3J5W10+IHtcbiAgICByZXR1cm4gdGhpcy5zdG9yZS5zZWxlY3QoUWRGaWx0ZXJTZWxlY3Rvci5zZWxlY3RGaWx0ZXJEYXRhQnlJZCwgeyBmaWx0ZXJJZCB9KTtcbiAgfVxuXG4gIHNlbGVjdEhhc0FjdGl2ZUNhdGVnb3J5JChmaWx0ZXJJZCk6IE9ic2VydmFibGU8Ym9vbGVhbj4ge1xuICAgIHJldHVybiB0aGlzLnN0b3JlLnNlbGVjdChRZEZpbHRlclNlbGVjdG9yLnNlbGVjdEhhc0FjdGl2ZUNhdGVnb3J5LCB7IGZpbHRlcklkIH0pO1xuICB9XG5cbiAgZ2V0Q2F0ZWdvcnlCeUlkJChmaWx0ZXJJZCwgY2F0ZWdvcnlJbmRleCk6IE9ic2VydmFibGU8YW55PiB7XG4gICAgcmV0dXJuIHRoaXMuc3RvcmUuc2VsZWN0KFFkRmlsdGVyU2VsZWN0b3Iuc2VsZWN0Q2F0ZWdvcnlCeUlkLCB7XG4gICAgICBmaWx0ZXJJZCxcbiAgICAgIGNhdGVnb3J5SW5kZXhcbiAgICB9KTtcbiAgfVxuXG4gIGdldEZpbHRlckNhdGVnb3J5VmFsdWUkKGZpbHRlcklkLCBjYXRlZ29yeUluZGV4KTogT2JzZXJ2YWJsZTxhbnk+IHtcbiAgICByZXR1cm4gdGhpcy5zdG9yZS5zZWxlY3QoUWRGaWx0ZXJTZWxlY3Rvci5zZWxlY3RGaWx0ZXJDYXRlZ29yeVZhbHVlLCB7XG4gICAgICBmaWx0ZXJJZCxcbiAgICAgIGNhdGVnb3J5SW5kZXhcbiAgICB9KTtcbiAgfVxuXG4gIC8qKlxuICAgKiBBY3Rpb24gZGlzcGF0Y2hlclxuICAgKi9cbiAgaW5pdEZpbHRlclN0YXRlKGZpbHRlcklkLCBmaWx0ZXJEYXRhKTogdm9pZCB7XG4gICAgdGhpcy5zdG9yZS5kaXNwYXRjaChRZEZpbHRlckFjdGlvbnMuaW5pdEZpbHRlclN0YXRlKHsgZmlsdGVySWQsIGZpbHRlckRhdGEgfSkpO1xuICB9XG5cbiAgdXBkYXRlSXRlbShmaWx0ZXJJZCwgY2F0ZWdvcnlJbmRleCwgaXRlbUluZGV4LCB2YWx1ZSk6IHZvaWQge1xuICAgIHRoaXMuc3RvcmUuZGlzcGF0Y2goXG4gICAgICBRZEZpbHRlckFjdGlvbnMudXBkYXRlSXRlbSh7XG4gICAgICAgIGZpbHRlcklkLFxuICAgICAgICBjYXRlZ29yeUluZGV4LFxuICAgICAgICBpdGVtSW5kZXgsXG4gICAgICAgIHZhbHVlXG4gICAgICB9KVxuICAgICk7XG4gIH1cblxuICB1cGRhdGVDYXRlZ29yeUl0ZW1zKGZpbHRlcklkLCBjYXRlZ29yeUluZGV4LCBpdGVtcyk6IHZvaWQge1xuICAgIHRoaXMuc3RvcmUuZGlzcGF0Y2goXG4gICAgICBRZEZpbHRlckFjdGlvbnMudXBkYXRlQ2F0ZWdvcnlJdGVtcyh7XG4gICAgICAgIGZpbHRlcklkLFxuICAgICAgICBjYXRlZ29yeUluZGV4LFxuICAgICAgICBpdGVtc1xuICAgICAgfSlcbiAgICApO1xuICB9XG5cbiAgc2V0SXRlbUlzQWN0aXZlKGZpbHRlcklkLCBjYXRlZ29yeUluZGV4LCBpdGVtSW5kZXgsIGlzQWN0aXZlKTogdm9pZCB7XG4gICAgdGhpcy5zdG9yZS5kaXNwYXRjaChcbiAgICAgIFFkRmlsdGVyQWN0aW9ucy5zZXRJdGVtSXNBY3RpdmUoe1xuICAgICAgICBjYXRlZ29yeUluZGV4LFxuICAgICAgICBpdGVtSW5kZXgsXG4gICAgICAgIGlzQWN0aXZlLFxuICAgICAgICBmaWx0ZXJJZFxuICAgICAgfSlcbiAgICApO1xuICB9XG5cbiAgc2V0SXRlbXNTdGF0ZVNpbmdsZVNlbGVjdChmaWx0ZXJJZCwgY2F0ZWdvcnlJbmRleCwgaXRlbUluZGV4KTogdm9pZCB7XG4gICAgdGhpcy5zdG9yZS5kaXNwYXRjaChcbiAgICAgIFFkRmlsdGVyQWN0aW9ucy5zZXRJdGVtc1N0YXRlU2luZ2xlU2VsZWN0KHtcbiAgICAgICAgY2F0ZWdvcnlJbmRleCxcbiAgICAgICAgaXRlbUluZGV4LFxuICAgICAgICBmaWx0ZXJJZFxuICAgICAgfSlcbiAgICApO1xuICB9XG5cbiAgaGlkZVNob3dJdGVtcyhmaWx0ZXJJZCwgY2F0ZWdvcnlJbmRleCwgZmlsdGVyS2V5KTogdm9pZCB7XG4gICAgdGhpcy5zdG9yZS5kaXNwYXRjaChcbiAgICAgIFFkRmlsdGVyQWN0aW9ucy5oaWRlU2hvd0l0ZW1zKHtcbiAgICAgICAgZmlsdGVySWQsXG4gICAgICAgIGNhdGVnb3J5SW5kZXgsXG4gICAgICAgIGZpbHRlcktleSxcbiAgICAgICAgdHJhbnNsYXRlRnVuYzoga2V5ID0+IHRoaXMudHJhbnNsYXRlU2VydmljZS5pbnN0YW50KGtleSlcbiAgICAgIH0pXG4gICAgKTtcbiAgfVxuXG4gIHVwZGF0ZUNhdGVnb3J5VHJhbnNsYXRpb24oZmlsdGVySWQsIGZpbHRlckRhdGEpOiB2b2lkIHtcbiAgICB0aGlzLnN0b3JlLmRpc3BhdGNoKFxuICAgICAgUWRGaWx0ZXJBY3Rpb25zLnVwZGF0ZUNhdGVnb3J5VHJhbnNsYXRpb24oe1xuICAgICAgICBmaWx0ZXJJZCxcbiAgICAgICAgZmlsdGVyRGF0YVxuICAgICAgfSlcbiAgICApO1xuICB9XG5cbiAgc2V0RmlsdGVyU2VsZWN0aW9uKGZpbHRlcklkLCBmaWx0ZXJTZWxlY3Rpb246IFFkRmlsdGVyU2VsZWN0aW9uKTogdm9pZCB7XG4gICAgdGhpcy5zdG9yZS5kaXNwYXRjaChcbiAgICAgIFFkRmlsdGVyQWN0aW9ucy5zZXRGaWx0ZXJTZWxlY3Rpb24oe1xuICAgICAgICBmaWx0ZXJJZCxcbiAgICAgICAgZmlsdGVyU2VsZWN0aW9uXG4gICAgICB9KVxuICAgICk7XG4gIH1cblxuICByZXNldEVtaXNzaW9uUmVwbGF5U3ViamVjdHMoZmlsdGVySWQpOiB2b2lkIHtcbiAgICB0aGlzLnF1ZXJ5U3RyaW5nU3ViamVjdHNbZmlsdGVySWRdID0gbmV3IFJlcGxheVN1YmplY3Q8c3RyaW5nPigxKTtcbiAgICB0aGlzLnBvc3RCb2R5U3ViamVjdHNbZmlsdGVySWRdID0gbmV3IFJlcGxheVN1YmplY3Q8UWRGaWx0ZXJQb3N0Qm9keURhdGE+KDEpO1xuICAgIHRoaXMuZmlsdGVyVXJsUGFyYW1ldGVyU3ViamVjdHNbZmlsdGVySWRdID0gbmV3IFJlcGxheVN1YmplY3Q8c3RyaW5nPigxKTtcbiAgfVxuXG4gIHNldENhdGVnb3J5RmlsdGVyKGZpbHRlcklkLCBjYXRlZ29yeUluZGV4OiBudW1iZXIsIGZpbHRlcjogc3RyaW5nKTogdm9pZCB7XG4gICAgdGhpcy5zdG9yZS5kaXNwYXRjaChcbiAgICAgIFFkRmlsdGVyQWN0aW9ucy5zZXRDYXRlZ29yeUZpbHRlcih7XG4gICAgICAgIGZpbHRlcklkLFxuICAgICAgICBjYXRlZ29yeUluZGV4LFxuICAgICAgICBmaWx0ZXJcbiAgICAgIH0pXG4gICAgKTtcbiAgfVxuXG4gIHJlc2V0Q2F0ZWdvcnlGaWx0ZXIoZmlsdGVySWQ6IHN0cmluZywgY2F0ZWdvcnlJbmRleDogbnVtYmVyKTogdm9pZCB7XG4gICAgdGhpcy5zdG9yZS5kaXNwYXRjaChcbiAgICAgIFFkRmlsdGVyQWN0aW9ucy5yZXNldENhdGVnb3J5RmlsdGVyKHtcbiAgICAgICAgZmlsdGVySWQsXG4gICAgICAgIGNhdGVnb3J5SW5kZXhcbiAgICAgIH0pXG4gICAgKTtcbiAgfVxuXG4gIHByaXZhdGUgZ2V0UXVlcnlTdHJpbmdTdWJqZWN0KGZpbHRlcklkKTogU3ViamVjdDxzdHJpbmc+IHtcbiAgICBpZiAoIXRoaXMucXVlcnlTdHJpbmdTdWJqZWN0c1tmaWx0ZXJJZF0pIHRoaXMucXVlcnlTdHJpbmdTdWJqZWN0c1tmaWx0ZXJJZF0gPSBuZXcgUmVwbGF5U3ViamVjdDxzdHJpbmc+KDEpO1xuXG4gICAgcmV0dXJuIHRoaXMucXVlcnlTdHJpbmdTdWJqZWN0c1tmaWx0ZXJJZF07XG4gIH1cblxuICBwcml2YXRlIGdldEZpbHRlclVybFBhcmFtZXRlclN1YmplY3QoZmlsdGVySWQpOiBTdWJqZWN0PHN0cmluZz4ge1xuICAgIGlmICghdGhpcy5maWx0ZXJVcmxQYXJhbWV0ZXJTdWJqZWN0c1tmaWx0ZXJJZF0pXG4gICAgICB0aGlzLmZpbHRlclVybFBhcmFtZXRlclN1YmplY3RzW2ZpbHRlcklkXSA9IG5ldyBSZXBsYXlTdWJqZWN0PHN0cmluZz4oMSk7XG5cbiAgICByZXR1cm4gdGhpcy5maWx0ZXJVcmxQYXJhbWV0ZXJTdWJqZWN0c1tmaWx0ZXJJZF07XG4gIH1cblxuICBwcml2YXRlIGdldFBvc3RCb2R5U3ViamVjdChmaWx0ZXJJZCk6IFN1YmplY3Q8UWRGaWx0ZXJQb3N0Qm9keURhdGE+IHtcbiAgICBpZiAoIXRoaXMucG9zdEJvZHlTdWJqZWN0c1tmaWx0ZXJJZF0pIHRoaXMucG9zdEJvZHlTdWJqZWN0c1tmaWx0ZXJJZF0gPSBuZXcgUmVwbGF5U3ViamVjdDxRZEZpbHRlclBvc3RCb2R5RGF0YT4oMSk7XG5cbiAgICByZXR1cm4gdGhpcy5wb3N0Qm9keVN1YmplY3RzW2ZpbHRlcklkXTtcbiAgfVxufVxuIl19
|
|
@@ -0,0 +1,308 @@
|
|
|
1
|
+
// @ts-strict-ignore
|
|
2
|
+
import { ChangeDetectionStrategy, Component, EventEmitter, forwardRef, HostBinding, Input, Output, QueryList, ViewChildren } from '@angular/core';
|
|
3
|
+
import { diff } from 'deep-object-diff';
|
|
4
|
+
import { BehaviorSubject, combineLatest, delay, firstValueFrom, from, merge, ReplaySubject, switchMap, tap } from 'rxjs';
|
|
5
|
+
import { distinctUntilChanged, filter, map, skip, take } from 'rxjs/operators';
|
|
6
|
+
import { v4 as uuid } from 'uuid';
|
|
7
|
+
import * as _ from 'lodash';
|
|
8
|
+
import { QdFilterCategoryComponent } from './category/filter-category.component';
|
|
9
|
+
import { QdFilterService } from './filter-service/filter.service';
|
|
10
|
+
import { hasActiveCategory } from './helpers/filter-active.helper';
|
|
11
|
+
import { QdFilterRouterConnectorService } from './services/filter-router-connector.service';
|
|
12
|
+
import { QdDependentFiltersService } from './services/dependent-filters.service';
|
|
13
|
+
import * as i0 from "@angular/core";
|
|
14
|
+
import * as i1 from "./filter-service/filter.service";
|
|
15
|
+
import * as i2 from "./services/filter-router-connector.service";
|
|
16
|
+
import * as i3 from "./services/dependent-filters.service";
|
|
17
|
+
import * as i4 from "@angular/common";
|
|
18
|
+
import * as i5 from "../button/button/button.component";
|
|
19
|
+
import * as i6 from "../button/directives/button.directives";
|
|
20
|
+
import * as i7 from "./category/filter-category.component";
|
|
21
|
+
import * as i8 from "@ngx-translate/core";
|
|
22
|
+
/**
|
|
23
|
+
* The **QdFilter** is responsible for the filtering of data.
|
|
24
|
+
*
|
|
25
|
+
* Hirarchical structure::
|
|
26
|
+
* - **Filter**: Name of the component.
|
|
27
|
+
* - **Categories**: A list of one or more different categories.
|
|
28
|
+
* - **Items**: A list with one or more items belongs to a parent category.
|
|
29
|
+
*
|
|
30
|
+
* ### Filter selection ###
|
|
31
|
+
*
|
|
32
|
+
* To get the applied filters you can listen to the outputs `(queryStringOutput)` and `(postBodyOutput)`.
|
|
33
|
+
* These outputs will be emitted when the filter is triggered. The `(queryStringOutput)` returns
|
|
34
|
+
* the applied filters as an url string with an encoded *filter* parameter. The `(postBodyOutput)`
|
|
35
|
+
* yields an object containing the categories and active items.
|
|
36
|
+
*
|
|
37
|
+
* In addition to the outputs, you also can query the current filter selection with the
|
|
38
|
+
* filter component methods `getCurrentQueryString`, `getCurrentFilterUrlParameterString` and `getCurrentPostBody`.
|
|
39
|
+
*
|
|
40
|
+
* ### Preserve filter state ###
|
|
41
|
+
*
|
|
42
|
+
* To preserve the filter state when navigating, for example between detail and overview page, you just have to define
|
|
43
|
+
* a uid in the filter data config.
|
|
44
|
+
*
|
|
45
|
+
* ### Multi Staging Filters
|
|
46
|
+
*
|
|
47
|
+
* To build a dependency chain of filters you can use the `dependsOn` property of a filter that depends on
|
|
48
|
+
* other filters. In the `dependsOn` property you set the names of the filter categories the category depends on.
|
|
49
|
+
* Always when one of these categories change the `itemsResolver` will be called with the list
|
|
50
|
+
* of categories given in `dependsOn`. The `itemsResolver` can also be defined in the config where `dependsOn`
|
|
51
|
+
* is also defined.
|
|
52
|
+
*
|
|
53
|
+
* If the items resolver has not been called yet or when it returns an empty array of items,
|
|
54
|
+
* the corresponding filter stage won't be rendered.
|
|
55
|
+
*
|
|
56
|
+
* #### Support
|
|
57
|
+
*
|
|
58
|
+
* Multi Staging Filters only work for `singleSelect` and `multiSelect` filters.
|
|
59
|
+
*
|
|
60
|
+
*/
|
|
61
|
+
export class QdFilterComponent {
|
|
62
|
+
filterService;
|
|
63
|
+
filterRouterConnectorService;
|
|
64
|
+
dependentFiltersService;
|
|
65
|
+
/**
|
|
66
|
+
* The configuration of the filter
|
|
67
|
+
*/
|
|
68
|
+
set filterData(filterData) {
|
|
69
|
+
this._filterDataSubject.next(filterData);
|
|
70
|
+
}
|
|
71
|
+
get filterData() {
|
|
72
|
+
return this._filterDataSubject.value;
|
|
73
|
+
}
|
|
74
|
+
/**
|
|
75
|
+
* A static test ID for integration tests can be set. <br />
|
|
76
|
+
* The value for the HTML attribute [data-test-id].
|
|
77
|
+
*/
|
|
78
|
+
testId = 'filter';
|
|
79
|
+
/**
|
|
80
|
+
* Emits event on click/tap of the filter/reset button of the filter or on deletion of an active item. <br />
|
|
81
|
+
* Return value is the query string of the filter.
|
|
82
|
+
*/
|
|
83
|
+
queryStringOutput = new EventEmitter();
|
|
84
|
+
/**
|
|
85
|
+
* Emits event on click/tap of the filter/reset button of the filter or on deletion of an active item. <br />
|
|
86
|
+
* Return value is the result object of the filter.
|
|
87
|
+
*/
|
|
88
|
+
postBodyOutput = new EventEmitter();
|
|
89
|
+
/**
|
|
90
|
+
* Emits event when the values of the filter change. Return value matches the current object of the filter.
|
|
91
|
+
*/
|
|
92
|
+
valueChange = new EventEmitter();
|
|
93
|
+
filterCategory;
|
|
94
|
+
get dataTestId() {
|
|
95
|
+
return this.testId + '-' + this.filterId;
|
|
96
|
+
}
|
|
97
|
+
disableFilterButton$;
|
|
98
|
+
disableResetButton$;
|
|
99
|
+
filterId;
|
|
100
|
+
_queryStringSubscription;
|
|
101
|
+
_postBodySubscription;
|
|
102
|
+
_emitOutputsSubscription;
|
|
103
|
+
_filterValueSubscription;
|
|
104
|
+
_filterDataSubject = new BehaviorSubject(undefined);
|
|
105
|
+
_hasPreselectionSubject = new ReplaySubject(1);
|
|
106
|
+
_categoriesSubject = new ReplaySubject(1);
|
|
107
|
+
_filterConnectedWithRouterSubject = new ReplaySubject();
|
|
108
|
+
_filterConnectedWithRouter$ = this._filterConnectedWithRouterSubject.asObservable();
|
|
109
|
+
set hasPreselection(hasPreselection) {
|
|
110
|
+
this._hasPreselectionSubject.next(hasPreselection);
|
|
111
|
+
}
|
|
112
|
+
get hasPreselection$() {
|
|
113
|
+
return this._hasPreselectionSubject.asObservable();
|
|
114
|
+
}
|
|
115
|
+
set categories(categories) {
|
|
116
|
+
this._categoriesSubject.next(categories);
|
|
117
|
+
}
|
|
118
|
+
get categories$() {
|
|
119
|
+
return this._categoriesSubject.asObservable();
|
|
120
|
+
}
|
|
121
|
+
get isInstantFiltering() {
|
|
122
|
+
return this.filterData?.isInstantFiltering === true;
|
|
123
|
+
}
|
|
124
|
+
constructor(filterService, filterRouterConnectorService, dependentFiltersService) {
|
|
125
|
+
this.filterService = filterService;
|
|
126
|
+
this.filterRouterConnectorService = filterRouterConnectorService;
|
|
127
|
+
this.dependentFiltersService = dependentFiltersService;
|
|
128
|
+
}
|
|
129
|
+
async ngOnInit() {
|
|
130
|
+
await this.waitForFilterData();
|
|
131
|
+
this.filterId = this.filterData?.uid || uuid();
|
|
132
|
+
this.validateConfig();
|
|
133
|
+
this.init();
|
|
134
|
+
}
|
|
135
|
+
waitForFilterData() {
|
|
136
|
+
return firstValueFrom(this._filterDataSubject.pipe(filter(filterData => !!filterData)));
|
|
137
|
+
}
|
|
138
|
+
ngOnChanges(changes) {
|
|
139
|
+
// TODO: Decision: Is there really a need for this???
|
|
140
|
+
if (this.hasChangesByKey(changes, 'i18n'))
|
|
141
|
+
this.filterService.updateCategoryTranslation(this.filterId, this.filterData);
|
|
142
|
+
if (this.hasChangesByKey(changes, 'items') || this.hasChangesByKey(changes, 'filter'))
|
|
143
|
+
this.filterService.initFilterState(this.filterId, this.filterData);
|
|
144
|
+
if (this.hasChangesByCategoriesLength(changes)) {
|
|
145
|
+
this.filterService.initFilterState(this.filterId, this.filterData);
|
|
146
|
+
this.categories = this.filterData.categories.map(category => category.category);
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
ngOnDestroy() {
|
|
150
|
+
this.filterRouterConnectorService.disconnectFilterFromRouter(this);
|
|
151
|
+
this.dependentFiltersService.destroy();
|
|
152
|
+
this._queryStringSubscription?.unsubscribe();
|
|
153
|
+
this._postBodySubscription?.unsubscribe();
|
|
154
|
+
this._emitOutputsSubscription?.unsubscribe();
|
|
155
|
+
this._filterValueSubscription?.unsubscribe();
|
|
156
|
+
/* the ReplaySubjects would cause an initial emission of the outputs if the component is reinitialized
|
|
157
|
+
* (when navigating back for example). ReplaySubjects are used here because the subscription of the section
|
|
158
|
+
* is delayed in the integrated solution with the qdConnectToFilter directive. */
|
|
159
|
+
this.filterService.resetEmissionReplaySubjects(this.filterId);
|
|
160
|
+
}
|
|
161
|
+
clickFilter() {
|
|
162
|
+
this.filterCategory.forEach(category => category.refreshItems());
|
|
163
|
+
this.emitOutputs();
|
|
164
|
+
}
|
|
165
|
+
async resetFilter() {
|
|
166
|
+
this.filterService.initFilterState(this.filterId, this.filterData);
|
|
167
|
+
this.filterCategory.forEach(category => category.handleReset());
|
|
168
|
+
if (await firstValueFrom(this.hasPreselection$))
|
|
169
|
+
this.emitOutputs();
|
|
170
|
+
}
|
|
171
|
+
emitOutputs() {
|
|
172
|
+
this.filterService.emitQueryString(this.filterId, this.filterData?.outputLegacyQueryStringFormat !== false);
|
|
173
|
+
this.filterService.emitFilterUrlParameterString(this.filterId);
|
|
174
|
+
this.filterService.emitPostBody(this.filterId);
|
|
175
|
+
}
|
|
176
|
+
getCurrentQueryString() {
|
|
177
|
+
return this.filterService.getCurrentQueryString(this.filterId, this.filterData?.outputLegacyQueryStringFormat !== false);
|
|
178
|
+
}
|
|
179
|
+
getCurrentFilterUrlParameterString() {
|
|
180
|
+
return this.filterService.getCurrentFilterUrlParameterString(this.filterId);
|
|
181
|
+
}
|
|
182
|
+
getCurrentPostBody() {
|
|
183
|
+
return this.filterService.getCurrentPostBody(this.filterId);
|
|
184
|
+
}
|
|
185
|
+
hasFilterData() {
|
|
186
|
+
return this.filterData !== undefined;
|
|
187
|
+
}
|
|
188
|
+
setFilterConfig(filterData) {
|
|
189
|
+
this._filterDataSubject.next(filterData);
|
|
190
|
+
}
|
|
191
|
+
updateFilterConfig(filterData) {
|
|
192
|
+
this._filterDataSubject.next(filterData);
|
|
193
|
+
this.filterService.initFilterState(this.filterId, this.filterData);
|
|
194
|
+
this.filterService.emitPostBody(this.filterId);
|
|
195
|
+
this.filterService.emitFilterUrlParameterString(this.filterId);
|
|
196
|
+
}
|
|
197
|
+
getFilterChanges$() {
|
|
198
|
+
return from(this.waitForFilterData()).pipe(
|
|
199
|
+
// wait for filterId
|
|
200
|
+
switchMap(() => this._filterConnectedWithRouter$), delay(1), switchMap(() => this.filterService.getPostBody$(this.filterId)));
|
|
201
|
+
}
|
|
202
|
+
validateConfig() {
|
|
203
|
+
if (this.filterData?.outputLegacyQueryStringFormat !== false && this.queryStringOutput.observers.length > 0) {
|
|
204
|
+
console.warn('QdFilter | You use the queryStringOutput with the legacy format. To use the new format please set outputLegacyQueryStringFormat to false. The legacy format will be removed in future releases.');
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
init() {
|
|
208
|
+
this.reInitFromStoreIfReMounted();
|
|
209
|
+
this.disableFilterButton$ = this.filterService
|
|
210
|
+
.selectHasActiveCategory$(this.filterId)
|
|
211
|
+
.pipe(map(hasActive => !hasActive));
|
|
212
|
+
this.initResetButtonActivation();
|
|
213
|
+
this._queryStringSubscription = this.filterService
|
|
214
|
+
.getQueryString$(this.filterId)
|
|
215
|
+
.subscribe(queryString => this.queryStringOutput.emit(queryString));
|
|
216
|
+
this._postBodySubscription = this.filterService
|
|
217
|
+
.getPostBody$(this.filterId)
|
|
218
|
+
.subscribe(postBody => this.postBodyOutput.emit(postBody));
|
|
219
|
+
this.hasPreselection = hasActiveCategory(this.filterData?.categories);
|
|
220
|
+
this._emitOutputsSubscription = merge(this.hasPreselectionAfterRouterConnection$.pipe(filter(hasPreselection => hasPreselection || this.filterData?.emitOutputsInitially)), this.allFiltersRemoved$).subscribe(() => {
|
|
221
|
+
this.emitOutputs();
|
|
222
|
+
});
|
|
223
|
+
this._filterValueSubscription = this.filterService
|
|
224
|
+
.getCurrentPostBody(this.filterId)
|
|
225
|
+
.pipe(distinctUntilChanged(_.isEqual), tap(() => {
|
|
226
|
+
if (this.isInstantFiltering)
|
|
227
|
+
this.emitOutputs();
|
|
228
|
+
}))
|
|
229
|
+
.subscribe(filterValue => this.valueChange.emit(filterValue));
|
|
230
|
+
this.initializeDependentFiltersService();
|
|
231
|
+
}
|
|
232
|
+
initializeDependentFiltersService() {
|
|
233
|
+
this.dependentFiltersService.initialize(this);
|
|
234
|
+
this._filterDataSubject
|
|
235
|
+
.pipe(skip(1)) // skip current value, only reinitialize for changes
|
|
236
|
+
.subscribe(() => this.dependentFiltersService.reinitialize());
|
|
237
|
+
}
|
|
238
|
+
initResetButtonActivation() {
|
|
239
|
+
this.disableResetButton$ = combineLatest([
|
|
240
|
+
this.filterService.selectHasActiveCategory$(this.filterId),
|
|
241
|
+
this.filterService
|
|
242
|
+
.selectFilterDataById$(this.filterId)
|
|
243
|
+
.pipe(map(data => data.map(entry => entry.items).map(items => items.map(item => item).map(item => _.omit(item, ['hidden']))))),
|
|
244
|
+
this.hasPreselection$
|
|
245
|
+
]).pipe(map(([hasActiveCategory, items, hasPreselection]) => {
|
|
246
|
+
if (hasPreselection) {
|
|
247
|
+
const categories = _.flatten(this.filterData.categories.map(category => category.items.map(item => ({ active: false, ...item })))).filter(category => category.item);
|
|
248
|
+
return _.isEqual(_.flatten(items).filter(item => item.item), categories);
|
|
249
|
+
}
|
|
250
|
+
return !hasActiveCategory;
|
|
251
|
+
}));
|
|
252
|
+
}
|
|
253
|
+
get hasPreselectionAfterRouterConnection$() {
|
|
254
|
+
return this.filterRouterConnectorService.connectFilterWithRouter(this).pipe(tap(() => this._filterConnectedWithRouterSubject.next()), switchMap(() => this.filterService.selectHasActiveCategory$(this.filterId)), take(1));
|
|
255
|
+
}
|
|
256
|
+
get allFiltersRemoved$() {
|
|
257
|
+
return this.filterService.selectHasActiveCategory$(this.filterId).pipe(skip(1), filter(someCategoryActive => !someCategoryActive));
|
|
258
|
+
}
|
|
259
|
+
hasChangesByKey(changes, key) {
|
|
260
|
+
const _diff = diff(changes.filterData.currentValue, changes.filterData.previousValue);
|
|
261
|
+
if (!_diff || !_diff.categories)
|
|
262
|
+
return false;
|
|
263
|
+
return Object.values(_diff.categories)?.filter(category => category && category[key] !== undefined).length > 0;
|
|
264
|
+
}
|
|
265
|
+
hasChangesByCategoriesLength(changes) {
|
|
266
|
+
if (changes.filterData.previousValue === undefined)
|
|
267
|
+
return false;
|
|
268
|
+
return changes.filterData.currentValue.categories.length !== changes.filterData.previousValue.categories.length;
|
|
269
|
+
}
|
|
270
|
+
reInitFromStoreIfReMounted() {
|
|
271
|
+
this.filterService
|
|
272
|
+
.selectFilterDataById$(this.filterId)
|
|
273
|
+
.pipe(take(1))
|
|
274
|
+
.subscribe(filterCategoriesFromStore => {
|
|
275
|
+
if (filterCategoriesFromStore.length > 0) {
|
|
276
|
+
this.categories = filterCategoriesFromStore.map(category => category.category);
|
|
277
|
+
}
|
|
278
|
+
else {
|
|
279
|
+
this.categories = this.filterData?.categories.map(category => category.category);
|
|
280
|
+
this.filterService.initFilterState(this.filterId, this.filterData);
|
|
281
|
+
}
|
|
282
|
+
});
|
|
283
|
+
}
|
|
284
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: QdFilterComponent, deps: [{ token: i1.QdFilterService }, { token: i2.QdFilterRouterConnectorService }, { token: i3.QdDependentFiltersService }], target: i0.ɵɵFactoryTarget.Component });
|
|
285
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: QdFilterComponent, selector: "qd-filter", inputs: { filterData: "filterData", testId: ["data-test-id", "testId"] }, outputs: { queryStringOutput: "queryStringOutput", postBodyOutput: "postBodyOutput", valueChange: "valueChange" }, host: { properties: { "attr.data-test-id": "this.dataTestId" }, classAttribute: "qd-filter" }, providers: [QdDependentFiltersService], viewQueries: [{ propertyName: "filterCategory", predicate: i0.forwardRef(() => QdFilterCategoryComponent), descendants: true }], usesOnChanges: true, ngImport: i0, template: "<ng-container *ngIf=\"(categories$ | async)?.length > 0\">\n <ng-container\n *ngFor=\"let category of categories$ | async; let last = last; let length = count; let categoryIndex = index\"\n >\n <qd-filter-category\n [filterId]=\"filterId\"\n [isInstantFiltering]=\"isInstantFiltering\"\n [categoryIndex]=\"categoryIndex\"\n [lastCategory]=\"last\"\n [data-test-id]=\"testId + '-category-' + categoryIndex + '-' + category\"\n ></qd-filter-category>\n </ng-container>\n\n <div [class]=\"'qd-filter__action-buttons'\" *ngIf=\"!isInstantFiltering\">\n <button\n qdButton\n qdButtonLink\n [disabled]=\"disableFilterButton$ | async\"\n (click)=\"clickFilter()\"\n [color]=\"'primary'\"\n [data-test-id]=\"testId + '-submit-button'\"\n >\n {{ \"i18n.qd.container.toolbar.filter.filter\" | translate }}\n </button>\n\n <button\n qdButton\n qdButtonLink\n [disabled]=\"disableResetButton$ | async\"\n (click)=\"resetFilter()\"\n [color]=\"'secondary'\"\n [data-test-id]=\"testId + '-reset-button'\"\n >\n {{\n ((hasPreselection$ | async)\n ? \"i18n.qd.container.toolbar.filter.backToPreSelect\"\n : \"i18n.qd.container.toolbar.filter.reset\"\n ) | translate\n }}\n </button>\n </div>\n</ng-container>\n", styles: [":host{position:relative;display:flex;flex-wrap:wrap}:host .qd-filter__action-buttons{display:flex;flex-wrap:wrap-reverse}:host ::ng-deep .qd-button{position:relative;margin-bottom:1rem}:host ::ng-deep .qd-button:last-child{margin-left:1rem}\n"], dependencies: [{ kind: "directive", type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i5.QdButtonComponent, selector: "button[qdButton], a[qdButton], button[qd-button]", inputs: ["disabled", "color", "icon", "data-test-id", "additionalInfo"] }, { kind: "directive", type: i6.QdButtonLinkDirective, selector: "button[qdButtonLink], a[qdButtonLink], button[qd-button-link]" }, { kind: "component", type: i7.QdFilterCategoryComponent, selector: "qd-filter-category", inputs: ["filterId", "isInstantFiltering", "categoryIndex", "lastCategory", "data-test-id"] }, { kind: "pipe", type: i4.AsyncPipe, name: "async" }, { kind: "pipe", type: i8.TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
286
|
+
}
|
|
287
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: QdFilterComponent, decorators: [{
|
|
288
|
+
type: Component,
|
|
289
|
+
args: [{ selector: 'qd-filter', changeDetection: ChangeDetectionStrategy.OnPush, host: { class: 'qd-filter' }, providers: [QdDependentFiltersService], template: "<ng-container *ngIf=\"(categories$ | async)?.length > 0\">\n <ng-container\n *ngFor=\"let category of categories$ | async; let last = last; let length = count; let categoryIndex = index\"\n >\n <qd-filter-category\n [filterId]=\"filterId\"\n [isInstantFiltering]=\"isInstantFiltering\"\n [categoryIndex]=\"categoryIndex\"\n [lastCategory]=\"last\"\n [data-test-id]=\"testId + '-category-' + categoryIndex + '-' + category\"\n ></qd-filter-category>\n </ng-container>\n\n <div [class]=\"'qd-filter__action-buttons'\" *ngIf=\"!isInstantFiltering\">\n <button\n qdButton\n qdButtonLink\n [disabled]=\"disableFilterButton$ | async\"\n (click)=\"clickFilter()\"\n [color]=\"'primary'\"\n [data-test-id]=\"testId + '-submit-button'\"\n >\n {{ \"i18n.qd.container.toolbar.filter.filter\" | translate }}\n </button>\n\n <button\n qdButton\n qdButtonLink\n [disabled]=\"disableResetButton$ | async\"\n (click)=\"resetFilter()\"\n [color]=\"'secondary'\"\n [data-test-id]=\"testId + '-reset-button'\"\n >\n {{\n ((hasPreselection$ | async)\n ? \"i18n.qd.container.toolbar.filter.backToPreSelect\"\n : \"i18n.qd.container.toolbar.filter.reset\"\n ) | translate\n }}\n </button>\n </div>\n</ng-container>\n", styles: [":host{position:relative;display:flex;flex-wrap:wrap}:host .qd-filter__action-buttons{display:flex;flex-wrap:wrap-reverse}:host ::ng-deep .qd-button{position:relative;margin-bottom:1rem}:host ::ng-deep .qd-button:last-child{margin-left:1rem}\n"] }]
|
|
290
|
+
}], ctorParameters: () => [{ type: i1.QdFilterService }, { type: i2.QdFilterRouterConnectorService }, { type: i3.QdDependentFiltersService }], propDecorators: { filterData: [{
|
|
291
|
+
type: Input
|
|
292
|
+
}], testId: [{
|
|
293
|
+
type: Input,
|
|
294
|
+
args: ['data-test-id']
|
|
295
|
+
}], queryStringOutput: [{
|
|
296
|
+
type: Output
|
|
297
|
+
}], postBodyOutput: [{
|
|
298
|
+
type: Output
|
|
299
|
+
}], valueChange: [{
|
|
300
|
+
type: Output
|
|
301
|
+
}], filterCategory: [{
|
|
302
|
+
type: ViewChildren,
|
|
303
|
+
args: [forwardRef(() => QdFilterCategoryComponent)]
|
|
304
|
+
}], dataTestId: [{
|
|
305
|
+
type: HostBinding,
|
|
306
|
+
args: ['attr.data-test-id']
|
|
307
|
+
}] } });
|
|
308
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmlsdGVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL2xpYnMvcWQtdWkvc3JjL2xpYi9maWx0ZXIvZmlsdGVyLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL2xpYnMvcWQtdWkvc3JjL2xpYi9maWx0ZXIvZmlsdGVyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLG9CQUFvQjtBQUNwQixPQUFPLEVBQ0wsdUJBQXVCLEVBQ3ZCLFNBQVMsRUFDVCxZQUFZLEVBQ1osVUFBVSxFQUNWLFdBQVcsRUFDWCxLQUFLLEVBSUwsTUFBTSxFQUNOLFNBQVMsRUFFVCxZQUFZLEVBQ2IsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFFLElBQUksRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBQ3hDLE9BQU8sRUFDTCxlQUFlLEVBQ2YsYUFBYSxFQUNiLEtBQUssRUFDTCxjQUFjLEVBQ2QsSUFBSSxFQUNKLEtBQUssRUFFTCxhQUFhLEVBRWIsU0FBUyxFQUNULEdBQUcsRUFDSixNQUFNLE1BQU0sQ0FBQztBQUNkLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLEVBQUUsR0FBRyxFQUFFLElBQUksRUFBRSxJQUFJLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUMvRSxPQUFPLEVBQUUsRUFBRSxJQUFJLElBQUksRUFBRSxNQUFNLE1BQU0sQ0FBQztBQUNsQyxPQUFPLEtBQUssQ0FBQyxNQUFNLFFBQVEsQ0FBQztBQUM1QixPQUFPLEVBQUUseUJBQXlCLEVBQUUsTUFBTSxzQ0FBc0MsQ0FBQztBQUNqRixPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFDbEUsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZ0NBQWdDLENBQUM7QUFHbkUsT0FBTyxFQUFFLDhCQUE4QixFQUFFLE1BQU0sNENBQTRDLENBQUM7QUFDNUYsT0FBTyxFQUFFLHlCQUF5QixFQUFFLE1B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QUNqQixDQUFDLHlCQUF5QixDQUFDO3lLQU16QixVQUFVO3NCQUF0QixLQUFLO2dCQVlpQixNQUFNO3NCQUE1QixLQUFLO3VCQUFDLGNBQWM7Z0JBTVgsaUJBQWlCO3NCQUExQixNQUFNO2dCQU1HLGNBQWM7c0JBQXZCLE1BQU07Z0JBS0csV0FBVztzQkFBcEIsTUFBTTtnQkFHQSxjQUFjO3NCQURwQixZQUFZO3VCQUFDLFVBQVUsQ0FBQyxHQUFHLEVBQUUsQ0FBQyx5QkFBeUIsQ0FBQztnQkFHbkIsVUFBVTtzQkFBL0MsV0FBVzt1QkFBQyxtQkFBbUIiLCJzb3VyY2VzQ29udGVudCI6WyIvLyBAdHMtc3RyaWN0LWlnbm9yZVxuaW1wb3J0IHtcbiAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gIENvbXBvbmVudCxcbiAgRXZlbnRFbWl0dGVyLFxuICBmb3J3YXJkUmVmLFxuICBIb3N0QmluZGluZyxcbiAgSW5wdXQsXG4gIE9uQ2hhbmdlcyxcbiAgT25EZXN0cm95LFxuICBPbkluaXQsXG4gIE91dHB1dCxcbiAgUXVlcnlMaXN0LFxuICBTaW1wbGVDaGFuZ2VzLFxuICBWaWV3Q2hpbGRyZW5cbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBkaWZmIH0gZnJvbSAnZGVlcC1vYmplY3QtZGlmZic7XG5pbXBvcnQge1xuICBCZWhhdmlvclN1YmplY3QsXG4gIGNvbWJpbmVMYXRlc3QsXG4gIGRlbGF5LFxuICBmaXJzdFZhbHVlRnJvbSxcbiAgZnJvbSxcbiAgbWVyZ2UsXG4gIE9ic2VydmFibGUsXG4gIFJlcGxheVN1YmplY3QsXG4gIFN1YnNjcmlwdGlvbixcbiAgc3dpdGNoTWFwLFxuICB0YXBcbn0gZnJvbSAncnhqcyc7XG5pbXBvcnQgeyBkaXN0aW5jdFVudGlsQ2hhbmdlZCwgZmlsdGVyLCBtYXAsIHNraXAsIHRha2UgfSBmcm9tICdyeGpzL29wZXJhdG9ycyc7XG5pbXBvcnQgeyB2NCBhcyB1dWlkIH0gZnJvbSAndXVpZCc7XG5pbXBvcnQgKiBhcyBfIGZyb20gJ2xvZGFzaCc7XG5pbXBvcnQgeyBRZEZpbHRlckNhdGVnb3J5Q29tcG9uZW50IH0gZnJvbSAnLi9jYXRlZ29yeS9maWx0ZXItY2F0ZWdvcnkuY29tcG9uZW50JztcbmltcG9ydCB7IFFkRmlsdGVyU2VydmljZSB9IGZyb20gJy4vZmlsdGVyLXNlcnZpY2UvZmlsdGVyLnNlcnZpY2UnO1xuaW1wb3J0IHsgaGFzQWN0aXZlQ2F0ZWdvcnkgfSBmcm9tICcuL2hlbHBlcnMvZmlsdGVyLWFjdGl2ZS5oZWxwZXInO1xuaW1wb3J0IHsgUWRGaWx0ZXJDYXRlZ29yeSwgUWRGaWx0ZXJDb25maWdEYXRhIH0gZnJvbSAnLi9tb2RlbC9maWx0ZXItY29uZmlnLmludGVyZmFjZSc7XG5pbXBvcnQgeyBRZEZpbHRlclBvc3RCb2R5RGF0YSB9IGZyb20gJy4vbW9kZWwvZmlsdGVyLXBvc3QtYm9keS5pbnRlcmZhY2UnO1xuaW1wb3J0IHsgUWRGaWx0ZXJSb3V0ZXJDb25uZWN0b3JTZXJ2aWNlIH0gZnJvbSAnLi9zZXJ2aWNlcy9maWx0ZXItcm91dGVyLWNvbm5lY3Rvci5zZXJ2aWNlJztcbmltcG9ydCB7IFFkRGVwZW5kZW50RmlsdGVyc1NlcnZpY2UgfSBmcm9tICcuL3NlcnZpY2VzL2RlcGVuZGVudC1maWx0ZXJzLnNlcnZpY2UnO1xuXG4vKipcbiAqIFRoZSAqKlFkRmlsdGVyKiogaXMgcmVzcG9uc2libGUgZm9yIHRoZSBmaWx0ZXJpbmcgb2YgZGF0YS5cbiAqXG4gKiBIaXJhcmNoaWNhbCBzdHJ1Y3R1cmU6OlxuICogLSAqKkZpbHRlcioqOiBOYW1lIG9mIHRoZSBjb21wb25lbnQuXG4gKiAtICoqQ2F0ZWdvcmllcyoqOiBBIGxpc3Qgb2Ygb25lIG9yIG1vcmUgZGlmZmVyZW50IGNhdGVnb3JpZXMuXG4gKiAtICoqSXRlbXMqKjogQSBsaXN0IHdpdGggb25lIG9yIG1vcmUgaXRlbXMgYmVsb25ncyB0byBhIHBhcmVudCBjYXRlZ29yeS5cbiAqXG4gKiAjIyMgRmlsdGVyIHNlbGVjdGlvbiAjIyNcbiAqXG4gKiBUbyBnZXQgdGhlIGFwcGxpZWQgZmlsdGVycyB5b3UgY2FuIGxpc3RlbiB0byB0aGUgb3V0cHV0cyBgKHF1ZXJ5U3RyaW5nT3V0cHV0KWAgYW5kIGAocG9zdEJvZHlPdXRwdXQpYC5cbiAqIFRoZXNlIG91dHB1dHMgd2lsbCBiZSBlbWl0dGVkIHdoZW4gdGhlIGZpbHRlciBpcyB0cmlnZ2VyZWQuIFRoZSBgKHF1ZXJ5U3RyaW5nT3V0cHV0KWAgcmV0dXJuc1xuICogdGhlIGFwcGxpZWQgZmlsdGVycyBhcyBhbiB1cmwgc3RyaW5nIHdpdGggYW4gZW5jb2RlZCAqZmlsdGVyKiBwYXJhbWV0ZXIuIFRoZSBgKHBvc3RCb2R5T3V0cHV0KWBcbiAqIHlpZWxkcyBhbiBvYmplY3QgY29udGFpbmluZyB0aGUgY2F0ZWdvcmllcyBhbmQgYWN0aXZlIGl0ZW1zLlxuICpcbiAqIEluIGFkZGl0aW9uIHRvIHRoZSBvdXRwdXRzLCB5b3UgYWxzbyBjYW4gcXVlcnkgdGhlIGN1cnJlbnQgZmlsdGVyIHNlbGVjdGlvbiB3aXRoIHRoZVxuICogZmlsdGVyIGNvbXBvbmVudCBtZXRob2RzIGBnZXRDdXJyZW50UXVlcnlTdHJpbmdgLCBgZ2V0Q3VycmVudEZpbHRlclVybFBhcmFtZXRlclN0cmluZ2AgYW5kIGBnZXRDdXJyZW50UG9zdEJvZHlgLlxuICpcbiAqICMjIyBQcmVzZXJ2ZSBmaWx0ZXIgc3RhdGUgIyMjXG4gKlxuICogVG8gcHJlc2VydmUgdGhlIGZpbHRlciBzdGF0ZSB3aGVuIG5hdmlnYXRpbmcsIGZvciBleGFtcGxlIGJldHdlZW4gZGV0YWlsIGFuZCBvdmVydmlldyBwYWdlLCB5b3UganVzdCBoYXZlIHRvIGRlZmluZVxuICogYSB1aWQgaW4gdGhlIGZpbHRlciBkYXRhIGNvbmZpZy5cbiAqXG4gKiAjIyMgTXVsdGkgU3RhZ2luZyBGaWx0ZXJzXG4gKlxuICogVG8gYnVpbGQgYSBkZXBlbmRlbmN5IGNoYWluIG9mIGZpbHRlcnMgeW91IGNhbiB1c2UgdGhlIGBkZXBlbmRzT25gIHByb3BlcnR5IG9mIGEgZmlsdGVyIHRoYXQgZGVwZW5kcyBvblxuICogb3RoZXIgZmlsdGVycy4gSW4gdGhlIGBkZXBlbmRzT25gIHByb3BlcnR5IHlvdSBzZXQgdGhlIG5hbWVzIG9mIHRoZSBmaWx0ZXIgY2F0ZWdvcmllcyB0aGUgY2F0ZWdvcnkgZGVwZW5kcyBvbi5cbiAqIEFsd2F5cyB3aGVuIG9uZSBvZiB0aGVzZSBjYXRlZ29yaWVzIGNoYW5nZSB0aGUgYGl0ZW1zUmVzb2x2ZXJgIHdpbGwgYmUgY2FsbGVkIHdpdGggdGhlIGxpc3RcbiAqIG9mIGNhdGVnb3JpZXMgZ2l2ZW4gaW4gYGRlcGVuZHNPbmAuIFRoZSBgaXRlbXNSZXNvbHZlcmAgY2FuIGFsc28gYmUgZGVmaW5lZCBpbiB0aGUgY29uZmlnIHdoZXJlIGBkZXBlbmRzT25gXG4gKiBpcyBhbHNvIGRlZmluZWQuXG4gKlxuICogSWYgdGhlIGl0ZW1zIHJlc29sdmVyIGhhcyBub3QgYmVlbiBjYWxsZWQgeWV0IG9yIHdoZW4gaXQgcmV0dXJucyBhbiBlbXB0eSBhcnJheSBvZiBpdGVtcyxcbiAqIHRoZSBjb3JyZXNwb25kaW5nIGZpbHRlciBzdGFnZSB3b24ndCBiZSByZW5kZXJlZC5cbiAqXG4gKiAjIyMjIFN1cHBvcnRcbiAqXG4gKiBNdWx0aSBTdGFnaW5nIEZpbHRlcnMgb25seSB3b3JrIGZvciBgc2luZ2xlU2VsZWN0YCBhbmQgYG11bHRpU2VsZWN0YCBmaWx0ZXJzLlxuICpcbiAqL1xuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAncWQtZmlsdGVyJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2ZpbHRlci5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2ZpbHRlci5jb21wb25lbnQuc2NzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgaG9zdDogeyBjbGFzczogJ3FkLWZpbHRlcicgfSxcbiAgcHJvdmlkZXJzOiBbUWREZXBlbmRlbnRGaWx0ZXJzU2VydmljZV1cbn0pXG5leHBvcnQgY2xhc3MgUWRGaWx0ZXJDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQsIE9uQ2hhbmdlcywgT25EZXN0cm95IHtcbiAgLyoqXG4gICAqIFRoZSBjb25maWd1cmF0aW9uIG9mIHRoZSBmaWx0ZXJcbiAgICovXG4gIEBJbnB1dCgpIHNldCBmaWx0ZXJEYXRhKGZpbHRlckRhdGE6IFFkRmlsdGVyQ29uZmlnRGF0YSkge1xuICAgIHRoaXMuX2ZpbHRlckRhdGFTdWJqZWN0Lm5leHQoZmlsdGVyRGF0YSk7XG4gIH1cblxuICBnZXQgZmlsdGVyRGF0YSgpOiBRZEZpbHRlckNvbmZpZ0RhdGEge1xuICAgIHJldHVybiB0aGlzLl9maWx0ZXJEYXRhU3ViamVjdC52YWx1ZTtcbiAgfVxuXG4gIC8qKlxuICAgKiBBIHN0YXRpYyB0ZXN0IElEIGZvciBpbnRlZ3JhdGlvbiB0ZXN0cyBjYW4gYmUgc2V0LiA8YnIgLz5cbiAgICogVGhlIHZhbHVlIGZvciB0aGUgSFRNTCBhdHRyaWJ1dGUgW2RhdGEtdGVzdC1pZF0uXG4gICAqL1xuICBASW5wdXQoJ2RhdGEtdGVzdC1pZCcpIHRlc3RJZCA9ICdmaWx0ZXInO1xuXG4gIC8qKlxuICAgKiBFbWl0cyBldmVudCBvbiBjbGljay90YXAgb2YgdGhlIGZpbHRlci9yZXNldCBidXR0b24gb2YgdGhlIGZpbHRlciBvciBvbiBkZWxldGlvbiBvZiBhbiBhY3RpdmUgaXRlbS4gPGJyIC8+XG4gICAqIFJldHVybiB2YWx1ZSBpcyB0aGUgcXVlcnkgc3RyaW5nIG9mIHRoZSBmaWx0ZXIuXG4gICAqL1xuICBAT3V0cHV0KCkgcXVlcnlTdHJpbmdPdXRwdXQgPSBuZXcgRXZlbnRFbWl0dGVyPHN0cmluZz4oKTtcblxuICAvKipcbiAgICogRW1pdHMgZXZlbnQgb24gY2xpY2svdGFwIG9mIHRoZSBmaWx0ZXIvcmVzZXQgYnV0dG9uIG9mIHRoZSBmaWx0ZXIgb3Igb24gZGVsZXRpb24gb2YgYW4gYWN0aXZlIGl0ZW0uIDxiciAvPlxuICAgKiBSZXR1cm4gdmFsdWUgaXMgdGhlIHJlc3VsdCBvYmplY3Qgb2YgdGhlIGZpbHRlci5cbiAgICovXG4gIEBPdXRwdXQoKSBwb3N0Qm9keU91dHB1dCA9IG5ldyBFdmVudEVtaXR0ZXI8UWRGaWx0ZXJQb3N0Qm9keURhdGE+KCk7XG5cbiAgLyoqXG4gICAqIEVtaXRzIGV2ZW50IHdoZW4gdGhlIHZhbHVlcyBvZiB0aGUgZmlsdGVyIGNoYW5nZS4gUmV0dXJuIHZhbHVlIG1hdGNoZXMgdGhlIGN1cnJlbnQgb2JqZWN0IG9mIHRoZSBmaWx0ZXIuXG4gICAqL1xuICBAT3V0cHV0KCkgdmFsdWVDaGFuZ2UgPSBuZXcgRXZlbnRFbWl0dGVyPFFkRmlsdGVyUG9zdEJvZHlEYXRhPigpO1xuXG4gIEBWaWV3Q2hpbGRyZW4oZm9yd2FyZFJlZigoKSA9PiBRZEZpbHRlckNhdGVnb3J5Q29tcG9uZW50KSlcbiAgcHVibGljIGZpbHRlckNhdGVnb3J5OiBRdWVyeUxpc3Q8UWRGaWx0ZXJDYXRlZ29yeUNvbXBvbmVudD47XG5cbiAgQEhvc3RCaW5kaW5nKCdhdHRyLmRhdGEtdGVzdC1pZCcpIGdldCBkYXRhVGVzdElkKCk6IHN0cmluZyB7XG4gICAgcmV0dXJuIHRoaXMudGVzdElkICsgJy0nICsgdGhpcy5maWx0ZXJJZDtcbiAgfVxuXG4gIGRpc2FibGVGaWx0ZXJCdXR0b24kOiBPYnNlcnZhYmxlPGJvb2xlYW4+O1xuICBkaXNhYmxlUmVzZXRCdXR0b24kOiBPYnNlcnZhYmxlPGJvb2xlYW4+O1xuICBmaWx0ZXJJZDogc3RyaW5nO1xuXG4gIHByaXZhdGUgX3F1ZXJ5U3RyaW5nU3Vic2NyaXB0aW9uOiBTdWJzY3JpcHRpb247XG4gIHByaXZhdGUgX3Bvc3RCb2R5U3Vic2NyaXB0aW9uOiBTdWJzY3JpcHRpb247XG4gIHByaXZhdGUgX2VtaXRPdXRwdXRzU3Vic2NyaXB0aW9uOiBTdWJzY3JpcHRpb247XG4gIHByaXZhdGUgX2ZpbHRlclZhbHVlU3Vic2NyaXB0aW9uOiBTdWJzY3JpcHRpb247XG4gIHByaXZhdGUgX2ZpbHRlckRhdGFTdWJqZWN0ID0gbmV3IEJlaGF2aW9yU3ViamVjdDxRZEZpbHRlckNvbmZpZ0RhdGE+KHVuZGVmaW5lZCk7XG4gIHByaXZhdGUgX2hhc1ByZXNlbGVjdGlvblN1YmplY3QgPSBuZXcgUmVwbGF5U3ViamVjdDxib29sZWFuPigxKTtcbiAgcHJpdmF0ZSBfY2F0ZWdvcmllc1N1YmplY3QgPSBuZXcgUmVwbGF5U3ViamVjdDxRZEZpbHRlckNhdGVnb3J5WydjYXRlZ29yeSddW10+KDEpO1xuICBwcml2YXRlIF9maWx0ZXJDb25uZWN0ZWRXaXRoUm91dGVyU3ViamVjdCA9IG5ldyBSZXBsYXlTdWJqZWN0PHZvaWQ+KCk7XG4gIHByaXZhdGUgX2ZpbHRlckNvbm5lY3RlZFdpdGhSb3V0ZXIkID0gdGhpcy5fZmlsdGVyQ29ubmVjdGVkV2l0aFJvdXRlclN1YmplY3QuYXNPYnNlcnZhYmxlKCk7XG5cbiAgc2V0IGhhc1ByZXNlbGVjdGlvbihoYXNQcmVzZWxlY3Rpb246IGJvb2xlYW4pIHtcbiAgICB0aGlzLl9oYXNQcmVzZWxlY3Rpb25TdWJqZWN0Lm5leHQoaGFzUHJlc2VsZWN0aW9uKTtcbiAgfVxuXG4gIGdldCBoYXNQcmVzZWxlY3Rpb24kKCk6IE9ic2VydmFibGU8Ym9vbGVhbj4ge1xuICAgIHJldHVybiB0aGlzLl9oYXNQcmVzZWxlY3Rpb25TdWJqZWN0LmFzT2JzZXJ2YWJsZSgpO1xuICB9XG5cbiAgc2V0IGNhdGVnb3JpZXMoY2F0ZWdvcmllczogUWRGaWx0ZXJDYXRlZ29yeVsnY2F0ZWdvcnknXVtdKSB7XG4gICAgdGhpcy5fY2F0ZWdvcmllc1N1YmplY3QubmV4dChjYXRlZ29yaWVzKTtcbiAgfVxuXG4gIGdldCBjYXRlZ29yaWVzJCgpOiBPYnNlcnZhYmxlPFFkRmlsdGVyQ2F0ZWdvcnlbJ2NhdGVnb3J5J11bXT4ge1xuICAgIHJldHVybiB0aGlzLl9jYXRlZ29yaWVzU3ViamVjdC5hc09ic2VydmFibGUoKTtcbiAgfVxuXG4gIGdldCBpc0luc3RhbnRGaWx0ZXJpbmcoKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIHRoaXMuZmlsdGVyRGF0YT8uaXNJbnN0YW50RmlsdGVyaW5nID09PSB0cnVlO1xuICB9XG5cbiAgY29uc3RydWN0b3IoXG4gICAgcmVhZG9ubHkgZmlsdGVyU2VydmljZTogUWRGaWx0ZXJTZXJ2aWNlLFxuICAgIHJlYWRvbmx5IGZpbHRlclJvdXRlckNvbm5lY3RvclNlcnZpY2U6IFFkRmlsdGVyUm91dGVyQ29ubmVjdG9yU2VydmljZSxcbiAgICByZWFkb25seSBkZXBlbmRlbnRGaWx0ZXJzU2VydmljZTogUWREZXBlbmRlbnRGaWx0ZXJzU2VydmljZVxuICApIHt9XG5cbiAgYXN5bmMgbmdPbkluaXQoKTogUHJvbWlzZTx2b2lkPiB7XG4gICAgYXdhaXQgdGhpcy53YWl0Rm9yRmlsdGVyRGF0YSgpO1xuXG4gICAgdGhpcy5maWx0ZXJJZCA9IHRoaXMuZmlsdGVyRGF0YT8udWlkIHx8IHV1aWQoKTtcblxuICAgIHRoaXMudmFsaWRhdGVDb25maWcoKTtcbiAgICB0aGlzLmluaXQoKTtcbiAgfVxuXG4gIHByaXZhdGUgd2FpdEZvckZpbHRlckRhdGEoKTogUHJvbWlzZTxRZEZpbHRlckNvbmZpZ0RhdGE+IHtcbiAgICByZXR1cm4gZmlyc3RWYWx1ZUZyb20odGhpcy5fZmlsdGVyRGF0YVN1YmplY3QucGlwZShmaWx0ZXIoZmlsdGVyRGF0YSA9PiAhIWZpbHRlckRhdGEpKSk7XG4gIH1cblxuICBuZ09uQ2hhbmdlcyhjaGFuZ2VzOiBTaW1wbGVDaGFuZ2VzKTogdm9pZCB7XG4gICAgLy8gVE9ETzogRGVjaXNpb246IElzIHRoZXJlIHJlYWxseSBhIG5lZWQgZm9yIHRoaXM/Pz9cbiAgICBpZiAodGhpcy5oYXNDaGFuZ2VzQnlLZXkoY2hhbmdlcywgJ2kxOG4nKSlcbiAgICAgIHRoaXMuZmlsdGVyU2VydmljZS51cGRhdGVDYXRlZ29yeVRyYW5zbGF0aW9uKHRoaXMuZmlsdGVySWQsIHRoaXMuZmlsdGVyRGF0YSk7XG5cbiAgICBpZiAodGhpcy5oYXNDaGFuZ2VzQnlLZXkoY2hhbmdlcywgJ2l0ZW1zJykgfHwgdGhpcy5oYXNDaGFuZ2VzQnlLZXkoY2hhbmdlcywgJ2ZpbHRlcicpKVxuICAgICAgdGhpcy5maWx0ZXJTZXJ2aWNlLmluaXRGaWx0ZXJTdGF0ZSh0aGlzLmZpbHRlcklkLCB0aGlzLmZpbHRlckRhdGEpO1xuXG4gICAgaWYgKHRoaXMuaGFzQ2hhbmdlc0J5Q2F0ZWdvcmllc0xlbmd0aChjaGFuZ2VzKSkge1xuICAgICAgdGhpcy5maWx0ZXJTZXJ2aWNlLmluaXRGaWx0ZXJTdGF0ZSh0aGlzLmZpbHRlcklkLCB0aGlzLmZpbHRlckRhdGEpO1xuICAgICAgdGhpcy5jYXRlZ29yaWVzID0gdGhpcy5maWx0ZXJEYXRhLmNhdGVnb3JpZXMubWFwKGNhdGVnb3J5ID0+IGNhdGVnb3J5LmNhdGVnb3J5KTtcbiAgICB9XG4gIH1cblxuICBuZ09uRGVzdHJveSgpOiB2b2lkIHtcbiAgICB0aGlzLmZpbHRlclJvdXRlckNvbm5lY3RvclNlcnZpY2UuZGlzY29ubmVjdEZpbHRlckZyb21Sb3V0ZXIodGhpcyk7XG4gICAgdGhpcy5kZXBlbmRlbnRGaWx0ZXJzU2VydmljZS5kZXN0cm95KCk7XG5cbiAgICB0aGlzLl9xdWVyeVN0cmluZ1N1YnNjcmlwdGlvbj8udW5zdWJzY3JpYmUoKTtcbiAgICB0aGlzLl9wb3N0Qm9keVN1YnNjcmlwdGlvbj8udW5zdWJzY3JpYmUoKTtcbiAgICB0aGlzLl9lbWl0T3V0cHV0c1N1YnNjcmlwdGlvbj8udW5zdWJzY3JpYmUoKTtcbiAgICB0aGlzLl9maWx0ZXJWYWx1ZVN1YnNjcmlwdGlvbj8udW5zdWJzY3JpYmUoKTtcblxuICAgIC8qIHRoZSBSZXBsYXlTdWJqZWN0cyB3b3VsZCBjYXVzZSBhbiBpbml0aWFsIGVtaXNzaW9uIG9mIHRoZSBvdXRwdXRzIGlmIHRoZSBjb21wb25lbnQgaXMgcmVpbml0aWFsaXplZFxuICAgICAqICh3aGVuIG5hdmlnYXRpbmcgYmFjayBmb3IgZXhhbXBsZSkuIFJlcGxheVN1YmplY3RzIGFyZSB1c2VkIGhlcmUgYmVjYXVzZSB0aGUgc3Vic2NyaXB0aW9uIG9mIHRoZSBzZWN0aW9uXG4gICAgICogaXMgZGVsYXllZCBpbiB0aGUgaW50ZWdyYXRlZCBzb2x1dGlvbiB3aXRoIHRoZSBxZENvbm5lY3RUb0ZpbHRlciBkaXJlY3RpdmUuICovXG4gICAgdGhpcy5maWx0ZXJTZXJ2aWNlLnJlc2V0RW1pc3Npb25SZXBsYXlTdWJqZWN0cyh0aGlzLmZpbHRlcklkKTtcbiAgfVxuXG4gIGNsaWNrRmlsdGVyKCk6IHZvaWQge1xuICAgIHRoaXMuZmlsdGVyQ2F0ZWdvcnkuZm9yRWFjaChjYXRlZ29yeSA9PiBjYXRlZ29yeS5yZWZyZXNoSXRlbXMoKSk7XG5cbiAgICB0aGlzLmVtaXRPdXRwdXRzKCk7XG4gIH1cblxuICBhc3luYyByZXNldEZpbHRlcigpOiBQcm9taXNlPHZvaWQ+IHtcbiAgICB0aGlzLmZpbHRlclNlcnZpY2UuaW5pdEZpbHRlclN0YXRlKHRoaXMuZmlsdGVySWQsIHRoaXMuZmlsdGVyRGF0YSk7XG4gICAgdGhpcy5maWx0ZXJDYXRlZ29yeS5mb3JFYWNoKGNhdGVnb3J5ID0+IGNhdGVnb3J5LmhhbmRsZVJlc2V0KCkpO1xuXG4gICAgaWYgKGF3YWl0IGZpcnN0VmFsdWVGcm9tKHRoaXMuaGFzUHJlc2VsZWN0aW9uJCkpIHRoaXMuZW1pdE91dHB1dHMoKTtcbiAgfVxuXG4gIGVtaXRPdXRwdXRzKCk6IHZvaWQge1xuICAgIHRoaXMuZmlsdGVyU2VydmljZS5lbWl0UXVlcnlTdHJpbmcodGhpcy5maWx0ZXJJZCwgdGhpcy5maWx0ZXJEYXRhPy5vdXRwdXRMZWdhY3lRdWVyeVN0cmluZ0Zvcm1hdCAhPT0gZmFsc2UpO1xuICAgIHRoaXMuZmlsdGVyU2VydmljZS5lbWl0RmlsdGVyVXJsUGFyYW1ldGVyU3RyaW5nKHRoaXMuZmlsdGVySWQpO1xuICAgIHRoaXMuZmlsdGVyU2VydmljZS5lbWl0UG9zdEJvZHkodGhpcy5maWx0ZXJJZCk7XG4gIH1cblxuICBnZXRDdXJyZW50UXVlcnlTdHJpbmcoKTogT2JzZXJ2YWJsZTxzdHJpbmc+IHtcbiAgICByZXR1cm4gdGhpcy5maWx0ZXJTZXJ2aWNlLmdldEN1cnJlbnRRdWVyeVN0cmluZyhcbiAgICAgIHRoaXMuZmlsdGVySWQsXG4gICAgICB0aGlzLmZpbHRlckRhdGE/Lm91dHB1dExlZ2FjeVF1ZXJ5U3RyaW5nRm9ybWF0ICE9PSBmYWxzZVxuICAgICk7XG4gIH1cblxuICBnZXRDdXJyZW50RmlsdGVyVXJsUGFyYW1ldGVyU3RyaW5nKCk6IE9ic2VydmFibGU8c3RyaW5nPiB7XG4gICAgcmV0dXJuIHRoaXMuZmlsdGVyU2VydmljZS5nZXRDdXJyZW50RmlsdGVyVXJsUGFyYW1ldGVyU3RyaW5nKHRoaXMuZmlsdGVySWQpO1xuICB9XG5cbiAgZ2V0Q3VycmVudFBvc3RCb2R5KCk6IE9ic2VydmFibGU8UWRGaWx0ZXJQb3N0Qm9keURhdGE+IHtcbiAgICByZXR1cm4gdGhpcy5maWx0ZXJTZXJ2aWNlLmdldEN1cnJlbnRQb3N0Qm9keSh0aGlzLmZpbHRlcklkKTtcbiAgfVxuXG4gIGhhc0ZpbHRlckRhdGEoKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIHRoaXMuZmlsdGVyRGF0YSAhPT0gdW5kZWZpbmVkO1xuICB9XG5cbiAgc2V0RmlsdGVyQ29uZmlnKGZpbHRlckRhdGE6IFFkRmlsdGVyQ29uZmlnRGF0YSk6IHZvaWQge1xuICAgIHRoaXMuX2ZpbHRlckRhdGFTdWJqZWN0Lm5leHQoZmlsdGVyRGF0YSk7XG4gIH1cblxuICB1cGRhdGVGaWx0ZXJDb25maWcoZmlsdGVyRGF0YTogUWRGaWx0ZXJDb25maWdEYXRhKTogdm9pZCB7XG4gICAgdGhpcy5fZmlsdGVyRGF0YVN1YmplY3QubmV4dChmaWx0ZXJEYXRhKTtcblxuICAgIHRoaXMuZmlsdGVyU2VydmljZS5pbml0RmlsdGVyU3RhdGUodGhpcy5maWx0ZXJJZCwgdGhpcy5maWx0ZXJEYXRhKTtcbiAgICB0aGlzLmZpbHRlclNlcnZpY2UuZW1pdFBvc3RCb2R5KHRoaXMuZmlsdGVySWQpO1xuICAgIHRoaXMuZmlsdGVyU2VydmljZS5lbWl0RmlsdGVyVXJsUGFyYW1ldGVyU3RyaW5nKHRoaXMuZmlsdGVySWQpO1xuICB9XG5cbiAgZ2V0RmlsdGVyQ2hhbmdlcyQoKTogT2JzZXJ2YWJsZTxRZEZpbHRlclBvc3RCb2R5RGF0YT4ge1xuICAgIHJldHVybiBmcm9tKHRoaXMud2FpdEZvckZpbHRlckRhdGEoKSkucGlwZShcbiAgICAgIC8vIHdhaXQgZm9yIGZpbHRlcklkXG4gICAgICBzd2l0Y2hNYXAoKCkgPT4gdGhpcy5fZmlsdGVyQ29ubmVjdGVkV2l0aFJvdXRlciQpLFxuICAgICAgZGVsYXkoMSksXG4gICAgICBzd2l0Y2hNYXAoKCkgPT4gdGhpcy5maWx0ZXJTZXJ2aWNlLmdldFBvc3RCb2R5JCh0aGlzLmZpbHRlcklkKSlcbiAgICApO1xuICB9XG5cbiAgcHJpdmF0ZSB2YWxpZGF0ZUNvbmZpZygpOiB2b2lkIHtcbiAgICBpZiAodGhpcy5maWx0ZXJEYXRhPy5vdXRwdXRMZWdhY3lRdWVyeVN0cmluZ0Zvcm1hdCAhPT0gZmFsc2UgJiYgdGhpcy5xdWVyeVN0cmluZ091dHB1dC5vYnNlcnZlcnMubGVuZ3RoID4gMCkge1xuICAgICAgY29uc29sZS53YXJuKFxuICAgICAgICAnUWRGaWx0ZXIgfCBZb3UgdXNlIHRoZSBxdWVyeVN0cmluZ091dHB1dCB3aXRoIHRoZSBsZWdhY3kgZm9ybWF0LiBUbyB1c2UgdGhlIG5ldyBmb3JtYXQgcGxlYXNlIHNldCBvdXRwdXRMZWdhY3lRdWVyeVN0cmluZ0Zvcm1hdCB0byBmYWxzZS4gVGhlIGxlZ2FjeSBmb3JtYXQgd2lsbCBiZSByZW1vdmVkIGluIGZ1dHVyZSByZWxlYXNlcy4nXG4gICAgICApO1xuICAgIH1cbiAgfVxuXG4gIHByaXZhdGUgaW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLnJlSW5pdEZyb21TdG9yZUlmUmVNb3VudGVkKCk7XG5cbiAgICB0aGlzLmRpc2FibGVGaWx0ZXJCdXR0b24kID0gdGhpcy5maWx0ZXJTZXJ2aWNlXG4gICAgICAuc2VsZWN0SGFzQWN0aXZlQ2F0ZWdvcnkkKHRoaXMuZmlsdGVySWQpXG4gICAgICAucGlwZShtYXAoaGFzQWN0aXZlID0+ICFoYXNBY3RpdmUpKTtcblxuICAgIHRoaXMuaW5pdFJlc2V0QnV0dG9uQWN0aXZhdGlvbigpO1xuXG4gICAgdGhpcy5fcXVlcnlTdHJpbmdTdWJzY3JpcHRpb24gPSB0aGlzLmZpbHRlclNlcnZpY2VcbiAgICAgIC5nZXRRdWVyeVN0cmluZyQodGhpcy5maWx0ZXJJZClcbiAgICAgIC5zdWJzY3JpYmUocXVlcnlTdHJpbmcgPT4gdGhpcy5xdWVyeVN0cmluZ091dHB1dC5lbWl0KHF1ZXJ5U3RyaW5nKSk7XG5cbiAgICB0aGlzLl9wb3N0Qm9keVN1YnNjcmlwdGlvbiA9IHRoaXMuZmlsdGVyU2VydmljZVxuICAgICAgLmdldFBvc3RCb2R5JCh0aGlzLmZpbHRlcklkKVxuICAgICAgLnN1YnNjcmliZShwb3N0Qm9keSA9PiB0aGlzLnBvc3RCb2R5T3V0cHV0LmVtaXQocG9zdEJvZHkpKTtcblxuICAgIHRoaXMuaGFzUHJlc2VsZWN0aW9uID0gaGFzQWN0aXZlQ2F0ZWdvcnkodGhpcy5maWx0ZXJEYXRhPy5jYXRlZ29yaWVzKTtcblxuICAgIHRoaXMuX2VtaXRPdXRwdXRzU3Vic2NyaXB0aW9uID0gbWVyZ2UoXG4gICAgICB0aGlzLmhhc1ByZXNlbGVjdGlvbkFmdGVyUm91dGVyQ29ubmVjdGlvbiQucGlwZShcbiAgICAgICAgZmlsdGVyKGhhc1ByZXNlbGVjdGlvbiA9PiBoYXNQcmVzZWxlY3Rpb24gfHwgdGhpcy5maWx0ZXJEYXRhPy5lbWl0T3V0cHV0c0luaXRpYWxseSlcbiAgICAgICksXG4gICAgICB0aGlzLmFsbEZpbHRlcnNSZW1vdmVkJFxuICAgICkuc3Vic2NyaWJlKCgpID0+IHtcbiAgICAgIHRoaXMuZW1pdE91dHB1dHMoKTtcbiAgICB9KTtcblxuICAgIHRoaXMuX2ZpbHRlclZhbHVlU3Vic2NyaXB0aW9uID0gdGhpcy5maWx0ZXJTZXJ2aWNlXG4gICAgICAuZ2V0Q3VycmVudFBvc3RCb2R5KHRoaXMuZmlsdGVySWQpXG4gICAgICAucGlwZShcbiAgICAgICAgZGlzdGluY3RVbnRpbENoYW5nZWQoXy5pc0VxdWFsKSxcbiAgICAgICAgdGFwKCgpID0+IHtcbiAgICAgICAgICBpZiAodGhpcy5pc0luc3RhbnRGaWx0ZXJpbmcpIHRoaXMuZW1pdE91dHB1dHMoKTtcbiAgICAgICAgfSlcbiAgICAgIClcbiAgICAgIC5zdWJzY3JpYmUoZmlsdGVyVmFsdWUgPT4gdGhpcy52YWx1ZUNoYW5nZS5lbWl0KGZpbHRlclZhbHVlKSk7XG5cbiAgICB0aGlzLmluaXRpYWxpemVEZXBlbmRlbnRGaWx0ZXJzU2VydmljZSgpO1xuICB9XG5cbiAgcHJpdmF0ZSBpbml0aWFsaXplRGVwZW5kZW50RmlsdGVyc1NlcnZpY2UoKTogdm9pZCB7XG4gICAgdGhpcy5kZXBlbmRlbnRGaWx0ZXJzU2VydmljZS5pbml0aWFsaXplKHRoaXMpO1xuXG4gICAgdGhpcy5fZmlsdGVyRGF0YVN1YmplY3RcbiAgICAgIC5waXBlKHNraXAoMSkpIC8vIHNraXAgY3VycmVudCB2YWx1ZSwgb25seSByZWluaXRpYWxpemUgZm9yIGNoYW5nZXNcbiAgICAgIC5zdWJzY3JpYmUoKCkgPT4gdGhpcy5kZXBlbmRlbnRGaWx0ZXJzU2VydmljZS5yZWluaXRpYWxpemUoKSk7XG4gIH1cblxuICBwcml2YXRlIGluaXRSZXNldEJ1dHRvbkFjdGl2YXRpb24oKTogdm9pZCB7XG4gICAgdGhpcy5kaXNhYmxlUmVzZXRCdXR0b24kID0gY29tYmluZUxhdGVzdChbXG4gICAgICB0aGlzLmZpbHRlclNlcnZpY2Uuc2VsZWN0SGFzQWN0aXZlQ2F0ZWdvcnkkKHRoaXMuZmlsdGVySWQpLFxuICAgICAgdGhpcy5maWx0ZXJTZXJ2aWNlXG4gICAgICAgIC5zZWxlY3RGaWx0ZXJEYXRhQnlJZCQodGhpcy5maWx0ZXJJZClcbiAgICAgICAgLnBpcGUoXG4gICAgICAgICAgbWFwKGRhdGEgPT5cbiAgICAgICAgICAgIGRhdGEubWFwKGVudHJ5ID0+IGVudHJ5Lml0ZW1zKS5tYXAoaXRlbXMgPT4gaXRlbXMubWFwKGl0ZW0gPT4gaXRlbSkubWFwKGl0ZW0gPT4gXy5vbWl0KGl0ZW0sIFsnaGlkZGVuJ10pKSlcbiAgICAgICAgICApXG4gICAgICAgICksXG4gICAgICB0aGlzLmhhc1ByZXNlbGVjdGlvbiRcbiAgICBdKS5waXBlKFxuICAgICAgbWFwKChbaGFzQWN0aXZlQ2F0ZWdvcnksIGl0ZW1zLCBoYXNQcmVzZWxlY3Rpb25dKSA9PiB7XG4gICAgICAgIGlmIChoYXNQcmVzZWxlY3Rpb24pIHtcbiAgICAgICAgICBjb25zdCBjYXRlZ29yaWVzID0gXy5mbGF0dGVuKFxuICAgICAgICAgICAgdGhpcy5maWx0ZXJEYXRhLmNhdGVnb3JpZXMubWFwKGNhdGVnb3J5ID0+IGNhdGVnb3J5Lml0ZW1zLm1hcChpdGVtID0+ICh7IGFjdGl2ZTogZmFsc2UsIC4uLml0ZW0gfSkpKVxuICAgICAgICAgICkuZmlsdGVyKGNhdGVnb3J5ID0+IGNhdGVnb3J5Lml0ZW0pO1xuXG4gICAgICAgICAgcmV0dXJuIF8uaXNFcXVhbChcbiAgICAgICAgICAgIF8uZmxhdHRlbihpdGVtcykuZmlsdGVyKGl0ZW0gPT4gaXRlbS5pdGVtKSxcbiAgICAgICAgICAgIGNhdGVnb3JpZXNcbiAgICAgICAgICApO1xuICAgICAgICB9XG5cbiAgICAgICAgcmV0dXJuICFoYXNBY3RpdmVDYXRlZ29yeTtcbiAgICAgIH0pXG4gICAgKTtcbiAgfVxuXG4gIHByaXZhdGUgZ2V0IGhhc1ByZXNlbGVjdGlvbkFmdGVyUm91dGVyQ29ubmVjdGlvbiQoKTogT2JzZXJ2YWJsZTxib29sZWFuPiB7XG4gICAgcmV0dXJuIHRoaXMuZmlsdGVyUm91dGVyQ29ubmVjdG9yU2VydmljZS5jb25uZWN0RmlsdGVyV2l0aFJvdXRlcih0aGlzKS5waXBlKFxuICAgICAgdGFwKCgpID0+IHRoaXMuX2ZpbHRlckNvbm5lY3RlZFdpdGhSb3V0ZXJTdWJqZWN0Lm5leHQoKSksXG4gICAgICBzd2l0Y2hNYXAoKCkgPT4gdGhpcy5maWx0ZXJTZXJ2aWNlLnNlbGVjdEhhc0FjdGl2ZUNhdGVnb3J5JCh0aGlzLmZpbHRlcklkKSksXG4gICAgICB0YWtlKDEpXG4gICAgKTtcbiAgfVxuXG4gIHByaXZhdGUgZ2V0IGFsbEZpbHRlcnNSZW1vdmVkJCgpOiBPYnNlcnZhYmxlPGJvb2xlYW4+IHtcbiAgICByZXR1cm4gdGhpcy5maWx0ZXJTZXJ2aWNlLnNlbGVjdEhhc0FjdGl2ZUNhdGVnb3J5JCh0aGlzLmZpbHRlcklkKS5waXBlKFxuICAgICAgc2tpcCgxKSxcbiAgICAgIGZpbHRlcihzb21lQ2F0ZWdvcnlBY3RpdmUgPT4gIXNvbWVDYXRlZ29yeUFjdGl2ZSlcbiAgICApO1xuICB9XG5cbiAgcHJpdmF0ZSBoYXNDaGFuZ2VzQnlLZXkoY2hhbmdlcywga2V5KTogYm9vbGVhbiB7XG4gICAgY29uc3QgX2RpZmYgPSBkaWZmKGNoYW5nZXMuZmlsdGVyRGF0YS5jdXJyZW50VmFsdWUsIGNoYW5nZXMuZmlsdGVyRGF0YS5wcmV2aW91c1ZhbHVlKSBhcyBRZEZpbHRlckNvbmZpZ0RhdGE7XG5cbiAgICBpZiAoIV9kaWZmIHx8ICFfZGlmZi5jYXRlZ29yaWVzKSByZXR1cm4gZmFsc2U7XG5cbiAgICByZXR1cm4gT2JqZWN0LnZhbHVlcyhfZGlmZi5jYXRlZ29yaWVzKT8uZmlsdGVyKGNhdGVnb3J5ID0+IGNhdGVnb3J5ICYmIGNhdGVnb3J5W2tleV0gIT09IHVuZGVmaW5lZCkubGVuZ3RoID4gMDtcbiAgfVxuXG4gIHByaXZhdGUgaGFzQ2hhbmdlc0J5Q2F0ZWdvcmllc0xlbmd0aChjaGFuZ2VzKTogYm9vbGVhbiB7XG4gICAgaWYgKGNoYW5nZXMuZmlsdGVyRGF0YS5wcmV2aW91c1ZhbHVlID09PSB1bmRlZmluZWQpIHJldHVybiBmYWxzZTtcblxuICAgIHJldHVybiBjaGFuZ2VzLmZpbHRlckRhdGEuY3VycmVudFZhbHVlLmNhdGVnb3JpZXMubGVuZ3RoICE9PSBjaGFuZ2VzLmZpbHRlckRhdGEucHJldmlvdXNWYWx1ZS5jYXRlZ29yaWVzLmxlbmd0aDtcbiAgfVxuXG4gIHByaXZhdGUgcmVJbml0RnJvbVN0b3JlSWZSZU1vdW50ZWQoKTogdm9pZCB7XG4gICAgdGhpcy5maWx0ZXJTZXJ2aWNlXG4gICAgICAuc2VsZWN0RmlsdGVyRGF0YUJ5SWQkKHRoaXMuZmlsdGVySWQpXG4gICAgICAucGlwZSh0YWtlKDEpKVxuICAgICAgLnN1YnNjcmliZShmaWx0ZXJDYXRlZ29yaWVzRnJvbVN0b3JlID0+IHtcbiAgICAgICAgaWYgKGZpbHRlckNhdGVnb3JpZXNGcm9tU3RvcmUubGVuZ3RoID4gMCkge1xuICAgICAgICAgIHRoaXMuY2F0ZWdvcmllcyA9IGZpbHRlckNhdGVnb3JpZXNGcm9tU3RvcmUubWFwKGNhdGVnb3J5ID0+IGNhdGVnb3J5LmNhdGVnb3J5KTtcbiAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICB0aGlzLmNhdGVnb3JpZXMgPSB0aGlzLmZpbHRlckRhdGE/LmNhdGVnb3JpZXMubWFwKGNhdGVnb3J5ID0+IGNhdGVnb3J5LmNhdGVnb3J5KTtcbiAgICAgICAgICB0aGlzLmZpbHRlclNlcnZpY2UuaW5pdEZpbHRlclN0YXRlKHRoaXMuZmlsdGVySWQsIHRoaXMuZmlsdGVyRGF0YSk7XG4gICAgICAgIH1cbiAgICAgIH0pO1xuICB9XG59XG4iLCI8bmctY29udGFpbmVyICpuZ0lmPVwiKGNhdGVnb3JpZXMkIHwgYXN5bmMpPy5sZW5ndGggPiAwXCI+XG4gIDxuZy1jb250YWluZXJcbiAgICAqbmdGb3I9XCJsZXQgY2F0ZWdvcnkgb2YgY2F0ZWdvcmllcyQgfCBhc3luYzsgbGV0IGxhc3QgPSBsYXN0OyBsZXQgbGVuZ3RoID0gY291bnQ7IGxldCBjYXRlZ29yeUluZGV4ID0gaW5kZXhcIlxuICA+XG4gICAgPHFkLWZpbHRlci1jYXRlZ29yeVxuICAgICAgW2ZpbHRlcklkXT1cImZpbHRlcklkXCJcbiAgICAgIFtpc0luc3RhbnRGaWx0ZXJpbmddPVwiaXNJbnN0YW50RmlsdGVyaW5nXCJcbiAgICAgIFtjYXRlZ29yeUluZGV4XT1cImNhdGVnb3J5SW5kZXhcIlxuICAgICAgW2xhc3RDYXRlZ29yeV09XCJsYXN0XCJcbiAgICAgIFtkYXRhLXRlc3QtaWRdPVwidGVzdElkICsgJy1jYXRlZ29yeS0nICsgY2F0ZWdvcnlJbmRleCArICctJyArIGNhdGVnb3J5XCJcbiAgICA+PC9xZC1maWx0ZXItY2F0ZWdvcnk+XG4gIDwvbmctY29udGFpbmVyPlxuXG4gIDxkaXYgW2NsYXNzXT1cIidxZC1maWx0ZXJfX2FjdGlvbi1idXR0b25zJ1wiICpuZ0lmPVwiIWlzSW5zdGFudEZpbHRlcmluZ1wiPlxuICAgIDxidXR0b25cbiAgICAgIHFkQnV0dG9uXG4gICAgICBxZEJ1dHRvbkxpbmtcbiAgICAgIFtkaXNhYmxlZF09XCJkaXNhYmxlRmlsdGVyQnV0dG9uJCB8IGFzeW5jXCJcbiAgICAgIChjbGljayk9XCJjbGlja0ZpbHRlcigpXCJcbiAgICAgIFtjb2xvcl09XCIncHJpbWFyeSdcIlxuICAgICAgW2RhdGEtdGVzdC1pZF09XCJ0ZXN0SWQgKyAnLXN1Ym1pdC1idXR0b24nXCJcbiAgICA+XG4gICAgICB7eyBcImkxOG4ucWQuY29udGFpbmVyLnRvb2xiYXIuZmlsdGVyLmZpbHRlclwiIHwgdHJhbnNsYXRlIH19XG4gICAgPC9idXR0b24+XG5cbiAgICA8YnV0dG9uXG4gICAgICBxZEJ1dHRvblxuICAgICAgcWRCdXR0b25MaW5rXG4gICAgICBbZGlzYWJsZWRdPVwiZGlzYWJsZVJlc2V0QnV0dG9uJCB8IGFzeW5jXCJcbiAgICAgIChjbGljayk9XCJyZXNldEZpbHRlcigpXCJcbiAgICAgIFtjb2xvcl09XCInc2Vjb25kYXJ5J1wiXG4gICAgICBbZGF0YS10ZXN0LWlkXT1cInRlc3RJZCArICctcmVzZXQtYnV0dG9uJ1wiXG4gICAgPlxuICAgICAge3tcbiAgICAgICAgKChoYXNQcmVzZWxlY3Rpb24kIHwgYXN5bmMpXG4gICAgICAgICAgPyBcImkxOG4ucWQuY29udGFpbmVyLnRvb2xiYXIuZmlsdGVyLmJhY2tUb1ByZVNlbGVjdFwiXG4gICAgICAgICAgOiBcImkxOG4ucWQuY29udGFpbmVyLnRvb2xiYXIuZmlsdGVyLnJlc2V0XCJcbiAgICAgICAgKSB8IHRyYW5zbGF0ZVxuICAgICAgfX1cbiAgICA8L2J1dHRvbj5cbiAgPC9kaXY+XG48L25nLWNvbnRhaW5lcj5cbiJdfQ==
|