@ethlete/cdk 4.14.5 → 4.16.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 (271) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/esm2022/index.mjs +2 -1
  3. package/esm2022/lib/components/accordion/components/accordion/accordion.component.mjs +3 -3
  4. package/esm2022/lib/components/accordion/components/accordion-group/accordion-group.component.mjs +3 -3
  5. package/esm2022/lib/components/accordion/partials/accordion-hint/accordion-hint.directive.mjs +3 -3
  6. package/esm2022/lib/components/accordion/partials/accordion-hint-wrapper/accordion-hint-wrapper.directive.mjs +3 -3
  7. package/esm2022/lib/components/accordion/partials/accordion-label/accordion-label.directive.mjs +3 -3
  8. package/esm2022/lib/components/accordion/partials/accordion-label-wrapper/accordion-label-wrapper.directive.mjs +3 -3
  9. package/esm2022/lib/components/bracket/components/bracket/bracket.component.mjs +3 -3
  10. package/esm2022/lib/components/bracket/directives/bracket-match/bracket-match.directive.mjs +3 -3
  11. package/esm2022/lib/components/bracket/directives/bracket-round/bracket-round.directive.mjs +3 -3
  12. package/esm2022/lib/components/bracket/partials/bracket-match/bracket-match.component.mjs +3 -3
  13. package/esm2022/lib/components/bracket/partials/bracket-round-header/bracket-round-header.component.mjs +3 -3
  14. package/esm2022/lib/components/button/components/button/button.component.mjs +3 -3
  15. package/esm2022/lib/components/button/components/query-button/query-button.component.mjs +3 -3
  16. package/esm2022/lib/components/button/directives/button/button.directive.mjs +3 -3
  17. package/esm2022/lib/components/button/directives/query-button/query-button.directive.mjs +3 -3
  18. package/esm2022/lib/components/carousel/carousel.component.mjs +51 -0
  19. package/esm2022/lib/components/carousel/carousel.directive.mjs +150 -0
  20. package/esm2022/lib/components/carousel/carousel.imports.mjs +12 -0
  21. package/esm2022/lib/components/carousel/controls/carousel-item-nav.component.mjs +65 -0
  22. package/esm2022/lib/components/carousel/controls/carousel-item-nav.directive.mjs +40 -0
  23. package/esm2022/lib/components/carousel/controls/carousel-next-button.directive.mjs +45 -0
  24. package/esm2022/lib/components/carousel/controls/carousel-previous-button.directive.mjs +45 -0
  25. package/esm2022/lib/components/carousel/controls/carousel-toggle-auto-play-button.directive.mjs +43 -0
  26. package/esm2022/lib/components/carousel/controls/index.mjs +6 -0
  27. package/esm2022/lib/components/carousel/et-carousel-item.component.mjs +24 -0
  28. package/esm2022/lib/components/carousel/et-carousel-item.directive.mjs +45 -0
  29. package/esm2022/lib/components/carousel/public-api/index.mjs +7 -0
  30. package/esm2022/lib/components/filter/rich-filter/components/rich-filter-host/rich-filter-host.component.mjs +3 -3
  31. package/esm2022/lib/components/filter/rich-filter/directives/rich-filter-button/rich-filter-button.directive.mjs +3 -3
  32. package/esm2022/lib/components/filter/rich-filter/directives/rich-filter-button-slot/rich-filter-button-slot.directive.mjs +3 -3
  33. package/esm2022/lib/components/filter/rich-filter/directives/rich-filter-content/rich-filter-content.directive.mjs +3 -3
  34. package/esm2022/lib/components/filter/rich-filter/directives/rich-filter-top/rich-filter-top.directive.mjs +3 -3
  35. package/esm2022/lib/components/forms/components/checkbox/components/checkbox/checkbox.component.mjs +3 -3
  36. package/esm2022/lib/components/forms/components/checkbox/components/checkbox-field/checkbox-field.component.mjs +3 -3
  37. package/esm2022/lib/components/forms/components/checkbox/components/checkbox-group/checkbox-group.component.mjs +3 -3
  38. package/esm2022/lib/components/forms/components/checkbox/directives/checkbox/checkbox.directive.mjs +3 -3
  39. package/esm2022/lib/components/forms/components/checkbox/directives/checkbox-field/checkbox-field.directive.mjs +3 -3
  40. package/esm2022/lib/components/forms/components/checkbox/directives/checkbox-group/checkbox-group.directive.mjs +3 -3
  41. package/esm2022/lib/components/forms/components/checkbox/directives/checkbox-group-control/checkbox-group-control.directive.mjs +3 -3
  42. package/esm2022/lib/components/forms/components/error/components/error/error.component.mjs +3 -3
  43. package/esm2022/lib/components/forms/components/input/components/date-input/date-input.component.mjs +3 -3
  44. package/esm2022/lib/components/forms/components/input/components/date-time-input/date-time-input.component.mjs +3 -3
  45. package/esm2022/lib/components/forms/components/input/components/email-input/email-input.component.mjs +3 -3
  46. package/esm2022/lib/components/forms/components/input/components/input-field/input-field.component.mjs +3 -3
  47. package/esm2022/lib/components/forms/components/input/components/number-input/number-input.component.mjs +3 -3
  48. package/esm2022/lib/components/forms/components/input/components/password-input/password-input.component.mjs +3 -3
  49. package/esm2022/lib/components/forms/components/input/components/search-input/search-input.component.mjs +3 -3
  50. package/esm2022/lib/components/forms/components/input/components/text-input/text-input.component.mjs +3 -3
  51. package/esm2022/lib/components/forms/components/input/components/textarea-input/textarea-input.component.mjs +3 -3
  52. package/esm2022/lib/components/forms/components/input/directives/autosize-textarea/autosize-textarea.directive.mjs +3 -3
  53. package/esm2022/lib/components/forms/components/input/directives/date-input/date-input.directive.mjs +3 -3
  54. package/esm2022/lib/components/forms/components/input/directives/date-time-input/date-time-input.directive.mjs +3 -3
  55. package/esm2022/lib/components/forms/components/input/directives/email-input/email-input.directive.mjs +3 -3
  56. package/esm2022/lib/components/forms/components/input/directives/if-supports-show-picker/if-supports-show-picker.directive.mjs +3 -3
  57. package/esm2022/lib/components/forms/components/input/directives/number-input/number-input.directive.mjs +3 -3
  58. package/esm2022/lib/components/forms/components/input/directives/password-input/password-input.directive.mjs +3 -3
  59. package/esm2022/lib/components/forms/components/input/directives/search-input/search-input.directive.mjs +3 -3
  60. package/esm2022/lib/components/forms/components/input/directives/show-picker-trigger/show-picker-trigger.directive.mjs +3 -3
  61. package/esm2022/lib/components/forms/components/input/directives/text-input/text-input.directive.mjs +3 -3
  62. package/esm2022/lib/components/forms/components/input/directives/textarea-input/textarea-input.directive.mjs +3 -3
  63. package/esm2022/lib/components/forms/components/input/partials/password-input-toggle/password-input-toggle.component.mjs +3 -3
  64. package/esm2022/lib/components/forms/components/input/partials/search-input-clear/search-input-clear.component.mjs +3 -3
  65. package/esm2022/lib/components/forms/components/label/components/label/label.component.mjs +3 -3
  66. package/esm2022/lib/components/forms/components/label/directives/label-suffix/label-suffix.directive.mjs +3 -3
  67. package/esm2022/lib/components/forms/components/radio/components/radio/radio.component.mjs +3 -3
  68. package/esm2022/lib/components/forms/components/radio/components/radio-field/radio-field.component.mjs +3 -3
  69. package/esm2022/lib/components/forms/components/radio/components/radio-group/radio-group.component.mjs +3 -3
  70. package/esm2022/lib/components/forms/components/radio/directives/radio/radio.directive.mjs +3 -3
  71. package/esm2022/lib/components/forms/components/radio/directives/radio-field/radio-field.directive.mjs +3 -3
  72. package/esm2022/lib/components/forms/components/radio/directives/radio-group/radio-group.directive.mjs +3 -3
  73. package/esm2022/lib/components/forms/components/segmented-button/components/segmented-button/segmented-button.component.mjs +3 -3
  74. package/esm2022/lib/components/forms/components/segmented-button/components/segmented-button-field/segmented-button-field.component.mjs +3 -3
  75. package/esm2022/lib/components/forms/components/segmented-button/components/segmented-button-group/segmented-button-group.component.mjs +3 -3
  76. package/esm2022/lib/components/forms/components/segmented-button/directives/segmented-button/segmented-button.directive.mjs +3 -3
  77. package/esm2022/lib/components/forms/components/segmented-button/directives/segmented-button-field/segmented-button-field.directive.mjs +3 -3
  78. package/esm2022/lib/components/forms/components/segmented-button/directives/segmented-button-group/segmented-button-group.directive.mjs +3 -3
  79. package/esm2022/lib/components/forms/components/select/components/combobox/components/combobox/combobox.component.mjs +3 -3
  80. package/esm2022/lib/components/forms/components/select/components/combobox/directives/combobox/combobox.directive.mjs +3 -3
  81. package/esm2022/lib/components/forms/components/select/components/combobox/directives/combobox-body-empty-template/combobox-body-empty-template.directive.mjs +3 -3
  82. package/esm2022/lib/components/forms/components/select/components/combobox/directives/combobox-body-error-template/combobox-body-error-template.directive.mjs +3 -3
  83. package/esm2022/lib/components/forms/components/select/components/combobox/directives/combobox-body-loading-template/combobox-body-loading-template.directive.mjs +3 -3
  84. package/esm2022/lib/components/forms/components/select/components/combobox/directives/combobox-body-more-items-hint-template/combobox-body-more-items-hint-template.directive.mjs +3 -3
  85. package/esm2022/lib/components/forms/components/select/components/combobox/directives/combobox-option-template/combobox-option-template.directive.mjs +3 -3
  86. package/esm2022/lib/components/forms/components/select/components/combobox/directives/combobox-selected-option-template/combobox-selected-option-template.directive.mjs +3 -3
  87. package/esm2022/lib/components/forms/components/select/components/combobox/partials/combobox-body/combobox-body.component.mjs +3 -3
  88. package/esm2022/lib/components/forms/components/select/components/combobox/partials/combobox-option/combobox-option.component.mjs +3 -3
  89. package/esm2022/lib/components/forms/components/select/components/native-select/components/native-select/native-select.component.mjs +3 -3
  90. package/esm2022/lib/components/forms/components/select/components/native-select/directives/native-select-input/native-select-input.directive.mjs +3 -3
  91. package/esm2022/lib/components/forms/components/select/components/native-select/directives/native-select-option/native-select-option.directive.mjs +3 -3
  92. package/esm2022/lib/components/forms/components/select/components/native-select/partials/native-select-option/native-select-option.component.mjs +3 -3
  93. package/esm2022/lib/components/forms/components/select/components/select/components/select/select.component.mjs +3 -3
  94. package/esm2022/lib/components/forms/components/select/components/select/directives/select/select.directive.mjs +3 -3
  95. package/esm2022/lib/components/forms/components/select/components/select/directives/select-body/select-body.directive.mjs +3 -3
  96. package/esm2022/lib/components/forms/components/select/components/select/directives/select-option/select-option.directive.mjs +3 -3
  97. package/esm2022/lib/components/forms/components/select/components/select/partials/select-body/select-body.component.mjs +3 -3
  98. package/esm2022/lib/components/forms/components/select/components/select/partials/select-option/select-option.component.mjs +3 -3
  99. package/esm2022/lib/components/forms/components/select/components/select-field/select-field.component.mjs +3 -3
  100. package/esm2022/lib/components/forms/components/select/directives/select-field/select-field.directive.mjs +3 -3
  101. package/esm2022/lib/components/forms/components/selection-list/components/selection-list-field/selection-list-field.component.mjs +3 -3
  102. package/esm2022/lib/components/forms/components/selection-list/components/selection-list-option/selection-list-option.component.mjs +3 -3
  103. package/esm2022/lib/components/forms/components/selection-list/directives/selection-list-field/selection-list-field.directive.mjs +3 -3
  104. package/esm2022/lib/components/forms/components/selection-list/directives/selection-list-option/selection-list-option.directive.mjs +3 -3
  105. package/esm2022/lib/components/forms/components/slide-toggle/components/slide-toggle/slide-toggle.component.mjs +3 -3
  106. package/esm2022/lib/components/forms/components/slide-toggle/components/slide-toggle-field/slide-toggle-field.component.mjs +3 -3
  107. package/esm2022/lib/components/forms/components/slide-toggle/directives/slide-toggle/slide-toggle.directive.mjs +3 -3
  108. package/esm2022/lib/components/forms/components/slider/components/slider/slider.component.mjs +3 -3
  109. package/esm2022/lib/components/forms/components/slider/components/slider-field/slider-field.component.mjs +3 -3
  110. package/esm2022/lib/components/forms/directives/dynamic-form-field/dynamic-form-field.directive.mjs +3 -3
  111. package/esm2022/lib/components/forms/directives/dynamic-form-group/dynamic-form-group.directive.mjs +3 -3
  112. package/esm2022/lib/components/forms/directives/expose-input-vars/expose-input-vars.directive.mjs +3 -3
  113. package/esm2022/lib/components/forms/directives/if-input-empty/if-input-empty.directive.mjs +3 -3
  114. package/esm2022/lib/components/forms/directives/if-input-filled/if-input-filled.directive.mjs +3 -3
  115. package/esm2022/lib/components/forms/directives/input/input.directive.mjs +3 -3
  116. package/esm2022/lib/components/forms/directives/input-prefix/input-prefix.directive.mjs +3 -3
  117. package/esm2022/lib/components/forms/directives/input-suffix/input-suffix.directive.mjs +3 -3
  118. package/esm2022/lib/components/forms/directives/native-input-ref/native-input-ref.directive.mjs +3 -3
  119. package/esm2022/lib/components/forms/directives/static-form-field/static-form-field.directive.mjs +3 -3
  120. package/esm2022/lib/components/forms/directives/static-form-group/static-form-group.directive.mjs +3 -3
  121. package/esm2022/lib/components/forms/directives/writeable-input/writeable-input.directive.mjs +3 -3
  122. package/esm2022/lib/components/forms/services/default-validator-errors.service.mjs +3 -3
  123. package/esm2022/lib/components/forms/services/form-field-state.service.mjs +3 -3
  124. package/esm2022/lib/components/forms/services/form-group-state.service.mjs +3 -3
  125. package/esm2022/lib/components/forms/services/input-state.service.mjs +3 -3
  126. package/esm2022/lib/components/forms/utils/decorated-form-field.base.mjs +3 -3
  127. package/esm2022/lib/components/forms/utils/decorated-input.base.mjs +3 -3
  128. package/esm2022/lib/components/forms/utils/input.base.mjs +3 -3
  129. package/esm2022/lib/components/icons/chevron-icon/chevron-icon.component.mjs +3 -3
  130. package/esm2022/lib/components/masonry/components/masonry/masonry.component.mjs +3 -3
  131. package/esm2022/lib/components/masonry/partials/masonry-item/masonry-item.component.mjs +3 -3
  132. package/esm2022/lib/components/overlay/components/bottom-sheet/components/bottom-sheet-container/bottom-sheet-container.component.mjs +3 -3
  133. package/esm2022/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-container-base/bottom-sheet-container-base.component.mjs +3 -3
  134. package/esm2022/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-drag-handle/bottom-sheet-drag-handle.component.mjs +3 -3
  135. package/esm2022/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-title/bottom-sheet-title.directive.mjs +3 -3
  136. package/esm2022/lib/components/overlay/components/bottom-sheet/services/bottom-sheet-base.service.mjs +3 -3
  137. package/esm2022/lib/components/overlay/components/bottom-sheet/services/bottom-sheet-swipe-handler.service.mjs +3 -3
  138. package/esm2022/lib/components/overlay/components/bottom-sheet/services/bottom-sheet.service.mjs +3 -3
  139. package/esm2022/lib/components/overlay/components/dialog/components/dialog-container/dialog-container.component.mjs +3 -3
  140. package/esm2022/lib/components/overlay/components/dialog/partials/dialog-close/dialog-close.directive.mjs +3 -3
  141. package/esm2022/lib/components/overlay/components/dialog/partials/dialog-container-base/dialog-container-base.component.mjs +3 -3
  142. package/esm2022/lib/components/overlay/components/dialog/partials/dialog-title/dialog-title.directive.mjs +3 -3
  143. package/esm2022/lib/components/overlay/components/dialog/services/dialog-base.service.mjs +3 -3
  144. package/esm2022/lib/components/overlay/components/dialog/services/dialog.service.mjs +3 -3
  145. package/esm2022/lib/components/overlay/components/menu/components/menu/menu.component.mjs +3 -3
  146. package/esm2022/lib/components/overlay/components/menu/components/menu-checkbox-item/menu-checkbox-item.component.mjs +3 -3
  147. package/esm2022/lib/components/overlay/components/menu/components/menu-container/menu-container.component.mjs +3 -3
  148. package/esm2022/lib/components/overlay/components/menu/components/menu-radio-item/menu-radio-item.component.mjs +3 -3
  149. package/esm2022/lib/components/overlay/components/menu/directives/menu-checkbox-group/menu-checkbox-group.directive.mjs +3 -3
  150. package/esm2022/lib/components/overlay/components/menu/directives/menu-group/menu-group.directive.mjs +3 -3
  151. package/esm2022/lib/components/overlay/components/menu/directives/menu-group-title/menu-group-title.directive.mjs +3 -3
  152. package/esm2022/lib/components/overlay/components/menu/directives/menu-item/menu-item.directive.mjs +3 -3
  153. package/esm2022/lib/components/overlay/components/menu/directives/menu-radio-group/menu-radio-group.directive.mjs +3 -3
  154. package/esm2022/lib/components/overlay/components/menu/directives/menu-trigger/menu-trigger.directive.mjs +3 -3
  155. package/esm2022/lib/components/overlay/components/menu-deprecated/context-menu-trigger.mjs +6 -6
  156. package/esm2022/lib/components/overlay/components/menu-deprecated/menu-aim.mjs +6 -6
  157. package/esm2022/lib/components/overlay/components/menu-deprecated/menu-bar.mjs +3 -3
  158. package/esm2022/lib/components/overlay/components/menu-deprecated/menu-base.mjs +3 -3
  159. package/esm2022/lib/components/overlay/components/menu-deprecated/menu-group.mjs +3 -3
  160. package/esm2022/lib/components/overlay/components/menu-deprecated/menu-item-checkbox.mjs +3 -3
  161. package/esm2022/lib/components/overlay/components/menu-deprecated/menu-item-radio.mjs +3 -3
  162. package/esm2022/lib/components/overlay/components/menu-deprecated/menu-item-selectable.mjs +3 -3
  163. package/esm2022/lib/components/overlay/components/menu-deprecated/menu-item.mjs +3 -3
  164. package/esm2022/lib/components/overlay/components/menu-deprecated/menu-module.mjs +4 -4
  165. package/esm2022/lib/components/overlay/components/menu-deprecated/menu-stack.mjs +3 -3
  166. package/esm2022/lib/components/overlay/components/menu-deprecated/menu-trigger-base.mjs +3 -3
  167. package/esm2022/lib/components/overlay/components/menu-deprecated/menu-trigger.mjs +3 -3
  168. package/esm2022/lib/components/overlay/components/menu-deprecated/menu.mjs +3 -3
  169. package/esm2022/lib/components/overlay/components/overlay/components/overlay-container/overlay-container.component.mjs +3 -3
  170. package/esm2022/lib/components/overlay/components/overlay/partials/overlay-back-or-close/overlay-back-or-close.directive.mjs +3 -3
  171. package/esm2022/lib/components/overlay/components/overlay/partials/overlay-body/overlay-body.component.mjs +3 -3
  172. package/esm2022/lib/components/overlay/components/overlay/partials/overlay-close/overlay-close.directive.mjs +3 -3
  173. package/esm2022/lib/components/overlay/components/overlay/partials/overlay-footer/overlay-footer.directive.mjs +3 -3
  174. package/esm2022/lib/components/overlay/components/overlay/partials/overlay-header/overlay-header.directive.mjs +3 -3
  175. package/esm2022/lib/components/overlay/components/overlay/partials/overlay-header-template/overlay-header-template.directive.mjs +3 -3
  176. package/esm2022/lib/components/overlay/components/overlay/partials/overlay-main/overlay-main.directive.mjs +3 -3
  177. package/esm2022/lib/components/overlay/components/overlay/partials/overlay-route-header-template-outlet/overlay-route-header-template-outlet.component.mjs +3 -3
  178. package/esm2022/lib/components/overlay/components/overlay/partials/overlay-router-link/overlay-router-link.directive.mjs +3 -3
  179. package/esm2022/lib/components/overlay/components/overlay/partials/overlay-router-outlet/overlay-router-outlet.component.mjs +3 -3
  180. package/esm2022/lib/components/overlay/components/overlay/partials/overlay-sidebar/overlay-sidebar.component.mjs +3 -3
  181. package/esm2022/lib/components/overlay/components/overlay/partials/overlay-sidebar-page/overlay-sidebar-page.component.mjs +3 -3
  182. package/esm2022/lib/components/overlay/components/overlay/partials/overlay-title/overlay-title.directive.mjs +3 -3
  183. package/esm2022/lib/components/overlay/components/overlay/services/overlay.service.mjs +3 -3
  184. package/esm2022/lib/components/overlay/components/overlay/utils/filter-overlay.mjs +3 -3
  185. package/esm2022/lib/components/overlay/components/toggletip/components/toggletip/toggletip.component.mjs +3 -3
  186. package/esm2022/lib/components/overlay/components/toggletip/directives/toggletip/toggletip.directive.mjs +5 -5
  187. package/esm2022/lib/components/overlay/components/toggletip/partials/toggletip-close/toggletip-close.directive.mjs +3 -3
  188. package/esm2022/lib/components/overlay/components/tooltip/components/tooltip/tooltip.component.mjs +3 -3
  189. package/esm2022/lib/components/overlay/components/tooltip/directives/tooltip/tooltip.directive.mjs +5 -5
  190. package/esm2022/lib/components/overlay/directives/dynamic-overlay-title/dynamic-overlay-title.directive.mjs +3 -3
  191. package/esm2022/lib/components/overlay/directives/overlay-close-auto-blocker/overlay-close-auto-blocker.directive.mjs +3 -3
  192. package/esm2022/lib/components/overlay/services/dynamic-overlay.service.mjs +3 -3
  193. package/esm2022/lib/components/pagination/components/pagination/pagination.component.mjs +3 -3
  194. package/esm2022/lib/components/pagination/partials/pagination-link/pagination-link.directive.mjs +3 -3
  195. package/esm2022/lib/components/pagination/services/pagination-head.service.mjs +3 -3
  196. package/esm2022/lib/components/picture/index.mjs +1 -2
  197. package/esm2022/lib/components/picture/picture.component.mjs +36 -40
  198. package/esm2022/lib/components/picture/picture.utils.mjs +20 -1
  199. package/esm2022/lib/components/picture/public-api/index.mjs +1 -2
  200. package/esm2022/lib/components/progress-spinner/progress-spinner.component.mjs +3 -3
  201. package/esm2022/lib/components/query-error/components/query-error/query-error.component.mjs +3 -3
  202. package/esm2022/lib/components/query-error/directives/query-error/query-error.directive.mjs +3 -3
  203. package/esm2022/lib/components/scrollable/components/scrollable/scrollable.component.mjs +3 -3
  204. package/esm2022/lib/components/scrollable/directives/scrollable-ignore-child/scrollable-ignore-child.directive.mjs +3 -3
  205. package/esm2022/lib/components/scrollable/directives/scrollable-is-active-child/scrollable-is-active-child.directive.mjs +3 -3
  206. package/esm2022/lib/components/skeleton/components/skeleton/skeleton.component.mjs +3 -3
  207. package/esm2022/lib/components/skeleton/partials/skeleton-item/skeleton-item.component.mjs +3 -3
  208. package/esm2022/lib/components/sort/components/sort-header/sort-header.component.mjs +3 -3
  209. package/esm2022/lib/components/sort/partials/sort/sort.directive.mjs +3 -3
  210. package/esm2022/lib/components/sort/services/sort-header-intl.mjs +3 -3
  211. package/esm2022/lib/components/table/components/table/table.component.mjs +3 -3
  212. package/esm2022/lib/components/table/partials/cells/cell/cell.directive.mjs +3 -3
  213. package/esm2022/lib/components/table/partials/cells/cell-def/cell-def.directive.mjs +3 -3
  214. package/esm2022/lib/components/table/partials/cells/column-def/column-def.directive.mjs +3 -3
  215. package/esm2022/lib/components/table/partials/cells/footer-cell/footer-cell.directive.mjs +3 -3
  216. package/esm2022/lib/components/table/partials/cells/footer-cell-def/footer-cell-def.directive.mjs +3 -3
  217. package/esm2022/lib/components/table/partials/cells/header-cell/header-cell.directive.mjs +3 -3
  218. package/esm2022/lib/components/table/partials/cells/header-cell-def/header-cell-def.directive.mjs +3 -3
  219. package/esm2022/lib/components/table/partials/cells/text-column/text-column.component.mjs +3 -3
  220. package/esm2022/lib/components/table/partials/rows/footer-row/footer-row.component.mjs +3 -3
  221. package/esm2022/lib/components/table/partials/rows/footer-row-def/footer-row-def.directive.mjs +3 -3
  222. package/esm2022/lib/components/table/partials/rows/header-row/header-row.component.mjs +3 -3
  223. package/esm2022/lib/components/table/partials/rows/header-row-def/header-row-def.directive.mjs +3 -3
  224. package/esm2022/lib/components/table/partials/rows/no-data-row/no-data-row.directive.mjs +3 -3
  225. package/esm2022/lib/components/table/partials/rows/recycle-rows/recycle-rows.directive.mjs +3 -3
  226. package/esm2022/lib/components/table/partials/rows/row/row.component.mjs +3 -3
  227. package/esm2022/lib/components/table/partials/rows/row-def/row-def.directive.mjs +3 -3
  228. package/esm2022/lib/components/table/partials/table-busy/table-busy.directive.mjs +3 -3
  229. package/esm2022/lib/components/table/partials/table-busy-outlet/table-busy-outlet.directive.mjs +3 -3
  230. package/esm2022/lib/components/tabs/components/inline-tabs/inline-tabs.component.mjs +3 -3
  231. package/esm2022/lib/components/tabs/components/nav-tabs/nav-tabs.component.mjs +3 -3
  232. package/esm2022/lib/components/tabs/partials/inline-tabs/inline-tab/inline-tab.component.mjs +3 -3
  233. package/esm2022/lib/components/tabs/partials/inline-tabs/inline-tab-body/inline-tab-body.component.mjs +3 -3
  234. package/esm2022/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/inline-tab-body-host.directive.mjs +3 -3
  235. package/esm2022/lib/components/tabs/partials/inline-tabs/inline-tab-content/inline-tab-content.directive.mjs +3 -3
  236. package/esm2022/lib/components/tabs/partials/inline-tabs/inline-tab-header/inline-tab-header.component.mjs +3 -3
  237. package/esm2022/lib/components/tabs/partials/inline-tabs/inline-tab-label/inline-tab-label.directive.mjs +3 -3
  238. package/esm2022/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/inline-tab-label-wrapper.directive.mjs +3 -3
  239. package/esm2022/lib/components/tabs/partials/nav-tabs/nav-tab-link/nav-tab-link.directive.mjs +3 -3
  240. package/esm2022/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/nav-tabs-outlet.component.mjs +3 -3
  241. package/esm2022/lib/components/tabs/utils/active-tab-underline.util.mjs +3 -3
  242. package/esm2022/lib/components/tabs/utils/paginated-tab-header.directive.mjs +3 -3
  243. package/esm2022/lib/services/swipe-handler.service.mjs +3 -3
  244. package/fesm2022/ethlete-cdk.mjs +1203 -785
  245. package/fesm2022/ethlete-cdk.mjs.map +1 -1
  246. package/index.d.ts +1 -0
  247. package/lib/components/carousel/carousel.component.d.ts +11 -0
  248. package/lib/components/carousel/carousel.directive.d.ts +59 -0
  249. package/lib/components/carousel/carousel.imports.d.ts +4 -0
  250. package/lib/components/carousel/controls/carousel-item-nav.component.d.ts +8 -0
  251. package/lib/components/carousel/controls/carousel-item-nav.directive.d.ts +14 -0
  252. package/lib/components/carousel/controls/carousel-next-button.directive.d.ts +18 -0
  253. package/lib/components/carousel/controls/carousel-previous-button.directive.d.ts +18 -0
  254. package/lib/components/carousel/controls/carousel-toggle-auto-play-button.directive.d.ts +16 -0
  255. package/lib/components/carousel/controls/index.d.ts +5 -0
  256. package/lib/components/carousel/et-carousel-item.component.d.ts +8 -0
  257. package/lib/components/carousel/et-carousel-item.directive.d.ts +25 -0
  258. package/lib/components/carousel/public-api/index.d.ts +6 -0
  259. package/lib/components/picture/index.d.ts +0 -1
  260. package/lib/components/picture/picture.component.d.ts +18 -9
  261. package/lib/components/picture/picture.utils.d.ts +3 -1
  262. package/lib/components/picture/public-api/index.d.ts +0 -1
  263. package/package.json +8 -8
  264. package/esm2022/lib/components/picture/picture-data.directive.mjs +0 -49
  265. package/esm2022/lib/components/picture/pipes/normalize-source/index.mjs +0 -2
  266. package/esm2022/lib/components/picture/pipes/normalize-source/normalize-source.pipe.mjs +0 -18
  267. package/esm2022/lib/components/picture/pipes/normalize-source/normalize-source.util.mjs +0 -11
  268. package/lib/components/picture/picture-data.directive.d.ts +0 -19
  269. package/lib/components/picture/pipes/normalize-source/index.d.ts +0 -1
  270. package/lib/components/picture/pipes/normalize-source/normalize-source.pipe.d.ts +0 -7
  271. package/lib/components/picture/pipes/normalize-source/normalize-source.util.d.ts +0 -2
package/index.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from './lib/components/accordion/public-api';
2
2
  export * from './lib/components/bracket/public-api';
3
3
  export * from './lib/components/button/public-api';
4
+ export * from './lib/components/carousel/public-api';
4
5
  export * from './lib/components/filter/public-api';
5
6
  export * from './lib/components/forms/public-api';
6
7
  export * from './lib/components/icons/public-api';
@@ -0,0 +1,11 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import { CarouselDirective } from './carousel.directive';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "./carousel.directive";
5
+ export declare class CarouselComponent {
6
+ carousel: CarouselDirective;
7
+ carouselItemsWrapper: import("@angular/core").Signal<ElementRef<HTMLElement>>;
8
+ constructor();
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<CarouselComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<CarouselComponent, "et-carousel", never, {}, {}, never, ["et-carousel-item, [etCarouselItem]", "*"], true, [{ directive: typeof i1.CarouselDirective; inputs: { "loop": "loop"; "autoPlay": "autoPlay"; "autoPlayTime": "autoPlayTime"; "pauseAutoPlayOnHover": "pauseAutoPlayOnHover"; "pauseAutoPlayOnFocus": "pauseAutoPlayOnFocus"; "transitionType": "transitionType"; "transitionDuration": "transitionDuration"; }; outputs: {}; }]>;
11
+ }
@@ -0,0 +1,59 @@
1
+ import { ElementRef, InjectionToken, Injector } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare const CAROUSEL_TOKEN: InjectionToken<CarouselDirective>;
4
+ export type CarouselTransitionType = 'mask-slide';
5
+ export type CarouselTransitionDirection = 'left' | 'right';
6
+ export declare class CarouselDirective {
7
+ injector: Injector;
8
+ loop: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
9
+ autoPlay: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
10
+ autoPlayTime: import("@angular/core").InputSignalWithTransform<number, unknown>;
11
+ pauseAutoPlayOnHover: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
12
+ pauseAutoPlayOnFocus: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
13
+ transitionType: import("@angular/core").InputSignal<"mask-slide">;
14
+ transitionDuration: import("@angular/core").InputSignalWithTransform<number, unknown>;
15
+ activeIndex: import("@angular/core").WritableSignal<number>;
16
+ previousActiveIndex: import("@angular/core").Signal<number | undefined>;
17
+ transitionDirection: import("@angular/core").WritableSignal<CarouselTransitionDirection>;
18
+ carouselItemsWrapper: import("@angular/core").WritableSignal<ElementRef<HTMLDivElement> | null>;
19
+ isAutoPlayPaused: import("@angular/core").WritableSignal<boolean>;
20
+ isAutoPlayPausedByInternalHover: import("@angular/core").WritableSignal<boolean>;
21
+ isAutoPlayPausedByInternalFocus: import("@angular/core").WritableSignal<boolean>;
22
+ isNavigationLocked: import("@angular/core").Signal<boolean>;
23
+ items: import("@angular/core").Signal<readonly import("./et-carousel-item.directive").CarouselItemDirective[]>;
24
+ activeItem: import("@angular/core").Signal<import("./et-carousel-item.directive").CarouselItemDirective | null>;
25
+ isAtStart: import("@angular/core").Signal<boolean>;
26
+ isAtEnd: import("@angular/core").Signal<boolean>;
27
+ hostClassBindings: {
28
+ remove: (...tokens: string[]) => void;
29
+ removeMany: (tokens: string[]) => void;
30
+ has: (token: string) => boolean;
31
+ push: (tokenString: string, signal: import("@angular/core").Signal<unknown>) => void;
32
+ pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
33
+ };
34
+ hostAttributeBindings: {
35
+ remove: (...tokens: string[]) => void;
36
+ removeMany: (tokens: string[]) => void;
37
+ has: (token: string) => boolean;
38
+ push: (tokenString: string, signal: import("@angular/core").Signal<unknown>) => void;
39
+ pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
40
+ };
41
+ hostStyleBindings: {
42
+ remove: (...tokens: string[]) => void;
43
+ removeMany: (tokens: string[]) => void;
44
+ has: (token: string) => boolean;
45
+ push: (tokenString: string, signal: import("@angular/core").Signal<unknown>) => void;
46
+ pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
47
+ };
48
+ activeItemAutoPlayDuration: import("@angular/core").Signal<number | null>;
49
+ activeItemAutoPlayProgress: import("@angular/core").Signal<number | null>;
50
+ shouldPlayNextItem: import("@angular/core").Signal<boolean>;
51
+ constructor();
52
+ next(): void;
53
+ prev(): void;
54
+ goTo(index: number): void;
55
+ stopAutoPlay(): void;
56
+ resumeAutoPlay(): void;
57
+ static ɵfac: i0.ɵɵFactoryDeclaration<CarouselDirective, never>;
58
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CarouselDirective, never, never, { "loop": { "alias": "loop"; "required": false; "isSignal": true; }; "autoPlay": { "alias": "autoPlay"; "required": false; "isSignal": true; }; "autoPlayTime": { "alias": "autoPlayTime"; "required": false; "isSignal": true; }; "pauseAutoPlayOnHover": { "alias": "pauseAutoPlayOnHover"; "required": false; "isSignal": true; }; "pauseAutoPlayOnFocus": { "alias": "pauseAutoPlayOnFocus"; "required": false; "isSignal": true; }; "transitionType": { "alias": "transitionType"; "required": false; "isSignal": true; }; "transitionDuration": { "alias": "transitionDuration"; "required": false; "isSignal": true; }; }, {}, ["items"], never, true, never>;
59
+ }
@@ -0,0 +1,4 @@
1
+ import { CarouselComponent } from './carousel.component';
2
+ import { CarouselItemNavComponent, CarouselNextButtonDirective, CarouselPreviousButtonDirective, CarouselToggleAutoPlayButtonDirective } from './controls';
3
+ import { CarouselItemComponent } from './et-carousel-item.component';
4
+ export declare const CarouselImports: readonly [typeof CarouselComponent, typeof CarouselItemComponent, typeof CarouselItemNavComponent, typeof CarouselNextButtonDirective, typeof CarouselPreviousButtonDirective, typeof CarouselToggleAutoPlayButtonDirective];
@@ -0,0 +1,8 @@
1
+ import { CarouselItemNavDirective } from './carousel-item-nav.directive';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./carousel-item-nav.directive";
4
+ export declare class CarouselItemNavComponent {
5
+ nav: CarouselItemNavDirective;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<CarouselItemNavComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<CarouselItemNavComponent, "et-carousel-item-nav", never, {}, {}, never, never, true, [{ directive: typeof i1.CarouselItemNavDirective; inputs: {}; outputs: {}; }]>;
8
+ }
@@ -0,0 +1,14 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare const CAROUSEL_ITEM_NAV_TOKEN: InjectionToken<CarouselItemNavDirective>;
4
+ export declare class CarouselItemNavDirective {
5
+ carousel: import("../carousel.directive").CarouselDirective;
6
+ items: import("@angular/core").Signal<{
7
+ item: import("@ethlete/cdk").CarouselItemDirective;
8
+ isActive: boolean;
9
+ }[]>;
10
+ autoPlayProgress: import("@angular/core").Signal<number | null>;
11
+ goTo(index: number): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<CarouselItemNavDirective, never>;
13
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CarouselItemNavDirective, never, never, {}, {}, never, never, true, never>;
14
+ }
@@ -0,0 +1,18 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare const CAROUSEL_NEXT_BUTTON_TOKEN: InjectionToken<CarouselNextButtonDirective>;
4
+ export declare class CarouselNextButtonDirective {
5
+ carousel: import("../carousel.directive").CarouselDirective;
6
+ readonly isButton: boolean;
7
+ canGoNext: import("@angular/core").Signal<boolean>;
8
+ hostAttributeBindings: {
9
+ remove: (...tokens: string[]) => void;
10
+ removeMany: (tokens: string[]) => void;
11
+ has: (token: string) => boolean;
12
+ push: (tokenString: string, signal: import("@angular/core").Signal<unknown>) => void;
13
+ pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
14
+ };
15
+ constructor();
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<CarouselNextButtonDirective, never>;
17
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CarouselNextButtonDirective, "[etCarouselNextButton]", never, {}, {}, never, never, true, never>;
18
+ }
@@ -0,0 +1,18 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare const CAROUSEL_PREVIOUS_BUTTON_TOKEN: InjectionToken<CarouselPreviousButtonDirective>;
4
+ export declare class CarouselPreviousButtonDirective {
5
+ carousel: import("../carousel.directive").CarouselDirective;
6
+ readonly isButton: boolean;
7
+ canGoPrevious: import("@angular/core").Signal<boolean>;
8
+ hostAttributeBindings: {
9
+ remove: (...tokens: string[]) => void;
10
+ removeMany: (tokens: string[]) => void;
11
+ has: (token: string) => boolean;
12
+ push: (tokenString: string, signal: import("@angular/core").Signal<unknown>) => void;
13
+ pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
14
+ };
15
+ constructor();
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<CarouselPreviousButtonDirective, never>;
17
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CarouselPreviousButtonDirective, "[etCarouselPreviousButton]", never, {}, {}, never, never, true, never>;
18
+ }
@@ -0,0 +1,16 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare const CAROUSEL_TOGGLE_AUTO_PLAY_BUTTON_TOKEN: InjectionToken<CarouselToggleAutoPlayButtonDirective>;
4
+ export declare class CarouselToggleAutoPlayButtonDirective {
5
+ carousel: import("../carousel.directive").CarouselDirective;
6
+ hostClassBindings: {
7
+ remove: (...tokens: string[]) => void;
8
+ removeMany: (tokens: string[]) => void;
9
+ has: (token: string) => boolean;
10
+ push: (tokenString: string, signal: import("@angular/core").Signal<unknown>) => void;
11
+ pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
12
+ };
13
+ constructor();
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<CarouselToggleAutoPlayButtonDirective, never>;
15
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CarouselToggleAutoPlayButtonDirective, "[etCarouselToggleAutoPlayButton]", never, {}, {}, never, never, true, never>;
16
+ }
@@ -0,0 +1,5 @@
1
+ export * from './carousel-item-nav.component';
2
+ export * from './carousel-item-nav.directive';
3
+ export * from './carousel-next-button.directive';
4
+ export * from './carousel-previous-button.directive';
5
+ export * from './carousel-toggle-auto-play-button.directive';
@@ -0,0 +1,8 @@
1
+ import { CarouselItemDirective } from './et-carousel-item.directive';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./et-carousel-item.directive";
4
+ export declare class CarouselItemComponent {
5
+ carouselItem: CarouselItemDirective;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<CarouselItemComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<CarouselItemComponent, "et-carousel-item", never, {}, {}, never, ["*"], true, [{ directive: typeof i1.CarouselItemDirective; inputs: { "autoPlayTime": "autoPlayTime"; }; outputs: {}; }]>;
8
+ }
@@ -0,0 +1,25 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare const CAROUSEL_ITEM_TOKEN: InjectionToken<CarouselItemDirective>;
4
+ export declare class CarouselItemDirective {
5
+ autoPlayTime: import("@angular/core").InputSignalWithTransform<number | null, unknown>;
6
+ carousel: import("./carousel.directive").CarouselDirective;
7
+ itemIndex: import("@angular/core").Signal<number>;
8
+ isPreviousActive: import("@angular/core").Signal<boolean>;
9
+ hostClassBindings: {
10
+ remove: (...tokens: string[]) => void;
11
+ removeMany: (tokens: string[]) => void;
12
+ has: (token: string) => boolean;
13
+ push: (tokenString: string, signal: import("@angular/core").Signal<unknown>) => void;
14
+ pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
15
+ };
16
+ hostAttributeBindings: {
17
+ remove: (...tokens: string[]) => void;
18
+ removeMany: (tokens: string[]) => void;
19
+ has: (token: string) => boolean;
20
+ push: (tokenString: string, signal: import("@angular/core").Signal<unknown>) => void;
21
+ pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
22
+ };
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<CarouselItemDirective, never>;
24
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CarouselItemDirective, "[etCarouselItem]", never, { "autoPlayTime": { "alias": "autoPlayTime"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
25
+ }
@@ -0,0 +1,6 @@
1
+ export * from '../carousel.component';
2
+ export * from '../carousel.directive';
3
+ export * from '../carousel.imports';
4
+ export * from '../controls';
5
+ export * from '../et-carousel-item.component';
6
+ export * from '../et-carousel-item.directive';
@@ -1,4 +1,3 @@
1
- export * from './picture-data.directive';
2
1
  export * from './picture.component';
3
2
  export * from './picture.component.types';
4
3
  export * from './picture.utils';
@@ -1,14 +1,23 @@
1
- import { TrackByFunction } from '@angular/core';
2
- import { PictureDataDirective } from './picture-data.directive';
1
+ import { NgClassType } from '@ethlete/core';
3
2
  import { PictureSource } from './picture.component.types';
4
3
  import * as i0 from "@angular/core";
5
- import * as i1 from "./picture-data.directive";
6
4
  export declare class PictureComponent {
7
- protected readonly pictureData: PictureDataDirective;
8
- protected readonly config: import("./picture.component.types").PictureConfig | null;
9
- sources: Array<PictureSource | string>;
10
- protected trackBySrc: TrackByFunction<PictureSource | string>;
11
- protected combineWithConfig(src: PictureSource): PictureSource;
5
+ _config: import("./picture.component.types").PictureConfig | null;
6
+ sources: import("@angular/core").InputSignal<(string | PictureSource)[]>;
7
+ hasPriority: import("@angular/core").InputSignal<boolean>;
8
+ imgClass: import("@angular/core").InputSignal<NgClassType>;
9
+ figureClass: import("@angular/core").InputSignal<NgClassType>;
10
+ figcaptionClass: import("@angular/core").InputSignal<NgClassType>;
11
+ pictureClass: import("@angular/core").InputSignal<NgClassType>;
12
+ defaultSrc: import("@angular/core").InputSignal<string | PictureSource | null>;
13
+ alt: import("@angular/core").InputSignal<string | null>;
14
+ figcaption: import("@angular/core").InputSignal<string | null>;
15
+ width: import("@angular/core").InputSignal<number | null>;
16
+ height: import("@angular/core").InputSignal<number | null>;
17
+ sizes: import("@angular/core").InputSignalWithTransform<string | null, string | string[] | null>;
18
+ sourcesWithConfig: import("@angular/core").Signal<PictureSource[]>;
19
+ defaultSourceWithConfig: import("@angular/core").Signal<PictureSource | null>;
20
+ _combineWithConfig(src: PictureSource): PictureSource;
12
21
  static ɵfac: i0.ɵɵFactoryDeclaration<PictureComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<PictureComponent, "et-picture", never, { "sources": { "alias": "sources"; "required": false; }; }, {}, never, never, true, [{ directive: typeof i1.PictureDataDirective; inputs: { "imgClass": "imgClass"; "hasPriority": "hasPriority"; "figureClass": "figureClass"; "pictureClass": "pictureClass"; "figcaptionClass": "figcaptionClass"; "defaultSrc": "defaultSrc"; "alt": "alt"; "figcaption": "figcaption"; "width": "width"; "height": "height"; "sizes": "sizes"; }; outputs: {}; }]>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<PictureComponent, "et-picture", never, { "sources": { "alias": "sources"; "required": false; "isSignal": true; }; "hasPriority": { "alias": "hasPriority"; "required": false; "isSignal": true; }; "imgClass": { "alias": "imgClass"; "required": false; "isSignal": true; }; "figureClass": { "alias": "figureClass"; "required": false; "isSignal": true; }; "figcaptionClass": { "alias": "figcaptionClass"; "required": false; "isSignal": true; }; "pictureClass": { "alias": "pictureClass"; "required": false; "isSignal": true; }; "defaultSrc": { "alias": "defaultSrc"; "required": false; "isSignal": true; }; "alt": { "alias": "alt"; "required": false; "isSignal": true; }; "figcaption": { "alias": "figcaption"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "sizes": { "alias": "sizes"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
14
23
  }
@@ -1,7 +1,9 @@
1
1
  import { InjectionToken } from '@angular/core';
2
- import { PictureConfig } from './picture.component.types';
2
+ import { PictureConfig, PictureSource } from './picture.component.types';
3
3
  export declare const IMAGE_CONFIG_TOKEN: InjectionToken<PictureConfig>;
4
4
  export declare const provideImageConfig: (config?: Partial<PictureConfig> | null | undefined) => {
5
5
  provide: InjectionToken<PictureConfig>;
6
6
  useValue: Partial<PictureConfig> | null;
7
7
  };
8
+ export declare const normalizePictureSource: (source: string | PictureSource) => PictureSource;
9
+ export declare const normalizePictureSizes: (sizes: string | string[] | null) => string | null;
@@ -1,2 +1 @@
1
1
  export * from '../';
2
- export * from '../pipes/normalize-source';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ethlete/cdk",
3
- "version": "4.14.5",
3
+ "version": "4.16.0",
4
4
  "exports": {
5
5
  ".": {
6
6
  "css": "./src/lib/styles/index.css",
@@ -14,13 +14,13 @@
14
14
  }
15
15
  },
16
16
  "peerDependencies": {
17
- "@angular/animations": "17.3.1",
18
- "@angular/cdk": "17.3.1",
19
- "@angular/common": "17.3.1",
20
- "@angular/core": "17.3.1",
21
- "@angular/forms": "17.3.1",
22
- "@angular/platform-browser": "17.3.1",
23
- "@angular/router": "17.3.1",
17
+ "@angular/animations": "17.3.3",
18
+ "@angular/cdk": "17.3.3",
19
+ "@angular/common": "17.3.3",
20
+ "@angular/core": "17.3.3",
21
+ "@angular/forms": "17.3.3",
22
+ "@angular/platform-browser": "17.3.3",
23
+ "@angular/router": "17.3.3",
24
24
  "@ethlete/core": "^4.0.3",
25
25
  "@ethlete/query": "^5.0.3",
26
26
  "@ethlete/theming": "^2.3.1",
@@ -1,49 +0,0 @@
1
- import { Directive, Input, booleanAttribute } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class PictureDataDirective {
4
- constructor() {
5
- this.hasPriority = false;
6
- this.imgClass = null;
7
- this.figureClass = null;
8
- this.figcaptionClass = null;
9
- this.pictureClass = null;
10
- this.defaultSrc = null;
11
- this.alt = null;
12
- this.figcaption = null;
13
- this.width = null;
14
- this.height = null;
15
- this.sizes = null;
16
- }
17
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: PictureDataDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
18
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.1", type: PictureDataDirective, isStandalone: true, inputs: { hasPriority: ["hasPriority", "hasPriority", booleanAttribute], imgClass: "imgClass", figureClass: "figureClass", figcaptionClass: "figcaptionClass", pictureClass: "pictureClass", defaultSrc: "defaultSrc", alt: "alt", figcaption: "figcaption", width: "width", height: "height", sizes: "sizes" }, ngImport: i0 }); }
19
- }
20
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: PictureDataDirective, decorators: [{
21
- type: Directive,
22
- args: [{
23
- standalone: true,
24
- }]
25
- }], propDecorators: { hasPriority: [{
26
- type: Input,
27
- args: [{ transform: booleanAttribute }]
28
- }], imgClass: [{
29
- type: Input
30
- }], figureClass: [{
31
- type: Input
32
- }], figcaptionClass: [{
33
- type: Input
34
- }], pictureClass: [{
35
- type: Input
36
- }], defaultSrc: [{
37
- type: Input
38
- }], alt: [{
39
- type: Input
40
- }], figcaption: [{
41
- type: Input
42
- }], width: [{
43
- type: Input
44
- }], height: [{
45
- type: Input
46
- }], sizes: [{
47
- type: Input
48
- }] } });
49
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGljdHVyZS1kYXRhLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9waWN0dXJlL3BpY3R1cmUtZGF0YS5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBT25FLE1BQU0sT0FBTyxvQkFBb0I7SUFIakM7UUFLRSxnQkFBVyxHQUFHLEtBQUssQ0FBQztRQUdwQixhQUFRLEdBQWdCLElBQUksQ0FBQztRQUc3QixnQkFBVyxHQUFnQixJQUFJLENBQUM7UUFHaEMsb0JBQWUsR0FBZ0IsSUFBSSxDQUFDO1FBR3BDLGlCQUFZLEdBQWdCLElBQUksQ0FBQztRQUdqQyxlQUFVLEdBQWtDLElBQUksQ0FBQztRQUdqRCxRQUFHLEdBQWtCLElBQUksQ0FBQztRQUcxQixlQUFVLEdBQWtCLElBQUksQ0FBQztRQUdqQyxVQUFLLEdBQWtCLElBQUksQ0FBQztRQUc1QixXQUFNLEdBQWtCLElBQUksQ0FBQztRQUc3QixVQUFLLEdBQWtCLElBQUksQ0FBQztLQUM3Qjs4R0FqQ1ksb0JBQW9CO2tHQUFwQixvQkFBb0IsNEVBQ1gsZ0JBQWdCOzsyRkFEekIsb0JBQW9CO2tCQUhoQyxTQUFTO21CQUFDO29CQUNULFVBQVUsRUFBRSxJQUFJO2lCQUNqQjs4QkFHQyxXQUFXO3NCQURWLEtBQUs7dUJBQUMsRUFBRSxTQUFTLEVBQUUsZ0JBQWdCLEVBQUU7Z0JBSXRDLFFBQVE7c0JBRFAsS0FBSztnQkFJTixXQUFXO3NCQURWLEtBQUs7Z0JBSU4sZUFBZTtzQkFEZCxLQUFLO2dCQUlOLFlBQVk7c0JBRFgsS0FBSztnQkFJTixVQUFVO3NCQURULEtBQUs7Z0JBSU4sR0FBRztzQkFERixLQUFLO2dCQUlOLFVBQVU7c0JBRFQsS0FBSztnQkFJTixLQUFLO3NCQURKLEtBQUs7Z0JBSU4sTUFBTTtzQkFETCxLQUFLO2dCQUlOLEtBQUs7c0JBREosS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSwgSW5wdXQsIGJvb2xlYW5BdHRyaWJ1dGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IE5nQ2xhc3NUeXBlIH0gZnJvbSAnQGV0aGxldGUvY29yZSc7XG5pbXBvcnQgeyBQaWN0dXJlU291cmNlIH0gZnJvbSAnLi9waWN0dXJlLmNvbXBvbmVudC50eXBlcyc7XG5cbkBEaXJlY3RpdmUoe1xuICBzdGFuZGFsb25lOiB0cnVlLFxufSlcbmV4cG9ydCBjbGFzcyBQaWN0dXJlRGF0YURpcmVjdGl2ZSB7XG4gIEBJbnB1dCh7IHRyYW5zZm9ybTogYm9vbGVhbkF0dHJpYnV0ZSB9KVxuICBoYXNQcmlvcml0eSA9IGZhbHNlO1xuXG4gIEBJbnB1dCgpXG4gIGltZ0NsYXNzOiBOZ0NsYXNzVHlwZSA9IG51bGw7XG5cbiAgQElucHV0KClcbiAgZmlndXJlQ2xhc3M6IE5nQ2xhc3NUeXBlID0gbnVsbDtcblxuICBASW5wdXQoKVxuICBmaWdjYXB0aW9uQ2xhc3M6IE5nQ2xhc3NUeXBlID0gbnVsbDtcblxuICBASW5wdXQoKVxuICBwaWN0dXJlQ2xhc3M6IE5nQ2xhc3NUeXBlID0gbnVsbDtcblxuICBASW5wdXQoKVxuICBkZWZhdWx0U3JjOiBQaWN0dXJlU291cmNlIHwgc3RyaW5nIHwgbnVsbCA9IG51bGw7XG5cbiAgQElucHV0KClcbiAgYWx0OiBzdHJpbmcgfCBudWxsID0gbnVsbDtcblxuICBASW5wdXQoKVxuICBmaWdjYXB0aW9uOiBzdHJpbmcgfCBudWxsID0gbnVsbDtcblxuICBASW5wdXQoKVxuICB3aWR0aDogbnVtYmVyIHwgbnVsbCA9IG51bGw7XG5cbiAgQElucHV0KClcbiAgaGVpZ2h0OiBudW1iZXIgfCBudWxsID0gbnVsbDtcblxuICBASW5wdXQoKVxuICBzaXplczogc3RyaW5nIHwgbnVsbCA9IG51bGw7XG59XG4iXX0=
@@ -1,2 +0,0 @@
1
- export * from './normalize-source.pipe';
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvcGljdHVyZS9waXBlcy9ub3JtYWxpemUtc291cmNlL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMseUJBQXlCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL25vcm1hbGl6ZS1zb3VyY2UucGlwZSc7XG4iXX0=
@@ -1,18 +0,0 @@
1
- import { Pipe } from '@angular/core';
2
- import { normalizeSource } from './normalize-source.util';
3
- import * as i0 from "@angular/core";
4
- export class NormalizeSourcePipe {
5
- constructor() {
6
- this.transform = normalizeSource;
7
- }
8
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: NormalizeSourcePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
9
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.1", ngImport: i0, type: NormalizeSourcePipe, isStandalone: true, name: "normalizeSource" }); }
10
- }
11
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: NormalizeSourcePipe, decorators: [{
12
- type: Pipe,
13
- args: [{
14
- name: 'normalizeSource',
15
- standalone: true,
16
- }]
17
- }] });
18
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm9ybWFsaXplLXNvdXJjZS5waXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL3BpY3R1cmUvcGlwZXMvbm9ybWFsaXplLXNvdXJjZS9ub3JtYWxpemUtc291cmNlLnBpcGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLElBQUksRUFBaUIsTUFBTSxlQUFlLENBQUM7QUFDcEQsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHlCQUF5QixDQUFDOztBQU0xRCxNQUFNLE9BQU8sbUJBQW1CO0lBSmhDO1FBS0UsY0FBUyxHQUFHLGVBQWUsQ0FBQztLQUM3Qjs4R0FGWSxtQkFBbUI7NEdBQW5CLG1CQUFtQjs7MkZBQW5CLG1CQUFtQjtrQkFKL0IsSUFBSTttQkFBQztvQkFDSixJQUFJLEVBQUUsaUJBQWlCO29CQUN2QixVQUFVLEVBQUUsSUFBSTtpQkFDakIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBQaXBlLCBQaXBlVHJhbnNmb3JtIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBub3JtYWxpemVTb3VyY2UgfSBmcm9tICcuL25vcm1hbGl6ZS1zb3VyY2UudXRpbCc7XG5cbkBQaXBlKHtcbiAgbmFtZTogJ25vcm1hbGl6ZVNvdXJjZScsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG59KVxuZXhwb3J0IGNsYXNzIE5vcm1hbGl6ZVNvdXJjZVBpcGUgaW1wbGVtZW50cyBQaXBlVHJhbnNmb3JtIHtcbiAgdHJhbnNmb3JtID0gbm9ybWFsaXplU291cmNlO1xufVxuIl19
@@ -1,11 +0,0 @@
1
- import { inferMimeType } from '@ethlete/core';
2
- export const normalizeSource = (source) => {
3
- if (typeof source === 'string') {
4
- return { type: inferMimeType(source), srcset: source };
5
- }
6
- else {
7
- const mimeType = source.type && source.type !== '' ? source.type : inferMimeType(source.srcset);
8
- return { type: mimeType, srcset: source.srcset };
9
- }
10
- };
11
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm9ybWFsaXplLXNvdXJjZS51dGlsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL3BpY3R1cmUvcGlwZXMvbm9ybWFsaXplLXNvdXJjZS9ub3JtYWxpemUtc291cmNlLnV0aWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUc5QyxNQUFNLENBQUMsTUFBTSxlQUFlLEdBQUcsQ0FBQyxNQUE4QixFQUFFLEVBQUU7SUFDaEUsSUFBSSxPQUFPLE1BQU0sS0FBSyxRQUFRLEVBQUUsQ0FBQztRQUMvQixPQUFPLEVBQUUsSUFBSSxFQUFFLGFBQWEsQ0FBQyxNQUFNLENBQUMsRUFBRSxNQUFNLEVBQUUsTUFBTSxFQUFtQixDQUFDO0lBQzFFLENBQUM7U0FBTSxDQUFDO1FBQ04sTUFBTSxRQUFRLEdBQUcsTUFBTSxDQUFDLElBQUksSUFBSSxNQUFNLENBQUMsSUFBSSxLQUFLLEVBQUUsQ0FBQyxDQUFDLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsYUFBYSxDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUMsQ0FBQztRQUNoRyxPQUFPLEVBQUUsSUFBSSxFQUFFLFFBQVEsRUFBRSxNQUFNLEVBQUUsTUFBTSxDQUFDLE1BQU0sRUFBbUIsQ0FBQztJQUNwRSxDQUFDO0FBQ0gsQ0FBQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgaW5mZXJNaW1lVHlwZSB9IGZyb20gJ0BldGhsZXRlL2NvcmUnO1xuaW1wb3J0IHsgUGljdHVyZVNvdXJjZSB9IGZyb20gJy4uLy4uL3BpY3R1cmUuY29tcG9uZW50LnR5cGVzJztcblxuZXhwb3J0IGNvbnN0IG5vcm1hbGl6ZVNvdXJjZSA9IChzb3VyY2U6IHN0cmluZyB8IFBpY3R1cmVTb3VyY2UpID0+IHtcbiAgaWYgKHR5cGVvZiBzb3VyY2UgPT09ICdzdHJpbmcnKSB7XG4gICAgcmV0dXJuIHsgdHlwZTogaW5mZXJNaW1lVHlwZShzb3VyY2UpLCBzcmNzZXQ6IHNvdXJjZSB9IGFzIFBpY3R1cmVTb3VyY2U7XG4gIH0gZWxzZSB7XG4gICAgY29uc3QgbWltZVR5cGUgPSBzb3VyY2UudHlwZSAmJiBzb3VyY2UudHlwZSAhPT0gJycgPyBzb3VyY2UudHlwZSA6IGluZmVyTWltZVR5cGUoc291cmNlLnNyY3NldCk7XG4gICAgcmV0dXJuIHsgdHlwZTogbWltZVR5cGUsIHNyY3NldDogc291cmNlLnNyY3NldCB9IGFzIFBpY3R1cmVTb3VyY2U7XG4gIH1cbn07XG4iXX0=
@@ -1,19 +0,0 @@
1
- import { NgClassType } from '@ethlete/core';
2
- import { PictureSource } from './picture.component.types';
3
- import * as i0 from "@angular/core";
4
- export declare class PictureDataDirective {
5
- hasPriority: boolean;
6
- imgClass: NgClassType;
7
- figureClass: NgClassType;
8
- figcaptionClass: NgClassType;
9
- pictureClass: NgClassType;
10
- defaultSrc: PictureSource | string | null;
11
- alt: string | null;
12
- figcaption: string | null;
13
- width: number | null;
14
- height: number | null;
15
- sizes: string | null;
16
- static ɵfac: i0.ɵɵFactoryDeclaration<PictureDataDirective, never>;
17
- static ɵdir: i0.ɵɵDirectiveDeclaration<PictureDataDirective, never, never, { "hasPriority": { "alias": "hasPriority"; "required": false; }; "imgClass": { "alias": "imgClass"; "required": false; }; "figureClass": { "alias": "figureClass"; "required": false; }; "figcaptionClass": { "alias": "figcaptionClass"; "required": false; }; "pictureClass": { "alias": "pictureClass"; "required": false; }; "defaultSrc": { "alias": "defaultSrc"; "required": false; }; "alt": { "alias": "alt"; "required": false; }; "figcaption": { "alias": "figcaption"; "required": false; }; "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "sizes": { "alias": "sizes"; "required": false; }; }, {}, never, never, true, never>;
18
- static ngAcceptInputType_hasPriority: unknown;
19
- }
@@ -1 +0,0 @@
1
- export * from './normalize-source.pipe';
@@ -1,7 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class NormalizeSourcePipe implements PipeTransform {
4
- transform: (source: string | import("@ethlete/cdk").PictureSource) => import("@ethlete/cdk").PictureSource;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<NormalizeSourcePipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<NormalizeSourcePipe, "normalizeSource", true>;
7
- }
@@ -1,2 +0,0 @@
1
- import { PictureSource } from '../../picture.component.types';
2
- export declare const normalizeSource: (source: string | PictureSource) => PictureSource;