desy-angular 7.0.1 → 7.1.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.
Files changed (225) hide show
  1. package/esm2020/lib/desy-angular.module.mjs +4 -4
  2. package/esm2020/lib/desy-buttons/components/button/button.component.mjs +5 -5
  3. package/esm2020/lib/desy-buttons/components/button-loader/button-loader.component.mjs +3 -3
  4. package/esm2020/lib/desy-buttons/components/dropdown/dropdown.component.mjs +6 -7
  5. package/esm2020/lib/desy-buttons/components/listbox/listbox-item/listbox-item.component.mjs +11 -4
  6. package/esm2020/lib/desy-buttons/components/listbox/listbox-label/listbox-label.component.mjs +3 -3
  7. package/esm2020/lib/desy-buttons/components/listbox/listbox.component.mjs +142 -94
  8. package/esm2020/lib/desy-buttons/components/pill/pill.component.mjs +3 -3
  9. package/esm2020/lib/desy-buttons/components/toggle/toggle-off-state/toggle-off-state.component.mjs +3 -3
  10. package/esm2020/lib/desy-buttons/components/toggle/toggle-on-state/toggle-on-state.component.mjs +3 -3
  11. package/esm2020/lib/desy-buttons/components/toggle/toggle.component.mjs +3 -3
  12. package/esm2020/lib/desy-buttons/desy-buttons.module.mjs +4 -4
  13. package/esm2020/lib/desy-commons/components/content/content.component.mjs +3 -3
  14. package/esm2020/lib/desy-commons/components/description/description.component.mjs +3 -3
  15. package/esm2020/lib/desy-commons/components/divider/divider.component.mjs +3 -3
  16. package/esm2020/lib/desy-commons/components/icon/icon.component.mjs +3 -3
  17. package/esm2020/lib/desy-commons/components/title/title.component.mjs +3 -3
  18. package/esm2020/lib/desy-commons/desy-commons.module.mjs +4 -4
  19. package/esm2020/lib/desy-forms/components/character-count/character-count.component.mjs +3 -3
  20. package/esm2020/lib/desy-forms/components/checkboxes/checkbox-item/checkbox-item.component.mjs +25 -43
  21. package/esm2020/lib/desy-forms/components/checkboxes/checkboxes-parent.component.mjs +23 -0
  22. package/esm2020/lib/desy-forms/components/checkboxes/checkboxes.component.mjs +98 -67
  23. package/esm2020/lib/desy-forms/components/date-input/date-input-day/date-input-day.component.mjs +6 -4
  24. package/esm2020/lib/desy-forms/components/date-input/date-input-divider/date-input-divider.component.mjs +3 -3
  25. package/esm2020/lib/desy-forms/components/date-input/date-input-item/date-input-item.component.mjs +3 -3
  26. package/esm2020/lib/desy-forms/components/date-input/date-input-month/date-input-month.component.mjs +6 -4
  27. package/esm2020/lib/desy-forms/components/date-input/date-input-year/date-input-year.component.mjs +6 -4
  28. package/esm2020/lib/desy-forms/components/date-input/date-input.component.mjs +29 -6
  29. package/esm2020/lib/desy-forms/components/error-message/error-message.component.mjs +3 -3
  30. package/esm2020/lib/desy-forms/components/fieldset/fieldset.component.mjs +3 -3
  31. package/esm2020/lib/desy-forms/components/fieldset/legend/legend.component.mjs +3 -3
  32. package/esm2020/lib/desy-forms/components/file-upload/file-upload.component.mjs +3 -3
  33. package/esm2020/lib/desy-forms/components/form-field/form-field.component.mjs +4 -4
  34. package/esm2020/lib/desy-forms/components/hint/hint.component.mjs +3 -3
  35. package/esm2020/lib/desy-forms/components/input/input.component.mjs +6 -6
  36. package/esm2020/lib/desy-forms/components/input-group/input-group-divider/input-group-divider.component.mjs +3 -3
  37. package/esm2020/lib/desy-forms/components/input-group/input-group-input/input-group-input.component.mjs +10 -5
  38. package/esm2020/lib/desy-forms/components/input-group/input-group-item/input-group-item.component.mjs +3 -3
  39. package/esm2020/lib/desy-forms/components/input-group/input-group-select/input-group-select.component.mjs +10 -5
  40. package/esm2020/lib/desy-forms/components/input-group/input-group.component.mjs +12 -6
  41. package/esm2020/lib/desy-forms/components/label/label.component.mjs +3 -3
  42. package/esm2020/lib/desy-forms/components/radios/radio-item/radio-item.component.mjs +22 -34
  43. package/esm2020/lib/desy-forms/components/radios/radios-parent.component.mjs +23 -0
  44. package/esm2020/lib/desy-forms/components/radios/radios.component.mjs +109 -71
  45. package/esm2020/lib/desy-forms/components/search-bar/search-bar.component.mjs +7 -13
  46. package/esm2020/lib/desy-forms/components/select/option/option.component.mjs +4 -4
  47. package/esm2020/lib/desy-forms/components/select/option-group/option-group.component.mjs +3 -3
  48. package/esm2020/lib/desy-forms/components/select/select-item/select-item.component.mjs +3 -3
  49. package/esm2020/lib/desy-forms/components/select/select.component.mjs +7 -7
  50. package/esm2020/lib/desy-forms/components/template-driven-wrapper/template-driven-wrapper.component.mjs +3 -3
  51. package/esm2020/lib/desy-forms/components/textarea/textarea.component.mjs +3 -3
  52. package/esm2020/lib/desy-forms/components/tree/tree-checkbox/tree-checkbox.component.mjs +3 -3
  53. package/esm2020/lib/desy-forms/components/tree/tree-item/tree-item.component.mjs +7 -6
  54. package/esm2020/lib/desy-forms/components/tree/tree-items-generator/tree-items-generator.component.mjs +3 -3
  55. package/esm2020/lib/desy-forms/components/tree/tree-sub/tree-sub.component.mjs +3 -3
  56. package/esm2020/lib/desy-forms/components/tree/tree.component.mjs +12 -4
  57. package/esm2020/lib/desy-forms/desy-forms.module.mjs +6 -6
  58. package/esm2020/lib/desy-forms/directives/condition.directive.mjs +3 -3
  59. package/esm2020/lib/desy-forms/interfaces/item-date-input-data.mjs +1 -1
  60. package/esm2020/lib/desy-forms/interfaces/select-item-data.mjs +1 -1
  61. package/esm2020/lib/desy-modals/components/dialog/dialog.component.mjs +24 -4
  62. package/esm2020/lib/desy-modals/components/modal/modal-button-loader-primary/modal-button-loader-primary.component.mjs +3 -3
  63. package/esm2020/lib/desy-modals/components/modal/modal-button-loader-secondary/modal-button-loader-secondary.component.mjs +3 -3
  64. package/esm2020/lib/desy-modals/components/modal/modal-button-primary/modal-button-primary.component.mjs +3 -3
  65. package/esm2020/lib/desy-modals/components/modal/modal-button-secondary/modal-button-secondary.component.mjs +3 -3
  66. package/esm2020/lib/desy-modals/components/modal/modal.component.mjs +3 -3
  67. package/esm2020/lib/desy-modals/desy-modals.module.mjs +4 -4
  68. package/esm2020/lib/desy-modals/interfaces/dialog-options.mjs +1 -1
  69. package/esm2020/lib/desy-modals/services/dialog.service.mjs +3 -3
  70. package/esm2020/lib/desy-nav/components/breadcrumbs/breadcrumbs-item/breadcrumbs-item.component.mjs +3 -3
  71. package/esm2020/lib/desy-nav/components/breadcrumbs/breadcrumbs.component.mjs +3 -3
  72. package/esm2020/lib/desy-nav/components/error-summary/error-summary-item/error-summary-item.component.mjs +3 -3
  73. package/esm2020/lib/desy-nav/components/error-summary/error-summary.component.mjs +3 -3
  74. package/esm2020/lib/desy-nav/components/footer/footer-meta/footer-meta-item/footer-meta-item.component.mjs +3 -3
  75. package/esm2020/lib/desy-nav/components/footer/footer-meta/footer-meta.component.mjs +3 -3
  76. package/esm2020/lib/desy-nav/components/footer/footer-navigation/footer-navigation-item/footer-navigation-item.component.mjs +3 -3
  77. package/esm2020/lib/desy-nav/components/footer/footer-navigation/footer-navigation.component.mjs +3 -3
  78. package/esm2020/lib/desy-nav/components/footer/footer.component.mjs +3 -3
  79. package/esm2020/lib/desy-nav/components/header/header-custom-navigation/header-custom-navigation.component.mjs +3 -3
  80. package/esm2020/lib/desy-nav/components/header/header-dropdown/header-dropdown.component.mjs +5 -5
  81. package/esm2020/lib/desy-nav/components/header/header-navigation/header-navigation-item/header-navigation-item.component.mjs +3 -3
  82. package/esm2020/lib/desy-nav/components/header/header-navigation/header-navigation.component.mjs +3 -3
  83. package/esm2020/lib/desy-nav/components/header/header-offcanvas/header-offcanvas-button/header-offcanvas-button.component.mjs +3 -3
  84. package/esm2020/lib/desy-nav/components/header/header-offcanvas/header-offcanvas-close-button/header-offcanvas-close-button.component.mjs +3 -3
  85. package/esm2020/lib/desy-nav/components/header/header-offcanvas/header-offcanvas.component.mjs +3 -3
  86. package/esm2020/lib/desy-nav/components/header/header-subnav/header-subnav.component.mjs +3 -3
  87. package/esm2020/lib/desy-nav/components/header/header.component.mjs +8 -10
  88. package/esm2020/lib/desy-nav/components/links-list/links-list-item/links-list-item.component.mjs +40 -0
  89. package/esm2020/lib/desy-nav/components/links-list/links-list-item-sub/links-list-item-sub.component.mjs +14 -0
  90. package/esm2020/lib/desy-nav/components/links-list/links-list.component.mjs +42 -0
  91. package/esm2020/lib/desy-nav/components/menu-horizontal/menu-horizontal-item/menu-horizontal-item.component.mjs +3 -3
  92. package/esm2020/lib/desy-nav/components/menu-horizontal/menu-horizontal.component.mjs +3 -3
  93. package/esm2020/lib/desy-nav/components/menu-navigation/components/menu-navigation-item/menu-navigation-item.component.mjs +3 -3
  94. package/esm2020/lib/desy-nav/components/menu-navigation/components/menu-navigation-subitem/menu-navigation-subitem.component.mjs +3 -3
  95. package/esm2020/lib/desy-nav/components/menu-navigation/menu-navigation.component.mjs +3 -3
  96. package/esm2020/lib/desy-nav/components/menu-vertical/menu-vertical-item/menu-vertical-item.component.mjs +3 -3
  97. package/esm2020/lib/desy-nav/components/menu-vertical/menu-vertical-item-sub/menu-vertical-item-sub.component.mjs +3 -3
  98. package/esm2020/lib/desy-nav/components/menu-vertical/menu-vertical-item-sub-item/menu-vertical-item-sub-item.component.mjs +3 -3
  99. package/esm2020/lib/desy-nav/components/menu-vertical/menu-vertical.component.mjs +3 -3
  100. package/esm2020/lib/desy-nav/components/menubar/components/menubar-item/menubar-item.component.mjs +3 -3
  101. package/esm2020/lib/desy-nav/components/menubar/components/menubar-label/menubar-label.component.mjs +3 -3
  102. package/esm2020/lib/desy-nav/components/menubar/components/menubar-subitem/menubar-subitem.component.mjs +3 -3
  103. package/esm2020/lib/desy-nav/components/menubar/components/menubar-subsubitem/menubar-subsubitem.component.mjs +3 -3
  104. package/esm2020/lib/desy-nav/components/menubar/directives/menubaritem.directive.mjs +3 -3
  105. package/esm2020/lib/desy-nav/components/menubar/menubar.component.mjs +3 -3
  106. package/esm2020/lib/desy-nav/components/nav/nav-item/nav-item.component.mjs +3 -3
  107. package/esm2020/lib/desy-nav/components/nav/nav.component.mjs +3 -3
  108. package/esm2020/lib/desy-nav/components/notification/notification-item/notification-item.component.mjs +3 -3
  109. package/esm2020/lib/desy-nav/components/notification/notification.component.mjs +3 -3
  110. package/esm2020/lib/desy-nav/components/skip-link/skip-link.component.mjs +11 -5
  111. package/esm2020/lib/desy-nav/desy-nav.module.mjs +25 -6
  112. package/esm2020/lib/desy-nav/interfaces/header-skiplink-data.mjs +2 -0
  113. package/esm2020/lib/desy-pagination/components/pagination/pagination.component.mjs +53 -30
  114. package/esm2020/lib/desy-pagination/components/pagination-item-perpage/pagination-item-perpage.component.mjs +3 -3
  115. package/esm2020/lib/desy-pagination/components/pagination-listbox-label/pagination-listbox-label.component.mjs +3 -3
  116. package/esm2020/lib/desy-pagination/desy-pagination.module.mjs +4 -4
  117. package/esm2020/lib/desy-tables/components/table/components/table-caption.component.mjs +3 -3
  118. package/esm2020/lib/desy-tables/components/table/components/table-cell.component.mjs +3 -3
  119. package/esm2020/lib/desy-tables/components/table/components/table-header.component.mjs +3 -3
  120. package/esm2020/lib/desy-tables/components/table/components/table-row.component.mjs +3 -3
  121. package/esm2020/lib/desy-tables/components/table/table.component.mjs +3 -3
  122. package/esm2020/lib/desy-tables/components/table-advanced/components/table-advanced-header-cell.component.mjs +3 -3
  123. package/esm2020/lib/desy-tables/components/table-advanced/components/table-advanced-header.component.mjs +3 -3
  124. package/esm2020/lib/desy-tables/components/table-advanced/components/table-advanced-row-cell.component.mjs +3 -3
  125. package/esm2020/lib/desy-tables/components/table-advanced/components/table-advanced-row.component.mjs +3 -3
  126. package/esm2020/lib/desy-tables/components/table-advanced/components/table-advanced-select.component.mjs +3 -3
  127. package/esm2020/lib/desy-tables/components/table-advanced/table-advanced.component.mjs +3 -3
  128. package/esm2020/lib/desy-tables/desy-tables.module.mjs +4 -4
  129. package/esm2020/lib/desy-tables/directives/cell.directive.mjs +3 -3
  130. package/esm2020/lib/desy-tables/directives/focus-clicked-cell.directive.mjs +3 -3
  131. package/esm2020/lib/desy-tables/directives/row.directive.mjs +3 -3
  132. package/esm2020/lib/desy-views/components/accordion/accordion-header/accordion-header.component.mjs +3 -3
  133. package/esm2020/lib/desy-views/components/accordion/accordion-item/accordion-item.component.mjs +3 -3
  134. package/esm2020/lib/desy-views/components/accordion/accordion.component.mjs +3 -3
  135. package/esm2020/lib/desy-views/components/accordion-history/accordion-history-item/accordion-history-item.component.mjs +3 -3
  136. package/esm2020/lib/desy-views/components/accordion-history/accordion-history.component.mjs +3 -3
  137. package/esm2020/lib/desy-views/components/accordion-history/accordion-item-hide-button/accordion-item-hide-button.component.mjs +3 -3
  138. package/esm2020/lib/desy-views/components/accordion-history/accordion-item-show-button/accordion-item-show-button.component.mjs +3 -3
  139. package/esm2020/lib/desy-views/components/alert/alert.component.mjs +3 -3
  140. package/esm2020/lib/desy-views/components/collapsible/collapsible.component.mjs +3 -3
  141. package/esm2020/lib/desy-views/components/description-list/definition/definition.component.mjs +3 -3
  142. package/esm2020/lib/desy-views/components/description-list/description-item/description-item.component.mjs +3 -3
  143. package/esm2020/lib/desy-views/components/description-list/description-list.component.mjs +3 -3
  144. package/esm2020/lib/desy-views/components/description-list/term/term.component.mjs +3 -3
  145. package/esm2020/lib/desy-views/components/details/details.component.mjs +3 -3
  146. package/esm2020/lib/desy-views/components/item/item-content-bottom/item-content-bottom.component.mjs +3 -3
  147. package/esm2020/lib/desy-views/components/item/item-content-right/item-content-right.component.mjs +3 -3
  148. package/esm2020/lib/desy-views/components/item/item-item/item-item.component.mjs +3 -3
  149. package/esm2020/lib/desy-views/components/item/item.component.mjs +11 -16
  150. package/esm2020/lib/desy-views/components/media-object/media-object-figure/media-object-figure.component.mjs +3 -3
  151. package/esm2020/lib/desy-views/components/media-object/media-object.component.mjs +3 -3
  152. package/esm2020/lib/desy-views/components/spinner/spinner.component.mjs +3 -3
  153. package/esm2020/lib/desy-views/components/status/status.component.mjs +14 -5
  154. package/esm2020/lib/desy-views/components/status-item/status-item.component.mjs +3 -3
  155. package/esm2020/lib/desy-views/components/tabs/panel/panel.component.mjs +3 -3
  156. package/esm2020/lib/desy-views/components/tabs/tab-item/tab-item.component.mjs +3 -3
  157. package/esm2020/lib/desy-views/components/tabs/tabs.component.mjs +3 -3
  158. package/esm2020/lib/desy-views/components/tooltip/tooltip-content/tooltip-content.component.mjs +3 -3
  159. package/esm2020/lib/desy-views/components/tooltip/tooltip.component.mjs +3 -3
  160. package/esm2020/lib/desy-views/desy-views.module.mjs +4 -4
  161. package/esm2020/lib/desy-views/services/alert.service.mjs +3 -3
  162. package/esm2020/lib/shared/components/accessibility/accessibility.component.mjs +3 -3
  163. package/esm2020/lib/shared/components/accessibility-and-content-required/accessibility-and-content-required.component.mjs +3 -3
  164. package/esm2020/lib/shared/components/accessibility-and-text-or-html-required/accessibility-and-text-or-html-required.component.mjs +3 -3
  165. package/esm2020/lib/shared/components/content-base/content-base.component.mjs +3 -3
  166. package/esm2020/lib/shared/components/text-or-html-required/text-or-html-required.component.mjs +3 -3
  167. package/esm2020/lib/shared/directives/attribute-change.directive.mjs +24 -19
  168. package/esm2020/lib/shared/directives/click-outside.directive.mjs +3 -3
  169. package/esm2020/lib/shared/directives/content-change.directive.mjs +3 -3
  170. package/esm2020/lib/shared/directives/custom-inner-content.directive.mjs +3 -3
  171. package/esm2020/lib/shared/directives/inner-content.directive.mjs +3 -3
  172. package/esm2020/lib/shared/pipes/external-href.pipe.mjs +5 -5
  173. package/esm2020/lib/shared/pipes/inner-html.pipe.mjs +3 -3
  174. package/esm2020/lib/shared/pipes/make-html-list.pipe.mjs +3 -3
  175. package/esm2020/lib/shared/shared.module.mjs +4 -4
  176. package/esm2020/public-api.mjs +5 -1
  177. package/fesm2015/desy-angular.mjs +1205 -1002
  178. package/fesm2015/desy-angular.mjs.map +1 -1
  179. package/fesm2020/desy-angular.mjs +1205 -1000
  180. package/fesm2020/desy-angular.mjs.map +1 -1
  181. package/lib/desy-buttons/components/listbox/listbox-item/listbox-item.component.d.ts +3 -1
  182. package/lib/desy-buttons/components/listbox/listbox.component.d.ts +15 -4
  183. package/lib/desy-forms/components/checkboxes/checkbox-item/checkbox-item.component.d.ts +5 -3
  184. package/lib/desy-forms/components/checkboxes/checkboxes-parent.component.d.ts +21 -0
  185. package/lib/desy-forms/components/checkboxes/checkboxes.component.d.ts +19 -11
  186. package/lib/desy-forms/components/date-input/date-input-day/date-input-day.component.d.ts +2 -1
  187. package/lib/desy-forms/components/date-input/date-input-month/date-input-month.component.d.ts +2 -1
  188. package/lib/desy-forms/components/date-input/date-input-year/date-input-year.component.d.ts +2 -1
  189. package/lib/desy-forms/components/date-input/date-input.component.d.ts +5 -1
  190. package/lib/desy-forms/components/form-field/form-field.component.d.ts +9 -9
  191. package/lib/desy-forms/components/input-group/input-group-input/input-group-input.component.d.ts +1 -0
  192. package/lib/desy-forms/components/input-group/input-group-select/input-group-select.component.d.ts +1 -0
  193. package/lib/desy-forms/components/input-group/input-group.component.d.ts +2 -0
  194. package/lib/desy-forms/components/radios/radio-item/radio-item.component.d.ts +5 -4
  195. package/lib/desy-forms/components/radios/radios-parent.component.d.ts +21 -0
  196. package/lib/desy-forms/components/radios/radios.component.d.ts +19 -10
  197. package/lib/desy-forms/components/search-bar/search-bar.component.d.ts +2 -4
  198. package/lib/desy-forms/components/select/option/option.component.d.ts +1 -1
  199. package/lib/desy-forms/components/tree/tree-item/tree-item.component.d.ts +1 -0
  200. package/lib/desy-forms/components/tree/tree.component.d.ts +4 -0
  201. package/lib/desy-forms/interfaces/item-date-input-data.d.ts +1 -0
  202. package/lib/desy-forms/interfaces/select-item-data.d.ts +1 -1
  203. package/lib/desy-modals/components/dialog/dialog.component.d.ts +2 -1
  204. package/lib/desy-modals/interfaces/dialog-options.d.ts +1 -0
  205. package/lib/desy-nav/components/header/header.component.d.ts +3 -2
  206. package/lib/desy-nav/components/links-list/links-list-item/links-list-item.component.d.ts +20 -0
  207. package/lib/desy-nav/components/links-list/links-list-item-sub/links-list-item-sub.component.d.ts +7 -0
  208. package/lib/desy-nav/components/links-list/links-list.component.d.ts +13 -0
  209. package/lib/desy-nav/components/skip-link/skip-link.component.d.ts +1 -0
  210. package/lib/desy-nav/desy-nav.module.d.ts +29 -26
  211. package/lib/desy-nav/interfaces/header-skiplink-data.d.ts +7 -0
  212. package/lib/desy-pagination/components/pagination/pagination.component.d.ts +12 -7
  213. package/lib/desy-views/components/item/item.component.d.ts +1 -0
  214. package/lib/desy-views/components/status/status.component.d.ts +3 -1
  215. package/lib/shared/directives/attribute-change.directive.d.ts +2 -1
  216. package/package.json +1 -1
  217. package/public-api.d.ts +4 -0
  218. package/esm2020/lib/desy-forms/models/checkbox-service-item.component.mjs +0 -9
  219. package/esm2020/lib/desy-forms/models/radio-service-item.component.mjs +0 -9
  220. package/esm2020/lib/desy-forms/services/checkbox.service.mjs +0 -61
  221. package/esm2020/lib/desy-forms/services/radio.service.mjs +0 -53
  222. package/lib/desy-forms/models/checkbox-service-item.component.d.ts +0 -13
  223. package/lib/desy-forms/models/radio-service-item.component.d.ts +0 -12
  224. package/lib/desy-forms/services/checkbox.service.d.ts +0 -14
  225. package/lib/desy-forms/services/radio.service.d.ts +0 -13
@@ -36,8 +36,8 @@ export class StatusItemComponent extends AccessibilityComponent {
36
36
  return (this.itemComponents.length > 0) ? this.itemComponents.toArray() : this.items;
37
37
  }
38
38
  }
39
- StatusItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: StatusItemComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
40
- StatusItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: StatusItemComponent, selector: "desy-status-item", inputs: { id: "id", errorId: "errorId", describedBy: "describedBy", title: "title", hint: "hint", errorMessage: "errorMessage", items: "items", status: "status", classes: "classes", caller: "caller" }, host: { properties: { "class": "this.classes", "attr.id": "this.idData", "attr.role": "this.roleData", "attr.aria-describedby": "this.ariaDescribedbyData", "attr.aria-errormessage": "this.ariaErrormessageData", "attr.aria-label": "this.ariaLabelData", "attr.aria-labelledby": "this.ariaLabelledbyData", "attr.aria-hidden": "this.ariaHiddenData", "attr.aria-disabled": "this.ariaDisabledData", "attr.aria-controls": "this.ariaControlsData", "attr.aria-current": "this.ariaCurrentData", "attr.aria-live": "this.ariaLiveData", "attr.aria-expanded": "this.ariaExpandedData", "attr.aria-haspopup": "this.ariaHaspopupData", "attr.tabindex": "this.tabindexData" } }, queries: [{ propertyName: "titleComponent", predicate: TitleComponent }, { propertyName: "hintComponent", predicate: HintComponent }, { propertyName: "errorMessageComponent", predicate: ErrorMessageComponent }, { propertyName: "contentComponent", predicate: ContentComponent }, { propertyName: "itemComponents", predicate: DescriptionItemComponent }, { propertyName: "statusComponent", predicate: StatusComponent }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<ng-template #commonHtml>\n <p *ngIf=\"titleComponent || title\" [class]=\"title ? title.classes : 'my-sm'\">\n <ng-container *desyCustomInnerContent=\"{\n component: titleComponent,\n html: title ? title.html : null,\n text: title ? title.text : null\n }\"></ng-container>\n </p>\n\n <ng-container *ngIf=\"hintComponent\">\n <ng-content select=\"desy-hint\"></ng-content>\n </ng-container>\n <ng-container *ngIf=\"!hintComponent && hint\">\n <desy-hint [text]=\"hint.text\" [html]=\"hint.html\" [classes]=\"hint.classes\" [id]=\"hint.id\"\n [role]=\"hint.role\"\n [ariaLabel]=\"hint.ariaLabel\"\n [ariaDescribedBy]=\"(hint.ariaDescribedBy ? hint.ariaDescribedBy + '' + hint.id : hint.id)\"\n [ariaLabelledBy]=\"hint.ariaLabelledBy\"\n [ariaHidden]=\"hint.ariaHidden\"\n [ariaDisabled]=\"hint.ariaDisabled\"\n [ariaControls]=\"hint.ariaControls\"\n [ariaCurrent]=\"hint.ariaCurrent\"\n [ariaLive]=\"hint.ariaLive\"\n [ariaExpanded]=\"hint.ariaExpanded\"\n [ariaErrorMessage]=\"hint.ariaErrorMessage\"\n [ariaHasPopup]=\"hint.ariaHasPopup\"\n [tabindex]=\"hint.tabindex\"></desy-hint>\n </ng-container>\n\n <ng-container *ngIf=\"errorMessageComponent\">\n <ng-content select=\"desy-error-message\"></ng-content>\n </ng-container>\n <ng-container *ngIf=\"!errorMessageComponent && errorMessage\">\n <desy-error-message [text]=\"errorMessage.text\" [html]=\"errorMessage.html\"\n [visuallyHiddenText]=\"errorMessage.visuallyHiddenText\"\n [id]=\"(errorId ? errorId : id + '-error')\" [classes]=\"errorMessage.classes\"\n [role]=\"errorMessage.role\"\n [ariaLabel]=\"errorMessage.ariaLabel\"\n [ariaDescribedBy]=\"(errorMessage.ariaDescribedBy ? errorMessage.ariaDescribedBy + '' + errorId : errorId)\"\n [ariaLabelledBy]=\"errorMessage.ariaLabelledBy\"\n [ariaHidden]=\"errorMessage.ariaHidden\"\n [ariaDisabled]=\"errorMessage.ariaDisabled\"\n [ariaControls]=\"errorMessage.ariaControls\"\n [ariaCurrent]=\"errorMessage.ariaCurrent\"\n [ariaLive]=\"errorMessage.ariaLive\"\n [ariaExpanded]=\"errorMessage.ariaExpanded\"\n [ariaErrorMessage]=\"errorMessage.ariaErrorMessage\"\n [ariaHasPopup]=\"errorMessage.ariaHasPopup\"\n [tabindex]=\"errorMessage.tabindex\"></desy-error-message>\n </ng-container>\n</ng-template>\n\n<div class=\"lg:flex lg:justify-between lg:items-start -my-px px-base py-sm border-t border-b border-neutral-base\">\n <ng-container *ngIf=\"getItems(); else noItems\">\n <div class=\"lg:w-2/3\">\n <ng-container *ngTemplateOutlet=\"commonHtml\"></ng-container>\n <dl>\n <div *ngFor=\"let item of getItems()\"\n [class]=\"(item.classes ? 'flex lg-flex-wrap ' + item.classes : 'flex lg-flex-wrap')\"\n [attr.id]=\"item.id ? item.id : null\"\n [attr.role]=\"item.role\"\n [attr.aria-describedby]=\"item.ariaDescribedBy\"\n [attr.aria-errormessage]=\"item.ariaErrorMessage\"\n [attr.aria-label]=\"item.ariaLabel\"\n [attr.aria-labelledby]=\"item.ariaLabelledBy\"\n [attr.aria-hidden]=\"item.ariaHidden\"\n [attr.aria-disabled]=\"item.ariaDisabled\"\n [attr.aria-controls]=\"item.ariaControls\"\n [attr.aria-current]=\"item.ariaCurrent\"\n [attr.aria-live]=\"item.ariaLive\"\n [attr.aria-expanded]=\"item.ariaExpanded\"\n [attr.aria-haspopup]=\"item.ariaHasPopup\">\n <dt [class]=\"(item.term.classes ? item.term.classes : 'w-1/2 my-sm')\"\n [attr.id]=\"item.term.id ? item.term.id : null\"\n [attr.role]=\"item.term.role\"\n [attr.aria-describedby]=\"item.term.ariaDescribedBy\"\n [attr.aria-errormessage]=\"item.term.ariaErrorMessage\"\n [attr.aria-label]=\"item.term.ariaLabel\"\n [attr.aria-labelledby]=\"item.term.ariaLabelledBy\"\n [attr.aria-hidden]=\"item.term.ariaHidden\"\n [attr.aria-disabled]=\"item.term.ariaDisabled\"\n [attr.aria-controls]=\"item.term.ariaControls\"\n [attr.aria-current]=\"item.term.ariaCurrent\"\n [attr.aria-live]=\"item.term.ariaLive\"\n [attr.aria-expanded]=\"item.term.ariaExpanded\"\n [attr.aria-haspopup]=\"item.term.ariaHasPopup\">\n <ng-container *desyCustomInnerContent=\"{ component: item.term, html: item.term.html, text: item.term.text}\"></ng-container>\n </dt>\n <dd [class]=\"(item.definition.classes ? item.definition.classes : 'w-1/2 my-sm font-semibold')\"\n [attr.id]=\"item.definition.id ? item.definition.id : null\"\n [attr.role]=\"item.definition.role\"\n [attr.aria-describedby]=\"item.definition.ariaDescribedBy\"\n [attr.aria-errormessage]=\"item.definition.ariaErrorMessage\"\n [attr.aria-label]=\"item.definition.ariaLabel\"\n [attr.aria-labelledby]=\"item.definition.ariaLabelledBy\"\n [attr.aria-hidden]=\"item.definition.ariaHidden\"\n [attr.aria-disabled]=\"item.definition.ariaDisabled\"\n [attr.aria-controls]=\"item.definition.ariaControls\"\n [attr.aria-current]=\"item.definition.ariaCurrent\"\n [attr.aria-live]=\"item.definition.ariaLive\"\n [attr.aria-expanded]=\"item.definition.ariaExpanded\"\n [attr.aria-haspopup]=\"item.definition.ariaHasPopup\">\n <ng-container *desyCustomInnerContent=\"{ component: item.definition, html: item.definition.html, text: item.definition.text}\"></ng-container>\n </dd>\n </div>\n </dl>\n </div>\n </ng-container>\n <ng-template #noItems>\n <div class=\"lg:w-2/3\">\n <ng-container *ngTemplateOutlet=\"commonHtml\"></ng-container>\n </div>\n </ng-template>\n\n <div class=\"lg:flex lg:flex-wrap lg:items-center lg:1/3\">\n\n <div *ngIf=\"contentComponent || caller\" [id]=\"id + '-status-item'\"\n [class]=\"'w-full lg:w-auto lg:text-right mt-base lg:mt-0 mb-base lg:mb-0'\">\n <ng-container *desyCustomInnerContent=\"{ component: contentComponent, template: caller }\"></ng-container>\n </div>\n\n <div *ngIf=\"statusComponent || status\" class=\"mb-base lg:mb-0 ml-base py-sm\">\n <ng-container *ngIf=\"statusComponent\">\n <ng-content select=\"desy-status\"></ng-content>\n </ng-container>\n <desy-status *ngIf=\"!statusComponent && status\"\n [text]=\"status.text\" [icon]=\"status.icon\" [classes]=\"status.classes\" [id]=\"status.id\"\n [role]=\"status.role\"\n [ariaLabel]=\"status.ariaLabel\"\n [ariaDescribedBy]=\"status.ariaDescribedBy\"\n [ariaLabelledBy]=\"status.ariaLabelledBy\"\n [ariaHidden]=\"status.ariaHidden\"\n [ariaDisabled]=\"status.ariaDisabled\"\n [ariaControls]=\"status.ariaControls\"\n [ariaCurrent]=\"status.ariaCurrent\"\n [ariaLive]=\"status.ariaLive\"\n [ariaExpanded]=\"status.ariaExpanded\"\n [ariaErrorMessage]=\"status.ariaErrorMessage\"\n [ariaHasPopup]=\"status.ariaHasPopup\"\n [tabindex]=\"status.tabindex\"></desy-status>\n </div>\n </div>\n</div>", 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: "component", type: i3.HintComponent, selector: "desy-hint", inputs: ["id", "classes", "html", "text"] }, { kind: "component", type: i4.ErrorMessageComponent, selector: "desy-error-message", inputs: ["id", "classes", "html", "text", "visuallyHiddenText"] }, { kind: "component", type: i5.StatusComponent, selector: "desy-status", inputs: ["text", "id", "icon", "classes"] }] });
39
+ StatusItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: StatusItemComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
40
+ StatusItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: StatusItemComponent, selector: "desy-status-item", inputs: { id: "id", errorId: "errorId", describedBy: "describedBy", title: "title", hint: "hint", errorMessage: "errorMessage", items: "items", status: "status", classes: "classes", caller: "caller" }, host: { properties: { "class": "this.classes", "attr.id": "this.idData", "attr.role": "this.roleData", "attr.aria-describedby": "this.ariaDescribedbyData", "attr.aria-errormessage": "this.ariaErrormessageData", "attr.aria-label": "this.ariaLabelData", "attr.aria-labelledby": "this.ariaLabelledbyData", "attr.aria-hidden": "this.ariaHiddenData", "attr.aria-disabled": "this.ariaDisabledData", "attr.aria-controls": "this.ariaControlsData", "attr.aria-current": "this.ariaCurrentData", "attr.aria-live": "this.ariaLiveData", "attr.aria-expanded": "this.ariaExpandedData", "attr.aria-haspopup": "this.ariaHaspopupData", "attr.tabindex": "this.tabindexData" } }, queries: [{ propertyName: "titleComponent", predicate: TitleComponent }, { propertyName: "hintComponent", predicate: HintComponent }, { propertyName: "errorMessageComponent", predicate: ErrorMessageComponent }, { propertyName: "contentComponent", predicate: ContentComponent }, { propertyName: "itemComponents", predicate: DescriptionItemComponent }, { propertyName: "statusComponent", predicate: StatusComponent }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<ng-template #commonHtml>\n <p *ngIf=\"titleComponent || title\" [class]=\"title ? title.classes : 'my-sm'\">\n <ng-container *desyCustomInnerContent=\"{\n component: titleComponent,\n html: title ? title.html : null,\n text: title ? title.text : null\n }\"></ng-container>\n </p>\n\n <ng-container *ngIf=\"hintComponent\">\n <ng-content select=\"desy-hint\"></ng-content>\n </ng-container>\n <ng-container *ngIf=\"!hintComponent && hint\">\n <desy-hint [text]=\"hint.text\" [html]=\"hint.html\" [classes]=\"hint.classes\" [id]=\"hint.id\"\n [role]=\"hint.role\"\n [ariaLabel]=\"hint.ariaLabel\"\n [ariaDescribedBy]=\"(hint.ariaDescribedBy ? hint.ariaDescribedBy + '' + hint.id : hint.id)\"\n [ariaLabelledBy]=\"hint.ariaLabelledBy\"\n [ariaHidden]=\"hint.ariaHidden\"\n [ariaDisabled]=\"hint.ariaDisabled\"\n [ariaControls]=\"hint.ariaControls\"\n [ariaCurrent]=\"hint.ariaCurrent\"\n [ariaLive]=\"hint.ariaLive\"\n [ariaExpanded]=\"hint.ariaExpanded\"\n [ariaErrorMessage]=\"hint.ariaErrorMessage\"\n [ariaHasPopup]=\"hint.ariaHasPopup\"\n [tabindex]=\"hint.tabindex\"></desy-hint>\n </ng-container>\n\n <ng-container *ngIf=\"errorMessageComponent\">\n <ng-content select=\"desy-error-message\"></ng-content>\n </ng-container>\n <ng-container *ngIf=\"!errorMessageComponent && errorMessage\">\n <desy-error-message [text]=\"errorMessage.text\" [html]=\"errorMessage.html\"\n [visuallyHiddenText]=\"errorMessage.visuallyHiddenText\"\n [id]=\"(errorId ? errorId : id + '-error')\" [classes]=\"errorMessage.classes\"\n [role]=\"errorMessage.role\"\n [ariaLabel]=\"errorMessage.ariaLabel\"\n [ariaDescribedBy]=\"(errorMessage.ariaDescribedBy ? errorMessage.ariaDescribedBy + '' + errorId : errorId)\"\n [ariaLabelledBy]=\"errorMessage.ariaLabelledBy\"\n [ariaHidden]=\"errorMessage.ariaHidden\"\n [ariaDisabled]=\"errorMessage.ariaDisabled\"\n [ariaControls]=\"errorMessage.ariaControls\"\n [ariaCurrent]=\"errorMessage.ariaCurrent\"\n [ariaLive]=\"errorMessage.ariaLive\"\n [ariaExpanded]=\"errorMessage.ariaExpanded\"\n [ariaErrorMessage]=\"errorMessage.ariaErrorMessage\"\n [ariaHasPopup]=\"errorMessage.ariaHasPopup\"\n [tabindex]=\"errorMessage.tabindex\"></desy-error-message>\n </ng-container>\n</ng-template>\n\n<div class=\"lg:flex lg:justify-between lg:items-start -my-px px-base py-sm border-t border-b border-neutral-base\">\n <ng-container *ngIf=\"getItems(); else noItems\">\n <div class=\"lg:w-2/3\">\n <ng-container *ngTemplateOutlet=\"commonHtml\"></ng-container>\n <dl>\n <div *ngFor=\"let item of getItems()\"\n [class]=\"(item.classes ? 'flex lg-flex-wrap ' + item.classes : 'flex lg-flex-wrap')\"\n [attr.id]=\"item.id ? item.id : null\"\n [attr.role]=\"item.role\"\n [attr.aria-describedby]=\"item.ariaDescribedBy\"\n [attr.aria-errormessage]=\"item.ariaErrorMessage\"\n [attr.aria-label]=\"item.ariaLabel\"\n [attr.aria-labelledby]=\"item.ariaLabelledBy\"\n [attr.aria-hidden]=\"item.ariaHidden\"\n [attr.aria-disabled]=\"item.ariaDisabled\"\n [attr.aria-controls]=\"item.ariaControls\"\n [attr.aria-current]=\"item.ariaCurrent\"\n [attr.aria-live]=\"item.ariaLive\"\n [attr.aria-expanded]=\"item.ariaExpanded\"\n [attr.aria-haspopup]=\"item.ariaHasPopup\">\n <dt [class]=\"(item.term.classes ? item.term.classes : 'w-1/2 my-sm')\"\n [attr.id]=\"item.term.id ? item.term.id : null\"\n [attr.role]=\"item.term.role\"\n [attr.aria-describedby]=\"item.term.ariaDescribedBy\"\n [attr.aria-errormessage]=\"item.term.ariaErrorMessage\"\n [attr.aria-label]=\"item.term.ariaLabel\"\n [attr.aria-labelledby]=\"item.term.ariaLabelledBy\"\n [attr.aria-hidden]=\"item.term.ariaHidden\"\n [attr.aria-disabled]=\"item.term.ariaDisabled\"\n [attr.aria-controls]=\"item.term.ariaControls\"\n [attr.aria-current]=\"item.term.ariaCurrent\"\n [attr.aria-live]=\"item.term.ariaLive\"\n [attr.aria-expanded]=\"item.term.ariaExpanded\"\n [attr.aria-haspopup]=\"item.term.ariaHasPopup\">\n <ng-container *desyCustomInnerContent=\"{ component: item.term, html: item.term.html, text: item.term.text}\"></ng-container>\n </dt>\n <dd [class]=\"(item.definition.classes ? item.definition.classes : 'w-1/2 my-sm font-semibold')\"\n [attr.id]=\"item.definition.id ? item.definition.id : null\"\n [attr.role]=\"item.definition.role\"\n [attr.aria-describedby]=\"item.definition.ariaDescribedBy\"\n [attr.aria-errormessage]=\"item.definition.ariaErrorMessage\"\n [attr.aria-label]=\"item.definition.ariaLabel\"\n [attr.aria-labelledby]=\"item.definition.ariaLabelledBy\"\n [attr.aria-hidden]=\"item.definition.ariaHidden\"\n [attr.aria-disabled]=\"item.definition.ariaDisabled\"\n [attr.aria-controls]=\"item.definition.ariaControls\"\n [attr.aria-current]=\"item.definition.ariaCurrent\"\n [attr.aria-live]=\"item.definition.ariaLive\"\n [attr.aria-expanded]=\"item.definition.ariaExpanded\"\n [attr.aria-haspopup]=\"item.definition.ariaHasPopup\">\n <ng-container *desyCustomInnerContent=\"{ component: item.definition, html: item.definition.html, text: item.definition.text}\"></ng-container>\n </dd>\n </div>\n </dl>\n </div>\n </ng-container>\n <ng-template #noItems>\n <div class=\"lg:w-2/3\">\n <ng-container *ngTemplateOutlet=\"commonHtml\"></ng-container>\n </div>\n </ng-template>\n\n <div class=\"lg:flex lg:flex-wrap lg:items-center lg:1/3\">\n\n <div *ngIf=\"contentComponent || caller\" [id]=\"id + '-status-item'\"\n [class]=\"'w-full lg:w-auto lg:text-right mt-base lg:mt-0 mb-base lg:mb-0'\">\n <ng-container *desyCustomInnerContent=\"{ component: contentComponent, template: caller }\"></ng-container>\n </div>\n\n <div *ngIf=\"statusComponent || status\" class=\"mb-base lg:mb-0 ml-base py-sm\">\n <ng-container *ngIf=\"statusComponent\">\n <ng-content select=\"desy-status\"></ng-content>\n </ng-container>\n <desy-status *ngIf=\"!statusComponent && status\"\n [text]=\"status.text\" [icon]=\"status.icon\" [classes]=\"status.classes\" [id]=\"status.id\"\n [role]=\"status.role\"\n [ariaLabel]=\"status.ariaLabel\"\n [ariaDescribedBy]=\"status.ariaDescribedBy\"\n [ariaLabelledBy]=\"status.ariaLabelledBy\"\n [ariaHidden]=\"status.ariaHidden\"\n [ariaDisabled]=\"status.ariaDisabled\"\n [ariaControls]=\"status.ariaControls\"\n [ariaCurrent]=\"status.ariaCurrent\"\n [ariaLive]=\"status.ariaLive\"\n [ariaExpanded]=\"status.ariaExpanded\"\n [ariaErrorMessage]=\"status.ariaErrorMessage\"\n [ariaHasPopup]=\"status.ariaHasPopup\"\n [tabindex]=\"status.tabindex\"></desy-status>\n </div>\n </div>\n</div>", 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: "component", type: i3.HintComponent, selector: "desy-hint", inputs: ["id", "classes", "html", "text"] }, { kind: "component", type: i4.ErrorMessageComponent, selector: "desy-error-message", inputs: ["id", "classes", "html", "text", "visuallyHiddenText"] }, { kind: "component", type: i5.StatusComponent, selector: "desy-status", inputs: ["text", "id", "icon", "classes"] }] });
41
41
  __decorate([
42
42
  DesyContentChild()
43
43
  ], StatusItemComponent.prototype, "titleComponent", void 0);
@@ -53,7 +53,7 @@ __decorate([
53
53
  __decorate([
54
54
  DesyContentChild()
55
55
  ], StatusItemComponent.prototype, "statusComponent", void 0);
56
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: StatusItemComponent, decorators: [{
56
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: StatusItemComponent, decorators: [{
57
57
  type: Component,
58
58
  args: [{ selector: 'desy-status-item', template: "<ng-template #commonHtml>\n <p *ngIf=\"titleComponent || title\" [class]=\"title ? title.classes : 'my-sm'\">\n <ng-container *desyCustomInnerContent=\"{\n component: titleComponent,\n html: title ? title.html : null,\n text: title ? title.text : null\n }\"></ng-container>\n </p>\n\n <ng-container *ngIf=\"hintComponent\">\n <ng-content select=\"desy-hint\"></ng-content>\n </ng-container>\n <ng-container *ngIf=\"!hintComponent && hint\">\n <desy-hint [text]=\"hint.text\" [html]=\"hint.html\" [classes]=\"hint.classes\" [id]=\"hint.id\"\n [role]=\"hint.role\"\n [ariaLabel]=\"hint.ariaLabel\"\n [ariaDescribedBy]=\"(hint.ariaDescribedBy ? hint.ariaDescribedBy + '' + hint.id : hint.id)\"\n [ariaLabelledBy]=\"hint.ariaLabelledBy\"\n [ariaHidden]=\"hint.ariaHidden\"\n [ariaDisabled]=\"hint.ariaDisabled\"\n [ariaControls]=\"hint.ariaControls\"\n [ariaCurrent]=\"hint.ariaCurrent\"\n [ariaLive]=\"hint.ariaLive\"\n [ariaExpanded]=\"hint.ariaExpanded\"\n [ariaErrorMessage]=\"hint.ariaErrorMessage\"\n [ariaHasPopup]=\"hint.ariaHasPopup\"\n [tabindex]=\"hint.tabindex\"></desy-hint>\n </ng-container>\n\n <ng-container *ngIf=\"errorMessageComponent\">\n <ng-content select=\"desy-error-message\"></ng-content>\n </ng-container>\n <ng-container *ngIf=\"!errorMessageComponent && errorMessage\">\n <desy-error-message [text]=\"errorMessage.text\" [html]=\"errorMessage.html\"\n [visuallyHiddenText]=\"errorMessage.visuallyHiddenText\"\n [id]=\"(errorId ? errorId : id + '-error')\" [classes]=\"errorMessage.classes\"\n [role]=\"errorMessage.role\"\n [ariaLabel]=\"errorMessage.ariaLabel\"\n [ariaDescribedBy]=\"(errorMessage.ariaDescribedBy ? errorMessage.ariaDescribedBy + '' + errorId : errorId)\"\n [ariaLabelledBy]=\"errorMessage.ariaLabelledBy\"\n [ariaHidden]=\"errorMessage.ariaHidden\"\n [ariaDisabled]=\"errorMessage.ariaDisabled\"\n [ariaControls]=\"errorMessage.ariaControls\"\n [ariaCurrent]=\"errorMessage.ariaCurrent\"\n [ariaLive]=\"errorMessage.ariaLive\"\n [ariaExpanded]=\"errorMessage.ariaExpanded\"\n [ariaErrorMessage]=\"errorMessage.ariaErrorMessage\"\n [ariaHasPopup]=\"errorMessage.ariaHasPopup\"\n [tabindex]=\"errorMessage.tabindex\"></desy-error-message>\n </ng-container>\n</ng-template>\n\n<div class=\"lg:flex lg:justify-between lg:items-start -my-px px-base py-sm border-t border-b border-neutral-base\">\n <ng-container *ngIf=\"getItems(); else noItems\">\n <div class=\"lg:w-2/3\">\n <ng-container *ngTemplateOutlet=\"commonHtml\"></ng-container>\n <dl>\n <div *ngFor=\"let item of getItems()\"\n [class]=\"(item.classes ? 'flex lg-flex-wrap ' + item.classes : 'flex lg-flex-wrap')\"\n [attr.id]=\"item.id ? item.id : null\"\n [attr.role]=\"item.role\"\n [attr.aria-describedby]=\"item.ariaDescribedBy\"\n [attr.aria-errormessage]=\"item.ariaErrorMessage\"\n [attr.aria-label]=\"item.ariaLabel\"\n [attr.aria-labelledby]=\"item.ariaLabelledBy\"\n [attr.aria-hidden]=\"item.ariaHidden\"\n [attr.aria-disabled]=\"item.ariaDisabled\"\n [attr.aria-controls]=\"item.ariaControls\"\n [attr.aria-current]=\"item.ariaCurrent\"\n [attr.aria-live]=\"item.ariaLive\"\n [attr.aria-expanded]=\"item.ariaExpanded\"\n [attr.aria-haspopup]=\"item.ariaHasPopup\">\n <dt [class]=\"(item.term.classes ? item.term.classes : 'w-1/2 my-sm')\"\n [attr.id]=\"item.term.id ? item.term.id : null\"\n [attr.role]=\"item.term.role\"\n [attr.aria-describedby]=\"item.term.ariaDescribedBy\"\n [attr.aria-errormessage]=\"item.term.ariaErrorMessage\"\n [attr.aria-label]=\"item.term.ariaLabel\"\n [attr.aria-labelledby]=\"item.term.ariaLabelledBy\"\n [attr.aria-hidden]=\"item.term.ariaHidden\"\n [attr.aria-disabled]=\"item.term.ariaDisabled\"\n [attr.aria-controls]=\"item.term.ariaControls\"\n [attr.aria-current]=\"item.term.ariaCurrent\"\n [attr.aria-live]=\"item.term.ariaLive\"\n [attr.aria-expanded]=\"item.term.ariaExpanded\"\n [attr.aria-haspopup]=\"item.term.ariaHasPopup\">\n <ng-container *desyCustomInnerContent=\"{ component: item.term, html: item.term.html, text: item.term.text}\"></ng-container>\n </dt>\n <dd [class]=\"(item.definition.classes ? item.definition.classes : 'w-1/2 my-sm font-semibold')\"\n [attr.id]=\"item.definition.id ? item.definition.id : null\"\n [attr.role]=\"item.definition.role\"\n [attr.aria-describedby]=\"item.definition.ariaDescribedBy\"\n [attr.aria-errormessage]=\"item.definition.ariaErrorMessage\"\n [attr.aria-label]=\"item.definition.ariaLabel\"\n [attr.aria-labelledby]=\"item.definition.ariaLabelledBy\"\n [attr.aria-hidden]=\"item.definition.ariaHidden\"\n [attr.aria-disabled]=\"item.definition.ariaDisabled\"\n [attr.aria-controls]=\"item.definition.ariaControls\"\n [attr.aria-current]=\"item.definition.ariaCurrent\"\n [attr.aria-live]=\"item.definition.ariaLive\"\n [attr.aria-expanded]=\"item.definition.ariaExpanded\"\n [attr.aria-haspopup]=\"item.definition.ariaHasPopup\">\n <ng-container *desyCustomInnerContent=\"{ component: item.definition, html: item.definition.html, text: item.definition.text}\"></ng-container>\n </dd>\n </div>\n </dl>\n </div>\n </ng-container>\n <ng-template #noItems>\n <div class=\"lg:w-2/3\">\n <ng-container *ngTemplateOutlet=\"commonHtml\"></ng-container>\n </div>\n </ng-template>\n\n <div class=\"lg:flex lg:flex-wrap lg:items-center lg:1/3\">\n\n <div *ngIf=\"contentComponent || caller\" [id]=\"id + '-status-item'\"\n [class]=\"'w-full lg:w-auto lg:text-right mt-base lg:mt-0 mb-base lg:mb-0'\">\n <ng-container *desyCustomInnerContent=\"{ component: contentComponent, template: caller }\"></ng-container>\n </div>\n\n <div *ngIf=\"statusComponent || status\" class=\"mb-base lg:mb-0 ml-base py-sm\">\n <ng-container *ngIf=\"statusComponent\">\n <ng-content select=\"desy-status\"></ng-content>\n </ng-container>\n <desy-status *ngIf=\"!statusComponent && status\"\n [text]=\"status.text\" [icon]=\"status.icon\" [classes]=\"status.classes\" [id]=\"status.id\"\n [role]=\"status.role\"\n [ariaLabel]=\"status.ariaLabel\"\n [ariaDescribedBy]=\"status.ariaDescribedBy\"\n [ariaLabelledBy]=\"status.ariaLabelledBy\"\n [ariaHidden]=\"status.ariaHidden\"\n [ariaDisabled]=\"status.ariaDisabled\"\n [ariaControls]=\"status.ariaControls\"\n [ariaCurrent]=\"status.ariaCurrent\"\n [ariaLive]=\"status.ariaLive\"\n [ariaExpanded]=\"status.ariaExpanded\"\n [ariaErrorMessage]=\"status.ariaErrorMessage\"\n [ariaHasPopup]=\"status.ariaHasPopup\"\n [tabindex]=\"status.tabindex\"></desy-status>\n </div>\n </div>\n</div>" }]
59
59
  }], propDecorators: { id: [{
@@ -3,9 +3,9 @@ import { ContentBaseComponent } from '../../../../shared/components';
3
3
  import * as i0 from "@angular/core";
4
4
  export class PanelComponent extends ContentBaseComponent {
5
5
  }
6
- PanelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: PanelComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
7
- PanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: PanelComponent, selector: "desy-panel", inputs: { classes: "classes", id: "id" }, 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: PanelComponent, decorators: [{
6
+ PanelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PanelComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
7
+ PanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PanelComponent, selector: "desy-panel", inputs: { classes: "classes", id: "id" }, 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.9", ngImport: i0, type: PanelComponent, decorators: [{
9
9
  type: Component,
10
10
  args: [{
11
11
  selector: 'desy-panel',
@@ -7,15 +7,15 @@ import { AccessibilityComponent } from '../../../../shared/components';
7
7
  import * as i0 from "@angular/core";
8
8
  export class TabItemComponent extends AccessibilityComponent {
9
9
  }
10
- TabItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TabItemComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
11
- TabItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: TabItemComponent, selector: "desy-tab-item", inputs: { classes: "classes", disabled: "disabled", id: "id" }, queries: [{ propertyName: "contentComponent", predicate: ContentComponent }, { propertyName: "panelComponent", predicate: PanelComponent }], usesInheritance: true, ngImport: i0, template: '', isInline: true });
10
+ TabItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TabItemComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
11
+ TabItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: TabItemComponent, selector: "desy-tab-item", inputs: { classes: "classes", disabled: "disabled", id: "id" }, queries: [{ propertyName: "contentComponent", predicate: ContentComponent }, { propertyName: "panelComponent", predicate: PanelComponent }], usesInheritance: true, ngImport: i0, template: '', isInline: true });
12
12
  __decorate([
13
13
  DesyContentChild()
14
14
  ], TabItemComponent.prototype, "contentComponent", void 0);
15
15
  __decorate([
16
16
  DesyContentChild()
17
17
  ], TabItemComponent.prototype, "panelComponent", void 0);
18
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TabItemComponent, decorators: [{
18
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TabItemComponent, decorators: [{
19
19
  type: Component,
20
20
  args: [{
21
21
  selector: 'desy-tab-item',
@@ -119,9 +119,9 @@ export class TabsComponent extends AccessibilityComponent {
119
119
  return item[tab].panel && item[tab].panel.text ? `<p>${StringUtils.escapeHtml(item[tab].panel.text)}</p>` : null;
120
120
  }
121
121
  }
122
- TabsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TabsComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i1.MediaMatcher }], target: i0.ɵɵFactoryTarget.Component });
123
- TabsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: TabsComponent, selector: "desy-tabs", inputs: { id: "id", idPrefix: "idPrefix", headingLevel: "headingLevel", title: "title", tablistAriaLabel: "tablistAriaLabel", items: "items", classes: "classes" }, host: { properties: { "class": "this.classes", "attr.id": "this.idData", "attr.role": "this.roleData", "attr.aria-describedby": "this.ariaDescribedbyData", "attr.aria-errormessage": "this.ariaErrormessageData", "attr.aria-label": "this.ariaLabelData", "attr.aria-labelledby": "this.ariaLabelledbyData", "attr.aria-hidden": "this.ariaHiddenData", "attr.aria-disabled": "this.ariaDisabledData", "attr.aria-controls": "this.ariaControlsData", "attr.aria-current": "this.ariaCurrentData", "attr.aria-live": "this.ariaLiveData", "attr.aria-expanded": "this.ariaExpandedData", "attr.aria-haspopup": "this.ariaHaspopupData", "attr.tabindex": "this.tabindexData" } }, queries: [{ propertyName: "itemComponents", predicate: TabItemComponent }], viewQueries: [{ propertyName: "tabSrOnly", first: true, predicate: ["tabSrOnly"], descendants: true }, { propertyName: "tabSelectors", predicate: ["tabSelector"], descendants: true }, { propertyName: "tabSelectorContentWrapper", predicate: ["tabSelectorContentWrapper"], descendants: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<ng-container *ngIf=\"title\">\n <ng-container [ngSwitch]=\"headingLevel\">\n <h1 *ngSwitchCase=\"1\" class=\"lg:hidden mb-sm text-sm\">{{title}}</h1>\n <h2 *ngSwitchCase=\"2\" class=\"lg:hidden mb-sm text-sm\">{{title}}</h2>\n <h3 *ngSwitchCase=\"3\" class=\"lg:hidden mb-sm text-sm\">{{title}}</h3>\n <h4 *ngSwitchCase=\"4\" class=\"lg:hidden mb-sm text-sm\">{{title}}</h4>\n <h5 *ngSwitchCase=\"5\" class=\"lg:hidden mb-sm text-sm\">{{title}}</h5>\n <h2 *ngSwitchDefault class=\"lg:hidden mb-sm text-sm\">{{title}}</h2>\n </ng-container>\n</ng-container>\n<ng-container *ngIf=\"!title\">\n <ng-container [ngSwitch]=\"headingLevel\">\n <h1 *ngSwitchCase=\"1\" class=\"lg:hidden mb-sm text-sm\">Contenido</h1>\n <h2 *ngSwitchCase=\"2\" class=\"lg:hidden mb-sm text-sm\">Contenido</h2>\n <h3 *ngSwitchCase=\"3\" class=\"lg:hidden mb-sm text-sm\">Contenido</h3>\n <h4 *ngSwitchCase=\"4\" class=\"lg:hidden mb-sm text-sm\">Contenido</h4>\n <h5 *ngSwitchCase=\"5\" class=\"lg:hidden mb-sm text-sm\">Contenido</h5>\n <h2 *ngSwitchDefault class=\"lg:hidden mb-sm text-sm\">Contenido</h2>\n </ng-container>\n</ng-container>\n\n<ng-container *ngIf=\"getItems()\">\n <div class=\"c-tabs lg:flex lg:flex-wrap mb-[-0.125rem]\" role=\"tablist\" [attr.aria-label]=tablistAriaLabel>\n <ng-container *ngFor=\"let item of getItems(); index as i\">\n <button #tabSelector\n (click)=\"selectTab(i)\"\n (keydown.home)=\"focusFirstTab($event)\"\n (keydown.end)=\"focusLastTab($event)\"\n (keydown.arrowleft)=\"focusPreviousTab(i)\"\n (keydown.arrowright)=\"focusNextTab(i)\"\n class=\"aria-selected:bg-white aria-selected:rounded-t-[0.1875rem] aria-selected:border-b-0 relative flex items-center text-black underline truncate border border-transparent aria-selected:no-underline py-sm lg:px-lg lg:py-base hover:text-primary-base focus:outline-none\"\n [ngClass]=\"{'opacity-50 pointer-events-none': isDisabled(item), 'aria-selected:border-[rgb(146_148_155/1)]' : !this.mobileQuery.matches}\"\n [attr.id]=\"getItemId(i)\"\n [attr.role]=\"(item.role ? role : 'tab')\"\n [attr.aria-selected]=\"currentTab === i ? 'true' : 'false'\"\n [attr.aria-describedby]=\"item.ariaDescribedBy\"\n [attr.aria-errormessage]=\"item.ariaErrorMessage\"\n [attr.aria-label]=\"item.ariaLabel\"\n [attr.aria-labelledby]=\"item.ariaLabelledBy\"\n [attr.aria-hidden]=\"item.ariaHidden\"\n [attr.aria-controls]=\"'tab-' + getItemId(i)\"\n [attr.aria-current]=\"item.ariaCurrent\"\n [attr.aria-live]=\"item.ariaLive\"\n [attr.aria-expanded]=\"item.ariaExpanded\"\n [attr.aria-haspopup]=\"item.ariaHasPopup\"\n [attr.tabindex]=\"(currentTab !== i || item.disabled ? '-1' : null)\"\n [attr.disabled]=\"isDisabled(item)\"\n [attr.aria-disabled]=\"isDisabled(item) ? 'true' : (ariaDisabled ? ariaDisabled : null)\">\n <span #tabSelectorContentWrapper class=\"flex items-center pointer-events-none\">\n <ng-container *desyCustomInnerContent=\"{ component: item.contentComponent, html: item.html, text: item.text}\"></ng-container>\n </span>\n </button>\n </ng-container>\n </div>\n\n <div [class]=\"['p-base mt-base lg:mt-0 border border-neutral-base focus:outline-none focus:border-black focus:shadow-outline-focus-input focus:ring-4 focus:ring-warning-base', currentPanel?.classes] | makeHtmlList\"\n [attr.id]=\"'tab-' + getItemId(currentTab)\"\n [attr.role]=\"(currentPanel?.role ? currentPanel?.role : 'tabpanel')\"\n [attr.aria-describedby]=\"currentPanel?.ariaDescribedBy\"\n [attr.aria-errormessage]=\"currentPanel?.ariaErrorMessage\"\n [attr.aria-label]=\"currentPanel?.ariaLabel\"\n [attr.aria-labelledby]=\"getItemId(currentTab)\"\n [attr.aria-hidden]=\"currentPanel?.ariaHidden\"\n [attr.aria-disabled]=\"currentPanel?.ariaDisabled\"\n [attr.aria-controls]=\"currentPanel?.ariaControls\"\n [attr.aria-current]=\"currentPanel?.ariaCurrent\"\n [attr.aria-live]=\"currentPanel?.ariaLive\"\n [attr.aria-expanded]=\"currentPanel?.ariaExpanded\"\n [attr.aria-haspopup]=\"currentPanel?.ariaHasPopup\"\n [attr.tabindex]=\"(currentPanel?.tabindex ? currentPanel?.tabindex : '0')\">\n <ng-container [ngSwitch]=\"headingLevel\">\n <h1 *ngSwitchCase=\"1\" #tabSrOnly class=\"lg:sr-only inline-flex items-center mb-base lg:mb-0 font-semibold\"></h1>\n <h2 *ngSwitchCase=\"2\" #tabSrOnly class=\"lg:sr-only inline-flex items-center mb-base lg:mb-0 font-semibold\"></h2>\n <h3 *ngSwitchCase=\"3\" #tabSrOnly class=\"lg:sr-only inline-flex items-center mb-base lg:mb-0 font-semibold\"></h3>\n <h4 *ngSwitchCase=\"4\" #tabSrOnly class=\"lg:sr-only inline-flex items-center mb-base lg:mb-0 font-semibold\"></h4>\n <h5 *ngSwitchCase=\"5\" #tabSrOnly class=\"lg:sr-only inline-flex items-center mb-base lg:mb-0 font-semibold\"></h5>\n <h3 *ngSwitchDefault #tabSrOnly class=\"lg:sr-only inline-flex items-center mb-base lg:mb-0 font-semibold\"></h3>\n </ng-container>\n <ng-container *desyCustomInnerContent=\"{ component: getItemPanel(currentTab), template: currentPanel?.html, html: getPanelContent(currentTab) }\"></ng-container>\n </div>\n</ng-container>", dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i2.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i2.NgSwitchDefault, selector: "[ngSwitchDefault]" }, { kind: "directive", type: i3.CustomInnerContentDirective, selector: "[desyCustomInnerContent]", inputs: ["desyCustomInnerContent"] }, { kind: "pipe", type: i4.MakeHtmlListPipe, name: "makeHtmlList" }] });
124
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TabsComponent, decorators: [{
122
+ TabsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TabsComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i1.MediaMatcher }], target: i0.ɵɵFactoryTarget.Component });
123
+ TabsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: TabsComponent, selector: "desy-tabs", inputs: { id: "id", idPrefix: "idPrefix", headingLevel: "headingLevel", title: "title", tablistAriaLabel: "tablistAriaLabel", items: "items", classes: "classes" }, host: { properties: { "class": "this.classes", "attr.id": "this.idData", "attr.role": "this.roleData", "attr.aria-describedby": "this.ariaDescribedbyData", "attr.aria-errormessage": "this.ariaErrormessageData", "attr.aria-label": "this.ariaLabelData", "attr.aria-labelledby": "this.ariaLabelledbyData", "attr.aria-hidden": "this.ariaHiddenData", "attr.aria-disabled": "this.ariaDisabledData", "attr.aria-controls": "this.ariaControlsData", "attr.aria-current": "this.ariaCurrentData", "attr.aria-live": "this.ariaLiveData", "attr.aria-expanded": "this.ariaExpandedData", "attr.aria-haspopup": "this.ariaHaspopupData", "attr.tabindex": "this.tabindexData" } }, queries: [{ propertyName: "itemComponents", predicate: TabItemComponent }], viewQueries: [{ propertyName: "tabSrOnly", first: true, predicate: ["tabSrOnly"], descendants: true }, { propertyName: "tabSelectors", predicate: ["tabSelector"], descendants: true }, { propertyName: "tabSelectorContentWrapper", predicate: ["tabSelectorContentWrapper"], descendants: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<ng-container *ngIf=\"title\">\n <ng-container [ngSwitch]=\"headingLevel\">\n <h1 *ngSwitchCase=\"1\" class=\"lg:hidden mb-sm text-sm\">{{title}}</h1>\n <h2 *ngSwitchCase=\"2\" class=\"lg:hidden mb-sm text-sm\">{{title}}</h2>\n <h3 *ngSwitchCase=\"3\" class=\"lg:hidden mb-sm text-sm\">{{title}}</h3>\n <h4 *ngSwitchCase=\"4\" class=\"lg:hidden mb-sm text-sm\">{{title}}</h4>\n <h5 *ngSwitchCase=\"5\" class=\"lg:hidden mb-sm text-sm\">{{title}}</h5>\n <h2 *ngSwitchDefault class=\"lg:hidden mb-sm text-sm\">{{title}}</h2>\n </ng-container>\n</ng-container>\n<ng-container *ngIf=\"!title\">\n <ng-container [ngSwitch]=\"headingLevel\">\n <h1 *ngSwitchCase=\"1\" class=\"lg:hidden mb-sm text-sm\">Contenido</h1>\n <h2 *ngSwitchCase=\"2\" class=\"lg:hidden mb-sm text-sm\">Contenido</h2>\n <h3 *ngSwitchCase=\"3\" class=\"lg:hidden mb-sm text-sm\">Contenido</h3>\n <h4 *ngSwitchCase=\"4\" class=\"lg:hidden mb-sm text-sm\">Contenido</h4>\n <h5 *ngSwitchCase=\"5\" class=\"lg:hidden mb-sm text-sm\">Contenido</h5>\n <h2 *ngSwitchDefault class=\"lg:hidden mb-sm text-sm\">Contenido</h2>\n </ng-container>\n</ng-container>\n\n<ng-container *ngIf=\"getItems()\">\n <div class=\"c-tabs lg:flex lg:flex-wrap mb-[-0.125rem]\" role=\"tablist\" [attr.aria-label]=tablistAriaLabel>\n <ng-container *ngFor=\"let item of getItems(); index as i\">\n <button #tabSelector\n (click)=\"selectTab(i)\"\n (keydown.home)=\"focusFirstTab($event)\"\n (keydown.end)=\"focusLastTab($event)\"\n (keydown.arrowleft)=\"focusPreviousTab(i)\"\n (keydown.arrowright)=\"focusNextTab(i)\"\n class=\"aria-selected:bg-white aria-selected:rounded-t-[0.1875rem] aria-selected:border-b-0 relative flex items-center text-black underline truncate border border-transparent aria-selected:no-underline py-sm lg:px-lg lg:py-base hover:text-primary-base focus:outline-none\"\n [ngClass]=\"{'opacity-50 pointer-events-none': isDisabled(item), 'aria-selected:border-[rgb(146_148_155/1)]' : !this.mobileQuery.matches}\"\n [attr.id]=\"getItemId(i)\"\n [attr.role]=\"(item.role ? role : 'tab')\"\n [attr.aria-selected]=\"currentTab === i ? 'true' : 'false'\"\n [attr.aria-describedby]=\"item.ariaDescribedBy\"\n [attr.aria-errormessage]=\"item.ariaErrorMessage\"\n [attr.aria-label]=\"item.ariaLabel\"\n [attr.aria-labelledby]=\"item.ariaLabelledBy\"\n [attr.aria-hidden]=\"item.ariaHidden\"\n [attr.aria-controls]=\"'tab-' + getItemId(i)\"\n [attr.aria-current]=\"item.ariaCurrent\"\n [attr.aria-live]=\"item.ariaLive\"\n [attr.aria-expanded]=\"item.ariaExpanded\"\n [attr.aria-haspopup]=\"item.ariaHasPopup\"\n [attr.tabindex]=\"(currentTab !== i || item.disabled ? '-1' : null)\"\n [attr.disabled]=\"isDisabled(item)\"\n [attr.aria-disabled]=\"isDisabled(item) ? 'true' : (ariaDisabled ? ariaDisabled : null)\">\n <span #tabSelectorContentWrapper class=\"flex items-center pointer-events-none\">\n <ng-container *desyCustomInnerContent=\"{ component: item.contentComponent, html: item.html, text: item.text}\"></ng-container>\n </span>\n </button>\n </ng-container>\n </div>\n\n <div [class]=\"['p-base mt-base lg:mt-0 border border-neutral-base focus:outline-none focus:border-black focus:shadow-outline-focus-input focus:ring-4 focus:ring-warning-base', currentPanel?.classes] | makeHtmlList\"\n [attr.id]=\"'tab-' + getItemId(currentTab)\"\n [attr.role]=\"(currentPanel?.role ? currentPanel?.role : 'tabpanel')\"\n [attr.aria-describedby]=\"currentPanel?.ariaDescribedBy\"\n [attr.aria-errormessage]=\"currentPanel?.ariaErrorMessage\"\n [attr.aria-label]=\"currentPanel?.ariaLabel\"\n [attr.aria-labelledby]=\"getItemId(currentTab)\"\n [attr.aria-hidden]=\"currentPanel?.ariaHidden\"\n [attr.aria-disabled]=\"currentPanel?.ariaDisabled\"\n [attr.aria-controls]=\"currentPanel?.ariaControls\"\n [attr.aria-current]=\"currentPanel?.ariaCurrent\"\n [attr.aria-live]=\"currentPanel?.ariaLive\"\n [attr.aria-expanded]=\"currentPanel?.ariaExpanded\"\n [attr.aria-haspopup]=\"currentPanel?.ariaHasPopup\"\n [attr.tabindex]=\"(currentPanel?.tabindex ? currentPanel?.tabindex : '0')\">\n <ng-container [ngSwitch]=\"headingLevel\">\n <h1 *ngSwitchCase=\"1\" #tabSrOnly class=\"lg:sr-only inline-flex items-center mb-base lg:mb-0 font-semibold\"></h1>\n <h2 *ngSwitchCase=\"2\" #tabSrOnly class=\"lg:sr-only inline-flex items-center mb-base lg:mb-0 font-semibold\"></h2>\n <h3 *ngSwitchCase=\"3\" #tabSrOnly class=\"lg:sr-only inline-flex items-center mb-base lg:mb-0 font-semibold\"></h3>\n <h4 *ngSwitchCase=\"4\" #tabSrOnly class=\"lg:sr-only inline-flex items-center mb-base lg:mb-0 font-semibold\"></h4>\n <h5 *ngSwitchCase=\"5\" #tabSrOnly class=\"lg:sr-only inline-flex items-center mb-base lg:mb-0 font-semibold\"></h5>\n <h3 *ngSwitchDefault #tabSrOnly class=\"lg:sr-only inline-flex items-center mb-base lg:mb-0 font-semibold\"></h3>\n </ng-container>\n <ng-container *desyCustomInnerContent=\"{ component: getItemPanel(currentTab), template: currentPanel?.html, html: getPanelContent(currentTab) }\"></ng-container>\n </div>\n</ng-container>", dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i2.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i2.NgSwitchDefault, selector: "[ngSwitchDefault]" }, { kind: "directive", type: i3.CustomInnerContentDirective, selector: "[desyCustomInnerContent]", inputs: ["desyCustomInnerContent"] }, { kind: "pipe", type: i4.MakeHtmlListPipe, name: "makeHtmlList" }] });
124
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TabsComponent, decorators: [{
125
125
  type: Component,
126
126
  args: [{ selector: 'desy-tabs', template: "<ng-container *ngIf=\"title\">\n <ng-container [ngSwitch]=\"headingLevel\">\n <h1 *ngSwitchCase=\"1\" class=\"lg:hidden mb-sm text-sm\">{{title}}</h1>\n <h2 *ngSwitchCase=\"2\" class=\"lg:hidden mb-sm text-sm\">{{title}}</h2>\n <h3 *ngSwitchCase=\"3\" class=\"lg:hidden mb-sm text-sm\">{{title}}</h3>\n <h4 *ngSwitchCase=\"4\" class=\"lg:hidden mb-sm text-sm\">{{title}}</h4>\n <h5 *ngSwitchCase=\"5\" class=\"lg:hidden mb-sm text-sm\">{{title}}</h5>\n <h2 *ngSwitchDefault class=\"lg:hidden mb-sm text-sm\">{{title}}</h2>\n </ng-container>\n</ng-container>\n<ng-container *ngIf=\"!title\">\n <ng-container [ngSwitch]=\"headingLevel\">\n <h1 *ngSwitchCase=\"1\" class=\"lg:hidden mb-sm text-sm\">Contenido</h1>\n <h2 *ngSwitchCase=\"2\" class=\"lg:hidden mb-sm text-sm\">Contenido</h2>\n <h3 *ngSwitchCase=\"3\" class=\"lg:hidden mb-sm text-sm\">Contenido</h3>\n <h4 *ngSwitchCase=\"4\" class=\"lg:hidden mb-sm text-sm\">Contenido</h4>\n <h5 *ngSwitchCase=\"5\" class=\"lg:hidden mb-sm text-sm\">Contenido</h5>\n <h2 *ngSwitchDefault class=\"lg:hidden mb-sm text-sm\">Contenido</h2>\n </ng-container>\n</ng-container>\n\n<ng-container *ngIf=\"getItems()\">\n <div class=\"c-tabs lg:flex lg:flex-wrap mb-[-0.125rem]\" role=\"tablist\" [attr.aria-label]=tablistAriaLabel>\n <ng-container *ngFor=\"let item of getItems(); index as i\">\n <button #tabSelector\n (click)=\"selectTab(i)\"\n (keydown.home)=\"focusFirstTab($event)\"\n (keydown.end)=\"focusLastTab($event)\"\n (keydown.arrowleft)=\"focusPreviousTab(i)\"\n (keydown.arrowright)=\"focusNextTab(i)\"\n class=\"aria-selected:bg-white aria-selected:rounded-t-[0.1875rem] aria-selected:border-b-0 relative flex items-center text-black underline truncate border border-transparent aria-selected:no-underline py-sm lg:px-lg lg:py-base hover:text-primary-base focus:outline-none\"\n [ngClass]=\"{'opacity-50 pointer-events-none': isDisabled(item), 'aria-selected:border-[rgb(146_148_155/1)]' : !this.mobileQuery.matches}\"\n [attr.id]=\"getItemId(i)\"\n [attr.role]=\"(item.role ? role : 'tab')\"\n [attr.aria-selected]=\"currentTab === i ? 'true' : 'false'\"\n [attr.aria-describedby]=\"item.ariaDescribedBy\"\n [attr.aria-errormessage]=\"item.ariaErrorMessage\"\n [attr.aria-label]=\"item.ariaLabel\"\n [attr.aria-labelledby]=\"item.ariaLabelledBy\"\n [attr.aria-hidden]=\"item.ariaHidden\"\n [attr.aria-controls]=\"'tab-' + getItemId(i)\"\n [attr.aria-current]=\"item.ariaCurrent\"\n [attr.aria-live]=\"item.ariaLive\"\n [attr.aria-expanded]=\"item.ariaExpanded\"\n [attr.aria-haspopup]=\"item.ariaHasPopup\"\n [attr.tabindex]=\"(currentTab !== i || item.disabled ? '-1' : null)\"\n [attr.disabled]=\"isDisabled(item)\"\n [attr.aria-disabled]=\"isDisabled(item) ? 'true' : (ariaDisabled ? ariaDisabled : null)\">\n <span #tabSelectorContentWrapper class=\"flex items-center pointer-events-none\">\n <ng-container *desyCustomInnerContent=\"{ component: item.contentComponent, html: item.html, text: item.text}\"></ng-container>\n </span>\n </button>\n </ng-container>\n </div>\n\n <div [class]=\"['p-base mt-base lg:mt-0 border border-neutral-base focus:outline-none focus:border-black focus:shadow-outline-focus-input focus:ring-4 focus:ring-warning-base', currentPanel?.classes] | makeHtmlList\"\n [attr.id]=\"'tab-' + getItemId(currentTab)\"\n [attr.role]=\"(currentPanel?.role ? currentPanel?.role : 'tabpanel')\"\n [attr.aria-describedby]=\"currentPanel?.ariaDescribedBy\"\n [attr.aria-errormessage]=\"currentPanel?.ariaErrorMessage\"\n [attr.aria-label]=\"currentPanel?.ariaLabel\"\n [attr.aria-labelledby]=\"getItemId(currentTab)\"\n [attr.aria-hidden]=\"currentPanel?.ariaHidden\"\n [attr.aria-disabled]=\"currentPanel?.ariaDisabled\"\n [attr.aria-controls]=\"currentPanel?.ariaControls\"\n [attr.aria-current]=\"currentPanel?.ariaCurrent\"\n [attr.aria-live]=\"currentPanel?.ariaLive\"\n [attr.aria-expanded]=\"currentPanel?.ariaExpanded\"\n [attr.aria-haspopup]=\"currentPanel?.ariaHasPopup\"\n [attr.tabindex]=\"(currentPanel?.tabindex ? currentPanel?.tabindex : '0')\">\n <ng-container [ngSwitch]=\"headingLevel\">\n <h1 *ngSwitchCase=\"1\" #tabSrOnly class=\"lg:sr-only inline-flex items-center mb-base lg:mb-0 font-semibold\"></h1>\n <h2 *ngSwitchCase=\"2\" #tabSrOnly class=\"lg:sr-only inline-flex items-center mb-base lg:mb-0 font-semibold\"></h2>\n <h3 *ngSwitchCase=\"3\" #tabSrOnly class=\"lg:sr-only inline-flex items-center mb-base lg:mb-0 font-semibold\"></h3>\n <h4 *ngSwitchCase=\"4\" #tabSrOnly class=\"lg:sr-only inline-flex items-center mb-base lg:mb-0 font-semibold\"></h4>\n <h5 *ngSwitchCase=\"5\" #tabSrOnly class=\"lg:sr-only inline-flex items-center mb-base lg:mb-0 font-semibold\"></h5>\n <h3 *ngSwitchDefault #tabSrOnly class=\"lg:sr-only inline-flex items-center mb-base lg:mb-0 font-semibold\"></h3>\n </ng-container>\n <ng-container *desyCustomInnerContent=\"{ component: getItemPanel(currentTab), template: currentPanel?.html, html: getPanelContent(currentTab) }\"></ng-container>\n </div>\n</ng-container>" }]
127
127
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i1.MediaMatcher }]; }, propDecorators: { itemComponents: [{
@@ -3,9 +3,9 @@ import { ContentBaseComponent } from '../../../../shared/components';
3
3
  import * as i0 from "@angular/core";
4
4
  export class TooltipContentComponent extends ContentBaseComponent {
5
5
  }
6
- TooltipContentComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TooltipContentComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
7
- TooltipContentComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: TooltipContentComponent, selector: "desy-tooltip-content", usesInheritance: true, ngImport: i0, template: "<ng-template #contentTemplate>\n <ng-content></ng-content>\n</ng-template>\n" });
8
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TooltipContentComponent, decorators: [{
6
+ TooltipContentComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TooltipContentComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
7
+ TooltipContentComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: TooltipContentComponent, selector: "desy-tooltip-content", usesInheritance: true, ngImport: i0, template: "<ng-template #contentTemplate>\n <ng-content></ng-content>\n</ng-template>\n" });
8
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TooltipContentComponent, decorators: [{
9
9
  type: Component,
10
10
  args: [{ selector: 'desy-tooltip-content', template: "<ng-template #contentTemplate>\n <ng-content></ng-content>\n</ng-template>\n" }]
11
11
  }] });
@@ -111,8 +111,8 @@ export class TooltipComponent extends AccessibilityComponent {
111
111
  }
112
112
  }
113
113
  TooltipComponent.KEY_CODE_ESC = 'Escape';
114
- TooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TooltipComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
115
- TooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: TooltipComponent, selector: "desy-tooltip", inputs: { id: "id", text: "text", html: "html", complex: "complex", classesTooltip: "classesTooltip", icon: "icon", caller: "caller", classes: "classes" }, host: { properties: { "class": "this.classes", "attr.id": "this.idData", "attr.role": "this.roleData", "attr.aria-describedby": "this.ariaDescribedbyData", "attr.aria-errormessage": "this.ariaErrormessageData", "attr.aria-label": "this.ariaLabelData", "attr.aria-labelledby": "this.ariaLabelledbyData", "attr.aria-hidden": "this.ariaHiddenData", "attr.aria-disabled": "this.ariaDisabledData", "attr.aria-controls": "this.ariaControlsData", "attr.aria-current": "this.ariaCurrentData", "attr.aria-live": "this.ariaLiveData", "attr.aria-expanded": "this.ariaExpandedData", "attr.aria-haspopup": "this.ariaHaspopupData", "attr.tabindex": "this.tabindexData" } }, queries: [{ propertyName: "contentComponent", predicate: ContentComponent }, { propertyName: "iconComponent", predicate: IconComponent }, { propertyName: "tooltipContentComponent", predicate: TooltipContentComponent }], viewQueries: [{ propertyName: "tooltipContent", first: true, predicate: ["tooltipContent"], descendants: true, read: ElementRef, static: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<div *ngIf=\"tippyProperties\" [attr.id]=\"getIdButton()\"\n ngxTippy [tippyProps]=\"tippyProperties\"\n class=\"inline-flex items-center focus:bg-warning-base focus:outline-none focus:shadow-outline-focus focus:text-black\"\n tabindex=\"0\" role=\"button\"\n [attr.aria-labelledby]=\"getIdButton() + ' ' + getIdTooltip()\">\n <ng-container *desyCustomInnerContent=\"{ component: contentComponent, html: getMainContent() }\"></ng-container>\n <span *ngIf=\"hasContent && ( (iconComponent) || (icon) )\" class=\"inline-block w-1.5\"></span>\n <span *ngIf=\"iconComponent\" class=\"inline-block\">\n <ng-container *desyCustomInnerContent=\"{ component: iconComponent }\"></ng-container>\n\n <ng-container *ngIf=\"!hasIconComponentContent\">\n <ng-container [ngSwitch]=\"iconComponent.type\">\n <svg *ngSwitchCase=\"'info'\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 140 140\" width=\"1em\" height=\"1em\" class=\"w-4 h-4 text-primary-base\" role=\"img\" aria-label=\"Informaci\u00F3n\"><path d=\"M70 0a70 70 0 1070 70A70.08 70.08 0 0070 0zm7.5 105a7.5 7.5 0 01-15 0V70a7.5 7.5 0 0115 0zM70 50a10 10 0 1110-10 10 10 0 01-10 10z\" fill=\"currentColor\"/></svg>\n <svg *ngSwitchCase=\"'alert'\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 140 140\" width=\"1em\" height=\"1em\" class=\"w-4 h-4 text-alert-base\" role=\"img\" aria-label=\"Alerta\"><path d=\"M138.42 118.29l-55-110a15 15 0 00-26.84 0l-55 110A15 15 0 0015 140h110a15 15 0 0013.42-21.71zM62.5 50a7.5 7.5 0 0115 0v30a7.5 7.5 0 01-15 0zm7.5 70a10 10 0 1110-10 10 10 0 01-10 10z\" fill=\"currentColor\"/></svg>\n <svg *ngSwitchDefault xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 140 140\" width=\"1em\" height=\"1em\" class=\"w-4 h-4 text-primary-base\" role=\"img\" aria-label=\"Ayuda\"><path d=\"M70 0a70 70 0 1070 70A70.08 70.08 0 0070 0zm0 117.51a10 10 0 1110-10 10 10 0 01-10 10zm9.17-39.08a2.5 2.5 0 00-1.67 2.36v1.71a7.5 7.5 0 01-15 0v-10A7.5 7.5 0 0170 65a12.5 12.5 0 10-12.5-12.5 7.5 7.5 0 01-15 0 27.5 27.5 0 1136.67 25.93z\" fill=\"currentColor\"/></svg>\n </ng-container>\n </ng-container>\n </span>\n <span *ngIf=\"!iconComponent && icon\" class=\"inline-block\">\n <ng-container *desyCustomInnerContent=\"{ html: getIconContent(icon) }\"></ng-container>\n </span>\n</div>\n\n<div #tooltipContent [attr.id]=\"getIdTooltip()\"\n [class]=\"['-my-xs p-sm shadow-md bg-black rounded text-white', classesTooltip] | makeHtmlList\">\n <ng-container *desyCustomInnerContent=\"{ component: tooltipContentComponent, template: caller }\"></ng-container>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i1.NgSwitchDefault, selector: "[ngSwitchDefault]" }, { kind: "directive", type: i2.CustomInnerContentDirective, selector: "[desyCustomInnerContent]", inputs: ["desyCustomInnerContent"] }, { kind: "directive", type: i3.NgxTippyDirective, selector: "[ngxTippy]", inputs: ["ngxTippy", "tippyProps", "tippyName", "tippyClassName"] }, { kind: "pipe", type: i4.MakeHtmlListPipe, name: "makeHtmlList" }] });
114
+ TooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TooltipComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
115
+ TooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: TooltipComponent, selector: "desy-tooltip", inputs: { id: "id", text: "text", html: "html", complex: "complex", classesTooltip: "classesTooltip", icon: "icon", caller: "caller", classes: "classes" }, host: { properties: { "class": "this.classes", "attr.id": "this.idData", "attr.role": "this.roleData", "attr.aria-describedby": "this.ariaDescribedbyData", "attr.aria-errormessage": "this.ariaErrormessageData", "attr.aria-label": "this.ariaLabelData", "attr.aria-labelledby": "this.ariaLabelledbyData", "attr.aria-hidden": "this.ariaHiddenData", "attr.aria-disabled": "this.ariaDisabledData", "attr.aria-controls": "this.ariaControlsData", "attr.aria-current": "this.ariaCurrentData", "attr.aria-live": "this.ariaLiveData", "attr.aria-expanded": "this.ariaExpandedData", "attr.aria-haspopup": "this.ariaHaspopupData", "attr.tabindex": "this.tabindexData" } }, queries: [{ propertyName: "contentComponent", predicate: ContentComponent }, { propertyName: "iconComponent", predicate: IconComponent }, { propertyName: "tooltipContentComponent", predicate: TooltipContentComponent }], viewQueries: [{ propertyName: "tooltipContent", first: true, predicate: ["tooltipContent"], descendants: true, read: ElementRef, static: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<div *ngIf=\"tippyProperties\" [attr.id]=\"getIdButton()\"\n ngxTippy [tippyProps]=\"tippyProperties\"\n class=\"inline-flex items-center focus:bg-warning-base focus:outline-none focus:shadow-outline-focus focus:text-black\"\n tabindex=\"0\" role=\"button\"\n [attr.aria-labelledby]=\"getIdButton() + ' ' + getIdTooltip()\">\n <ng-container *desyCustomInnerContent=\"{ component: contentComponent, html: getMainContent() }\"></ng-container>\n <span *ngIf=\"hasContent && ( (iconComponent) || (icon) )\" class=\"inline-block w-1.5\"></span>\n <span *ngIf=\"iconComponent\" class=\"inline-block\">\n <ng-container *desyCustomInnerContent=\"{ component: iconComponent }\"></ng-container>\n\n <ng-container *ngIf=\"!hasIconComponentContent\">\n <ng-container [ngSwitch]=\"iconComponent.type\">\n <svg *ngSwitchCase=\"'info'\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 140 140\" width=\"1em\" height=\"1em\" class=\"w-4 h-4 text-primary-base\" role=\"img\" aria-label=\"Informaci\u00F3n\"><path d=\"M70 0a70 70 0 1070 70A70.08 70.08 0 0070 0zm7.5 105a7.5 7.5 0 01-15 0V70a7.5 7.5 0 0115 0zM70 50a10 10 0 1110-10 10 10 0 01-10 10z\" fill=\"currentColor\"/></svg>\n <svg *ngSwitchCase=\"'alert'\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 140 140\" width=\"1em\" height=\"1em\" class=\"w-4 h-4 text-alert-base\" role=\"img\" aria-label=\"Alerta\"><path d=\"M138.42 118.29l-55-110a15 15 0 00-26.84 0l-55 110A15 15 0 0015 140h110a15 15 0 0013.42-21.71zM62.5 50a7.5 7.5 0 0115 0v30a7.5 7.5 0 01-15 0zm7.5 70a10 10 0 1110-10 10 10 0 01-10 10z\" fill=\"currentColor\"/></svg>\n <svg *ngSwitchDefault xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 140 140\" width=\"1em\" height=\"1em\" class=\"w-4 h-4 text-primary-base\" role=\"img\" aria-label=\"Ayuda\"><path d=\"M70 0a70 70 0 1070 70A70.08 70.08 0 0070 0zm0 117.51a10 10 0 1110-10 10 10 0 01-10 10zm9.17-39.08a2.5 2.5 0 00-1.67 2.36v1.71a7.5 7.5 0 01-15 0v-10A7.5 7.5 0 0170 65a12.5 12.5 0 10-12.5-12.5 7.5 7.5 0 01-15 0 27.5 27.5 0 1136.67 25.93z\" fill=\"currentColor\"/></svg>\n </ng-container>\n </ng-container>\n </span>\n <span *ngIf=\"!iconComponent && icon\" class=\"inline-block\">\n <ng-container *desyCustomInnerContent=\"{ html: getIconContent(icon) }\"></ng-container>\n </span>\n</div>\n\n<div #tooltipContent [attr.id]=\"getIdTooltip()\"\n [class]=\"['-my-xs p-sm shadow-md bg-black rounded text-white', classesTooltip] | makeHtmlList\">\n <ng-container *desyCustomInnerContent=\"{ component: tooltipContentComponent, template: caller }\"></ng-container>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i1.NgSwitchDefault, selector: "[ngSwitchDefault]" }, { kind: "directive", type: i2.CustomInnerContentDirective, selector: "[desyCustomInnerContent]", inputs: ["desyCustomInnerContent"] }, { kind: "directive", type: i3.NgxTippyDirective, selector: "[ngxTippy]", inputs: ["ngxTippy", "tippyProps", "tippyName", "tippyClassName"] }, { kind: "pipe", type: i4.MakeHtmlListPipe, name: "makeHtmlList" }] });
116
116
  __decorate([
117
117
  DesyContentChild()
118
118
  ], TooltipComponent.prototype, "contentComponent", void 0);
@@ -122,7 +122,7 @@ __decorate([
122
122
  __decorate([
123
123
  DesyContentChild()
124
124
  ], TooltipComponent.prototype, "tooltipContentComponent", void 0);
125
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TooltipComponent, decorators: [{
125
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TooltipComponent, decorators: [{
126
126
  type: Component,
127
127
  args: [{ selector: 'desy-tooltip', template: "<div *ngIf=\"tippyProperties\" [attr.id]=\"getIdButton()\"\n ngxTippy [tippyProps]=\"tippyProperties\"\n class=\"inline-flex items-center focus:bg-warning-base focus:outline-none focus:shadow-outline-focus focus:text-black\"\n tabindex=\"0\" role=\"button\"\n [attr.aria-labelledby]=\"getIdButton() + ' ' + getIdTooltip()\">\n <ng-container *desyCustomInnerContent=\"{ component: contentComponent, html: getMainContent() }\"></ng-container>\n <span *ngIf=\"hasContent && ( (iconComponent) || (icon) )\" class=\"inline-block w-1.5\"></span>\n <span *ngIf=\"iconComponent\" class=\"inline-block\">\n <ng-container *desyCustomInnerContent=\"{ component: iconComponent }\"></ng-container>\n\n <ng-container *ngIf=\"!hasIconComponentContent\">\n <ng-container [ngSwitch]=\"iconComponent.type\">\n <svg *ngSwitchCase=\"'info'\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 140 140\" width=\"1em\" height=\"1em\" class=\"w-4 h-4 text-primary-base\" role=\"img\" aria-label=\"Informaci\u00F3n\"><path d=\"M70 0a70 70 0 1070 70A70.08 70.08 0 0070 0zm7.5 105a7.5 7.5 0 01-15 0V70a7.5 7.5 0 0115 0zM70 50a10 10 0 1110-10 10 10 0 01-10 10z\" fill=\"currentColor\"/></svg>\n <svg *ngSwitchCase=\"'alert'\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 140 140\" width=\"1em\" height=\"1em\" class=\"w-4 h-4 text-alert-base\" role=\"img\" aria-label=\"Alerta\"><path d=\"M138.42 118.29l-55-110a15 15 0 00-26.84 0l-55 110A15 15 0 0015 140h110a15 15 0 0013.42-21.71zM62.5 50a7.5 7.5 0 0115 0v30a7.5 7.5 0 01-15 0zm7.5 70a10 10 0 1110-10 10 10 0 01-10 10z\" fill=\"currentColor\"/></svg>\n <svg *ngSwitchDefault xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 140 140\" width=\"1em\" height=\"1em\" class=\"w-4 h-4 text-primary-base\" role=\"img\" aria-label=\"Ayuda\"><path d=\"M70 0a70 70 0 1070 70A70.08 70.08 0 0070 0zm0 117.51a10 10 0 1110-10 10 10 0 01-10 10zm9.17-39.08a2.5 2.5 0 00-1.67 2.36v1.71a7.5 7.5 0 01-15 0v-10A7.5 7.5 0 0170 65a12.5 12.5 0 10-12.5-12.5 7.5 7.5 0 01-15 0 27.5 27.5 0 1136.67 25.93z\" fill=\"currentColor\"/></svg>\n </ng-container>\n </ng-container>\n </span>\n <span *ngIf=\"!iconComponent && icon\" class=\"inline-block\">\n <ng-container *desyCustomInnerContent=\"{ html: getIconContent(icon) }\"></ng-container>\n </span>\n</div>\n\n<div #tooltipContent [attr.id]=\"getIdTooltip()\"\n [class]=\"['-my-xs p-sm shadow-md bg-black rounded text-white', classesTooltip] | makeHtmlList\">\n <ng-container *desyCustomInnerContent=\"{ component: tooltipContentComponent, template: caller }\"></ng-container>\n</div>\n" }]
128
128
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { contentComponent: [{
@@ -35,8 +35,8 @@ import { AccordionItemHideButtonComponent } from './components/accordion-history
35
35
  import * as i0 from "@angular/core";
36
36
  export class DesyViewsModule {
37
37
  }
38
- DesyViewsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: DesyViewsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
39
- DesyViewsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.7", ngImport: i0, type: DesyViewsModule, declarations: [AlertComponent,
38
+ DesyViewsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: DesyViewsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
39
+ DesyViewsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: DesyViewsModule, declarations: [AlertComponent,
40
40
  AccordionComponent,
41
41
  AccordionHeaderComponent,
42
42
  AccordionHistoryComponent,
@@ -95,12 +95,12 @@ DesyViewsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version
95
95
  PanelComponent,
96
96
  TabItemComponent,
97
97
  MediaObjectFigureComponent] });
98
- DesyViewsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: DesyViewsModule, imports: [CommonModule,
98
+ DesyViewsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: DesyViewsModule, imports: [CommonModule,
99
99
  SharedModule,
100
100
  DesyFormsModule,
101
101
  DesyCommonsModule,
102
102
  NgxTippyModule] });
103
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: DesyViewsModule, decorators: [{
103
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: DesyViewsModule, decorators: [{
104
104
  type: NgModule,
105
105
  args: [{
106
106
  declarations: [
@@ -77,9 +77,9 @@ export class AlertService {
77
77
  }
78
78
  }
79
79
  }
80
- AlertService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: AlertService, deps: [{ token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.Injectable });
81
- AlertService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: AlertService, providedIn: 'root' });
82
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: AlertService, decorators: [{
80
+ AlertService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AlertService, deps: [{ token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.Injectable });
81
+ AlertService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AlertService, providedIn: 'root' });
82
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AlertService, decorators: [{
83
83
  type: Injectable,
84
84
  args: [{
85
85
  providedIn: 'root'
@@ -5,9 +5,9 @@ import * as i0 from "@angular/core";
5
5
  */
6
6
  export class AccessibilityComponent {
7
7
  }
8
- AccessibilityComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: AccessibilityComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
9
- AccessibilityComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: AccessibilityComponent, selector: "desy-accessibility", inputs: { role: "role", ariaLabel: "ariaLabel", ariaDescribedBy: "ariaDescribedBy", ariaLabelledBy: "ariaLabelledBy", ariaHidden: "ariaHidden", ariaDisabled: "ariaDisabled", ariaControls: "ariaControls", ariaCurrent: "ariaCurrent", ariaLive: "ariaLive", ariaExpanded: "ariaExpanded", ariaErrorMessage: "ariaErrorMessage", ariaHasPopup: "ariaHasPopup", ariaModal: "ariaModal", tabindex: "tabindex" }, ngImport: i0, template: '<div></div>', isInline: true });
10
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: AccessibilityComponent, decorators: [{
8
+ AccessibilityComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AccessibilityComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
9
+ AccessibilityComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: AccessibilityComponent, selector: "desy-accessibility", inputs: { role: "role", ariaLabel: "ariaLabel", ariaDescribedBy: "ariaDescribedBy", ariaLabelledBy: "ariaLabelledBy", ariaHidden: "ariaHidden", ariaDisabled: "ariaDisabled", ariaControls: "ariaControls", ariaCurrent: "ariaCurrent", ariaLive: "ariaLive", ariaExpanded: "ariaExpanded", ariaErrorMessage: "ariaErrorMessage", ariaHasPopup: "ariaHasPopup", ariaModal: "ariaModal", tabindex: "tabindex" }, ngImport: i0, template: '<div></div>', isInline: true });
10
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AccessibilityComponent, decorators: [{
11
11
  type: Component,
12
12
  args: [{
13
13
  selector: 'desy-accessibility',
@@ -2,9 +2,9 @@ import { Component, Input } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export class AccessibilityAndContentRequiredComponent {
4
4
  }
5
- AccessibilityAndContentRequiredComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: AccessibilityAndContentRequiredComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
6
- AccessibilityAndContentRequiredComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: AccessibilityAndContentRequiredComponent, selector: "desy-accessibility-and-content-required", inputs: { html: "html", text: "text", role: "role", ariaLabel: "ariaLabel", ariaDescribedBy: "ariaDescribedBy", ariaLabelledBy: "ariaLabelledBy", ariaHidden: "ariaHidden", ariaDisabled: "ariaDisabled", ariaControls: "ariaControls", ariaCurrent: "ariaCurrent", ariaLive: "ariaLive", ariaExpanded: "ariaExpanded", ariaErrorMessage: "ariaErrorMessage", ariaHasPopup: "ariaHasPopup", tabindex: "tabindex" }, ngImport: i0, template: '<div></div>', isInline: true });
7
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: AccessibilityAndContentRequiredComponent, decorators: [{
5
+ AccessibilityAndContentRequiredComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AccessibilityAndContentRequiredComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
6
+ AccessibilityAndContentRequiredComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: AccessibilityAndContentRequiredComponent, selector: "desy-accessibility-and-content-required", inputs: { html: "html", text: "text", role: "role", ariaLabel: "ariaLabel", ariaDescribedBy: "ariaDescribedBy", ariaLabelledBy: "ariaLabelledBy", ariaHidden: "ariaHidden", ariaDisabled: "ariaDisabled", ariaControls: "ariaControls", ariaCurrent: "ariaCurrent", ariaLive: "ariaLive", ariaExpanded: "ariaExpanded", ariaErrorMessage: "ariaErrorMessage", ariaHasPopup: "ariaHasPopup", tabindex: "tabindex" }, ngImport: i0, template: '<div></div>', isInline: true });
7
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AccessibilityAndContentRequiredComponent, decorators: [{
8
8
  type: Component,
9
9
  args: [{
10
10
  selector: 'desy-accessibility-and-content-required',
@@ -3,9 +3,9 @@ import { TextOrHtmlRequiredComponent } from '../text-or-html-required/text-or-ht
3
3
  import * as i0 from "@angular/core";
4
4
  export class AccessibilityAndTextOrHtmlRequiredComponent extends TextOrHtmlRequiredComponent {
5
5
  }
6
- AccessibilityAndTextOrHtmlRequiredComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: AccessibilityAndTextOrHtmlRequiredComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
7
- AccessibilityAndTextOrHtmlRequiredComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: AccessibilityAndTextOrHtmlRequiredComponent, selector: "desy-accessibility-and-text-or-html-required", inputs: { role: "role", ariaLabel: "ariaLabel", ariaDescribedBy: "ariaDescribedBy", ariaLabelledBy: "ariaLabelledBy", ariaHidden: "ariaHidden", ariaDisabled: "ariaDisabled", ariaControls: "ariaControls", ariaCurrent: "ariaCurrent", ariaLive: "ariaLive", ariaExpanded: "ariaExpanded", ariaErrorMessage: "ariaErrorMessage", ariaHasPopup: "ariaHasPopup", tabindex: "tabindex" }, usesInheritance: true, ngImport: i0, template: '<div></div>', isInline: true });
8
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: AccessibilityAndTextOrHtmlRequiredComponent, decorators: [{
6
+ AccessibilityAndTextOrHtmlRequiredComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AccessibilityAndTextOrHtmlRequiredComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
7
+ AccessibilityAndTextOrHtmlRequiredComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: AccessibilityAndTextOrHtmlRequiredComponent, selector: "desy-accessibility-and-text-or-html-required", inputs: { role: "role", ariaLabel: "ariaLabel", ariaDescribedBy: "ariaDescribedBy", ariaLabelledBy: "ariaLabelledBy", ariaHidden: "ariaHidden", ariaDisabled: "ariaDisabled", ariaControls: "ariaControls", ariaCurrent: "ariaCurrent", ariaLive: "ariaLive", ariaExpanded: "ariaExpanded", ariaErrorMessage: "ariaErrorMessage", ariaHasPopup: "ariaHasPopup", tabindex: "tabindex" }, usesInheritance: true, ngImport: i0, template: '<div></div>', isInline: true });
8
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AccessibilityAndTextOrHtmlRequiredComponent, decorators: [{
9
9
  type: Component,
10
10
  args: [{
11
11
  selector: 'desy-accessibility-and-text-or-html-required',
@@ -9,9 +9,9 @@ export class ContentBaseComponent extends AccessibilityComponent {
9
9
  return this.content;
10
10
  }
11
11
  }
12
- ContentBaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: ContentBaseComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
13
- ContentBaseComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: ContentBaseComponent, selector: "desy-content-base", viewQueries: [{ propertyName: "content", first: true, predicate: ["contentTemplate"], descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: '<ng-template #contentTemplate><ng-content></ng-content></ng-template>', isInline: true });
14
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: ContentBaseComponent, decorators: [{
12
+ ContentBaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ContentBaseComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
13
+ ContentBaseComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: ContentBaseComponent, selector: "desy-content-base", viewQueries: [{ propertyName: "content", first: true, predicate: ["contentTemplate"], descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: '<ng-template #contentTemplate><ng-content></ng-content></ng-template>', isInline: true });
14
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ContentBaseComponent, decorators: [{
15
15
  type: Component,
16
16
  args: [{
17
17
  selector: 'desy-content-base',
@@ -2,9 +2,9 @@ import { Component, Input } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export class TextOrHtmlRequiredComponent {
4
4
  }
5
- TextOrHtmlRequiredComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TextOrHtmlRequiredComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
6
- TextOrHtmlRequiredComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: TextOrHtmlRequiredComponent, selector: "desy-text-or-html-required", inputs: { text: "text", html: "html" }, ngImport: i0, template: '<div></div>', isInline: true });
7
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TextOrHtmlRequiredComponent, decorators: [{
5
+ TextOrHtmlRequiredComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TextOrHtmlRequiredComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
6
+ TextOrHtmlRequiredComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: TextOrHtmlRequiredComponent, selector: "desy-text-or-html-required", inputs: { text: "text", html: "html" }, ngImport: i0, template: '<div></div>', isInline: true });
7
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TextOrHtmlRequiredComponent, decorators: [{
8
8
  type: Component,
9
9
  args: [{
10
10
  selector: 'desy-text-or-html-required',
@@ -5,32 +5,35 @@ export class AttributeChangeDirective {
5
5
  this.elementRef = elementRef;
6
6
  this.desyAttributeChange = new EventEmitter();
7
7
  this.desyAttributeChangeMutation = new EventEmitter();
8
+ this.desyAttributeChangeEnabled = true;
8
9
  const element = this.elementRef.nativeElement;
9
- this.changes = new MutationObserver((mutations) => {
10
- mutations.forEach((mutation) => {
11
- if (this.attributesToCheck) {
12
- const attrs = typeof (this.attributesToCheck) === 'string' ? [this.attributesToCheck] : this.attributesToCheck;
13
- if (attrs.findIndex(v => v === mutation.attributeName) >= 0) {
14
- this.desyAttributeChange.emit(this.elementRef.nativeElement.innerHTML);
15
- this.desyAttributeChangeMutation.emit(mutation);
10
+ if (this.desyAttributeChangeEnabled) {
11
+ this.changes = new MutationObserver((mutations) => {
12
+ mutations.forEach((mutation) => {
13
+ if (this.attributesToCheck) {
14
+ const attrs = typeof (this.attributesToCheck) === 'string' ? [this.attributesToCheck] : this.attributesToCheck;
15
+ if (attrs.findIndex(v => v === mutation.attributeName) >= 0) {
16
+ this.desyAttributeChange.emit(this.elementRef.nativeElement.innerHTML);
17
+ this.desyAttributeChangeMutation.emit(mutation);
18
+ }
16
19
  }
17
- }
20
+ });
18
21
  });
19
- });
20
- this.changes.observe(element, {
21
- attributes: true,
22
- childList: false,
23
- characterData: false,
24
- subtree: false
25
- });
22
+ this.changes.observe(element, {
23
+ attributes: true,
24
+ childList: false,
25
+ characterData: false,
26
+ subtree: false
27
+ });
28
+ }
26
29
  }
27
30
  ngOnDestroy() {
28
31
  this.changes.disconnect();
29
32
  }
30
33
  }
31
- AttributeChangeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: AttributeChangeDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
32
- AttributeChangeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: AttributeChangeDirective, selector: "[desyAttributeChange]", inputs: { attributesToCheck: "attributesToCheck" }, outputs: { desyAttributeChange: "desyAttributeChange", desyAttributeChangeMutation: "desyAttributeChangeMutation" }, ngImport: i0 });
33
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: AttributeChangeDirective, decorators: [{
34
+ AttributeChangeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AttributeChangeDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
35
+ AttributeChangeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: AttributeChangeDirective, selector: "[desyAttributeChange]", inputs: { attributesToCheck: "attributesToCheck", desyAttributeChangeEnabled: "desyAttributeChangeEnabled" }, outputs: { desyAttributeChange: "desyAttributeChange", desyAttributeChangeMutation: "desyAttributeChangeMutation" }, ngImport: i0 });
36
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AttributeChangeDirective, decorators: [{
34
37
  type: Directive,
35
38
  args: [{
36
39
  selector: '[desyAttributeChange]'
@@ -41,5 +44,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImpor
41
44
  type: Output
42
45
  }], desyAttributeChangeMutation: [{
43
46
  type: Output
47
+ }], desyAttributeChangeEnabled: [{
48
+ type: Input
44
49
  }] } });
45
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXR0cmlidXRlLWNoYW5nZS5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9kZXN5LWFuZ3VsYXIvc3JjL2xpYi9zaGFyZWQvZGlyZWN0aXZlcy9hdHRyaWJ1dGUtY2hhbmdlLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsU0FBUyxFQUFjLFlBQVksRUFBRSxLQUFLLEVBQWEsTUFBTSxFQUFDLE1BQU0sZUFBZSxDQUFDOztBQUs1RixNQUFNLE9BQU8sd0JBQXdCO0lBWW5DLFlBQW9CLFVBQXNCO1FBQXRCLGVBQVUsR0FBVixVQUFVLENBQVk7UUFMbkMsd0JBQW1CLEdBQUcsSUFBSSxZQUFZLEVBQUUsQ0FBQztRQUd6QyxnQ0FBMkIsR0FBRyxJQUFJLFlBQVksRUFBRSxDQUFDO1FBR3RELE1BQU0sT0FBTyxHQUFHLElBQUksQ0FBQyxVQUFVLENBQUMsYUFBYSxDQUFDO1FBRTlDLElBQUksQ0FBQyxPQUFPLEdBQUcsSUFBSSxnQkFBZ0IsQ0FBQyxDQUFDLFNBQTJCLEVBQUUsRUFBRTtZQUNoRSxTQUFTLENBQUMsT0FBTyxDQUFDLENBQUMsUUFBd0IsRUFBRSxFQUFFO2dCQUM3QyxJQUFJLElBQUksQ0FBQyxpQkFBaUIsRUFBRTtvQkFDMUIsTUFBTSxLQUFLLEdBQUcsT0FBTyxDQUFDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxLQUFLLFFBQVEsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsaUJBQWlCLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLGlCQUFpQixDQUFDO29CQUMvRyxJQUFJLEtBQUssQ0FBQyxTQUFTLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLEtBQUssUUFBUSxDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsRUFBRTt3QkFDM0QsSUFBSSxDQUFDLG1CQUFtQixDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsVUFBVSxDQUFDLGFBQWEsQ0FBQyxTQUFTLENBQUMsQ0FBQzt3QkFDdkUsSUFBSSxDQUFDLDJCQUEyQixDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQztxQkFDakQ7aUJBQ0Y7WUFDSCxDQUFDLENBQUMsQ0FBQztRQUNMLENBQUMsQ0FDRixDQUFDO1FBRUYsSUFBSSxDQUFDLE9BQU8sQ0FBQyxPQUFPLENBQUMsT0FBTyxFQUFFO1lBQzVCLFVBQVUsRUFBRSxJQUFJO1lBQ2hCLFNBQVMsRUFBRSxLQUFLO1lBQ2hCLGFBQWEsRUFBRSxLQUFLO1lBQ3BCLE9BQU8sRUFBRSxLQUFLO1NBQ2YsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUVELFdBQVc7UUFDVCxJQUFJLENBQUMsT0FBTyxDQUFDLFVBQVUsRUFBRSxDQUFDO0lBQzVCLENBQUM7O3FIQXRDVSx3QkFBd0I7eUdBQXhCLHdCQUF3QjsyRkFBeEIsd0JBQXdCO2tCQUhwQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSx1QkFBdUI7aUJBQ2xDO2lHQUtVLGlCQUFpQjtzQkFBekIsS0FBSztnQkFHQyxtQkFBbUI7c0JBRHpCLE1BQU07Z0JBSUEsMkJBQTJCO3NCQURqQyxNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtEaXJlY3RpdmUsIEVsZW1lbnRSZWYsIEV2ZW50RW1pdHRlciwgSW5wdXQsIE9uRGVzdHJveSwgT3V0cHV0fSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiAnW2Rlc3lBdHRyaWJ1dGVDaGFuZ2VdJ1xufSlcbmV4cG9ydCBjbGFzcyBBdHRyaWJ1dGVDaGFuZ2VEaXJlY3RpdmUgaW1wbGVtZW50cyBPbkRlc3Ryb3kge1xuXG4gIHByaXZhdGUgY2hhbmdlczogTXV0YXRpb25PYnNlcnZlcjtcblxuICBASW5wdXQoKSBhdHRyaWJ1dGVzVG9DaGVjazogc3RyaW5nfHN0cmluZ1tdO1xuXG4gIEBPdXRwdXQoKVxuICBwdWJsaWMgZGVzeUF0dHJpYnV0ZUNoYW5nZSA9IG5ldyBFdmVudEVtaXR0ZXIoKTtcblxuICBAT3V0cHV0KClcbiAgcHVibGljIGRlc3lBdHRyaWJ1dGVDaGFuZ2VNdXRhdGlvbiA9IG5ldyBFdmVudEVtaXR0ZXIoKTtcblxuICBjb25zdHJ1Y3Rvcihwcml2YXRlIGVsZW1lbnRSZWY6IEVsZW1lbnRSZWYpIHtcbiAgICBjb25zdCBlbGVtZW50ID0gdGhpcy5lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQ7XG5cbiAgICB0aGlzLmNoYW5nZXMgPSBuZXcgTXV0YXRpb25PYnNlcnZlcigobXV0YXRpb25zOiBNdXRhdGlvblJlY29yZFtdKSA9PiB7XG4gICAgICAgIG11dGF0aW9ucy5mb3JFYWNoKChtdXRhdGlvbjogTXV0YXRpb25SZWNvcmQpID0+IHtcbiAgICAgICAgICBpZiAodGhpcy5hdHRyaWJ1dGVzVG9DaGVjaykge1xuICAgICAgICAgICAgY29uc3QgYXR0cnMgPSB0eXBlb2YgKHRoaXMuYXR0cmlidXRlc1RvQ2hlY2spID09PSAnc3RyaW5nJyA/IFt0aGlzLmF0dHJpYnV0ZXNUb0NoZWNrXSA6IHRoaXMuYXR0cmlidXRlc1RvQ2hlY2s7XG4gICAgICAgICAgICBpZiAoYXR0cnMuZmluZEluZGV4KHYgPT4gdiA9PT0gbXV0YXRpb24uYXR0cmlidXRlTmFtZSkgPj0gMCkge1xuICAgICAgICAgICAgICB0aGlzLmRlc3lBdHRyaWJ1dGVDaGFuZ2UuZW1pdCh0aGlzLmVsZW1lbnRSZWYubmF0aXZlRWxlbWVudC5pbm5lckhUTUwpO1xuICAgICAgICAgICAgICB0aGlzLmRlc3lBdHRyaWJ1dGVDaGFuZ2VNdXRhdGlvbi5lbWl0KG11dGF0aW9uKTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgICB9XG4gICAgICAgIH0pO1xuICAgICAgfVxuICAgICk7XG5cbiAgICB0aGlzLmNoYW5nZXMub2JzZXJ2ZShlbGVtZW50LCB7XG4gICAgICBhdHRyaWJ1dGVzOiB0cnVlLFxuICAgICAgY2hpbGRMaXN0OiBmYWxzZSxcbiAgICAgIGNoYXJhY3RlckRhdGE6IGZhbHNlLFxuICAgICAgc3VidHJlZTogZmFsc2VcbiAgICB9KTtcbiAgfVxuXG4gIG5nT25EZXN0cm95KCk6IHZvaWQge1xuICAgIHRoaXMuY2hhbmdlcy5kaXNjb25uZWN0KCk7XG4gIH1cbn1cbiJdfQ==
50
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXR0cmlidXRlLWNoYW5nZS5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9kZXN5LWFuZ3VsYXIvc3JjL2xpYi9zaGFyZWQvZGlyZWN0aXZlcy9hdHRyaWJ1dGUtY2hhbmdlLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsU0FBUyxFQUFjLFlBQVksRUFBRSxLQUFLLEVBQXdCLE1BQU0sRUFBZ0IsTUFBTSxlQUFlLENBQUM7O0FBS3RILE1BQU0sT0FBTyx3QkFBd0I7SUFlbkMsWUFBb0IsVUFBc0I7UUFBdEIsZUFBVSxHQUFWLFVBQVUsQ0FBWTtRQVJuQyx3QkFBbUIsR0FBRyxJQUFJLFlBQVksRUFBRSxDQUFDO1FBR3pDLGdDQUEyQixHQUFHLElBQUksWUFBWSxFQUFFLENBQUM7UUFFL0MsK0JBQTBCLEdBQUcsSUFBSSxDQUFDO1FBSXpDLE1BQU0sT0FBTyxHQUFHLElBQUksQ0FBQyxVQUFVLENBQUMsYUFBYSxDQUFDO1FBRTlDLElBQUksSUFBSSxDQUFDLDBCQUEwQixFQUFFO1lBQ25DLElBQUksQ0FBQyxPQUFPLEdBQUcsSUFBSSxnQkFBZ0IsQ0FBQyxDQUFDLFNBQTJCLEVBQUUsRUFBRTtnQkFDaEUsU0FBUyxDQUFDLE9BQU8sQ0FBQyxDQUFDLFFBQXdCLEVBQUUsRUFBRTtvQkFDN0MsSUFBSSxJQUFJLENBQUMsaUJBQWlCLEVBQUU7d0JBQzFCLE1BQU0sS0FBSyxHQUFHLE9BQU8sQ0FBQyxJQUFJLENBQUMsaUJBQWlCLENBQUMsS0FBSyxRQUFRLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLGlCQUFpQixDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQzt3QkFDL0csSUFBSSxLQUFLLENBQUMsU0FBUyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxLQUFLLFFBQVEsQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLEVBQUU7NEJBQzNELElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxhQUFhLENBQUMsU0FBUyxDQUFDLENBQUM7NEJBQ3ZFLElBQUksQ0FBQywyQkFBMkIsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUM7eUJBQ2pEO3FCQUNGO2dCQUNILENBQUMsQ0FBQyxDQUFDO1lBQ0wsQ0FBQyxDQUNGLENBQUM7WUFFRixJQUFJLENBQUMsT0FBTyxDQUFDLE9BQU8sQ0FBQyxPQUFPLEVBQUU7Z0JBQzVCLFVBQVUsRUFBRSxJQUFJO2dCQUNoQixTQUFTLEVBQUUsS0FBSztnQkFDaEIsYUFBYSxFQUFFLEtBQUs7Z0JBQ3BCLE9BQU8sRUFBRSxLQUFLO2FBQ2YsQ0FBQyxDQUFDO1NBQ0o7SUFDSCxDQUFDO0lBRUQsV0FBVztRQUNULElBQUksQ0FBQyxPQUFPLENBQUMsVUFBVSxFQUFFLENBQUM7SUFDNUIsQ0FBQzs7cUhBM0NVLHdCQUF3Qjt5R0FBeEIsd0JBQXdCOzJGQUF4Qix3QkFBd0I7a0JBSHBDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLHVCQUF1QjtpQkFDbEM7aUdBS1UsaUJBQWlCO3NCQUF6QixLQUFLO2dCQUdDLG1CQUFtQjtzQkFEekIsTUFBTTtnQkFJQSwyQkFBMkI7c0JBRGpDLE1BQU07Z0JBR0UsMEJBQTBCO3NCQUFsQyxLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtEaXJlY3RpdmUsIEVsZW1lbnRSZWYsIEV2ZW50RW1pdHRlciwgSW5wdXQsIE9uQ2hhbmdlcywgT25EZXN0cm95LCBPdXRwdXQsIFNpbXBsZUNoYW5nZXN9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbZGVzeUF0dHJpYnV0ZUNoYW5nZV0nXG59KVxuZXhwb3J0IGNsYXNzIEF0dHJpYnV0ZUNoYW5nZURpcmVjdGl2ZSBpbXBsZW1lbnRzIE9uRGVzdHJveSB7XG5cbiAgcHJpdmF0ZSBjaGFuZ2VzOiBNdXRhdGlvbk9ic2VydmVyO1xuXG4gIEBJbnB1dCgpIGF0dHJpYnV0ZXNUb0NoZWNrOiBzdHJpbmd8c3RyaW5nW107XG5cbiAgQE91dHB1dCgpXG4gIHB1YmxpYyBkZXN5QXR0cmlidXRlQ2hhbmdlID0gbmV3IEV2ZW50RW1pdHRlcigpO1xuXG4gIEBPdXRwdXQoKVxuICBwdWJsaWMgZGVzeUF0dHJpYnV0ZUNoYW5nZU11dGF0aW9uID0gbmV3IEV2ZW50RW1pdHRlcigpO1xuXG4gIEBJbnB1dCgpIGRlc3lBdHRyaWJ1dGVDaGFuZ2VFbmFibGVkID0gdHJ1ZTtcblxuXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgZWxlbWVudFJlZjogRWxlbWVudFJlZikge1xuICAgIGNvbnN0IGVsZW1lbnQgPSB0aGlzLmVsZW1lbnRSZWYubmF0aXZlRWxlbWVudDtcblxuICAgIGlmICh0aGlzLmRlc3lBdHRyaWJ1dGVDaGFuZ2VFbmFibGVkKSB7XG4gICAgICB0aGlzLmNoYW5nZXMgPSBuZXcgTXV0YXRpb25PYnNlcnZlcigobXV0YXRpb25zOiBNdXRhdGlvblJlY29yZFtdKSA9PiB7XG4gICAgICAgICAgbXV0YXRpb25zLmZvckVhY2goKG11dGF0aW9uOiBNdXRhdGlvblJlY29yZCkgPT4ge1xuICAgICAgICAgICAgaWYgKHRoaXMuYXR0cmlidXRlc1RvQ2hlY2spIHtcbiAgICAgICAgICAgICAgY29uc3QgYXR0cnMgPSB0eXBlb2YgKHRoaXMuYXR0cmlidXRlc1RvQ2hlY2spID09PSAnc3RyaW5nJyA/IFt0aGlzLmF0dHJpYnV0ZXNUb0NoZWNrXSA6IHRoaXMuYXR0cmlidXRlc1RvQ2hlY2s7XG4gICAgICAgICAgICAgIGlmIChhdHRycy5maW5kSW5kZXgodiA9PiB2ID09PSBtdXRhdGlvbi5hdHRyaWJ1dGVOYW1lKSA+PSAwKSB7XG4gICAgICAgICAgICAgICAgdGhpcy5kZXN5QXR0cmlidXRlQ2hhbmdlLmVtaXQodGhpcy5lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQuaW5uZXJIVE1MKTtcbiAgICAgICAgICAgICAgICB0aGlzLmRlc3lBdHRyaWJ1dGVDaGFuZ2VNdXRhdGlvbi5lbWl0KG11dGF0aW9uKTtcbiAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgfVxuICAgICAgICAgIH0pO1xuICAgICAgICB9XG4gICAgICApO1xuICBcbiAgICAgIHRoaXMuY2hhbmdlcy5vYnNlcnZlKGVsZW1lbnQsIHtcbiAgICAgICAgYXR0cmlidXRlczogdHJ1ZSxcbiAgICAgICAgY2hpbGRMaXN0OiBmYWxzZSxcbiAgICAgICAgY2hhcmFjdGVyRGF0YTogZmFsc2UsXG4gICAgICAgIHN1YnRyZWU6IGZhbHNlXG4gICAgICB9KTtcbiAgICB9XG4gIH1cblxuICBuZ09uRGVzdHJveSgpOiB2b2lkIHtcbiAgICB0aGlzLmNoYW5nZXMuZGlzY29ubmVjdCgpO1xuICB9XG59XG4iXX0=
@@ -19,9 +19,9 @@ export class ClickOutsideDirective {
19
19
  }
20
20
  }
21
21
  }
22
- ClickOutsideDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: ClickOutsideDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
23
- ClickOutsideDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: ClickOutsideDirective, selector: "[desyClickOutside]", inputs: { active: ["desyClickOutside", "active"], desyClickOutsideElem: "desyClickOutsideElem" }, outputs: { clickOutside: "clickOutside" }, host: { listeners: { "document:click": "onClick($event.target)" } }, ngImport: i0 });
24
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: ClickOutsideDirective, decorators: [{
22
+ ClickOutsideDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ClickOutsideDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
23
+ ClickOutsideDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: ClickOutsideDirective, selector: "[desyClickOutside]", inputs: { active: ["desyClickOutside", "active"], desyClickOutsideElem: "desyClickOutsideElem" }, outputs: { clickOutside: "clickOutside" }, host: { listeners: { "document:click": "onClick($event.target)" } }, ngImport: i0 });
24
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ClickOutsideDirective, decorators: [{
25
25
  type: Directive,
26
26
  args: [{
27
27
  selector: '[desyClickOutside]'
@@ -28,9 +28,9 @@ export class ContentChangeDirective {
28
28
  this.changes.disconnect();
29
29
  }
30
30
  }
31
- ContentChangeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: ContentChangeDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
32
- ContentChangeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: ContentChangeDirective, selector: "[desyContentChange]", inputs: { observeProperties: "observeProperties" }, outputs: { desyContentChange: "desyContentChange", desyContentChangeMutation: "desyContentChangeMutation" }, ngImport: i0 });
33
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: ContentChangeDirective, decorators: [{
31
+ ContentChangeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ContentChangeDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
32
+ ContentChangeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: ContentChangeDirective, selector: "[desyContentChange]", inputs: { observeProperties: "observeProperties" }, outputs: { desyContentChange: "desyContentChange", desyContentChangeMutation: "desyContentChangeMutation" }, ngImport: i0 });
33
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ContentChangeDirective, decorators: [{
34
34
  type: Directive,
35
35
  args: [{
36
36
  selector: '[desyContentChange]'
@@ -47,9 +47,9 @@ export class CustomInnerContentDirective {
47
47
  }
48
48
  }
49
49
  }
50
- CustomInnerContentDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: CustomInnerContentDirective, deps: [{ token: i0.ViewContainerRef }, { token: i0.ComponentFactoryResolver }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Directive });
51
- CustomInnerContentDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: CustomInnerContentDirective, selector: "[desyCustomInnerContent]", inputs: { desyCustomInnerContent: "desyCustomInnerContent" }, usesOnChanges: true, ngImport: i0 });
52
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: CustomInnerContentDirective, decorators: [{
50
+ CustomInnerContentDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: CustomInnerContentDirective, deps: [{ token: i0.ViewContainerRef }, { token: i0.ComponentFactoryResolver }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Directive });
51
+ CustomInnerContentDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: CustomInnerContentDirective, selector: "[desyCustomInnerContent]", inputs: { desyCustomInnerContent: "desyCustomInnerContent" }, usesOnChanges: true, ngImport: i0 });
52
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: CustomInnerContentDirective, decorators: [{
53
53
  type: Directive,
54
54
  args: [{
55
55
  selector: '[desyCustomInnerContent]'
@@ -19,9 +19,9 @@ export class InnerContentDirective {
19
19
  }
20
20
  }
21
21
  }
22
- InnerContentDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: InnerContentDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
23
- InnerContentDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: InnerContentDirective, selector: "[desyInnerContent]", inputs: { content: ["desyInnerContent", "content"], isHtml: "isHtml", deleteContentIfEmpty: "deleteContentIfEmpty" }, usesOnChanges: true, ngImport: i0 });
24
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: InnerContentDirective, decorators: [{
22
+ InnerContentDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: InnerContentDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
23
+ InnerContentDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: InnerContentDirective, selector: "[desyInnerContent]", inputs: { content: ["desyInnerContent", "content"], isHtml: "isHtml", deleteContentIfEmpty: "deleteContentIfEmpty" }, usesOnChanges: true, ngImport: i0 });
24
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: InnerContentDirective, decorators: [{
25
25
  type: Directive,
26
26
  args: [{
27
27
  selector: '[desyInnerContent]'