@quadrel-enterprise-ui/framework 1.0.0 → 18.19.1
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 +511 -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 +79 -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 +232 -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 +37891 -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 +462 -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 +21 -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
package/esm2022/lib/page/cancel-confirmation-dialog/page-cancel-confirmation-dialog.component.mjs
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import { DialogRef } from '@angular/cdk/dialog';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "@angular/cdk/dialog";
|
|
5
|
+
import * as i2 from "../../button/button/button.component";
|
|
6
|
+
import * as i3 from "../../button/directives/button.directives";
|
|
7
|
+
import * as i4 from "../../dialog/action/dialog-action.component";
|
|
8
|
+
import * as i5 from "../../dialog/dialog.component";
|
|
9
|
+
import * as i6 from "../../text-section/text-section.component";
|
|
10
|
+
import * as i7 from "../../text-section/text-section-paragraph/text-section-paragraph.component";
|
|
11
|
+
import * as i8 from "@ngx-translate/core";
|
|
12
|
+
export class QdPageCancelConfirmationDialogComponent {
|
|
13
|
+
dialogRef;
|
|
14
|
+
i18n;
|
|
15
|
+
handler;
|
|
16
|
+
constructor(dialogRef) {
|
|
17
|
+
this.dialogRef = dialogRef;
|
|
18
|
+
}
|
|
19
|
+
ngOnInit() {
|
|
20
|
+
this.i18n =
|
|
21
|
+
this.dialogRef.config.data.cancel.confirmationMessage?.i18n ?? 'i18n.qd.page.cancel.confirmation.dialog.message';
|
|
22
|
+
this.handler = this.dialogRef.config.data.cancel.handler;
|
|
23
|
+
}
|
|
24
|
+
close() {
|
|
25
|
+
this.dialogRef.close(false);
|
|
26
|
+
}
|
|
27
|
+
confirm() {
|
|
28
|
+
this.dialogRef.close(true);
|
|
29
|
+
this.handler();
|
|
30
|
+
}
|
|
31
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: QdPageCancelConfirmationDialogComponent, deps: [{ token: i1.DialogRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
32
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: QdPageCancelConfirmationDialogComponent, selector: "qd-page-cancel-confirmation-dialog", ngImport: i0, template: "<qd-dialog>\n <qd-text-section>\n <qd-text-section-paragraph>\n {{ i18n | translate }}\n </qd-text-section-paragraph>\n </qd-text-section>\n\n <qd-dialog-action>\n <button\n qdButton\n qdButtonGhost\n color=\"secondary\"\n (click)=\"close()\"\n data-test-id=\"page-cancel-confirmation-dialog-close\"\n >\n {{ \"i18n.qd.page.cancel.confirmation.dialog.close\" | translate }}\n </button>\n\n <button qdButton color=\"error\" (click)=\"confirm()\" data-test-id=\"page-cancel-confirmation-dialog-proceed\">\n {{ \"i18n.qd.page.cancel.confirmation.dialog.proceed\" | translate }}\n </button>\n </qd-dialog-action>\n</qd-dialog>\n", styles: [""], dependencies: [{ kind: "component", type: i2.QdButtonComponent, selector: "button[qdButton], a[qdButton], button[qd-button]", inputs: ["disabled", "color", "icon", "data-test-id", "additionalInfo"] }, { kind: "directive", type: i3.QdButtonGhostDirective, selector: "button[qdButtonGhost], a[qdButtonGhost]" }, { kind: "component", type: i4.QdDialogActionComponent, selector: "qd-dialog-action" }, { kind: "component", type: i5.QdDialogComponent, selector: "qd-dialog" }, { kind: "component", type: i6.QdTextSectionComponent, selector: "qd-text-section" }, { kind: "component", type: i7.QdTextSectionParagraphComponent, selector: "qd-text-section-paragraph" }, { kind: "pipe", type: i8.TranslatePipe, name: "translate" }] });
|
|
33
|
+
}
|
|
34
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: QdPageCancelConfirmationDialogComponent, decorators: [{
|
|
35
|
+
type: Component,
|
|
36
|
+
args: [{ selector: 'qd-page-cancel-confirmation-dialog', template: "<qd-dialog>\n <qd-text-section>\n <qd-text-section-paragraph>\n {{ i18n | translate }}\n </qd-text-section-paragraph>\n </qd-text-section>\n\n <qd-dialog-action>\n <button\n qdButton\n qdButtonGhost\n color=\"secondary\"\n (click)=\"close()\"\n data-test-id=\"page-cancel-confirmation-dialog-close\"\n >\n {{ \"i18n.qd.page.cancel.confirmation.dialog.close\" | translate }}\n </button>\n\n <button qdButton color=\"error\" (click)=\"confirm()\" data-test-id=\"page-cancel-confirmation-dialog-proceed\">\n {{ \"i18n.qd.page.cancel.confirmation.dialog.proceed\" | translate }}\n </button>\n </qd-dialog-action>\n</qd-dialog>\n" }]
|
|
37
|
+
}], ctorParameters: () => [{ type: i1.DialogRef }] });
|
|
38
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnZS1jYW5jZWwtY29uZmlybWF0aW9uLWRpYWxvZy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL3FkLXVpL3NyYy9saWIvcGFnZS9jYW5jZWwtY29uZmlybWF0aW9uLWRpYWxvZy9wYWdlLWNhbmNlbC1jb25maXJtYXRpb24tZGlhbG9nLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcWQtdWkvc3JjL2xpYi9wYWdlL2NhbmNlbC1jb25maXJtYXRpb24tZGlhbG9nL3BhZ2UtY2FuY2VsLWNvbmZpcm1hdGlvbi1kaWFsb2cuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBVSxNQUFNLGVBQWUsQ0FBQztBQUNsRCxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0scUJBQXFCLENBQUM7Ozs7Ozs7Ozs7QUFPaEQsTUFBTSxPQUFPLHVDQUF1QztJQUk5QjtJQUhwQixJQUFJLENBQVU7SUFDZCxPQUFPLENBQWM7SUFFckIsWUFBb0IsU0FBeUI7UUFBekIsY0FBUyxHQUFULFNBQVMsQ0FBZ0I7SUFBRyxDQUFDO0lBRWpELFFBQVE7UUFDTixJQUFJLENBQUMsSUFBSTtZQUNQLElBQUksQ0FBQyxTQUFTLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsbUJBQW1CLEVBQUUsSUFBSSxJQUFJLGlEQUFpRCxDQUFDO1FBQ25ILElBQUksQ0FBQyxPQUFPLEdBQUcsSUFBSSxDQUFDLFNBQVMsQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxPQUFPLENBQUM7SUFDM0QsQ0FBQztJQUVELEtBQUs7UUFDSCxJQUFJLENBQUMsU0FBUyxDQUFDLEtBQUssQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUM5QixDQUFDO0lBRUQsT0FBTztRQUNMLElBQUksQ0FBQyxTQUFTLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxDQUFDO1FBQzNCLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQztJQUNqQixDQUFDO3VHQW5CVSx1Q0FBdUM7MkZBQXZDLHVDQUF1QywwRUNScEQsbXJCQXVCQTs7MkZEZmEsdUNBQXVDO2tCQUxuRCxTQUFTOytCQUNFLG9DQUFvQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBEaWFsb2dSZWYgfSBmcm9tICdAYW5ndWxhci9jZGsvZGlhbG9nJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAncWQtcGFnZS1jYW5jZWwtY29uZmlybWF0aW9uLWRpYWxvZycsXG4gIHRlbXBsYXRlVXJsOiAnLi9wYWdlLWNhbmNlbC1jb25maXJtYXRpb24tZGlhbG9nLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vcGFnZS1jYW5jZWwtY29uZmlybWF0aW9uLWRpYWxvZy5jb21wb25lbnQuc2NzcyddXG59KVxuZXhwb3J0IGNsYXNzIFFkUGFnZUNhbmNlbENvbmZpcm1hdGlvbkRpYWxvZ0NvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG4gIGkxOG4hOiBzdHJpbmc7XG4gIGhhbmRsZXIhOiAoKSA9PiB2b2lkO1xuXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgZGlhbG9nUmVmOiBEaWFsb2dSZWY8YW55Pikge31cblxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLmkxOG4gPVxuICAgICAgdGhpcy5kaWFsb2dSZWYuY29uZmlnLmRhdGEuY2FuY2VsLmNvbmZpcm1hdGlvbk1lc3NhZ2U/LmkxOG4gPz8gJ2kxOG4ucWQucGFnZS5jYW5jZWwuY29uZmlybWF0aW9uLmRpYWxvZy5tZXNzYWdlJztcbiAgICB0aGlzLmhhbmRsZXIgPSB0aGlzLmRpYWxvZ1JlZi5jb25maWcuZGF0YS5jYW5jZWwuaGFuZGxlcjtcbiAgfVxuXG4gIGNsb3NlKCk6IHZvaWQge1xuICAgIHRoaXMuZGlhbG9nUmVmLmNsb3NlKGZhbHNlKTtcbiAgfVxuXG4gIGNvbmZpcm0oKTogdm9pZCB7XG4gICAgdGhpcy5kaWFsb2dSZWYuY2xvc2UodHJ1ZSk7XG4gICAgdGhpcy5oYW5kbGVyKCk7XG4gIH1cbn1cbiIsIjxxZC1kaWFsb2c+XG4gIDxxZC10ZXh0LXNlY3Rpb24+XG4gICAgPHFkLXRleHQtc2VjdGlvbi1wYXJhZ3JhcGg+XG4gICAgICB7eyBpMThuIHwgdHJhbnNsYXRlIH19XG4gICAgPC9xZC10ZXh0LXNlY3Rpb24tcGFyYWdyYXBoPlxuICA8L3FkLXRleHQtc2VjdGlvbj5cblxuICA8cWQtZGlhbG9nLWFjdGlvbj5cbiAgICA8YnV0dG9uXG4gICAgICBxZEJ1dHRvblxuICAgICAgcWRCdXR0b25HaG9zdFxuICAgICAgY29sb3I9XCJzZWNvbmRhcnlcIlxuICAgICAgKGNsaWNrKT1cImNsb3NlKClcIlxuICAgICAgZGF0YS10ZXN0LWlkPVwicGFnZS1jYW5jZWwtY29uZmlybWF0aW9uLWRpYWxvZy1jbG9zZVwiXG4gICAgPlxuICAgICAge3sgXCJpMThuLnFkLnBhZ2UuY2FuY2VsLmNvbmZpcm1hdGlvbi5kaWFsb2cuY2xvc2VcIiB8IHRyYW5zbGF0ZSB9fVxuICAgIDwvYnV0dG9uPlxuXG4gICAgPGJ1dHRvbiBxZEJ1dHRvbiBjb2xvcj1cImVycm9yXCIgKGNsaWNrKT1cImNvbmZpcm0oKVwiIGRhdGEtdGVzdC1pZD1cInBhZ2UtY2FuY2VsLWNvbmZpcm1hdGlvbi1kaWFsb2ctcHJvY2VlZFwiPlxuICAgICAge3sgXCJpMThuLnFkLnBhZ2UuY2FuY2VsLmNvbmZpcm1hdGlvbi5kaWFsb2cucHJvY2VlZFwiIHwgdHJhbnNsYXRlIH19XG4gICAgPC9idXR0b24+XG4gIDwvcWQtZGlhbG9nLWFjdGlvbj5cbjwvcWQtZGlhbG9nPlxuIl19
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { Component, Input, ViewEncapsulation } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@ngx-translate/core";
|
|
4
|
+
/**
|
|
5
|
+
* The **QdPageControlPanel** is used to display information and functions relevant to a specific business case, which is related to a specific Object Model.
|
|
6
|
+
*
|
|
7
|
+
* @note Both a **QdPanelSection** and a **QdSection** can be embedded within the **QdPageControlPanel**.
|
|
8
|
+
*
|
|
9
|
+
* ####**Usage**
|
|
10
|
+
*
|
|
11
|
+
* ```ts
|
|
12
|
+
* controlPanelConfig: QdPageControlPanelConfig = {
|
|
13
|
+
* title: { i18n: 'i18n.my.title' },
|
|
14
|
+
* ...
|
|
15
|
+
* };
|
|
16
|
+
* ```
|
|
17
|
+
* ```html
|
|
18
|
+
* <!-- with panel section -->
|
|
19
|
+
* <qd-page>
|
|
20
|
+
* ...
|
|
21
|
+
* <qd-page-control-panel [config]="controlPanelConfig">
|
|
22
|
+
* <qd-panel-section [config]="{ title: { i18n: 'my headline' }}">
|
|
23
|
+
* <qd-panel-section-text-paragraph [config]="{ title: { i18n: 'my paragraph headline' }}">
|
|
24
|
+
* my paragraph
|
|
25
|
+
* </qd-panel-section-text-paragraph>
|
|
26
|
+
* </qd-panel-section>
|
|
27
|
+
* </qd-page-control-panel>
|
|
28
|
+
* </qd-page>
|
|
29
|
+
* ```
|
|
30
|
+
*
|
|
31
|
+
* ```html
|
|
32
|
+
* <!-- with section -->
|
|
33
|
+
* <qd-page>
|
|
34
|
+
* ...
|
|
35
|
+
* <qd-page-control-panel [config]="controlPanelConfig">
|
|
36
|
+
* <qd-section [config]="sectionConfig">
|
|
37
|
+
* my section content
|
|
38
|
+
* </qd-section>
|
|
39
|
+
* </qd-page-control-panel>
|
|
40
|
+
* </qd-page>
|
|
41
|
+
* ```
|
|
42
|
+
*/
|
|
43
|
+
export class QdPageControlPanelComponent {
|
|
44
|
+
config;
|
|
45
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: QdPageControlPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
46
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: QdPageControlPanelComponent, selector: "qd-page-control-panel", inputs: { config: "config" }, ngImport: i0, template: "<header>\n {{ config.title.i18n | translate }}\n</header>\n\n<main>\n <ng-content select=\"qd-text-section\"></ng-content>\n <ng-content select=\"qd-panel-section\"></ng-content>\n <ng-content select=\"qd-section\"></ng-content>\n</main>\n", styles: ["qd-page-control-panel{position:relative;display:flex;height:100%;flex-direction:column;background:#fff}qd-page-control-panel header{padding:.75rem 1rem .5rem;border-bottom:.125rem solid rgb(213,213,213);color:#171717;font-size:.875rem;font-weight:700;line-height:1.25rem}qd-page-control-panel main{flex-grow:99;overflow-y:auto}qd-page-control-panel qd-panel-section:last-child{margin-bottom:.75rem}qd-page-control-panel qd-section{margin:0 1rem}qd-page-control-panel qd-section:first-child{margin-top:1rem}qd-page-control-panel qd-section:last-child{margin-bottom:1rem}\n"], dependencies: [{ kind: "pipe", type: i1.TranslatePipe, name: "translate" }], encapsulation: i0.ViewEncapsulation.None });
|
|
47
|
+
}
|
|
48
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: QdPageControlPanelComponent, decorators: [{
|
|
49
|
+
type: Component,
|
|
50
|
+
args: [{ selector: 'qd-page-control-panel', encapsulation: ViewEncapsulation.None, template: "<header>\n {{ config.title.i18n | translate }}\n</header>\n\n<main>\n <ng-content select=\"qd-text-section\"></ng-content>\n <ng-content select=\"qd-panel-section\"></ng-content>\n <ng-content select=\"qd-section\"></ng-content>\n</main>\n", styles: ["qd-page-control-panel{position:relative;display:flex;height:100%;flex-direction:column;background:#fff}qd-page-control-panel header{padding:.75rem 1rem .5rem;border-bottom:.125rem solid rgb(213,213,213);color:#171717;font-size:.875rem;font-weight:700;line-height:1.25rem}qd-page-control-panel main{flex-grow:99;overflow-y:auto}qd-page-control-panel qd-panel-section:last-child{margin-bottom:.75rem}qd-page-control-panel qd-section{margin:0 1rem}qd-page-control-panel qd-section:first-child{margin-top:1rem}qd-page-control-panel qd-section:last-child{margin-bottom:1rem}\n"] }]
|
|
51
|
+
}], propDecorators: { config: [{
|
|
52
|
+
type: Input,
|
|
53
|
+
args: [{ required: true }]
|
|
54
|
+
}] } });
|
|
55
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnZS1jb250cm9sLXBhbmVsLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcWQtdWkvc3JjL2xpYi9wYWdlL2NvbnRyb2wtcGFuZWwvcGFnZS1jb250cm9sLXBhbmVsLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcWQtdWkvc3JjL2xpYi9wYWdlL2NvbnRyb2wtcGFuZWwvcGFnZS1jb250cm9sLXBhbmVsLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDOzs7QUFHcEU7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0dBc0NHO0FBT0gsTUFBTSxPQUFPLDJCQUEyQjtJQUNYLE1BQU0sQ0FBNEI7dUdBRGxELDJCQUEyQjsyRkFBM0IsMkJBQTJCLDJGQ2hEeEMscVBBU0E7OzJGRHVDYSwyQkFBMkI7a0JBTnZDLFNBQVM7K0JBQ0UsdUJBQXVCLGlCQUdsQixpQkFBaUIsQ0FBQyxJQUFJOzhCQUdWLE1BQU07c0JBQWhDLEtBQUs7dUJBQUMsRUFBRSxRQUFRLEVBQUUsSUFBSSxFQUFFIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFFkUGFnZUNvbnRyb2xQYW5lbENvbmZpZyB9IGZyb20gJy4uL21vZGVsL3BhZ2UtY29udHJvbC1wYW5lbC1jb25maWcuaW50ZXJmYWNlJztcblxuLyoqXG4gKiBUaGUgKipRZFBhZ2VDb250cm9sUGFuZWwqKiBpcyB1c2VkIHRvIGRpc3BsYXkgaW5mb3JtYXRpb24gYW5kIGZ1bmN0aW9ucyByZWxldmFudCB0byBhIHNwZWNpZmljIGJ1c2luZXNzIGNhc2UsIHdoaWNoIGlzIHJlbGF0ZWQgdG8gYSBzcGVjaWZpYyBPYmplY3QgTW9kZWwuXG4gKlxuICogQG5vdGUgQm90aCBhICoqUWRQYW5lbFNlY3Rpb24qKiBhbmQgYSAqKlFkU2VjdGlvbioqIGNhbiBiZSBlbWJlZGRlZCB3aXRoaW4gdGhlICoqUWRQYWdlQ29udHJvbFBhbmVsKiouXG4gKlxuICogIyMjIyoqVXNhZ2UqKlxuICpcbiAqIGBgYHRzXG4gKiAgY29udHJvbFBhbmVsQ29uZmlnOiBRZFBhZ2VDb250cm9sUGFuZWxDb25maWcgPSB7XG4gKiAgICAgdGl0bGU6IHsgaTE4bjogJ2kxOG4ubXkudGl0bGUnIH0sXG4gKiAgICAgLi4uXG4gKiAgIH07XG4gKiBgYGBcbiAqIGBgYGh0bWxcbiAqIDwhLS0gd2l0aCBwYW5lbCBzZWN0aW9uIC0tPlxuICogPHFkLXBhZ2U+XG4gKiAgIC4uLlxuICogICAgPHFkLXBhZ2UtY29udHJvbC1wYW5lbCBbY29uZmlnXT1cImNvbnRyb2xQYW5lbENvbmZpZ1wiPlxuICogICAgICA8cWQtcGFuZWwtc2VjdGlvbiBbY29uZmlnXT1cInsgdGl0bGU6IHsgaTE4bjogJ215IGhlYWRsaW5lJyB9fVwiPlxuICogICAgICAgIDxxZC1wYW5lbC1zZWN0aW9uLXRleHQtcGFyYWdyYXBoIFtjb25maWddPVwieyB0aXRsZTogeyBpMThuOiAnbXkgcGFyYWdyYXBoIGhlYWRsaW5lJyB9fVwiPlxuICogICAgICAgICAgbXkgcGFyYWdyYXBoXG4gKiAgICAgICAgPC9xZC1wYW5lbC1zZWN0aW9uLXRleHQtcGFyYWdyYXBoPlxuICogICAgICA8L3FkLXBhbmVsLXNlY3Rpb24+XG4gKiAgICA8L3FkLXBhZ2UtY29udHJvbC1wYW5lbD5cbiAqICA8L3FkLXBhZ2U+XG4gKiBgYGBcbiAqXG4gKiBgYGBodG1sXG4gKiA8IS0tIHdpdGggc2VjdGlvbiAtLT5cbiAqIDxxZC1wYWdlPlxuICogICAuLi5cbiAqICAgIDxxZC1wYWdlLWNvbnRyb2wtcGFuZWwgW2NvbmZpZ109XCJjb250cm9sUGFuZWxDb25maWdcIj5cbiAqICAgICAgPHFkLXNlY3Rpb24gW2NvbmZpZ109XCJzZWN0aW9uQ29uZmlnXCI+XG4gKiAgICAgICAgbXkgc2VjdGlvbiBjb250ZW50XG4gKiAgICAgIDwvcWQtc2VjdGlvbj5cbiAqICAgIDwvcWQtcGFnZS1jb250cm9sLXBhbmVsPlxuICogIDwvcWQtcGFnZT5cbiAqIGBgYFxuICovXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdxZC1wYWdlLWNvbnRyb2wtcGFuZWwnLFxuICB0ZW1wbGF0ZVVybDogJy4vcGFnZS1jb250cm9sLXBhbmVsLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vcGFnZS1jb250cm9sLXBhbmVsLmNvbXBvbmVudC5zY3NzJ10sXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmVcbn0pXG5leHBvcnQgY2xhc3MgUWRQYWdlQ29udHJvbFBhbmVsQ29tcG9uZW50IHtcbiAgQElucHV0KHsgcmVxdWlyZWQ6IHRydWUgfSkgY29uZmlnITogUWRQYWdlQ29udHJvbFBhbmVsQ29uZmlnO1xufVxuIiwiPGhlYWRlcj5cbiAge3sgY29uZmlnLnRpdGxlLmkxOG4gfCB0cmFuc2xhdGUgfX1cbjwvaGVhZGVyPlxuXG48bWFpbj5cbiAgPG5nLWNvbnRlbnQgc2VsZWN0PVwicWQtdGV4dC1zZWN0aW9uXCI+PC9uZy1jb250ZW50PlxuICA8bmctY29udGVudCBzZWxlY3Q9XCJxZC1wYW5lbC1zZWN0aW9uXCI+PC9uZy1jb250ZW50PlxuICA8bmctY29udGVudCBzZWxlY3Q9XCJxZC1zZWN0aW9uXCI+PC9uZy1jb250ZW50PlxuPC9tYWluPlxuIl19
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { Directive } from '@angular/core';
|
|
2
|
+
import { QdPageFooterService } from '../shared/services/page-footer.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../shared/services/page-footer.service";
|
|
5
|
+
export class QdPageFooterCustomContentDirective {
|
|
6
|
+
footerService;
|
|
7
|
+
constructor(footerService) {
|
|
8
|
+
this.footerService = footerService;
|
|
9
|
+
}
|
|
10
|
+
ngOnInit() {
|
|
11
|
+
this.footerService.registerCustomContent();
|
|
12
|
+
}
|
|
13
|
+
ngOnDestroy() {
|
|
14
|
+
this.footerService.detachCustomContent();
|
|
15
|
+
}
|
|
16
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: QdPageFooterCustomContentDirective, deps: [{ token: i1.QdPageFooterService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
17
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.9", type: QdPageFooterCustomContentDirective, selector: "[qdPageFooter]", ngImport: i0 });
|
|
18
|
+
}
|
|
19
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: QdPageFooterCustomContentDirective, decorators: [{
|
|
20
|
+
type: Directive,
|
|
21
|
+
args: [{
|
|
22
|
+
selector: '[qdPageFooter]'
|
|
23
|
+
}]
|
|
24
|
+
}], ctorParameters: () => [{ type: i1.QdPageFooterService }] });
|
|
25
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnZS1mb290ZXItY3VzdG9tLWNvbnRlbnQuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9xZC11aS9zcmMvbGliL3BhZ2UvZm9vdGVyL3BhZ2UtZm9vdGVyLWN1c3RvbS1jb250ZW50LmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFxQixNQUFNLGVBQWUsQ0FBQztBQUM3RCxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSx3Q0FBd0MsQ0FBQzs7O0FBSzdFLE1BQU0sT0FBTyxrQ0FBa0M7SUFDekI7SUFBcEIsWUFBb0IsYUFBa0M7UUFBbEMsa0JBQWEsR0FBYixhQUFhLENBQXFCO0lBQUcsQ0FBQztJQUUxRCxRQUFRO1FBQ04sSUFBSSxDQUFDLGFBQWEsQ0FBQyxxQkFBcUIsRUFBRSxDQUFDO0lBQzdDLENBQUM7SUFFRCxXQUFXO1FBQ1QsSUFBSSxDQUFDLGFBQWEsQ0FBQyxtQkFBbUIsRUFBRSxDQUFDO0lBQzNDLENBQUM7dUdBVFUsa0NBQWtDOzJGQUFsQyxrQ0FBa0M7OzJGQUFsQyxrQ0FBa0M7a0JBSDlDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLGdCQUFnQjtpQkFDM0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIE9uRGVzdHJveSwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBRZFBhZ2VGb290ZXJTZXJ2aWNlIH0gZnJvbSAnLi4vc2hhcmVkL3NlcnZpY2VzL3BhZ2UtZm9vdGVyLnNlcnZpY2UnO1xuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbcWRQYWdlRm9vdGVyXSdcbn0pXG5leHBvcnQgY2xhc3MgUWRQYWdlRm9vdGVyQ3VzdG9tQ29udGVudERpcmVjdGl2ZSBpbXBsZW1lbnRzIE9uSW5pdCwgT25EZXN0cm95IHtcbiAgY29uc3RydWN0b3IocHJpdmF0ZSBmb290ZXJTZXJ2aWNlOiBRZFBhZ2VGb290ZXJTZXJ2aWNlKSB7fVxuXG4gIG5nT25Jbml0KCk6IHZvaWQge1xuICAgIHRoaXMuZm9vdGVyU2VydmljZS5yZWdpc3RlckN1c3RvbUNvbnRlbnQoKTtcbiAgfVxuXG4gIG5nT25EZXN0cm95KCk6IHZvaWQge1xuICAgIHRoaXMuZm9vdGVyU2VydmljZS5kZXRhY2hDdXN0b21Db250ZW50KCk7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
|
2
|
+
import { map } from 'rxjs/operators';
|
|
3
|
+
import { QdFooterActionType } from '../model/page-footer-action.interface';
|
|
4
|
+
import { QdPageFooterService } from '../shared/services/page-footer.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "../shared/services/page-footer.service";
|
|
7
|
+
import * as i2 from "@angular/common";
|
|
8
|
+
import * as i3 from "../../button/button/button.component";
|
|
9
|
+
import * as i4 from "../../button/directives/button.directives";
|
|
10
|
+
import * as i5 from "@ngx-translate/core";
|
|
11
|
+
/**
|
|
12
|
+
* **QdPageFooter** provides an empty container inside the **QdPage**. <br />
|
|
13
|
+
* Note: This component is still in WIP status!
|
|
14
|
+
*/
|
|
15
|
+
export class QdPageFooterComponent {
|
|
16
|
+
footerService;
|
|
17
|
+
QdFooterActionType = QdFooterActionType;
|
|
18
|
+
actions$;
|
|
19
|
+
constructor(footerService) {
|
|
20
|
+
this.footerService = footerService;
|
|
21
|
+
this.actions$ = this.footerService?.pageFooterActions$.pipe(map(actionsMap => Array.from(actionsMap.entries()).map(([key, action]) => ({ ...action, key }))));
|
|
22
|
+
}
|
|
23
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: QdPageFooterComponent, deps: [{ token: i1.QdPageFooterService }], target: i0.ɵɵFactoryTarget.Component });
|
|
24
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: QdPageFooterComponent, selector: "qd-page-footer", ngImport: i0, template: "<ng-content></ng-content>\n\n<div class=\"actions\">\n <ng-container *ngFor=\"let action of actions$ | async\">\n <button\n *ngIf=\"(action.isVisible !== undefined ? action.isVisible : true) && action.type === QdFooterActionType.Primary\"\n [disabled]=\"action.isDisabled\"\n (click)=\"action.handler()\"\n qdButton\n [data-test-id]=\"'footer-primary-button-' + action.key\"\n [additionalInfo]=\"action.additionalInfo\"\n >\n {{ action.titleI18n | translate }}\n </button>\n <button\n *ngIf=\"(action.isVisible !== undefined ? action.isVisible : true) && action.type === QdFooterActionType.Secondary\"\n (click)=\"action.handler()\"\n qdButton\n qdButtonGhost\n [data-test-id]=\"'footer-secondary-button-' + action.key\"\n [additionalInfo]=\"action.additionalInfo\"\n >\n {{ action.titleI18n | translate }}\n </button>\n </ng-container>\n</div>\n", styles: [":host{display:flex;min-height:4rem;align-items:center;justify-content:flex-end;padding:.8125rem 1.25rem;border-top:1px solid rgb(213,213,213);background:#fff}@media (max-width: 599.98px){:host{padding:.8125rem .9375rem}}.actions{display:flex}.actions button{margin-left:.875rem}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3.QdButtonComponent, selector: "button[qdButton], a[qdButton], button[qd-button]", inputs: ["disabled", "color", "icon", "data-test-id", "additionalInfo"] }, { kind: "directive", type: i4.QdButtonGhostDirective, selector: "button[qdButtonGhost], a[qdButtonGhost]" }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "pipe", type: i5.TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
25
|
+
}
|
|
26
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: QdPageFooterComponent, decorators: [{
|
|
27
|
+
type: Component,
|
|
28
|
+
args: [{ selector: 'qd-page-footer', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-content></ng-content>\n\n<div class=\"actions\">\n <ng-container *ngFor=\"let action of actions$ | async\">\n <button\n *ngIf=\"(action.isVisible !== undefined ? action.isVisible : true) && action.type === QdFooterActionType.Primary\"\n [disabled]=\"action.isDisabled\"\n (click)=\"action.handler()\"\n qdButton\n [data-test-id]=\"'footer-primary-button-' + action.key\"\n [additionalInfo]=\"action.additionalInfo\"\n >\n {{ action.titleI18n | translate }}\n </button>\n <button\n *ngIf=\"(action.isVisible !== undefined ? action.isVisible : true) && action.type === QdFooterActionType.Secondary\"\n (click)=\"action.handler()\"\n qdButton\n qdButtonGhost\n [data-test-id]=\"'footer-secondary-button-' + action.key\"\n [additionalInfo]=\"action.additionalInfo\"\n >\n {{ action.titleI18n | translate }}\n </button>\n </ng-container>\n</div>\n", styles: [":host{display:flex;min-height:4rem;align-items:center;justify-content:flex-end;padding:.8125rem 1.25rem;border-top:1px solid rgb(213,213,213);background:#fff}@media (max-width: 599.98px){:host{padding:.8125rem .9375rem}}.actions{display:flex}.actions button{margin-left:.875rem}\n"] }]
|
|
29
|
+
}], ctorParameters: () => [{ type: i1.QdPageFooterService }] });
|
|
30
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnZS1mb290ZXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9xZC11aS9zcmMvbGliL3BhZ2UvZm9vdGVyL3BhZ2UtZm9vdGVyLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcWQtdWkvc3JjL2xpYi9wYWdlL2Zvb3Rlci9wYWdlLWZvb3Rlci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRW5FLE9BQU8sRUFBRSxHQUFHLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUNyQyxPQUFPLEVBQUUsa0JBQWtCLEVBQXNCLE1BQU0sdUNBQXVDLENBQUM7QUFDL0YsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sd0NBQXdDLENBQUM7Ozs7Ozs7QUFFN0U7OztHQUdHO0FBT0gsTUFBTSxPQUFPLHFCQUFxQjtJQUtIO0lBSlYsa0JBQWtCLEdBQUcsa0JBQWtCLENBQUM7SUFFM0QsUUFBUSxDQUF1RDtJQUUvRCxZQUE2QixhQUFrQztRQUFsQyxrQkFBYSxHQUFiLGFBQWEsQ0FBcUI7UUFDN0QsSUFBSSxDQUFDLFFBQVEsR0FBRyxJQUFJLENBQUMsYUFBYSxFQUFFLGtCQUFrQixDQUFDLElBQUksQ0FDekQsR0FBRyxDQUFDLFVBQVUsQ0FBQyxFQUFFLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsT0FBTyxFQUFFLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEdBQUcsRUFBRSxNQUFNLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxFQUFFLEdBQUcsTUFBTSxFQUFFLEdBQUcsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUNqRyxDQUFDO0lBQ0osQ0FBQzt1R0FUVSxxQkFBcUI7MkZBQXJCLHFCQUFxQixzRENoQmxDLDA2QkEwQkE7OzJGRFZhLHFCQUFxQjtrQkFOakMsU0FBUzsrQkFDRSxnQkFBZ0IsbUJBR1QsdUJBQXVCLENBQUMsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IE9ic2VydmFibGUgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IG1hcCB9IGZyb20gJ3J4anMvb3BlcmF0b3JzJztcbmltcG9ydCB7IFFkRm9vdGVyQWN0aW9uVHlwZSwgUWRQYWdlRm9vdGVyQWN0aW9uIH0gZnJvbSAnLi4vbW9kZWwvcGFnZS1mb290ZXItYWN0aW9uLmludGVyZmFjZSc7XG5pbXBvcnQgeyBRZFBhZ2VGb290ZXJTZXJ2aWNlIH0gZnJvbSAnLi4vc2hhcmVkL3NlcnZpY2VzL3BhZ2UtZm9vdGVyLnNlcnZpY2UnO1xuXG4vKipcbiAqICoqUWRQYWdlRm9vdGVyKiogcHJvdmlkZXMgYW4gZW1wdHkgY29udGFpbmVyIGluc2lkZSB0aGUgKipRZFBhZ2UqKi4gPGJyIC8+XG4gKiBOb3RlOiBUaGlzIGNvbXBvbmVudCBpcyBzdGlsbCBpbiBXSVAgc3RhdHVzIVxuICovXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdxZC1wYWdlLWZvb3RlcicsXG4gIHRlbXBsYXRlVXJsOiAnLi9wYWdlLWZvb3Rlci5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3BhZ2UtZm9vdGVyLmNvbXBvbmVudC5zY3NzJ10sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoXG59KVxuZXhwb3J0IGNsYXNzIFFkUGFnZUZvb3RlckNvbXBvbmVudCB7XG4gIHByb3RlY3RlZCByZWFkb25seSBRZEZvb3RlckFjdGlvblR5cGUgPSBRZEZvb3RlckFjdGlvblR5cGU7XG5cbiAgYWN0aW9ucyQ6IE9ic2VydmFibGU8KFFkUGFnZUZvb3RlckFjdGlvbiAmIHsga2V5OiBzdHJpbmcgfSlbXT47XG5cbiAgY29uc3RydWN0b3IocHJpdmF0ZSByZWFkb25seSBmb290ZXJTZXJ2aWNlOiBRZFBhZ2VGb290ZXJTZXJ2aWNlKSB7XG4gICAgdGhpcy5hY3Rpb25zJCA9IHRoaXMuZm9vdGVyU2VydmljZT8ucGFnZUZvb3RlckFjdGlvbnMkLnBpcGUoXG4gICAgICBtYXAoYWN0aW9uc01hcCA9PiBBcnJheS5mcm9tKGFjdGlvbnNNYXAuZW50cmllcygpKS5tYXAoKFtrZXksIGFjdGlvbl0pID0+ICh7IC4uLmFjdGlvbiwga2V5IH0pKSlcbiAgICApO1xuICB9XG59XG4iLCI8bmctY29udGVudD48L25nLWNvbnRlbnQ+XG5cbjxkaXYgY2xhc3M9XCJhY3Rpb25zXCI+XG4gIDxuZy1jb250YWluZXIgKm5nRm9yPVwibGV0IGFjdGlvbiBvZiBhY3Rpb25zJCB8IGFzeW5jXCI+XG4gICAgPGJ1dHRvblxuICAgICAgKm5nSWY9XCIoYWN0aW9uLmlzVmlzaWJsZSAhPT0gdW5kZWZpbmVkID8gYWN0aW9uLmlzVmlzaWJsZSA6IHRydWUpICYmIGFjdGlvbi50eXBlID09PSBRZEZvb3RlckFjdGlvblR5cGUuUHJpbWFyeVwiXG4gICAgICBbZGlzYWJsZWRdPVwiYWN0aW9uLmlzRGlzYWJsZWRcIlxuICAgICAgKGNsaWNrKT1cImFjdGlvbi5oYW5kbGVyKClcIlxuICAgICAgcWRCdXR0b25cbiAgICAgIFtkYXRhLXRlc3QtaWRdPVwiJ2Zvb3Rlci1wcmltYXJ5LWJ1dHRvbi0nICsgYWN0aW9uLmtleVwiXG4gICAgICBbYWRkaXRpb25hbEluZm9dPVwiYWN0aW9uLmFkZGl0aW9uYWxJbmZvXCJcbiAgICA+XG4gICAgICB7eyBhY3Rpb24udGl0bGVJMThuIHwgdHJhbnNsYXRlIH19XG4gICAgPC9idXR0b24+XG4gICAgPGJ1dHRvblxuICAgICAgKm5nSWY9XCIoYWN0aW9uLmlzVmlzaWJsZSAhPT0gdW5kZWZpbmVkID8gYWN0aW9uLmlzVmlzaWJsZSA6IHRydWUpICYmIGFjdGlvbi50eXBlID09PSBRZEZvb3RlckFjdGlvblR5cGUuU2Vjb25kYXJ5XCJcbiAgICAgIChjbGljayk9XCJhY3Rpb24uaGFuZGxlcigpXCJcbiAgICAgIHFkQnV0dG9uXG4gICAgICBxZEJ1dHRvbkdob3N0XG4gICAgICBbZGF0YS10ZXN0LWlkXT1cIidmb290ZXItc2Vjb25kYXJ5LWJ1dHRvbi0nICsgYWN0aW9uLmtleVwiXG4gICAgICBbYWRkaXRpb25hbEluZm9dPVwiYWN0aW9uLmFkZGl0aW9uYWxJbmZvXCJcbiAgICA+XG4gICAgICB7eyBhY3Rpb24udGl0bGVJMThuIHwgdHJhbnNsYXRlIH19XG4gICAgPC9idXR0b24+XG4gIDwvbmctY29udGFpbmVyPlxuPC9kaXY+XG4iXX0=
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
import { Component, HostBinding, Input } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@angular/common";
|
|
4
|
+
import * as i2 from "../../icon/icon/icon.component";
|
|
5
|
+
import * as i3 from "@ngx-translate/core";
|
|
6
|
+
/**
|
|
7
|
+
* The **QdPageInfoBannerComponent** is used to show static information to the user,
|
|
8
|
+
* for example to describe information that corresponds to the page object.
|
|
9
|
+
*
|
|
10
|
+
* #### **Features**
|
|
11
|
+
*
|
|
12
|
+
* - **Multiple Types**: Supports four message types - `'info'`, `'warning'`, `'critical'`, and `'positive'` - to match different situations.
|
|
13
|
+
* - **Title & Link Support**: Optionally display a title and an actionable link with a custom click handler.
|
|
14
|
+
* - **Grouped Display**: Consecutive banners of the same type are automatically grouped into a single container.
|
|
15
|
+
* - **Flexible Placement**: Can be placed in pages, tabs, or steps to match the page structure.
|
|
16
|
+
* - **Fully i18n-Compatible**: Text, title, and link labels are fully internationalizable using i18n keys.
|
|
17
|
+
*
|
|
18
|
+
* #### **Usage**
|
|
19
|
+
*
|
|
20
|
+
* ```ts
|
|
21
|
+
* pageInfoBanner1: QdPageInfoBannerConfig = {
|
|
22
|
+
* type: 'critical',
|
|
23
|
+
* title: { i18n: 'i18n.errorTitle' },
|
|
24
|
+
* i18n: 'i18n.errorMessage',
|
|
25
|
+
* link: {
|
|
26
|
+
* i18n: 'i18n.moreDetails',
|
|
27
|
+
* handler: this.handleLinkClick
|
|
28
|
+
* }
|
|
29
|
+
* };
|
|
30
|
+
*
|
|
31
|
+
* pageInfoBanner2: QdPageInfoBannerConfig = {
|
|
32
|
+
* type: 'info',
|
|
33
|
+
* i18n: 'i18n.additionalContext'
|
|
34
|
+
* };
|
|
35
|
+
*
|
|
36
|
+
* pageInfoBanner3: QdPageInfoBannerConfig = {
|
|
37
|
+
* type: 'info',
|
|
38
|
+
* i18n: 'i18n.moreAdditionalContext'
|
|
39
|
+
* };
|
|
40
|
+
* ```
|
|
41
|
+
*
|
|
42
|
+
* **Directly in a Page**
|
|
43
|
+
* ```html
|
|
44
|
+
* <qd-page [config]="pageConfig">
|
|
45
|
+
* <qd-page-info-banner [config]="pageInfoBanner1"></qd-page-info-banner>
|
|
46
|
+
* <!-- These two will be grouped because they are both type 'info' -->
|
|
47
|
+
* <qd-page-info-banner [config]="pageInfoBanner2"></qd-page-info-banner>
|
|
48
|
+
* <qd-page-info-banner [config]="pageInfoBanner3"></qd-page-info-banner>
|
|
49
|
+
* ...
|
|
50
|
+
* </qd-page>
|
|
51
|
+
* ```
|
|
52
|
+
*
|
|
53
|
+
* **In a Page Step**
|
|
54
|
+
* ```html
|
|
55
|
+
* <qd-page [config]="pageConfig">
|
|
56
|
+
* <qd-page-stepper>
|
|
57
|
+
* <qd-page-step [config]="stepConfig">
|
|
58
|
+
* <qd-page-info-banner [config]="pageInfoBanner1"></qd-page-info-banner>
|
|
59
|
+
* ...
|
|
60
|
+
* </qd-page-step>
|
|
61
|
+
* </qd-page-stepper>
|
|
62
|
+
* </qd-page>
|
|
63
|
+
* ```
|
|
64
|
+
*
|
|
65
|
+
* **In a Page Tab**
|
|
66
|
+
* ```html
|
|
67
|
+
* <qd-page [config]="pageConfig">
|
|
68
|
+
* <qd-page-tabs>
|
|
69
|
+
* <qd-page-tab [config]="tabConfig">
|
|
70
|
+
* <qd-page-info-banner [config]="pageInfoBanner1"></qd-page-info-banner>
|
|
71
|
+
* ...
|
|
72
|
+
* </qd-page-tab>
|
|
73
|
+
* </qd-page-tabs>
|
|
74
|
+
* </qd-page>
|
|
75
|
+
* ```
|
|
76
|
+
*
|
|
77
|
+
* **In a QdDialog**
|
|
78
|
+
* ```html
|
|
79
|
+
* <qd-dialog>
|
|
80
|
+
* <qd-page-info-banner [config]="pageInfoBanner1"></qd-page-info-banner>
|
|
81
|
+
* ...
|
|
82
|
+
* </qd-dialog>
|
|
83
|
+
* ```
|
|
84
|
+
*/
|
|
85
|
+
export class QdPageInfoBannerComponent {
|
|
86
|
+
/**
|
|
87
|
+
* Configuration of the page info banner.
|
|
88
|
+
*/
|
|
89
|
+
config;
|
|
90
|
+
get typeClassName() {
|
|
91
|
+
return `qd-page-info-banner qd-page-info-banner-${this.config.type}`;
|
|
92
|
+
}
|
|
93
|
+
getType() {
|
|
94
|
+
return this.config?.type;
|
|
95
|
+
}
|
|
96
|
+
getIcon() {
|
|
97
|
+
switch (this.getType()) {
|
|
98
|
+
case 'positive':
|
|
99
|
+
return 'checkCircleSolid';
|
|
100
|
+
case 'info':
|
|
101
|
+
return 'checkCircleSolid';
|
|
102
|
+
case 'warning':
|
|
103
|
+
return 'warningHexFilled';
|
|
104
|
+
case 'critical':
|
|
105
|
+
return 'exclamationCircleSolid';
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
handleLinkClick() {
|
|
109
|
+
this.config?.link?.handler();
|
|
110
|
+
}
|
|
111
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: QdPageInfoBannerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
112
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: QdPageInfoBannerComponent, selector: "qd-page-info-banner", inputs: { config: "config" }, host: { properties: { "attr.class": "this.typeClassName" } }, ngImport: i0, template: "<qd-icon [icon]=\"this.getIcon()\" class=\"icon\"></qd-icon>\n\n<div class=\"title\" *ngIf=\"config?.title\">{{ config.title.i18n | translate }}</div>\n<div class=\"message\">\n <span>{{ config?.i18n | translate }}</span>\n <a class=\"link\" *ngIf=\"config?.link\" (click)=\"handleLinkClick()\">{{ config.link.i18n | translate }}</a>\n</div>\n", styles: [":host{position:relative;display:block;width:100%;padding:1rem 2rem .5rem 2.75rem;border-width:.0625rem;border-style:solid;border-left-width:.25rem;margin-bottom:.5rem;background:#fff;box-shadow:0 0 .625rem #979797;font-size:.875rem;gap:.5rem;line-height:1rem}:host.qd-page-info-banner-info{border-color:#069}:host.qd-page-info-banner-info .icon,:host.qd-page-info-banner-info .title{color:#069}:host.qd-page-info-banner-warning{border-color:#ff9b00}:host.qd-page-info-banner-warning .icon,:host.qd-page-info-banner-warning .title{color:#ff9b00}:host.qd-page-info-banner-critical{border-color:#c70023}:host.qd-page-info-banner-critical .icon,:host.qd-page-info-banner-critical .title{color:#c70023}:host.qd-page-info-banner-positive{border-color:#00813a}:host.qd-page-info-banner-positive .icon,:host.qd-page-info-banner-positive .title{color:#00813a}:host .icon{position:absolute;top:.9375rem;left:1rem;font-size:1.25rem}:host .title{margin-bottom:.375rem;font-weight:500}:host .message{margin-bottom:.25rem;white-space:pre-wrap}:host .link{margin-bottom:.375rem;margin-left:.375rem;color:#069;cursor:pointer}:host .link:hover{text-decoration:underline}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.QdIconComponent, selector: "qd-icon", inputs: ["icon"] }, { kind: "pipe", type: i3.TranslatePipe, name: "translate" }] });
|
|
113
|
+
}
|
|
114
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: QdPageInfoBannerComponent, decorators: [{
|
|
115
|
+
type: Component,
|
|
116
|
+
args: [{ selector: 'qd-page-info-banner', template: "<qd-icon [icon]=\"this.getIcon()\" class=\"icon\"></qd-icon>\n\n<div class=\"title\" *ngIf=\"config?.title\">{{ config.title.i18n | translate }}</div>\n<div class=\"message\">\n <span>{{ config?.i18n | translate }}</span>\n <a class=\"link\" *ngIf=\"config?.link\" (click)=\"handleLinkClick()\">{{ config.link.i18n | translate }}</a>\n</div>\n", styles: [":host{position:relative;display:block;width:100%;padding:1rem 2rem .5rem 2.75rem;border-width:.0625rem;border-style:solid;border-left-width:.25rem;margin-bottom:.5rem;background:#fff;box-shadow:0 0 .625rem #979797;font-size:.875rem;gap:.5rem;line-height:1rem}:host.qd-page-info-banner-info{border-color:#069}:host.qd-page-info-banner-info .icon,:host.qd-page-info-banner-info .title{color:#069}:host.qd-page-info-banner-warning{border-color:#ff9b00}:host.qd-page-info-banner-warning .icon,:host.qd-page-info-banner-warning .title{color:#ff9b00}:host.qd-page-info-banner-critical{border-color:#c70023}:host.qd-page-info-banner-critical .icon,:host.qd-page-info-banner-critical .title{color:#c70023}:host.qd-page-info-banner-positive{border-color:#00813a}:host.qd-page-info-banner-positive .icon,:host.qd-page-info-banner-positive .title{color:#00813a}:host .icon{position:absolute;top:.9375rem;left:1rem;font-size:1.25rem}:host .title{margin-bottom:.375rem;font-weight:500}:host .message{margin-bottom:.25rem;white-space:pre-wrap}:host .link{margin-bottom:.375rem;margin-left:.375rem;color:#069;cursor:pointer}:host .link:hover{text-decoration:underline}\n"] }]
|
|
117
|
+
}], propDecorators: { config: [{
|
|
118
|
+
type: Input,
|
|
119
|
+
args: [{ required: true }]
|
|
120
|
+
}], typeClassName: [{
|
|
121
|
+
type: HostBinding,
|
|
122
|
+
args: ['attr.class']
|
|
123
|
+
}] } });
|
|
124
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnZS1pbmZvLWJhbm5lci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL3FkLXVpL3NyYy9saWIvcGFnZS9pbmZvLWJhbm5lci9wYWdlLWluZm8tYmFubmVyLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcWQtdWkvc3JjL2xpYi9wYWdlL2luZm8tYmFubmVyL3BhZ2UtaW5mby1iYW5uZXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxXQUFXLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7OztBQUc5RDs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0dBOEVHO0FBTUgsTUFBTSxPQUFPLHlCQUF5QjtJQUNwQzs7T0FFRztJQUN3QixNQUFNLENBQTBCO0lBRTNELElBQStCLGFBQWE7UUFDMUMsT0FBTywyQ0FBMkMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLEVBQUUsQ0FBQztJQUN2RSxDQUFDO0lBRUQsT0FBTztRQUNMLE9BQU8sSUFBSSxDQUFDLE1BQU0sRUFBRSxJQUFJLENBQUM7SUFDM0IsQ0FBQztJQUVELE9BQU87UUFDTCxRQUFRLElBQUksQ0FBQyxPQUFPLEVBQUUsRUFBRSxDQUFDO1lBQ3ZCLEtBQUssVUFBVTtnQkFDYixPQUFPLGtCQUFrQixDQUFDO1lBQzVCLEtBQUssTUFBTTtnQkFDVCxPQUFPLGtCQUFrQixDQUFDO1lBQzVCLEtBQUssU0FBUztnQkFDWixPQUFPLGtCQUFrQixDQUFDO1lBQzVCLEtBQUssVUFBVTtnQkFDYixPQUFPLHdCQUF3QixDQUFDO1FBQ3BDLENBQUM7SUFDSCxDQUFDO0lBRUQsZUFBZTtRQUNiLElBQUksQ0FBQyxNQUFNLEVBQUUsSUFBSSxFQUFFLE9BQU8sRUFBRSxDQUFDO0lBQy9CLENBQUM7dUdBN0JVLHlCQUF5QjsyRkFBekIseUJBQXlCLHVKQ3ZGdEMsMlZBT0E7OzJGRGdGYSx5QkFBeUI7a0JBTHJDLFNBQVM7K0JBQ0UscUJBQXFCOzhCQVFKLE1BQU07c0JBQWhDLEtBQUs7dUJBQUMsRUFBRSxRQUFRLEVBQUUsSUFBSSxFQUFFO2dCQUVNLGFBQWE7c0JBQTNDLFdBQVc7dUJBQUMsWUFBWSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSG9zdEJpbmRpbmcsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBRZFBhZ2VJbmZvQmFubmVyQ29uZmlnLCBRZFBhZ2VJbmZvQmFubmVyVHlwZSB9IGZyb20gJy4uL21vZGVsL3BhZ2UtaW5mby1iYW5uZXIuaW50ZXJmYWNlJztcblxuLyoqXG4gKiBUaGUgKipRZFBhZ2VJbmZvQmFubmVyQ29tcG9uZW50KiogaXMgdXNlZCB0byBzaG93IHN0YXRpYyBpbmZvcm1hdGlvbiB0byB0aGUgdXNlcixcbiAqIGZvciBleGFtcGxlIHRvIGRlc2NyaWJlIGluZm9ybWF0aW9uIHRoYXQgY29ycmVzcG9uZHMgdG8gdGhlIHBhZ2Ugb2JqZWN0LlxuICpcbiAqICMjIyMgKipGZWF0dXJlcyoqXG4gKlxuICogLSAqKk11bHRpcGxlIFR5cGVzKio6IFN1cHBvcnRzIGZvdXIgbWVzc2FnZSB0eXBlcyAtIGAnaW5mbydgLCBgJ3dhcm5pbmcnYCwgYCdjcml0aWNhbCdgLCBhbmQgYCdwb3NpdGl2ZSdgIC0gdG8gbWF0Y2ggZGlmZmVyZW50IHNpdHVhdGlvbnMuXG4gKiAtICoqVGl0bGUgJiBMaW5rIFN1cHBvcnQqKjogT3B0aW9uYWxseSBkaXNwbGF5IGEgdGl0bGUgYW5kIGFuIGFjdGlvbmFibGUgbGluayB3aXRoIGEgY3VzdG9tIGNsaWNrIGhhbmRsZXIuXG4gKiAtICoqR3JvdXBlZCBEaXNwbGF5Kio6IENvbnNlY3V0aXZlIGJhbm5lcnMgb2YgdGhlIHNhbWUgdHlwZSBhcmUgYXV0b21hdGljYWxseSBncm91cGVkIGludG8gYSBzaW5nbGUgY29udGFpbmVyLlxuICogLSAqKkZsZXhpYmxlIFBsYWNlbWVudCoqOiBDYW4gYmUgcGxhY2VkIGluIHBhZ2VzLCB0YWJzLCBvciBzdGVwcyB0byBtYXRjaCB0aGUgcGFnZSBzdHJ1Y3R1cmUuXG4gKiAtICoqRnVsbHkgaTE4bi1Db21wYXRpYmxlKio6IFRleHQsIHRpdGxlLCBhbmQgbGluayBsYWJlbHMgYXJlIGZ1bGx5IGludGVybmF0aW9uYWxpemFibGUgdXNpbmcgaTE4biBrZXlzLlxuICpcbiAqICMjIyMgKipVc2FnZSoqXG4gKlxuICogYGBgdHNcbiAqIHBhZ2VJbmZvQmFubmVyMTogUWRQYWdlSW5mb0Jhbm5lckNvbmZpZyA9IHtcbiAqICAgdHlwZTogJ2NyaXRpY2FsJyxcbiAqICAgdGl0bGU6IHsgaTE4bjogJ2kxOG4uZXJyb3JUaXRsZScgfSxcbiAqICAgaTE4bjogJ2kxOG4uZXJyb3JNZXNzYWdlJyxcbiAqICAgbGluazoge1xuICogICAgIGkxOG46ICdpMThuLm1vcmVEZXRhaWxzJyxcbiAqICAgICBoYW5kbGVyOiB0aGlzLmhhbmRsZUxpbmtDbGlja1xuICogICB9XG4gKiB9O1xuICpcbiAqIHBhZ2VJbmZvQmFubmVyMjogUWRQYWdlSW5mb0Jhbm5lckNvbmZpZyA9IHtcbiAqICAgdHlwZTogJ2luZm8nLFxuICogICBpMThuOiAnaTE4bi5hZGRpdGlvbmFsQ29udGV4dCdcbiAqIH07XG4gKlxuICogcGFnZUluZm9CYW5uZXIzOiBRZFBhZ2VJbmZvQmFubmVyQ29uZmlnID0ge1xuICogICB0eXBlOiAnaW5mbycsXG4gKiAgIGkxOG46ICdpMThuLm1vcmVBZGRpdGlvbmFsQ29udGV4dCdcbiAqIH07XG4gKiBgYGBcbiAqXG4gKiAqKkRpcmVjdGx5IGluIGEgUGFnZSoqXG4gKiBgYGBodG1sXG4gKiA8cWQtcGFnZSBbY29uZmlnXT1cInBhZ2VDb25maWdcIj5cbiAqICAgPHFkLXBhZ2UtaW5mby1iYW5uZXIgW2NvbmZpZ109XCJwYWdlSW5mb0Jhbm5lcjFcIj48L3FkLXBhZ2UtaW5mby1iYW5uZXI+XG4gKiAgIDwhLS0gVGhlc2UgdHdvIHdpbGwgYmUgZ3JvdXBlZCBiZWNhdXNlIHRoZXkgYXJlIGJvdGggdHlwZSAnaW5mbycgLS0+XG4gKiAgIDxxZC1wYWdlLWluZm8tYmFubmVyIFtjb25maWddPVwicGFnZUluZm9CYW5uZXIyXCI+PC9xZC1wYWdlLWluZm8tYmFubmVyPlxuICogICA8cWQtcGFnZS1pbmZvLWJhbm5lciBbY29uZmlnXT1cInBhZ2VJbmZvQmFubmVyM1wiPjwvcWQtcGFnZS1pbmZvLWJhbm5lcj5cbiAqICAgLi4uXG4gKiA8L3FkLXBhZ2U+XG4gKiBgYGBcbiAqXG4gKiAqKkluIGEgUGFnZSBTdGVwKipcbiAqIGBgYGh0bWxcbiAqIDxxZC1wYWdlIFtjb25maWddPVwicGFnZUNvbmZpZ1wiPlxuICogICA8cWQtcGFnZS1zdGVwcGVyPlxuICogICAgIDxxZC1wYWdlLXN0ZXAgW2NvbmZpZ109XCJzdGVwQ29uZmlnXCI+XG4gKiAgICAgICA8cWQtcGFnZS1pbmZvLWJhbm5lciBbY29uZmlnXT1cInBhZ2VJbmZvQmFubmVyMVwiPjwvcWQtcGFnZS1pbmZvLWJhbm5lcj5cbiAqICAgICAgIC4uLlxuICogICAgIDwvcWQtcGFnZS1zdGVwPlxuICogICA8L3FkLXBhZ2Utc3RlcHBlcj5cbiAqIDwvcWQtcGFnZT5cbiAqIGBgYFxuICpcbiAqICoqSW4gYSBQYWdlIFRhYioqXG4gKiBgYGBodG1sXG4gKiA8cWQtcGFnZSBbY29uZmlnXT1cInBhZ2VDb25maWdcIj5cbiAqICAgPHFkLXBhZ2UtdGFicz5cbiAqICAgICA8cWQtcGFnZS10YWIgW2NvbmZpZ109XCJ0YWJDb25maWdcIj5cbiAqICAgICAgIDxxZC1wYWdlLWluZm8tYmFubmVyIFtjb25maWddPVwicGFnZUluZm9CYW5uZXIxXCI+PC9xZC1wYWdlLWluZm8tYmFubmVyPlxuICogICAgICAgLi4uXG4gKiAgICAgPC9xZC1wYWdlLXRhYj5cbiAqICAgPC9xZC1wYWdlLXRhYnM+XG4gKiA8L3FkLXBhZ2U+XG4gKiBgYGBcbiAqXG4gKiAqKkluIGEgUWREaWFsb2cqKlxuICogYGBgaHRtbFxuICogPHFkLWRpYWxvZz5cbiAqICAgPHFkLXBhZ2UtaW5mby1iYW5uZXIgW2NvbmZpZ109XCJwYWdlSW5mb0Jhbm5lcjFcIj48L3FkLXBhZ2UtaW5mby1iYW5uZXI+XG4gKiAgIC4uLlxuICogPC9xZC1kaWFsb2c+XG4gKiBgYGBcbiAqL1xuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAncWQtcGFnZS1pbmZvLWJhbm5lcicsXG4gIHRlbXBsYXRlVXJsOiAnLi9wYWdlLWluZm8tYmFubmVyLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vcGFnZS1pbmZvLWJhbm5lci5jb21wb25lbnQuc2NzcyddXG59KVxuZXhwb3J0IGNsYXNzIFFkUGFnZUluZm9CYW5uZXJDb21wb25lbnQge1xuICAvKipcbiAgICogQ29uZmlndXJhdGlvbiBvZiB0aGUgcGFnZSBpbmZvIGJhbm5lci5cbiAgICovXG4gIEBJbnB1dCh7IHJlcXVpcmVkOiB0cnVlIH0pIGNvbmZpZyE6IFFkUGFnZUluZm9CYW5uZXJDb25maWc7XG5cbiAgQEhvc3RCaW5kaW5nKCdhdHRyLmNsYXNzJykgZ2V0IHR5cGVDbGFzc05hbWUoKTogc3RyaW5nIHtcbiAgICByZXR1cm4gYHFkLXBhZ2UtaW5mby1iYW5uZXIgcWQtcGFnZS1pbmZvLWJhbm5lci0ke3RoaXMuY29uZmlnLnR5cGV9YDtcbiAgfVxuXG4gIGdldFR5cGUoKTogUWRQYWdlSW5mb0Jhbm5lclR5cGUge1xuICAgIHJldHVybiB0aGlzLmNvbmZpZz8udHlwZTtcbiAgfVxuXG4gIGdldEljb24oKTogc3RyaW5nIHtcbiAgICBzd2l0Y2ggKHRoaXMuZ2V0VHlwZSgpKSB7XG4gICAgICBjYXNlICdwb3NpdGl2ZSc6XG4gICAgICAgIHJldHVybiAnY2hlY2tDaXJjbGVTb2xpZCc7XG4gICAgICBjYXNlICdpbmZvJzpcbiAgICAgICAgcmV0dXJuICdjaGVja0NpcmNsZVNvbGlkJztcbiAgICAgIGNhc2UgJ3dhcm5pbmcnOlxuICAgICAgICByZXR1cm4gJ3dhcm5pbmdIZXhGaWxsZWQnO1xuICAgICAgY2FzZSAnY3JpdGljYWwnOlxuICAgICAgICByZXR1cm4gJ2V4Y2xhbWF0aW9uQ2lyY2xlU29saWQnO1xuICAgIH1cbiAgfVxuXG4gIGhhbmRsZUxpbmtDbGljaygpOiB2b2lkIHtcbiAgICB0aGlzLmNvbmZpZz8ubGluaz8uaGFuZGxlcigpO1xuICB9XG59XG4iLCI8cWQtaWNvbiBbaWNvbl09XCJ0aGlzLmdldEljb24oKVwiIGNsYXNzPVwiaWNvblwiPjwvcWQtaWNvbj5cblxuPGRpdiBjbGFzcz1cInRpdGxlXCIgKm5nSWY9XCJjb25maWc/LnRpdGxlXCI+e3sgY29uZmlnLnRpdGxlLmkxOG4gfCB0cmFuc2xhdGUgfX08L2Rpdj5cbjxkaXYgY2xhc3M9XCJtZXNzYWdlXCI+XG4gIDxzcGFuPnt7IGNvbmZpZz8uaTE4biB8IHRyYW5zbGF0ZSB9fTwvc3Bhbj5cbiAgPGEgY2xhc3M9XCJsaW5rXCIgKm5nSWY9XCJjb25maWc/LmxpbmtcIiAoY2xpY2spPVwiaGFuZGxlTGlua0NsaWNrKClcIj57eyBjb25maWcubGluay5pMThuIHwgdHJhbnNsYXRlIH19PC9hPlxuPC9kaXY+XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnZS1jb25maWcuaW50ZXJmYWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9xZC11aS9zcmMvbGliL3BhZ2UvbW9kZWwvcGFnZS1jb25maWcuaW50ZXJmYWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBRZE1lbnVCdXR0b25BY3Rpb25Db25maWcgfSBmcm9tICcuLi8uLi9idXR0b24vbW9kZWwvYnV0dG9uLWNvbmZpZyc7XG5pbXBvcnQgeyBRZFBhZ2VIZWFkZXJGYWNldENvbmZpZyB9IGZyb20gJy4vcGFnZS1oZWFkZXItZmFjZXQuaW50ZXJmYWNlJztcblxuLyoqXG4gKiBAZGVzY3JpcHRpb24gQ29uZmlndXJhdGlvbiBvZiBRZFBhZ2UuXG4gKlxuICogQHRlbXBsYXRlIFQgLSBUaGUgdHlwZSBvZiB0aGUgcGFnZSBvYmplY3QgZGF0YVxuICovXG5leHBvcnQgdHlwZSBRZFBhZ2VDb25maWc8VCBleHRlbmRzIG9iamVjdCA9IG9iamVjdD4gPVxuICB8IFFkUGFnZUNvbmZpZ092ZXJ2aWV3XG4gIHwgUWRQYWdlQ29uZmlnQ3JlYXRlPFQ+XG4gIHwgUWRQYWdlQ29uZmlnSW5zcGVjdDxUPlxuICB8IFFkUGFnZUNvbmZpZ0N1c3RvbTxUPjtcblxuZXhwb3J0IGludGVyZmFjZSBRZFBhZ2VTZWxlY3RlZENvbnRleHQge1xuICB2YWx1ZTogc3RyaW5nO1xuICBsYWJlbDoge1xuICAgIGkxOG46IHN0cmluZztcbiAgfTtcbn1cblxuaW50ZXJmYWNlIFFkUGFnZUNvbnRleHRDb25maWdCYXNlIHtcbiAgLyoqXG4gICAqIEBkZXNjcmlwdGlvbiBEZXNjcmlwdGlvbiBmb3IgdGhlIHNwZWNpZmljIGhlYWRlciBmYWNldFxuICAgKi9cbiAgbGFiZWw6IHtcbiAgICAvKipcbiAgICAgKiBAZGVzY3JpcHRpb24gaTE4biBzdHJpbmcgZm9yIHRoZSBkZXNjcmlwdGlvbiwgdXNlZCBmb3IgdHJhbnNsYXRpb24uXG4gICAgICovXG4gICAgaTE4bjogc3RyaW5nO1xuICB9O1xuXG4gIC8qKlxuICAgKiBAZGVzY3JpcHRpb24gQWxsb3dzIHRvIGlkZW50aWZ5IHRoZSBjb250ZXh0XG4gICAqL1xuICBpZDogc3RyaW5nO1xuXG4gIC8qKlxuICAgKiBAZGVzY3JpcHRpb24gUmVnaXN0ZXIgc29tZSBoYW5kbGVyIHRoYXQgaXMgZXhlY3V0ZWQgd2hlbiB0aGUgc2VsZWN0aW9uIGNoYW5nZXMuXG4gICAqL1xuICBjaGFuZ2VkPzogKHNlbGVjdGlvbjogUWRQYWdlU2VsZWN0ZWRDb250ZXh0IHwgUWRQYWdlU2VsZWN0ZWRDb250ZXh0W10gfCBudWxsKSA9PiB2b2lkO1xufVxuXG4vKipcbiAqIEBkZXNjcmlwdGlvbiBDb25maWd1cmF0aW9uIGZvciBhIGNvbnRleHQgd2l0aCBzaW5nbGUgc2VsZWN0aW9uXG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgUWRQYWdlQ29udGV4dENvbmZpZ1NpbmdsZSBleHRlbmRzIFFkUGFnZUNvbnRleHRDb25maWdCYXNlIHtcbiAgLyoqXG4gICAqIEBkZXNjcmlwdGlvbiBDb25maWd1cmVzIHRoZSB0eXBlIG9uIGhvdyB0aGUgY29udGV4dCBzZWxlY3Rpb24gaGFwcGVucy5cbiAgICovXG4gIHR5cGU6ICdzaW5nbGUnO1xuXG4gIC8qKlxuICAgKiBAZGVzY3JpcHRpb24gQXZhaWxhYmxlIG9wdGlvbnMgZm9yIHNlbGVjdGlvbi5cbiAgICovXG4gIG9wdGlvbnM6IFFkUGFnZVNlbGVjdGVkQ29udGV4dFtdO1xuXG4gIC8qKlxuICAgKiBAZGVzY3JpcHRpb24gQ29uZmlndXJlcyB3aGV0aGVyIHRoZSBjb250ZXh0IG9wdGlvbnMgYXJlIHNlYXJjaGFibGUgZm9yIHRoZSB1c2VyLlxuICAgKiBAZGVmYXVsdCBmYWxzZVxuICAgKi9cbiAgaGFzU2VhcmNoPzogYm9vbGVhbjtcblxuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIFBsYWNlaG9sZGVyIGZvciBzZWFyY2hcbiAgICovXG4gIHNlYXJjaFBsYWNlaG9sZGVyPzoge1xuICAgIC8qKlxuICAgICAqIEBkZXNjcmlwdGlvbiBpMThuIHN0cmluZ1xuICAgICAqL1xuICAgIGkxOG46IHN0cmluZztcbiAgfTtcblxuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIFRpdGxlIGZvciB0aGUgZGlhbG9nIHRoYXQgd2lsbCBiZSBvcGVuZWRcbiAgICovXG4gIHRpdGxlPzoge1xuICAgIC8qKlxuICAgICAqIEBkZXNjcmlwdGlvbiBpMThuIHN0cmluZ1xuICAgICAqL1xuICAgIGkxOG46IHN0cmluZztcbiAgfTtcbn1cblxuLyoqXG4gKiBAZGVzY3JpcHRpb24gQ29uZmlndXJhdGlvbiBmb3IgYSBjb250ZXh0IHdpdGggbXVsdGkgc2VsZWN0aW9uXG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgUWRQYWdlQ29udGV4dENvbmZpZ011bHRpIGV4dGVuZHMgUWRQYWdlQ29udGV4dENvbmZpZ0Jhc2Uge1xuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIENvbmZpZ3VyZXMgdGhlIHR5cGUgb24gaG93IHRoZSBjb250ZXh0IHNlbGVjdGlvbiBoYXBwZW5zLlxuICAgKi9cbiAgdHlwZTogJ211bHRpJztcblxuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIEF2YWlsYWJsZSBvcHRpb25zIGZvciBzZWxlY3Rpb24uXG4gICAqL1xuICBvcHRpb25zOiBRZFBhZ2VTZWxlY3RlZENvbnRleHRbXTtcblxuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIENvbmZpZ3VyZXMgd2hldGhlciB0aGUgY29udGV4dCBvcHRpb25zIGFyZSBzZWFyY2hhYmxlIGZvciB0aGUgdXNlci5cbiAgICogQGRlZmF1bHQgZmFsc2VcbiAgICovXG4gIGhhc1NlYXJjaD86IGJvb2xlYW47XG5cbiAgLyoqXG4gICAqIEBkZXNjcmlwdGlvbiBQbGFjZWhvbGRlciBmb3Igc2VhcmNoXG5cbiAgICovXG4gIHNlYXJjaFBsYWNlaG9sZGVyPzoge1xuICAgIC8qKlxuICAgICAqIEBkZXNjcmlwdGlvbiBpMThuIHN0cmluZ1xuICAgICAqL1xuICAgIGkxOG46IHN0cmluZztcbiAgfTtcblxuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIFRpdGxlIGZvciB0aGUgZGlhbG9nIHRoYXQgd2lsbCBiZSBvcGVuZWRcbiAgICovXG4gIHRpdGxlPzoge1xuICAgIC8qKlxuICAgICAqIEBkZXNjcmlwdGlvbiBpMThuIHN0cmluZ1xuICAgICAqL1xuICAgIGkxOG46IHN0cmluZztcbiAgfTtcbn1cblxuLyoqXG4gKiBAZGVzY3JpcHRpb24gQ29uZmlndXJhdGlvbiBmb3IgYSBjb250ZXh0IHdpdGggY3VzdG9tIHNlbGVjdGlvbiAoZS4gZy4geW91ciBvd24gZGlhbG9nKVxuICovXG5leHBvcnQgaW50ZXJmYWNlIFFkUGFnZUNvbnRleHRDb25maWdDdXN0b20gZXh0ZW5kcyBRZFBhZ2VDb250ZXh0Q29uZmlnQmFzZSB7XG4gIC8qKlxuICAgKiBAZGVzY3JpcHRpb24gQ29uZmlndXJlcyB0aGUgdHlwZSBvbiBob3cgdGhlIGNvbnRleHQgc2VsZWN0aW9uIGhhcHBlbnMuXG4gICAqL1xuICB0eXBlOiAnY3VzdG9tJztcblxuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIEhhbmRsZXIgdG8gb3BlbiBhIGN1c3RvbSBkaWFsb2cgZm9yIHNlbGVjdGlvblxuICAgKi9cbiAgb3BlbjogKCkgPT4gdm9pZDtcbn1cblxuLyoqXG4gKiBAZGVzY3JpcHRpb24gQ29uZmlndXJlcyB0aGUgY29udGV4dCB3aXRoIG9uZSBvZiB0aGUgYXZhaWxhYmxlIHR5cGVzXG4gKi9cbmV4cG9ydCB0eXBlIFFkUGFnZUNvbnRleHRDb25maWcgPSBRZFBhZ2VDb250ZXh0Q29uZmlnU2luZ2xlIHwgUWRQYWdlQ29udGV4dENvbmZpZ011bHRpIHwgUWRQYWdlQ29udGV4dENvbmZpZ0N1c3RvbTtcblxuLyoqXG4gKiBAZGVzY3JpcHRpb24gQmFzZSBjb25maWd1cmF0aW9uIGZvciBRZFBhZ2UuXG4gKi9cbmludGVyZmFjZSBRZFBhZ2VDb25maWdCYXNlIHtcbiAgLyoqXG4gICAqIEBkZXNjcmlwdGlvbiBUaXRsZSBvZiB0aGUgcGFnZS5cbiAgICovXG4gIHRpdGxlOiBRZFBhZ2VUaXRsZTtcblxuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIEhpZGVzIGNvbnRleHRzIGZyb20gYmVpbmcgc2hvd24uIFRoZSBDb250ZXh0U2VydmljZSB3aWxsIHN0aWxsIHdvcmsgaW4gdGhlIGJhY2tncm91bmQuXG4gICAqXG4gICAqIEBkZWZhdWx0IGZhbHNlXG4gICAqL1xuICBoaWRlQ29udGV4dHM/OiBib29sZWFuO1xuXG4gIC8qKlxuICAgKiBAZGVzY3JpcHRpb24gTGFiZWwgZm9yIHRoZSBtZW51IGJ1dHRvbiBvZiBjdXN0b20gYWN0aW9ucy5cbiAgICovXG4gIGN1c3RvbUFjdGlvbnNMYWJlbD86IFFkUGFnZUN1c3RvbUFjdGlvbnNMYWJlbDtcbn1cblxuLyoqXG4gKiBAZGVzY3JpcHRpb24gQ29uZmlndXJhdGlvbiBmb3IgdGhlIG92ZXJ2aWV3IHBhZ2UgdHlwZS5cbiAqXG4gKiBAdGVtcGxhdGUgVCAtIFRoZSB0eXBlIG9mIHRoZSBwYWdlIG9iamVjdCBkYXRhXG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgUWRQYWdlQ29uZmlnT3ZlcnZpZXcgZXh0ZW5kcyBRZFBhZ2VDb25maWdCYXNlIHtcbiAgLyoqXG4gICAqIEBkZXNjcmlwdGlvbiBQYWdlIFR5cGVcbiAgICpcbiAgICogQGRlZmF1bHQgJ292ZXJ2aWV3J1xuICAgKi9cbiAgcGFnZVR5cGU/OiAnb3ZlcnZpZXcnOyAvLyBPcHRpb25hbCB0byBtYWtlIGl0IGRlZmF1bHRcblxuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIENvbmZpZ3VyYXRpb24gc3BlY2lmaWMgdG8gdGhlIG92ZXJ2aWV3IHBhZ2UgdHlwZS5cbiAgICovXG4gIHBhZ2VUeXBlQ29uZmlnPzogUWRQYWdlVHlwZU92ZXJ2aWV3Q29uZmlnO1xufVxuXG4vKipcbiAqIEBkZXNjcmlwdGlvbiBDb25maWd1cmF0aW9uIGZvciB0aGUgY3JlYXRlIHBhZ2UgdHlwZS5cbiAqXG4gKiBAdGVtcGxhdGUgVCAtIFRoZSB0eXBlIG9mIHRoZSBwYWdlIG9iamVjdCBkYXRhXG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgUWRQYWdlQ29uZmlnQ3JlYXRlPFQgZXh0ZW5kcyBvYmplY3QgPSBvYmplY3Q+IGV4dGVuZHMgUWRQYWdlQ29uZmlnQmFzZSB7XG4gIC8qKlxuICAgKiBAZGVzY3JpcHRpb24gUGFnZSBUeXBlXG4gICAqXG4gICAqIEBkZWZhdWx0ICdjcmVhdGUnXG4gICAqL1xuICBwYWdlVHlwZTogJ2NyZWF0ZSc7XG5cbiAgLyoqXG4gICAqIEBkZXNjcmlwdGlvbiBDb25maWd1cmF0aW9uIHNwZWNpZmljIHRvIHRoZSBjcmVhdGUgcGFnZSB0eXBlLlxuICAgKi9cbiAgcGFnZVR5cGVDb25maWc/OiBRZFBhZ2VUeXBlQ3JlYXRlQ29uZmlnO1xuXG4gIC8qKlxuICAgKiBAZGVzY3JpcHRpb24gSW5mb3JtYXRpb24gcGxhY2VkIGluIHRoZSBoZWFkZXIgb2YgdGhlIHBhZ2UuIENvbmNlcm5zIGN1cnJlbnQgc2hvd24gb2JqZWN0LlxuICAgKi9cbiAgaGVhZGVyRmFjZXRzPzogUWRQYWdlSGVhZGVyRmFjZXRDb25maWc8VD5bXTtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBRZFBhZ2VDb25maWdJbnNwZWN0PFQgZXh0ZW5kcyBvYmplY3QgPSBvYmplY3Q+IGV4dGVuZHMgUWRQYWdlQ29uZmlnQmFzZSB7XG4gIC8qKlxuICAgKiBAZGVzY3JpcHRpb24gUGFnZSBUeXBlXG4gICAqXG4gICAqIEBkZWZhdWx0ICdpbnNwZWN0J1xuICAgKi9cbiAgcGFnZVR5cGU6ICdpbnNwZWN0JztcblxuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIENvbmZpZ3VyYXRpb24gc3BlY2lmaWMgdG8gdGhlIGluc3BlY3QgcGFnZSB0eXBlLlxuICAgKi9cbiAgcGFnZVR5cGVDb25maWc/OiBRZFBhZ2VUeXBlSW5zcGVjdENvbmZpZztcblxuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIEluZm9ybWF0aW9uIHBsYWNlZCBpbiB0aGUgaGVhZGVyIG9mIHRoZSBwYWdlLiBDb25jZXJucyBjdXJyZW50IHNob3duIG9iamVjdC5cbiAgICovXG4gIGhlYWRlckZhY2V0cz86IFFkUGFnZUhlYWRlckZhY2V0Q29uZmlnPFQ+W107XG5cbiAgLyoqXG4gICAqIEBkZXNjcmlwdGlvbiBEZXRlcm1pbmVzIHdoZXRoZXIgdGhlIGZhY2V0cyBpbiBoZWFkZXIgc2hvdWxkIGJlIGNvbGxhcHNlZCBhbmQgY3VzdG9tIGFjdGlvbnMgYXJlIGluIGEgbWVudS4gVGhpcyBtb2RlIGlzIGRlc2lnbmVkIGZvciB0b3VjaCBkZXZpY2VzIGFuZCBtb2JpbGUgcGhvbmVzIG9ubHkuXG4gICAqXG4gICAqIEBkZWZhdWx0IGZhbHNlXG4gICAqL1xuICBhZGFwdGl2ZU1vZGU/OiBib29sZWFuO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIFFkUGFnZUNvbmZpZ0N1c3RvbTxUIGV4dGVuZHMgb2JqZWN0ID0gb2JqZWN0PiBleHRlbmRzIFFkUGFnZUNvbmZpZ0Jhc2Uge1xuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIFBhZ2UgVHlwZVxuICAgKlxuICAgKiBAZGVmYXVsdCAnY3VzdG9tJ1xuICAgKi9cbiAgcGFnZVR5cGU6ICdjdXN0b20nO1xuXG4gIC8qKlxuICAgKiBAZGVzY3JpcHRpb24gQ29uZmlndXJhdGlvbiBzcGVjaWZpYyB0byB0aGUgY3VzdG9tIHBhZ2UgdHlwZS5cbiAgICovXG4gIHBhZ2VUeXBlQ29uZmlnPzogUWRQYWdlVHlwZUN1c3RvbUNvbmZpZztcblxuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIEluZm9ybWF0aW9uIHBsYWNlZCBpbiB0aGUgaGVhZGVyIG9mIHRoZSBwYWdlLiBDb25jZXJucyBjdXJyZW50IHNob3duIG9iamVjdC5cbiAgICovXG4gIGhlYWRlckZhY2V0cz86IFFkUGFnZUhlYWRlckZhY2V0Q29uZmlnPFQ+W107XG5cbiAgLyoqXG4gICAqIEBkZXNjcmlwdGlvbiBEZXRlcm1pbmVzIHdoZXRoZXIgdGhlIGZhY2V0cyBpbiBoZWFkZXIgc2hvdWxkIGJlIGNvbGxhcHNlZCBhbmQgY3VzdG9tIGFjdGlvbnMgYXJlIGluIGEgbWVudS4gVGhpcyBtb2RlIGlzIGRlc2lnbmVkIGZvciB0b3VjaCBkZXZpY2VzIGFuZCBtb2JpbGUgcGhvbmVzIG9ubHkuXG4gICAqXG4gICAqIEBkZWZhdWx0IGZhbHNlXG4gICAqL1xuICBhZGFwdGl2ZU1vZGU/OiBib29sZWFuO1xufVxuXG4vKipcbiAqIENvbmZpZ3VyZXMgdGhlIG92ZXJ2aWV3IHBhZ2VcbiAqL1xuZXhwb3J0IGludGVyZmFjZSBRZFBhZ2VUeXBlT3ZlcnZpZXdDb25maWcge1xuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIEN1c3RvbSBhY3Rpb25zIGZvciB0aGUgaGVhZGVyLlxuICAgKiBZb3UgY2FuIGRlZmluZSBhIGxhYmVsLCBhIGhhbmRsZXIsIGFuZCB5b3UgY2FuIGRpc2FibGUgb3IgaGlkZSB0aGUgYWN0aW9uLlxuICAgKlxuICAgKiAqIElmIHRoZXJlIGV4aXN0cyBtb3JlIHRoYW4gMSBDdXN0b20gQWN0aW9uLCBhIFFkTWVudUJ1dHRvbiB3aWxsIGJlIGRpc3BsYXllZC5cbiAgICpcbiAgICogKiBUaGVzZSBhY3Rpb25zIGFyZSBub3QgaW50ZW5kZWQgdG8gaW5mbHVlbmNlIHRoZSBjb3JlIHByb2Nlc3MgZmxvdyBvciBtYW5pcHVsYXRlIHRoZSBvYmplY3QgZGlyZWN0bHkuIEluc3RlYWQsIHRoZXkgc2hvdWxkIGJlIHVzZWQgZm9yIHNpZGUgZWZmZWN0cywgc3VjaCBhcyB0cmlnZ2VyaW5nIG5vdGlmaWNhdGlvbnMsIHVwZGF0aW5nIGV4dGVybmFsIHNlcnZpY2VzLCBvciBleGVjdXRpbmcgc3VwcGxlbWVudGFyeSB0YXNrcyB0aGF0IGRvIG5vdCBhbHRlciB0aGUgbWFpbiBzdGF0ZSBvZiB0aGUgb2JqZWN0LlxuICAgKi9cbiAgY3VzdG9tQWN0aW9ucz86IFFkTWVudUJ1dHRvbkFjdGlvbkNvbmZpZ1tdO1xufVxuXG4vKipcbiAqIEBkZXNjcmlwdGlvbiBDb25maWd1cmVzIHRoZSBjcmVhdGUgcGFnZS5cbiAqL1xuZXhwb3J0IGludGVyZmFjZSBRZFBhZ2VUeXBlQ3JlYXRlQ29uZmlnIHtcbiAgLyoqXG4gICAqIEBkZXNjcmlwdGlvbiBDb25maWd1cmF0aW9uIGZvciB0aGUgc2F2ZSBkcmFmdCBhY3Rpb24uXG4gICAqL1xuICBzYXZlRHJhZnQ/OiBRZFBhZ2VTYXZlRHJhZnRBY3Rpb247XG5cbiAgLyoqXG4gICAqIEBkZXNjcmlwdGlvbiBDb25maWd1cmF0aW9uIGZvciB0aGUgY2FuY2VsIGJ1dHRvbi5cbiAgICovXG4gIGNhbmNlbDogUWRQYWdlQ2FuY2VsQWN0aW9uO1xuXG4gIC8qKlxuICAgKiBAZGVzY3JpcHRpb24gQ29uZmlndXJhdGlvbiBmb3IgdGhlIHN1Ym1pdCBidXR0b24uXG4gICAqL1xuICBzdWJtaXQ6IFFkUGFnZVN1Ym1pdEFjdGlvbjtcblxuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIEN1c3RvbSBhY3Rpb25zIGZvciB0aGUgaGVhZGVyLlxuICAgKiBZb3UgY2FuIGRlZmluZSBhIGxhYmVsLCBhIGhhbmRsZXIsIGFuZCB5b3UgY2FuIGRpc2FibGUgb3IgaGlkZSB0aGUgYWN0aW9uLlxuICAgKlxuICAgKiAqIElmIHRoZXJlIGV4aXN0cyBtb3JlIHRoYW4gMSBDdXN0b20gQWN0aW9uLCBhIFFkTWVudUJ1dHRvbiB3aWxsIGJlIGRpc3BsYXllZC5cbiAgICpcbiAgICogKiBUaGVzZSBhY3Rpb25zIGFyZSBub3QgaW50ZW5kZWQgdG8gaW5mbHVlbmNlIHRoZSBjb3JlIHByb2Nlc3MgZmxvdyBvciBtYW5pcHVsYXRlIHRoZSBvYmplY3QgZGlyZWN0bHkuIEluc3RlYWQsIHRoZXkgc2hvdWxkIGJlIHVzZWQgZm9yIHNpZGUgZWZmZWN0cywgc3VjaCBhcyB0cmlnZ2VyaW5nIG5vdGlmaWNhdGlvbnMsIHVwZGF0aW5nIGV4dGVybmFsIHNlcnZpY2VzLCBvciBleGVjdXRpbmcgc3VwcGxlbWVudGFyeSB0YXNrcyB0aGF0IGRvIG5vdCBhbHRlciB0aGUgbWFpbiBzdGF0ZSBvZiB0aGUgb2JqZWN0LlxuICAgKi9cbiAgY3VzdG9tQWN0aW9ucz86IFFkTWVudUJ1dHRvbkFjdGlvbkNvbmZpZ1tdO1xufVxuXG4vKipcbiAqIEBkZXNjcmlwdGlvbiBDb25maWd1cmVzIHRoZSBpbnNwZWN0IHBhZ2UuXG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgUWRQYWdlVHlwZUluc3BlY3RDb25maWcge1xuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIE9wZXJhdGlvbiBtb2RlIGZvciB0aGUgcGFnZS5cbiAgICpcbiAgICogKiBUaGlzIHByb3BlcnR5IGRldGVybWluZXMgdGhlIG1vZGUgaW4gd2hpY2ggdGhlIHBhZ2Ugb3BlcmF0ZXMuIEl0IGNhbiBiZSBlaXRoZXIgJ3ZpZXcnIG9yICdlZGl0Jy5cbiAgICpcbiAgICogKiAqKnZpZXcqKjogVGhlIHBhZ2UgaXMgaW4gcmVhZC1vbmx5IG1vZGUuXG4gICAqICogKiplZGl0Kio6IFRoZSBwYWdlIGFsbG93cyBtb2RpZmljYXRpb25zLlxuICAgKi9cbiAgb3BlcmF0aW9uTW9kZT86IFFkSW5zcGVjdE9wZXJhdGlvbk1vZGU7XG5cbiAgLyoqXG4gICAqIEBkZXNjcmlwdGlvbiBTcGVjaWZpZXMgd2hldGhlciB0aGUgdXNlciBjYW4gZWRpdCB0aGUgb2JqZWN0IG9yIG5vdC5cbiAgICovXG4gIGhpZGVFZGl0PzogYm9vbGVhbjtcblxuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIENvbmZpZ3VyYXRpb24gZm9yIHRoZSBlZGl0IGFjdGlvbi5cbiAgICovXG4gIGVkaXQ/OiBRZFBhZ2VFZGl0QWN0aW9uO1xuXG4gIC8qKlxuICAgKiBAZGVzY3JpcHRpb24gQ29uZmlndXJhdGlvbiBmb3IgdGhlIHNhdmUgYWN0aW9uLlxuICAgKi9cbiAgc2F2ZT86IFFkUGFnZVNhdmVBY3Rpb247XG5cbiAgLyoqXG4gICAqIEBkZXNjcmlwdGlvbiBDb25maWd1cmF0aW9uIGZvciB0aGUgY2FuY2VsIGFjdGlvbi5cbiAgICovXG4gIGNhbmNlbDogUWRQYWdlQ2FuY2VsQWN0aW9uO1xuXG4gIC8qKlxuICAgKiBAZGVzY3JpcHRpb24gQ29uZmlndXJhdGlvbiBmb3IgdGhlIGRlbGV0ZSBhY3Rpb24uXG4gICAqL1xuICBkZWxldGU/OiBRZFBhZ2VEZWxldGVBY3Rpb247XG5cbiAgLyoqXG4gICAqIEBkZXNjcmlwdGlvbiBDb25maWd1cmF0aW9uIGZvciB0aGUgYXJjaGl2ZSBhY3Rpb24uXG4gICAqL1xuICBhcmNoaXZlPzogUWRQYWdlQXJjaGl2ZUFjdGlvbjtcblxuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIENvbmZpZ3VyYXRpb24gZm9yIHRoZSBzdWJtaXQgYWN0aW9uLlxuICAgKi9cbiAgc3VibWl0PzogUWRQYWdlU3VibWl0QWN0aW9uO1xuXG4gIC8qKlxuICAgKiBAZGVzY3JpcHRpb24gQ3VzdG9tIGFjdGlvbnMgZm9yIHRoZSBoZWFkZXIuXG4gICAqIFlvdSBjYW4gZGVmaW5lIGEgbGFiZWwsIGEgaGFuZGxlciwgYW5kIHlvdSBjYW4gZGlzYWJsZSBvciBoaWRlIHRoZSBhY3Rpb24uXG4gICAqXG4gICAqICogSWYgdGhlcmUgZXhpc3RzIG1vcmUgdGhhbiAxIEN1c3RvbSBBY3Rpb24sIGEgUWRNZW51QnV0dG9uIHdpbGwgYmUgZGlzcGxheWVkLlxuICAgKlxuICAgKiAqIEluIHRoZSBcIkluc3BlY3RcIiBwYWdlIHR5cGUsIHlvdSBjYW4gYXNzaWduIGN1c3RvbSBhY3Rpb25zIHRvIHRoZSBvcGVyYXRpb24gbW9kZXMgXCJ2aWV3XCIgb3IgXCJlZGl0LlwiIEJ5IGRlZmF1bHQsIHRoZSBhY3Rpb24gaXMgYWN0aXZlIGluIGJvdGggbW9kZXMuXG4gICAqXG4gICAqICogVGhlc2UgYWN0aW9ucyBhcmUgbm90IGludGVuZGVkIHRvIGluZmx1ZW5jZSB0aGUgY29yZSBwcm9jZXNzIGZsb3cgb3IgbWFuaXB1bGF0ZSB0aGUgb2JqZWN0IGRpcmVjdGx5LiBJbnN0ZWFkLCB0aGV5IHNob3VsZCBiZSB1c2VkIGZvciBzaWRlIGVmZmVjdHMsIHN1Y2ggYXMgdHJpZ2dlcmluZyBub3RpZmljYXRpb25zLCB1cGRhdGluZyBleHRlcm5hbCBzZXJ2aWNlcywgb3IgZXhlY3V0aW5nIHN1cHBsZW1lbnRhcnkgdGFza3MgdGhhdCBkbyBub3QgYWx0ZXIgdGhlIG1haW4gc3RhdGUgb2YgdGhlIG9iamVjdC5cbiAgICovXG4gIGN1c3RvbUFjdGlvbnM/OiAoUWRNZW51QnV0dG9uQWN0aW9uQ29uZmlnICYgeyBvcGVyYXRpb25Nb2RlPzogUWRJbnNwZWN0T3BlcmF0aW9uTW9kZSB9KVtdO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIFFkUGFnZVR5cGVDdXN0b21Db25maWcge1xuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIEN1c3RvbSBhY3Rpb25zIGZvciB0aGUgaGVhZGVyLlxuICAgKiBZb3UgY2FuIGRlZmluZSBhIGxhYmVsLCBhIGhhbmRsZXIsIGFuZCB5b3UgY2FuIGRpc2FibGUgb3IgaGlkZSB0aGUgYWN0aW9uLlxuICAgKlxuICAgKiAqIElmIHRoZXJlIGV4aXN0cyBtb3JlIHRoYW4gMSBDdXN0b20gQWN0aW9uLCBhIFFkTWVudUJ1dHRvbiB3aWxsIGJlIGRpc3BsYXllZC5cbiAgICpcbiAgICogKiBUaGVzZSBhY3Rpb25zIGFyZSBub3QgaW50ZW5kZWQgdG8gaW5mbHVlbmNlIHRoZSBjb3JlIHByb2Nlc3MgZmxvdyBvciBtYW5pcHVsYXRlIHRoZSBvYmplY3QgZGlyZWN0bHkuIEluc3RlYWQsIHRoZXkgc2hvdWxkIGJlIHVzZWQgZm9yIHNpZGUgZWZmZWN0cywgc3VjaCBhcyB0cmlnZ2VyaW5nIG5vdGlmaWNhdGlvbnMsIHVwZGF0aW5nIGV4dGVybmFsIHNlcnZpY2VzLCBvciBleGVjdXRpbmcgc3VwcGxlbWVudGFyeSB0YXNrcyB0aGF0IGRvIG5vdCBhbHRlciB0aGUgbWFpbiBzdGF0ZSBvZiB0aGUgb2JqZWN0LlxuICAgKi9cbiAgY3VzdG9tQWN0aW9ucz86IFFkTWVudUJ1dHRvbkFjdGlvbkNvbmZpZ1tdO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIFFkUGFnZVRpdGxlIHtcbiAgLyoqXG4gICAqIEBkZXNjcmlwdGlvbiBEZWZpbmVzIHRoZSB0cmFuc2xhdGlvbiBrZXlcbiAgICpcbiAgICogKiBAZXhhbXBsZSB7IGkxOG46IFwiaTE4bi5vdmVydmlldy50aXRsZVwifVxuICAgKi9cbiAgaTE4bjogc3RyaW5nO1xufVxuXG4vKipcbiAqIEBkZXNjcmlwdGlvbiBDb25maWd1cmF0aW9uIGZvciB0aGUgY3VzdG9tIGFjdGlvbnMgbGFiZWwsIHVzZWQgd2hlbiBtdWx0aXBsZSBjdXN0b20gYWN0aW9ucyBleGlzdC5cbiAqL1xuZXhwb3J0IGludGVyZmFjZSBRZFBhZ2VDdXN0b21BY3Rpb25zTGFiZWwge1xuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIExhYmVsIGZvciB0aGUgbWVudSBidXR0b24gb2YgY3VzdG9tIGFjdGlvbnMsIHVzZWQgZm9yIHRyYW5zbGF0aW9uLlxuICAgKlxuICAgKiAqIElmIG5vIGN1c3RvbSB0cmFuc2xhdGlvbiBrZXkgaXMgcHJvdmlkZWQsIGEgc3RhbmRhcmQgbGFiZWwgd2lsbCBiZSB1c2VkIGJ5IGRlZmF1bHQuXG4gICAqXG4gICAqICogVGhpcyBsYWJlbCBiZWNvbWVzIHZpc2libGUgaWYgbW9yZSB0aGFuIG9uZSBjdXN0b20gYWN0aW9uIGlzIGRlZmluZWQsIGFzIHRoZSBhY3Rpb25zIHdpbGwgYmUgZ3JvdXBlZCB1bmRlciBhIFFkTWVudUJ1dHRvbiB0aGF0IGRpc3BsYXlzIHRoaXMgbGFiZWwuXG4gICAqL1xuICBpMThuOiBzdHJpbmc7XG59XG5cbi8qKlxuICogQGRlc2NyaXB0aW9uIE9wZXJhdGlvbiBtb2RlcyBmb3IgdGhlIGluc3BlY3QgcGFnZS5cbiAqXG4gKiBAZGVmYXVsdCAndmlldydcbiAqL1xuZXhwb3J0IHR5cGUgUWRJbnNwZWN0T3BlcmF0aW9uTW9kZSA9ICd2aWV3JyB8ICdlZGl0JztcblxuLyoqXG4gKiBAZGVzY3JpcHRpb24gSW50ZXJmYWNlIGZvciB0aGUgc2F2ZSBhY3Rpb24sIGluY2x1ZGluZyBvcHRpb25hbCB2YWxpZGF0aW9uIGNvbmZpZ3VyYXRpb24uXG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgUWRQYWdlU2F2ZUFjdGlvbiB7XG4gIC8qKlxuICAgKiBAZGVzY3JpcHRpb24gTGFiZWwgZm9yIHRoZSBzYXZlIGFjdGlvbiwgdXNlZCBmb3IgdHJhbnNsYXRpb24uXG4gICAqXG4gICAqICogSWYgbm8gY3VzdG9tIHRyYW5zbGF0aW9uIGtleSBpcyBwcm92aWRlZCwgYSBzdGFuZGFyZCBsYWJlbCB3aWxsIGJlIHVzZWQgYnkgZGVmYXVsdC5cbiAgICovXG4gIGxhYmVsPzogeyBpMThuOiBzdHJpbmcgfTtcblxuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIEhhbmRsZXIgZnVuY3Rpb24gdGhhdCBpcyB0cmlnZ2VyZWQgd2hlbiB0aGUgc2F2ZSBhY3Rpb24gaXMgZXhlY3V0ZWQuXG4gICAqL1xuICBoYW5kbGVyOiAoZm9ybVZhbHVlcz86IGFueSkgPT4gdm9pZDtcblxuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIE9wdGlvbmFsIHZhbGlkYXRpb24gZmxhZywgZGVmYXVsdHMgdG8gdHJ1ZS5cbiAgICogRGV0ZXJtaW5lcyB3aGV0aGVyIGZvcm0gdmFsaWRhdGlvbiBpcyByZXF1aXJlZCBiZWZvcmUgc2F2aW5nIGFuZCBlbnN1cmVzIHRoYXQgY2hhbmdlcyBtdXN0IGJlIHByZXNlbnQgaW4gdGhlIGZvcm0gYmVmb3JlIHNhdmluZy5cbiAgICpcbiAgICogKiBCeSBkZWZhdWx0LCB0aGlzIGZsYWcgaXMgc2V0IHRvIHRydWUsIG1lYW5pbmcgdGhhdCB2YWxpZGF0aW9uIGlzIGVuZm9yY2VkLCBhbmQgdGhlIGZvcm0gd2lsbCBvbmx5IHNhdmUgaWYgdGhlcmUgYXJlIGNoYW5nZXMuXG4gICAqXG4gICAqICogSWYgc2V0IHRvIGBmYWxzZWAsIHRoZSBmb3JtIHdpbGwgYmUgc2F2ZWQgd2l0aG91dCB2YWxpZGF0aW9uIGNoZWNrcywgYnV0IGNoYW5nZXMgbXVzdCBzdGlsbCBiZSBwcmVzZW50IHRvIHByb2NlZWQgd2l0aCB0aGUgc2F2ZSBvcGVyYXRpb24uXG4gICAqXG4gICAqICogVGhpcyBmbGFnIGlzIHVzZWZ1bCBpbiBzY2VuYXJpb3Mgd2hlcmUgZm9ybSB2YWxpZGF0aW9uIGlzIG5vdCBuZWVkZWQgb3Igc2hvdWxkIGJlIGJ5cGFzc2VkLCBidXQgaXQgZW5zdXJlcyB0aGF0IG9ubHkgbW9kaWZpZWQgZm9ybXMgY2FuIGJlIHNhdmVkLlxuICAgKi9cbiAgaGFzVmFsaWRhdGlvbj86IGJvb2xlYW47XG59XG5cbi8qKlxuICogQGRlc2NyaXB0aW9uIEludGVyZmFjZSBmb3IgdGhlIHNhZmUgZHJhZnQgYWN0aW9uLlxuICovXG5leHBvcnQgaW50ZXJmYWNlIFFkUGFnZVNhdmVEcmFmdEFjdGlvbiB7XG4gIC8qKlxuICAgKiBAZGVzY3JpcHRpb24gTGFiZWwgZm9yIHRoZSBzYXZlIGRyYWZ0IGFjdGlvbiwgdXNlZCBmb3IgdHJhbnNsYXRpb24uXG4gICAqXG4gICAqICogSWYgbm8gY3VzdG9tIHRyYW5zbGF0aW9uIGtleSBpcyBwcm92aWRlZCwgYSBzdGFuZGFyZCBsYWJlbCB3aWxsIGJlIHVzZWQgYnkgZGVmYXVsdC5cbiAgICovXG4gIGxhYmVsPzogeyBpMThuOiBzdHJpbmcgfTtcblxuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIEhhbmRsZXIgZnVuY3Rpb24gdGhhdCBpcyB0cmlnZ2VyZWQgd2hlbiB0aGUgc2F2ZSBkcmFmdCBhY3Rpb24gaXMgZXhlY3V0ZWQuXG4gICAqL1xuICBoYW5kbGVyOiAoKSA9PiB2b2lkO1xufVxuXG4vKipcbiAqIEBkZXNjcmlwdGlvbiBJbnRlcmZhY2UgZm9yIHRoZSBjYW5jZWwgYWN0aW9uLCBpbmNsdWRpbmcgYW4gb3B0aW9uYWwgY29uZmlybWF0aW9uIG1lc3NhZ2UuXG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgUWRQYWdlQ2FuY2VsQWN0aW9uIHtcbiAgLyoqXG4gICAqIEBkZXNjcmlwdGlvbiBMYWJlbCBmb3IgdGhlIGNhbmNlbCBhY3Rpb24sIHVzZWQgZm9yIHRyYW5zbGF0aW9uLlxuICAgKlxuICAgKiAqIElmIG5vIGN1c3RvbSB0cmFuc2xhdGlvbiBrZXkgaXMgcHJvdmlkZWQsIGEgc3RhbmRhcmQgbGFiZWwgd2lsbCBiZSB1c2VkIGJ5IGRlZmF1bHQuXG4gICAqL1xuICBsYWJlbD86IHsgaTE4bjogc3RyaW5nIH07XG5cbiAgLyoqXG4gICAqIEBkZXNjcmlwdGlvbiBIYW5kbGVyIGZ1bmN0aW9uIHRoYXQgaXMgdHJpZ2dlcmVkIHdoZW4gdGhlIGNhbmNlbCBhY3Rpb24gaXMgZXhlY3V0ZWQuXG4gICAqL1xuICBoYW5kbGVyOiAoZm9ybVZhbHVlcz86IGFueSkgPT4gdm9pZDtcblxuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIEFuIG9wdGlvbmFsIGNvbmZpcm1hdGlvbiBtZXNzYWdlIGRpc3BsYXllZCBpbiBhIGRpYWxvZyB3aGVuIHRoZSB1c2VyIGF0dGVtcHRzIHRvIGNhbmNlbCB0aGUgb3BlcmF0aW9uLCB3YXJuaW5nIHRoYXQgYWxsIGNoYW5nZXMgd2lsbCBiZSBkaXNjYXJkZWQuXG4gICAqIElmIG5vIGN1c3RvbSBtZXNzYWdlIGlzIHByb3ZpZGVkLCBhIHN0YW5kYXJkIG1lc3NhZ2Ugd2lsbCBiZSBzaG93biBieSBkZWZhdWx0LlxuICAgKlxuICAgKiAqIFRoZSBjYW5jZWxsYXRpb24gcHJvY2VzcyBjaGVja3Mgd2hldGhlciB0aGVyZSBhcmUgdW5zYXZlZCBjaGFuZ2VzIGluIHRoZSBmb3JtLiBJZiB0aGVyZSBhcmUgY2hhbmdlcywgdGhlIGRpYWxvZyB3aWxsIGFwcGVhci5cbiAgICpcbiAgICogKiBJZiBubyBjaGFuZ2VzIGFyZSBkZXRlY3RlZCwgdGhlIGNhbmNlbGxhdGlvbiBwcm9jZWVkcyB3aXRob3V0IHNob3dpbmcgdGhlIGNvbmZpcm1hdGlvbiBkaWFsb2cuXG4gICAqL1xuICBjb25maXJtYXRpb25NZXNzYWdlPzogeyBpMThuOiBzdHJpbmcgfTtcbn1cblxuLyoqXG4gKiBAZGVzY3JpcHRpb24gSW50ZXJmYWNlIGZvciB0aGUgc3VibWl0IGFjdGlvbi5cbiAqL1xuZXhwb3J0IGludGVyZmFjZSBRZFBhZ2VTdWJtaXRBY3Rpb24ge1xuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIExhYmVsIGZvciB0aGUgc3VibWl0IGFjdGlvbiwgdXNlZCBmb3IgdHJhbnNsYXRpb24uXG4gICAqXG4gICAqICogSWYgbm8gY3VzdG9tIHRyYW5zbGF0aW9uIGtleSBpcyBwcm92aWRlZCwgYSBzdGFuZGFyZCBsYWJlbCB3aWxsIGJlIHVzZWQgYnkgZGVmYXVsdC5cbiAgICovXG4gIGxhYmVsPzogeyBpMThuOiBzdHJpbmcgfTtcblxuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIEhhbmRsZXIgZnVuY3Rpb24gdGhhdCBpcyB0cmlnZ2VyZWQgd2hlbiB0aGUgc3VibWl0IGFjdGlvbiBpcyBleGVjdXRlZC5cbiAgICovXG4gIGhhbmRsZXI6IChmb3JtVmFsdWVzPzogYW55KSA9PiB2b2lkO1xuXG4gIC8qKlxuICAgKiBAZGVzY3JpcHRpb24gQnkgZGVmYXVsdCwgdGhlIHZpc2liaWxpdHkgb2YgdGhlIHN1Ym1pdCBidXR0b24gZGVwZW5kcyBvbiB0aGUgcGFnZSB0eXBlIGFuZCB0aGUgb3BlcmF0aW9uIG1vZGUuXG4gICAqIFRvIGNvbXBsZXRlbHkgaGlkZSB0aGUgc3VibWl0IGJ1dHRvbiwgeW91IGNhbiBzZXQgdGhpcyBpc0hpZGRlbiBmbGFnLlxuICAgKlxuICAgKiBAZGVmYXVsdCBmYWxzZVxuICAgKi9cbiAgaXNIaWRkZW4/OiBib29sZWFuO1xufVxuXG4vKipcbiAqIEBkZXNjcmlwdGlvbiBJbnRlcmZhY2UgZm9yIHRoZSBlZGl0IGFjdGlvbi5cbiAqL1xuZXhwb3J0IGludGVyZmFjZSBRZFBhZ2VFZGl0QWN0aW9uIHtcbiAgLyoqXG4gICAqIEBkZXNjcmlwdGlvbiBMYWJlbCBmb3IgdGhlIGVkaXQgYWN0aW9uLCB1c2VkIGZvciB0cmFuc2xhdGlvbi5cbiAgICpcbiAgICogKiBJZiBubyBjdXN0b20gdHJhbnNsYXRpb24ga2V5IGlzIHByb3ZpZGVkLCBhIHN0YW5kYXJkIGxhYmVsIHdpbGwgYmUgdXNlZCBieSBkZWZhdWx0LlxuICAgKi9cbiAgbGFiZWw/OiB7IGkxOG46IHN0cmluZyB9O1xuXG4gIC8qKlxuICAgKiBAZGVzY3JpcHRpb24gSGFuZGxlciBmdW5jdGlvbiB0aGF0IGlzIHRyaWdnZXJlZCB3aGVuIHRoZSBlZGl0IGFjdGlvbiBpcyBleGVjdXRlZC5cbiAgICovXG4gIGhhbmRsZXI6IChmb3JtVmFsdWVzPzogYW55KSA9PiB2b2lkO1xufVxuXG4vKipcbiAqIEBkZXNjcmlwdGlvbiBJbnRlcmZhY2UgZm9yIHRoZSBkZWxldGUgYWN0aW9uLlxuICpcbiAqICogVGhpcyBhY3Rpb24gaXMgcmVwcmVzZW50ZWQgYXMgYW4gaWNvbiwgc28gaXQgZG9lcyBub3QgcmVxdWlyZSBhIGxhYmVsLlxuICovXG5leHBvcnQgaW50ZXJmYWNlIFFkUGFnZURlbGV0ZUFjdGlvbiB7XG4gIC8qKlxuICAgKiBAZGVzY3JpcHRpb24gSGFuZGxlciBmdW5jdGlvbiB0aGF0IGlzIHRyaWdnZXJlZCB3aGVuIHRoZSBkZWxldGUgYWN0aW9uIGlzIGV4ZWN1dGVkLlxuICAgKi9cbiAgaGFuZGxlcjogKGZvcm1WYWx1ZXM/OiBhbnkpID0+IHZvaWQ7XG59XG5cbi8qKlxuICogQGRlc2NyaXB0aW9uIEludGVyZmFjZSBmb3IgdGhlIGFyY2hpdmUgYWN0aW9uLlxuICpcbiAqICogVGhpcyBhY3Rpb24gaXMgcmVwcmVzZW50ZWQgYXMgYW4gaWNvbiwgc28gaXQgZG9lcyBub3QgcmVxdWlyZSBhIGxhYmVsLlxuICovXG5leHBvcnQgaW50ZXJmYWNlIFFkUGFnZUFyY2hpdmVBY3Rpb24ge1xuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIEhhbmRsZXIgZnVuY3Rpb24gdGhhdCBpcyB0cmlnZ2VyZWQgd2hlbiB0aGUgYXJjaGl2ZSBhY3Rpb24gaXMgZXhlY3V0ZWQuXG4gICAqL1xuICBoYW5kbGVyOiAoZm9ybVZhbHVlcz86IGFueSkgPT4gdm9pZDtcbn1cbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnZS1jb250cm9sLXBhbmVsLWNvbmZpZy5pbnRlcmZhY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL3FkLXVpL3NyYy9saWIvcGFnZS9tb2RlbC9wYWdlLWNvbnRyb2wtcGFuZWwtY29uZmlnLmludGVyZmFjZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBAZGVzY3JpcHRpb24gQ29uZmlndXJhdGlvbiBvZiB0aGUgUGFnZUNvbnRyb2xQYW5lbC5cbiAqL1xuZXhwb3J0IGludGVyZmFjZSBRZFBhZ2VDb250cm9sUGFuZWxDb25maWcge1xuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIFRpdGxlIG9mIHRoZSBwYWdlIGNvbnRyb2wgcGFuZWwuXG4gICAqL1xuICB0aXRsZToge1xuICAgIGkxOG46IHN0cmluZztcbiAgfTtcblxuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIERldGVybWluZXMgaWYgdGhlIGNvbnRyb2wgcGFuZWwgaXMgaGlkZGVuLlxuICAgKlxuICAgKiBAZGVmYXVsdCBmYWxzZVxuICAgKi9cbiAgaXNIaWRkZW4/OiBib29sZWFuO1xuXG4gIC8qKlxuICAgKiBAZGVzY3JpcHRpb24gU2V0IGNvbnRyb2wgcGFuZWwgd2lkdGhcbiAgICpcbiAgICogQGRlZmF1bHQgbmFycm93XG4gICAqL1xuICB3aWR0aD86ICduYXJyb3cnIHwgJ2Jyb2FkJztcbn1cbiJdfQ==
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Enum for the types of footer actions.
|
|
3
|
+
*/
|
|
4
|
+
export var QdFooterActionType;
|
|
5
|
+
(function (QdFooterActionType) {
|
|
6
|
+
QdFooterActionType[QdFooterActionType["Primary"] = 0] = "Primary";
|
|
7
|
+
QdFooterActionType[QdFooterActionType["Secondary"] = 1] = "Secondary";
|
|
8
|
+
})(QdFooterActionType || (QdFooterActionType = {}));
|
|
9
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnZS1mb290ZXItYWN0aW9uLmludGVyZmFjZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcWQtdWkvc3JjL2xpYi9wYWdlL21vZGVsL3BhZ2UtZm9vdGVyLWFjdGlvbi5pbnRlcmZhY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBK0NBOztHQUVHO0FBQ0gsTUFBTSxDQUFOLElBQVksa0JBR1g7QUFIRCxXQUFZLGtCQUFrQjtJQUM1QixpRUFBTyxDQUFBO0lBQ1AscUVBQVMsQ0FBQTtBQUNYLENBQUMsRUFIVyxrQkFBa0IsS0FBbEIsa0JBQWtCLFFBRzdCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgUWRCdXR0b25BZGRpdGlvbmFsSW5mbyB9IGZyb20gJy4uLy4uL2J1dHRvbi9tb2RlbC9idXR0b24tY29uZmlnJztcblxuLyoqXG4gKiBUeXBlIGZvciB0aGUga2V5cyBvZiBmb290ZXIgYWN0aW9ucy5cbiAqL1xuZXhwb3J0IHR5cGUgUWRGb290ZXJBY3Rpb25LZXkgPSAnc2F2ZURyYWZ0JyB8ICdwcmV2aW91cycgfCAnbmV4dCcgfCAnY2FuY2VsJyB8ICdzdWJtaXQnO1xuXG4vKipcbiAqIERlZmluZSB0aGUgdHlwZXMgZm9yIHRoZSBmb290ZXIgYWN0aW9uIGtleXMsIGV4Y2x1ZGluZyBTdGVwcGVyIGFjdGlvbnMuXG4gKi9cbmV4cG9ydCB0eXBlIFFkQ3JlYXRlRm9vdGVyQWN0aW9uS2V5ID0gRXhjbHVkZTxRZEZvb3RlckFjdGlvbktleSwgJ3ByZXZpb3VzJyB8ICduZXh0Jz47XG5cbi8qKlxuICogSW50ZXJmYWNlIHRoYXQgZGVzY3JpYmVzIHRoZSBjb25maWd1cmF0aW9uIG9mIGEgZm9vdGVyIGFjdGlvbi5cbiAqL1xuZXhwb3J0IGludGVyZmFjZSBRZFBhZ2VGb290ZXJBY3Rpb24ge1xuICAvKipcbiAgICogVGhlIGludGVybmF0aW9uYWxpemVkIHRpdGxlIG9mIHRoZSBhY3Rpb24uXG4gICAqL1xuICB0aXRsZUkxOG46IHN0cmluZztcblxuICAvKipcbiAgICogVGhlIHR5cGUgb2YgdGhlIGFjdGlvbiAoZS5nLiwgUHJpbWFyeSBvciBTZWNvbmRhcnkpLlxuICAgKi9cbiAgdHlwZTogUWRGb290ZXJBY3Rpb25UeXBlO1xuXG4gIC8qKlxuICAgKiBUaGUgZnVuY3Rpb24gdG8gYmUgY2FsbGVkIHdoZW4gdGhlIGFjdGlvbiBpcyB0cmlnZ2VyZWQuXG4gICAqL1xuICBoYW5kbGVyOiAoZm9ybVZhbHVlcz86IGFueSkgPT4gdm9pZDtcblxuICAvKipcbiAgICogSW5kaWNhdGVzIHdoZXRoZXIgdGhlIGFjdGlvbiBpcyB2aXNpYmxlLlxuICAgKi9cbiAgaXNWaXNpYmxlPzogYm9vbGVhbjtcblxuICAvKipcbiAgICogSW5kaWNhdGVzIHdoZXRoZXIgdGhlIGFjdGlvbiBpcyBkaXNhYmxlZCAob3B0aW9uYWwpLlxuICAgKi9cbiAgaXNEaXNhYmxlZD86IGJvb2xlYW47XG5cbiAgLyoqXG4gICAqIEFsbG93cyB0byBjb25maWd1cmUgYWRkaXRpb25hbCBpbmZvcm1hdGlvbiBmb3IgdGhlIGFjdGlvbi5cbiAgICovXG4gIGFkZGl0aW9uYWxJbmZvPzogUWRCdXR0b25BZGRpdGlvbmFsSW5mbztcbn1cblxuLyoqXG4gKiBFbnVtIGZvciB0aGUgdHlwZXMgb2YgZm9vdGVyIGFjdGlvbnMuXG4gKi9cbmV4cG9ydCBlbnVtIFFkRm9vdGVyQWN0aW9uVHlwZSB7XG4gIFByaW1hcnksXG4gIFNlY29uZGFyeVxufVxuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnZS1oZWFkZXItZmFjZXQuaW50ZXJmYWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9xZC11aS9zcmMvbGliL3BhZ2UvbW9kZWwvcGFnZS1oZWFkZXItZmFjZXQuaW50ZXJmYWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBRZENoaXBDb2xvciB9IGZyb20gJy4uLy4uL2NoaXBzL2NoaXBzLm1vZHVsZSc7XG5cbmV4cG9ydCB0eXBlIFFkRmFjZXRPcHRpb25TaW5nbGVTZWxlY3QgPSB7XG4gIHR5cGU6ICdzaW5nbGVTZWxlY3QnO1xuICBhY3Rpb24/OiB7XG4gICAgaGFuZGxlcjogKCkgPT4gdm9pZDtcbiAgICBsYWJlbDoge1xuICAgICAgaTE4bjogc3RyaW5nO1xuICAgIH07XG4gIH07XG59O1xuXG5leHBvcnQgdHlwZSBRZEZhY2V0T3B0aW9uTXVsdGlTZWxlY3QgPSB7XG4gIHR5cGU6ICdtdWx0aVNlbGVjdCc7XG4gIGFjdGlvbj86IHtcbiAgICBoYW5kbGVyOiAoKSA9PiB2b2lkO1xuICAgIGxhYmVsOiB7XG4gICAgICBpMThuOiBzdHJpbmc7XG4gICAgfTtcbiAgfTtcbn07XG5cbmV4cG9ydCB0eXBlIFFkRmFjZXRPcHRpb25zU3RhdHVzID0ge1xuICB0eXBlOiAnc3RhdHVzJztcblxuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIFdpdGggdGhpcyBtYXBwaW5nLCB5b3UgY2FuIGRlZmluZSB0aGUgY2hpcCBjb2xvciBmb3IgZWFjaCB2YWx1ZS4gXCJ2YWx1ZVwiIGRlZmluZXMgdGhlIHRyYW5zbGF0aW9uIGtleSB0byBlbnN1cmUgbXVsdGlsaW5ndWFsIHN1cHBvcnQuXG4gICAqL1xuICBzdGF0ZTogeyBbdmFsdWU6IHN0cmluZ106IFFkQ2hpcENvbG9yIH07XG5cbiAgLyoqXG4gICAqIEBkZXNjcmlwdGlvbiBiYXNlIHRyYW5zbGF0aW9uIGtleShzKSB0aGF0IGFyZSBhZGRlZCBpbiBmcm9udCBvZiB0aGUgdmFsdWUgZm9yIHRyYW5zbGF0aW9uXG4gICAqXG4gICAqICogQGV4YW1wbGU6IFwiaTE4bi5wYWdlLmZhY2V0LnN0YXR1c1wiXG4gICAqXG4gICAqIElmIG5vbmUgZXhpc3RzLCB0aGUgdmFsdWUgaXMgcmVuZGVyZWQgd2l0aG91dCB0cmFuc2xhdGlvbi5cbiAgICovXG4gIGkxOG5zPzogc3RyaW5nO1xufTtcblxuZXhwb3J0IHR5cGUgUWRGYWNldE9wdGlvbnNWYWx1ZSA9IHtcbiAgdHlwZTogJ3ZhbHVlJztcblxuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIGJhc2UgdHJhbnNsYXRpb24ga2V5KHMpIHRoYXQgYXJlIGFkZGVkIGluIGZyb250IG9mIHRoZSB2YWx1ZSBmb3IgdHJhbnNsYXRpb25cbiAgICpcbiAgICogKiBAZXhhbXBsZTogXCJpMThuLnBhZ2UuZmFjZXQudmFsdWVcIlxuICAgKlxuICAgKiBJZiBub25lIGV4aXN0cywgdGhlIHZhbHVlIGlzIHJlbmRlcmVkIHdpdGhvdXQgdHJhbnNsYXRpb24uXG4gICAqL1xuICBpMThucz86IHN0cmluZztcbn07XG5cbmV4cG9ydCB0eXBlIFFkRmFjZXRPcHRpb25zRGF0ZSA9IHtcbiAgdHlwZTogJ2RhdGUnO1xuICBzaG93SWNvbj86IGJvb2xlYW47XG59O1xuXG4vKipcbiAqIEBkZXNjcmlwdGlvbiBJbnRlcmZhY2UgZm9yIHRoZSB0eXBlIGFuZCBwb3NzaWJseSBvdGhlciBvcHRpb25zIG9mIGEgZmFjZXRcbiAqL1xuZXhwb3J0IHR5cGUgUWRGYWNldE9wdGlvbnMgPVxuICB8IFFkRmFjZXRPcHRpb25zU3RhdHVzXG4gIHwgUWRGYWNldE9wdGlvbnNWYWx1ZVxuICB8IHsgdHlwZTogJ2NyaXRpY2FsaXR5JyB9XG4gIHwgeyB0eXBlOiAncmVmZXJlbmNlcycgfVxuICB8IHsgdHlwZTogJ3Byb2dyZXNzJyB9XG4gIHwgUWRGYWNldE9wdGlvbnNEYXRlXG4gIHwgUWRGYWNldE9wdGlvblNpbmdsZVNlbGVjdFxuICB8IFFkRmFjZXRPcHRpb25NdWx0aVNlbGVjdDtcblxuLyoqXG4gKiBAZGVzY3JpcHRpb24gSW50ZXJmYWNlIGZvciBmYWNldHMgaW4gdGhlIFBPSFxuICovXG5leHBvcnQgaW50ZXJmYWNlIFFkUGFnZUhlYWRlckZhY2V0Q29uZmlnPFQ+IHtcbiAgLyoqXG4gICAqIEBkZXNjcmlwdGlvbiBLZXkgb2YgcHJvcGVydHkgaW4gcmVzb2x2ZWQgcGFnZSBvYmplY3QgZGF0YVxuICAgKi9cbiAgbmFtZTogRXh0cmFjdDxrZXlvZiBULCBzdHJpbmc+O1xuXG4gIC8qKlxuICAgKiBAZGVzY3JpcHRpb24gRGVzY3JpcHRpb24gZm9yIHRoZSBzcGVjaWZpYyBoZWFkZXIgZmFjZXRcbiAgICovXG4gIGxhYmVsOiB7XG4gICAgLyoqXG4gICAgICogQGRlc2NyaXB0aW9uIGkxOG4gc3RyaW5nIGZvciB0aGUgZGVzY3JpcHRpb25cbiAgICAgKi9cbiAgICBpMThuOiBzdHJpbmc7XG4gIH07XG5cbiAgLyoqXG4gICAqIEBkZXNjcmlwdGlvbiBEZWZpbmUgdGhlIHR5cGUgb2YgZmFjZXQgYW5kIHBvc3NpYmx5IG90aGVyIG9wdGlvbnNcbiAgICpcbiAgICogQGV4YW1wbGUgeyB0eXBlOiAnc3RhdHVzJywgc3RhdHVzOiB7IGFjY2VwdGVkOiAnc3VjY2Vzcyd9IH1cbiAgICovXG4gIG9wdGlvbnM6IFFkRmFjZXRPcHRpb25zO1xufVxuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnZS1pbmZvLWJhbm5lci5pbnRlcmZhY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL3FkLXVpL3NyYy9saWIvcGFnZS9tb2RlbC9wYWdlLWluZm8tYmFubmVyLmludGVyZmFjZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGludGVyZmFjZSBRZFBhZ2VJbmZvQmFubmVyQ29uZmlnIHtcbiAgLyoqXG4gICAqIERlZmluZXMgdGhlIHBhZ2UgaW5mbyBiYW5uZXIgdHlwZS4gRWFjaCB0eXBlIGhhcyBhIHNwZWNpZmljIGljb24gYW5kIGNvbG9yLlxuICAgKi9cbiAgdHlwZTogUWRQYWdlSW5mb0Jhbm5lclR5cGU7XG5cbiAgLyoqXG4gICAqIFRyYW5zbGF0aW9uIGtleSBmb3IgdGhlIGluZm8gYmFubmVyIG1lc3NhZ2VcbiAgICovXG4gIGkxOG46IFFkUGFnZUluZm9CYW5uZXJUcmFuc2xhdGlvbjtcblxuICAvKipcbiAgICogT3B0aW9uYWxseSB5b3UgY2FuIGRlZmluZSBhIHRyYW5zbGF0aW9uIGtleSBmb3IgdGhlIHRpdGxlIGhlcmUuXG4gICAqL1xuICB0aXRsZT86IFFkUGFnZUluZm9CYW5uZXJUaXRsZTtcblxuICAvKipcbiAgICogT3B0aW9uYWxseSB5b3UgY2FuIGRlZmluZSBhIGxpbmsgaGVyZSB0aGF0IHdpbGwgYmUgZGlzcGxheWVkIGJlaGluZCBvciB1bmRlclxuICAgKiB0aGUgcGFnZSBpbmZvIGJhbm5lciBtZXNzYWdlLlxuICAgKi9cbiAgbGluaz86IFFkUGFnZUluZm9CYW5uZXJMaW5rO1xufVxuXG5leHBvcnQgdHlwZSBRZFBhZ2VJbmZvQmFubmVyVHlwZSA9ICdpbmZvJyB8ICd3YXJuaW5nJyB8ICdjcml0aWNhbCcgfCAncG9zaXRpdmUnO1xuZXhwb3J0IHR5cGUgUWRQYWdlSW5mb0Jhbm5lclRyYW5zbGF0aW9uID0gc3RyaW5nO1xuZXhwb3J0IHR5cGUgUWRQYWdlSW5mb0Jhbm5lclRpdGxlID0geyBpMThuOiBzdHJpbmcgfTtcbmV4cG9ydCB0eXBlIFFkUGFnZUluZm9CYW5uZXJMaW5rID0geyBpMThuOiBzdHJpbmc7IGhhbmRsZXI6ICgpID0+IHZvaWQgfTtcbiJdfQ==
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
/**
|
|
3
|
+
* Token for resolving page object data
|
|
4
|
+
*/
|
|
5
|
+
export const QD_PAGE_OBJECT_RESOLVER_TOKEN = new InjectionToken('QD_PAGE_OBJECT_RESOLVER_TOKEN');
|
|
6
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnZS1vYmplY3QtcmVzb2x2ZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL3FkLXVpL3NyYy9saWIvcGFnZS9tb2RlbC9wYWdlLW9iamVjdC1yZXNvbHZlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRS9DOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sNkJBQTZCLEdBQUcsSUFBSSxjQUFjLENBQVMsK0JBQStCLENBQUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE9ic2VydmFibGUgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IEluamVjdGlvblRva2VuIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbi8qKlxuICogVG9rZW4gZm9yIHJlc29sdmluZyBwYWdlIG9iamVjdCBkYXRhXG4gKi9cbmV4cG9ydCBjb25zdCBRRF9QQUdFX09CSkVDVF9SRVNPTFZFUl9UT0tFTiA9IG5ldyBJbmplY3Rpb25Ub2tlbjxzdHJpbmc+KCdRRF9QQUdFX09CSkVDVF9SRVNPTFZFUl9UT0tFTicpO1xuXG4vKipcbiAqIFJlcHJlc2VudHMgYSBkYXRhIHJlc29sdmVyIGZvciBtYW5hZ2luZyBwYWdlIG9iamVjdCBkYXRhXG4gKlxuICogVG8gdHJpZ2dlciB0aGUgcmVzb2x2ZXIsIHRoZSBBbmd1bGFyIFJvdXRlciBtdXN0IGJlIHV0aWxpemVkLiBUaGUgcmVzb2x2ZXIgbGlzdGVucyB0byByb3V0aW5nIGV2ZW50cyBhbmQgZXhlY3V0ZXMgaXRzIGxvZ2ljIGJhc2VkIG9uIHRoZSBkZWZpbmVkIGNvbmRpdGlvbnMgKHNlZSBgdHJpZ2dlck9uYCBpbiB0aGUgY29uZmlndXJhdGlvbikuXG4gKlxuICogKiBAdGVtcGxhdGUgVCAtIFQgcmVwcmVzZW50cyB0aGUgZW50aXJlIG9iamVjdCBtb2RlbFxuICovXG5leHBvcnQgaW50ZXJmYWNlIFFkUGFnZU9iamVjdFJlc29sdmVyPFQgZXh0ZW5kcyBvYmplY3Q+IHtcbiAgLyoqXG4gICAqIEBkZXNjcmlwdGlvbiBTZXRzIHRoZSBjb25maWd1cmF0aW9uIGZvciB0aGUgcmVzb2x2ZXIuXG4gICAqL1xuICBjb25maWc/OiBRZFBhZ2VPYmplY3RSZXNvbHZlckNvbmZpZztcblxuICAvKipcbiAgICogQGRlc2NyaXB0aW9uIFJlc29sdmVzIHRoZSBkYXRhIGZvciB0aGUgUGFnZSBPYmplY3QgSGVhZGVyLlxuICAgKi9cbiAgcmVzb2x2ZSgpOiBPYnNlcnZhYmxlPFQ+O1xuXG4gIC8qKlxuICAgKiBVcGRhdGVzIHRoZSBtZXRhZGF0YSBvZiB0aGUgcGFnZSBvYmplY3QgbW9kZWwuIENhbiBiZSBpbnZva2VkIHdpdGggYW4gYWN0aW9uIGFuZCBhY2NlcHRzIGEgcGFydGlhbCBtZXRhZGF0YSBvYmplY3QuXG4gICAqL1xuICB1cGRhdGVNZXRhZGF0YT8obWV0YWRhdGE6IFBhcnRpYWw8VD4pOiB2b2lkO1xufVxuXG4vKipcbiAqICBDb25maWcgZm9yIHRoZSBRZFBhZ2VPYmplY3RSZXNvbHZlclxuICovXG5leHBvcnQgaW50ZXJmYWNlIFFkUGFnZU9iamVjdFJlc29sdmVyQ29uZmlnIHtcbiAgLyoqXG4gICAqIFNwZWNpZmllcyB0aGUgY29uZGl0aW9ucyB0aGF0IGRldGVybWluZSB3aGVuIHRoZSByZXNvbHZlciBzaG91bGQgYmUgdHJpZ2dlcmVkLlxuICAgKiBUaGlzIHByb3BlcnR5IGNhbiBiZSBlc3BlY2lhbGx5IHVzZWZ1bCB3aGVuIG11bHRpcGxlIHJvdXRlIGV2ZW50cyBsZWFkIHRvIHRoZSBzYW1lIGNvbXBvbmVudCBpbnN0YW5jZS5cbiAgICpcbiAgICogLSAqKmFsd2F5cyoqOiBUaGUgcmVzb2x2ZXIgcnVucyBvbiBldmVyeSBuYXZpZ2F0aW9uIGV2ZW50LCByZWdhcmRsZXNzIG9mIGFueSBjaGFuZ2VzLlxuICAgKiAtICoqcGFyYW1zQ2hhbmdlKio6IFRoZSByZXNvbHZlciBydW5zIHdoZW4gcm91dGUgcGFyYW1ldGVycyAoZS5nLiwgYGlkYCkgY2hhbmdlLlxuICAgKiAtICoqcGF0aFBhcmFtc0NoYW5nZSoqOiBUaGUgcmVzb2x2ZXIgcnVucyB3aGVuIHRoZSBwYXRoIHNlZ21lbnRzIGluIHRoZSByb3V0ZSBhcmUgdXBkYXRlZC5cbiAgICogLSAqKnF1ZXJ5UGFyYW1zQ2hhbmdlKio6IFRoZSByZXNvbHZlciBydW5zIHdoZW4gcXVlcnkgcGFyYW1ldGVycyAoZS5nLiwgYD9maWx0ZXI9YWN0aXZlYCkgY2hhbmdlLlxuICAgKiAtICoqcGFyYW1zT3JRdWVyeVBhcmFtc0NoYW5nZSoqOiBUaGUgcmVzb2x2ZXIgcnVucyB3aGVuIGVpdGhlciByb3V0ZSBwYXJhbWV0ZXJzIG9yIHF1ZXJ5IHBhcmFtZXRlcnMgY2hhbmdlLlxuICAgKiAtICoqcGF0aFBhcmFtc09yUXVlcnlQYXJhbXNDaGFuZ2UqKjogVGhlIHJlc29sdmVyIHJ1bnMgd2hlbiBlaXRoZXIgdGhlIHBhdGggc2VnbWVudHMgb3IgcXVlcnkgcGFyYW1ldGVycyBhcmUgdXBkYXRlZC5cbiAgICpcbiAgICogLSBUaGlzIGFsbG93cyBkZXZlbG9wZXJzIHRvIGRlZmluZSBmbGV4aWJsZSBydWxlcyBmb3IgdHJpZ2dlcmluZyB0aGUgcmVzb2x2ZXIgZHVyaW5nIG5hdmlnYXRpb24uXG4gICAqXG4gICAqIC0gQGRlZmF1bHQgJ3BhdGhQYXJhbXNDaGFuZ2UgJ1xuICAgKi9cbiAgdHJpZ2dlck9uPzpcbiAgICB8ICdhbHdheXMnXG4gICAgfCAncGFyYW1zQ2hhbmdlJ1xuICAgIHwgJ3BhdGhQYXJhbXNDaGFuZ2UnXG4gICAgfCAncXVlcnlQYXJhbXNDaGFuZ2UnXG4gICAgfCAncGFyYW1zT3JRdWVyeVBhcmFtc0NoYW5nZSdcbiAgICB8ICdwYXRoUGFyYW1zT3JRdWVyeVBhcmFtc0NoYW5nZSc7XG59XG4iXX0=
|
package/esm2022/lib/page/object-header/context-select-dialog/context-select-dialog.component.mjs
ADDED
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import { DialogRef } from '@angular/cdk/dialog';
|
|
2
|
+
import { Component } from '@angular/core';
|
|
3
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
4
|
+
import { QdSearchService } from '../../../search/services/search.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "@angular/cdk/dialog";
|
|
7
|
+
import * as i2 from "@ngx-translate/core";
|
|
8
|
+
import * as i3 from "../../../search/services/search.service";
|
|
9
|
+
import * as i4 from "@angular/common";
|
|
10
|
+
import * as i5 from "../../../button/button/button.component";
|
|
11
|
+
import * as i6 from "../../../button/directives/button.directives";
|
|
12
|
+
import * as i7 from "../../../dialog/action/dialog-action.component";
|
|
13
|
+
import * as i8 from "../../../dialog/dialog.component";
|
|
14
|
+
import * as i9 from "../../../table/table.component";
|
|
15
|
+
import * as i10 from "../../../search/search.component";
|
|
16
|
+
export class QdContextSelectDialogComponent {
|
|
17
|
+
dialogRef;
|
|
18
|
+
translateService;
|
|
19
|
+
searchService;
|
|
20
|
+
data;
|
|
21
|
+
get tableConfig() {
|
|
22
|
+
return {
|
|
23
|
+
selection: {
|
|
24
|
+
type: this.data.config.type === 'single' ? 'singleSelect' : 'multiSelect',
|
|
25
|
+
selectedRows: Array.isArray(this.data.selection)
|
|
26
|
+
? this.data.selection.map(selected => selected.value)
|
|
27
|
+
: this.data.selection?.value
|
|
28
|
+
? [this.data.selection.value]
|
|
29
|
+
: []
|
|
30
|
+
},
|
|
31
|
+
columns: [
|
|
32
|
+
{
|
|
33
|
+
type: 'text',
|
|
34
|
+
column: this.translateService.instant(this.data.config.label.i18n)
|
|
35
|
+
}
|
|
36
|
+
]
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
tableData;
|
|
40
|
+
get searchConfig() {
|
|
41
|
+
return {
|
|
42
|
+
clearable: true,
|
|
43
|
+
placeholder: this.data.config.searchPlaceholder
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
_selected = [];
|
|
47
|
+
constructor(dialogRef, translateService, searchService) {
|
|
48
|
+
this.dialogRef = dialogRef;
|
|
49
|
+
this.translateService = translateService;
|
|
50
|
+
this.searchService = searchService;
|
|
51
|
+
}
|
|
52
|
+
ngOnInit() {
|
|
53
|
+
this.data = this.dialogRef.config.data;
|
|
54
|
+
this._selected = Array.isArray(this.data.selection) ? this.data.selection : [this.data.selection];
|
|
55
|
+
this.setData(this.data.config.options);
|
|
56
|
+
this.initSearchFiltering();
|
|
57
|
+
}
|
|
58
|
+
select(rows) {
|
|
59
|
+
this._selected = rows.map(row => this.data.config.options.find(option => option.value === row.uid));
|
|
60
|
+
}
|
|
61
|
+
cancel() {
|
|
62
|
+
this.dialogRef.close();
|
|
63
|
+
}
|
|
64
|
+
confirm() {
|
|
65
|
+
this.dialogRef.close({ selected: this.data.config.type === 'single' ? this._selected[0] : this._selected });
|
|
66
|
+
}
|
|
67
|
+
setData(options) {
|
|
68
|
+
this.tableData = options.map(option => ({
|
|
69
|
+
[this.translateService.instant(this.data.config.label.i18n)]: this.translateService.instant(option.label.i18n),
|
|
70
|
+
uid: option.value
|
|
71
|
+
}));
|
|
72
|
+
}
|
|
73
|
+
initSearchFiltering() {
|
|
74
|
+
if (!this.data.config.hasSearch)
|
|
75
|
+
return;
|
|
76
|
+
this.searchService.searchPostBody$.subscribe(searchPostBody => {
|
|
77
|
+
if (!searchPostBody.phrase) {
|
|
78
|
+
this.setData(this.data.config.options);
|
|
79
|
+
return;
|
|
80
|
+
}
|
|
81
|
+
const searchPhrase = searchPostBody.phrase.toLowerCase();
|
|
82
|
+
this.setData(this.data.config.options.filter(option => {
|
|
83
|
+
const translatedLabel = this.translateService.instant(option.label.i18n).toLowerCase();
|
|
84
|
+
return (translatedLabel.includes(searchPhrase) || this._selected.some(selected => selected.value === option.value));
|
|
85
|
+
}));
|
|
86
|
+
});
|
|
87
|
+
}
|
|
88
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: QdContextSelectDialogComponent, deps: [{ token: i1.DialogRef }, { token: i2.TranslateService }, { token: i3.QdSearchService }], target: i0.ɵɵFactoryTarget.Component });
|
|
89
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: QdContextSelectDialogComponent, selector: "qd-context-select-dialog", providers: [QdSearchService], ngImport: i0, template: "<qd-dialog>\n <div class=\"search\" *ngIf=\"data.config.hasSearch\">\n <qd-search [configData]=\"searchConfig\"></qd-search>\n </div>\n <qd-table\n [data]=\"tableData\"\n [config]=\"tableConfig\"\n (selectedRowsOutput)=\"select($event)\"\n data-test-id=\"context-select-dialog-table\"\n ></qd-table>\n <qd-dialog-action>\n <button qdButton qdButtonGhost color=\"secondary\" (click)=\"cancel()\">\n {{ \"i18n.qd.context.dialog.cancelButtonLabel\" | translate }}\n </button>\n <button qdButton (click)=\"confirm()\" data-test-id=\"context-select-dialog-submit\">\n {{ \"i18n.qd.context.dialog.confirmButtonLabel\" | translate }}\n </button>\n </qd-dialog-action>\n</qd-dialog>\n", styles: [".search{display:flex;justify-content:end;padding-bottom:.9375rem}\n"], dependencies: [{ 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.QdButtonGhostDirective, selector: "button[qdButtonGhost], a[qdButtonGhost]" }, { kind: "component", type: i7.QdDialogActionComponent, selector: "qd-dialog-action" }, { kind: "component", type: i8.QdDialogComponent, selector: "qd-dialog" }, { kind: "component", type: i9.QdTableComponent, selector: "qd-table", inputs: ["config", "data", "data-test-id"], outputs: ["secondaryActionOutput", "selectedRowsOutput", "emptyStateActionOutput"] }, { kind: "component", type: i10.QdSearchComponent, selector: "qd-search", inputs: ["configData"] }, { kind: "pipe", type: i2.TranslatePipe, name: "translate" }] });
|
|
90
|
+
}
|
|
91
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: QdContextSelectDialogComponent, decorators: [{
|
|
92
|
+
type: Component,
|
|
93
|
+
args: [{ selector: 'qd-context-select-dialog', providers: [QdSearchService], template: "<qd-dialog>\n <div class=\"search\" *ngIf=\"data.config.hasSearch\">\n <qd-search [configData]=\"searchConfig\"></qd-search>\n </div>\n <qd-table\n [data]=\"tableData\"\n [config]=\"tableConfig\"\n (selectedRowsOutput)=\"select($event)\"\n data-test-id=\"context-select-dialog-table\"\n ></qd-table>\n <qd-dialog-action>\n <button qdButton qdButtonGhost color=\"secondary\" (click)=\"cancel()\">\n {{ \"i18n.qd.context.dialog.cancelButtonLabel\" | translate }}\n </button>\n <button qdButton (click)=\"confirm()\" data-test-id=\"context-select-dialog-submit\">\n {{ \"i18n.qd.context.dialog.confirmButtonLabel\" | translate }}\n </button>\n </qd-dialog-action>\n</qd-dialog>\n", styles: [".search{display:flex;justify-content:end;padding-bottom:.9375rem}\n"] }]
|
|
94
|
+
}], ctorParameters: () => [{ type: i1.DialogRef }, { type: i2.TranslateService }, { type: i3.QdSearchService }] });
|
|
95
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udGV4dC1zZWxlY3QtZGlhbG9nLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcWQtdWkvc3JjL2xpYi9wYWdlL29iamVjdC1oZWFkZXIvY29udGV4dC1zZWxlY3QtZGlhbG9nL2NvbnRleHQtc2VsZWN0LWRpYWxvZy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3FkLXVpL3NyYy9saWIvcGFnZS9vYmplY3QtaGVhZGVyL2NvbnRleHQtc2VsZWN0LWRpYWxvZy9jb250ZXh0LXNlbGVjdC1kaWFsb2cuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBQ2hELE9BQU8sRUFBRSxTQUFTLEVBQVUsTUFBTSxlQUFlLENBQUM7QUFDbEQsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFHdkQsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHlDQUF5QyxDQUFDOzs7Ozs7Ozs7Ozs7QUFnQjFFLE1BQU0sT0FBTyw4QkFBOEI7SUFxQy9CO0lBQ0E7SUFDQTtJQXRDVixJQUFJLENBR0Y7SUFFRixJQUFJLFdBQVc7UUFDYixPQUFPO1lBQ0wsU0FBUyxFQUFFO2dCQUNULElBQUksRUFBRSxJQUFJLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLEtBQUssUUFBUSxDQUFDLENBQUMsQ0FBQyxjQUFjLENBQUMsQ0FBQyxDQUFDLGFBQWE7Z0JBQ3pFLFlBQVksRUFBRSxLQUFLLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDO29CQUM5QyxDQUFDLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsR0FBRyxDQUFDLFFBQVEsQ0FBQyxFQUFFLENBQUMsUUFBUSxDQUFDLEtBQUssQ0FBQztvQkFDckQsQ0FBQyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsU0FBUyxFQUFFLEtBQUs7d0JBQzVCLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLEtBQUssQ0FBQzt3QkFDN0IsQ0FBQyxDQUFDLEVBQUU7YUFDUDtZQUNELE9BQU8sRUFBRTtnQkFDUDtvQkFDRSxJQUFJLEVBQUUsTUFBTTtvQkFDWixNQUFNLEVBQUUsSUFBSSxDQUFDLGdCQUFnQixDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDO2lCQUNuRTthQUNGO1NBQ0YsQ0FBQztJQUNKLENBQUM7SUFFRCxTQUFTLENBQXVCO0lBRWhDLElBQUksWUFBWTtRQUNkLE9BQU87WUFDTCxTQUFTLEVBQUUsSUFBSTtZQUNmLFdBQVcsRUFBRSxJQUFJLENBQUMsSUFBSyxDQUFDLE1BQU0sQ0FBQyxpQkFBaUI7U0FDakQsQ0FBQztJQUNKLENBQUM7SUFFTyxTQUFTLEdBQTRCLEVBQUUsQ0FBQztJQUVoRCxZQUNVLFNBQW1GLEVBQ25GLGdCQUFrQyxFQUNsQyxhQUE4QjtRQUY5QixjQUFTLEdBQVQsU0FBUyxDQUEwRTtRQUNuRixxQkFBZ0IsR0FBaEIsZ0JBQWdCLENBQWtCO1FBQ2xDLGtCQUFhLEdBQWIsYUFBYSxDQUFpQjtJQUNyQyxDQUFDO0lBRUosUUFBUTtRQUNOLElBQUksQ0FBQyxJQUFJLEdBQUcsSUFBSSxDQUFDLFNBQVMsQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDO1FBQ3ZDLElBQUksQ0FBQyxTQUFTLEdBQUcsS0FBSyxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxDQUFDO1FBRWxHLElBQUksQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsT0FBTyxDQUFDLENBQUM7UUFDdkMsSUFBSSxDQUFDLG1CQUFtQixFQUFFLENBQUM7SUFDN0IsQ0FBQztJQUVELE1BQU0sQ0FBQyxJQUFpQztRQUN0QyxJQUFJLENBQUMsU0FBUyxHQUFHLElBQUksQ0FBQyxHQUFHLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxFQUFFLENBQUMsTUFBTSxDQUFDLEtBQUssS0FBSyxHQUFHLENBQUMsR0FBRyxDQUFFLENBQUMsQ0FBQztJQUN2RyxDQUFDO0lBRUQsTUFBTTtRQUNKLElBQUksQ0FBQyxTQUFTLENBQUMsS0FBSyxFQUFFLENBQUM7SUFDekIsQ0FBQztJQUVELE9BQU87UUFDTCxJQUFJLENBQUMsU0FBUyxDQUFDLEtBQUssQ0FBQyxFQUFFLFFBQVEsRUFBRSxJQUFJLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLEtBQUssUUFBUSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsU0FBUyxFQUFFLENBQUMsQ0FBQztJQUM5RyxDQUFDO0lBRU8sT0FBTyxDQUFDLE9BQWdDO1FBQzlDLElBQUksQ0FBQyxTQUFTLEdBQUcsT0FBTyxDQUFDLEdBQUcsQ0FBQyxNQUFNLENBQUMsRUFBRSxDQUFDLENBQUM7WUFDdEMsQ0FBQyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsQ0FBQyxFQUFFLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxPQUFPLENBQUMsTUFBTSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUM7WUFDOUcsR0FBRyxFQUFFLE1BQU0sQ0FBQyxLQUFLO1NBQ2xCLENBQUMsQ0FBd0IsQ0FBQztJQUM3QixDQUFDO0lBRU8sbUJBQW1CO1FBQ3pCLElBQUksQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxTQUFTO1lBQUUsT0FBTztRQUV4QyxJQUFJLENBQUMsYUFBYSxDQUFDLGVBQWUsQ0FBQyxTQUFTLENBQUMsY0FBYyxDQUFDLEVBQUU7WUFDNUQsSUFBSSxDQUFDLGNBQWMsQ0FBQyxNQUFNLEVBQUUsQ0FBQztnQkFDM0IsSUFBSSxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxPQUFPLENBQUMsQ0FBQztnQkFFdkMsT0FBTztZQUNULENBQUM7WUFFRCxNQUFNLFlBQVksR0FBRyxjQUFjLENBQUMsTUFBTSxDQUFDLFdBQVcsRUFBRSxDQUFDO1lBRXpELElBQUksQ0FBQyxPQUFPLENBQ1YsSUFBSSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsT0FBTyxDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUMsRUFBRTtnQkFDdkMsTUFBTSxlQUFlLEdBQUksSUFBSSxDQUFDLGdCQUFnQixDQUFDLE9BQU8sQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBWSxDQUFDLFdBQVcsRUFBRSxDQUFDO2dCQUVuRyxPQUFPLENBQ0wsZUFBZSxDQUFDLFFBQVEsQ0FBQyxZQUFZLENBQUMsSUFBSSxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsRUFBRSxDQUFDLFFBQVEsQ0FBQyxLQUFLLEtBQUssTUFBTSxDQUFDLEtBQUssQ0FBQyxDQUMzRyxDQUFDO1lBQ0osQ0FBQyxDQUFDLENBQ0gsQ0FBQztRQUNKLENBQUMsQ0FBQyxDQUFDO0lBQ0wsQ0FBQzt1R0EzRlUsOEJBQThCOzJGQUE5Qiw4QkFBOEIsbURBRjlCLENBQUMsZUFBZSxDQUFDLDBCQ25COUIsaXRCQW1CQTs7MkZERWEsOEJBQThCO2tCQU4xQyxTQUFTOytCQUNFLDBCQUEwQixhQUd6QixDQUFDLGVBQWUsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpYWxvZ1JlZiB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9kaWFsb2cnO1xuaW1wb3J0IHsgQ29tcG9uZW50LCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFRyYW5zbGF0ZVNlcnZpY2UgfSBmcm9tICdAbmd4LXRyYW5zbGF0ZS9jb3JlJztcblxuaW1wb3J0IHsgUWRTZWFyY2hPcHRpb25zIH0gZnJvbSAnLi4vLi4vLi4vc2VhcmNoL21vZGVsL3NlYXJjaC1vcHRpb25zLmludGVyZmFjZSc7XG5pbXBvcnQgeyBRZFNlYXJjaFNlcnZpY2UgfSBmcm9tICcuLi8uLi8uLi9zZWFyY2gvc2VydmljZXMvc2VhcmNoLnNlcnZpY2UnO1xuaW1wb3J0IHsgUWRUYWJsZUNvbmZpZyB9IGZyb20gJy4uLy4uLy4uL3RhYmxlL21vZGVsL3RhYmxlLWNvbmZpZy5pbnRlcmZhY2UnO1xuaW1wb3J0IHsgUWRUYWJsZURhdGEgfSBmcm9tICcuLi8uLi8uLi90YWJsZS9tb2RlbC90YWJsZS1kYXRhLmludGVyZmFjZSc7XG5pbXBvcnQgeyBRZFRhYmxlU2VsZWN0ZWRSb3dzIH0gZnJvbSAnLi4vLi4vLi4vdGFibGUvbW9kZWwvdGFibGUtcm93LXNlbGVjdGlvbi5pbnRlcmZhY2UnO1xuaW1wb3J0IHtcbiAgUWRQYWdlQ29udGV4dENvbmZpZ011bHRpLFxuICBRZFBhZ2VDb250ZXh0Q29uZmlnU2luZ2xlLFxuICBRZFBhZ2VTZWxlY3RlZENvbnRleHRcbn0gZnJvbSAnLi4vLi4vbW9kZWwvcGFnZS1jb25maWcuaW50ZXJmYWNlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAncWQtY29udGV4dC1zZWxlY3QtZGlhbG9nJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2NvbnRleHQtc2VsZWN0LWRpYWxvZy5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2NvbnRleHQtc2VsZWN0LWRpYWxvZy5jb21wb25lbnQuc2NzcyddLFxuICBwcm92aWRlcnM6IFtRZFNlYXJjaFNlcnZpY2VdXG59KVxuZXhwb3J0IGNsYXNzIFFkQ29udGV4dFNlbGVjdERpYWxvZ0NvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG4gIGRhdGEhOiB7XG4gICAgY29uZmlnOiBRZFBhZ2VDb250ZXh0Q29uZmlnU2luZ2xlIHwgUWRQYWdlQ29udGV4dENvbmZpZ011bHRpO1xuICAgIHNlbGVjdGlvbjogUWRQYWdlU2VsZWN0ZWRDb250ZXh0IHwgUWRQYWdlU2VsZWN0ZWRDb250ZXh0W107XG4gIH07XG5cbiAgZ2V0IHRhYmxlQ29uZmlnKCk6IFFkVGFibGVDb25maWc8c3RyaW5nPiB7XG4gICAgcmV0dXJuIHtcbiAgICAgIHNlbGVjdGlvbjoge1xuICAgICAgICB0eXBlOiB0aGlzLmRhdGEuY29uZmlnLnR5cGUgPT09ICdzaW5nbGUnID8gJ3NpbmdsZVNlbGVjdCcgOiAnbXVsdGlTZWxlY3QnLFxuICAgICAgICBzZWxlY3RlZFJvd3M6IEFycmF5LmlzQXJyYXkodGhpcy5kYXRhLnNlbGVjdGlvbilcbiAgICAgICAgICA/IHRoaXMuZGF0YS5zZWxlY3Rpb24ubWFwKHNlbGVjdGVkID0+IHNlbGVjdGVkLnZhbHVlKVxuICAgICAgICAgIDogdGhpcy5kYXRhLnNlbGVjdGlvbj8udmFsdWVcbiAgICAgICAgICA/IFt0aGlzLmRhdGEuc2VsZWN0aW9uLnZhbHVlXVxuICAgICAgICAgIDogW11cbiAgICAgIH0sXG4gICAgICBjb2x1bW5zOiBbXG4gICAgICAgIHtcbiAgICAgICAgICB0eXBlOiAndGV4dCcsXG4gICAgICAgICAgY29sdW1uOiB0aGlzLnRyYW5zbGF0ZVNlcnZpY2UuaW5zdGFudCh0aGlzLmRhdGEuY29uZmlnLmxhYmVsLmkxOG4pXG4gICAgICAgIH1cbiAgICAgIF1cbiAgICB9O1xuICB9XG5cbiAgdGFibGVEYXRhITogUWRUYWJsZURhdGE8c3RyaW5nPjtcblxuICBnZXQgc2VhcmNoQ29uZmlnKCk6IFFkU2VhcmNoT3B0aW9ucyB7XG4gICAgcmV0dXJuIHtcbiAgICAgIGNsZWFyYWJsZTogdHJ1ZSxcbiAgICAgIHBsYWNlaG9sZGVyOiB0aGlzLmRhdGEhLmNvbmZpZy5zZWFyY2hQbGFjZWhvbGRlclxuICAgIH07XG4gIH1cblxuICBwcml2YXRlIF9zZWxlY3RlZDogUWRQYWdlU2VsZWN0ZWRDb250ZXh0W10gPSBbXTtcblxuICBjb25zdHJ1Y3RvcihcbiAgICBwcml2YXRlIGRpYWxvZ1JlZjogRGlhbG9nUmVmPHsgc2VsZWN0ZWQ6IFFkUGFnZVNlbGVjdGVkQ29udGV4dCB8IFFkUGFnZVNlbGVjdGVkQ29udGV4dFtdIH0+LFxuICAgIHByaXZhdGUgdHJhbnNsYXRlU2VydmljZTogVHJhbnNsYXRlU2VydmljZSxcbiAgICBwcml2YXRlIHNlYXJjaFNlcnZpY2U6IFFkU2VhcmNoU2VydmljZVxuICApIHt9XG5cbiAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgdGhpcy5kYXRhID0gdGhpcy5kaWFsb2dSZWYuY29uZmlnLmRhdGE7XG4gICAgdGhpcy5fc2VsZWN0ZWQgPSBBcnJheS5pc0FycmF5KHRoaXMuZGF0YS5zZWxlY3Rpb24pID8gdGhpcy5kYXRhLnNlbGVjdGlvbiA6IFt0aGlzLmRhdGEuc2VsZWN0aW9uXTtcblxuICAgIHRoaXMuc2V0RGF0YSh0aGlzLmRhdGEuY29uZmlnLm9wdGlvbnMpO1xuICAgIHRoaXMuaW5pdFNlYXJjaEZpbHRlcmluZygpO1xuICB9XG5cbiAgc2VsZWN0KHJvd3M6IFFkVGFibGVTZWxlY3RlZFJvd3M8c3RyaW5nPik6IHZvaWQge1xuICAgIHRoaXMuX3NlbGVjdGVkID0gcm93cy5tYXAocm93ID0+IHRoaXMuZGF0YS5jb25maWcub3B0aW9ucy5maW5kKG9wdGlvbiA9PiBvcHRpb24udmFsdWUgPT09IHJvdy51aWQpISk7XG4gIH1cblxuICBjYW5jZWwoKTogdm9pZCB7XG4gICAgdGhpcy5kaWFsb2dSZWYuY2xvc2UoKTtcbiAgfVxuXG4gIGNvbmZpcm0oKTogdm9pZCB7XG4gICAgdGhpcy5kaWFsb2dSZWYuY2xvc2UoeyBzZWxlY3RlZDogdGhpcy5kYXRhLmNvbmZpZy50eXBlID09PSAnc2luZ2xlJyA/IHRoaXMuX3NlbGVjdGVkWzBdIDogdGhpcy5fc2VsZWN0ZWQgfSk7XG4gIH1cblxuICBwcml2YXRlIHNldERhdGEob3B0aW9uczogUWRQYWdlU2VsZWN0ZWRDb250ZXh0W10pOiB2b2lkIHtcbiAgICB0aGlzLnRhYmxlRGF0YSA9IG9wdGlvbnMubWFwKG9wdGlvbiA9PiAoe1xuICAgICAgW3RoaXMudHJhbnNsYXRlU2VydmljZS5pbnN0YW50KHRoaXMuZGF0YS5jb25maWcubGFiZWwuaTE4bildOiB0aGlzLnRyYW5zbGF0ZVNlcnZpY2UuaW5zdGFudChvcHRpb24ubGFiZWwuaTE4biksXG4gICAgICB1aWQ6IG9wdGlvbi52YWx1ZVxuICAgIH0pKSBhcyBRZFRhYmxlRGF0YTxzdHJpbmc+O1xuICB9XG5cbiAgcHJpdmF0ZSBpbml0U2VhcmNoRmlsdGVyaW5nKCk6IHZvaWQge1xuICAgIGlmICghdGhpcy5kYXRhLmNvbmZpZy5oYXNTZWFyY2gpIHJldHVybjtcblxuICAgIHRoaXMuc2VhcmNoU2VydmljZS5zZWFyY2hQb3N0Qm9keSQuc3Vic2NyaWJlKHNlYXJjaFBvc3RCb2R5ID0+IHtcbiAgICAgIGlmICghc2VhcmNoUG9zdEJvZHkucGhyYXNlKSB7XG4gICAgICAgIHRoaXMuc2V0RGF0YSh0aGlzLmRhdGEuY29uZmlnLm9wdGlvbnMpO1xuXG4gICAgICAgIHJldHVybjtcbiAgICAgIH1cblxuICAgICAgY29uc3Qgc2VhcmNoUGhyYXNlID0gc2VhcmNoUG9zdEJvZHkucGhyYXNlLnRvTG93ZXJDYXNlKCk7XG5cbiAgICAgIHRoaXMuc2V0RGF0YShcbiAgICAgICAgdGhpcy5kYXRhLmNvbmZpZy5vcHRpb25zLmZpbHRlcihvcHRpb24gPT4ge1xuICAgICAgICAgIGNvbnN0IHRyYW5zbGF0ZWRMYWJlbCA9ICh0aGlzLnRyYW5zbGF0ZVNlcnZpY2UuaW5zdGFudChvcHRpb24ubGFiZWwuaTE4bikgYXMgc3RyaW5nKS50b0xvd2VyQ2FzZSgpO1xuXG4gICAgICAgICAgcmV0dXJuIChcbiAgICAgICAgICAgIHRyYW5zbGF0ZWRMYWJlbC5pbmNsdWRlcyhzZWFyY2hQaHJhc2UpIHx8IHRoaXMuX3NlbGVjdGVkLnNvbWUoc2VsZWN0ZWQgPT4gc2VsZWN0ZWQudmFsdWUgPT09IG9wdGlvbi52YWx1ZSlcbiAgICAgICAgICApO1xuICAgICAgICB9KVxuICAgICAgKTtcbiAgICB9KTtcbiAgfVxufVxuIiwiPHFkLWRpYWxvZz5cbiAgPGRpdiBjbGFzcz1cInNlYXJjaFwiICpuZ0lmPVwiZGF0YS5jb25maWcuaGFzU2VhcmNoXCI+XG4gICAgPHFkLXNlYXJjaCBbY29uZmlnRGF0YV09XCJzZWFyY2hDb25maWdcIj48L3FkLXNlYXJjaD5cbiAgPC9kaXY+XG4gIDxxZC10YWJsZVxuICAgIFtkYXRhXT1cInRhYmxlRGF0YVwiXG4gICAgW2NvbmZpZ109XCJ0YWJsZUNvbmZpZ1wiXG4gICAgKHNlbGVjdGVkUm93c091dHB1dCk9XCJzZWxlY3QoJGV2ZW50KVwiXG4gICAgZGF0YS10ZXN0LWlkPVwiY29udGV4dC1zZWxlY3QtZGlhbG9nLXRhYmxlXCJcbiAgPjwvcWQtdGFibGU+XG4gIDxxZC1kaWFsb2ctYWN0aW9uPlxuICAgIDxidXR0b24gcWRCdXR0b24gcWRCdXR0b25HaG9zdCBjb2xvcj1cInNlY29uZGFyeVwiIChjbGljayk9XCJjYW5jZWwoKVwiPlxuICAgICAge3sgXCJpMThuLnFkLmNvbnRleHQuZGlhbG9nLmNhbmNlbEJ1dHRvbkxhYmVsXCIgfCB0cmFuc2xhdGUgfX1cbiAgICA8L2J1dHRvbj5cbiAgICA8YnV0dG9uIHFkQnV0dG9uIChjbGljayk9XCJjb25maXJtKClcIiBkYXRhLXRlc3QtaWQ9XCJjb250ZXh0LXNlbGVjdC1kaWFsb2ctc3VibWl0XCI+XG4gICAgICB7eyBcImkxOG4ucWQuY29udGV4dC5kaWFsb2cuY29uZmlybUJ1dHRvbkxhYmVsXCIgfCB0cmFuc2xhdGUgfX1cbiAgICA8L2J1dHRvbj5cbiAgPC9xZC1kaWFsb2ctYWN0aW9uPlxuPC9xZC1kaWFsb2c+XG4iXX0=
|