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
|
@@ -8,21 +8,21 @@ import { DesyButtonsModule } from '../desy-buttons/desy-buttons.module';
|
|
|
8
8
|
import { PaginationComponent } from './components/pagination/pagination.component';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export class DesyPaginationModule {
|
|
11
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: DesyPaginationModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
12
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.7", ngImport: i0, type: DesyPaginationModule, declarations: [PaginationComponent,
|
|
13
|
+
PaginationListboxLabelComponent,
|
|
14
|
+
PaginationItemPerPageComponent], imports: [CommonModule,
|
|
15
|
+
SharedModule,
|
|
16
|
+
DesyNavModule,
|
|
17
|
+
DesyButtonsModule], exports: [PaginationComponent,
|
|
18
|
+
PaginationListboxLabelComponent,
|
|
19
|
+
PaginationItemPerPageComponent] }); }
|
|
20
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: DesyPaginationModule, imports: [CommonModule,
|
|
21
|
+
SharedModule,
|
|
22
|
+
DesyNavModule,
|
|
23
|
+
DesyButtonsModule] }); }
|
|
11
24
|
}
|
|
12
|
-
|
|
13
|
-
DesyPaginationModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.7", ngImport: i0, type: DesyPaginationModule, declarations: [PaginationComponent,
|
|
14
|
-
PaginationListboxLabelComponent,
|
|
15
|
-
PaginationItemPerPageComponent], imports: [CommonModule,
|
|
16
|
-
SharedModule,
|
|
17
|
-
DesyNavModule,
|
|
18
|
-
DesyButtonsModule], exports: [PaginationComponent,
|
|
19
|
-
PaginationListboxLabelComponent,
|
|
20
|
-
PaginationItemPerPageComponent] });
|
|
21
|
-
DesyPaginationModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: DesyPaginationModule, imports: [CommonModule,
|
|
22
|
-
SharedModule,
|
|
23
|
-
DesyNavModule,
|
|
24
|
-
DesyButtonsModule] });
|
|
25
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: DesyPaginationModule, decorators: [{
|
|
25
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: DesyPaginationModule, decorators: [{
|
|
26
26
|
type: NgModule,
|
|
27
27
|
args: [{
|
|
28
28
|
declarations: [
|
|
@@ -43,4 +43,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImpor
|
|
|
43
43
|
]
|
|
44
44
|
}]
|
|
45
45
|
}] });
|
|
46
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
46
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVzeS1wYWdpbmF0aW9uLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Rlc3ktYW5ndWxhci9zcmMvbGliL2Rlc3ktcGFnaW5hdGlvbi9kZXN5LXBhZ2luYXRpb24ubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSw4QkFBOEIsRUFBRSxNQUFNLHdFQUF3RSxDQUFDO0FBQ3hILE9BQU8sRUFBRSwrQkFBK0IsRUFBRSxNQUFNLDBFQUEwRSxDQUFDO0FBQzNILE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBRS9DLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUN2RCxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sNkJBQTZCLENBQUM7QUFDNUQsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0scUNBQXFDLENBQUM7QUFFeEUsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sOENBQThDLENBQUM7O0FBcUJuRixNQUFNLE9BQU8sb0JBQW9COzhHQUFwQixvQkFBb0I7K0dBQXBCLG9CQUFvQixpQkFoQjdCLG1CQUFtQjtZQUNuQiwrQkFBK0I7WUFDL0IsOEJBQThCLGFBRzlCLFlBQVk7WUFDWixZQUFZO1lBQ1osYUFBYTtZQUNiLGlCQUFpQixhQUdqQixtQkFBbUI7WUFDbkIsK0JBQStCO1lBQy9CLDhCQUE4QjsrR0FHckIsb0JBQW9CLFlBWDdCLFlBQVk7WUFDWixZQUFZO1lBQ1osYUFBYTtZQUNiLGlCQUFpQjs7MkZBUVIsb0JBQW9CO2tCQWxCaEMsUUFBUTttQkFBQztvQkFDUixZQUFZLEVBQUU7d0JBQ1osbUJBQW1CO3dCQUNuQiwrQkFBK0I7d0JBQy9CLDhCQUE4QjtxQkFDL0I7b0JBQ0QsT0FBTyxFQUFFO3dCQUNQLFlBQVk7d0JBQ1osWUFBWTt3QkFDWixhQUFhO3dCQUNiLGlCQUFpQjtxQkFDbEI7b0JBQ0QsT0FBTyxFQUFFO3dCQUNQLG1CQUFtQjt3QkFDbkIsK0JBQStCO3dCQUMvQiw4QkFBOEI7cUJBQy9CO2lCQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgUGFnaW5hdGlvbkl0ZW1QZXJQYWdlQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL3BhZ2luYXRpb24taXRlbS1wZXJwYWdlL3BhZ2luYXRpb24taXRlbS1wZXJwYWdlLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBQYWdpbmF0aW9uTGlzdGJveExhYmVsQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL3BhZ2luYXRpb24tbGlzdGJveC1sYWJlbC9wYWdpbmF0aW9uLWxpc3Rib3gtbGFiZWwuY29tcG9uZW50JztcbmltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuXG5pbXBvcnQgeyBTaGFyZWRNb2R1bGUgfSBmcm9tICcuLi9zaGFyZWQvc2hhcmVkLm1vZHVsZSc7XG5pbXBvcnQgeyBEZXN5TmF2TW9kdWxlIH0gZnJvbSAnLi4vZGVzeS1uYXYvZGVzeS1uYXYubW9kdWxlJztcbmltcG9ydCB7IERlc3lCdXR0b25zTW9kdWxlIH0gZnJvbSAnLi4vZGVzeS1idXR0b25zL2Rlc3ktYnV0dG9ucy5tb2R1bGUnO1xuXG5pbXBvcnQgeyBQYWdpbmF0aW9uQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL3BhZ2luYXRpb24vcGFnaW5hdGlvbi5jb21wb25lbnQnO1xuXG5cbkBOZ01vZHVsZSh7XG4gIGRlY2xhcmF0aW9uczogW1xuICAgIFBhZ2luYXRpb25Db21wb25lbnQsIFxuICAgIFBhZ2luYXRpb25MaXN0Ym94TGFiZWxDb21wb25lbnQsXG4gICAgUGFnaW5hdGlvbkl0ZW1QZXJQYWdlQ29tcG9uZW50XG4gIF0sXG4gIGltcG9ydHM6IFtcbiAgICBDb21tb25Nb2R1bGUsXG4gICAgU2hhcmVkTW9kdWxlLFxuICAgIERlc3lOYXZNb2R1bGUsXG4gICAgRGVzeUJ1dHRvbnNNb2R1bGVcbiAgXSxcbiAgZXhwb3J0czogW1xuICAgIFBhZ2luYXRpb25Db21wb25lbnQsIFxuICAgIFBhZ2luYXRpb25MaXN0Ym94TGFiZWxDb21wb25lbnQsXG4gICAgUGFnaW5hdGlvbkl0ZW1QZXJQYWdlQ29tcG9uZW50XG4gIF1cbn0pXG5leHBvcnQgY2xhc3MgRGVzeVBhZ2luYXRpb25Nb2R1bGUgeyB9XG4iXX0=
|
package/{esm2020 → esm2022}/lib/desy-tables/components/table/components/table-caption.component.mjs
RENAMED
|
@@ -2,10 +2,10 @@ import { Component, Input } from '@angular/core';
|
|
|
2
2
|
import { ContentBaseComponent } from '../../../../shared/components';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export class TableCaptionComponent extends ContentBaseComponent {
|
|
5
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: TableCaptionComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
6
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.7", type: TableCaptionComponent, selector: "desy-table-caption", inputs: { classes: "classes" }, usesInheritance: true, ngImport: i0, template: '<ng-template #contentTemplate><ng-content></ng-content></ng-template>', isInline: true }); }
|
|
5
7
|
}
|
|
6
|
-
|
|
7
|
-
TableCaptionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: TableCaptionComponent, selector: "desy-table-caption", inputs: { classes: "classes" }, usesInheritance: true, ngImport: i0, template: '<ng-template #contentTemplate><ng-content></ng-content></ng-template>', isInline: true });
|
|
8
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TableCaptionComponent, decorators: [{
|
|
8
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: TableCaptionComponent, decorators: [{
|
|
9
9
|
type: Component,
|
|
10
10
|
args: [{
|
|
11
11
|
selector: 'desy-table-caption',
|
|
@@ -14,4 +14,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImpor
|
|
|
14
14
|
}], propDecorators: { classes: [{
|
|
15
15
|
type: Input
|
|
16
16
|
}] } });
|
|
17
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
17
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtY2FwdGlvbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9kZXN5LWFuZ3VsYXIvc3JjL2xpYi9kZXN5LXRhYmxlcy9jb21wb25lbnRzL3RhYmxlL2NvbXBvbmVudHMvdGFibGUtY2FwdGlvbi5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLFNBQVMsRUFBRSxLQUFLLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDL0MsT0FBTyxFQUFDLG9CQUFvQixFQUFDLE1BQU0sK0JBQStCLENBQUM7O0FBTW5FLE1BQU0sT0FBTyxxQkFBc0IsU0FBUSxvQkFBb0I7OEdBQWxELHFCQUFxQjtrR0FBckIscUJBQXFCLGlIQUZ0Qix1RUFBdUU7OzJGQUV0RSxxQkFBcUI7a0JBSmpDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLG9CQUFvQjtvQkFDOUIsUUFBUSxFQUFFLHVFQUF1RTtpQkFDbEY7OEJBRVUsT0FBTztzQkFBZixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtDb21wb25lbnQsIElucHV0fSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7Q29udGVudEJhc2VDb21wb25lbnR9IGZyb20gJy4uLy4uLy4uLy4uL3NoYXJlZC9jb21wb25lbnRzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZGVzeS10YWJsZS1jYXB0aW9uJyxcbiAgdGVtcGxhdGU6ICc8bmctdGVtcGxhdGUgI2NvbnRlbnRUZW1wbGF0ZT48bmctY29udGVudD48L25nLWNvbnRlbnQ+PC9uZy10ZW1wbGF0ZT4nXG59KVxuZXhwb3J0IGNsYXNzIFRhYmxlQ2FwdGlvbkNvbXBvbmVudCBleHRlbmRzIENvbnRlbnRCYXNlQ29tcG9uZW50IHtcbiAgQElucHV0KCkgY2xhc3Nlczogc3RyaW5nO1xufVxuIl19
|
package/{esm2020 → esm2022}/lib/desy-tables/components/table/components/table-cell.component.mjs
RENAMED
|
@@ -2,10 +2,10 @@ import { Component, Input } from '@angular/core';
|
|
|
2
2
|
import { ContentBaseComponent } from '../../../../shared/components';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export class TableCellComponent extends ContentBaseComponent {
|
|
5
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: TableCellComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
6
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.7", type: TableCellComponent, selector: "desy-table-cell", inputs: { classes: "classes", id: "id", colspan: "colspan", rowspan: "rowspan" }, usesInheritance: true, ngImport: i0, template: '<ng-template #contentTemplate><ng-content></ng-content></ng-template>', isInline: true }); }
|
|
5
7
|
}
|
|
6
|
-
|
|
7
|
-
TableCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: TableCellComponent, selector: "desy-table-cell", inputs: { classes: "classes", id: "id", colspan: "colspan", rowspan: "rowspan" }, usesInheritance: true, ngImport: i0, template: '<ng-template #contentTemplate><ng-content></ng-content></ng-template>', isInline: true });
|
|
8
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TableCellComponent, decorators: [{
|
|
8
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: TableCellComponent, decorators: [{
|
|
9
9
|
type: Component,
|
|
10
10
|
args: [{
|
|
11
11
|
selector: 'desy-table-cell',
|
|
@@ -20,4 +20,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImpor
|
|
|
20
20
|
}], rowspan: [{
|
|
21
21
|
type: Input
|
|
22
22
|
}] } });
|
|
23
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
23
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtY2VsbC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9kZXN5LWFuZ3VsYXIvc3JjL2xpYi9kZXN5LXRhYmxlcy9jb21wb25lbnRzL3RhYmxlL2NvbXBvbmVudHMvdGFibGUtY2VsbC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLFNBQVMsRUFBRSxLQUFLLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDL0MsT0FBTyxFQUFDLG9CQUFvQixFQUFDLE1BQU0sK0JBQStCLENBQUM7O0FBT25FLE1BQU0sT0FBTyxrQkFBbUIsU0FBUSxvQkFBb0I7OEdBQS9DLGtCQUFrQjtrR0FBbEIsa0JBQWtCLGdLQUZuQix1RUFBdUU7OzJGQUV0RSxrQkFBa0I7a0JBSjlCLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLGlCQUFpQjtvQkFDM0IsUUFBUSxFQUFFLHVFQUF1RTtpQkFDbEY7OEJBRVUsT0FBTztzQkFBZixLQUFLO2dCQUNHLEVBQUU7c0JBQVYsS0FBSztnQkFDRyxPQUFPO3NCQUFmLEtBQUs7Z0JBQ0csT0FBTztzQkFBZixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtDb21wb25lbnQsIElucHV0fSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7Q29udGVudEJhc2VDb21wb25lbnR9IGZyb20gJy4uLy4uLy4uLy4uL3NoYXJlZC9jb21wb25lbnRzJztcbmltcG9ydCB7Q2VsbERhdGF9IGZyb20gJy4uLy4uLy4uL2ludGVyZmFjZXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdkZXN5LXRhYmxlLWNlbGwnLFxuICB0ZW1wbGF0ZTogJzxuZy10ZW1wbGF0ZSAjY29udGVudFRlbXBsYXRlPjxuZy1jb250ZW50PjwvbmctY29udGVudD48L25nLXRlbXBsYXRlPidcbn0pXG5leHBvcnQgY2xhc3MgVGFibGVDZWxsQ29tcG9uZW50IGV4dGVuZHMgQ29udGVudEJhc2VDb21wb25lbnQgaW1wbGVtZW50cyBDZWxsRGF0YSB7XG4gIEBJbnB1dCgpIGNsYXNzZXM/OiBzdHJpbmc7XG4gIEBJbnB1dCgpIGlkPzogc3RyaW5nO1xuICBASW5wdXQoKSBjb2xzcGFuPzogbnVtYmVyO1xuICBASW5wdXQoKSByb3dzcGFuPzogbnVtYmVyO1xufVxuIl19
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Component, ContentChildren, QueryList } from '@angular/core';
|
|
2
|
+
import { TableCellComponent } from './table-cell.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export class TableHeaderComponent {
|
|
5
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: TableHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.7", type: TableHeaderComponent, selector: "desy-table-header", queries: [{ propertyName: "cells", predicate: TableCellComponent }], ngImport: i0, template: '', isInline: true }); }
|
|
7
|
+
}
|
|
8
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: TableHeaderComponent, decorators: [{
|
|
9
|
+
type: Component,
|
|
10
|
+
args: [{
|
|
11
|
+
selector: 'desy-table-header',
|
|
12
|
+
template: ''
|
|
13
|
+
}]
|
|
14
|
+
}], propDecorators: { cells: [{
|
|
15
|
+
type: ContentChildren,
|
|
16
|
+
args: [TableCellComponent]
|
|
17
|
+
}] } });
|
|
18
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtaGVhZGVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Rlc3ktYW5ndWxhci9zcmMvbGliL2Rlc3ktdGFibGVzL2NvbXBvbmVudHMvdGFibGUvY29tcG9uZW50cy90YWJsZS1oZWFkZXIuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsZUFBZSxFQUFFLFNBQVMsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUNwRSxPQUFPLEVBQUMsa0JBQWtCLEVBQUMsTUFBTSx3QkFBd0IsQ0FBQzs7QUFNMUQsTUFBTSxPQUFPLG9CQUFvQjs4R0FBcEIsb0JBQW9CO2tHQUFwQixvQkFBb0IsK0VBQ2Qsa0JBQWtCLDZCQUh6QixFQUFFOzsyRkFFRCxvQkFBb0I7a0JBSmhDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLG1CQUFtQjtvQkFDN0IsUUFBUSxFQUFFLEVBQUU7aUJBQ2I7OEJBRXNDLEtBQUs7c0JBQXpDLGVBQWU7dUJBQUMsa0JBQWtCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtDb21wb25lbnQsIENvbnRlbnRDaGlsZHJlbiwgUXVlcnlMaXN0fSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7VGFibGVDZWxsQ29tcG9uZW50fSBmcm9tICcuL3RhYmxlLWNlbGwuY29tcG9uZW50JztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZGVzeS10YWJsZS1oZWFkZXInLFxuICB0ZW1wbGF0ZTogJydcbn0pXG5leHBvcnQgY2xhc3MgVGFibGVIZWFkZXJDb21wb25lbnQge1xuICBAQ29udGVudENoaWxkcmVuKFRhYmxlQ2VsbENvbXBvbmVudCkgY2VsbHM6IFF1ZXJ5TGlzdDxUYWJsZUNlbGxDb21wb25lbnQ+O1xufVxuIl19
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Component, ContentChildren, QueryList } from '@angular/core';
|
|
2
|
+
import { TableCellComponent } from './table-cell.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export class TableRowComponent {
|
|
5
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: TableRowComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.7", type: TableRowComponent, selector: "desy-table-row", queries: [{ propertyName: "cells", predicate: TableCellComponent }], ngImport: i0, template: '', isInline: true }); }
|
|
7
|
+
}
|
|
8
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: TableRowComponent, decorators: [{
|
|
9
|
+
type: Component,
|
|
10
|
+
args: [{
|
|
11
|
+
selector: 'desy-table-row',
|
|
12
|
+
template: ''
|
|
13
|
+
}]
|
|
14
|
+
}], propDecorators: { cells: [{
|
|
15
|
+
type: ContentChildren,
|
|
16
|
+
args: [TableCellComponent]
|
|
17
|
+
}] } });
|
|
18
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtcm93LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Rlc3ktYW5ndWxhci9zcmMvbGliL2Rlc3ktdGFibGVzL2NvbXBvbmVudHMvdGFibGUvY29tcG9uZW50cy90YWJsZS1yb3cuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsZUFBZSxFQUFFLFNBQVMsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUNwRSxPQUFPLEVBQUMsa0JBQWtCLEVBQUMsTUFBTSx3QkFBd0IsQ0FBQzs7QUFNMUQsTUFBTSxPQUFPLGlCQUFpQjs4R0FBakIsaUJBQWlCO2tHQUFqQixpQkFBaUIsNEVBQ1gsa0JBQWtCLDZCQUh6QixFQUFFOzsyRkFFRCxpQkFBaUI7a0JBSjdCLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLGdCQUFnQjtvQkFDMUIsUUFBUSxFQUFFLEVBQUU7aUJBQ2I7OEJBRXNDLEtBQUs7c0JBQXpDLGVBQWU7dUJBQUMsa0JBQWtCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtDb21wb25lbnQsIENvbnRlbnRDaGlsZHJlbiwgUXVlcnlMaXN0fSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7VGFibGVDZWxsQ29tcG9uZW50fSBmcm9tICcuL3RhYmxlLWNlbGwuY29tcG9uZW50JztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZGVzeS10YWJsZS1yb3cnLFxuICB0ZW1wbGF0ZTogJydcbn0pXG5leHBvcnQgY2xhc3MgVGFibGVSb3dDb21wb25lbnQge1xuICBAQ29udGVudENoaWxkcmVuKFRhYmxlQ2VsbENvbXBvbmVudCkgY2VsbHM6IFF1ZXJ5TGlzdDxUYWJsZUNlbGxDb21wb25lbnQ+O1xufVxuIl19
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { __decorate, __metadata } from "tslib";
|
|
2
|
+
import { Component, Input, ContentChildren, QueryList } from '@angular/core';
|
|
3
|
+
import { AccessibilityComponent } from '../../../shared/components';
|
|
4
|
+
import { TableHeaderComponent } from './components/table-header.component';
|
|
5
|
+
import { TableCaptionComponent } from './components/table-caption.component';
|
|
6
|
+
import { TableRowComponent } from './components/table-row.component';
|
|
7
|
+
import { DesyContentChild } from '../../../shared/decorators/desy-content-child.decorator';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
import * as i1 from "@angular/common";
|
|
10
|
+
import * as i2 from "../../../shared/directives/custom-inner-content.directive";
|
|
11
|
+
import * as i3 from "../../../shared/pipes/make-html-list.pipe";
|
|
12
|
+
export class TableComponent extends AccessibilityComponent {
|
|
13
|
+
getCaptionClass() {
|
|
14
|
+
return this.captionComponent ? this.captionComponent.classes : this.captionClasses;
|
|
15
|
+
}
|
|
16
|
+
getHeaderCells() {
|
|
17
|
+
let headerCells = [];
|
|
18
|
+
if (this.headerComponent && this.headerComponent.cells) {
|
|
19
|
+
headerCells = this.headerComponent.cells.toArray();
|
|
20
|
+
}
|
|
21
|
+
else if (this.head) {
|
|
22
|
+
headerCells = this.head;
|
|
23
|
+
}
|
|
24
|
+
return headerCells;
|
|
25
|
+
}
|
|
26
|
+
getRows() {
|
|
27
|
+
let rowList = [];
|
|
28
|
+
if (this.rowComponentList && this.rowComponentList.length > 0) {
|
|
29
|
+
rowList = this.rowComponentList.toArray();
|
|
30
|
+
}
|
|
31
|
+
else if (this.rows) {
|
|
32
|
+
rowList = this.rows;
|
|
33
|
+
}
|
|
34
|
+
return rowList;
|
|
35
|
+
}
|
|
36
|
+
getRowCells(row) {
|
|
37
|
+
return row instanceof TableRowComponent ? row.cells.toArray() : row;
|
|
38
|
+
}
|
|
39
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: TableComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
40
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.7", type: TableComponent, selector: "desy-table", inputs: { rows: "rows", head: "head", caption: "caption", captionClasses: "captionClasses", firstCellIsHeader: "firstCellIsHeader", classes: "classes", id: "id", wrapper: "wrapper" }, queries: [{ propertyName: "captionComponent", predicate: TableCaptionComponent }, { propertyName: "headerComponent", predicate: TableHeaderComponent }, { propertyName: "rowComponentList", predicate: TableRowComponent }], usesInheritance: true, ngImport: i0, template: "<ng-template #tableContent>\n <table [class]=\"['c-table', classes] | makeHtmlList\"\n [attr.id]=\"id ? id : null\"\n [attr.role]=\"role\"\n [attr.aria-describedby]=\"ariaDescribedBy\"\n [attr.aria-errormessage]=\"ariaErrorMessage\"\n [attr.aria-label]=\"ariaLabel\"\n [attr.aria-labelledby]=\"ariaLabelledBy\"\n [attr.aria-hidden]=\"ariaHidden\"\n [attr.aria-disabled]=\"ariaDisabled\"\n [attr.aria-controls]=\"ariaControls\"\n [attr.aria-current]=\"ariaCurrent\"\n [attr.aria-live]=\"ariaLive\"\n [attr.aria-expanded]=\"ariaExpanded\"\n [attr.aria-haspopup]=\"ariaHasPopup\"\n [attr.tabindex]=\"tabindex\">\n <caption *ngIf=\"caption || captionComponent\" [class]=\"getCaptionClass()\">\n <ng-container *desyCustomInnerContent=\"{ component: captionComponent, text: caption ? caption : null }\"></ng-container>\n </caption>\n <thead *ngIf=\"head || headerComponent\">\n <tr class=\"border-t border-b border-neutral-base\">\n <ng-container *ngFor=\"let headerCell of getHeaderCells()\">\n <th scope=\"col\"\n [class]=\"['align-top px-base py-sm text-left font-normal text-sm text-neutral-dark', headerCell.classes] | makeHtmlList\"\n [attr.colspan]=\"(headerCell.colspan ? headerCell.colspan : null)\"\n [attr.rowspan]=\"(headerCell.rowspan ? headerCell.rowspan : null)\"\n [attr.id]=\"headerCell.id ? headerCell.id : null\"\n [attr.role]=\"headerCell.role\"\n [attr.aria-describedby]=\"headerCell.ariaDescribedBy\"\n [attr.aria-errormessage]=\"headerCell.ariaErrorMessage\"\n [attr.aria-label]=\"headerCell.ariaLabel\"\n [attr.aria-labelledby]=\"headerCell.ariaLabelledBy\"\n [attr.aria-hidden]=\"headerCell.ariaHidden\"\n [attr.aria-disabled]=\"headerCell.ariaDisabled\"\n [attr.aria-controls]=\"headerCell.ariaControls\"\n [attr.aria-current]=\"headerCell.ariaCurrent\"\n [attr.aria-live]=\"headerCell.ariaLive\"\n [attr.aria-expanded]=\"headerCell.ariaExpanded\"\n [attr.aria-haspopup]=\"headerCell.ariaHasPopup\"\n [attr.tabindex]=\"headerCell.tabindex\">\n <ng-container *desyCustomInnerContent=\"{ component: headerCell, html: headerCell.html, text: headerCell.text }\"></ng-container>\n </th>\n </ng-container>\n </tr>\n </thead>\n <tbody>\n <tr *ngFor=\"let row of getRows(); index as rowIndex\" class=\"border-t border-b border-neutral-base\">\n <ng-container *ngFor=\"let cell of getRowCells(row); first as isFirst; index as cellIndex\">\n <th *ngIf=\"firstCellIsHeader && isFirst; else elseTd\" scope=\"row\"\n [class]=\"['align-top px-base py-sm text-left font-normal text-sm text-neutral-dark', cell.classes] | makeHtmlList\"\n [attr.colspan]=\"cell.colspan ? cell.colspan : null\"\n [attr.rowspan]=\"cell.rowspan ? cell.rowspan : null\"\n [attr.id]=\"cell.id ? cell.id : null\"\n [attr.role]=\"cell.role ? cell.role : null\"\n [attr.aria-label]=\"cell.ariaLabel ? cell.ariaLabel : null\"\n [attr.aria-describedby]=\"cell.ariaDescribedBy ? cell.ariaDescribedBy : null\"\n [attr.aria-labelledby]=\"cell.ariaLabelledBy ? cell.ariaLabelledBy : null\"\n [attr.aria-hidden]=\"cell.ariaHidden ? cell.ariaHidden : null\"\n [attr.aria-disabled]=\"cell.ariaDisabled ? cell.ariaDisabled : null\"\n [attr.aria-controls]=\"cell.ariaControls ? cell.ariaControls : null\"\n [attr.aria-current]=\"cell.ariaCurrent ? cell.ariaCurrent : null\"\n [attr.aria-live]=\"cell.ariaLive ? cell.ariaLive : null\"\n [attr.aria-expanded]=\"cell.ariaExpanded ? cell.ariaExpanded : null\"\n [attr.aria-errormessage]=\"cell.ariaErrorMessage ? cell.ariaErrorMessage : null\"\n [attr.aria-haspopup]=\"cell.ariaHasPopup ? cell.ariaHasPopup : null\"\n [attr.tabindex]=\"cell.tabindex ? cell.tabindex : null\">\n <ng-container *desyCustomInnerContent=\"{ component: cell, html: cell.html, text: cell.text }\"></ng-container>\n </th>\n <ng-template #elseTd>\n <td [class]=\"['px-base py-sm', cell.classes] | makeHtmlList\"\n [attr.colspan]=\"cell.colspan ? cell.colspan : null\"\n [attr.rowspan]=\"cell.rowspan ? cell.rowspan : null\"\n [attr.id]=\"cell.id ? cell.id : null\"\n [attr.role]=\"cell.role ? cell.role : null\"\n [attr.aria-label]=\"cell.ariaLabel ? cell.ariaLabel : null\"\n [attr.aria-describedby]=\"cell.ariaDescribedBy ? cell.ariaDescribedBy : null\"\n [attr.aria-labelledby]=\"cell.ariaLabelledBy ? cell.ariaLabelledBy : null\"\n [attr.aria-hidden]=\"cell.ariaHidden ? cell.ariaHidden : null\"\n [attr.aria-disabled]=\"cell.ariaDisabled ? cell.ariaDisabled : null\"\n [attr.aria-controls]=\"cell.ariaControls ? cell.ariaControls : null\"\n [attr.aria-current]=\"cell.ariaCurrent ? cell.ariaCurrent : null\"\n [attr.aria-live]=\"cell.ariaLive ? cell.ariaLive : null\"\n [attr.aria-expanded]=\"cell.ariaExpanded ? cell.ariaExpanded : null\"\n [attr.aria-errormessage]=\"cell.ariaErrorMessage ? cell.ariaErrorMessage : null\"\n [attr.aria-haspopup]=\"cell.ariaHasPopup ? cell.ariaHasPopup : null\"\n [attr.tabindex]=\"cell.tabindex ? cell.tabindex : null\">\n <ng-container *desyCustomInnerContent=\"{ component: cell, html: cell.html, text: cell.text }\"></ng-container>\n </td>\n </ng-template>\n </ng-container>\n </tr>\n </tbody>\n </table>\n</ng-template>\n\n<div *ngIf=\"wrapper; else tableContent\" [class]=\"wrapper.classes\">\n <ng-container *ngTemplateOutlet=\"tableContent\"></ng-container>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { 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: i2.CustomInnerContentDirective, selector: "[desyCustomInnerContent]", inputs: ["desyCustomInnerContent"] }, { kind: "pipe", type: i3.MakeHtmlListPipe, name: "makeHtmlList" }] }); }
|
|
41
|
+
}
|
|
42
|
+
__decorate([
|
|
43
|
+
DesyContentChild(),
|
|
44
|
+
__metadata("design:type", TableCaptionComponent)
|
|
45
|
+
], TableComponent.prototype, "captionComponent", void 0);
|
|
46
|
+
__decorate([
|
|
47
|
+
DesyContentChild(),
|
|
48
|
+
__metadata("design:type", TableHeaderComponent)
|
|
49
|
+
], TableComponent.prototype, "headerComponent", void 0);
|
|
50
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: TableComponent, decorators: [{
|
|
51
|
+
type: Component,
|
|
52
|
+
args: [{ selector: 'desy-table', template: "<ng-template #tableContent>\n <table [class]=\"['c-table', classes] | makeHtmlList\"\n [attr.id]=\"id ? id : null\"\n [attr.role]=\"role\"\n [attr.aria-describedby]=\"ariaDescribedBy\"\n [attr.aria-errormessage]=\"ariaErrorMessage\"\n [attr.aria-label]=\"ariaLabel\"\n [attr.aria-labelledby]=\"ariaLabelledBy\"\n [attr.aria-hidden]=\"ariaHidden\"\n [attr.aria-disabled]=\"ariaDisabled\"\n [attr.aria-controls]=\"ariaControls\"\n [attr.aria-current]=\"ariaCurrent\"\n [attr.aria-live]=\"ariaLive\"\n [attr.aria-expanded]=\"ariaExpanded\"\n [attr.aria-haspopup]=\"ariaHasPopup\"\n [attr.tabindex]=\"tabindex\">\n <caption *ngIf=\"caption || captionComponent\" [class]=\"getCaptionClass()\">\n <ng-container *desyCustomInnerContent=\"{ component: captionComponent, text: caption ? caption : null }\"></ng-container>\n </caption>\n <thead *ngIf=\"head || headerComponent\">\n <tr class=\"border-t border-b border-neutral-base\">\n <ng-container *ngFor=\"let headerCell of getHeaderCells()\">\n <th scope=\"col\"\n [class]=\"['align-top px-base py-sm text-left font-normal text-sm text-neutral-dark', headerCell.classes] | makeHtmlList\"\n [attr.colspan]=\"(headerCell.colspan ? headerCell.colspan : null)\"\n [attr.rowspan]=\"(headerCell.rowspan ? headerCell.rowspan : null)\"\n [attr.id]=\"headerCell.id ? headerCell.id : null\"\n [attr.role]=\"headerCell.role\"\n [attr.aria-describedby]=\"headerCell.ariaDescribedBy\"\n [attr.aria-errormessage]=\"headerCell.ariaErrorMessage\"\n [attr.aria-label]=\"headerCell.ariaLabel\"\n [attr.aria-labelledby]=\"headerCell.ariaLabelledBy\"\n [attr.aria-hidden]=\"headerCell.ariaHidden\"\n [attr.aria-disabled]=\"headerCell.ariaDisabled\"\n [attr.aria-controls]=\"headerCell.ariaControls\"\n [attr.aria-current]=\"headerCell.ariaCurrent\"\n [attr.aria-live]=\"headerCell.ariaLive\"\n [attr.aria-expanded]=\"headerCell.ariaExpanded\"\n [attr.aria-haspopup]=\"headerCell.ariaHasPopup\"\n [attr.tabindex]=\"headerCell.tabindex\">\n <ng-container *desyCustomInnerContent=\"{ component: headerCell, html: headerCell.html, text: headerCell.text }\"></ng-container>\n </th>\n </ng-container>\n </tr>\n </thead>\n <tbody>\n <tr *ngFor=\"let row of getRows(); index as rowIndex\" class=\"border-t border-b border-neutral-base\">\n <ng-container *ngFor=\"let cell of getRowCells(row); first as isFirst; index as cellIndex\">\n <th *ngIf=\"firstCellIsHeader && isFirst; else elseTd\" scope=\"row\"\n [class]=\"['align-top px-base py-sm text-left font-normal text-sm text-neutral-dark', cell.classes] | makeHtmlList\"\n [attr.colspan]=\"cell.colspan ? cell.colspan : null\"\n [attr.rowspan]=\"cell.rowspan ? cell.rowspan : null\"\n [attr.id]=\"cell.id ? cell.id : null\"\n [attr.role]=\"cell.role ? cell.role : null\"\n [attr.aria-label]=\"cell.ariaLabel ? cell.ariaLabel : null\"\n [attr.aria-describedby]=\"cell.ariaDescribedBy ? cell.ariaDescribedBy : null\"\n [attr.aria-labelledby]=\"cell.ariaLabelledBy ? cell.ariaLabelledBy : null\"\n [attr.aria-hidden]=\"cell.ariaHidden ? cell.ariaHidden : null\"\n [attr.aria-disabled]=\"cell.ariaDisabled ? cell.ariaDisabled : null\"\n [attr.aria-controls]=\"cell.ariaControls ? cell.ariaControls : null\"\n [attr.aria-current]=\"cell.ariaCurrent ? cell.ariaCurrent : null\"\n [attr.aria-live]=\"cell.ariaLive ? cell.ariaLive : null\"\n [attr.aria-expanded]=\"cell.ariaExpanded ? cell.ariaExpanded : null\"\n [attr.aria-errormessage]=\"cell.ariaErrorMessage ? cell.ariaErrorMessage : null\"\n [attr.aria-haspopup]=\"cell.ariaHasPopup ? cell.ariaHasPopup : null\"\n [attr.tabindex]=\"cell.tabindex ? cell.tabindex : null\">\n <ng-container *desyCustomInnerContent=\"{ component: cell, html: cell.html, text: cell.text }\"></ng-container>\n </th>\n <ng-template #elseTd>\n <td [class]=\"['px-base py-sm', cell.classes] | makeHtmlList\"\n [attr.colspan]=\"cell.colspan ? cell.colspan : null\"\n [attr.rowspan]=\"cell.rowspan ? cell.rowspan : null\"\n [attr.id]=\"cell.id ? cell.id : null\"\n [attr.role]=\"cell.role ? cell.role : null\"\n [attr.aria-label]=\"cell.ariaLabel ? cell.ariaLabel : null\"\n [attr.aria-describedby]=\"cell.ariaDescribedBy ? cell.ariaDescribedBy : null\"\n [attr.aria-labelledby]=\"cell.ariaLabelledBy ? cell.ariaLabelledBy : null\"\n [attr.aria-hidden]=\"cell.ariaHidden ? cell.ariaHidden : null\"\n [attr.aria-disabled]=\"cell.ariaDisabled ? cell.ariaDisabled : null\"\n [attr.aria-controls]=\"cell.ariaControls ? cell.ariaControls : null\"\n [attr.aria-current]=\"cell.ariaCurrent ? cell.ariaCurrent : null\"\n [attr.aria-live]=\"cell.ariaLive ? cell.ariaLive : null\"\n [attr.aria-expanded]=\"cell.ariaExpanded ? cell.ariaExpanded : null\"\n [attr.aria-errormessage]=\"cell.ariaErrorMessage ? cell.ariaErrorMessage : null\"\n [attr.aria-haspopup]=\"cell.ariaHasPopup ? cell.ariaHasPopup : null\"\n [attr.tabindex]=\"cell.tabindex ? cell.tabindex : null\">\n <ng-container *desyCustomInnerContent=\"{ component: cell, html: cell.html, text: cell.text }\"></ng-container>\n </td>\n </ng-template>\n </ng-container>\n </tr>\n </tbody>\n </table>\n</ng-template>\n\n<div *ngIf=\"wrapper; else tableContent\" [class]=\"wrapper.classes\">\n <ng-container *ngTemplateOutlet=\"tableContent\"></ng-container>\n</div>\n" }]
|
|
53
|
+
}], propDecorators: { rows: [{
|
|
54
|
+
type: Input
|
|
55
|
+
}], head: [{
|
|
56
|
+
type: Input
|
|
57
|
+
}], caption: [{
|
|
58
|
+
type: Input
|
|
59
|
+
}], captionClasses: [{
|
|
60
|
+
type: Input
|
|
61
|
+
}], firstCellIsHeader: [{
|
|
62
|
+
type: Input
|
|
63
|
+
}], classes: [{
|
|
64
|
+
type: Input
|
|
65
|
+
}], id: [{
|
|
66
|
+
type: Input
|
|
67
|
+
}], wrapper: [{
|
|
68
|
+
type: Input
|
|
69
|
+
}], captionComponent: [{
|
|
70
|
+
type: ContentChildren,
|
|
71
|
+
args: [TableCaptionComponent]
|
|
72
|
+
}], headerComponent: [{
|
|
73
|
+
type: ContentChildren,
|
|
74
|
+
args: [TableHeaderComponent]
|
|
75
|
+
}], rowComponentList: [{
|
|
76
|
+
type: ContentChildren,
|
|
77
|
+
args: [TableRowComponent]
|
|
78
|
+
}] } });
|
|
79
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvZGVzeS1hbmd1bGFyL3NyYy9saWIvZGVzeS10YWJsZXMvY29tcG9uZW50cy90YWJsZS90YWJsZS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9kZXN5LWFuZ3VsYXIvc3JjL2xpYi9kZXN5LXRhYmxlcy9jb21wb25lbnRzL3RhYmxlL3RhYmxlLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxPQUFPLEVBQUMsU0FBUyxFQUFFLEtBQUssRUFBRSxlQUFlLEVBQUUsU0FBUyxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQzNFLE9BQU8sRUFBRSxzQkFBc0IsRUFBRSxNQUFNLDRCQUE0QixDQUFDO0FBRXBFLE9BQU8sRUFBQyxvQkFBb0IsRUFBQyxNQUFNLHFDQUFxQyxDQUFDO0FBRXpFLE9BQU8sRUFBQyxxQkFBcUIsRUFBQyxNQUFNLHNDQUFzQyxDQUFDO0FBQzNFLE9BQU8sRUFBQyxpQkFBaUIsRUFBQyxNQUFNLGtDQUFrQyxDQUFDO0FBQ25FLE9BQU8sRUFBQyxnQkFBZ0IsRUFBQyxNQUFNLHlEQUF5RCxDQUFDOzs7OztBQU96RixNQUFNLE9BQU8sY0FBZSxTQUFRLHNCQUFzQjtJQW1CeEQsZUFBZTtRQUNiLE9BQU8sSUFBSSxDQUFDLGdCQUFnQixDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsY0FBYyxDQUFDO0lBQ3JGLENBQUM7SUFFRCxjQUFjO1FBQ1osSUFBSSxXQUFXLEdBQUcsRUFBRSxDQUFDO1FBQ3JCLElBQUksSUFBSSxDQUFDLGVBQWUsSUFBSSxJQUFJLENBQUMsZUFBZSxDQUFDLEtBQUssRUFBRTtZQUN0RCxXQUFXLEdBQUcsSUFBSSxDQUFDLGVBQWUsQ0FBQyxLQUFLLENBQUMsT0FBTyxFQUFFLENBQUM7U0FDcEQ7YUFBTSxJQUFJLElBQUksQ0FBQyxJQUFJLEVBQUU7WUFDcEIsV0FBVyxHQUFHLElBQUksQ0FBQyxJQUFJLENBQUM7U0FDekI7UUFDRCxPQUFPLFdBQVcsQ0FBQztJQUNyQixDQUFDO0lBRUQsT0FBTztRQUNMLElBQUksT0FBTyxHQUFHLEVBQUUsQ0FBQztRQUNqQixJQUFJLElBQUksQ0FBQyxnQkFBZ0IsSUFBSSxJQUFJLENBQUMsZ0JBQWdCLENBQUMsTUFBTSxHQUFHLENBQUMsRUFBRTtZQUM3RCxPQUFPLEdBQUcsSUFBSSxDQUFDLGdCQUFnQixDQUFDLE9BQU8sRUFBRSxDQUFDO1NBQzNDO2FBQU0sSUFBSSxJQUFJLENBQUMsSUFBSSxFQUFFO1lBQ3BCLE9BQU8sR0FBRyxJQUFJLENBQUMsSUFBSSxDQUFDO1NBQ3JCO1FBQ0QsT0FBTyxPQUFPLENBQUM7SUFFakIsQ0FBQztJQUVELFdBQVcsQ0FBQyxHQUFpQztRQUMzQyxPQUFPLEdBQUcsWUFBWSxpQkFBaUIsQ0FBQyxDQUFDLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxPQUFPLEVBQUUsQ0FBQyxDQUFDLENBQUMsR0FBRyxDQUFDO0lBQ3RFLENBQUM7OEdBOUNVLGNBQWM7a0dBQWQsY0FBYywyUUFZUixxQkFBcUIsa0RBR3JCLG9CQUFvQixtREFFcEIsaUJBQWlCLG9EQy9CcEMsMnZNQWtHQTs7QUR6RUU7SUFBQyxnQkFBZ0IsRUFBRTs4QkFDdUMscUJBQXFCO3dEQUFDO0FBRWhGO0lBQUMsZ0JBQWdCLEVBQUU7OEJBQ3FDLG9CQUFvQjt1REFBQzsyRkFmbEUsY0FBYztrQkFKMUIsU0FBUzsrQkFDRSxZQUFZOzhCQUtiLElBQUk7c0JBQVosS0FBSztnQkFDRyxJQUFJO3NCQUFaLEtBQUs7Z0JBQ0csT0FBTztzQkFBZixLQUFLO2dCQUNHLGNBQWM7c0JBQXRCLEtBQUs7Z0JBQ0csaUJBQWlCO3NCQUF6QixLQUFLO2dCQUNHLE9BQU87c0JBQWYsS0FBSztnQkFDRyxFQUFFO3NCQUFWLEtBQUs7Z0JBQ0csT0FBTztzQkFBZixLQUFLO2dCQUdrQyxnQkFBZ0I7c0JBQXZELGVBQWU7dUJBQUMscUJBQXFCO2dCQUdDLGVBQWU7c0JBQXJELGVBQWU7dUJBQUMsb0JBQW9CO2dCQUVELGdCQUFnQjtzQkFBbkQsZUFBZTt1QkFBQyxpQkFBaUIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NvbXBvbmVudCwgSW5wdXQsIENvbnRlbnRDaGlsZHJlbiwgUXVlcnlMaXN0fSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEFjY2Vzc2liaWxpdHlDb21wb25lbnQgfSBmcm9tICcuLi8uLi8uLi9zaGFyZWQvY29tcG9uZW50cyc7XG5pbXBvcnQge0NlbGxEYXRhLCBXcmFwcGVyRGF0YX0gZnJvbSAnLi4vLi4vaW50ZXJmYWNlcyc7XG5pbXBvcnQge1RhYmxlSGVhZGVyQ29tcG9uZW50fSBmcm9tICcuL2NvbXBvbmVudHMvdGFibGUtaGVhZGVyLmNvbXBvbmVudCc7XG5pbXBvcnQge1RhYmxlQ2VsbENvbXBvbmVudH0gZnJvbSAnLi9jb21wb25lbnRzL3RhYmxlLWNlbGwuY29tcG9uZW50JztcbmltcG9ydCB7VGFibGVDYXB0aW9uQ29tcG9uZW50fSBmcm9tICcuL2NvbXBvbmVudHMvdGFibGUtY2FwdGlvbi5jb21wb25lbnQnO1xuaW1wb3J0IHtUYWJsZVJvd0NvbXBvbmVudH0gZnJvbSAnLi9jb21wb25lbnRzL3RhYmxlLXJvdy5jb21wb25lbnQnO1xuaW1wb3J0IHtEZXN5Q29udGVudENoaWxkfSBmcm9tICcuLi8uLi8uLi9zaGFyZWQvZGVjb3JhdG9ycy9kZXN5LWNvbnRlbnQtY2hpbGQuZGVjb3JhdG9yJztcblxuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdkZXN5LXRhYmxlJyxcbiAgdGVtcGxhdGVVcmw6ICcuL3RhYmxlLmNvbXBvbmVudC5odG1sJ1xufSlcbmV4cG9ydCBjbGFzcyBUYWJsZUNvbXBvbmVudCBleHRlbmRzIEFjY2Vzc2liaWxpdHlDb21wb25lbnQge1xuXG4gIEBJbnB1dCgpIHJvd3M6IEFycmF5PENlbGxEYXRhW10+O1xuICBASW5wdXQoKSBoZWFkOiBDZWxsRGF0YVtdO1xuICBASW5wdXQoKSBjYXB0aW9uOiBzdHJpbmc7XG4gIEBJbnB1dCgpIGNhcHRpb25DbGFzc2VzOiBzdHJpbmc7XG4gIEBJbnB1dCgpIGZpcnN0Q2VsbElzSGVhZGVyOiBib29sZWFuO1xuICBASW5wdXQoKSBjbGFzc2VzOiBzdHJpbmc7XG4gIEBJbnB1dCgpIGlkOiBzdHJpbmc7XG4gIEBJbnB1dCgpIHdyYXBwZXI6IFdyYXBwZXJEYXRhO1xuXG4gIEBEZXN5Q29udGVudENoaWxkKClcbiAgQENvbnRlbnRDaGlsZHJlbihUYWJsZUNhcHRpb25Db21wb25lbnQpIGNhcHRpb25Db21wb25lbnQ6IFRhYmxlQ2FwdGlvbkNvbXBvbmVudDtcblxuICBARGVzeUNvbnRlbnRDaGlsZCgpXG4gIEBDb250ZW50Q2hpbGRyZW4oVGFibGVIZWFkZXJDb21wb25lbnQpIGhlYWRlckNvbXBvbmVudDogVGFibGVIZWFkZXJDb21wb25lbnQ7XG5cbiAgQENvbnRlbnRDaGlsZHJlbihUYWJsZVJvd0NvbXBvbmVudCkgcm93Q29tcG9uZW50TGlzdDogUXVlcnlMaXN0PFRhYmxlUm93Q29tcG9uZW50PjtcblxuICBnZXRDYXB0aW9uQ2xhc3MoKTogc3RyaW5nIHtcbiAgICByZXR1cm4gdGhpcy5jYXB0aW9uQ29tcG9uZW50ID8gdGhpcy5jYXB0aW9uQ29tcG9uZW50LmNsYXNzZXMgOiB0aGlzLmNhcHRpb25DbGFzc2VzO1xuICB9XG5cbiAgZ2V0SGVhZGVyQ2VsbHMoKTogVGFibGVDZWxsQ29tcG9uZW50W118Q2VsbERhdGFbXSB7XG4gICAgbGV0IGhlYWRlckNlbGxzID0gW107XG4gICAgaWYgKHRoaXMuaGVhZGVyQ29tcG9uZW50ICYmIHRoaXMuaGVhZGVyQ29tcG9uZW50LmNlbGxzKSB7XG4gICAgICBoZWFkZXJDZWxscyA9IHRoaXMuaGVhZGVyQ29tcG9uZW50LmNlbGxzLnRvQXJyYXkoKTtcbiAgICB9IGVsc2UgaWYgKHRoaXMuaGVhZCkge1xuICAgICAgaGVhZGVyQ2VsbHMgPSB0aGlzLmhlYWQ7XG4gICAgfVxuICAgIHJldHVybiBoZWFkZXJDZWxscztcbiAgfVxuXG4gIGdldFJvd3MoKSB7XG4gICAgbGV0IHJvd0xpc3QgPSBbXTtcbiAgICBpZiAodGhpcy5yb3dDb21wb25lbnRMaXN0ICYmIHRoaXMucm93Q29tcG9uZW50TGlzdC5sZW5ndGggPiAwKSB7XG4gICAgICByb3dMaXN0ID0gdGhpcy5yb3dDb21wb25lbnRMaXN0LnRvQXJyYXkoKTtcbiAgICB9IGVsc2UgaWYgKHRoaXMucm93cykge1xuICAgICAgcm93TGlzdCA9IHRoaXMucm93cztcbiAgICB9XG4gICAgcmV0dXJuIHJvd0xpc3Q7XG4gICAgLy90aGlzLnJvd0NvbXBvbmVudExpc3QgJiYgdGhpcy5yb3dDb21wb25lbnRMaXN0Lmxlbmd0aCA+IDAgPyB0aGlzLnJvd0NvbXBvbmVudExpc3QudG9BcnJheSgpIDogdGhpcy5yb3dzO1xuICB9XG5cbiAgZ2V0Um93Q2VsbHMocm93OiBUYWJsZVJvd0NvbXBvbmVudHxDZWxsRGF0YVtdKTogVGFibGVDZWxsQ29tcG9uZW50W118Q2VsbERhdGFbXSB7XG4gICAgcmV0dXJuIHJvdyBpbnN0YW5jZW9mIFRhYmxlUm93Q29tcG9uZW50ID8gcm93LmNlbGxzLnRvQXJyYXkoKSA6IHJvdztcbiAgfVxuXG59XG5cbiIsIjxuZy10ZW1wbGF0ZSAjdGFibGVDb250ZW50PlxuICA8dGFibGUgW2NsYXNzXT1cIlsnYy10YWJsZScsIGNsYXNzZXNdIHwgbWFrZUh0bWxMaXN0XCJcbiAgICAgICAgIFthdHRyLmlkXT1cImlkID8gaWQgOiBudWxsXCJcbiAgICAgICAgIFthdHRyLnJvbGVdPVwicm9sZVwiXG4gICAgICAgICBbYXR0ci5hcmlhLWRlc2NyaWJlZGJ5XT1cImFyaWFEZXNjcmliZWRCeVwiXG4gICAgICAgICBbYXR0ci5hcmlhLWVycm9ybWVzc2FnZV09XCJhcmlhRXJyb3JNZXNzYWdlXCJcbiAgICAgICAgIFthdHRyLmFyaWEtbGFiZWxdPVwiYXJpYUxhYmVsXCJcbiAgICAgICAgIFthdHRyLmFyaWEtbGFiZWxsZWRieV09XCJhcmlhTGFiZWxsZWRCeVwiXG4gICAgICAgICBbYXR0ci5hcmlhLWhpZGRlbl09XCJhcmlhSGlkZGVuXCJcbiAgICAgICAgIFthdHRyLmFyaWEtZGlzYWJsZWRdPVwiYXJpYURpc2FibGVkXCJcbiAgICAgICAgIFthdHRyLmFyaWEtY29udHJvbHNdPVwiYXJpYUNvbnRyb2xzXCJcbiAgICAgICAgIFthdHRyLmFyaWEtY3VycmVudF09XCJhcmlhQ3VycmVudFwiXG4gICAgICAgICBbYXR0ci5hcmlhLWxpdmVdPVwiYXJpYUxpdmVcIlxuICAgICAgICAgW2F0dHIuYXJpYS1leHBhbmRlZF09XCJhcmlhRXhwYW5kZWRcIlxuICAgICAgICAgW2F0dHIuYXJpYS1oYXNwb3B1cF09XCJhcmlhSGFzUG9wdXBcIlxuICAgICAgICAgW2F0dHIudGFiaW5kZXhdPVwidGFiaW5kZXhcIj5cbiAgICA8Y2FwdGlvbiAqbmdJZj1cImNhcHRpb24gfHwgY2FwdGlvbkNvbXBvbmVudFwiIFtjbGFzc109XCJnZXRDYXB0aW9uQ2xhc3MoKVwiPlxuICAgICAgPG5nLWNvbnRhaW5lciAqZGVzeUN1c3RvbUlubmVyQ29udGVudD1cInsgY29tcG9uZW50OiBjYXB0aW9uQ29tcG9uZW50LCB0ZXh0OiBjYXB0aW9uID8gY2FwdGlvbiA6IG51bGwgfVwiPjwvbmctY29udGFpbmVyPlxuICAgIDwvY2FwdGlvbj5cbiAgICA8dGhlYWQgKm5nSWY9XCJoZWFkIHx8IGhlYWRlckNvbXBvbmVudFwiPlxuICAgICAgPHRyIGNsYXNzPVwiYm9yZGVyLXQgYm9yZGVyLWIgYm9yZGVyLW5ldXRyYWwtYmFzZVwiPlxuICAgICAgICA8bmctY29udGFpbmVyICpuZ0Zvcj1cImxldCBoZWFkZXJDZWxsIG9mIGdldEhlYWRlckNlbGxzKClcIj5cbiAgICAgICAgICA8dGggc2NvcGU9XCJjb2xcIlxuICAgICAgICAgICAgICBbY2xhc3NdPVwiWydhbGlnbi10b3AgcHgtYmFzZSBweS1zbSB0ZXh0LWxlZnQgZm9udC1ub3JtYWwgdGV4dC1zbSB0ZXh0LW5ldXRyYWwtZGFyaycsIGhlYWRlckNlbGwuY2xhc3Nlc10gfCBtYWtlSHRtbExpc3RcIlxuICAgICAgICAgICAgICBbYXR0ci5jb2xzcGFuXT1cIihoZWFkZXJDZWxsLmNvbHNwYW4gPyAgaGVhZGVyQ2VsbC5jb2xzcGFuIDogbnVsbClcIlxuICAgICAgICAgICAgICBbYXR0ci5yb3dzcGFuXT1cIihoZWFkZXJDZWxsLnJvd3NwYW4gPyBoZWFkZXJDZWxsLnJvd3NwYW4gOiBudWxsKVwiXG4gICAgICAgICAgICAgIFthdHRyLmlkXT1cImhlYWRlckNlbGwuaWQgPyBoZWFkZXJDZWxsLmlkIDogbnVsbFwiXG4gICAgICAgICAgICAgIFthdHRyLnJvbGVdPVwiaGVhZGVyQ2VsbC5yb2xlXCJcbiAgICAgICAgICAgICAgW2F0dHIuYXJpYS1kZXNjcmliZWRieV09XCJoZWFkZXJDZWxsLmFyaWFEZXNjcmliZWRCeVwiXG4gICAgICAgICAgICAgIFthdHRyLmFyaWEtZXJyb3JtZXNzYWdlXT1cImhlYWRlckNlbGwuYXJpYUVycm9yTWVzc2FnZVwiXG4gICAgICAgICAgICAgIFthdHRyLmFyaWEtbGFiZWxdPVwiaGVhZGVyQ2VsbC5hcmlhTGFiZWxcIlxuICAgICAgICAgICAgICBbYXR0ci5hcmlhLWxhYmVsbGVkYnldPVwiaGVhZGVyQ2VsbC5hcmlhTGFiZWxsZWRCeVwiXG4gICAgICAgICAgICAgIFthdHRyLmFyaWEtaGlkZGVuXT1cImhlYWRlckNlbGwuYXJpYUhpZGRlblwiXG4gICAgICAgICAgICAgIFthdHRyLmFyaWEtZGlzYWJsZWRdPVwiaGVhZGVyQ2VsbC5hcmlhRGlzYWJsZWRcIlxuICAgICAgICAgICAgICBbYXR0ci5hcmlhLWNvbnRyb2xzXT1cImhlYWRlckNlbGwuYXJpYUNvbnRyb2xzXCJcbiAgICAgICAgICAgICAgW2F0dHIuYXJpYS1jdXJyZW50XT1cImhlYWRlckNlbGwuYXJpYUN1cnJlbnRcIlxuICAgICAgICAgICAgICBbYXR0ci5hcmlhLWxpdmVdPVwiaGVhZGVyQ2VsbC5hcmlhTGl2ZVwiXG4gICAgICAgICAgICAgIFthdHRyLmFyaWEtZXhwYW5kZWRdPVwiaGVhZGVyQ2VsbC5hcmlhRXhwYW5kZWRcIlxuICAgICAgICAgICAgICBbYXR0ci5hcmlhLWhhc3BvcHVwXT1cImhlYWRlckNlbGwuYXJpYUhhc1BvcHVwXCJcbiAgICAgICAgICAgICAgW2F0dHIudGFiaW5kZXhdPVwiaGVhZGVyQ2VsbC50YWJpbmRleFwiPlxuICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqZGVzeUN1c3RvbUlubmVyQ29udGVudD1cInsgY29tcG9uZW50OiBoZWFkZXJDZWxsLCBodG1sOiBoZWFkZXJDZWxsLmh0bWwsIHRleHQ6IGhlYWRlckNlbGwudGV4dCB9XCI+PC9uZy1jb250YWluZXI+XG4gICAgICAgICAgPC90aD5cbiAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICA8L3RyPlxuICAgIDwvdGhlYWQ+XG4gICAgPHRib2R5PlxuICAgICAgPHRyICpuZ0Zvcj1cImxldCByb3cgb2YgZ2V0Um93cygpOyBpbmRleCBhcyByb3dJbmRleFwiIGNsYXNzPVwiYm9yZGVyLXQgYm9yZGVyLWIgYm9yZGVyLW5ldXRyYWwtYmFzZVwiPlxuICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nRm9yPVwibGV0IGNlbGwgb2YgZ2V0Um93Q2VsbHMocm93KTsgZmlyc3QgYXMgaXNGaXJzdDsgaW5kZXggYXMgY2VsbEluZGV4XCI+XG4gICAgICAgICAgICAgIDx0aCAqbmdJZj1cImZpcnN0Q2VsbElzSGVhZGVyICYmIGlzRmlyc3Q7IGVsc2UgZWxzZVRkXCIgc2NvcGU9XCJyb3dcIlxuICAgICAgICAgICAgICAgICAgW2NsYXNzXT1cIlsnYWxpZ24tdG9wIHB4LWJhc2UgcHktc20gdGV4dC1sZWZ0IGZvbnQtbm9ybWFsIHRleHQtc20gdGV4dC1uZXV0cmFsLWRhcmsnLCBjZWxsLmNsYXNzZXNdIHwgbWFrZUh0bWxMaXN0XCJcbiAgICAgICAgICAgICAgICAgIFthdHRyLmNvbHNwYW5dPVwiY2VsbC5jb2xzcGFuID8gY2VsbC5jb2xzcGFuICA6IG51bGxcIlxuICAgICAgICAgICAgICAgICAgW2F0dHIucm93c3Bhbl09XCJjZWxsLnJvd3NwYW4gPyBjZWxsLnJvd3NwYW4gIDogbnVsbFwiXG4gICAgICAgICAgICAgICAgICBbYXR0ci5pZF09XCJjZWxsLmlkID8gY2VsbC5pZCA6IG51bGxcIlxuICAgICAgICAgICAgICAgICAgW2F0dHIucm9sZV09XCJjZWxsLnJvbGUgPyBjZWxsLnJvbGUgOiBudWxsXCJcbiAgICAgICAgICAgICAgICAgIFthdHRyLmFyaWEtbGFiZWxdPVwiY2VsbC5hcmlhTGFiZWwgPyBjZWxsLmFyaWFMYWJlbCA6IG51bGxcIlxuICAgICAgICAgICAgICAgICAgW2F0dHIuYXJpYS1kZXNjcmliZWRieV09XCJjZWxsLmFyaWFEZXNjcmliZWRCeSA/IGNlbGwuYXJpYURlc2NyaWJlZEJ5IDogbnVsbFwiXG4gICAgICAgICAgICAgICAgICBbYXR0ci5hcmlhLWxhYmVsbGVkYnldPVwiY2VsbC5hcmlhTGFiZWxsZWRCeSA/IGNlbGwuYXJpYUxhYmVsbGVkQnkgOiBudWxsXCJcbiAgICAgICAgICAgICAgICAgIFthdHRyLmFyaWEtaGlkZGVuXT1cImNlbGwuYXJpYUhpZGRlbiA/IGNlbGwuYXJpYUhpZGRlbiA6IG51bGxcIlxuICAgICAgICAgICAgICAgICAgW2F0dHIuYXJpYS1kaXNhYmxlZF09XCJjZWxsLmFyaWFEaXNhYmxlZCA/IGNlbGwuYXJpYURpc2FibGVkIDogbnVsbFwiXG4gICAgICAgICAgICAgICAgICBbYXR0ci5hcmlhLWNvbnRyb2xzXT1cImNlbGwuYXJpYUNvbnRyb2xzID8gY2VsbC5hcmlhQ29udHJvbHMgOiBudWxsXCJcbiAgICAgICAgICAgICAgICAgIFthdHRyLmFyaWEtY3VycmVudF09XCJjZWxsLmFyaWFDdXJyZW50ID8gY2VsbC5hcmlhQ3VycmVudCA6IG51bGxcIlxuICAgICAgICAgICAgICAgICAgW2F0dHIuYXJpYS1saXZlXT1cImNlbGwuYXJpYUxpdmUgPyBjZWxsLmFyaWFMaXZlIDogbnVsbFwiXG4gICAgICAgICAgICAgICAgICBbYXR0ci5hcmlhLWV4cGFuZGVkXT1cImNlbGwuYXJpYUV4cGFuZGVkID8gY2VsbC5hcmlhRXhwYW5kZWQgOiBudWxsXCJcbiAgICAgICAgICAgICAgICAgIFthdHRyLmFyaWEtZXJyb3JtZXNzYWdlXT1cImNlbGwuYXJpYUVycm9yTWVzc2FnZSA/IGNlbGwuYXJpYUVycm9yTWVzc2FnZSA6IG51bGxcIlxuICAgICAgICAgICAgICAgICAgW2F0dHIuYXJpYS1oYXNwb3B1cF09XCJjZWxsLmFyaWFIYXNQb3B1cCA/IGNlbGwuYXJpYUhhc1BvcHVwIDogbnVsbFwiXG4gICAgICAgICAgICAgICAgICBbYXR0ci50YWJpbmRleF09XCJjZWxsLnRhYmluZGV4ID8gY2VsbC50YWJpbmRleCA6IG51bGxcIj5cbiAgICAgICAgICAgICAgICA8bmctY29udGFpbmVyICpkZXN5Q3VzdG9tSW5uZXJDb250ZW50PVwieyBjb21wb25lbnQ6IGNlbGwsIGh0bWw6IGNlbGwuaHRtbCwgdGV4dDogY2VsbC50ZXh0IH1cIj48L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICAgICAgPC90aD5cbiAgICAgICAgICAgICAgPG5nLXRlbXBsYXRlICNlbHNlVGQ+XG4gICAgICAgICAgICAgICAgICA8dGQgW2NsYXNzXT1cIlsncHgtYmFzZSBweS1zbScsIGNlbGwuY2xhc3Nlc10gfCBtYWtlSHRtbExpc3RcIlxuICAgICAgICAgICAgICAgICAgICAgIFthdHRyLmNvbHNwYW5dPVwiY2VsbC5jb2xzcGFuID8gY2VsbC5jb2xzcGFuICA6IG51bGxcIlxuICAgICAgICAgICAgICAgICAgICAgIFthdHRyLnJvd3NwYW5dPVwiY2VsbC5yb3dzcGFuID8gY2VsbC5yb3dzcGFuICA6IG51bGxcIlxuICAgICAgICAgICAgICAgICAgICAgIFthdHRyLmlkXT1cImNlbGwuaWQgPyBjZWxsLmlkIDogbnVsbFwiXG4gICAgICAgICAgICAgICAgICAgICAgW2F0dHIucm9sZV09XCJjZWxsLnJvbGUgPyBjZWxsLnJvbGUgOiBudWxsXCJcbiAgICAgICAgICAgICAgICAgICAgICBbYXR0ci5hcmlhLWxhYmVsXT1cImNlbGwuYXJpYUxhYmVsID8gY2VsbC5hcmlhTGFiZWwgOiBudWxsXCJcbiAgICAgICAgICAgICAgICAgICAgICBbYXR0ci5hcmlhLWRlc2NyaWJlZGJ5XT1cImNlbGwuYXJpYURlc2NyaWJlZEJ5ID8gY2VsbC5hcmlhRGVzY3JpYmVkQnkgOiBudWxsXCJcbiAgICAgICAgICAgICAgICAgICAgICBbYXR0ci5hcmlhLWxhYmVsbGVkYnldPVwiY2VsbC5hcmlhTGFiZWxsZWRCeSA/IGNlbGwuYXJpYUxhYmVsbGVkQnkgOiBudWxsXCJcbiAgICAgICAgICAgICAgICAgICAgICBbYXR0ci5hcmlhLWhpZGRlbl09XCJjZWxsLmFyaWFIaWRkZW4gPyBjZWxsLmFyaWFIaWRkZW4gOiBudWxsXCJcbiAgICAgICAgICAgICAgICAgICAgICBbYXR0ci5hcmlhLWRpc2FibGVkXT1cImNlbGwuYXJpYURpc2FibGVkID8gY2VsbC5hcmlhRGlzYWJsZWQgOiBudWxsXCJcbiAgICAgICAgICAgICAgICAgICAgICBbYXR0ci5hcmlhLWNvbnRyb2xzXT1cImNlbGwuYXJpYUNvbnRyb2xzID8gY2VsbC5hcmlhQ29udHJvbHMgOiBudWxsXCJcbiAgICAgICAgICAgICAgICAgICAgICBbYXR0ci5hcmlhLWN1cnJlbnRdPVwiY2VsbC5hcmlhQ3VycmVudCA/IGNlbGwuYXJpYUN1cnJlbnQgOiBudWxsXCJcbiAgICAgICAgICAgICAgICAgICAgICBbYXR0ci5hcmlhLWxpdmVdPVwiY2VsbC5hcmlhTGl2ZSA/IGNlbGwuYXJpYUxpdmUgOiBudWxsXCJcbiAgICAgICAgICAgICAgICAgICAgICBbYXR0ci5hcmlhLWV4cGFuZGVkXT1cImNlbGwuYXJpYUV4cGFuZGVkID8gY2VsbC5hcmlhRXhwYW5kZWQgOiBudWxsXCJcbiAgICAgICAgICAgICAgICAgICAgICBbYXR0ci5hcmlhLWVycm9ybWVzc2FnZV09XCJjZWxsLmFyaWFFcnJvck1lc3NhZ2UgPyBjZWxsLmFyaWFFcnJvck1lc3NhZ2UgOiBudWxsXCJcbiAgICAgICAgICAgICAgICAgICAgICBbYXR0ci5hcmlhLWhhc3BvcHVwXT1cImNlbGwuYXJpYUhhc1BvcHVwID8gY2VsbC5hcmlhSGFzUG9wdXAgOiBudWxsXCJcbiAgICAgICAgICAgICAgICAgICAgICBbYXR0ci50YWJpbmRleF09XCJjZWxsLnRhYmluZGV4ID8gY2VsbC50YWJpbmRleCA6IG51bGxcIj5cbiAgICAgICAgICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqZGVzeUN1c3RvbUlubmVyQ29udGVudD1cInsgY29tcG9uZW50OiBjZWxsLCBodG1sOiBjZWxsLmh0bWwsIHRleHQ6IGNlbGwudGV4dCB9XCI+PC9uZy1jb250YWluZXI+XG4gICAgICAgICAgICAgICAgICA8L3RkPlxuICAgICAgICAgICAgICA8L25nLXRlbXBsYXRlPlxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgPC90cj5cbiAgICA8L3Rib2R5PlxuICA8L3RhYmxlPlxuPC9uZy10ZW1wbGF0ZT5cblxuPGRpdiAqbmdJZj1cIndyYXBwZXI7IGVsc2UgdGFibGVDb250ZW50XCIgW2NsYXNzXT1cIndyYXBwZXIuY2xhc3Nlc1wiPlxuICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwidGFibGVDb250ZW50XCI+PC9uZy1jb250YWluZXI+XG48L2Rpdj5cbiJdfQ==
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { __decorate, __metadata } from "tslib";
|
|
2
|
+
import { ContentComponent } from './../../../../desy-commons/components/content/content.component';
|
|
3
|
+
import { TableAdvancedSelectComponent } from './table-advanced-select.component';
|
|
4
|
+
import { DesyContentChild } from '../../../../shared/decorators/desy-content-child.decorator';
|
|
5
|
+
import { Component, ContentChildren, Input } from '@angular/core';
|
|
6
|
+
import { OrderBy } from '../../../interfaces';
|
|
7
|
+
import { ContentBaseComponent } from '../../../../shared/components';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export class TableAdvancedHeaderCellComponent extends ContentBaseComponent {
|
|
10
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: TableAdvancedHeaderCellComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
11
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.7", type: TableAdvancedHeaderCellComponent, selector: "desy-table-advanced-header-cell", inputs: { classes: "classes", id: "id", colspan: "colspan", rowspan: "rowspan", orderBy: "orderBy", hasFilter: "hasFilter", filterClasses: "filterClasses", hasSelect: "hasSelect" }, queries: [{ propertyName: "selectComponent", predicate: TableAdvancedSelectComponent }, { propertyName: "contentComponent", predicate: ContentComponent }], usesInheritance: true, ngImport: i0, template: '<ng-template #contentTemplate><ng-content></ng-content></ng-template>', isInline: true }); }
|
|
12
|
+
}
|
|
13
|
+
__decorate([
|
|
14
|
+
DesyContentChild(),
|
|
15
|
+
__metadata("design:type", TableAdvancedSelectComponent)
|
|
16
|
+
], TableAdvancedHeaderCellComponent.prototype, "selectComponent", void 0);
|
|
17
|
+
__decorate([
|
|
18
|
+
DesyContentChild(),
|
|
19
|
+
__metadata("design:type", ContentComponent)
|
|
20
|
+
], TableAdvancedHeaderCellComponent.prototype, "contentComponent", void 0);
|
|
21
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: TableAdvancedHeaderCellComponent, decorators: [{
|
|
22
|
+
type: Component,
|
|
23
|
+
args: [{
|
|
24
|
+
selector: 'desy-table-advanced-header-cell',
|
|
25
|
+
template: '<ng-template #contentTemplate><ng-content></ng-content></ng-template>'
|
|
26
|
+
}]
|
|
27
|
+
}], propDecorators: { classes: [{
|
|
28
|
+
type: Input
|
|
29
|
+
}], id: [{
|
|
30
|
+
type: Input
|
|
31
|
+
}], colspan: [{
|
|
32
|
+
type: Input
|
|
33
|
+
}], rowspan: [{
|
|
34
|
+
type: Input
|
|
35
|
+
}], orderBy: [{
|
|
36
|
+
type: Input
|
|
37
|
+
}], hasFilter: [{
|
|
38
|
+
type: Input
|
|
39
|
+
}], filterClasses: [{
|
|
40
|
+
type: Input
|
|
41
|
+
}], hasSelect: [{
|
|
42
|
+
type: Input
|
|
43
|
+
}], selectComponent: [{
|
|
44
|
+
type: ContentChildren,
|
|
45
|
+
args: [TableAdvancedSelectComponent]
|
|
46
|
+
}], contentComponent: [{
|
|
47
|
+
type: ContentChildren,
|
|
48
|
+
args: [ContentComponent]
|
|
49
|
+
}] } });
|
|
50
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtYWR2YW5jZWQtaGVhZGVyLWNlbGwuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvZGVzeS1hbmd1bGFyL3NyYy9saWIvZGVzeS10YWJsZXMvY29tcG9uZW50cy90YWJsZS1hZHZhbmNlZC9jb21wb25lbnRzL3RhYmxlLWFkdmFuY2VkLWhlYWRlci1jZWxsLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0saUVBQWlFLENBQUM7QUFDbkcsT0FBTyxFQUFFLDRCQUE0QixFQUFFLE1BQU0sbUNBQW1DLENBQUM7QUFDakYsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sNERBQTRELENBQUM7QUFDOUYsT0FBTyxFQUFDLFNBQVMsRUFBRSxlQUFlLEVBQUUsS0FBSyxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ2hFLE9BQU8sRUFBb0IsT0FBTyxFQUFDLE1BQU0scUJBQXFCLENBQUM7QUFDL0QsT0FBTyxFQUFDLG9CQUFvQixFQUFDLE1BQU0sK0JBQStCLENBQUM7O0FBTW5FLE1BQU0sT0FBTyxnQ0FBaUMsU0FBUSxvQkFBb0I7OEdBQTdELGdDQUFnQztrR0FBaEMsZ0NBQWdDLDZSQWUxQiw0QkFBNEIsbURBRzVCLGdCQUFnQixvREFwQnZCLHVFQUF1RTs7QUFnQmpGO0lBQUMsZ0JBQWdCLEVBQUU7OEJBQzhDLDRCQUE0Qjt5RUFBQztBQUU5RjtJQUFDLGdCQUFnQixFQUFFOzhCQUNtQyxnQkFBZ0I7MEVBQUM7MkZBbEI1RCxnQ0FBZ0M7a0JBSjVDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLGlDQUFpQztvQkFDM0MsUUFBUSxFQUFFLHVFQUF1RTtpQkFDbEY7OEJBRVUsT0FBTztzQkFBZixLQUFLO2dCQUNHLEVBQUU7c0JBQVYsS0FBSztnQkFDRyxPQUFPO3NCQUFmLEtBQUs7Z0JBQ0csT0FBTztzQkFBZixLQUFLO2dCQUNHLE9BQU87c0JBQWYsS0FBSztnQkFDRyxTQUFTO3NCQUFqQixLQUFLO2dCQUNHLGFBQWE7c0JBQXJCLEtBQUs7Z0JBQ0csU0FBUztzQkFBakIsS0FBSztnQkFPeUMsZUFBZTtzQkFBN0QsZUFBZTt1QkFBQyw0QkFBNEI7Z0JBR1YsZ0JBQWdCO3NCQUFsRCxlQUFlO3VCQUFDLGdCQUFnQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbnRlbnRDb21wb25lbnQgfSBmcm9tICcuLy4uLy4uLy4uLy4uL2Rlc3ktY29tbW9ucy9jb21wb25lbnRzL2NvbnRlbnQvY29udGVudC5jb21wb25lbnQnO1xuaW1wb3J0IHsgVGFibGVBZHZhbmNlZFNlbGVjdENvbXBvbmVudCB9IGZyb20gJy4vdGFibGUtYWR2YW5jZWQtc2VsZWN0LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBEZXN5Q29udGVudENoaWxkIH0gZnJvbSAnLi4vLi4vLi4vLi4vc2hhcmVkL2RlY29yYXRvcnMvZGVzeS1jb250ZW50LWNoaWxkLmRlY29yYXRvcic7XG5pbXBvcnQge0NvbXBvbmVudCwgQ29udGVudENoaWxkcmVuLCBJbnB1dH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0hlYWRDZWxsTW9kZWxEYXRhLCBPcmRlckJ5fSBmcm9tICcuLi8uLi8uLi9pbnRlcmZhY2VzJztcbmltcG9ydCB7Q29udGVudEJhc2VDb21wb25lbnR9IGZyb20gJy4uLy4uLy4uLy4uL3NoYXJlZC9jb21wb25lbnRzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZGVzeS10YWJsZS1hZHZhbmNlZC1oZWFkZXItY2VsbCcsXG4gIHRlbXBsYXRlOiAnPG5nLXRlbXBsYXRlICNjb250ZW50VGVtcGxhdGU+PG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PjwvbmctdGVtcGxhdGU+J1xufSlcbmV4cG9ydCBjbGFzcyBUYWJsZUFkdmFuY2VkSGVhZGVyQ2VsbENvbXBvbmVudCBleHRlbmRzIENvbnRlbnRCYXNlQ29tcG9uZW50IGltcGxlbWVudHMgSGVhZENlbGxNb2RlbERhdGEge1xuICBASW5wdXQoKSBjbGFzc2VzOiBzdHJpbmc7XG4gIEBJbnB1dCgpIGlkOiBzdHJpbmc7XG4gIEBJbnB1dCgpIGNvbHNwYW46IG51bWJlcjtcbiAgQElucHV0KCkgcm93c3BhbjogbnVtYmVyO1xuICBASW5wdXQoKSBvcmRlckJ5OiBPcmRlckJ5OyAvLyBQb3NzaWJsZSB2YWx1ZXMgYG5vbmVgLCBgYXNjYCwgYGRlc2NgLlxuICBASW5wdXQoKSBoYXNGaWx0ZXI6IGJvb2xlYW47XG4gIEBJbnB1dCgpIGZpbHRlckNsYXNzZXM6IHN0cmluZztcbiAgQElucHV0KCkgaGFzU2VsZWN0PzogYm9vbGVhbjtcbiAgdmFsdWVGaWx0ZXI/OiBzdHJpbmc7XG4gIGFjdGl2ZUZpbHRlcj86IGJvb2xlYW47XG4gIHZhbHVlU2VsZWN0Pzogc3RyaW5nO1xuICBhY3RpdmVTZWxlY3Q/OiBib29sZWFuO1xuXG4gIEBEZXN5Q29udGVudENoaWxkKClcbiAgQENvbnRlbnRDaGlsZHJlbihUYWJsZUFkdmFuY2VkU2VsZWN0Q29tcG9uZW50KSBzZWxlY3RDb21wb25lbnQ/OiBUYWJsZUFkdmFuY2VkU2VsZWN0Q29tcG9uZW50O1xuXG4gIEBEZXN5Q29udGVudENoaWxkKClcbiAgQENvbnRlbnRDaGlsZHJlbihDb250ZW50Q29tcG9uZW50KSBjb250ZW50Q29tcG9uZW50PzogQ29udGVudENvbXBvbmVudDtcbn1cbiJdfQ==
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Component, ContentChildren, QueryList } from '@angular/core';
|
|
2
|
+
import { TableAdvancedHeaderCellComponent } from './table-advanced-header-cell.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export class TableAdvancedHeaderComponent {
|
|
5
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: TableAdvancedHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.7", type: TableAdvancedHeaderComponent, selector: "desy-table-advanced-header", queries: [{ propertyName: "cells", predicate: TableAdvancedHeaderCellComponent }], ngImport: i0, template: '', isInline: true }); }
|
|
7
|
+
}
|
|
8
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: TableAdvancedHeaderComponent, decorators: [{
|
|
9
|
+
type: Component,
|
|
10
|
+
args: [{
|
|
11
|
+
selector: 'desy-table-advanced-header',
|
|
12
|
+
template: ''
|
|
13
|
+
}]
|
|
14
|
+
}], propDecorators: { cells: [{
|
|
15
|
+
type: ContentChildren,
|
|
16
|
+
args: [TableAdvancedHeaderCellComponent]
|
|
17
|
+
}] } });
|
|
18
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtYWR2YW5jZWQtaGVhZGVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Rlc3ktYW5ndWxhci9zcmMvbGliL2Rlc3ktdGFibGVzL2NvbXBvbmVudHMvdGFibGUtYWR2YW5jZWQvY29tcG9uZW50cy90YWJsZS1hZHZhbmNlZC1oZWFkZXIuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsZUFBZSxFQUFFLFNBQVMsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUNwRSxPQUFPLEVBQUMsZ0NBQWdDLEVBQUMsTUFBTSx3Q0FBd0MsQ0FBQzs7QUFNeEYsTUFBTSxPQUFPLDRCQUE0Qjs4R0FBNUIsNEJBQTRCO2tHQUE1Qiw0QkFBNEIsd0ZBQ3RCLGdDQUFnQyw2QkFIdkMsRUFBRTs7MkZBRUQsNEJBQTRCO2tCQUp4QyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSw0QkFBNEI7b0JBQ3RDLFFBQVEsRUFBRSxFQUFFO2lCQUNiOzhCQUVvRCxLQUFLO3NCQUF2RCxlQUFlO3VCQUFDLGdDQUFnQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7Q29tcG9uZW50LCBDb250ZW50Q2hpbGRyZW4sIFF1ZXJ5TGlzdH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge1RhYmxlQWR2YW5jZWRIZWFkZXJDZWxsQ29tcG9uZW50fSBmcm9tICcuL3RhYmxlLWFkdmFuY2VkLWhlYWRlci1jZWxsLmNvbXBvbmVudCc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2Rlc3ktdGFibGUtYWR2YW5jZWQtaGVhZGVyJyxcbiAgdGVtcGxhdGU6ICcnXG59KVxuZXhwb3J0IGNsYXNzIFRhYmxlQWR2YW5jZWRIZWFkZXJDb21wb25lbnQge1xuICBAQ29udGVudENoaWxkcmVuKFRhYmxlQWR2YW5jZWRIZWFkZXJDZWxsQ29tcG9uZW50KSBjZWxsczogUXVlcnlMaXN0PFRhYmxlQWR2YW5jZWRIZWFkZXJDZWxsQ29tcG9uZW50Pjtcbn1cbiJdfQ==
|
|
@@ -2,10 +2,10 @@ import { Component, Input } from '@angular/core';
|
|
|
2
2
|
import { ContentBaseComponent } from '../../../../shared/components';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export class TableAdvancedRowCellComponent extends ContentBaseComponent {
|
|
5
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: TableAdvancedRowCellComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
6
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.7", type: TableAdvancedRowCellComponent, selector: "desy-table-advanced-row-cell", inputs: { classes: "classes", id: "id", colspan: "colspan", rowspan: "rowspan" }, usesInheritance: true, ngImport: i0, template: '<ng-template #contentTemplate><ng-content></ng-content></ng-template>', isInline: true }); }
|
|
5
7
|
}
|
|
6
|
-
|
|
7
|
-
TableAdvancedRowCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: TableAdvancedRowCellComponent, selector: "desy-table-advanced-row-cell", inputs: { classes: "classes", id: "id", colspan: "colspan", rowspan: "rowspan" }, usesInheritance: true, ngImport: i0, template: '<ng-template #contentTemplate><ng-content></ng-content></ng-template>', isInline: true });
|
|
8
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TableAdvancedRowCellComponent, decorators: [{
|
|
8
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: TableAdvancedRowCellComponent, decorators: [{
|
|
9
9
|
type: Component,
|
|
10
10
|
args: [{
|
|
11
11
|
selector: 'desy-table-advanced-row-cell',
|
|
@@ -20,4 +20,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImpor
|
|
|
20
20
|
}], rowspan: [{
|
|
21
21
|
type: Input
|
|
22
22
|
}] } });
|
|
23
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
23
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtYWR2YW5jZWQtcm93LWNlbGwuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvZGVzeS1hbmd1bGFyL3NyYy9saWIvZGVzeS10YWJsZXMvY29tcG9uZW50cy90YWJsZS1hZHZhbmNlZC9jb21wb25lbnRzL3RhYmxlLWFkdmFuY2VkLXJvdy1jZWxsLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsU0FBUyxFQUFFLEtBQUssRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUMvQyxPQUFPLEVBQUMsb0JBQW9CLEVBQUMsTUFBTSwrQkFBK0IsQ0FBQzs7QUFPbkUsTUFBTSxPQUFPLDZCQUE4QixTQUFRLG9CQUFvQjs4R0FBMUQsNkJBQTZCO2tHQUE3Qiw2QkFBNkIsNktBRjlCLHVFQUF1RTs7MkZBRXRFLDZCQUE2QjtrQkFKekMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsOEJBQThCO29CQUN4QyxRQUFRLEVBQUUsdUVBQXVFO2lCQUNsRjs4QkFFVSxPQUFPO3NCQUFmLEtBQUs7Z0JBQ0csRUFBRTtzQkFBVixLQUFLO2dCQUNHLE9BQU87c0JBQWYsS0FBSztnQkFDRyxPQUFPO3NCQUFmLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NvbXBvbmVudCwgSW5wdXR9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtDb250ZW50QmFzZUNvbXBvbmVudH0gZnJvbSAnLi4vLi4vLi4vLi4vc2hhcmVkL2NvbXBvbmVudHMnO1xuaW1wb3J0IHtDZWxsRGF0YX0gZnJvbSAnLi4vLi4vLi4vaW50ZXJmYWNlcyc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2Rlc3ktdGFibGUtYWR2YW5jZWQtcm93LWNlbGwnLFxuICB0ZW1wbGF0ZTogJzxuZy10ZW1wbGF0ZSAjY29udGVudFRlbXBsYXRlPjxuZy1jb250ZW50PjwvbmctY29udGVudD48L25nLXRlbXBsYXRlPidcbn0pXG5leHBvcnQgY2xhc3MgVGFibGVBZHZhbmNlZFJvd0NlbGxDb21wb25lbnQgZXh0ZW5kcyBDb250ZW50QmFzZUNvbXBvbmVudCBpbXBsZW1lbnRzIENlbGxEYXRhIHtcbiAgQElucHV0KCkgY2xhc3Nlcz86IHN0cmluZztcbiAgQElucHV0KCkgaWQ/OiBzdHJpbmc7XG4gIEBJbnB1dCgpIGNvbHNwYW4/OiBudW1iZXI7XG4gIEBJbnB1dCgpIHJvd3NwYW4/OiBudW1iZXI7XG59XG4iXX0=
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { Component, ContentChildren, EventEmitter, Input, Output, QueryList } from '@angular/core';
|
|
2
|
+
import { TableAdvancedRowCellComponent } from './table-advanced-row-cell.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export class TableAdvancedRowComponent {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.checkedChange = new EventEmitter();
|
|
7
|
+
}
|
|
8
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: TableAdvancedRowComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
9
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.7", type: TableAdvancedRowComponent, selector: "desy-table-advanced-row", inputs: { id: "id", checked: "checked" }, outputs: { checkedChange: "checkedChange" }, queries: [{ propertyName: "cellsList", predicate: TableAdvancedRowCellComponent }], ngImport: i0, template: '', isInline: true }); }
|
|
10
|
+
}
|
|
11
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: TableAdvancedRowComponent, decorators: [{
|
|
12
|
+
type: Component,
|
|
13
|
+
args: [{
|
|
14
|
+
selector: 'desy-table-advanced-row',
|
|
15
|
+
template: ''
|
|
16
|
+
}]
|
|
17
|
+
}], propDecorators: { cellsList: [{
|
|
18
|
+
type: ContentChildren,
|
|
19
|
+
args: [TableAdvancedRowCellComponent]
|
|
20
|
+
}], id: [{
|
|
21
|
+
type: Input
|
|
22
|
+
}], checked: [{
|
|
23
|
+
type: Input
|
|
24
|
+
}], checkedChange: [{
|
|
25
|
+
type: Output
|
|
26
|
+
}] } });
|
|
27
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtYWR2YW5jZWQtcm93LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Rlc3ktYW5ndWxhci9zcmMvbGliL2Rlc3ktdGFibGVzL2NvbXBvbmVudHMvdGFibGUtYWR2YW5jZWQvY29tcG9uZW50cy90YWJsZS1hZHZhbmNlZC1yb3cuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsZUFBZSxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQUUsTUFBTSxFQUFFLFNBQVMsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUNqRyxPQUFPLEVBQUMsNkJBQTZCLEVBQUMsTUFBTSxxQ0FBcUMsQ0FBQzs7QUFNbEYsTUFBTSxPQUFPLHlCQUF5QjtJQUp0QztRQVVZLGtCQUFhLEdBQTBCLElBQUksWUFBWSxFQUFFLENBQUM7S0FDckU7OEdBUFkseUJBQXlCO2tHQUF6Qix5QkFBeUIsZ0xBRW5CLDZCQUE2Qiw2QkFKcEMsRUFBRTs7MkZBRUQseUJBQXlCO2tCQUpyQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSx5QkFBeUI7b0JBQ25DLFFBQVEsRUFBRSxFQUFFO2lCQUNiOzhCQUdpRCxTQUFTO3NCQUF4RCxlQUFlO3VCQUFDLDZCQUE2QjtnQkFFckMsRUFBRTtzQkFBVixLQUFLO2dCQUNHLE9BQU87c0JBQWYsS0FBSztnQkFDSSxhQUFhO3NCQUF0QixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtDb21wb25lbnQsIENvbnRlbnRDaGlsZHJlbiwgRXZlbnRFbWl0dGVyLCBJbnB1dCwgT3V0cHV0LCBRdWVyeUxpc3R9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtUYWJsZUFkdmFuY2VkUm93Q2VsbENvbXBvbmVudH0gZnJvbSAnLi90YWJsZS1hZHZhbmNlZC1yb3ctY2VsbC5jb21wb25lbnQnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdkZXN5LXRhYmxlLWFkdmFuY2VkLXJvdycsXG4gIHRlbXBsYXRlOiAnJ1xufSlcbmV4cG9ydCBjbGFzcyBUYWJsZUFkdmFuY2VkUm93Q29tcG9uZW50IHtcblxuICBAQ29udGVudENoaWxkcmVuKFRhYmxlQWR2YW5jZWRSb3dDZWxsQ29tcG9uZW50KSBjZWxsc0xpc3Q6IFF1ZXJ5TGlzdDxUYWJsZUFkdmFuY2VkUm93Q2VsbENvbXBvbmVudD47XG5cbiAgQElucHV0KCkgaWQ6IHN0cmluZztcbiAgQElucHV0KCkgY2hlY2tlZDogYm9vbGVhbjtcbiAgQE91dHB1dCgpIGNoZWNrZWRDaGFuZ2U6IEV2ZW50RW1pdHRlcjxib29sZWFuPiA9IG5ldyBFdmVudEVtaXR0ZXIoKTtcbn1cbiJdfQ==
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { OptionComponent } from './../../../../desy-forms/components/select/option/option.component';
|
|
2
|
+
import { SelectComponent } from './../../../../desy-forms/components/select/select.component';
|
|
3
|
+
import { Component, ContentChildren, EventEmitter, Input, Output, QueryList } from "@angular/core";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export class TableAdvancedSelectComponent extends SelectComponent {
|
|
6
|
+
constructor() {
|
|
7
|
+
super(...arguments);
|
|
8
|
+
this.isSelect = true;
|
|
9
|
+
this.valueChange = new EventEmitter();
|
|
10
|
+
}
|
|
11
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: TableAdvancedSelectComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
12
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.7", type: TableAdvancedSelectComponent, selector: "desy-table-advanced-select", inputs: { value: "value" }, outputs: { valueChange: "valueChange" }, queries: [{ propertyName: "selectItemComponentList", predicate: OptionComponent }], usesInheritance: true, ngImport: i0, template: '', isInline: true }); }
|
|
13
|
+
}
|
|
14
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.7", ngImport: i0, type: TableAdvancedSelectComponent, decorators: [{
|
|
15
|
+
type: Component,
|
|
16
|
+
args: [{
|
|
17
|
+
selector: 'desy-table-advanced-select',
|
|
18
|
+
template: ''
|
|
19
|
+
}]
|
|
20
|
+
}], propDecorators: { value: [{
|
|
21
|
+
type: Input
|
|
22
|
+
}], valueChange: [{
|
|
23
|
+
type: Output
|
|
24
|
+
}], selectItemComponentList: [{
|
|
25
|
+
type: ContentChildren,
|
|
26
|
+
args: [OptionComponent]
|
|
27
|
+
}] } });
|
|
28
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtYWR2YW5jZWQtc2VsZWN0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Rlc3ktYW5ndWxhci9zcmMvbGliL2Rlc3ktdGFibGVzL2NvbXBvbmVudHMvdGFibGUtYWR2YW5jZWQvY29tcG9uZW50cy90YWJsZS1hZHZhbmNlZC1zZWxlY3QuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxvRUFBb0UsQ0FBQztBQUNyRyxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sNkRBQTZELENBQUM7QUFDOUYsT0FBTyxFQUFFLFNBQVMsRUFBRSxlQUFlLEVBQUUsWUFBWSxFQUFFLEtBQUssRUFBRSxNQUFNLEVBQUUsU0FBUyxFQUFhLE1BQU0sZUFBZSxDQUFDOztBQU05RyxNQUFNLE9BQU8sNEJBQTZCLFNBQVEsZUFBZTtJQUpqRTs7UUFLSSxhQUFRLEdBQUcsSUFBSSxDQUFDO1FBR04sZ0JBQVcsR0FBRyxJQUFJLFlBQVksRUFBTyxDQUFDO0tBR25EOzhHQVBZLDRCQUE0QjtrR0FBNUIsNEJBQTRCLCtLQU1wQixlQUFlLG9EQVJ0QixFQUFFOzsyRkFFSCw0QkFBNEI7a0JBSnhDLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLDRCQUE0QjtvQkFDdEMsUUFBUSxFQUFFLEVBQUU7aUJBQ2Y7OEJBSW9CLEtBQUs7c0JBQXJCLEtBQUs7Z0JBQ0ksV0FBVztzQkFBcEIsTUFBTTtnQkFFMkIsdUJBQXVCO3NCQUF4RCxlQUFlO3VCQUFDLGVBQWUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBPcHRpb25Db21wb25lbnQgfSBmcm9tICcuLy4uLy4uLy4uLy4uL2Rlc3ktZm9ybXMvY29tcG9uZW50cy9zZWxlY3Qvb3B0aW9uL29wdGlvbi5jb21wb25lbnQnO1xuaW1wb3J0IHsgU2VsZWN0Q29tcG9uZW50IH0gZnJvbSAnLi8uLi8uLi8uLi8uLi9kZXN5LWZvcm1zL2NvbXBvbmVudHMvc2VsZWN0L3NlbGVjdC5jb21wb25lbnQnO1xuaW1wb3J0IHsgQ29tcG9uZW50LCBDb250ZW50Q2hpbGRyZW4sIEV2ZW50RW1pdHRlciwgSW5wdXQsIE91dHB1dCwgUXVlcnlMaXN0LCBWaWV3Q2hpbGQgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xuXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ2Rlc3ktdGFibGUtYWR2YW5jZWQtc2VsZWN0JyxcbiAgICB0ZW1wbGF0ZTogJydcbn0pXG5leHBvcnQgY2xhc3MgVGFibGVBZHZhbmNlZFNlbGVjdENvbXBvbmVudCBleHRlbmRzIFNlbGVjdENvbXBvbmVudHtcbiAgICBpc1NlbGVjdCA9IHRydWU7XG5cbiAgICBASW5wdXQoKSBkZWNsYXJlIHZhbHVlOiBhbnk7XG4gICAgQE91dHB1dCgpIHZhbHVlQ2hhbmdlID0gbmV3IEV2ZW50RW1pdHRlcjxhbnk+KCk7XG5cbiAgICBAQ29udGVudENoaWxkcmVuKE9wdGlvbkNvbXBvbmVudCkgc2VsZWN0SXRlbUNvbXBvbmVudExpc3Q6IFF1ZXJ5TGlzdDxPcHRpb25Db21wb25lbnQ+O1xufSJdfQ==
|