desy-angular 7.0.1 → 8.0.0
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/README.md +2 -2
- package/esm2022/desy-angular.mjs +2 -0
- package/{esm2020 → esm2022}/lib/desy-angular.module.mjs +37 -37
- package/esm2022/lib/desy-buttons/components/button/button.component.mjs +115 -0
- package/esm2022/lib/desy-buttons/components/button-loader/button-loader.component.mjs +63 -0
- package/esm2022/lib/desy-buttons/components/dropdown/dropdown.component.mjs +127 -0
- package/esm2022/lib/desy-buttons/components/listbox/listbox-item/listbox-item.component.mjs +39 -0
- package/{esm2020 → esm2022}/lib/desy-buttons/components/listbox/listbox-label/listbox-label.component.mjs +4 -4
- package/esm2022/lib/desy-buttons/components/listbox/listbox.component.mjs +334 -0
- package/esm2022/lib/desy-buttons/components/pill/pill.component.mjs +80 -0
- package/{esm2020 → esm2022}/lib/desy-buttons/components/toggle/toggle-off-state/toggle-off-state.component.mjs +4 -4
- package/{esm2020 → esm2022}/lib/desy-buttons/components/toggle/toggle-on-state/toggle-on-state.component.mjs +4 -4
- package/esm2022/lib/desy-buttons/components/toggle/toggle.component.mjs +61 -0
- package/esm2022/lib/desy-buttons/desy-buttons.module.mjs +81 -0
- package/{esm2020 → esm2022}/lib/desy-commons/components/content/content.component.mjs +4 -4
- package/{esm2020 → esm2022}/lib/desy-commons/components/description/description.component.mjs +4 -4
- package/{esm2020 → esm2022}/lib/desy-commons/components/divider/divider.component.mjs +4 -4
- package/{esm2020 → esm2022}/lib/desy-commons/components/icon/icon.component.mjs +4 -4
- package/{esm2020 → esm2022}/lib/desy-commons/components/title/title.component.mjs +4 -4
- package/esm2022/lib/desy-commons/desy-commons.module.mjs +52 -0
- package/{esm2020 → esm2022}/lib/desy-forms/components/character-count/character-count.component.mjs +10 -10
- package/esm2022/lib/desy-forms/components/checkboxes/checkbox-item/checkbox-item.component.mjs +222 -0
- package/esm2022/lib/desy-forms/components/checkboxes/checkboxes-parent.component.mjs +15 -0
- package/esm2022/lib/desy-forms/components/checkboxes/checkboxes.component.mjs +268 -0
- package/esm2022/lib/desy-forms/components/date-input/date-input-day/date-input-day.component.mjs +55 -0
- package/esm2022/lib/desy-forms/components/date-input/date-input-divider/date-input-divider.component.mjs +19 -0
- package/{esm2020 → esm2022}/lib/desy-forms/components/date-input/date-input-item/date-input-item.component.mjs +4 -4
- package/esm2022/lib/desy-forms/components/date-input/date-input-month/date-input-month.component.mjs +55 -0
- package/esm2022/lib/desy-forms/components/date-input/date-input-year/date-input-year.component.mjs +51 -0
- package/esm2022/lib/desy-forms/components/date-input/date-input.component.mjs +293 -0
- package/esm2022/lib/desy-forms/components/error-message/error-message.component.mjs +31 -0
- package/{esm2020 → esm2022}/lib/desy-forms/components/fieldset/fieldset.component.mjs +10 -8
- package/{esm2020 → esm2022}/lib/desy-forms/components/fieldset/legend/legend.component.mjs +4 -4
- package/esm2022/lib/desy-forms/components/file-upload/file-upload.component.mjs +67 -0
- package/esm2022/lib/desy-forms/components/form-field/form-field.component.mjs +120 -0
- package/esm2022/lib/desy-forms/components/hint/hint.component.mjs +29 -0
- package/esm2022/lib/desy-forms/components/input/input.component.mjs +98 -0
- package/esm2022/lib/desy-forms/components/input-group/input-group-divider/input-group-divider.component.mjs +20 -0
- package/esm2022/lib/desy-forms/components/input-group/input-group-input/input-group-input.component.mjs +59 -0
- package/{esm2020 → esm2022}/lib/desy-forms/components/input-group/input-group-item/input-group-item.component.mjs +4 -4
- package/esm2022/lib/desy-forms/components/input-group/input-group-select/input-group-select.component.mjs +51 -0
- package/esm2022/lib/desy-forms/components/input-group/input-group.component.mjs +228 -0
- package/esm2022/lib/desy-forms/components/label/label.component.mjs +38 -0
- package/esm2022/lib/desy-forms/components/radios/radio-item/radio-item.component.mjs +170 -0
- package/esm2022/lib/desy-forms/components/radios/radios-parent.component.mjs +15 -0
- package/esm2022/lib/desy-forms/components/radios/radios.component.mjs +281 -0
- package/esm2022/lib/desy-forms/components/search-bar/search-bar.component.mjs +60 -0
- package/{esm2020 → esm2022}/lib/desy-forms/components/select/option/option.component.mjs +4 -4
- package/esm2022/lib/desy-forms/components/select/option-group/option-group.component.mjs +18 -0
- package/{esm2020 → esm2022}/lib/desy-forms/components/select/select-item/select-item.component.mjs +4 -4
- package/esm2022/lib/desy-forms/components/select/select.component.mjs +92 -0
- package/{esm2020 → esm2022}/lib/desy-forms/components/template-driven-wrapper/template-driven-wrapper.component.mjs +4 -4
- package/{esm2020 → esm2022}/lib/desy-forms/components/textarea/textarea.component.mjs +12 -13
- package/esm2022/lib/desy-forms/components/tree/tree-checkbox/tree-checkbox.component.mjs +173 -0
- package/esm2022/lib/desy-forms/components/tree/tree-item/tree-item.component.mjs +377 -0
- package/esm2022/lib/desy-forms/components/tree/tree-items-generator/tree-items-generator.component.mjs +25 -0
- package/{esm2020 → esm2022}/lib/desy-forms/components/tree/tree-sub/tree-sub.component.mjs +4 -4
- package/esm2022/lib/desy-forms/components/tree/tree.component.mjs +356 -0
- package/esm2022/lib/desy-forms/desy-forms.module.mjs +207 -0
- package/esm2022/lib/desy-forms/directives/condition.directive.mjs +34 -0
- package/{esm2020 → esm2022}/lib/desy-forms/interfaces/item-date-input-data.mjs +1 -1
- package/{esm2020 → esm2022}/lib/desy-forms/interfaces/select-item-data.mjs +1 -1
- package/esm2022/lib/desy-modals/components/dialog/dialog.component.mjs +150 -0
- package/esm2022/lib/desy-modals/components/modal/modal-button-loader-primary/modal-button-loader-primary.component.mjs +25 -0
- package/esm2022/lib/desy-modals/components/modal/modal-button-loader-secondary/modal-button-loader-secondary.component.mjs +23 -0
- package/esm2022/lib/desy-modals/components/modal/modal-button-primary/modal-button-primary.component.mjs +23 -0
- package/esm2022/lib/desy-modals/components/modal/modal-button-secondary/modal-button-secondary.component.mjs +23 -0
- package/esm2022/lib/desy-modals/components/modal/modal.component.mjs +182 -0
- package/esm2022/lib/desy-modals/desy-modals.module.mjs +61 -0
- package/{esm2020 → esm2022}/lib/desy-modals/interfaces/dialog-options.mjs +1 -1
- package/esm2022/lib/desy-modals/interfaces/index.mjs +7 -0
- package/esm2022/lib/desy-modals/services/dialog.service.mjs +114 -0
- package/{esm2020 → esm2022}/lib/desy-nav/components/breadcrumbs/breadcrumbs-item/breadcrumbs-item.component.mjs +4 -4
- package/esm2022/lib/desy-nav/components/breadcrumbs/breadcrumbs.component.mjs +48 -0
- package/{esm2020 → esm2022}/lib/desy-nav/components/error-summary/error-summary-item/error-summary-item.component.mjs +4 -4
- package/esm2022/lib/desy-nav/components/error-summary/error-summary.component.mjs +64 -0
- package/{esm2020 → esm2022}/lib/desy-nav/components/footer/footer-meta/footer-meta-item/footer-meta-item.component.mjs +4 -4
- package/esm2022/lib/desy-nav/components/footer/footer-meta/footer-meta.component.mjs +31 -0
- package/{esm2020 → esm2022}/lib/desy-nav/components/footer/footer-navigation/footer-navigation-item/footer-navigation-item.component.mjs +4 -4
- package/esm2022/lib/desy-nav/components/footer/footer-navigation/footer-navigation.component.mjs +19 -0
- package/esm2022/lib/desy-nav/components/footer/footer.component.mjs +74 -0
- package/{esm2020 → esm2022}/lib/desy-nav/components/header/header-custom-navigation/header-custom-navigation.component.mjs +4 -4
- package/esm2022/lib/desy-nav/components/header/header-dropdown/header-dropdown.component.mjs +46 -0
- package/{esm2020 → esm2022}/lib/desy-nav/components/header/header-navigation/header-navigation-item/header-navigation-item.component.mjs +4 -4
- package/esm2022/lib/desy-nav/components/header/header-navigation/header-navigation.component.mjs +36 -0
- package/{esm2020 → esm2022}/lib/desy-nav/components/header/header-offcanvas/header-offcanvas-button/header-offcanvas-button.component.mjs +4 -4
- package/{esm2020 → esm2022}/lib/desy-nav/components/header/header-offcanvas/header-offcanvas-close-button/header-offcanvas-close-button.component.mjs +4 -4
- package/esm2022/lib/desy-nav/components/header/header-offcanvas/header-offcanvas.component.mjs +93 -0
- package/esm2022/lib/desy-nav/components/header/header-subnav/header-subnav.component.mjs +41 -0
- package/esm2022/lib/desy-nav/components/header/header.component.mjs +107 -0
- package/esm2022/lib/desy-nav/components/links-list/links-list-item/links-list-item.component.mjs +40 -0
- package/esm2022/lib/desy-nav/components/links-list/links-list-item-sub/links-list-item-sub.component.mjs +14 -0
- package/esm2022/lib/desy-nav/components/links-list/links-list.component.mjs +42 -0
- package/{esm2020 → esm2022}/lib/desy-nav/components/menu-horizontal/menu-horizontal-item/menu-horizontal-item.component.mjs +4 -4
- package/esm2022/lib/desy-nav/components/menu-horizontal/menu-horizontal.component.mjs +78 -0
- package/esm2022/lib/desy-nav/components/menu-navigation/components/menu-navigation-item/menu-navigation-item.component.mjs +49 -0
- package/{esm2020 → esm2022}/lib/desy-nav/components/menu-navigation/components/menu-navigation-subitem/menu-navigation-subitem.component.mjs +4 -4
- package/esm2022/lib/desy-nav/components/menu-navigation/menu-navigation.component.mjs +602 -0
- package/esm2022/lib/desy-nav/components/menu-vertical/menu-vertical-item/menu-vertical-item.component.mjs +46 -0
- package/esm2022/lib/desy-nav/components/menu-vertical/menu-vertical-item-sub/menu-vertical-item-sub.component.mjs +18 -0
- package/{esm2020 → esm2022}/lib/desy-nav/components/menu-vertical/menu-vertical-item-sub-item/menu-vertical-item-sub-item.component.mjs +4 -4
- package/esm2022/lib/desy-nav/components/menu-vertical/menu-vertical.component.mjs +113 -0
- package/esm2022/lib/desy-nav/components/menubar/components/menubar-item/menubar-item.component.mjs +51 -0
- package/{esm2020 → esm2022}/lib/desy-nav/components/menubar/components/menubar-label/menubar-label.component.mjs +4 -4
- package/esm2022/lib/desy-nav/components/menubar/components/menubar-subitem/menubar-subitem.component.mjs +36 -0
- package/{esm2020 → esm2022}/lib/desy-nav/components/menubar/components/menubar-subsubitem/menubar-subsubitem.component.mjs +4 -4
- package/esm2022/lib/desy-nav/components/menubar/directives/menubaritem.directive.mjs +45 -0
- package/esm2022/lib/desy-nav/components/menubar/menubar.component.mjs +713 -0
- package/{esm2020 → esm2022}/lib/desy-nav/components/nav/nav-item/nav-item.component.mjs +4 -4
- package/esm2022/lib/desy-nav/components/nav/nav.component.mjs +115 -0
- package/{esm2020 → esm2022}/lib/desy-nav/components/notification/notification-item/notification-item.component.mjs +4 -4
- package/esm2022/lib/desy-nav/components/notification/notification.component.mjs +143 -0
- package/esm2022/lib/desy-nav/components/skip-link/skip-link.component.mjs +43 -0
- package/esm2022/lib/desy-nav/desy-nav.module.mjs +240 -0
- package/esm2022/lib/desy-nav/interfaces/header-skiplink-data.mjs +2 -0
- package/esm2022/lib/desy-pagination/components/pagination/pagination.component.mjs +191 -0
- package/{esm2020 → esm2022}/lib/desy-pagination/components/pagination-item-perpage/pagination-item-perpage.component.mjs +4 -4
- package/{esm2020 → esm2022}/lib/desy-pagination/components/pagination-listbox-label/pagination-listbox-label.component.mjs +4 -4
- package/{esm2020 → esm2022}/lib/desy-pagination/desy-pagination.module.mjs +15 -15
- package/{esm2020 → esm2022}/lib/desy-tables/components/table/components/table-caption.component.mjs +4 -4
- package/{esm2020 → esm2022}/lib/desy-tables/components/table/components/table-cell.component.mjs +4 -4
- package/esm2022/lib/desy-tables/components/table/components/table-header.component.mjs +18 -0
- package/esm2022/lib/desy-tables/components/table/components/table-row.component.mjs +18 -0
- package/esm2022/lib/desy-tables/components/table/table.component.mjs +79 -0
- package/esm2022/lib/desy-tables/components/table-advanced/components/table-advanced-header-cell.component.mjs +50 -0
- package/esm2022/lib/desy-tables/components/table-advanced/components/table-advanced-header.component.mjs +18 -0
- package/{esm2020 → esm2022}/lib/desy-tables/components/table-advanced/components/table-advanced-row-cell.component.mjs +4 -4
- package/esm2022/lib/desy-tables/components/table-advanced/components/table-advanced-row.component.mjs +27 -0
- package/esm2022/lib/desy-tables/components/table-advanced/components/table-advanced-select.component.mjs +28 -0
- package/esm2022/lib/desy-tables/components/table-advanced/table-advanced.component.mjs +286 -0
- package/{esm2020 → esm2022}/lib/desy-tables/desy-tables.module.mjs +38 -38
- package/esm2022/lib/desy-tables/directives/cell.directive.mjs +25 -0
- package/esm2022/lib/desy-tables/directives/focus-clicked-cell.directive.mjs +81 -0
- package/esm2022/lib/desy-tables/directives/row.directive.mjs +22 -0
- package/{esm2020 → esm2022}/lib/desy-views/components/accordion/accordion-header/accordion-header.component.mjs +4 -4
- package/esm2022/lib/desy-views/components/accordion/accordion-item/accordion-item.component.mjs +61 -0
- package/esm2022/lib/desy-views/components/accordion/accordion.component.mjs +199 -0
- package/esm2022/lib/desy-views/components/accordion-history/accordion-history-item/accordion-history-item.component.mjs +41 -0
- package/esm2022/lib/desy-views/components/accordion-history/accordion-history.component.mjs +19 -0
- package/{esm2020 → esm2022}/lib/desy-views/components/accordion-history/accordion-item-hide-button/accordion-item-hide-button.component.mjs +4 -4
- package/{esm2020 → esm2022}/lib/desy-views/components/accordion-history/accordion-item-show-button/accordion-item-show-button.component.mjs +4 -4
- package/esm2022/lib/desy-views/components/alert/alert.component.mjs +81 -0
- package/esm2022/lib/desy-views/components/collapsible/collapsible.component.mjs +81 -0
- package/{esm2020 → esm2022}/lib/desy-views/components/description-list/definition/definition.component.mjs +4 -4
- package/esm2022/lib/desy-views/components/description-list/description-item/description-item.component.mjs +36 -0
- package/esm2022/lib/desy-views/components/description-list/description-list.component.mjs +28 -0
- package/{esm2020 → esm2022}/lib/desy-views/components/description-list/term/term.component.mjs +4 -4
- package/{esm2020 → esm2022}/lib/desy-views/components/details/details.component.mjs +4 -4
- package/{esm2020 → esm2022}/lib/desy-views/components/item/item-content-bottom/item-content-bottom.component.mjs +4 -4
- package/{esm2020 → esm2022}/lib/desy-views/components/item/item-content-right/item-content-right.component.mjs +4 -4
- package/{esm2020 → esm2022}/lib/desy-views/components/item/item-item/item-item.component.mjs +4 -4
- package/esm2022/lib/desy-views/components/item/item.component.mjs +121 -0
- package/{esm2020 → esm2022}/lib/desy-views/components/media-object/media-object-figure/media-object-figure.component.mjs +4 -4
- package/esm2022/lib/desy-views/components/media-object/media-object.component.mjs +117 -0
- package/{esm2020 → esm2022}/lib/desy-views/components/spinner/spinner.component.mjs +4 -4
- package/esm2022/lib/desy-views/components/status/status.component.mjs +107 -0
- package/esm2022/lib/desy-views/components/status-item/status-item.component.mjs +148 -0
- package/{esm2020 → esm2022}/lib/desy-views/components/tabs/panel/panel.component.mjs +4 -4
- package/esm2022/lib/desy-views/components/tabs/tab-item/tab-item.component.mjs +39 -0
- package/esm2022/lib/desy-views/components/tabs/tabs.component.mjs +200 -0
- package/{esm2020 → esm2022}/lib/desy-views/components/tooltip/tooltip-content/tooltip-content.component.mjs +4 -4
- package/esm2022/lib/desy-views/components/tooltip/tooltip.component.mjs +206 -0
- package/{esm2020 → esm2022}/lib/desy-views/desy-views.module.mjs +67 -67
- package/esm2022/lib/desy-views/services/alert.service.mjs +88 -0
- package/esm2022/lib/shared/components/accessibility/accessibility.component.mjs +42 -0
- package/{esm2020 → esm2022}/lib/shared/components/accessibility-and-content-required/accessibility-and-content-required.component.mjs +4 -4
- package/{esm2020 → esm2022}/lib/shared/components/accessibility-and-text-or-html-required/accessibility-and-text-or-html-required.component.mjs +4 -4
- package/esm2022/lib/shared/components/content-base/content-base.component.mjs +21 -0
- package/{esm2020 → esm2022}/lib/shared/components/text-or-html-required/text-or-html-required.component.mjs +4 -4
- package/esm2022/lib/shared/decorators/desy-content-child.decorator.mjs +30 -0
- package/esm2022/lib/shared/decorators/desy-on-input-change.decorator.mjs +15 -0
- package/esm2022/lib/shared/directives/attribute-change.directive.mjs +50 -0
- package/esm2022/lib/shared/directives/click-outside.directive.mjs +40 -0
- package/esm2022/lib/shared/directives/content-change.directive.mjs +41 -0
- package/esm2022/lib/shared/directives/custom-inner-content.directive.mjs +44 -0
- package/esm2022/lib/shared/directives/inner-content.directive.mjs +37 -0
- package/esm2022/lib/shared/pipes/external-href.pipe.mjs +28 -0
- package/esm2022/lib/shared/pipes/inner-html.pipe.mjs +21 -0
- package/{esm2020 → esm2022}/lib/shared/pipes/make-html-list.pipe.mjs +4 -4
- package/esm2022/lib/shared/shared.module.mjs +83 -0
- package/esm2022/lib/shared/utils/search-utils.mjs +66 -0
- package/esm2022/lib/shared/utils/string-utils.mjs +11 -0
- package/esm2022/public-api.mjs +197 -0
- package/{fesm2020 → fesm2022}/desy-angular.mjs +1964 -2068
- package/fesm2022/desy-angular.mjs.map +1 -0
- package/index.d.ts +0 -3
- package/lib/desy-buttons/components/button/button.component.d.ts +1 -1
- package/lib/desy-buttons/components/button-loader/button-loader.component.d.ts +1 -1
- package/lib/desy-buttons/components/dropdown/dropdown.component.d.ts +1 -1
- package/lib/desy-buttons/components/listbox/listbox-item/listbox-item.component.d.ts +3 -1
- package/lib/desy-buttons/components/listbox/listbox-label/listbox-label.component.d.ts +1 -1
- package/lib/desy-buttons/components/listbox/listbox.component.d.ts +16 -5
- package/lib/desy-buttons/components/pill/pill.component.d.ts +1 -1
- package/lib/desy-buttons/components/toggle/toggle-off-state/toggle-off-state.component.d.ts +1 -1
- package/lib/desy-buttons/components/toggle/toggle-on-state/toggle-on-state.component.d.ts +1 -1
- package/lib/desy-buttons/components/toggle/toggle.component.d.ts +1 -1
- package/lib/desy-commons/components/content/content.component.d.ts +1 -1
- package/lib/desy-commons/components/description/description.component.d.ts +1 -1
- package/lib/desy-commons/components/divider/divider.component.d.ts +1 -1
- package/lib/desy-commons/components/icon/icon.component.d.ts +1 -1
- package/lib/desy-commons/components/title/title.component.d.ts +1 -1
- package/lib/desy-forms/components/character-count/character-count.component.d.ts +1 -1
- package/lib/desy-forms/components/checkboxes/checkbox-item/checkbox-item.component.d.ts +6 -4
- package/lib/desy-forms/components/checkboxes/checkboxes-parent.component.d.ts +13 -0
- package/lib/desy-forms/components/checkboxes/checkboxes.component.d.ts +13 -31
- package/lib/desy-forms/components/date-input/date-input-day/date-input-day.component.d.ts +2 -1
- package/lib/desy-forms/components/date-input/date-input-item/date-input-item.component.d.ts +1 -1
- package/lib/desy-forms/components/date-input/date-input-month/date-input-month.component.d.ts +2 -1
- package/lib/desy-forms/components/date-input/date-input-year/date-input-year.component.d.ts +2 -1
- package/lib/desy-forms/components/date-input/date-input.component.d.ts +5 -8
- package/lib/desy-forms/components/error-message/error-message.component.d.ts +1 -1
- package/lib/desy-forms/components/fieldset/fieldset.component.d.ts +1 -8
- package/lib/desy-forms/components/fieldset/legend/legend.component.d.ts +1 -1
- package/lib/desy-forms/components/file-upload/file-upload.component.d.ts +1 -6
- package/lib/desy-forms/components/form-field/form-field.component.d.ts +10 -10
- package/lib/desy-forms/components/hint/hint.component.d.ts +1 -1
- package/lib/desy-forms/components/input/input.component.d.ts +1 -1
- package/lib/desy-forms/components/input-group/input-group-input/input-group-input.component.d.ts +2 -1
- package/lib/desy-forms/components/input-group/input-group-item/input-group-item.component.d.ts +1 -1
- package/lib/desy-forms/components/input-group/input-group-select/input-group-select.component.d.ts +2 -1
- package/lib/desy-forms/components/input-group/input-group.component.d.ts +3 -8
- package/lib/desy-forms/components/label/label.component.d.ts +1 -1
- package/lib/desy-forms/components/radios/radio-item/radio-item.component.d.ts +6 -5
- package/lib/desy-forms/components/radios/radios-parent.component.d.ts +13 -0
- package/lib/desy-forms/components/radios/radios.component.d.ts +14 -31
- package/lib/desy-forms/components/search-bar/search-bar.component.d.ts +3 -5
- package/lib/desy-forms/components/select/option/option.component.d.ts +2 -2
- package/lib/desy-forms/components/select/option-group/option-group.component.d.ts +1 -1
- package/lib/desy-forms/components/select/select-item/select-item.component.d.ts +1 -1
- package/lib/desy-forms/components/select/select.component.d.ts +1 -1
- package/lib/desy-forms/components/textarea/textarea.component.d.ts +1 -1
- package/lib/desy-forms/components/tree/tree-checkbox/tree-checkbox.component.d.ts +1 -1
- package/lib/desy-forms/components/tree/tree-item/tree-item.component.d.ts +2 -5
- package/lib/desy-forms/components/tree/tree-items-generator/tree-items-generator.component.d.ts +6 -2
- package/lib/desy-forms/components/tree/tree-sub/tree-sub.component.d.ts +1 -1
- package/lib/desy-forms/components/tree/tree.component.d.ts +2 -59
- package/lib/desy-forms/directives/condition.directive.d.ts +1 -6
- package/lib/desy-forms/interfaces/item-date-input-data.d.ts +1 -0
- package/lib/desy-forms/interfaces/select-item-data.d.ts +1 -1
- package/lib/desy-modals/components/dialog/dialog.component.d.ts +2 -1
- package/lib/desy-modals/components/modal/modal-button-loader-primary/modal-button-loader-primary.component.d.ts +1 -1
- package/lib/desy-modals/components/modal/modal-button-loader-secondary/modal-button-loader-secondary.component.d.ts +1 -1
- package/lib/desy-modals/components/modal/modal-button-primary/modal-button-primary.component.d.ts +1 -1
- package/lib/desy-modals/components/modal/modal-button-secondary/modal-button-secondary.component.d.ts +1 -1
- package/lib/desy-modals/components/modal/modal.component.d.ts +1 -1
- package/lib/desy-modals/interfaces/dialog-options.d.ts +1 -0
- package/lib/desy-nav/components/breadcrumbs/breadcrumbs-item/breadcrumbs-item.component.d.ts +1 -1
- package/lib/desy-nav/components/breadcrumbs/breadcrumbs.component.d.ts +1 -1
- package/lib/desy-nav/components/error-summary/error-summary-item/error-summary-item.component.d.ts +1 -1
- package/lib/desy-nav/components/error-summary/error-summary.component.d.ts +1 -1
- package/lib/desy-nav/components/footer/footer-meta/footer-meta-item/footer-meta-item.component.d.ts +1 -1
- package/lib/desy-nav/components/footer/footer-meta/footer-meta.component.d.ts +1 -1
- package/lib/desy-nav/components/footer/footer-navigation/footer-navigation-item/footer-navigation-item.component.d.ts +1 -1
- package/lib/desy-nav/components/footer/footer-navigation/footer-navigation.component.d.ts +1 -1
- package/lib/desy-nav/components/footer/footer.component.d.ts +1 -1
- package/lib/desy-nav/components/header/header-dropdown/header-dropdown.component.d.ts +1 -1
- package/lib/desy-nav/components/header/header-navigation/header-navigation-item/header-navigation-item.component.d.ts +1 -1
- package/lib/desy-nav/components/header/header-navigation/header-navigation.component.d.ts +1 -1
- package/lib/desy-nav/components/header/header-offcanvas/header-offcanvas.component.d.ts +1 -8
- package/lib/desy-nav/components/header/header-subnav/header-subnav.component.d.ts +1 -1
- package/lib/desy-nav/components/header/header.component.d.ts +3 -2
- package/lib/desy-nav/components/links-list/links-list-item/links-list-item.component.d.ts +20 -0
- package/lib/desy-nav/components/links-list/links-list-item-sub/links-list-item-sub.component.d.ts +7 -0
- package/lib/desy-nav/components/links-list/links-list.component.d.ts +13 -0
- package/lib/desy-nav/components/menu-horizontal/menu-horizontal-item/menu-horizontal-item.component.d.ts +1 -1
- package/lib/desy-nav/components/menu-horizontal/menu-horizontal.component.d.ts +1 -1
- package/lib/desy-nav/components/menu-navigation/components/menu-navigation-item/menu-navigation-item.component.d.ts +1 -1
- package/lib/desy-nav/components/menu-navigation/components/menu-navigation-subitem/menu-navigation-subitem.component.d.ts +1 -1
- package/lib/desy-nav/components/menu-navigation/menu-navigation.component.d.ts +1 -1
- package/lib/desy-nav/components/menu-vertical/menu-vertical-item/menu-vertical-item.component.d.ts +1 -1
- package/lib/desy-nav/components/menu-vertical/menu-vertical-item-sub/menu-vertical-item-sub.component.d.ts +1 -1
- package/lib/desy-nav/components/menu-vertical/menu-vertical-item-sub-item/menu-vertical-item-sub-item.component.d.ts +1 -1
- package/lib/desy-nav/components/menu-vertical/menu-vertical.component.d.ts +1 -1
- package/lib/desy-nav/components/menubar/components/menubar-item/menubar-item.component.d.ts +1 -1
- package/lib/desy-nav/components/menubar/components/menubar-label/menubar-label.component.d.ts +1 -1
- package/lib/desy-nav/components/menubar/components/menubar-subitem/menubar-subitem.component.d.ts +1 -1
- package/lib/desy-nav/components/menubar/components/menubar-subsubitem/menubar-subsubitem.component.d.ts +1 -1
- package/lib/desy-nav/components/menubar/menubar.component.d.ts +1 -8
- package/lib/desy-nav/components/nav/nav-item/nav-item.component.d.ts +1 -1
- package/lib/desy-nav/components/nav/nav.component.d.ts +1 -1
- package/lib/desy-nav/components/notification/notification-item/notification-item.component.d.ts +1 -1
- package/lib/desy-nav/components/notification/notification.component.d.ts +1 -1
- package/lib/desy-nav/components/skip-link/skip-link.component.d.ts +2 -1
- package/lib/desy-nav/desy-nav.module.d.ts +29 -26
- package/lib/desy-nav/interfaces/header-skiplink-data.d.ts +7 -0
- package/lib/desy-pagination/components/pagination/pagination.component.d.ts +12 -7
- package/lib/desy-pagination/components/pagination-item-perpage/pagination-item-perpage.component.d.ts +1 -1
- package/lib/desy-pagination/components/pagination-listbox-label/pagination-listbox-label.component.d.ts +1 -1
- package/lib/desy-tables/components/table/components/table-caption.component.d.ts +1 -1
- package/lib/desy-tables/components/table/components/table-cell.component.d.ts +1 -1
- package/lib/desy-tables/components/table/table.component.d.ts +1 -1
- package/lib/desy-tables/components/table-advanced/components/table-advanced-header-cell.component.d.ts +1 -1
- package/lib/desy-tables/components/table-advanced/components/table-advanced-row-cell.component.d.ts +1 -1
- package/lib/desy-tables/components/table-advanced/components/table-advanced-row.component.d.ts +1 -1
- package/lib/desy-tables/components/table-advanced/components/table-advanced-select.component.d.ts +1 -1
- package/lib/desy-tables/components/table-advanced/table-advanced.component.d.ts +1 -56
- package/lib/desy-tables/directives/cell.directive.d.ts +1 -4
- package/lib/desy-tables/directives/row.directive.d.ts +1 -8
- package/lib/desy-views/components/accordion/accordion-header/accordion-header.component.d.ts +1 -1
- package/lib/desy-views/components/accordion/accordion-item/accordion-item.component.d.ts +1 -1
- package/lib/desy-views/components/accordion/accordion.component.d.ts +1 -1
- package/lib/desy-views/components/accordion-history/accordion-history-item/accordion-history-item.component.d.ts +1 -1
- package/lib/desy-views/components/accordion-history/accordion-item-hide-button/accordion-item-hide-button.component.d.ts +1 -1
- package/lib/desy-views/components/accordion-history/accordion-item-show-button/accordion-item-show-button.component.d.ts +1 -1
- package/lib/desy-views/components/alert/alert.component.d.ts +1 -1
- package/lib/desy-views/components/collapsible/collapsible.component.d.ts +1 -1
- package/lib/desy-views/components/description-list/definition/definition.component.d.ts +1 -1
- package/lib/desy-views/components/description-list/description-item/description-item.component.d.ts +1 -1
- package/lib/desy-views/components/description-list/description-list.component.d.ts +1 -1
- package/lib/desy-views/components/description-list/term/term.component.d.ts +1 -1
- package/lib/desy-views/components/details/details.component.d.ts +1 -1
- package/lib/desy-views/components/item/item-content-bottom/item-content-bottom.component.d.ts +1 -1
- package/lib/desy-views/components/item/item.component.d.ts +2 -1
- package/lib/desy-views/components/media-object/media-object.component.d.ts +1 -1
- package/lib/desy-views/components/spinner/spinner.component.d.ts +1 -1
- package/lib/desy-views/components/status/status.component.d.ts +3 -1
- package/lib/desy-views/components/status-item/status-item.component.d.ts +1 -1
- package/lib/desy-views/components/tabs/panel/panel.component.d.ts +1 -1
- package/lib/desy-views/components/tabs/tab-item/tab-item.component.d.ts +1 -1
- package/lib/desy-views/components/tabs/tabs.component.d.ts +1 -1
- package/lib/desy-views/components/tooltip/tooltip.component.d.ts +1 -1
- package/lib/shared/components/accessibility/accessibility.component.d.ts +1 -4
- package/lib/shared/components/accessibility-and-content-required/accessibility-and-content-required.component.d.ts +1 -9
- package/lib/shared/components/accessibility-and-text-or-html-required/accessibility-and-text-or-html-required.component.d.ts +1 -7
- package/lib/shared/components/content-base/content-base.component.d.ts +0 -3
- package/lib/shared/components/text-or-html-required/text-or-html-required.component.d.ts +1 -5
- package/lib/shared/decorators/desy-content-child.decorator.d.ts +0 -11
- package/lib/shared/decorators/desy-on-input-change.decorator.d.ts +0 -4
- package/lib/shared/directives/attribute-change.directive.d.ts +2 -1
- package/lib/shared/directives/click-outside.directive.d.ts +1 -1
- package/lib/shared/directives/content-change.directive.d.ts +1 -5
- package/lib/shared/directives/custom-inner-content.directive.d.ts +1 -7
- package/lib/shared/directives/inner-content.directive.d.ts +1 -1
- package/lib/shared/pipes/external-href.pipe.d.ts +0 -4
- package/lib/shared/utils/search-utils.d.ts +0 -10
- package/lib/shared/utils/string-utils.d.ts +0 -7
- package/package.json +13 -19
- package/public-api.d.ts +4 -0
- package/esm2020/desy-angular.mjs +0 -5
- package/esm2020/lib/desy-buttons/components/button/button.component.mjs +0 -115
- package/esm2020/lib/desy-buttons/components/button-loader/button-loader.component.mjs +0 -63
- package/esm2020/lib/desy-buttons/components/dropdown/dropdown.component.mjs +0 -126
- package/esm2020/lib/desy-buttons/components/listbox/listbox-item/listbox-item.component.mjs +0 -32
- package/esm2020/lib/desy-buttons/components/listbox/listbox.component.mjs +0 -291
- package/esm2020/lib/desy-buttons/components/pill/pill.component.mjs +0 -80
- package/esm2020/lib/desy-buttons/components/toggle/toggle.component.mjs +0 -59
- package/esm2020/lib/desy-buttons/desy-buttons.module.mjs +0 -82
- package/esm2020/lib/desy-commons/desy-commons.module.mjs +0 -53
- package/esm2020/lib/desy-forms/components/checkboxes/checkbox-item/checkbox-item.component.mjs +0 -240
- package/esm2020/lib/desy-forms/components/checkboxes/checkboxes.component.mjs +0 -264
- package/esm2020/lib/desy-forms/components/date-input/date-input-day/date-input-day.component.mjs +0 -52
- package/esm2020/lib/desy-forms/components/date-input/date-input-divider/date-input-divider.component.mjs +0 -19
- package/esm2020/lib/desy-forms/components/date-input/date-input-month/date-input-month.component.mjs +0 -52
- package/esm2020/lib/desy-forms/components/date-input/date-input-year/date-input-year.component.mjs +0 -48
- package/esm2020/lib/desy-forms/components/date-input/date-input.component.mjs +0 -266
- package/esm2020/lib/desy-forms/components/error-message/error-message.component.mjs +0 -31
- package/esm2020/lib/desy-forms/components/file-upload/file-upload.component.mjs +0 -72
- package/esm2020/lib/desy-forms/components/form-field/form-field.component.mjs +0 -124
- package/esm2020/lib/desy-forms/components/hint/hint.component.mjs +0 -29
- package/esm2020/lib/desy-forms/components/input/input.component.mjs +0 -99
- package/esm2020/lib/desy-forms/components/input-group/input-group-divider/input-group-divider.component.mjs +0 -20
- package/esm2020/lib/desy-forms/components/input-group/input-group-input/input-group-input.component.mjs +0 -53
- package/esm2020/lib/desy-forms/components/input-group/input-group-select/input-group-select.component.mjs +0 -45
- package/esm2020/lib/desy-forms/components/input-group/input-group.component.mjs +0 -223
- package/esm2020/lib/desy-forms/components/label/label.component.mjs +0 -38
- package/esm2020/lib/desy-forms/components/radios/radio-item/radio-item.component.mjs +0 -185
- package/esm2020/lib/desy-forms/components/radios/radios.component.mjs +0 -270
- package/esm2020/lib/desy-forms/components/search-bar/search-bar.component.mjs +0 -66
- package/esm2020/lib/desy-forms/components/select/option-group/option-group.component.mjs +0 -18
- package/esm2020/lib/desy-forms/components/select/select.component.mjs +0 -93
- package/esm2020/lib/desy-forms/components/tree/tree-checkbox/tree-checkbox.component.mjs +0 -167
- package/esm2020/lib/desy-forms/components/tree/tree-item/tree-item.component.mjs +0 -397
- package/esm2020/lib/desy-forms/components/tree/tree-items-generator/tree-items-generator.component.mjs +0 -25
- package/esm2020/lib/desy-forms/components/tree/tree.component.mjs +0 -425
- package/esm2020/lib/desy-forms/desy-forms.module.mjs +0 -209
- package/esm2020/lib/desy-forms/directives/condition.directive.mjs +0 -34
- package/esm2020/lib/desy-forms/models/checkbox-service-item.component.mjs +0 -9
- package/esm2020/lib/desy-forms/models/radio-service-item.component.mjs +0 -9
- package/esm2020/lib/desy-forms/services/checkbox.service.mjs +0 -61
- package/esm2020/lib/desy-forms/services/radio.service.mjs +0 -53
- package/esm2020/lib/desy-modals/components/dialog/dialog.component.mjs +0 -130
- package/esm2020/lib/desy-modals/components/modal/modal-button-loader-primary/modal-button-loader-primary.component.mjs +0 -25
- package/esm2020/lib/desy-modals/components/modal/modal-button-loader-secondary/modal-button-loader-secondary.component.mjs +0 -23
- package/esm2020/lib/desy-modals/components/modal/modal-button-primary/modal-button-primary.component.mjs +0 -23
- package/esm2020/lib/desy-modals/components/modal/modal-button-secondary/modal-button-secondary.component.mjs +0 -23
- package/esm2020/lib/desy-modals/components/modal/modal.component.mjs +0 -178
- package/esm2020/lib/desy-modals/desy-modals.module.mjs +0 -62
- package/esm2020/lib/desy-modals/interfaces/index.mjs +0 -8
- package/esm2020/lib/desy-modals/services/dialog.service.mjs +0 -114
- package/esm2020/lib/desy-nav/components/breadcrumbs/breadcrumbs.component.mjs +0 -47
- package/esm2020/lib/desy-nav/components/error-summary/error-summary.component.mjs +0 -62
- package/esm2020/lib/desy-nav/components/footer/footer-meta/footer-meta.component.mjs +0 -30
- package/esm2020/lib/desy-nav/components/footer/footer-navigation/footer-navigation.component.mjs +0 -19
- package/esm2020/lib/desy-nav/components/footer/footer.component.mjs +0 -71
- package/esm2020/lib/desy-nav/components/header/header-dropdown/header-dropdown.component.mjs +0 -45
- package/esm2020/lib/desy-nav/components/header/header-navigation/header-navigation.component.mjs +0 -36
- package/esm2020/lib/desy-nav/components/header/header-offcanvas/header-offcanvas.component.mjs +0 -95
- package/esm2020/lib/desy-nav/components/header/header-subnav/header-subnav.component.mjs +0 -41
- package/esm2020/lib/desy-nav/components/header/header.component.mjs +0 -103
- package/esm2020/lib/desy-nav/components/menu-horizontal/menu-horizontal.component.mjs +0 -79
- package/esm2020/lib/desy-nav/components/menu-navigation/components/menu-navigation-item/menu-navigation-item.component.mjs +0 -49
- package/esm2020/lib/desy-nav/components/menu-navigation/menu-navigation.component.mjs +0 -616
- package/esm2020/lib/desy-nav/components/menu-vertical/menu-vertical-item/menu-vertical-item.component.mjs +0 -45
- package/esm2020/lib/desy-nav/components/menu-vertical/menu-vertical-item-sub/menu-vertical-item-sub.component.mjs +0 -18
- package/esm2020/lib/desy-nav/components/menu-vertical/menu-vertical.component.mjs +0 -113
- package/esm2020/lib/desy-nav/components/menubar/components/menubar-item/menubar-item.component.mjs +0 -51
- package/esm2020/lib/desy-nav/components/menubar/components/menubar-subitem/menubar-subitem.component.mjs +0 -36
- package/esm2020/lib/desy-nav/components/menubar/directives/menubaritem.directive.mjs +0 -45
- package/esm2020/lib/desy-nav/components/menubar/menubar.component.mjs +0 -727
- package/esm2020/lib/desy-nav/components/nav/nav.component.mjs +0 -116
- package/esm2020/lib/desy-nav/components/notification/notification.component.mjs +0 -141
- package/esm2020/lib/desy-nav/components/skip-link/skip-link.component.mjs +0 -37
- package/esm2020/lib/desy-nav/desy-nav.module.mjs +0 -221
- package/esm2020/lib/desy-pagination/components/pagination/pagination.component.mjs +0 -167
- package/esm2020/lib/desy-tables/components/table/components/table-header.component.mjs +0 -18
- package/esm2020/lib/desy-tables/components/table/components/table-row.component.mjs +0 -18
- package/esm2020/lib/desy-tables/components/table/table.component.mjs +0 -78
- package/esm2020/lib/desy-tables/components/table-advanced/components/table-advanced-header-cell.component.mjs +0 -47
- package/esm2020/lib/desy-tables/components/table-advanced/components/table-advanced-header.component.mjs +0 -18
- package/esm2020/lib/desy-tables/components/table-advanced/components/table-advanced-row.component.mjs +0 -27
- package/esm2020/lib/desy-tables/components/table-advanced/components/table-advanced-select.component.mjs +0 -28
- package/esm2020/lib/desy-tables/components/table-advanced/table-advanced.component.mjs +0 -342
- package/esm2020/lib/desy-tables/directives/cell.directive.mjs +0 -28
- package/esm2020/lib/desy-tables/directives/focus-clicked-cell.directive.mjs +0 -81
- package/esm2020/lib/desy-tables/directives/row.directive.mjs +0 -29
- package/esm2020/lib/desy-views/components/accordion/accordion-item/accordion-item.component.mjs +0 -57
- package/esm2020/lib/desy-views/components/accordion/accordion.component.mjs +0 -198
- package/esm2020/lib/desy-views/components/accordion-history/accordion-history-item/accordion-history-item.component.mjs +0 -39
- package/esm2020/lib/desy-views/components/accordion-history/accordion-history.component.mjs +0 -19
- package/esm2020/lib/desy-views/components/alert/alert.component.mjs +0 -81
- package/esm2020/lib/desy-views/components/collapsible/collapsible.component.mjs +0 -81
- package/esm2020/lib/desy-views/components/description-list/description-item/description-item.component.mjs +0 -34
- package/esm2020/lib/desy-views/components/description-list/description-list.component.mjs +0 -28
- package/esm2020/lib/desy-views/components/item/item.component.mjs +0 -121
- package/esm2020/lib/desy-views/components/media-object/media-object.component.mjs +0 -115
- package/esm2020/lib/desy-views/components/status/status.component.mjs +0 -97
- package/esm2020/lib/desy-views/components/status-item/status-item.component.mjs +0 -143
- package/esm2020/lib/desy-views/components/tabs/tab-item/tab-item.component.mjs +0 -37
- package/esm2020/lib/desy-views/components/tabs/tabs.component.mjs +0 -199
- package/esm2020/lib/desy-views/components/tooltip/tooltip.component.mjs +0 -202
- package/esm2020/lib/desy-views/services/alert.service.mjs +0 -88
- package/esm2020/lib/shared/components/accessibility/accessibility.component.mjs +0 -45
- package/esm2020/lib/shared/components/content-base/content-base.component.mjs +0 -24
- package/esm2020/lib/shared/decorators/desy-content-child.decorator.mjs +0 -41
- package/esm2020/lib/shared/decorators/desy-on-input-change.decorator.mjs +0 -19
- package/esm2020/lib/shared/directives/attribute-change.directive.mjs +0 -45
- package/esm2020/lib/shared/directives/click-outside.directive.mjs +0 -40
- package/esm2020/lib/shared/directives/content-change.directive.mjs +0 -45
- package/esm2020/lib/shared/directives/custom-inner-content.directive.mjs +0 -60
- package/esm2020/lib/shared/directives/inner-content.directive.mjs +0 -37
- package/esm2020/lib/shared/pipes/external-href.pipe.mjs +0 -32
- package/esm2020/lib/shared/pipes/inner-html.pipe.mjs +0 -20
- package/esm2020/lib/shared/shared.module.mjs +0 -99
- package/esm2020/lib/shared/utils/search-utils.mjs +0 -78
- package/esm2020/lib/shared/utils/string-utils.mjs +0 -18
- package/esm2020/public-api.mjs +0 -221
- package/fesm2015/desy-angular.mjs +0 -11752
- package/fesm2015/desy-angular.mjs.map +0 -1
- package/fesm2020/desy-angular.mjs.map +0 -1
- package/lib/desy-forms/models/checkbox-service-item.component.d.ts +0 -13
- package/lib/desy-forms/models/radio-service-item.component.d.ts +0 -12
- package/lib/desy-forms/services/checkbox.service.d.ts +0 -14
- package/lib/desy-forms/services/radio.service.d.ts +0 -13
- /package/{esm2020 → esm2022}/lib/desy-buttons/interfaces/listbox-item-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-buttons/interfaces/listbox-label-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-commons/interfaces/content-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-commons/interfaces/description-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-commons/interfaces/divider-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-commons/interfaces/icon-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-commons/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-commons/interfaces/title-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-forms/components/tree/interfaces/itree-item.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-forms/components/tree/interfaces/quit-tree-item-focus-options.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-forms/interfaces/accesibility-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-forms/interfaces/error-message-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-forms/interfaces/fieldset-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-forms/interfaces/hint-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-forms/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-forms/interfaces/item-checkbox-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-forms/interfaces/item-divider-date-input-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-forms/interfaces/item-divider-input-group-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-forms/interfaces/item-input-group-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-forms/interfaces/item-radio-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-forms/interfaces/item-radio-with-template-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-forms/interfaces/label-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-forms/interfaces/legend-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-modals/interfaces/modal-button-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-modals/interfaces/modal-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-modals/interfaces/modal-icon-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-modals/interfaces/modal-options.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-modals/interfaces/open-dialog-result.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-nav/interfaces/breadcrumbs.data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-nav/interfaces/error-summary-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-nav/interfaces/footer-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-nav/interfaces/header-dropdown-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-nav/interfaces/header-navigation-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-nav/interfaces/header-navigation-item-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-nav/interfaces/header-offcanvas-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-nav/interfaces/header-subnav-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-nav/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-nav/interfaces/menu-horizontal-item-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-nav/interfaces/menu-horizontal-item-event-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-nav/interfaces/menu-navigation-item-sub-item-sub-item.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-nav/interfaces/menu-navigation-item-sub-item.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-nav/interfaces/menu-navigation.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-nav/interfaces/menu-vertical-items-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-nav/interfaces/menu-vertical-sub-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-nav/interfaces/menu-vertical-sub-items-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-nav/interfaces/menubar-item-sub-item-sub-item.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-nav/interfaces/menubar-item-sub-item.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-nav/interfaces/menubar-item-sub.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-nav/interfaces/menubar-item.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-nav/interfaces/nav-item-event.data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-nav/interfaces/nav-item.data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-nav/interfaces/notification-items-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-nav/interfaces/notification-options.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-pagination/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-pagination/interfaces/pagination-item.data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-tables/interfaces/cell-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-tables/interfaces/head-cell-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-tables/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-tables/interfaces/recalculate-table-params.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-tables/interfaces/row-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-tables/interfaces/wrapper-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-views/interfaces/accordion-header.data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-views/interfaces/accordion-item.data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-views/interfaces/alert-options.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-views/interfaces/description-item.data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-views/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-views/interfaces/open-alert-result.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-views/interfaces/status-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-views/interfaces/status-icon-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-views/interfaces/status-item-title-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-views/interfaces/tabs-items-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-views/interfaces/tabs-panel-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/desy-views/interfaces/term-definition.data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/shared/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/shared/interfaces/accesibility-data.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/shared/utils/focus-utils.mjs +0 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { ChangeDetectorRef, Component, Input } from '@angular/core';
|
|
2
|
+
import { AccessibilityComponent } from '../../../shared/components';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "@angular/common";
|
|
5
|
+
import * as i2 from "../../../shared/directives/inner-content.directive";
|
|
6
|
+
export class LabelComponent extends AccessibilityComponent {
|
|
7
|
+
constructor(changeDetectorRef) {
|
|
8
|
+
super();
|
|
9
|
+
this.changeDetectorRef = changeDetectorRef;
|
|
10
|
+
}
|
|
11
|
+
ngOnInit() {
|
|
12
|
+
this.isHtml = Boolean(this.html);
|
|
13
|
+
}
|
|
14
|
+
detectChanges() {
|
|
15
|
+
this.changeDetectorRef.detectChanges();
|
|
16
|
+
}
|
|
17
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: LabelComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
18
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.7", type: LabelComponent, selector: "desy-label", inputs: { id: "id", classes: "classes", html: "html", text: "text", isPageHeading: "isPageHeading", headingLevel: "headingLevel", for: "for" }, usesInheritance: true, ngImport: i0, template: "<ng-template #labelTemplate>\n <label [desyInnerContent]=\"html ? html : text\" [isHtml]=\"isHtml\" [deleteContentIfEmpty]=\"false\"\n [class]=\"'block' + (classes ? ' ' + classes : '')\"\n [attr.id]=\"id ? id : null\"\n [attr.for]=\"for ? for : null\"\n [attr.role]=\"role ? role : null\"\n [attr.aria-label]=\"ariaLabel ? ariaLabel : null\"\n [attr.aria-describedby]=\"ariaDescribedBy ? ariaDescribedBy : null\"\n [attr.aria-labelledby]=\"ariaLabelledBy ? ariaLabelledBy : null\"\n [attr.aria-hidden]=\"ariaHidden ? ariaHidden : null\"\n [attr.aria-disabled]=\"ariaDisabled ? ariaDisabled : null\"\n [attr.aria-controls]=\"ariaControls ? ariaControls : null\"\n [attr.aria-current]=\"ariaCurrent ? ariaCurrent : null\"\n [attr.aria-live]=\"ariaLive ? ariaLive : null\"\n [attr.aria-expanded]=\"ariaExpanded ? ariaExpanded : null\"\n [attr.aria-errormessage]=\"ariaErrorMessage ? ariaErrorMessage : null\"\n [attr.aria-haspopup]=\"ariaHasPopup ? ariaHasPopup : null\"\n [attr.tabindex]=\"tabindex ? tabindex : null\">\n <ng-content></ng-content></label>\n</ng-template>\n<!-- label -->\n<ng-container *ngIf=\"isPageHeading; else elseBlock\" class=\"block\">\n <ng-container [ngSwitch]=\"headingLevel\">\n <h1 *ngSwitchCase=\"1\" class=\"block\">\n <ng-container *ngTemplateOutlet=\"labelTemplate\"></ng-container>\n </h1>\n <h2 *ngSwitchCase=\"2\" class=\"block\">\n <ng-container *ngTemplateOutlet=\"labelTemplate\"></ng-container>\n </h2>\n <h3 *ngSwitchCase=\"3\" class=\"block\">\n <ng-container *ngTemplateOutlet=\"labelTemplate\"></ng-container>\n </h3>\n <h4 *ngSwitchCase=\"4\" class=\"block\">\n <ng-container *ngTemplateOutlet=\"labelTemplate\"></ng-container>\n </h4>\n <h5 *ngSwitchCase=\"5\" class=\"block\">\n <ng-container *ngTemplateOutlet=\"labelTemplate\"></ng-container>\n </h5>\n <h1 *ngSwitchDefault class=\"block\">\n <ng-container *ngTemplateOutlet=\"labelTemplate\"></ng-container>\n </h1>\n </ng-container>\n</ng-container>\n<ng-template #elseBlock>\n <ng-container *ngTemplateOutlet=\"labelTemplate\"></ng-container>\n</ng-template>\n<!-- /label -->\n\n\n", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i1.NgSwitchDefault, selector: "[ngSwitchDefault]" }, { kind: "directive", type: i2.InnerContentDirective, selector: "[desyInnerContent]", inputs: ["desyInnerContent", "isHtml", "deleteContentIfEmpty"] }] }); }
|
|
19
|
+
}
|
|
20
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: LabelComponent, decorators: [{
|
|
21
|
+
type: Component,
|
|
22
|
+
args: [{ selector: 'desy-label', template: "<ng-template #labelTemplate>\n <label [desyInnerContent]=\"html ? html : text\" [isHtml]=\"isHtml\" [deleteContentIfEmpty]=\"false\"\n [class]=\"'block' + (classes ? ' ' + classes : '')\"\n [attr.id]=\"id ? id : null\"\n [attr.for]=\"for ? for : null\"\n [attr.role]=\"role ? role : null\"\n [attr.aria-label]=\"ariaLabel ? ariaLabel : null\"\n [attr.aria-describedby]=\"ariaDescribedBy ? ariaDescribedBy : null\"\n [attr.aria-labelledby]=\"ariaLabelledBy ? ariaLabelledBy : null\"\n [attr.aria-hidden]=\"ariaHidden ? ariaHidden : null\"\n [attr.aria-disabled]=\"ariaDisabled ? ariaDisabled : null\"\n [attr.aria-controls]=\"ariaControls ? ariaControls : null\"\n [attr.aria-current]=\"ariaCurrent ? ariaCurrent : null\"\n [attr.aria-live]=\"ariaLive ? ariaLive : null\"\n [attr.aria-expanded]=\"ariaExpanded ? ariaExpanded : null\"\n [attr.aria-errormessage]=\"ariaErrorMessage ? ariaErrorMessage : null\"\n [attr.aria-haspopup]=\"ariaHasPopup ? ariaHasPopup : null\"\n [attr.tabindex]=\"tabindex ? tabindex : null\">\n <ng-content></ng-content></label>\n</ng-template>\n<!-- label -->\n<ng-container *ngIf=\"isPageHeading; else elseBlock\" class=\"block\">\n <ng-container [ngSwitch]=\"headingLevel\">\n <h1 *ngSwitchCase=\"1\" class=\"block\">\n <ng-container *ngTemplateOutlet=\"labelTemplate\"></ng-container>\n </h1>\n <h2 *ngSwitchCase=\"2\" class=\"block\">\n <ng-container *ngTemplateOutlet=\"labelTemplate\"></ng-container>\n </h2>\n <h3 *ngSwitchCase=\"3\" class=\"block\">\n <ng-container *ngTemplateOutlet=\"labelTemplate\"></ng-container>\n </h3>\n <h4 *ngSwitchCase=\"4\" class=\"block\">\n <ng-container *ngTemplateOutlet=\"labelTemplate\"></ng-container>\n </h4>\n <h5 *ngSwitchCase=\"5\" class=\"block\">\n <ng-container *ngTemplateOutlet=\"labelTemplate\"></ng-container>\n </h5>\n <h1 *ngSwitchDefault class=\"block\">\n <ng-container *ngTemplateOutlet=\"labelTemplate\"></ng-container>\n </h1>\n </ng-container>\n</ng-container>\n<ng-template #elseBlock>\n <ng-container *ngTemplateOutlet=\"labelTemplate\"></ng-container>\n</ng-template>\n<!-- /label -->\n\n\n" }]
|
|
23
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { id: [{
|
|
24
|
+
type: Input
|
|
25
|
+
}], classes: [{
|
|
26
|
+
type: Input
|
|
27
|
+
}], html: [{
|
|
28
|
+
type: Input
|
|
29
|
+
}], text: [{
|
|
30
|
+
type: Input
|
|
31
|
+
}], isPageHeading: [{
|
|
32
|
+
type: Input
|
|
33
|
+
}], headingLevel: [{
|
|
34
|
+
type: Input
|
|
35
|
+
}], for: [{
|
|
36
|
+
type: Input
|
|
37
|
+
}] } });
|
|
38
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGFiZWwuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvZGVzeS1hbmd1bGFyL3NyYy9saWIvZGVzeS1mb3Jtcy9jb21wb25lbnRzL2xhYmVsL2xhYmVsLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Rlc3ktYW5ndWxhci9zcmMvbGliL2Rlc3ktZm9ybXMvY29tcG9uZW50cy9sYWJlbC9sYWJlbC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsaUJBQWlCLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBUyxNQUFNLGVBQWUsQ0FBQztBQUMxRSxPQUFPLEVBQUMsc0JBQXNCLEVBQUMsTUFBTSw0QkFBNEIsQ0FBQzs7OztBQU9sRSxNQUFNLE9BQU8sY0FBZSxTQUFRLHNCQUFzQjtJQVl4RCxZQUFvQixpQkFBb0M7UUFDdEQsS0FBSyxFQUFFLENBQUM7UUFEVSxzQkFBaUIsR0FBakIsaUJBQWlCLENBQW1CO0lBRXhELENBQUM7SUFFRCxRQUFRO1FBQ04sSUFBSSxDQUFDLE1BQU0sR0FBRyxPQUFPLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO0lBQ25DLENBQUM7SUFFTSxhQUFhO1FBQ2xCLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxhQUFhLEVBQUUsQ0FBQztJQUN6QyxDQUFDOzhHQXRCVSxjQUFjO2tHQUFkLGNBQWMseU5DUjNCLDJwRUFpREE7OzJGRHpDYSxjQUFjO2tCQUoxQixTQUFTOytCQUNFLFlBQVk7d0dBS2IsRUFBRTtzQkFBVixLQUFLO2dCQUNHLE9BQU87c0JBQWYsS0FBSztnQkFDRyxJQUFJO3NCQUFaLEtBQUs7Z0JBQ0csSUFBSTtzQkFBWixLQUFLO2dCQUNHLGFBQWE7c0JBQXJCLEtBQUs7Z0JBQ0csWUFBWTtzQkFBcEIsS0FBSztnQkFDRyxHQUFHO3NCQUFYLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NoYW5nZURldGVjdG9yUmVmLCBDb21wb25lbnQsIElucHV0LCBPbkluaXR9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtBY2Nlc3NpYmlsaXR5Q29tcG9uZW50fSBmcm9tICcuLi8uLi8uLi9zaGFyZWQvY29tcG9uZW50cyc7XG5cblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZGVzeS1sYWJlbCcsXG4gIHRlbXBsYXRlVXJsOiAnLi9sYWJlbC5jb21wb25lbnQuaHRtbCdcbn0pXG5leHBvcnQgY2xhc3MgTGFiZWxDb21wb25lbnQgZXh0ZW5kcyBBY2Nlc3NpYmlsaXR5Q29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0e1xuXG4gIEBJbnB1dCgpIGlkOiBzdHJpbmc7XG4gIEBJbnB1dCgpIGNsYXNzZXM6IHN0cmluZztcbiAgQElucHV0KCkgaHRtbDogc3RyaW5nO1xuICBASW5wdXQoKSB0ZXh0OiBzdHJpbmc7XG4gIEBJbnB1dCgpIGlzUGFnZUhlYWRpbmc6IGJvb2xlYW47XG4gIEBJbnB1dCgpIGhlYWRpbmdMZXZlbDogbnVtYmVyO1xuICBASW5wdXQoKSBmb3I6IHN0cmluZztcblxuICBpc0h0bWw6IGJvb2xlYW47XG5cbiAgY29uc3RydWN0b3IocHJpdmF0ZSBjaGFuZ2VEZXRlY3RvclJlZjogQ2hhbmdlRGV0ZWN0b3JSZWYpIHtcbiAgICBzdXBlcigpO1xuICB9XG5cbiAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgdGhpcy5pc0h0bWwgPSBCb29sZWFuKHRoaXMuaHRtbCk7XG4gIH1cblxuICBwdWJsaWMgZGV0ZWN0Q2hhbmdlcygpOiB2b2lkIHtcbiAgICB0aGlzLmNoYW5nZURldGVjdG9yUmVmLmRldGVjdENoYW5nZXMoKTtcbiAgfVxufVxuIiwiPG5nLXRlbXBsYXRlICNsYWJlbFRlbXBsYXRlPlxuICA8bGFiZWwgW2Rlc3lJbm5lckNvbnRlbnRdPVwiaHRtbCA/IGh0bWwgOiB0ZXh0XCIgW2lzSHRtbF09XCJpc0h0bWxcIiBbZGVsZXRlQ29udGVudElmRW1wdHldPVwiZmFsc2VcIlxuICAgIFtjbGFzc109XCInYmxvY2snICsgKGNsYXNzZXMgPyAnICcgKyBjbGFzc2VzIDogJycpXCJcbiAgICBbYXR0ci5pZF09XCJpZCA/IGlkIDogbnVsbFwiXG4gICAgW2F0dHIuZm9yXT1cImZvciA/IGZvciA6IG51bGxcIlxuICAgIFthdHRyLnJvbGVdPVwicm9sZSA/IHJvbGUgOiBudWxsXCJcbiAgICBbYXR0ci5hcmlhLWxhYmVsXT1cImFyaWFMYWJlbCA/IGFyaWFMYWJlbCA6IG51bGxcIlxuICAgIFthdHRyLmFyaWEtZGVzY3JpYmVkYnldPVwiYXJpYURlc2NyaWJlZEJ5ID8gYXJpYURlc2NyaWJlZEJ5IDogbnVsbFwiXG4gICAgW2F0dHIuYXJpYS1sYWJlbGxlZGJ5XT1cImFyaWFMYWJlbGxlZEJ5ID8gYXJpYUxhYmVsbGVkQnkgOiBudWxsXCJcbiAgICBbYXR0ci5hcmlhLWhpZGRlbl09XCJhcmlhSGlkZGVuID8gYXJpYUhpZGRlbiA6IG51bGxcIlxuICAgIFthdHRyLmFyaWEtZGlzYWJsZWRdPVwiYXJpYURpc2FibGVkID8gYXJpYURpc2FibGVkIDogbnVsbFwiXG4gICAgW2F0dHIuYXJpYS1jb250cm9sc109XCJhcmlhQ29udHJvbHMgPyBhcmlhQ29udHJvbHMgOiBudWxsXCJcbiAgICBbYXR0ci5hcmlhLWN1cnJlbnRdPVwiYXJpYUN1cnJlbnQgPyBhcmlhQ3VycmVudCA6IG51bGxcIlxuICAgIFthdHRyLmFyaWEtbGl2ZV09XCJhcmlhTGl2ZSA/IGFyaWFMaXZlIDogbnVsbFwiXG4gICAgW2F0dHIuYXJpYS1leHBhbmRlZF09XCJhcmlhRXhwYW5kZWQgPyBhcmlhRXhwYW5kZWQgOiBudWxsXCJcbiAgICBbYXR0ci5hcmlhLWVycm9ybWVzc2FnZV09XCJhcmlhRXJyb3JNZXNzYWdlID8gYXJpYUVycm9yTWVzc2FnZSA6IG51bGxcIlxuICAgIFthdHRyLmFyaWEtaGFzcG9wdXBdPVwiYXJpYUhhc1BvcHVwID8gYXJpYUhhc1BvcHVwIDogbnVsbFwiXG4gICAgW2F0dHIudGFiaW5kZXhdPVwidGFiaW5kZXggPyB0YWJpbmRleCA6IG51bGxcIj5cbiAgPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PjwvbGFiZWw+XG48L25nLXRlbXBsYXRlPlxuPCEtLSBsYWJlbCAtLT5cbjxuZy1jb250YWluZXIgKm5nSWY9XCJpc1BhZ2VIZWFkaW5nOyBlbHNlIGVsc2VCbG9ja1wiIGNsYXNzPVwiYmxvY2tcIj5cbiAgPG5nLWNvbnRhaW5lciBbbmdTd2l0Y2hdPVwiaGVhZGluZ0xldmVsXCI+XG4gICAgPGgxICpuZ1N3aXRjaENhc2U9XCIxXCIgY2xhc3M9XCJibG9ja1wiPlxuICAgICAgPG5nLWNvbnRhaW5lciAqbmdUZW1wbGF0ZU91dGxldD1cImxhYmVsVGVtcGxhdGVcIj48L25nLWNvbnRhaW5lcj5cbiAgICA8L2gxPlxuICAgIDxoMiAqbmdTd2l0Y2hDYXNlPVwiMlwiIGNsYXNzPVwiYmxvY2tcIj5cbiAgICAgIDxuZy1jb250YWluZXIgKm5nVGVtcGxhdGVPdXRsZXQ9XCJsYWJlbFRlbXBsYXRlXCI+PC9uZy1jb250YWluZXI+XG4gICAgPC9oMj5cbiAgICA8aDMgKm5nU3dpdGNoQ2FzZT1cIjNcIiBjbGFzcz1cImJsb2NrXCI+XG4gICAgICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwibGFiZWxUZW1wbGF0ZVwiPjwvbmctY29udGFpbmVyPlxuICAgIDwvaDM+XG4gICAgPGg0ICpuZ1N3aXRjaENhc2U9XCI0XCIgY2xhc3M9XCJibG9ja1wiPlxuICAgICAgPG5nLWNvbnRhaW5lciAqbmdUZW1wbGF0ZU91dGxldD1cImxhYmVsVGVtcGxhdGVcIj48L25nLWNvbnRhaW5lcj5cbiAgICA8L2g0PlxuICAgIDxoNSAqbmdTd2l0Y2hDYXNlPVwiNVwiIGNsYXNzPVwiYmxvY2tcIj5cbiAgICAgIDxuZy1jb250YWluZXIgKm5nVGVtcGxhdGVPdXRsZXQ9XCJsYWJlbFRlbXBsYXRlXCI+PC9uZy1jb250YWluZXI+XG4gICAgPC9oNT5cbiAgICA8aDEgKm5nU3dpdGNoRGVmYXVsdCBjbGFzcz1cImJsb2NrXCI+XG4gICAgICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwibGFiZWxUZW1wbGF0ZVwiPjwvbmctY29udGFpbmVyPlxuICAgIDwvaDE+XG4gIDwvbmctY29udGFpbmVyPlxuPC9uZy1jb250YWluZXI+XG48bmctdGVtcGxhdGUgI2Vsc2VCbG9jaz5cbiAgPG5nLWNvbnRhaW5lciAqbmdUZW1wbGF0ZU91dGxldD1cImxhYmVsVGVtcGxhdGVcIj48L25nLWNvbnRhaW5lcj5cbjwvbmctdGVtcGxhdGU+XG48IS0tIC9sYWJlbCAtLT5cblxuXG4iXX0=
|
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
import { ChangeDetectorRef, Component, ContentChildren, ElementRef, EventEmitter, Input, Output, QueryList, ViewChild } from '@angular/core';
|
|
2
|
+
import { ContentBaseComponent } from '../../../../shared/components';
|
|
3
|
+
import { LabelComponent } from '../../label/label.component';
|
|
4
|
+
import { ContentComponent } from '../../../../desy-commons/components/content/content.component';
|
|
5
|
+
import { animate, animateChild, query, state, style, transition, trigger } from '@angular/animations';
|
|
6
|
+
import { HintComponent } from '../../hint/hint.component';
|
|
7
|
+
import { RadiosParentComponent } from '../radios-parent.component';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
import * as i1 from "../radios-parent.component";
|
|
10
|
+
import * as i2 from "@angular/common";
|
|
11
|
+
import * as i3 from "../../../../shared/directives/custom-inner-content.directive";
|
|
12
|
+
import * as i4 from "../../label/label.component";
|
|
13
|
+
import * as i5 from "../../../../shared/pipes/make-html-list.pipe";
|
|
14
|
+
export class RadioItemComponent extends ContentBaseComponent {
|
|
15
|
+
constructor(radios, changeDetectorRef) {
|
|
16
|
+
super();
|
|
17
|
+
this.radios = radios;
|
|
18
|
+
this.changeDetectorRef = changeDetectorRef;
|
|
19
|
+
this.checkedChange = new EventEmitter();
|
|
20
|
+
this.index = 0;
|
|
21
|
+
}
|
|
22
|
+
ngOnInit() {
|
|
23
|
+
this.radios.markForUpdateRadiosIds();
|
|
24
|
+
}
|
|
25
|
+
ngOnDestroy() {
|
|
26
|
+
this.radios.markForUpdateRadiosIds();
|
|
27
|
+
}
|
|
28
|
+
ngOnChanges(changes) {
|
|
29
|
+
if (this.checked !== this.lastChecked && this.isInit()) {
|
|
30
|
+
this.setChecked(this.checked);
|
|
31
|
+
this.radios.updateValueFromRadioItems();
|
|
32
|
+
}
|
|
33
|
+
else if (this.lastValue !== undefined && this.lastValue !== this.value) {
|
|
34
|
+
this.radios.updateValueFromRadioItems();
|
|
35
|
+
}
|
|
36
|
+
this.lastValue = this.value;
|
|
37
|
+
if (this.id !== this.radioId) {
|
|
38
|
+
this.radios.markForUpdateRadiosIds();
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
ngAfterViewInit() {
|
|
42
|
+
this.setChecked(this.checked);
|
|
43
|
+
if (this.checked !== null && this.checked !== undefined) {
|
|
44
|
+
this.radios.updateValueFromRadioItems();
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
setChecked(checked) {
|
|
48
|
+
this.checked = checked;
|
|
49
|
+
this.lastChecked = checked;
|
|
50
|
+
this.checkedChange.emit(checked);
|
|
51
|
+
this.changeDetectorRef.detectChanges();
|
|
52
|
+
}
|
|
53
|
+
getItemHintId() {
|
|
54
|
+
return this.hintComponentList && this.hintComponentList.length > 0 && this.radioId ? this.radioId + '-item-hint' : null;
|
|
55
|
+
}
|
|
56
|
+
hasChanged() {
|
|
57
|
+
this.setChecked(this.isInputChecked());
|
|
58
|
+
this.radios.updateValueFromRadioItems();
|
|
59
|
+
}
|
|
60
|
+
isInit() {
|
|
61
|
+
return !!this.inputElement;
|
|
62
|
+
}
|
|
63
|
+
isInputChecked() {
|
|
64
|
+
return this.inputElement ? this.inputElement.nativeElement.checked : null;
|
|
65
|
+
}
|
|
66
|
+
updateRadioId(index) {
|
|
67
|
+
if (this.id) {
|
|
68
|
+
this.radioId = this.id;
|
|
69
|
+
}
|
|
70
|
+
else {
|
|
71
|
+
const idPrefix = this.radios.idPrefix ? this.radios.idPrefix : this.radios.name;
|
|
72
|
+
if (index === 0) {
|
|
73
|
+
this.radioId = idPrefix;
|
|
74
|
+
}
|
|
75
|
+
else {
|
|
76
|
+
this.radioId = `${idPrefix}-${index}`;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
if (this.labelComponentList && this.labelComponentList.length > 0) {
|
|
80
|
+
this.labelComponentList.first.for = this.radioId;
|
|
81
|
+
}
|
|
82
|
+
if (this.hintComponentList && this.hintComponentList.length > 0) {
|
|
83
|
+
this.hintComponentList.first.id = this.getItemHintId();
|
|
84
|
+
}
|
|
85
|
+
this.changeDetectorRef.detectChanges();
|
|
86
|
+
}
|
|
87
|
+
hasDividers() {
|
|
88
|
+
return this.radios.hasDividers;
|
|
89
|
+
}
|
|
90
|
+
hasError() {
|
|
91
|
+
return this.radios.hasErrorsMessage();
|
|
92
|
+
}
|
|
93
|
+
getNameRadio() {
|
|
94
|
+
return this.radios.name;
|
|
95
|
+
}
|
|
96
|
+
getDescribedBy() {
|
|
97
|
+
return !this.radios.hasFieldset() ? this.radios.describedBy : null;
|
|
98
|
+
}
|
|
99
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: RadioItemComponent, deps: [{ token: i1.RadiosParentComponent }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
100
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.7", type: RadioItemComponent, selector: "desy-radio-item", inputs: { id: "id", name: "name", value: "value", conditional: "conditional", disabled: "disabled", divider: "divider", classes: "classes", checked: "checked" }, outputs: { checkedChange: "checkedChange" }, queries: [{ propertyName: "labelComponentList", predicate: LabelComponent }, { propertyName: "hintComponentList", predicate: HintComponent }, { propertyName: "conditionalContentList", predicate: ContentComponent }], viewQueries: [{ propertyName: "inputElement", first: true, predicate: ["input"], descendants: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<div [ngClass]=\"{'border-t border-b border-neutral-base -mb-px': hasDividers()}\" [class]=\"classes\">\n <div *ngIf=\"divider\"><p>{{ divider }}</p></div>\n <div *ngIf=\"!divider\">\n <div class=\"relative flex items-start py-base\">\n <div class=\"flex items-center mx-sm\">\n <input #input class=\"w-6 h-6 text-primary-base transition duration-150 ease-in-out border-black focus:border-black focus:shadow-outline-focus-input focus:ring-4 focus:ring-offset-0 focus:ring-warning-base disabled:bg-neutral-base disabled:border-neutral-base text-primary-base\"\n [attr.id]=\"radioId\"\n [attr.name]=\"name ? name : getNameRadio()\"\n type=\"radio\"\n [value]=\"value\" (change)=\"hasChanged()\"\n [checked]=\"checked\"\n [attr.disabled]=\"disabled || parentDisabled ? true : null\"\n [attr.aria-controls]=\"conditionalContentList && conditionalContentList.length > 0 ? 'conditional-' + this.radioId : null\"\n [attr.aria-describedby]=\"[getDescribedBy(), getItemHintId()] | makeHtmlList:null\"\n [attr.aria-invalid]=\"hasError ? true : null\"\n \n [attr.role]=\"role ? role : null\"\n [attr.aria-label]=\"ariaLabel ? ariaLabel : null\"\n [attr.aria-labelledby]=\"ariaLabelledBy ? ariaLabelledBy : null\"\n [attr.aria-hidden]=\"ariaHidden ? ariaHidden : null\"\n [attr.aria-disabled]=\"ariaDisabled ? ariaDisabled : null\"\n [attr.aria-current]=\"ariaCurrent ? ariaCurrent : null\"\n [attr.aria-live]=\"ariaLive ? ariaLive : null\"\n [attr.aria-expanded]=\"ariaExpanded ? ariaExpanded : null\"\n [attr.aria-errormessage]=\"ariaErrorMessage ? ariaErrorMessage : null\"\n [attr.aria-haspopup]=\"ariaHasPopup ? ariaHasPopup : null\"\n [attr.tabindex]=\"tabindex ? tabindex : null\">\n </div>\n \n <div class=\"pt-0.5 leading-5\">\n <ng-container *ngIf=\"labelComponentList && labelComponentList.length > 0\">\n <ng-content select=\"desy-label\"></ng-content>\n </ng-container>\n <ng-container *ngIf=\"!(labelComponentList && labelComponentList.length > 0)\">\n <desy-label [for]=\"radioId\">\n <ng-content></ng-content>\n </desy-label>\n </ng-container>\n \n <ng-content select=\"desy-hint\"></ng-content>\n </div>\n </div>\n </div>\n <div *ngIf=\"conditional && conditionalContentList && conditionalContentList.length > 0 && checked\" @displayConditional\n class=\"mb-lg ml-5 pt-sm pb-base pl-6 origin-top-left border-l-2 border-primary-base\"\n [attr.id]=\"'conditional-' + this.radioId\">\n <ng-container *desyCustomInnerContent=\"{ component: conditionalContentList.first }\"></ng-container>\n </div>\n</div>\n\n", dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.CustomInnerContentDirective, selector: "[desyCustomInnerContent]", inputs: ["desyCustomInnerContent"] }, { kind: "component", type: i4.LabelComponent, selector: "desy-label", inputs: ["id", "classes", "html", "text", "isPageHeading", "headingLevel", "for"] }, { kind: "pipe", type: i5.MakeHtmlListPipe, name: "makeHtmlList" }], animations: [
|
|
101
|
+
trigger('displayConditional', [
|
|
102
|
+
state('void', style({
|
|
103
|
+
opacity: '0.0',
|
|
104
|
+
transform: 'scale(0.95)'
|
|
105
|
+
})),
|
|
106
|
+
state('*', style({
|
|
107
|
+
opacity: '1.0',
|
|
108
|
+
transform: 'scale(1.0)'
|
|
109
|
+
})),
|
|
110
|
+
transition(':enter', [
|
|
111
|
+
animate('100ms ease-out')
|
|
112
|
+
]),
|
|
113
|
+
transition('* => *', [
|
|
114
|
+
query('@*', animateChild(), { optional: true })
|
|
115
|
+
])
|
|
116
|
+
])
|
|
117
|
+
] }); }
|
|
118
|
+
}
|
|
119
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: RadioItemComponent, decorators: [{
|
|
120
|
+
type: Component,
|
|
121
|
+
args: [{ selector: 'desy-radio-item', animations: [
|
|
122
|
+
trigger('displayConditional', [
|
|
123
|
+
state('void', style({
|
|
124
|
+
opacity: '0.0',
|
|
125
|
+
transform: 'scale(0.95)'
|
|
126
|
+
})),
|
|
127
|
+
state('*', style({
|
|
128
|
+
opacity: '1.0',
|
|
129
|
+
transform: 'scale(1.0)'
|
|
130
|
+
})),
|
|
131
|
+
transition(':enter', [
|
|
132
|
+
animate('100ms ease-out')
|
|
133
|
+
]),
|
|
134
|
+
transition('* => *', [
|
|
135
|
+
query('@*', animateChild(), { optional: true })
|
|
136
|
+
])
|
|
137
|
+
])
|
|
138
|
+
], template: "<div [ngClass]=\"{'border-t border-b border-neutral-base -mb-px': hasDividers()}\" [class]=\"classes\">\n <div *ngIf=\"divider\"><p>{{ divider }}</p></div>\n <div *ngIf=\"!divider\">\n <div class=\"relative flex items-start py-base\">\n <div class=\"flex items-center mx-sm\">\n <input #input class=\"w-6 h-6 text-primary-base transition duration-150 ease-in-out border-black focus:border-black focus:shadow-outline-focus-input focus:ring-4 focus:ring-offset-0 focus:ring-warning-base disabled:bg-neutral-base disabled:border-neutral-base text-primary-base\"\n [attr.id]=\"radioId\"\n [attr.name]=\"name ? name : getNameRadio()\"\n type=\"radio\"\n [value]=\"value\" (change)=\"hasChanged()\"\n [checked]=\"checked\"\n [attr.disabled]=\"disabled || parentDisabled ? true : null\"\n [attr.aria-controls]=\"conditionalContentList && conditionalContentList.length > 0 ? 'conditional-' + this.radioId : null\"\n [attr.aria-describedby]=\"[getDescribedBy(), getItemHintId()] | makeHtmlList:null\"\n [attr.aria-invalid]=\"hasError ? true : null\"\n \n [attr.role]=\"role ? role : null\"\n [attr.aria-label]=\"ariaLabel ? ariaLabel : null\"\n [attr.aria-labelledby]=\"ariaLabelledBy ? ariaLabelledBy : null\"\n [attr.aria-hidden]=\"ariaHidden ? ariaHidden : null\"\n [attr.aria-disabled]=\"ariaDisabled ? ariaDisabled : null\"\n [attr.aria-current]=\"ariaCurrent ? ariaCurrent : null\"\n [attr.aria-live]=\"ariaLive ? ariaLive : null\"\n [attr.aria-expanded]=\"ariaExpanded ? ariaExpanded : null\"\n [attr.aria-errormessage]=\"ariaErrorMessage ? ariaErrorMessage : null\"\n [attr.aria-haspopup]=\"ariaHasPopup ? ariaHasPopup : null\"\n [attr.tabindex]=\"tabindex ? tabindex : null\">\n </div>\n \n <div class=\"pt-0.5 leading-5\">\n <ng-container *ngIf=\"labelComponentList && labelComponentList.length > 0\">\n <ng-content select=\"desy-label\"></ng-content>\n </ng-container>\n <ng-container *ngIf=\"!(labelComponentList && labelComponentList.length > 0)\">\n <desy-label [for]=\"radioId\">\n <ng-content></ng-content>\n </desy-label>\n </ng-container>\n \n <ng-content select=\"desy-hint\"></ng-content>\n </div>\n </div>\n </div>\n <div *ngIf=\"conditional && conditionalContentList && conditionalContentList.length > 0 && checked\" @displayConditional\n class=\"mb-lg ml-5 pt-sm pb-base pl-6 origin-top-left border-l-2 border-primary-base\"\n [attr.id]=\"'conditional-' + this.radioId\">\n <ng-container *desyCustomInnerContent=\"{ component: conditionalContentList.first }\"></ng-container>\n </div>\n</div>\n\n" }]
|
|
139
|
+
}], ctorParameters: function () { return [{ type: i1.RadiosParentComponent }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { inputElement: [{
|
|
140
|
+
type: ViewChild,
|
|
141
|
+
args: ['input']
|
|
142
|
+
}], id: [{
|
|
143
|
+
type: Input
|
|
144
|
+
}], name: [{
|
|
145
|
+
type: Input
|
|
146
|
+
}], value: [{
|
|
147
|
+
type: Input
|
|
148
|
+
}], conditional: [{
|
|
149
|
+
type: Input
|
|
150
|
+
}], disabled: [{
|
|
151
|
+
type: Input
|
|
152
|
+
}], divider: [{
|
|
153
|
+
type: Input
|
|
154
|
+
}], classes: [{
|
|
155
|
+
type: Input
|
|
156
|
+
}], labelComponentList: [{
|
|
157
|
+
type: ContentChildren,
|
|
158
|
+
args: [LabelComponent]
|
|
159
|
+
}], hintComponentList: [{
|
|
160
|
+
type: ContentChildren,
|
|
161
|
+
args: [HintComponent]
|
|
162
|
+
}], conditionalContentList: [{
|
|
163
|
+
type: ContentChildren,
|
|
164
|
+
args: [ContentComponent]
|
|
165
|
+
}], checked: [{
|
|
166
|
+
type: Input
|
|
167
|
+
}], checkedChange: [{
|
|
168
|
+
type: Output
|
|
169
|
+
}] } });
|
|
170
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmFkaW8taXRlbS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9kZXN5LWFuZ3VsYXIvc3JjL2xpYi9kZXN5LWZvcm1zL2NvbXBvbmVudHMvcmFkaW9zL3JhZGlvLWl0ZW0vcmFkaW8taXRlbS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9kZXN5LWFuZ3VsYXIvc3JjL2xpYi9kZXN5LWZvcm1zL2NvbXBvbmVudHMvcmFkaW9zL3JhZGlvLWl0ZW0vcmFkaW8taXRlbS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBRUwsaUJBQWlCLEVBQ2pCLFNBQVMsRUFDVCxlQUFlLEVBQ2YsVUFBVSxFQUNWLFlBQVksRUFFWixLQUFLLEVBRUwsTUFBTSxFQUNOLFNBQVMsRUFFVCxTQUFTLEVBQ1YsTUFBTSxlQUFlLENBQUM7QUFFdkIsT0FBTyxFQUFDLG9CQUFvQixFQUFDLE1BQU0sK0JBQStCLENBQUM7QUFDbkUsT0FBTyxFQUFDLGNBQWMsRUFBQyxNQUFNLDZCQUE2QixDQUFDO0FBQzNELE9BQU8sRUFBQyxnQkFBZ0IsRUFBQyxNQUFNLCtEQUErRCxDQUFDO0FBQy9GLE9BQU8sRUFBQyxPQUFPLEVBQUUsWUFBWSxFQUFFLEtBQUssRUFBRSxLQUFLLEVBQUUsS0FBSyxFQUFFLFVBQVUsRUFBRSxPQUFPLEVBQUMsTUFBTSxxQkFBcUIsQ0FBQztBQUNwRyxPQUFPLEVBQUMsYUFBYSxFQUFDLE1BQU0sMkJBQTJCLENBQUM7QUFDeEQsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sNEJBQTRCLENBQUM7Ozs7Ozs7QUF5Qm5FLE1BQU0sT0FBTyxrQkFBbUIsU0FBUSxvQkFBb0I7SUEwQjFELFlBQW9CLE1BQTZCLEVBQVUsaUJBQW9DO1FBQzdGLEtBQUssRUFBRSxDQUFDO1FBRFUsV0FBTSxHQUFOLE1BQU0s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SW1CLFlBQVk7c0JBQS9CLFNBQVM7dUJBQUMsT0FBTztnQkFFVCxFQUFFO3NCQUFWLEtBQUs7Z0JBQ0csSUFBSTtzQkFBWixLQUFLO2dCQUNHLEtBQUs7c0JBQWIsS0FBSztnQkFDRyxXQUFXO3NCQUFuQixLQUFLO2dCQUNHLFFBQVE7c0JBQWhCLEtBQUs7Z0JBQ0csT0FBTztzQkFBZixLQUFLO2dCQUNHLE9BQU87c0JBQWYsS0FBSztnQkFFMkIsa0JBQWtCO3NCQUFsRCxlQUFlO3VCQUFDLGNBQWM7Z0JBQ0MsaUJBQWlCO3NCQUFoRCxlQUFlO3VCQUFDLGFBQWE7Z0JBQ0ssc0JBQXNCO3NCQUF4RCxlQUFlO3VCQUFDLGdCQUFnQjtnQkFFeEIsT0FBTztzQkFBZixLQUFLO2dCQUNJLGFBQWE7c0JBQXRCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBBZnRlclZpZXdJbml0LFxuICBDaGFuZ2VEZXRlY3RvclJlZixcbiAgQ29tcG9uZW50LFxuICBDb250ZW50Q2hpbGRyZW4sXG4gIEVsZW1lbnRSZWYsXG4gIEV2ZW50RW1pdHRlcixcbiAgSG9zdCxcbiAgSW5wdXQsXG4gIE9uQ2hhbmdlcywgT25EZXN0cm95LCBPbkluaXQsXG4gIE91dHB1dCxcbiAgUXVlcnlMaXN0LFxuICBTaW1wbGVDaGFuZ2VzLFxuICBWaWV3Q2hpbGRcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0l0ZW1SYWRpb0RhdGF9IGZyb20gJy4uLy4uLy4uL2ludGVyZmFjZXMnO1xuaW1wb3J0IHtDb250ZW50QmFzZUNvbXBvbmVudH0gZnJvbSAnLi4vLi4vLi4vLi4vc2hhcmVkL2NvbXBvbmVudHMnO1xuaW1wb3J0IHtMYWJlbENvbXBvbmVudH0gZnJvbSAnLi4vLi4vbGFiZWwvbGFiZWwuY29tcG9uZW50JztcbmltcG9ydCB7Q29udGVudENvbXBvbmVudH0gZnJvbSAnLi4vLi4vLi4vLi4vZGVzeS1jb21tb25zL2NvbXBvbmVudHMvY29udGVudC9jb250ZW50LmNvbXBvbmVudCc7XG5pbXBvcnQge2FuaW1hdGUsIGFuaW1hdGVDaGlsZCwgcXVlcnksIHN0YXRlLCBzdHlsZSwgdHJhbnNpdGlvbiwgdHJpZ2dlcn0gZnJvbSAnQGFuZ3VsYXIvYW5pbWF0aW9ucyc7XG5pbXBvcnQge0hpbnRDb21wb25lbnR9IGZyb20gJy4uLy4uL2hpbnQvaGludC5jb21wb25lbnQnO1xuaW1wb3J0IHsgUmFkaW9zUGFyZW50Q29tcG9uZW50IH0gZnJvbSAnLi4vcmFkaW9zLXBhcmVudC5jb21wb25lbnQnO1xuXG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2Rlc3ktcmFkaW8taXRlbScsXG4gIHRlbXBsYXRlVXJsOiAnLi9yYWRpby1pdGVtLmNvbXBvbmVudC5odG1sJyxcbiAgYW5pbWF0aW9uczogW1xuICAgIHRyaWdnZXIoJ2Rpc3BsYXlDb25kaXRpb25hbCcsIFtcbiAgICAgIHN0YXRlKCd2b2lkJywgc3R5bGUoe1xuICAgICAgICBvcGFjaXR5OiAnMC4wJyxcbiAgICAgICAgdHJhbnNmb3JtOiAnc2NhbGUoMC45NSknXG4gICAgICB9KSksXG4gICAgICBzdGF0ZSgnKicsIHN0eWxlKHtcbiAgICAgICAgb3BhY2l0eTogJzEuMCcsXG4gICAgICAgIHRyYW5zZm9ybTogJ3NjYWxlKDEuMCknXG4gICAgICB9KSksXG4gICAgICB0cmFuc2l0aW9uKCc6ZW50ZXInLCBbXG4gICAgICAgIGFuaW1hdGUoJzEwMG1zIGVhc2Utb3V0JylcbiAgICAgIF0pLFxuICAgICAgdHJhbnNpdGlvbignKiA9PiAqJywgW1xuICAgICAgICBxdWVyeSgnQConLCBhbmltYXRlQ2hpbGQoKSwge29wdGlvbmFsOiB0cnVlfSlcbiAgICAgIF0pXG4gICAgXSlcbiAgXVxufSlcbmV4cG9ydCBjbGFzcyBSYWRpb0l0ZW1Db21wb25lbnQgZXh0ZW5kcyBDb250ZW50QmFzZUNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCwgT25DaGFuZ2VzLCBPbkRlc3Ryb3ksIEFmdGVyVmlld0luaXQsIEl0ZW1SYWRpb0RhdGEge1xuXG4gIEBWaWV3Q2hpbGQoJ2lucHV0JykgaW5wdXRFbGVtZW50OiBFbGVtZW50UmVmO1xuXG4gIEBJbnB1dCgpIGlkOiBzdHJpbmc7XG4gIEBJbnB1dCgpIG5hbWU6IHN0cmluZztcbiAgQElucHV0KCkgdmFsdWU6IGFueTtcbiAgQElucHV0KCkgY29uZGl0aW9uYWw6IGJvb2xlYW47XG4gIEBJbnB1dCgpIGRpc2FibGVkOiBib29sZWFuO1xuICBASW5wdXQoKSBkaXZpZGVyOiBzdHJpbmc7XG4gIEBJbnB1dCgpIGNsYXNzZXM6IHN0cmluZztcblxuICBAQ29udGVudENoaWxkcmVuKExhYmVsQ29tcG9uZW50KSBsYWJlbENvbXBvbmVudExpc3Q6IFF1ZXJ5TGlzdDxMYWJlbENvbXBvbmVudD47XG4gIEBDb250ZW50Q2hpbGRyZW4oSGludENvbXBvbmVudCkgaGludENvbXBvbmVudExpc3Q6IFF1ZXJ5TGlzdDxIaW50Q29tcG9uZW50PjtcbiAgQENvbnRlbnRDaGlsZHJlbihDb250ZW50Q29tcG9uZW50KSBjb25kaXRpb25hbENvbnRlbnRMaXN0OiBRdWVyeUxpc3Q8Q29udGVudENvbXBvbmVudD47XG5cbiAgQElucHV0KCkgY2hlY2tlZDogYm9vbGVhbjtcbiAgQE91dHB1dCgpIGNoZWNrZWRDaGFuZ2U6IEV2ZW50RW1pdHRlcjxhbnk+ID0gbmV3IEV2ZW50RW1pdHRlcjxhbnk+KCk7XG5cbiAgaW5kZXggPSAwO1xuICBsYXN0Q2hlY2tlZDtcbiAgbGFzdFZhbHVlO1xuICByYWRpb0lkO1xuXG4gIHBhcmVudERpc2FibGVkOiBib29sZWFuO1xuXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgcmFkaW9zOiBSYWRpb3NQYXJlbnRDb21wb25lbnQsIHByaXZhdGUgY2hhbmdlRGV0ZWN0b3JSZWY6IENoYW5nZURldGVjdG9yUmVmKSB7XG4gICAgc3VwZXIoKTtcbiAgfVxuXG4gIG5nT25Jbml0KCk6IHZvaWQge1xuICAgIHRoaXMucmFkaW9zLm1hcmtGb3JVcGRhdGVSYWRpb3NJZHMoKTtcbiAgfVxuXG4gIG5nT25EZXN0cm95KCk6IHZvaWQge1xuICAgIHRoaXMucmFkaW9zLm1hcmtGb3JVcGRhdGVSYWRpb3NJZHMoKTtcbiAgfVxuXG4gIG5nT25DaGFuZ2VzKGNoYW5nZXM6IFNpbXBsZUNoYW5nZXMpOiB2b2lkIHtcbiAgICAgaWYgKHRoaXMuY2hlY2tlZCAhPT0gdGhpcy5sYXN0Q2hlY2tlZCAmJiB0aGlzLmlzSW5pdCgpKSB7XG4gICAgICAgdGhpcy5zZXRDaGVja2VkKHRoaXMuY2hlY2tlZCk7XG4gICAgICB0aGlzLnJhZGlvcy51cGRhdGVWYWx1ZUZyb21SYWRpb0l0ZW1zKCk7XG4gICAgIH0gZWxzZSBpZiAodGhpcy5sYXN0VmFsdWUgIT09IHVuZGVmaW5lZCAmJiB0aGlzLmxhc3RWYWx1ZSAhPT0gdGhpcy52YWx1ZSkge1xuICAgICAgdGhpcy5yYWRpb3MudXBkYXRlVmFsdWVGcm9tUmFkaW9JdGVtcygpO1xuICAgICB9XG4gICAgIHRoaXMubGFzdFZhbHVlID0gdGhpcy52YWx1ZTtcblxuICAgICBpZiAodGhpcy5pZCAhPT0gdGhpcy5yYWRpb0lkKSB7XG4gICAgICB0aGlzLnJhZGlvcy5tYXJrRm9yVXBkYXRlUmFkaW9zSWRzKCk7XG4gICAgfVxuICB9XG5cbiAgbmdBZnRlclZpZXdJbml0KCk6IHZvaWQge1xuICAgIHRoaXMuc2V0Q2hlY2tlZCh0aGlzLmNoZWNrZWQpO1xuICAgIGlmICh0aGlzLmNoZWNrZWQgIT09IG51bGwgJiYgdGhpcy5jaGVja2VkICE9PSB1bmRlZmluZWQpIHtcbiAgICAgIHRoaXMucmFkaW9zLnVwZGF0ZVZhbHVlRnJvbVJhZGlvSXRlbXMoKTtcbiAgICB9XG4gIH1cblxuICBzZXRDaGVja2VkKGNoZWNrZWQ6IGJvb2xlYW4pOiB2b2lkIHtcbiAgICB0aGlzLmNoZWNrZWQgPSBjaGVja2VkO1xuICAgIHRoaXMubGFzdENoZWNrZWQgPSBjaGVja2VkO1xuICAgIHRoaXMuY2hlY2tlZENoYW5nZS5lbWl0KGNoZWNrZWQpO1xuICAgIHRoaXMuY2hhbmdlRGV0ZWN0b3JSZWYuZGV0ZWN0Q2hhbmdlcygpO1xuICB9XG5cbiAgLypcbiAgICogRnVuY2lvbmVzIHBhcmEgYXBvcnRhciBpbmZvcm1hY2nDs24gZGVzZGUgZWwgY29tcG9uZW50ZSBjaGVja2JveGVzIHF1ZSBsbyBjb250aWVuZVxuICAgKi9cblxuICBnZXRJdGVtSGludElkKCk6IHN0cmluZyB7XG4gICAgcmV0dXJuIHRoaXMuaGludENvbXBvbmVudExpc3QgJiYgdGhpcy5oaW50Q29tcG9uZW50TGlzdC5sZW5ndGggPiAwICYmIHRoaXMucmFkaW9JZCA/IHRoaXMucmFkaW9JZCArICctaXRlbS1oaW50JyA6IG51bGw7XG4gIH1cblxuICBoYXNDaGFuZ2VkKCk6IHZvaWQge1xuICAgIHRoaXMuc2V0Q2hlY2tlZCh0aGlzLmlzSW5wdXRDaGVja2VkKCkpO1xuICAgIHRoaXMucmFkaW9zLnVwZGF0ZVZhbHVlRnJvbVJhZGlvSXRlbXMoKTtcbiAgfVxuXG4gIGlzSW5pdCgpOiBib29sZWFuIHtcbiAgICByZXR1cm4gISF0aGlzLmlucHV0RWxlbWVudDtcbiAgfVxuXG4gIGlzSW5wdXRDaGVja2VkKCk6IGJvb2xlYW4ge1xuICAgIHJldHVybiB0aGlzLmlucHV0RWxlbWVudCA/IHRoaXMuaW5wdXRFbGVtZW50Lm5hdGl2ZUVsZW1lbnQuY2hlY2tlZCA6IG51bGw7XG4gIH1cblxuICB1cGRhdGVSYWRpb0lkKGluZGV4PzogbnVtYmVyKTogdm9pZCB7XG4gICAgaWYgKHRoaXMuaWQpIHtcbiAgICAgICB0aGlzLnJhZGlvSWQgPSB0aGlzLmlkO1xuICAgICB9IGVsc2Uge1xuICAgICAgY29uc3QgaWRQcmVmaXggPSB0aGlzLnJhZGlvcy5pZFByZWZpeCA/IHRoaXMucmFkaW9zLmlkUHJlZml4IDogdGhpcy5yYWRpb3MubmFtZTtcbiAgICAgICBpZiAoaW5kZXggPT09IDApIHtcbiAgICAgICAgIHRoaXMucmFkaW9JZCA9IGlkUHJlZml4O1xuICAgICAgIH0gZWxzZSB7XG4gICAgICAgICB0aGlzLnJhZGlvSWQgPSBgJHtpZFByZWZpeH0tJHtpbmRleH1gO1xuICAgICAgIH1cbiAgICAgfVxuXG4gICAgIGlmICh0aGlzLmxhYmVsQ29tcG9uZW50TGlzdCAmJiB0aGlzLmxhYmVsQ29tcG9uZW50TGlzdC5sZW5ndGggPiAwKSB7XG4gICAgICAgdGhpcy5sYWJlbENvbXBvbmVudExpc3QuZmlyc3QuZm9yID0gdGhpcy5yYWRpb0lkO1xuICAgICB9XG5cbiAgICAgaWYgKHRoaXMuaGludENvbXBvbmVudExpc3QgJiYgdGhpcy5oaW50Q29tcG9uZW50TGlzdC5sZW5ndGggPiAwKSB7XG4gICAgICAgdGhpcy5oaW50Q29tcG9uZW50TGlzdC5maXJzdC5pZCA9IHRoaXMuZ2V0SXRlbUhpbnRJZCgpO1xuICAgICB9XG5cbiAgICAgdGhpcy5jaGFuZ2VEZXRlY3RvclJlZi5kZXRlY3RDaGFuZ2VzKCk7XG4gIH1cblxuICAvKlxuICAqIEZ1bmNpb25lcyBwYXJhIGFwb3J0YXIgaW5mb3JtYWNpw7NuIGRlc2RlIGVsIGNvbXBvbmVudGUgY2hlY2tib3hlcyBxdWUgbG8gY29udGllbmVcbiAgKi9cblxuICBoYXNEaXZpZGVycygpOiBib29sZWFuIHtcbiAgICByZXR1cm4gdGhpcy5yYWRpb3MuaGFzRGl2aWRlcnM7XG4gIH1cblxuICBoYXNFcnJvcigpOiBib29sZWFuIHtcbiAgICByZXR1cm4gdGhpcy5yYWRpb3MuaGFzRXJyb3JzTWVzc2FnZSgpO1xuICB9XG5cbiAgZ2V0TmFtZVJhZGlvKCk6IHN0cmluZyB7XG4gICAgcmV0dXJuIHRoaXMucmFkaW9zLm5hbWU7XG4gIH1cblxuICBnZXREZXNjcmliZWRCeSgpOiBzdHJpbmcge1xuICAgIHJldHVybiAhdGhpcy5yYWRpb3MuaGFzRmllbGRzZXQoKSA/IHRoaXMucmFkaW9zLmRlc2NyaWJlZEJ5IDogbnVsbDtcbiAgfVxuXG59XG4iLCI8ZGl2IFtuZ0NsYXNzXT1cInsnYm9yZGVyLXQgYm9yZGVyLWIgYm9yZGVyLW5ldXRyYWwtYmFzZSAtbWItcHgnOiBoYXNEaXZpZGVycygpfVwiIFtjbGFzc109XCJjbGFzc2VzXCI+XG4gIDxkaXYgKm5nSWY9XCJkaXZpZGVyXCI+PHA+e3sgZGl2aWRlciB9fTwvcD48L2Rpdj5cbiAgPGRpdiAqbmdJZj1cIiFkaXZpZGVyXCI+XG4gICAgPGRpdiBjbGFzcz1cInJlbGF0aXZlIGZsZXggaXRlbXMtc3RhcnQgcHktYmFzZVwiPlxuICAgICAgPGRpdiBjbGFzcz1cImZsZXggaXRlbXMtY2VudGVyIG14LXNtXCI+XG4gICAgICAgIDxpbnB1dCAjaW5wdXQgY2xhc3M9XCJ3LTYgaC02IHRleHQtcHJpbWFyeS1iYXNlIHRyYW5zaXRpb24gZHVyYXRpb24tMTUwIGVhc2UtaW4tb3V0IGJvcmRlci1ibGFjayBmb2N1czpib3JkZXItYmxhY2sgZm9jdXM6c2hhZG93LW91dGxpbmUtZm9jdXMtaW5wdXQgZm9jdXM6cmluZy00IGZvY3VzOnJpbmctb2Zmc2V0LTAgZm9jdXM6cmluZy13YXJuaW5nLWJhc2UgZGlzYWJsZWQ6YmctbmV1dHJhbC1iYXNlIGRpc2FibGVkOmJvcmRlci1uZXV0cmFsLWJhc2UgdGV4dC1wcmltYXJ5LWJhc2VcIlxuICAgICAgICAgICAgICAgIFthdHRyLmlkXT1cInJhZGlvSWRcIlxuICAgICAgICAgICAgICAgIFthdHRyLm5hbWVdPVwibmFtZSA/IG5hbWUgOiBnZXROYW1lUmFkaW8oKVwiXG4gICAgICAgICAgICAgICAgdHlwZT1cInJhZGlvXCJcbiAgICAgICAgICAgICAgICBbdmFsdWVdPVwidmFsdWVcIiAoY2hhbmdlKT1cImhhc0NoYW5nZWQoKVwiXG4gICAgICAgICAgICAgICAgW2NoZWNrZWRdPVwiY2hlY2tlZFwiXG4gICAgICAgICAgICAgICAgW2F0dHIuZGlzYWJsZWRdPVwiZGlzYWJsZWQgfHwgcGFyZW50RGlzYWJsZWQgPyB0cnVlIDogbnVsbFwiXG4gICAgICAgICAgICAgICAgW2F0dHIuYXJpYS1jb250cm9sc109XCJjb25kaXRpb25hbENvbnRlbnRMaXN0ICYmIGNvbmRpdGlvbmFsQ29udGVudExpc3QubGVuZ3RoID4gMCA/ICdjb25kaXRpb25hbC0nICsgdGhpcy5yYWRpb0lkIDogbnVsbFwiXG4gICAgICAgICAgICAgICAgW2F0dHIuYXJpYS1kZXNjcmliZWRieV09XCJbZ2V0RGVzY3JpYmVkQnkoKSwgZ2V0SXRlbUhpbnRJZCgpXSB8IG1ha2VIdG1sTGlzdDpudWxsXCJcbiAgICAgICAgICAgICAgICBbYXR0ci5hcmlhLWludmFsaWRdPVwiaGFzRXJyb3IgPyB0cnVlIDogbnVsbFwiXG4gIFxuICAgICAgICAgICAgICAgIFthdHRyLnJvbGVdPVwicm9sZSA/IHJvbGUgOiBudWxsXCJcbiAgICAgICAgICAgICAgICBbYXR0ci5hcmlhLWxhYmVsXT1cImFyaWFMYWJlbCA/IGFyaWFMYWJlbCA6IG51bGxcIlxuICAgICAgICAgICAgICAgIFthdHRyLmFyaWEtbGFiZWxsZWRieV09XCJhcmlhTGFiZWxsZWRCeSA/IGFyaWFMYWJlbGxlZEJ5IDogbnVsbFwiXG4gICAgICAgICAgICAgICAgW2F0dHIuYXJpYS1oaWRkZW5dPVwiYXJpYUhpZGRlbiA/IGFyaWFIaWRkZW4gOiBudWxsXCJcbiAgICAgICAgICAgICAgICBbYXR0ci5hcmlhLWRpc2FibGVkXT1cImFyaWFEaXNhYmxlZCA/IGFyaWFEaXNhYmxlZCA6IG51bGxcIlxuICAgICAgICAgICAgICAgIFthdHRyLmFyaWEtY3VycmVudF09XCJhcmlhQ3VycmVudCA/IGFyaWFDdXJyZW50IDogbnVsbFwiXG4gICAgICAgICAgICAgICAgW2F0dHIuYXJpYS1saXZlXT1cImFyaWFMaXZlID8gYXJpYUxpdmUgOiBudWxsXCJcbiAgICAgICAgICAgICAgICBbYXR0ci5hcmlhLWV4cGFuZGVkXT1cImFyaWFFeHBhbmRlZCA/IGFyaWFFeHBhbmRlZCA6IG51bGxcIlxuICAgICAgICAgICAgICAgIFthdHRyLmFyaWEtZXJyb3JtZXNzYWdlXT1cImFyaWFFcnJvck1lc3NhZ2UgPyBhcmlhRXJyb3JNZXNzYWdlIDogbnVsbFwiXG4gICAgICAgICAgICAgICAgW2F0dHIuYXJpYS1oYXNwb3B1cF09XCJhcmlhSGFzUG9wdXAgPyBhcmlhSGFzUG9wdXAgOiBudWxsXCJcbiAgICAgICAgICAgICAgICBbYXR0ci50YWJpbmRleF09XCJ0YWJpbmRleCA/IHRhYmluZGV4IDogbnVsbFwiPlxuICAgICAgICA8L2Rpdj5cbiAgXG4gICAgICAgIDxkaXYgY2xhc3M9XCJwdC0wLjUgbGVhZGluZy01XCI+XG4gICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwibGFiZWxDb21wb25lbnRMaXN0ICYmIGxhYmVsQ29tcG9uZW50TGlzdC5sZW5ndGggPiAwXCI+XG4gICAgICAgICAgICAgICAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiZGVzeS1sYWJlbFwiPjwvbmctY29udGVudD5cbiAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIiEobGFiZWxDb21wb25lbnRMaXN0ICYmIGxhYmVsQ29tcG9uZW50TGlzdC5sZW5ndGggPiAwKVwiPlxuICAgICAgICAgICAgICAgIDxkZXN5LWxhYmVsIFtmb3JdPVwicmFkaW9JZFwiPlxuICAgICAgICAgICAgICAgICAgICA8bmctY29udGVudD48L25nLWNvbnRlbnQ+XG4gICAgICAgICAgICAgICAgPC9kZXN5LWxhYmVsPlxuICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gIFxuICAgICAgICAgICAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiZGVzeS1oaW50XCI+PC9uZy1jb250ZW50PlxuICAgICAgICA8L2Rpdj5cbiAgICAgIDwvZGl2PlxuICAgIDwvZGl2PlxuICAgIDxkaXYgKm5nSWY9XCJjb25kaXRpb25hbCAmJiBjb25kaXRpb25hbENvbnRlbnRMaXN0ICYmIGNvbmRpdGlvbmFsQ29udGVudExpc3QubGVuZ3RoID4gMCAmJiBjaGVja2VkXCIgIEBkaXNwbGF5Q29uZGl0aW9uYWxcbiAgICAgIGNsYXNzPVwibWItbGcgbWwtNSBwdC1zbSBwYi1iYXNlIHBsLTYgb3JpZ2luLXRvcC1sZWZ0IGJvcmRlci1sLTIgYm9yZGVyLXByaW1hcnktYmFzZVwiXG4gICAgICBbYXR0ci5pZF09XCInY29uZGl0aW9uYWwtJyArIHRoaXMucmFkaW9JZFwiPlxuICAgICAgPG5nLWNvbnRhaW5lciAqZGVzeUN1c3RvbUlubmVyQ29udGVudD1cInsgY29tcG9uZW50OiBjb25kaXRpb25hbENvbnRlbnRMaXN0LmZpcnN0IH1cIj48L25nLWNvbnRhaW5lcj5cbiAgPC9kaXY+XG48L2Rpdj5cblxuIl19
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import { FormFieldComponent } from '../form-field/form-field.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export class RadiosParentComponent extends FormFieldComponent {
|
|
5
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: RadiosParentComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
6
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.7", type: RadiosParentComponent, selector: "desy-radios-parent", usesInheritance: true, ngImport: i0, template: '', isInline: true }); }
|
|
7
|
+
}
|
|
8
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: RadiosParentComponent, decorators: [{
|
|
9
|
+
type: Component,
|
|
10
|
+
args: [{
|
|
11
|
+
selector: 'desy-radios-parent',
|
|
12
|
+
template: ''
|
|
13
|
+
}]
|
|
14
|
+
}] });
|
|
15
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmFkaW9zLXBhcmVudC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9kZXN5LWFuZ3VsYXIvc3JjL2xpYi9kZXN5LWZvcm1zL2NvbXBvbmVudHMvcmFkaW9zL3JhZGlvcy1wYXJlbnQuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDMUMsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sb0NBQW9DLENBQUM7O0FBY3hFLE1BQU0sT0FBZ0IscUJBQXNCLFNBQVEsa0JBQXVCOzhHQUFyRCxxQkFBcUI7a0dBQXJCLHFCQUFxQixpRkFGL0IsRUFBRTs7MkZBRVEscUJBQXFCO2tCQUoxQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxvQkFBb0I7b0JBQzlCLFFBQVEsRUFBRSxFQUFFO2lCQUNiIiwic291cmNlc0NvbnRlbnQiOlsiXG5pbXBvcnQgeyBDb21wb25lbnQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEZvcm1GaWVsZENvbXBvbmVudCB9IGZyb20gJy4uL2Zvcm0tZmllbGQvZm9ybS1maWVsZC5jb21wb25lbnQnO1xuXG4vKipcbiAqIENsYXNlIGFic3RyYWN0YSBxdWUgcGVybWl0ZSBjb211bmljYXIgYWwgcmFkaW8taXRlbSBjb24gZWwgcmFkaW9zXG4gKiBzaW4gcXVlIGV4aXN0YW4gZGVwZW5kZW5jaWFzIGNpcmN1bGFyZXMuXG4gKiBFbCBlc3F1ZW1hIGRlIGRlcGVuZGVuY2lhcyByZXN1bHRhOlxuICogIC0gUmFkaW9zQ29tcG9uZW50IC0+IFJhZGlvc1BhcmVudENvbXBvbmVudFxuICogIC0gUmFkaW9zQ29tcG9uZW50IC0+IFJhZGlvc0l0ZW1Db21wb25lbnRcbiAqICAtIFJhZGlvc0l0ZW1Db21wb25lbnQgLT4gUmFkaW9zUGFyZW50Q29tcG9uZW50XG4gKi9cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2Rlc3ktcmFkaW9zLXBhcmVudCcsXG4gIHRlbXBsYXRlOiAnJ1xufSlcbmV4cG9ydCBhYnN0cmFjdCBjbGFzcyBSYWRpb3NQYXJlbnRDb21wb25lbnQgZXh0ZW5kcyBGb3JtRmllbGRDb21wb25lbnQ8YW55PiB7XG4gIGlkUHJlZml4Pzogc3RyaW5nO1xuICBuYW1lPzogc3RyaW5nO1xuICBoYXNEaXZpZGVycz86IGJvb2xlYW47XG4gIGRlc2NyaWJlZEJ5Pzogc3RyaW5nO1xuXG4gIGFic3RyYWN0IGhhc0ZpZWxkc2V0KCk6IGJvb2xlYW47XG5cbiAgYWJzdHJhY3QgbWFya0ZvclVwZGF0ZVJhZGlvc0lkcygpOiB2b2lkO1xuICBhYnN0cmFjdCB1cGRhdGVWYWx1ZUZyb21SYWRpb0l0ZW1zKCk6IHZvaWQ7XG59Il19
|