@daffodil/design 0.76.0 → 0.78.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 (553) hide show
  1. package/accordion/README.md +40 -2
  2. package/accordion/accordion/accordion/accordion.component.d.ts +1 -1
  3. package/accordion/accordion/accordion-item/accordion-item.component.d.ts +19 -8
  4. package/accordion/accordion/accordion-item-title/accordion-item-title.directive.d.ts +1 -1
  5. package/accordion/accordion.d.ts +4 -0
  6. package/accordion/accordion.module.d.ts +6 -7
  7. package/accordion/examples/basic-accordion/basic-accordion.component.d.ts +1 -1
  8. package/accordion/examples/public_api.d.ts +0 -1
  9. package/accordion/public_api.d.ts +1 -0
  10. package/article/README.md +42 -1
  11. package/article/article/article.component.d.ts +1 -1
  12. package/article/article-meta/article-meta.directive.d.ts +1 -1
  13. package/article/article.d.ts +3 -0
  14. package/article/article.module.d.ts +5 -4
  15. package/article/public_api.d.ts +2 -1
  16. package/button/README.md +41 -0
  17. package/button/button/button.component.d.ts +1 -1
  18. package/button/button.d.ts +3 -0
  19. package/button/button.module.d.ts +4 -4
  20. package/button/public_api.d.ts +2 -1
  21. package/callout/README.md +42 -0
  22. package/callout/callout/callout.component.d.ts +1 -1
  23. package/callout/callout-body/callout-body.directive.d.ts +1 -1
  24. package/callout/callout-icon/callout-icon.directive.d.ts +1 -1
  25. package/callout/callout-subtitle/callout-subtitle.directive.d.ts +1 -1
  26. package/callout/callout-tagline/callout-tagline.directive.d.ts +1 -1
  27. package/callout/callout-title/callout-title.directive.d.ts +1 -1
  28. package/callout/callout.d.ts +7 -0
  29. package/callout/callout.module.d.ts +9 -8
  30. package/callout/public_api.d.ts +1 -0
  31. package/card/README.md +41 -0
  32. package/card/card/card.component.d.ts +1 -1
  33. package/card/card-actions/card-actions.directive.d.ts +1 -1
  34. package/card/card-content/card-content.directive.d.ts +1 -1
  35. package/card/card-icon/card-icon.directive.d.ts +1 -1
  36. package/card/card-image/card-image.directive.d.ts +1 -1
  37. package/card/card-tagline/card-tagline.directive.d.ts +1 -1
  38. package/card/card-title/card-title.directive.d.ts +1 -1
  39. package/card/card.d.ts +8 -0
  40. package/card/card.module.d.ts +12 -9
  41. package/card/public_api.d.ts +1 -0
  42. package/container/README.md +42 -1
  43. package/container/container/container.component.d.ts +1 -1
  44. package/container/container.d.ts +2 -0
  45. package/container/container.module.d.ts +6 -3
  46. package/container/public_api.d.ts +1 -0
  47. package/core/openable/openable.d.ts +13 -0
  48. package/core/openable/openable.directive.d.ts +81 -0
  49. package/core/openable/public_api.d.ts +2 -0
  50. package/core/openable/utils/state-error.d.ts +1 -0
  51. package/core/public_api.d.ts +1 -0
  52. package/esm2022/accordion/accordion/accordion/accordion.component.mjs +5 -5
  53. package/esm2022/accordion/accordion/accordion-item/accordion-item.component.mjs +39 -23
  54. package/esm2022/accordion/accordion/accordion-item-title/accordion-item-title.directive.mjs +5 -4
  55. package/esm2022/accordion/accordion/animation/accordion-animation-state.mjs +1 -1
  56. package/esm2022/accordion/accordion.mjs +9 -0
  57. package/esm2022/accordion/accordion.module.mjs +8 -16
  58. package/esm2022/accordion/examples/basic-accordion/basic-accordion.component.mjs +8 -5
  59. package/esm2022/accordion/examples/public_api.mjs +1 -2
  60. package/esm2022/accordion/public_api.mjs +2 -1
  61. package/esm2022/article/article/article.component.mjs +5 -5
  62. package/esm2022/article/article-meta/article-meta.directive.mjs +5 -4
  63. package/esm2022/article/article.mjs +7 -0
  64. package/esm2022/article/article.module.mjs +8 -8
  65. package/esm2022/article/examples/article-blockquote/article-blockquote.component.mjs +8 -6
  66. package/esm2022/article/examples/article-code-block/article-code-block.component.mjs +8 -6
  67. package/esm2022/article/examples/article-code-inline/article-code-inline.component.mjs +8 -6
  68. package/esm2022/article/examples/article-headings/article-headings.component.mjs +9 -5
  69. package/esm2022/article/examples/article-hr/article-hr.component.mjs +8 -6
  70. package/esm2022/article/examples/article-link/article-link.component.mjs +8 -6
  71. package/esm2022/article/examples/article-meta/article-meta.component.mjs +8 -6
  72. package/esm2022/article/examples/article-ol/article-ol.component.mjs +8 -6
  73. package/esm2022/article/examples/article-table/article-table.component.mjs +8 -6
  74. package/esm2022/article/examples/article-ul/article-ul.component.mjs +8 -6
  75. package/esm2022/article/public_api.mjs +3 -2
  76. package/esm2022/atoms/form/checkbox/checkbox.component.mjs +4 -4
  77. package/esm2022/atoms/form/checkbox/checkbox.module.mjs +5 -5
  78. package/esm2022/atoms/form/checkbox/cva/checkbox-cva.directive.mjs +4 -4
  79. package/esm2022/atoms/form/checkbox-set/checkbox-set.component.mjs +4 -4
  80. package/esm2022/atoms/form/error-message/error-message.component.mjs +4 -4
  81. package/esm2022/atoms/form/error-message/error-message.module.mjs +5 -5
  82. package/esm2022/atoms/form/form-field/form-field/form-field.component.mjs +4 -4
  83. package/esm2022/atoms/form/form-field/form-field.module.mjs +5 -5
  84. package/esm2022/atoms/form/form-label/form-label.directive.mjs +4 -4
  85. package/esm2022/atoms/form/form-label/form-label.module.mjs +5 -5
  86. package/esm2022/atoms/form/input/input.component.mjs +4 -4
  87. package/esm2022/atoms/form/input/input.module.mjs +5 -5
  88. package/esm2022/atoms/form/native-select/native-select.component.mjs +4 -4
  89. package/esm2022/atoms/form/native-select/native-select.module.mjs +5 -5
  90. package/esm2022/atoms/form/quantity-field/quantity-field.component.mjs +4 -4
  91. package/esm2022/atoms/form/quantity-field/quantity-field.module.mjs +5 -5
  92. package/esm2022/atoms/form/quantity-field/quantity-input/quantity-input.component.mjs +4 -4
  93. package/esm2022/atoms/form/quantity-field/quantity-select/quantity-select.component.mjs +4 -4
  94. package/esm2022/atoms/form/radio/cva/radio-cva.directive.mjs +4 -4
  95. package/esm2022/atoms/form/radio/radio.component.mjs +4 -4
  96. package/esm2022/atoms/form/radio/radio.module.mjs +5 -5
  97. package/esm2022/atoms/form/radio/registry/radio-registry.mjs +4 -4
  98. package/esm2022/atoms/form/radio-set/radio-set.component.mjs +4 -4
  99. package/esm2022/breadcrumb/breadcrumb/breadcrumb.component.mjs +4 -4
  100. package/esm2022/breadcrumb/breadcrumb-item/breadcrumb-item.directive.mjs +4 -4
  101. package/esm2022/breadcrumb/breadcrumb.module.mjs +5 -5
  102. package/esm2022/breadcrumb/examples/basic-breadcrumb/basic-breadcrumb.component.mjs +4 -4
  103. package/esm2022/button/button/button-sizable.directive.mjs +4 -4
  104. package/esm2022/button/button/button.component.mjs +13 -8
  105. package/esm2022/button/button.mjs +7 -0
  106. package/esm2022/button/button.module.mjs +8 -14
  107. package/esm2022/button/examples/basic-button/basic-button.component.mjs +6 -8
  108. package/esm2022/button/examples/flat-button/flat-button.component.mjs +6 -8
  109. package/esm2022/button/examples/icon-button/icon-button.component.mjs +10 -6
  110. package/esm2022/button/examples/raised-button/raised-button.component.mjs +6 -8
  111. package/esm2022/button/examples/sizeable-button/sizeable-button.component.mjs +10 -6
  112. package/esm2022/button/examples/statusable-button/statusable-button.component.mjs +10 -6
  113. package/esm2022/button/examples/stroked-button/stroked-button.component.mjs +6 -8
  114. package/esm2022/button/examples/underline-button/underline-button.component.mjs +6 -8
  115. package/esm2022/button/public_api.mjs +3 -2
  116. package/esm2022/callout/callout/callout.component.mjs +6 -6
  117. package/esm2022/callout/callout-body/callout-body.directive.mjs +5 -4
  118. package/esm2022/callout/callout-icon/callout-icon.directive.mjs +5 -4
  119. package/esm2022/callout/callout-subtitle/callout-subtitle.directive.mjs +5 -4
  120. package/esm2022/callout/callout-tagline/callout-tagline.directive.mjs +5 -4
  121. package/esm2022/callout/callout-title/callout-title.directive.mjs +5 -4
  122. package/esm2022/callout/callout.mjs +15 -0
  123. package/esm2022/callout/callout.module.mjs +8 -8
  124. package/esm2022/callout/examples/callout-text-alignment/callout-text-alignment.component.mjs +12 -11
  125. package/esm2022/callout/examples/callout-theming/callout-theming.component.mjs +10 -9
  126. package/esm2022/callout/examples/callout-with-grid/callout-with-grid.component.mjs +11 -10
  127. package/esm2022/callout/examples/compact-callout/compact-callout.component.mjs +11 -10
  128. package/esm2022/callout/public_api.mjs +2 -1
  129. package/esm2022/card/card/card.component.mjs +5 -5
  130. package/esm2022/card/card-actions/card-actions.directive.mjs +5 -4
  131. package/esm2022/card/card-content/card-content.directive.mjs +5 -4
  132. package/esm2022/card/card-icon/card-icon.directive.mjs +5 -4
  133. package/esm2022/card/card-image/card-image.directive.mjs +5 -4
  134. package/esm2022/card/card-tagline/card-tagline.directive.mjs +5 -4
  135. package/esm2022/card/card-title/card-title.directive.mjs +5 -4
  136. package/esm2022/card/card.mjs +17 -0
  137. package/esm2022/card/card.module.mjs +10 -8
  138. package/esm2022/card/examples/basic-card/basic-card.component.mjs +11 -10
  139. package/esm2022/card/examples/card-orientation/card-orientation.component.mjs +12 -11
  140. package/esm2022/card/examples/card-theming/card-theming.component.mjs +6 -6
  141. package/esm2022/card/examples/linkable-card/linkable-card.component.mjs +8 -8
  142. package/esm2022/card/examples/raised-card/raised-card.component.mjs +8 -8
  143. package/esm2022/card/examples/stroked-card/stroked-card.component.mjs +8 -8
  144. package/esm2022/card/public_api.mjs +2 -1
  145. package/esm2022/checkbox/examples/basic-checkbox/basic-checkbox.component.mjs +6 -6
  146. package/esm2022/checkbox/examples/checkbox-set/checkbox-set.component.mjs +6 -6
  147. package/esm2022/container/container/container.component.mjs +5 -5
  148. package/esm2022/container/container.mjs +5 -0
  149. package/esm2022/container/container.module.mjs +9 -7
  150. package/esm2022/container/examples/container-sizes/container-sizes.component.mjs +6 -6
  151. package/esm2022/container/public_api.mjs +2 -1
  152. package/esm2022/core/article-encapsulated/article-encapsulated.directive.mjs +4 -4
  153. package/esm2022/core/breakpoints/noop.service.mjs +4 -4
  154. package/esm2022/core/colorable/colorable.directive.mjs +4 -4
  155. package/esm2022/core/compactable/compactable.directive.mjs +4 -4
  156. package/esm2022/core/focus/stack.service.mjs +4 -4
  157. package/esm2022/core/manage-container-layout/manage-container-layout.directive.mjs +4 -4
  158. package/esm2022/core/openable/openable.directive.mjs +122 -0
  159. package/esm2022/core/openable/openable.mjs +2 -0
  160. package/esm2022/core/openable/public_api.mjs +2 -0
  161. package/esm2022/core/openable/utils/state-error.mjs +2 -0
  162. package/esm2022/core/prefix-suffix/prefix-suffix.module.mjs +5 -5
  163. package/esm2022/core/prefix-suffix/prefix.directive.mjs +4 -4
  164. package/esm2022/core/prefix-suffix/prefixable/prefixable.mjs +4 -4
  165. package/esm2022/core/prefix-suffix/suffix.directive.mjs +4 -4
  166. package/esm2022/core/prefix-suffix/suffixable/suffixable.mjs +4 -4
  167. package/esm2022/core/public_api.mjs +2 -1
  168. package/esm2022/core/sizable/sizable.directive.mjs +4 -4
  169. package/esm2022/core/skeletonable/skeletonable.directive.mjs +4 -4
  170. package/esm2022/core/statusable/statusable.directive.mjs +4 -4
  171. package/esm2022/core/text-alignable/text-alignable.directive.mjs +4 -4
  172. package/esm2022/core/theming/functions/computer.mjs +1 -1
  173. package/esm2022/core/theming/services/class-setter/theme-class-setter.service.mjs +4 -4
  174. package/esm2022/core/theming/services/os-theme/ostheme.service.mjs +4 -4
  175. package/esm2022/core/theming/services/storage/theme-storage.service.mjs +4 -4
  176. package/esm2022/core/theming/services/theming.service.mjs +4 -4
  177. package/esm2022/hero/examples/compact-hero/compact-hero.component.mjs +9 -8
  178. package/esm2022/hero/examples/hero-text-alignment/hero-text-alignment.component.mjs +12 -11
  179. package/esm2022/hero/examples/hero-theming/hero-theming.component.mjs +10 -9
  180. package/esm2022/hero/examples/hero-with-grid/hero-with-grid.component.mjs +11 -10
  181. package/esm2022/hero/hero/hero.component.mjs +6 -9
  182. package/esm2022/hero/hero-body/hero-body.directive.mjs +5 -4
  183. package/esm2022/hero/hero-icon/hero-icon.directive.mjs +5 -4
  184. package/esm2022/hero/hero-subtitle/hero-subtitle.directive.mjs +5 -4
  185. package/esm2022/hero/hero-tagline/hero-tagline.directive.mjs +5 -4
  186. package/esm2022/hero/hero-title/hero-title.directive.mjs +5 -4
  187. package/esm2022/hero/hero.mjs +15 -0
  188. package/esm2022/hero/hero.module.mjs +10 -8
  189. package/esm2022/hero/public_api.mjs +2 -1
  190. package/esm2022/image/examples/basic-image/basic-image.component.mjs +8 -6
  191. package/esm2022/image/examples/load-image/load-image.component.mjs +9 -6
  192. package/esm2022/image/examples/skeleton-image/skeleton-image.component.mjs +8 -6
  193. package/esm2022/image/image/image.component.mjs +5 -5
  194. package/esm2022/image/image.mjs +5 -0
  195. package/esm2022/image/image.module.mjs +10 -8
  196. package/esm2022/image/public_api.mjs +2 -1
  197. package/esm2022/input/examples/basic-input/basic-input.component.mjs +4 -4
  198. package/esm2022/input/examples/input-disabled/input-disabled.component.mjs +4 -4
  199. package/esm2022/input/examples/input-error/input-error.component.mjs +4 -4
  200. package/esm2022/input/examples/input-with-form-field/input-with-form-field.component.mjs +4 -4
  201. package/esm2022/link-set/link-set/link-set.component.mjs +5 -5
  202. package/esm2022/link-set/link-set-heading/link-set-heading.directive.mjs +5 -4
  203. package/esm2022/link-set/link-set-item/link-set-item.component.mjs +5 -4
  204. package/esm2022/link-set/link-set-subheading/link-set-subheading.directive.mjs +5 -4
  205. package/esm2022/link-set/link-set.mjs +11 -0
  206. package/esm2022/link-set/link-set.module.mjs +11 -9
  207. package/esm2022/link-set/public_api.mjs +2 -1
  208. package/esm2022/list/examples/basic-list/basic-list.component.mjs +9 -6
  209. package/esm2022/list/examples/icon-list/icon-list.component.mjs +6 -8
  210. package/esm2022/list/examples/multiline-list/multiline-list.component.mjs +9 -6
  211. package/esm2022/list/examples/nav-list/nav-list.component.mjs +6 -8
  212. package/esm2022/list/list/list.component.mjs +5 -5
  213. package/esm2022/list/list-item/list-item.component.mjs +10 -7
  214. package/esm2022/list/list.mjs +9 -0
  215. package/esm2022/list/list.module.mjs +11 -11
  216. package/esm2022/list/public_api.mjs +2 -1
  217. package/esm2022/loading-icon/examples/loading-icon-color/loading-icon-color.component.mjs +6 -6
  218. package/esm2022/loading-icon/examples/loading-icon-diameter/loading-icon-diameter.component.mjs +8 -6
  219. package/esm2022/loading-icon/loading-icon/loading-icon.component.mjs +5 -5
  220. package/esm2022/loading-icon/loading-icon.mjs +5 -0
  221. package/esm2022/loading-icon/loading-icon.module.mjs +9 -7
  222. package/esm2022/loading-icon/public_api.mjs +2 -1
  223. package/esm2022/media-gallery/examples/basic-media-gallery/basic-media-gallery.component.mjs +10 -7
  224. package/esm2022/media-gallery/examples/mismatched-sizes-media-gallery/mismatched-sizes-media-gallery.component.mjs +10 -7
  225. package/esm2022/media-gallery/examples/skeleton-media-gallery/skeleton-media-gallery.component.mjs +10 -7
  226. package/esm2022/media-gallery/media-gallery/media-gallery.component.mjs +11 -7
  227. package/esm2022/media-gallery/media-gallery.mjs +9 -0
  228. package/esm2022/media-gallery/media-gallery.module.mjs +14 -12
  229. package/esm2022/media-gallery/media-renderer/media-renderer.component.mjs +5 -4
  230. package/esm2022/media-gallery/public_api.mjs +2 -1
  231. package/esm2022/media-gallery/registry/media-gallery.registry.mjs +4 -4
  232. package/esm2022/media-gallery/thumbnail/thumbnail.directive.mjs +5 -4
  233. package/esm2022/menu/examples/basic-menu/basic-menu.component.mjs +11 -7
  234. package/esm2022/menu/examples/basic-menu/menu-content/menu-content.component.mjs +8 -5
  235. package/esm2022/menu/menu/menu.component.mjs +8 -5
  236. package/esm2022/menu/menu-activator/menu-activator.component.mjs +5 -4
  237. package/esm2022/menu/menu-item/menu-item.component.mjs +10 -7
  238. package/esm2022/menu/menu.module.mjs +11 -10
  239. package/esm2022/menu/services/menu.service.mjs +10 -9
  240. package/esm2022/modal/examples/basic-modal/basic-modal.component.mjs +15 -7
  241. package/esm2022/modal/examples/basic-modal/modal-content.component.mjs +11 -7
  242. package/esm2022/modal/modal/modal.component.mjs +48 -22
  243. package/esm2022/modal/modal-actions/modal-actions.component.mjs +5 -4
  244. package/esm2022/modal/modal-close/modal-close.directive.mjs +5 -4
  245. package/esm2022/modal/modal-content/modal-content.component.mjs +5 -4
  246. package/esm2022/modal/modal-header/modal-header.component.mjs +16 -9
  247. package/esm2022/modal/modal-title/modal-title.directive.mjs +5 -4
  248. package/esm2022/modal/modal.mjs +13 -0
  249. package/esm2022/modal/modal.module.mjs +20 -14
  250. package/esm2022/modal/public_api.mjs +2 -1
  251. package/esm2022/modal/service/modal.service.mjs +10 -8
  252. package/esm2022/navbar/examples/basic-navbar/basic-navbar.component.mjs +11 -7
  253. package/esm2022/navbar/examples/contained-navbar/contained-navbar.component.mjs +11 -10
  254. package/esm2022/navbar/examples/navbar-theming/navbar-theming.component.mjs +10 -9
  255. package/esm2022/navbar/examples/raised-navbar/raised-navbar.component.mjs +11 -7
  256. package/esm2022/navbar/navbar/navbar.component.mjs +5 -8
  257. package/esm2022/navbar/navbar.mjs +5 -0
  258. package/esm2022/navbar/navbar.module.mjs +12 -6
  259. package/esm2022/navbar/public_api.mjs +2 -1
  260. package/esm2022/notification/examples/default-notification/default-notification.component.mjs +8 -8
  261. package/esm2022/notification/examples/dismissible-notification/dismissible-notification.component.mjs +6 -6
  262. package/esm2022/notification/examples/notification-orientations/notification-orientations.component.mjs +8 -8
  263. package/esm2022/notification/examples/notification-status/notification-status.component.mjs +8 -8
  264. package/esm2022/notification/examples/notification-with-actions/notification-with-actions.component.mjs +8 -8
  265. package/esm2022/notification/notification/notification.component.mjs +12 -8
  266. package/esm2022/notification/notification-actions/notification-actions.directive.mjs +5 -4
  267. package/esm2022/notification/notification-message/notification-message.directive.mjs +5 -4
  268. package/esm2022/notification/notification-subtitle/notification-subtitle.directive.mjs +5 -4
  269. package/esm2022/notification/notification-title/notification-title.directive.mjs +5 -4
  270. package/esm2022/notification/notification.mjs +15 -0
  271. package/esm2022/notification/notification.module.mjs +14 -11
  272. package/esm2022/notification/public_api.mjs +2 -1
  273. package/esm2022/paginator/examples/basic-paginator/basic-paginator.component.mjs +6 -6
  274. package/esm2022/paginator/examples/link-paginator/link-paginator.component.mjs +6 -6
  275. package/esm2022/paginator/paginator/paginator.component.mjs +14 -11
  276. package/esm2022/paginator/paginator.mjs +5 -0
  277. package/esm2022/paginator/paginator.module.mjs +12 -9
  278. package/esm2022/paginator/public_api.mjs +2 -1
  279. package/esm2022/progress-bar/examples/progress-bar-default/progress-bar-default.component.mjs +8 -6
  280. package/esm2022/progress-bar/examples/progress-bar-indeterminate/progress-bar-indeterminate.component.mjs +8 -6
  281. package/esm2022/progress-bar/examples/progress-bar-themes/progress-bar-themes.component.mjs +9 -6
  282. package/esm2022/progress-bar/progress-bar-label/progress-bar-label.directive.mjs +20 -0
  283. package/esm2022/progress-bar/progress-bar.component.mjs +7 -5
  284. package/esm2022/progress-bar/progress-bar.mjs +7 -0
  285. package/esm2022/progress-bar/progress-bar.module.mjs +14 -7
  286. package/esm2022/progress-bar/public_api.mjs +3 -1
  287. package/esm2022/quantity-field/examples/basic-quantity-field/basic-quantity-field.component.mjs +4 -4
  288. package/esm2022/quantity-field/examples/custom-range-quantity-field/custom-range-quantity-field.component.mjs +4 -4
  289. package/esm2022/quantity-field/examples/disabled-quantity-field/disabled-quantity-field.component.mjs +4 -4
  290. package/esm2022/quantity-field/examples/select-max-quantity-field/select-max-quantity-field.component.mjs +4 -4
  291. package/esm2022/radio/examples/basic-radio/basic-radio.component.mjs +4 -4
  292. package/esm2022/sidebar/animation/sidebar-animation-state.mjs +1 -1
  293. package/esm2022/sidebar/examples/basic-sidebar/basic-sidebar.component.mjs +8 -6
  294. package/esm2022/sidebar/examples/over-and-under-sidebars/over-and-under-sidebars.component.mjs +11 -10
  295. package/esm2022/sidebar/examples/side-fixed-sidebar/side-fixed-sidebar.component.mjs +7 -7
  296. package/esm2022/sidebar/examples/sidebar-with-sticky-content/sidebar-with-sticky-content.component.mjs +8 -6
  297. package/esm2022/sidebar/public_api.mjs +2 -1
  298. package/esm2022/sidebar/service/sidebar.service.mjs +1 -1
  299. package/esm2022/sidebar/sidebar/is-opening.mjs +1 -1
  300. package/esm2022/sidebar/sidebar/sidebar.component.mjs +36 -16
  301. package/esm2022/sidebar/sidebar-footer/sidebar-footer.component.mjs +5 -5
  302. package/esm2022/sidebar/sidebar-header/sidebar-header-action/sidebar-header-action.directive.mjs +5 -4
  303. package/esm2022/sidebar/sidebar-header/sidebar-header-title/sidebar-header-title.directive.mjs +5 -4
  304. package/esm2022/sidebar/sidebar-header/sidebar-header.component.mjs +5 -5
  305. package/esm2022/sidebar/sidebar-viewport/helper/has-parent-viewport.mjs +1 -1
  306. package/esm2022/sidebar/sidebar-viewport/sidebar-viewport.component.mjs +24 -40
  307. package/esm2022/sidebar/sidebar-viewport/utils/content-pad.mjs +6 -6
  308. package/esm2022/sidebar/sidebar-viewport/utils/content-shift.mjs +1 -1
  309. package/esm2022/sidebar/sidebar-viewport-backdrop/sidebar-viewport-backdrop.component.mjs +5 -5
  310. package/esm2022/sidebar/sidebar.mjs +17 -0
  311. package/esm2022/sidebar/sidebar.module.mjs +11 -9
  312. package/esm2022/toast/examples/default-toast/default-toast.component.mjs +9 -6
  313. package/esm2022/toast/examples/toast-positions/toast-positions.component.mjs +11 -7
  314. package/esm2022/toast/examples/toast-status/toast-status.component.mjs +14 -9
  315. package/esm2022/toast/examples/toast-with-custom-duration/toast-with-custom-duration.component.mjs +9 -6
  316. package/esm2022/toast/public_api.mjs +2 -1
  317. package/esm2022/toast/service/position-strategy.mjs +1 -1
  318. package/esm2022/toast/service/position.service.mjs +4 -4
  319. package/esm2022/toast/service/toast.service.mjs +10 -11
  320. package/esm2022/toast/toast/toast-provider.mjs +7 -0
  321. package/esm2022/toast/toast/toast-template.component.mjs +32 -14
  322. package/esm2022/toast/toast/toast.component.mjs +8 -11
  323. package/esm2022/toast/toast-actions/toast-actions.directive.mjs +5 -4
  324. package/esm2022/toast/toast-message/toast-message.directive.mjs +5 -4
  325. package/esm2022/toast/toast-title/toast-title.directive.mjs +5 -4
  326. package/esm2022/toast/toast.module.mjs +13 -14
  327. package/esm2022/tree/examples/basic-tree/basic-tree.component.mjs +9 -6
  328. package/esm2022/tree/examples/deep-tree/deep-tree.component.mjs +54 -0
  329. package/esm2022/tree/examples/public_api.mjs +4 -2
  330. package/esm2022/tree/public_api.mjs +2 -2
  331. package/esm2022/tree/tree/tree.component.mjs +10 -7
  332. package/esm2022/tree/tree-item/tree-item.directive.mjs +5 -4
  333. package/esm2022/tree/tree.mjs +7 -0
  334. package/esm2022/tree/tree.module.mjs +12 -10
  335. package/esm2022/tree/utils/flatten-tree.mjs +7 -3
  336. package/esm2022/tree/utils/transform.mjs +1 -1
  337. package/esm2022/tree/utils/traverse-tree.mjs +1 -1
  338. package/fesm2022/daffodil-design-accordion-examples.mjs +9 -28
  339. package/fesm2022/daffodil-design-accordion-examples.mjs.map +1 -1
  340. package/fesm2022/daffodil-design-accordion.mjs +59 -45
  341. package/fesm2022/daffodil-design-accordion.mjs.map +1 -1
  342. package/fesm2022/daffodil-design-article-examples.mjs +61 -41
  343. package/fesm2022/daffodil-design-article-examples.mjs.map +1 -1
  344. package/fesm2022/daffodil-design-article.mjs +22 -16
  345. package/fesm2022/daffodil-design-article.mjs.map +1 -1
  346. package/fesm2022/daffodil-design-breadcrumb-examples.mjs +3 -3
  347. package/fesm2022/daffodil-design-breadcrumb-examples.mjs.map +1 -1
  348. package/fesm2022/daffodil-design-breadcrumb.mjs +10 -10
  349. package/fesm2022/daffodil-design-breadcrumb.mjs.map +1 -1
  350. package/fesm2022/daffodil-design-button-examples.mjs +43 -40
  351. package/fesm2022/daffodil-design-button-examples.mjs.map +1 -1
  352. package/fesm2022/daffodil-design-button.mjs +29 -26
  353. package/fesm2022/daffodil-design-button.mjs.map +1 -1
  354. package/fesm2022/daffodil-design-callout-examples.mjs +28 -27
  355. package/fesm2022/daffodil-design-callout-examples.mjs.map +1 -1
  356. package/fesm2022/daffodil-design-callout.mjs +42 -28
  357. package/fesm2022/daffodil-design-callout.mjs.map +1 -1
  358. package/fesm2022/daffodil-design-card-examples.mjs +35 -34
  359. package/fesm2022/daffodil-design-card-examples.mjs.map +1 -1
  360. package/fesm2022/daffodil-design-card.mjs +48 -30
  361. package/fesm2022/daffodil-design-card.mjs.map +1 -1
  362. package/fesm2022/daffodil-design-checkbox-examples.mjs +9 -9
  363. package/fesm2022/daffodil-design-checkbox-examples.mjs.map +1 -1
  364. package/fesm2022/daffodil-design-container-examples.mjs +5 -5
  365. package/fesm2022/daffodil-design-container-examples.mjs.map +1 -1
  366. package/fesm2022/daffodil-design-container.mjs +17 -11
  367. package/fesm2022/daffodil-design-container.mjs.map +1 -1
  368. package/fesm2022/daffodil-design-hero-examples.mjs +27 -26
  369. package/fesm2022/daffodil-design-hero-examples.mjs.map +1 -1
  370. package/fesm2022/daffodil-design-hero.mjs +44 -31
  371. package/fesm2022/daffodil-design-hero.mjs.map +1 -1
  372. package/fesm2022/daffodil-design-image-examples.mjs +20 -13
  373. package/fesm2022/daffodil-design-image-examples.mjs.map +1 -1
  374. package/fesm2022/daffodil-design-image.mjs +18 -12
  375. package/fesm2022/daffodil-design-image.mjs.map +1 -1
  376. package/fesm2022/daffodil-design-input-examples.mjs +12 -12
  377. package/fesm2022/daffodil-design-input-examples.mjs.map +1 -1
  378. package/fesm2022/daffodil-design-link-set.mjs +34 -22
  379. package/fesm2022/daffodil-design-link-set.mjs.map +1 -1
  380. package/fesm2022/daffodil-design-list-examples.mjs +22 -21
  381. package/fesm2022/daffodil-design-list-examples.mjs.map +1 -1
  382. package/fesm2022/daffodil-design-list.mjs +29 -21
  383. package/fesm2022/daffodil-design-list.mjs.map +1 -1
  384. package/fesm2022/daffodil-design-loading-icon-examples.mjs +11 -9
  385. package/fesm2022/daffodil-design-loading-icon-examples.mjs.map +1 -1
  386. package/fesm2022/daffodil-design-loading-icon.mjs +17 -11
  387. package/fesm2022/daffodil-design-loading-icon.mjs.map +1 -1
  388. package/fesm2022/daffodil-design-media-gallery-examples.mjs +23 -14
  389. package/fesm2022/daffodil-design-media-gallery-examples.mjs.map +1 -1
  390. package/fesm2022/daffodil-design-media-gallery.mjs +80 -67
  391. package/fesm2022/daffodil-design-media-gallery.mjs.map +1 -1
  392. package/fesm2022/daffodil-design-menu-examples.mjs +16 -9
  393. package/fesm2022/daffodil-design-menu-examples.mjs.map +1 -1
  394. package/fesm2022/daffodil-design-menu.mjs +64 -57
  395. package/fesm2022/daffodil-design-menu.mjs.map +1 -1
  396. package/fesm2022/daffodil-design-modal-examples.mjs +21 -10
  397. package/fesm2022/daffodil-design-modal-examples.mjs.map +1 -1
  398. package/fesm2022/daffodil-design-modal.mjs +113 -66
  399. package/fesm2022/daffodil-design-modal.mjs.map +1 -1
  400. package/fesm2022/daffodil-design-navbar-examples.mjs +30 -23
  401. package/fesm2022/daffodil-design-navbar-examples.mjs.map +1 -1
  402. package/fesm2022/daffodil-design-navbar.mjs +20 -13
  403. package/fesm2022/daffodil-design-navbar.mjs.map +1 -1
  404. package/fesm2022/daffodil-design-notification-examples.mjs +26 -26
  405. package/fesm2022/daffodil-design-notification-examples.mjs.map +1 -1
  406. package/fesm2022/daffodil-design-notification.mjs +50 -32
  407. package/fesm2022/daffodil-design-notification.mjs.map +1 -1
  408. package/fesm2022/daffodil-design-paginator-examples.mjs +9 -9
  409. package/fesm2022/daffodil-design-paginator-examples.mjs.map +1 -1
  410. package/fesm2022/daffodil-design-paginator.mjs +28 -21
  411. package/fesm2022/daffodil-design-paginator.mjs.map +1 -1
  412. package/fesm2022/daffodil-design-progress-bar-examples.mjs +20 -13
  413. package/fesm2022/daffodil-design-progress-bar-examples.mjs.map +1 -1
  414. package/fesm2022/daffodil-design-progress-bar.mjs +43 -13
  415. package/fesm2022/daffodil-design-progress-bar.mjs.map +1 -1
  416. package/fesm2022/daffodil-design-quantity-field-examples.mjs +12 -12
  417. package/fesm2022/daffodil-design-quantity-field-examples.mjs.map +1 -1
  418. package/fesm2022/daffodil-design-radio-examples.mjs +3 -3
  419. package/fesm2022/daffodil-design-radio-examples.mjs.map +1 -1
  420. package/fesm2022/daffodil-design-sidebar-examples.mjs +27 -22
  421. package/fesm2022/daffodil-design-sidebar-examples.mjs.map +1 -1
  422. package/fesm2022/daffodil-design-sidebar.mjs +102 -84
  423. package/fesm2022/daffodil-design-sidebar.mjs.map +1 -1
  424. package/fesm2022/daffodil-design-toast-examples.mjs +32 -20
  425. package/fesm2022/daffodil-design-toast-examples.mjs.map +1 -1
  426. package/fesm2022/daffodil-design-toast.mjs +156 -137
  427. package/fesm2022/daffodil-design-toast.mjs.map +1 -1
  428. package/fesm2022/daffodil-design-tree-examples.mjs +59 -6
  429. package/fesm2022/daffodil-design-tree-examples.mjs.map +1 -1
  430. package/fesm2022/daffodil-design-tree.mjs +36 -44
  431. package/fesm2022/daffodil-design-tree.mjs.map +1 -1
  432. package/fesm2022/daffodil-design.mjs +258 -137
  433. package/fesm2022/daffodil-design.mjs.map +1 -1
  434. package/hero/README.md +41 -0
  435. package/hero/hero/hero.component.d.ts +1 -4
  436. package/hero/hero-body/hero-body.directive.d.ts +1 -1
  437. package/hero/hero-icon/hero-icon.directive.d.ts +1 -1
  438. package/hero/hero-subtitle/hero-subtitle.directive.d.ts +1 -1
  439. package/hero/hero-tagline/hero-tagline.directive.d.ts +1 -1
  440. package/hero/hero-title/hero-title.directive.d.ts +1 -1
  441. package/hero/hero.d.ts +7 -0
  442. package/hero/hero.module.d.ts +11 -8
  443. package/hero/public_api.d.ts +1 -0
  444. package/image/README.md +43 -7
  445. package/image/image/image.component.d.ts +1 -1
  446. package/image/image.d.ts +2 -0
  447. package/image/image.module.d.ts +6 -3
  448. package/image/public_api.d.ts +1 -0
  449. package/link-set/README.md +42 -1
  450. package/link-set/link-set/link-set.component.d.ts +1 -1
  451. package/link-set/link-set-heading/link-set-heading.directive.d.ts +1 -1
  452. package/link-set/link-set-item/link-set-item.component.d.ts +1 -1
  453. package/link-set/link-set-subheading/link-set-subheading.directive.d.ts +1 -1
  454. package/link-set/link-set.d.ts +5 -0
  455. package/link-set/link-set.module.d.ts +9 -6
  456. package/link-set/public_api.d.ts +1 -0
  457. package/list/README.md +42 -1
  458. package/list/list/list.component.d.ts +1 -1
  459. package/list/list-item/list-item.component.d.ts +1 -1
  460. package/list/list.d.ts +4 -0
  461. package/list/list.module.d.ts +7 -4
  462. package/list/public_api.d.ts +1 -0
  463. package/loading-icon/README.md +41 -0
  464. package/loading-icon/loading-icon/loading-icon.component.d.ts +1 -1
  465. package/loading-icon/loading-icon.d.ts +2 -0
  466. package/loading-icon/loading-icon.module.d.ts +6 -3
  467. package/loading-icon/public_api.d.ts +1 -0
  468. package/media-gallery/README.md +41 -0
  469. package/media-gallery/media-gallery/media-gallery.component.d.ts +1 -1
  470. package/media-gallery/media-gallery.d.ts +4 -0
  471. package/media-gallery/media-gallery.module.d.ts +8 -5
  472. package/media-gallery/media-renderer/media-renderer.component.d.ts +1 -1
  473. package/media-gallery/public_api.d.ts +1 -0
  474. package/media-gallery/thumbnail/thumbnail.directive.d.ts +1 -1
  475. package/menu/README.md +23 -0
  476. package/menu/menu/menu.component.d.ts +1 -1
  477. package/menu/menu-activator/menu-activator.component.d.ts +1 -1
  478. package/menu/menu-item/menu-item.component.d.ts +1 -1
  479. package/menu/menu.module.d.ts +6 -6
  480. package/menu/services/menu.service.d.ts +3 -2
  481. package/modal/README.md +41 -0
  482. package/modal/modal/modal.component.d.ts +20 -8
  483. package/modal/modal-actions/modal-actions.component.d.ts +1 -1
  484. package/modal/modal-close/modal-close.directive.d.ts +1 -1
  485. package/modal/modal-content/modal-content.component.d.ts +1 -1
  486. package/modal/modal-header/modal-header.component.d.ts +1 -1
  487. package/modal/modal-title/modal-title.directive.d.ts +1 -1
  488. package/modal/modal.d.ts +6 -0
  489. package/modal/modal.module.d.ts +15 -12
  490. package/modal/public_api.d.ts +1 -0
  491. package/navbar/README.md +41 -0
  492. package/navbar/navbar/navbar.component.d.ts +1 -4
  493. package/navbar/navbar.d.ts +2 -0
  494. package/navbar/navbar.module.d.ts +6 -2
  495. package/navbar/public_api.d.ts +1 -0
  496. package/notification/README.md +41 -0
  497. package/notification/notification/notification.component.d.ts +1 -1
  498. package/notification/notification-actions/notification-actions.directive.d.ts +1 -1
  499. package/notification/notification-message/notification-message.directive.d.ts +1 -1
  500. package/notification/notification-subtitle/notification-subtitle.directive.d.ts +1 -1
  501. package/notification/notification-title/notification-title.directive.d.ts +1 -1
  502. package/notification/notification.d.ts +7 -0
  503. package/notification/notification.module.d.ts +12 -9
  504. package/notification/public_api.d.ts +1 -0
  505. package/package.json +1 -1
  506. package/paginator/README.md +45 -4
  507. package/paginator/paginator/paginator.component.d.ts +1 -4
  508. package/paginator/paginator.d.ts +2 -0
  509. package/paginator/paginator.module.d.ts +8 -5
  510. package/paginator/public_api.d.ts +1 -0
  511. package/progress-bar/README.md +41 -0
  512. package/progress-bar/progress-bar-label/progress-bar-label.directive.d.ts +6 -0
  513. package/progress-bar/progress-bar.component.d.ts +1 -1
  514. package/progress-bar/progress-bar.d.ts +3 -0
  515. package/progress-bar/progress-bar.module.d.ts +7 -3
  516. package/progress-bar/public_api.d.ts +2 -0
  517. package/sidebar/README.md +78 -20
  518. package/sidebar/public_api.d.ts +1 -0
  519. package/sidebar/sidebar/sidebar.component.d.ts +19 -8
  520. package/sidebar/sidebar-footer/sidebar-footer.component.d.ts +1 -1
  521. package/sidebar/sidebar-header/sidebar-header-action/sidebar-header-action.directive.d.ts +1 -1
  522. package/sidebar/sidebar-header/sidebar-header-title/sidebar-header-title.directive.d.ts +1 -1
  523. package/sidebar/sidebar-header/sidebar-header.component.d.ts +1 -1
  524. package/sidebar/sidebar-viewport/sidebar-viewport.component.d.ts +5 -17
  525. package/sidebar/sidebar-viewport/utils/content-pad.d.ts +2 -2
  526. package/sidebar/sidebar-viewport-backdrop/sidebar-viewport-backdrop.component.d.ts +1 -1
  527. package/sidebar/sidebar.d.ts +8 -0
  528. package/sidebar/sidebar.module.d.ts +13 -10
  529. package/toast/README.md +108 -33
  530. package/toast/public_api.d.ts +1 -0
  531. package/toast/service/toast.service.d.ts +4 -3
  532. package/toast/src/toast-theme.scss +1 -1
  533. package/toast/toast/toast-provider.d.ts +2 -0
  534. package/toast/toast/toast-template.component.d.ts +1 -1
  535. package/toast/toast/toast.component.d.ts +1 -3
  536. package/toast/toast-actions/toast-actions.directive.d.ts +1 -1
  537. package/toast/toast-message/toast-message.directive.d.ts +1 -1
  538. package/toast/toast-title/toast-title.directive.d.ts +1 -1
  539. package/toast/toast.module.d.ts +14 -12
  540. package/tree/README.md +41 -0
  541. package/tree/examples/deep-tree/deep-tree.component.d.ts +7 -0
  542. package/tree/examples/public_api.d.ts +2 -1
  543. package/tree/public_api.d.ts +1 -2
  544. package/tree/tree/tree.component.d.ts +1 -1
  545. package/tree/tree-item/tree-item.directive.d.ts +1 -1
  546. package/tree/tree.d.ts +3 -0
  547. package/tree/tree.module.d.ts +7 -4
  548. package/tree/utils/transform.d.ts +1 -1
  549. package/tree/utils/traverse-tree.d.ts +1 -1
  550. package/accordion/examples/accordion-examples.module.d.ts +0 -9
  551. package/esm2022/accordion/examples/accordion-examples.module.mjs +0 -26
  552. package/esm2022/tree/utils/transform-in-place.mjs +0 -23
  553. package/tree/utils/transform-in-place.d.ts +0 -15
@@ -14,12 +14,12 @@ class DaffCalloutComponent {
14
14
  * @docs-private
15
15
  */
16
16
  this.class = true;
17
- this.textAlignable.textAlignment = 'left';
17
+ this.textAlignable.defaultAlignment = 'left';
18
18
  }
19
- /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: DaffCalloutComponent, deps: [{ token: i1.DaffTextAlignableDirective }], target: i0.ɵɵFactoryTarget.Component }); }
20
- /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: DaffCalloutComponent, selector: "daff-callout", host: { properties: { "class.daff-callout": "this.class" } }, hostDirectives: [{ directive: i1.DaffArticleEncapsulatedDirective }, { directive: i1.DaffManageContainerLayoutDirective }, { directive: i1.DaffTextAlignableDirective, inputs: ["textAlignment", "textAlignment"] }, { directive: i1.DaffCompactableDirective, inputs: ["compact", "compact"] }, { directive: i1.DaffColorableDirective, inputs: ["color", "color"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true, styles: [".daff-callout{display:block;padding:64px 24px}@media (min-width: 480px){.daff-callout{padding:96px 48px}}.daff-callout__icon{margin:0 0 16px}.daff-callout__tagline{font-size:.875rem;font-weight:600;letter-spacing:.03125rem;line-height:1rem;text-transform:uppercase;margin:0 0 8px;padding:0}.daff-callout__title{font-weight:700;font-size:1.75rem;line-height:2rem;margin:0;max-width:1040px;overflow-wrap:break-word;padding:0;width:100%}@media (min-width: 480px){.daff-callout__title{font-weight:700;font-size:2rem;line-height:2.25rem}}@media (min-width: 480px) and (min-width: 768px){.daff-callout__title{font-size:3rem;line-height:3.5rem}}.daff-callout__subtitle{font-size:1.25rem;margin:16px 0 0;max-width:592px;padding:0;width:100%}.daff-callout__body:not(:last-child){margin-bottom:48px}.daff-callout__body:not(:first-child){margin-top:48px}.daff-callout__body p:first-of-type{margin-top:0}.daff-callout__body p:last-of-type{margin-bottom:0}.daff-callout.daff-compact{padding:48px 24px}@media (min-width: 480px){.daff-callout.daff-compact{padding:48px}}.daff-callout.daff-left .daff-callout__icon,.daff-callout.daff-left .daff-callout__tagline,.daff-callout.daff-left .daff-callout__title,.daff-callout.daff-left .daff-callout__subtitle{text-align:left}.daff-callout.daff-center .daff-callout__icon,.daff-callout.daff-center .daff-callout__tagline,.daff-callout.daff-center .daff-callout__title,.daff-callout.daff-center .daff-callout__subtitle{margin-left:auto;margin-right:auto;text-align:center}.daff-callout.daff-right .daff-callout__icon,.daff-callout.daff-right .daff-callout__tagline,.daff-callout.daff-right .daff-callout__title,.daff-callout.daff-right .daff-callout__subtitle{margin-left:auto;text-align:right}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
19
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: DaffCalloutComponent, deps: [{ token: i1.DaffTextAlignableDirective }], target: i0.ɵɵFactoryTarget.Component }); }
20
+ /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.2", type: DaffCalloutComponent, isStandalone: true, selector: "daff-callout", host: { properties: { "class.daff-callout": "this.class" } }, hostDirectives: [{ directive: i1.DaffArticleEncapsulatedDirective }, { directive: i1.DaffManageContainerLayoutDirective }, { directive: i1.DaffTextAlignableDirective, inputs: ["textAlignment", "textAlignment"] }, { directive: i1.DaffCompactableDirective, inputs: ["compact", "compact"] }, { directive: i1.DaffColorableDirective, inputs: ["color", "color"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true, styles: [".daff-callout{display:block;padding:64px 24px}@media (min-width: 480px){.daff-callout{padding:96px 48px}}.daff-callout__icon{margin:0 0 16px}.daff-callout__tagline{font-size:.875rem;font-weight:600;letter-spacing:.03125rem;line-height:1rem;text-transform:uppercase;margin:0 0 8px;padding:0}.daff-callout__title{font-weight:700;font-size:1.75rem;line-height:2rem;margin:0;max-width:1040px;overflow-wrap:break-word;padding:0;width:100%}@media (min-width: 480px){.daff-callout__title{font-weight:700;font-size:2rem;line-height:2.25rem}}@media (min-width: 480px) and (min-width: 768px){.daff-callout__title{font-size:3rem;line-height:3.5rem}}.daff-callout__subtitle{font-size:1.25rem;margin:16px 0 0;max-width:592px;padding:0;width:100%}.daff-callout__body:not(:last-child){margin-bottom:48px}.daff-callout__body:not(:first-child){margin-top:48px}.daff-callout__body p:first-of-type{margin-top:0}.daff-callout__body p:last-of-type{margin-bottom:0}.daff-callout.daff-compact{padding:48px 24px}@media (min-width: 480px){.daff-callout.daff-compact{padding:48px}}.daff-callout.daff-left .daff-callout__icon,.daff-callout.daff-left .daff-callout__tagline,.daff-callout.daff-left .daff-callout__title,.daff-callout.daff-left .daff-callout__subtitle{text-align:left}.daff-callout.daff-center .daff-callout__icon,.daff-callout.daff-center .daff-callout__tagline,.daff-callout.daff-center .daff-callout__title,.daff-callout.daff-center .daff-callout__subtitle{margin-left:auto;margin-right:auto;text-align:center}.daff-callout.daff-right .daff-callout__icon,.daff-callout.daff-right .daff-callout__tagline,.daff-callout.daff-right .daff-callout__title,.daff-callout.daff-right .daff-callout__subtitle{margin-left:auto;text-align:right}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
21
21
  }
22
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: DaffCalloutComponent, decorators: [{
22
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: DaffCalloutComponent, decorators: [{
23
23
  type: Component,
24
24
  args: [{ selector: 'daff-callout', template: '<ng-content></ng-content>', encapsulation: ViewEncapsulation.None, hostDirectives: [
25
25
  { directive: DaffArticleEncapsulatedDirective },
@@ -36,7 +36,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
36
36
  directive: DaffColorableDirective,
37
37
  inputs: ['color'],
38
38
  },
39
- ], changeDetection: ChangeDetectionStrategy.OnPush, styles: [".daff-callout{display:block;padding:64px 24px}@media (min-width: 480px){.daff-callout{padding:96px 48px}}.daff-callout__icon{margin:0 0 16px}.daff-callout__tagline{font-size:.875rem;font-weight:600;letter-spacing:.03125rem;line-height:1rem;text-transform:uppercase;margin:0 0 8px;padding:0}.daff-callout__title{font-weight:700;font-size:1.75rem;line-height:2rem;margin:0;max-width:1040px;overflow-wrap:break-word;padding:0;width:100%}@media (min-width: 480px){.daff-callout__title{font-weight:700;font-size:2rem;line-height:2.25rem}}@media (min-width: 480px) and (min-width: 768px){.daff-callout__title{font-size:3rem;line-height:3.5rem}}.daff-callout__subtitle{font-size:1.25rem;margin:16px 0 0;max-width:592px;padding:0;width:100%}.daff-callout__body:not(:last-child){margin-bottom:48px}.daff-callout__body:not(:first-child){margin-top:48px}.daff-callout__body p:first-of-type{margin-top:0}.daff-callout__body p:last-of-type{margin-bottom:0}.daff-callout.daff-compact{padding:48px 24px}@media (min-width: 480px){.daff-callout.daff-compact{padding:48px}}.daff-callout.daff-left .daff-callout__icon,.daff-callout.daff-left .daff-callout__tagline,.daff-callout.daff-left .daff-callout__title,.daff-callout.daff-left .daff-callout__subtitle{text-align:left}.daff-callout.daff-center .daff-callout__icon,.daff-callout.daff-center .daff-callout__tagline,.daff-callout.daff-center .daff-callout__title,.daff-callout.daff-center .daff-callout__subtitle{margin-left:auto;margin-right:auto;text-align:center}.daff-callout.daff-right .daff-callout__icon,.daff-callout.daff-right .daff-callout__tagline,.daff-callout.daff-right .daff-callout__title,.daff-callout.daff-right .daff-callout__subtitle{margin-left:auto;text-align:right}\n"] }]
39
+ ], changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, styles: [".daff-callout{display:block;padding:64px 24px}@media (min-width: 480px){.daff-callout{padding:96px 48px}}.daff-callout__icon{margin:0 0 16px}.daff-callout__tagline{font-size:.875rem;font-weight:600;letter-spacing:.03125rem;line-height:1rem;text-transform:uppercase;margin:0 0 8px;padding:0}.daff-callout__title{font-weight:700;font-size:1.75rem;line-height:2rem;margin:0;max-width:1040px;overflow-wrap:break-word;padding:0;width:100%}@media (min-width: 480px){.daff-callout__title{font-weight:700;font-size:2rem;line-height:2.25rem}}@media (min-width: 480px) and (min-width: 768px){.daff-callout__title{font-size:3rem;line-height:3.5rem}}.daff-callout__subtitle{font-size:1.25rem;margin:16px 0 0;max-width:592px;padding:0;width:100%}.daff-callout__body:not(:last-child){margin-bottom:48px}.daff-callout__body:not(:first-child){margin-top:48px}.daff-callout__body p:first-of-type{margin-top:0}.daff-callout__body p:last-of-type{margin-bottom:0}.daff-callout.daff-compact{padding:48px 24px}@media (min-width: 480px){.daff-callout.daff-compact{padding:48px}}.daff-callout.daff-left .daff-callout__icon,.daff-callout.daff-left .daff-callout__tagline,.daff-callout.daff-left .daff-callout__title,.daff-callout.daff-left .daff-callout__subtitle{text-align:left}.daff-callout.daff-center .daff-callout__icon,.daff-callout.daff-center .daff-callout__tagline,.daff-callout.daff-center .daff-callout__title,.daff-callout.daff-center .daff-callout__subtitle{margin-left:auto;margin-right:auto;text-align:center}.daff-callout.daff-right .daff-callout__icon,.daff-callout.daff-right .daff-callout__tagline,.daff-callout.daff-right .daff-callout__title,.daff-callout.daff-right .daff-callout__subtitle{margin-left:auto;text-align:right}\n"] }]
40
40
  }], ctorParameters: () => [{ type: i1.DaffTextAlignableDirective }], propDecorators: { class: [{
41
41
  type: HostBinding,
42
42
  args: ['class.daff-callout']
@@ -49,13 +49,14 @@ class DaffCalloutBodyDirective {
49
49
  */
50
50
  this.class = true;
51
51
  }
52
- /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: DaffCalloutBodyDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
53
- /** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.10", type: DaffCalloutBodyDirective, selector: "[daffCalloutBody]", host: { properties: { "class.daff-callout__body": "this.class" } }, ngImport: i0 }); }
52
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: DaffCalloutBodyDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
53
+ /** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.2", type: DaffCalloutBodyDirective, isStandalone: true, selector: "[daffCalloutBody]", host: { properties: { "class.daff-callout__body": "this.class" } }, ngImport: i0 }); }
54
54
  }
55
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: DaffCalloutBodyDirective, decorators: [{
55
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: DaffCalloutBodyDirective, decorators: [{
56
56
  type: Directive,
57
57
  args: [{
58
58
  selector: '[daffCalloutBody]',
59
+ standalone: true,
59
60
  }]
60
61
  }], propDecorators: { class: [{
61
62
  type: HostBinding,
@@ -69,13 +70,14 @@ class DaffCalloutIconDirective {
69
70
  */
70
71
  this.class = true;
71
72
  }
72
- /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: DaffCalloutIconDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
73
- /** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.10", type: DaffCalloutIconDirective, selector: "[daffCalloutIcon]", host: { properties: { "class.daff-callout__icon": "this.class" } }, ngImport: i0 }); }
73
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: DaffCalloutIconDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
74
+ /** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.2", type: DaffCalloutIconDirective, isStandalone: true, selector: "[daffCalloutIcon]", host: { properties: { "class.daff-callout__icon": "this.class" } }, ngImport: i0 }); }
74
75
  }
75
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: DaffCalloutIconDirective, decorators: [{
76
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: DaffCalloutIconDirective, decorators: [{
76
77
  type: Directive,
77
78
  args: [{
78
79
  selector: '[daffCalloutIcon]',
80
+ standalone: true,
79
81
  }]
80
82
  }], propDecorators: { class: [{
81
83
  type: HostBinding,
@@ -89,13 +91,14 @@ class DaffCalloutSubtitleDirective {
89
91
  */
90
92
  this.class = true;
91
93
  }
92
- /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: DaffCalloutSubtitleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
93
- /** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.10", type: DaffCalloutSubtitleDirective, selector: "[daffCalloutSubtitle]", host: { properties: { "class.daff-callout__subtitle": "this.class" } }, ngImport: i0 }); }
94
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: DaffCalloutSubtitleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
95
+ /** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.2", type: DaffCalloutSubtitleDirective, isStandalone: true, selector: "[daffCalloutSubtitle]", host: { properties: { "class.daff-callout__subtitle": "this.class" } }, ngImport: i0 }); }
94
96
  }
95
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: DaffCalloutSubtitleDirective, decorators: [{
97
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: DaffCalloutSubtitleDirective, decorators: [{
96
98
  type: Directive,
97
99
  args: [{
98
100
  selector: '[daffCalloutSubtitle]',
101
+ standalone: true,
99
102
  }]
100
103
  }], propDecorators: { class: [{
101
104
  type: HostBinding,
@@ -109,13 +112,14 @@ class DaffCalloutTaglineDirective {
109
112
  */
110
113
  this.class = true;
111
114
  }
112
- /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: DaffCalloutTaglineDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
113
- /** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.10", type: DaffCalloutTaglineDirective, selector: "[daffCalloutTagline]", host: { properties: { "class.daff-callout__tagline": "this.class" } }, ngImport: i0 }); }
115
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: DaffCalloutTaglineDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
116
+ /** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.2", type: DaffCalloutTaglineDirective, isStandalone: true, selector: "[daffCalloutTagline]", host: { properties: { "class.daff-callout__tagline": "this.class" } }, ngImport: i0 }); }
114
117
  }
115
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: DaffCalloutTaglineDirective, decorators: [{
118
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: DaffCalloutTaglineDirective, decorators: [{
116
119
  type: Directive,
117
120
  args: [{
118
121
  selector: '[daffCalloutTagline]',
122
+ standalone: true,
119
123
  }]
120
124
  }], propDecorators: { class: [{
121
125
  type: HostBinding,
@@ -129,41 +133,42 @@ class DaffCalloutTitleDirective {
129
133
  */
130
134
  this.class = true;
131
135
  }
132
- /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: DaffCalloutTitleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
133
- /** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.10", type: DaffCalloutTitleDirective, selector: "[daffCalloutTitle]", host: { properties: { "class.daff-callout__title": "this.class" } }, ngImport: i0 }); }
136
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: DaffCalloutTitleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
137
+ /** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.2", type: DaffCalloutTitleDirective, isStandalone: true, selector: "[daffCalloutTitle]", host: { properties: { "class.daff-callout__title": "this.class" } }, ngImport: i0 }); }
134
138
  }
135
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: DaffCalloutTitleDirective, decorators: [{
139
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: DaffCalloutTitleDirective, decorators: [{
136
140
  type: Directive,
137
141
  args: [{
138
142
  selector: '[daffCalloutTitle]',
143
+ standalone: true,
139
144
  }]
140
145
  }], propDecorators: { class: [{
141
146
  type: HostBinding,
142
147
  args: ['class.daff-callout__title']
143
148
  }] } });
144
149
 
150
+ /** @deprecated in favor of {@link DAFF_CALLOUT_COMPONENTS} */
145
151
  class DaffCalloutModule {
146
- /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: DaffCalloutModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
147
- /** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.10", ngImport: i0, type: DaffCalloutModule, declarations: [DaffCalloutComponent,
152
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: DaffCalloutModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
153
+ /** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.2", ngImport: i0, type: DaffCalloutModule, imports: [CommonModule,
154
+ DaffCalloutComponent,
148
155
  DaffCalloutIconDirective,
149
156
  DaffCalloutTitleDirective,
150
157
  DaffCalloutSubtitleDirective,
151
158
  DaffCalloutTaglineDirective,
152
- DaffCalloutBodyDirective], imports: [CommonModule], exports: [DaffCalloutComponent,
159
+ DaffCalloutBodyDirective], exports: [DaffCalloutComponent,
153
160
  DaffCalloutIconDirective,
154
161
  DaffCalloutSubtitleDirective,
155
162
  DaffCalloutTitleDirective,
156
163
  DaffCalloutTaglineDirective,
157
164
  DaffCalloutBodyDirective] }); }
158
- /** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: DaffCalloutModule, imports: [CommonModule] }); }
165
+ /** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: DaffCalloutModule, imports: [CommonModule] }); }
159
166
  }
160
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: DaffCalloutModule, decorators: [{
167
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: DaffCalloutModule, decorators: [{
161
168
  type: NgModule,
162
169
  args: [{
163
170
  imports: [
164
171
  CommonModule,
165
- ],
166
- declarations: [
167
172
  DaffCalloutComponent,
168
173
  DaffCalloutIconDirective,
169
174
  DaffCalloutTitleDirective,
@@ -182,9 +187,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
182
187
  }]
183
188
  }] });
184
189
 
190
+ const DAFF_CALLOUT_COMPONENTS = [
191
+ DaffCalloutComponent,
192
+ DaffCalloutIconDirective,
193
+ DaffCalloutTitleDirective,
194
+ DaffCalloutSubtitleDirective,
195
+ DaffCalloutTaglineDirective,
196
+ DaffCalloutBodyDirective,
197
+ ];
198
+
185
199
  /**
186
200
  * Generated bundle index. Do not edit.
187
201
  */
188
202
 
189
- export { DaffCalloutBodyDirective, DaffCalloutComponent, DaffCalloutIconDirective, DaffCalloutModule, DaffCalloutSubtitleDirective, DaffCalloutTaglineDirective, DaffCalloutTitleDirective };
203
+ export { DAFF_CALLOUT_COMPONENTS, DaffCalloutBodyDirective, DaffCalloutComponent, DaffCalloutIconDirective, DaffCalloutModule, DaffCalloutSubtitleDirective, DaffCalloutTaglineDirective, DaffCalloutTitleDirective };
190
204
  //# sourceMappingURL=daffodil-design-callout.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"daffodil-design-callout.mjs","sources":["../../../libs/design/callout/src/callout/callout.component.ts","../../../libs/design/callout/src/callout-body/callout-body.directive.ts","../../../libs/design/callout/src/callout-icon/callout-icon.directive.ts","../../../libs/design/callout/src/callout-subtitle/callout-subtitle.directive.ts","../../../libs/design/callout/src/callout-tagline/callout-tagline.directive.ts","../../../libs/design/callout/src/callout-title/callout-title.directive.ts","../../../libs/design/callout/src/callout.module.ts","../../../libs/design/callout/src/daffodil-design-callout.ts"],"sourcesContent":["import {\n Component,\n ViewEncapsulation,\n ChangeDetectionStrategy,\n HostBinding,\n} from '@angular/core';\n\nimport {\n DaffColorableDirective,\n DaffCompactableDirective,\n} from '@daffodil/design';\nimport {\n DaffArticleEncapsulatedDirective,\n DaffManageContainerLayoutDirective,\n DaffTextAlignableDirective,\n} from '@daffodil/design';\n\n/**\n * @inheritdoc\n */\n@Component({\n selector: 'daff-callout',\n template: '<ng-content></ng-content>',\n styleUrls: ['./callout.component.scss'],\n encapsulation: ViewEncapsulation.None,\n hostDirectives: [\n { directive: DaffArticleEncapsulatedDirective },\n { directive: DaffManageContainerLayoutDirective },\n {\n directive: DaffTextAlignableDirective,\n inputs: ['textAlignment'],\n },\n {\n directive: DaffCompactableDirective,\n inputs: ['compact'],\n },\n {\n directive: DaffColorableDirective,\n inputs: ['color'],\n },\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DaffCalloutComponent {\n constructor(private textAlignable: DaffTextAlignableDirective) {\n this.textAlignable.textAlignment = 'left';\n }\n\n /**\n * @docs-private\n */\n @HostBinding('class.daff-callout') class = true;\n}\n","import {\n Directive,\n HostBinding,\n} from '@angular/core';\n\n@Directive({\n selector: '[daffCalloutBody]',\n})\n\nexport class DaffCalloutBodyDirective {\n\n /**\n * @docs-private\n */\n @HostBinding('class.daff-callout__body') class = true;\n}\n","import {\n Directive,\n HostBinding,\n} from '@angular/core';\n\n@Directive({\n selector: '[daffCalloutIcon]',\n})\n\nexport class DaffCalloutIconDirective {\n\n /**\n * @docs-private\n */\n @HostBinding('class.daff-callout__icon') class = true;\n}\n","import {\n Directive,\n HostBinding,\n} from '@angular/core';\n\n@Directive({\n selector: '[daffCalloutSubtitle]',\n})\n\nexport class DaffCalloutSubtitleDirective {\n\n /**\n * @docs-private\n */\n @HostBinding('class.daff-callout__subtitle') class = true;\n}\n","import {\n Directive,\n HostBinding,\n} from '@angular/core';\n\n@Directive({\n selector: '[daffCalloutTagline]',\n})\n\nexport class DaffCalloutTaglineDirective {\n\n /**\n * @docs-private\n */\n @HostBinding('class.daff-callout__tagline') class = true;\n}\n","import {\n Directive,\n HostBinding,\n} from '@angular/core';\n\n@Directive({\n selector: '[daffCalloutTitle]',\n})\n\nexport class DaffCalloutTitleDirective {\n\n /**\n * @docs-private\n */\n @HostBinding('class.daff-callout__title') class = true;\n}\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\n\nimport { DaffCalloutComponent } from './callout/callout.component';\nimport { DaffCalloutBodyDirective } from './callout-body/callout-body.directive';\nimport { DaffCalloutIconDirective } from './callout-icon/callout-icon.directive';\nimport { DaffCalloutSubtitleDirective } from './callout-subtitle/callout-subtitle.directive';\nimport { DaffCalloutTaglineDirective } from './callout-tagline/callout-tagline.directive';\nimport { DaffCalloutTitleDirective } from './callout-title/callout-title.directive';\n\n@NgModule({\n imports: [\n CommonModule,\n ],\n declarations: [\n DaffCalloutComponent,\n DaffCalloutIconDirective,\n DaffCalloutTitleDirective,\n DaffCalloutSubtitleDirective,\n DaffCalloutTaglineDirective,\n DaffCalloutBodyDirective,\n ],\n exports: [\n DaffCalloutComponent,\n DaffCalloutIconDirective,\n DaffCalloutSubtitleDirective,\n DaffCalloutTitleDirective,\n DaffCalloutTaglineDirective,\n DaffCalloutBodyDirective,\n ],\n})\n\nexport class DaffCalloutModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"daffodil-design-callout.mjs","sources":["../../../libs/design/callout/src/callout/callout.component.ts","../../../libs/design/callout/src/callout-body/callout-body.directive.ts","../../../libs/design/callout/src/callout-icon/callout-icon.directive.ts","../../../libs/design/callout/src/callout-subtitle/callout-subtitle.directive.ts","../../../libs/design/callout/src/callout-tagline/callout-tagline.directive.ts","../../../libs/design/callout/src/callout-title/callout-title.directive.ts","../../../libs/design/callout/src/callout.module.ts","../../../libs/design/callout/src/callout.ts","../../../libs/design/callout/src/daffodil-design-callout.ts"],"sourcesContent":["import {\n Component,\n ViewEncapsulation,\n ChangeDetectionStrategy,\n HostBinding,\n} from '@angular/core';\n\nimport {\n DaffColorableDirective,\n DaffCompactableDirective,\n} from '@daffodil/design';\nimport {\n DaffArticleEncapsulatedDirective,\n DaffManageContainerLayoutDirective,\n DaffTextAlignableDirective,\n} from '@daffodil/design';\n\n/**\n * @inheritdoc\n */\n@Component({\n selector: 'daff-callout',\n template: '<ng-content></ng-content>',\n styleUrls: ['./callout.component.scss'],\n encapsulation: ViewEncapsulation.None,\n hostDirectives: [\n { directive: DaffArticleEncapsulatedDirective },\n { directive: DaffManageContainerLayoutDirective },\n {\n directive: DaffTextAlignableDirective,\n inputs: ['textAlignment'],\n },\n {\n directive: DaffCompactableDirective,\n inputs: ['compact'],\n },\n {\n directive: DaffColorableDirective,\n inputs: ['color'],\n },\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n standalone: true,\n})\nexport class DaffCalloutComponent {\n constructor(private textAlignable: DaffTextAlignableDirective) {\n this.textAlignable.defaultAlignment = 'left';\n }\n\n /**\n * @docs-private\n */\n @HostBinding('class.daff-callout') class = true;\n}\n","import {\n Directive,\n HostBinding,\n} from '@angular/core';\n\n@Directive({\n selector: '[daffCalloutBody]',\n standalone: true,\n})\n\nexport class DaffCalloutBodyDirective {\n\n /**\n * @docs-private\n */\n @HostBinding('class.daff-callout__body') class = true;\n}\n","import {\n Directive,\n HostBinding,\n} from '@angular/core';\n\n@Directive({\n selector: '[daffCalloutIcon]',\n standalone: true,\n})\n\nexport class DaffCalloutIconDirective {\n\n /**\n * @docs-private\n */\n @HostBinding('class.daff-callout__icon') class = true;\n}\n","import {\n Directive,\n HostBinding,\n} from '@angular/core';\n\n@Directive({\n selector: '[daffCalloutSubtitle]',\n standalone: true,\n})\n\nexport class DaffCalloutSubtitleDirective {\n\n /**\n * @docs-private\n */\n @HostBinding('class.daff-callout__subtitle') class = true;\n}\n","import {\n Directive,\n HostBinding,\n} from '@angular/core';\n\n@Directive({\n selector: '[daffCalloutTagline]',\n standalone: true,\n})\n\nexport class DaffCalloutTaglineDirective {\n\n /**\n * @docs-private\n */\n @HostBinding('class.daff-callout__tagline') class = true;\n}\n","import {\n Directive,\n HostBinding,\n} from '@angular/core';\n\n@Directive({\n selector: '[daffCalloutTitle]',\n standalone: true,\n})\n\nexport class DaffCalloutTitleDirective {\n\n /**\n * @docs-private\n */\n @HostBinding('class.daff-callout__title') class = true;\n}\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\n\nimport { DaffCalloutComponent } from './callout/callout.component';\nimport { DaffCalloutBodyDirective } from './callout-body/callout-body.directive';\nimport { DaffCalloutIconDirective } from './callout-icon/callout-icon.directive';\nimport { DaffCalloutSubtitleDirective } from './callout-subtitle/callout-subtitle.directive';\nimport { DaffCalloutTaglineDirective } from './callout-tagline/callout-tagline.directive';\nimport { DaffCalloutTitleDirective } from './callout-title/callout-title.directive';\n\n/** @deprecated in favor of {@link DAFF_CALLOUT_COMPONENTS} */\n@NgModule({\n imports: [\n CommonModule,\n DaffCalloutComponent,\n DaffCalloutIconDirective,\n DaffCalloutTitleDirective,\n DaffCalloutSubtitleDirective,\n DaffCalloutTaglineDirective,\n DaffCalloutBodyDirective,\n ],\n exports: [\n DaffCalloutComponent,\n DaffCalloutIconDirective,\n DaffCalloutSubtitleDirective,\n DaffCalloutTitleDirective,\n DaffCalloutTaglineDirective,\n DaffCalloutBodyDirective,\n ],\n})\n\nexport class DaffCalloutModule { }\n","import { DaffCalloutComponent } from './callout/callout.component';\nimport { DaffCalloutBodyDirective } from './callout-body/callout-body.directive';\nimport { DaffCalloutIconDirective } from './callout-icon/callout-icon.directive';\nimport { DaffCalloutSubtitleDirective } from './callout-subtitle/callout-subtitle.directive';\nimport { DaffCalloutTaglineDirective } from './callout-tagline/callout-tagline.directive';\nimport { DaffCalloutTitleDirective } from './callout-title/callout-title.directive';\n\nexport const DAFF_CALLOUT_COMPONENTS = <const>[\n DaffCalloutComponent,\n DaffCalloutIconDirective,\n DaffCalloutTitleDirective,\n DaffCalloutSubtitleDirective,\n DaffCalloutTaglineDirective,\n DaffCalloutBodyDirective,\n];\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
@@ -3,11 +3,12 @@ import { Component, ChangeDetectionStrategy } from '@angular/core';
3
3
  import { FaIconComponent } from '@fortawesome/angular-fontawesome';
4
4
  import { faMapMarked } from '@fortawesome/free-solid-svg-icons';
5
5
  import * as i3 from '@daffodil/design/button';
6
- import { DaffButtonModule } from '@daffodil/design/button';
6
+ import { DAFF_BUTTON_COMPONENTS } from '@daffodil/design/button';
7
7
  import * as i1 from '@daffodil/design/card';
8
- import { DaffCardModule } from '@daffodil/design/card';
8
+ import { DAFF_CARD_COMPONENTS } from '@daffodil/design/card';
9
9
  import * as i2 from '@daffodil/design/image';
10
- import { DaffImageModule } from '@daffodil/design/image';
10
+ import { DAFF_IMAGE_COMPONENTS } from '@daffodil/design/image';
11
+ import * as i4 from '@daffodil/design';
11
12
  import { NgFor } from '@angular/common';
12
13
  import * as i3$1 from '@angular/forms';
13
14
  import { UntypedFormControl, ReactiveFormsModule } from '@angular/forms';
@@ -16,16 +17,16 @@ class BasicCardComponent {
16
17
  constructor() {
17
18
  this.faMapMarked = faMapMarked;
18
19
  }
19
- /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BasicCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
20
- /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: BasicCardComponent, isStandalone: true, selector: "basic-card", ngImport: i0, template: "<daff-card>\n\t<daff-image daffCardImage\n\t\tsrc=\"https://images.unsplash.com/photo-1593519749347-80f101e93113?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=3774&q=80\"\n\t\talt=\"Bottom up view of Basel exhibition centre\"\n\t\twidth=\"1261\"\n\t\theight=\"946\">\n\t</daff-image>\n <fa-icon daffCardIcon [icon]=\"faMapMarked\"></fa-icon>\n <div daffCardTagline>Basel, Switzerland</div>\n <h4 daffCardTitle>Basel Exhibition Centre</h4>\n\t<div daffCardContent>\n <p>This covered, public space not only marks the entrance to the exhibitions, but also functions as a meeting place for locals and visitors.</p>\n <p>The architects called the prominent hole in the middle the \"Fenster zum Himmel\" (\"window to heaven\").</p>\n </div>\n <div daffCardActions>\n <button daff-button color=\"theme-contrast\">Learn More</button>\n </div>\n</daff-card>\n", styles: ["daff-card{max-width:480px}\n"], dependencies: [{ kind: "ngmodule", type: DaffCardModule }, { kind: "component", type: i1.DaffCardComponent, selector: "daff-card,daff-raised-card,daff-stroked-card,a[daff-card],a[daff-raised-card],a[daff-stroked-card]", inputs: ["orientation"] }, { kind: "directive", type: i1.DaffCardIconDirective, selector: "[daffCardIcon]" }, { kind: "directive", type: i1.DaffCardImageDirective, selector: "[daffCardImage]" }, { kind: "directive", type: i1.DaffCardTaglineDirective, selector: "[daffCardTagline]" }, { kind: "directive", type: i1.DaffCardTitleDirective, selector: "[daffCardTitle]" }, { kind: "directive", type: i1.DaffCardContentDirective, selector: "[daffCardContent]" }, { kind: "directive", type: i1.DaffCardActionsDirective, selector: "[daffCardActions]" }, { kind: "ngmodule", type: DaffImageModule }, { kind: "component", type: i2.DaffImageComponent, selector: "daff-image", inputs: ["src", "alt", "width", "height"], outputs: ["load"] }, { kind: "component", type: FaIconComponent, selector: "fa-icon", inputs: ["icon", "title", "animation", "spin", "pulse", "mask", "styles", "flip", "size", "pull", "border", "inverse", "symbol", "rotate", "fixedWidth", "classes", "transform", "a11yRole"] }, { kind: "ngmodule", type: DaffButtonModule }, { kind: "component", type: i3.DaffButtonComponent, selector: "button[daff-button],button[daff-stroked-button],button[daff-raised-button],button[daff-flat-button],button[daff-icon-button],button[daff-underline-button],a[daff-button],a[daff-stroked-button],a[daff-raised-button],a[daff-flat-button],a[daff-icon-button],a[daff-underline-button]", inputs: ["loading", "tabindex", "disabled"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
20
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: BasicCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
21
+ /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.2", type: BasicCardComponent, isStandalone: true, selector: "basic-card", ngImport: i0, template: "<daff-card>\n\t<daff-image daffCardImage\n\t\tsrc=\"https://images.unsplash.com/photo-1593519749347-80f101e93113?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=3774&q=80\"\n\t\talt=\"Bottom up view of Basel exhibition centre\"\n\t\twidth=\"1261\"\n\t\theight=\"946\">\n\t</daff-image>\n <fa-icon daffCardIcon [icon]=\"faMapMarked\"></fa-icon>\n <div daffCardTagline>Basel, Switzerland</div>\n <h4 daffCardTitle>Basel Exhibition Centre</h4>\n\t<div daffCardContent>\n <p>This covered, public space not only marks the entrance to the exhibitions, but also functions as a meeting place for locals and visitors.</p>\n <p>The architects called the prominent hole in the middle the \"Fenster zum Himmel\" (\"window to heaven\").</p>\n </div>\n <div daffCardActions>\n <button daff-button color=\"theme-contrast\">Learn More</button>\n </div>\n</daff-card>\n", styles: ["daff-card{max-width:480px}\n"], dependencies: [{ kind: "component", type: i1.DaffCardComponent, selector: "daff-card,daff-raised-card,daff-stroked-card,a[daff-card],a[daff-raised-card],a[daff-stroked-card]", inputs: ["orientation"] }, { kind: "directive", type: i1.DaffCardIconDirective, selector: "[daffCardIcon]" }, { kind: "directive", type: i1.DaffCardImageDirective, selector: "[daffCardImage]" }, { kind: "directive", type: i1.DaffCardTaglineDirective, selector: "[daffCardTagline]" }, { kind: "directive", type: i1.DaffCardTitleDirective, selector: "[daffCardTitle]" }, { kind: "directive", type: i1.DaffCardContentDirective, selector: "[daffCardContent]" }, { kind: "directive", type: i1.DaffCardActionsDirective, selector: "[daffCardActions]" }, { kind: "component", type: i2.DaffImageComponent, selector: "daff-image", inputs: ["src", "alt", "width", "height"], outputs: ["load"] }, { kind: "component", type: FaIconComponent, selector: "fa-icon", inputs: ["icon", "title", "animation", "mask", "flip", "size", "pull", "border", "inverse", "symbol", "rotate", "fixedWidth", "transform", "a11yRole"] }, { kind: "component", type: i3.DaffButtonComponent, selector: "button[daff-button],button[daff-stroked-button],button[daff-raised-button],button[daff-flat-button],button[daff-icon-button],button[daff-underline-button],a[daff-button],a[daff-stroked-button],a[daff-raised-button],a[daff-flat-button],a[daff-icon-button],a[daff-underline-button]", inputs: ["loading", "tabindex", "disabled"] }, { kind: "ngmodule", type: i4.DaffPrefixSuffixModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
21
22
  }
22
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BasicCardComponent, decorators: [{
23
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: BasicCardComponent, decorators: [{
23
24
  type: Component,
24
25
  args: [{ selector: 'basic-card', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [
25
- DaffCardModule,
26
- DaffImageModule,
26
+ DAFF_CARD_COMPONENTS,
27
+ DAFF_IMAGE_COMPONENTS,
27
28
  FaIconComponent,
28
- DaffButtonModule,
29
+ DAFF_BUTTON_COMPONENTS,
29
30
  ], template: "<daff-card>\n\t<daff-image daffCardImage\n\t\tsrc=\"https://images.unsplash.com/photo-1593519749347-80f101e93113?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=3774&q=80\"\n\t\talt=\"Bottom up view of Basel exhibition centre\"\n\t\twidth=\"1261\"\n\t\theight=\"946\">\n\t</daff-image>\n <fa-icon daffCardIcon [icon]=\"faMapMarked\"></fa-icon>\n <div daffCardTagline>Basel, Switzerland</div>\n <h4 daffCardTitle>Basel Exhibition Centre</h4>\n\t<div daffCardContent>\n <p>This covered, public space not only marks the entrance to the exhibitions, but also functions as a meeting place for locals and visitors.</p>\n <p>The architects called the prominent hole in the middle the \"Fenster zum Himmel\" (\"window to heaven\").</p>\n </div>\n <div daffCardActions>\n <button daff-button color=\"theme-contrast\">Learn More</button>\n </div>\n</daff-card>\n", styles: ["daff-card{max-width:480px}\n"] }]
30
31
  }] });
31
32
 
@@ -39,16 +40,16 @@ class CardOrientationComponent {
39
40
  { value: 'horizontal', label: 'Horizontal' },
40
41
  ];
41
42
  }
42
- /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: CardOrientationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
43
- /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: CardOrientationComponent, isStandalone: true, selector: "card-orientation", ngImport: i0, template: "<daff-card [orientation]=\"orientationControl.value\">\n <daff-image daffCardImage\n\t\tsrc=\"https://images.unsplash.com/photo-1593519749347-80f101e93113?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=3774&q=80\"\n\t\talt=\"Bottom up view of Basel exhibition centre\"\n\t\twidth=\"1261\"\n\t\theight=\"946\">\n\t</daff-image>\n <fa-icon daffCardIcon [icon]=\"faMapMarked\"></fa-icon>\n <div daffCardTagline>Basel, Switzerland</div>\n <h4 daffCardTitle>Basel Exhibition Centre</h4>\n\t<div daffCardContent>\n <p>This covered, public space not only marks the entrance to the exhibitions, but also functions as a meeting place for locals and visitors. The architects called the prominent hole in the middle the \"Fenster zum Himmel\" (\"window to heaven\").</p>\n </div>\n\t<div daffCardActions>\n <button daff-button color=\"theme-contrast\">Learn More</button>\n </div>\n</daff-card>\n\n<select [formControl]=\"orientationControl\">\n\t<option *ngFor=\"let option of options\" [value]=\"option.value\">{{ option.label }}</option>\n</select>", styles: [".daff-card--vertical{max-width:560px}\n"], dependencies: [{ kind: "ngmodule", type: DaffCardModule }, { kind: "component", type: i1.DaffCardComponent, selector: "daff-card,daff-raised-card,daff-stroked-card,a[daff-card],a[daff-raised-card],a[daff-stroked-card]", inputs: ["orientation"] }, { kind: "directive", type: i1.DaffCardIconDirective, selector: "[daffCardIcon]" }, { kind: "directive", type: i1.DaffCardImageDirective, selector: "[daffCardImage]" }, { kind: "directive", type: i1.DaffCardTaglineDirective, selector: "[daffCardTagline]" }, { kind: "directive", type: i1.DaffCardTitleDirective, selector: "[daffCardTitle]" }, { kind: "directive", type: i1.DaffCardContentDirective, selector: "[daffCardContent]" }, { kind: "directive", type: i1.DaffCardActionsDirective, selector: "[daffCardActions]" }, { kind: "ngmodule", type: DaffImageModule }, { kind: "component", type: i2.DaffImageComponent, selector: "daff-image", inputs: ["src", "alt", "width", "height"], outputs: ["load"] }, { kind: "component", type: FaIconComponent, selector: "fa-icon", inputs: ["icon", "title", "animation", "spin", "pulse", "mask", "styles", "flip", "size", "pull", "border", "inverse", "symbol", "rotate", "fixedWidth", "classes", "transform", "a11yRole"] }, { kind: "ngmodule", type: DaffButtonModule }, { kind: "component", type: i3.DaffButtonComponent, selector: "button[daff-button],button[daff-stroked-button],button[daff-raised-button],button[daff-flat-button],button[daff-icon-button],button[daff-underline-button],a[daff-button],a[daff-stroked-button],a[daff-raised-button],a[daff-flat-button],a[daff-icon-button],a[daff-underline-button]", inputs: ["loading", "tabindex", "disabled"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3$1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3$1.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
43
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: CardOrientationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
44
+ /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.2", type: CardOrientationComponent, isStandalone: true, selector: "card-orientation", ngImport: i0, template: "<daff-card [orientation]=\"orientationControl.value\">\n <daff-image daffCardImage\n\t\tsrc=\"https://images.unsplash.com/photo-1593519749347-80f101e93113?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=3774&q=80\"\n\t\talt=\"Bottom up view of Basel exhibition centre\"\n\t\twidth=\"1261\"\n\t\theight=\"946\">\n\t</daff-image>\n <fa-icon daffCardIcon [icon]=\"faMapMarked\"></fa-icon>\n <div daffCardTagline>Basel, Switzerland</div>\n <h4 daffCardTitle>Basel Exhibition Centre</h4>\n\t<div daffCardContent>\n <p>This covered, public space not only marks the entrance to the exhibitions, but also functions as a meeting place for locals and visitors. The architects called the prominent hole in the middle the \"Fenster zum Himmel\" (\"window to heaven\").</p>\n </div>\n\t<div daffCardActions>\n <button daff-button color=\"theme-contrast\">Learn More</button>\n </div>\n</daff-card>\n\n<select [formControl]=\"orientationControl\">\n\t<option *ngFor=\"let option of options\" [value]=\"option.value\">{{ option.label }}</option>\n</select>", styles: [".daff-card--vertical{max-width:560px}\n"], dependencies: [{ kind: "component", type: i1.DaffCardComponent, selector: "daff-card,daff-raised-card,daff-stroked-card,a[daff-card],a[daff-raised-card],a[daff-stroked-card]", inputs: ["orientation"] }, { kind: "directive", type: i1.DaffCardIconDirective, selector: "[daffCardIcon]" }, { kind: "directive", type: i1.DaffCardImageDirective, selector: "[daffCardImage]" }, { kind: "directive", type: i1.DaffCardTaglineDirective, selector: "[daffCardTagline]" }, { kind: "directive", type: i1.DaffCardTitleDirective, selector: "[daffCardTitle]" }, { kind: "directive", type: i1.DaffCardContentDirective, selector: "[daffCardContent]" }, { kind: "directive", type: i1.DaffCardActionsDirective, selector: "[daffCardActions]" }, { kind: "component", type: i2.DaffImageComponent, selector: "daff-image", inputs: ["src", "alt", "width", "height"], outputs: ["load"] }, { kind: "component", type: FaIconComponent, selector: "fa-icon", inputs: ["icon", "title", "animation", "mask", "flip", "size", "pull", "border", "inverse", "symbol", "rotate", "fixedWidth", "transform", "a11yRole"] }, { kind: "component", type: i3.DaffButtonComponent, selector: "button[daff-button],button[daff-stroked-button],button[daff-raised-button],button[daff-flat-button],button[daff-icon-button],button[daff-underline-button],a[daff-button],a[daff-stroked-button],a[daff-raised-button],a[daff-flat-button],a[daff-icon-button],a[daff-underline-button]", inputs: ["loading", "tabindex", "disabled"] }, { kind: "ngmodule", type: i4.DaffPrefixSuffixModule }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3$1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3$1.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
44
45
  }
45
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: CardOrientationComponent, decorators: [{
46
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: CardOrientationComponent, decorators: [{
46
47
  type: Component,
47
48
  args: [{ selector: 'card-orientation', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [
48
- DaffCardModule,
49
- DaffImageModule,
49
+ DAFF_CARD_COMPONENTS,
50
+ DAFF_IMAGE_COMPONENTS,
50
51
  FaIconComponent,
51
- DaffButtonModule,
52
+ DAFF_BUTTON_COMPONENTS,
52
53
  ReactiveFormsModule,
53
54
  NgFor,
54
55
  ], template: "<daff-card [orientation]=\"orientationControl.value\">\n <daff-image daffCardImage\n\t\tsrc=\"https://images.unsplash.com/photo-1593519749347-80f101e93113?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=3774&q=80\"\n\t\talt=\"Bottom up view of Basel exhibition centre\"\n\t\twidth=\"1261\"\n\t\theight=\"946\">\n\t</daff-image>\n <fa-icon daffCardIcon [icon]=\"faMapMarked\"></fa-icon>\n <div daffCardTagline>Basel, Switzerland</div>\n <h4 daffCardTitle>Basel Exhibition Centre</h4>\n\t<div daffCardContent>\n <p>This covered, public space not only marks the entrance to the exhibitions, but also functions as a meeting place for locals and visitors. The architects called the prominent hole in the middle the \"Fenster zum Himmel\" (\"window to heaven\").</p>\n </div>\n\t<div daffCardActions>\n <button daff-button color=\"theme-contrast\">Learn More</button>\n </div>\n</daff-card>\n\n<select [formControl]=\"orientationControl\">\n\t<option *ngFor=\"let option of options\" [value]=\"option.value\">{{ option.label }}</option>\n</select>", styles: [".daff-card--vertical{max-width:560px}\n"] }]
@@ -68,13 +69,13 @@ class CardThemingComponent {
68
69
  { value: 'white', label: 'White' },
69
70
  ];
70
71
  }
71
- /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: CardThemingComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
72
- /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: CardThemingComponent, isStandalone: true, selector: "card-theming", ngImport: i0, template: "<daff-card [color]=\"colorControl.value\">\n <div daffCardTagline>Card Tagline</div>\n <div daffCardTitle>Title</div>\n <div daffCardContent>\n <p>Cards are themable.</p>\n </div>\n</daff-card>\n\n<select [formControl]=\"colorControl\">\n\t<option *ngFor=\"let option of options\" [value]=\"option.value\">{{ option.label }}</option>\n</select>", styles: ["daff-card{max-width:480px}\n"], dependencies: [{ kind: "ngmodule", type: DaffCardModule }, { kind: "component", type: i1.DaffCardComponent, selector: "daff-card,daff-raised-card,daff-stroked-card,a[daff-card],a[daff-raised-card],a[daff-stroked-card]", inputs: ["orientation"] }, { kind: "directive", type: i1.DaffCardTaglineDirective, selector: "[daffCardTagline]" }, { kind: "directive", type: i1.DaffCardTitleDirective, selector: "[daffCardTitle]" }, { kind: "directive", type: i1.DaffCardContentDirective, selector: "[daffCardContent]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3$1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3$1.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
72
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: CardThemingComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
73
+ /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.2", type: CardThemingComponent, isStandalone: true, selector: "card-theming", ngImport: i0, template: "<daff-card [color]=\"colorControl.value\">\n <div daffCardTagline>Card Tagline</div>\n <div daffCardTitle>Title</div>\n <div daffCardContent>\n <p>Cards are themable.</p>\n </div>\n</daff-card>\n\n<select [formControl]=\"colorControl\">\n\t<option *ngFor=\"let option of options\" [value]=\"option.value\">{{ option.label }}</option>\n</select>", styles: ["daff-card{max-width:480px}\n"], dependencies: [{ kind: "component", type: i1.DaffCardComponent, selector: "daff-card,daff-raised-card,daff-stroked-card,a[daff-card],a[daff-raised-card],a[daff-stroked-card]", inputs: ["orientation"] }, { kind: "directive", type: i1.DaffCardTaglineDirective, selector: "[daffCardTagline]" }, { kind: "directive", type: i1.DaffCardTitleDirective, selector: "[daffCardTitle]" }, { kind: "directive", type: i1.DaffCardContentDirective, selector: "[daffCardContent]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3$1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3$1.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
73
74
  }
74
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: CardThemingComponent, decorators: [{
75
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: CardThemingComponent, decorators: [{
75
76
  type: Component,
76
77
  args: [{ selector: 'card-theming', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [
77
- DaffCardModule,
78
+ DAFF_CARD_COMPONENTS,
78
79
  ReactiveFormsModule,
79
80
  NgFor,
80
81
  ], template: "<daff-card [color]=\"colorControl.value\">\n <div daffCardTagline>Card Tagline</div>\n <div daffCardTitle>Title</div>\n <div daffCardContent>\n <p>Cards are themable.</p>\n </div>\n</daff-card>\n\n<select [formControl]=\"colorControl\">\n\t<option *ngFor=\"let option of options\" [value]=\"option.value\">{{ option.label }}</option>\n</select>", styles: ["daff-card{max-width:480px}\n"] }]
@@ -96,14 +97,14 @@ class LinkableCardComponent {
96
97
  { value: 'white', label: 'White' },
97
98
  ];
98
99
  }
99
- /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: LinkableCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
100
- /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: LinkableCardComponent, isStandalone: true, selector: "linkable-card", ngImport: i0, template: "<a daff-card href=\"https://www.basel.com/en/attractions/basel-exhibition-centre-f45d5dd6f0\" target=\"_blank\" [color]=\"basicColorControl.value\">\n\t<daff-image daffCardImage\n\t\tsrc=\"https://images.unsplash.com/photo-1593519749347-80f101e93113?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=3774&q=80\"\n\t\talt=\"Bottom up view of Basel exhibition centre\"\n\t\twidth=\"1261\"\n\t\theight=\"946\">\n\t</daff-image>\n\t<div daffCardTagline>Basel, Switzerland</div>\n\t<h4 daffCardTitle>Basel Exhibition Centre</h4>\n\t<div daffCardContent>\n\t\t<p>This covered, public space not only marks the entrance to the exhibitions, but also functions as a meeting place for locals and visitors. The architects called the prominent hole in the middle the \"Fenster zum Himmel\" (\"window to heaven\").</p>\n\t</div>\n</a>\n\n<select [formControl]=\"basicColorControl\">\n\t<option *ngFor=\"let option of options\" [value]=\"option.value\">{{ option.label }}</option>\n</select>\n\n<a daff-raised-card href=\"https://www.basel.com/en/attractions/basel-exhibition-centre-f45d5dd6f0\" target=\"_blank\" [color]=\"raisedColorControl.value\">\n\t<daff-image daffCardImage\n\t\tsrc=\"https://images.unsplash.com/photo-1593519749347-80f101e93113?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=3774&q=80\"\n\t\talt=\"Bottom up view of Basel exhibition centre\"\n\t\twidth=\"1261\"\n\t\theight=\"946\">\n\t</daff-image>\n\t<div daffCardTagline>Basel, Switzerland</div>\n\t<h4 daffCardTitle>Basel Exhibition Centre</h4>\n\t<div daffCardContent>\n\t\t<p>This covered, public space not only marks the entrance to the exhibitions, but also functions as a meeting place for locals and visitors. The architects called the prominent hole in the middle the \"Fenster zum Himmel\" (\"window to heaven\").</p>\n\t</div>\n</a>\n\n<select [formControl]=\"raisedColorControl\">\n\t<option *ngFor=\"let option of options\" [value]=\"option.value\">{{ option.label }}</option>\n</select>\n\n<a daff-stroked-card href=\"https://www.basel.com/en/attractions/basel-exhibition-centre-f45d5dd6f0\" target=\"_blank\" [color]=\"strokedColorControl.value\">\n\t<daff-image daffCardImage\n\t\tsrc=\"https://images.unsplash.com/photo-1593519749347-80f101e93113?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=3774&q=80\"\n\t\talt=\"Bottom up view of Basel exhibition centre\"\n\t\twidth=\"1261\"\n\t\theight=\"946\">\n\t</daff-image>\n\t<div daffCardTagline>Basel, Switzerland</div>\n\t<h4 daffCardTitle>Basel Exhibition Centre</h4>\n\t<div daffCardContent>\n\t\t<p>This covered, public space not only marks the entrance to the exhibitions, but also functions as a meeting place for locals and visitors. The architects called the prominent hole in the middle the \"Fenster zum Himmel\" (\"window to heaven\").</p>\n\t</div>\n</a>\n\n<select [formControl]=\"strokedColorControl\">\n\t<option *ngFor=\"let option of options\" [value]=\"option.value\">{{ option.label }}</option>\n</select>", styles: ["a.daff-card,a.daff-raised-card,a.daff-stroked-card{max-width:480px}\n"], dependencies: [{ kind: "ngmodule", type: DaffCardModule }, { kind: "component", type: i1.DaffCardComponent, selector: "daff-card,daff-raised-card,daff-stroked-card,a[daff-card],a[daff-raised-card],a[daff-stroked-card]", inputs: ["orientation"] }, { kind: "directive", type: i1.DaffCardImageDirective, selector: "[daffCardImage]" }, { kind: "directive", type: i1.DaffCardTaglineDirective, selector: "[daffCardTagline]" }, { kind: "directive", type: i1.DaffCardTitleDirective, selector: "[daffCardTitle]" }, { kind: "directive", type: i1.DaffCardContentDirective, selector: "[daffCardContent]" }, { kind: "ngmodule", type: DaffImageModule }, { kind: "component", type: i2.DaffImageComponent, selector: "daff-image", inputs: ["src", "alt", "width", "height"], outputs: ["load"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3$1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3$1.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
100
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: LinkableCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
101
+ /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.2", type: LinkableCardComponent, isStandalone: true, selector: "linkable-card", ngImport: i0, template: "<a daff-card href=\"https://www.basel.com/en/attractions/basel-exhibition-centre-f45d5dd6f0\" target=\"_blank\" [color]=\"basicColorControl.value\">\n\t<daff-image daffCardImage\n\t\tsrc=\"https://images.unsplash.com/photo-1593519749347-80f101e93113?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=3774&q=80\"\n\t\talt=\"Bottom up view of Basel exhibition centre\"\n\t\twidth=\"1261\"\n\t\theight=\"946\">\n\t</daff-image>\n\t<div daffCardTagline>Basel, Switzerland</div>\n\t<h4 daffCardTitle>Basel Exhibition Centre</h4>\n\t<div daffCardContent>\n\t\t<p>This covered, public space not only marks the entrance to the exhibitions, but also functions as a meeting place for locals and visitors. The architects called the prominent hole in the middle the \"Fenster zum Himmel\" (\"window to heaven\").</p>\n\t</div>\n</a>\n\n<select [formControl]=\"basicColorControl\">\n\t<option *ngFor=\"let option of options\" [value]=\"option.value\">{{ option.label }}</option>\n</select>\n\n<a daff-raised-card href=\"https://www.basel.com/en/attractions/basel-exhibition-centre-f45d5dd6f0\" target=\"_blank\" [color]=\"raisedColorControl.value\">\n\t<daff-image daffCardImage\n\t\tsrc=\"https://images.unsplash.com/photo-1593519749347-80f101e93113?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=3774&q=80\"\n\t\talt=\"Bottom up view of Basel exhibition centre\"\n\t\twidth=\"1261\"\n\t\theight=\"946\">\n\t</daff-image>\n\t<div daffCardTagline>Basel, Switzerland</div>\n\t<h4 daffCardTitle>Basel Exhibition Centre</h4>\n\t<div daffCardContent>\n\t\t<p>This covered, public space not only marks the entrance to the exhibitions, but also functions as a meeting place for locals and visitors. The architects called the prominent hole in the middle the \"Fenster zum Himmel\" (\"window to heaven\").</p>\n\t</div>\n</a>\n\n<select [formControl]=\"raisedColorControl\">\n\t<option *ngFor=\"let option of options\" [value]=\"option.value\">{{ option.label }}</option>\n</select>\n\n<a daff-stroked-card href=\"https://www.basel.com/en/attractions/basel-exhibition-centre-f45d5dd6f0\" target=\"_blank\" [color]=\"strokedColorControl.value\">\n\t<daff-image daffCardImage\n\t\tsrc=\"https://images.unsplash.com/photo-1593519749347-80f101e93113?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=3774&q=80\"\n\t\talt=\"Bottom up view of Basel exhibition centre\"\n\t\twidth=\"1261\"\n\t\theight=\"946\">\n\t</daff-image>\n\t<div daffCardTagline>Basel, Switzerland</div>\n\t<h4 daffCardTitle>Basel Exhibition Centre</h4>\n\t<div daffCardContent>\n\t\t<p>This covered, public space not only marks the entrance to the exhibitions, but also functions as a meeting place for locals and visitors. The architects called the prominent hole in the middle the \"Fenster zum Himmel\" (\"window to heaven\").</p>\n\t</div>\n</a>\n\n<select [formControl]=\"strokedColorControl\">\n\t<option *ngFor=\"let option of options\" [value]=\"option.value\">{{ option.label }}</option>\n</select>", styles: ["a.daff-card,a.daff-raised-card,a.daff-stroked-card{max-width:480px}\n"], dependencies: [{ kind: "component", type: i1.DaffCardComponent, selector: "daff-card,daff-raised-card,daff-stroked-card,a[daff-card],a[daff-raised-card],a[daff-stroked-card]", inputs: ["orientation"] }, { kind: "directive", type: i1.DaffCardImageDirective, selector: "[daffCardImage]" }, { kind: "directive", type: i1.DaffCardTaglineDirective, selector: "[daffCardTagline]" }, { kind: "directive", type: i1.DaffCardTitleDirective, selector: "[daffCardTitle]" }, { kind: "directive", type: i1.DaffCardContentDirective, selector: "[daffCardContent]" }, { kind: "component", type: i2.DaffImageComponent, selector: "daff-image", inputs: ["src", "alt", "width", "height"], outputs: ["load"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3$1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3$1.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
101
102
  }
102
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: LinkableCardComponent, decorators: [{
103
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: LinkableCardComponent, decorators: [{
103
104
  type: Component,
104
105
  args: [{ selector: 'linkable-card', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [
105
- DaffCardModule,
106
- DaffImageModule,
106
+ DAFF_CARD_COMPONENTS,
107
+ DAFF_IMAGE_COMPONENTS,
107
108
  ReactiveFormsModule,
108
109
  NgFor,
109
110
  ], template: "<a daff-card href=\"https://www.basel.com/en/attractions/basel-exhibition-centre-f45d5dd6f0\" target=\"_blank\" [color]=\"basicColorControl.value\">\n\t<daff-image daffCardImage\n\t\tsrc=\"https://images.unsplash.com/photo-1593519749347-80f101e93113?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=3774&q=80\"\n\t\talt=\"Bottom up view of Basel exhibition centre\"\n\t\twidth=\"1261\"\n\t\theight=\"946\">\n\t</daff-image>\n\t<div daffCardTagline>Basel, Switzerland</div>\n\t<h4 daffCardTitle>Basel Exhibition Centre</h4>\n\t<div daffCardContent>\n\t\t<p>This covered, public space not only marks the entrance to the exhibitions, but also functions as a meeting place for locals and visitors. The architects called the prominent hole in the middle the \"Fenster zum Himmel\" (\"window to heaven\").</p>\n\t</div>\n</a>\n\n<select [formControl]=\"basicColorControl\">\n\t<option *ngFor=\"let option of options\" [value]=\"option.value\">{{ option.label }}</option>\n</select>\n\n<a daff-raised-card href=\"https://www.basel.com/en/attractions/basel-exhibition-centre-f45d5dd6f0\" target=\"_blank\" [color]=\"raisedColorControl.value\">\n\t<daff-image daffCardImage\n\t\tsrc=\"https://images.unsplash.com/photo-1593519749347-80f101e93113?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=3774&q=80\"\n\t\talt=\"Bottom up view of Basel exhibition centre\"\n\t\twidth=\"1261\"\n\t\theight=\"946\">\n\t</daff-image>\n\t<div daffCardTagline>Basel, Switzerland</div>\n\t<h4 daffCardTitle>Basel Exhibition Centre</h4>\n\t<div daffCardContent>\n\t\t<p>This covered, public space not only marks the entrance to the exhibitions, but also functions as a meeting place for locals and visitors. The architects called the prominent hole in the middle the \"Fenster zum Himmel\" (\"window to heaven\").</p>\n\t</div>\n</a>\n\n<select [formControl]=\"raisedColorControl\">\n\t<option *ngFor=\"let option of options\" [value]=\"option.value\">{{ option.label }}</option>\n</select>\n\n<a daff-stroked-card href=\"https://www.basel.com/en/attractions/basel-exhibition-centre-f45d5dd6f0\" target=\"_blank\" [color]=\"strokedColorControl.value\">\n\t<daff-image daffCardImage\n\t\tsrc=\"https://images.unsplash.com/photo-1593519749347-80f101e93113?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=3774&q=80\"\n\t\talt=\"Bottom up view of Basel exhibition centre\"\n\t\twidth=\"1261\"\n\t\theight=\"946\">\n\t</daff-image>\n\t<div daffCardTagline>Basel, Switzerland</div>\n\t<h4 daffCardTitle>Basel Exhibition Centre</h4>\n\t<div daffCardContent>\n\t\t<p>This covered, public space not only marks the entrance to the exhibitions, but also functions as a meeting place for locals and visitors. The architects called the prominent hole in the middle the \"Fenster zum Himmel\" (\"window to heaven\").</p>\n\t</div>\n</a>\n\n<select [formControl]=\"strokedColorControl\">\n\t<option *ngFor=\"let option of options\" [value]=\"option.value\">{{ option.label }}</option>\n</select>", styles: ["a.daff-card,a.daff-raised-card,a.daff-stroked-card{max-width:480px}\n"] }]
@@ -123,14 +124,14 @@ class RaisedCardComponent {
123
124
  { value: 'white', label: 'White' },
124
125
  ];
125
126
  }
126
- /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: RaisedCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
127
- /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: RaisedCardComponent, isStandalone: true, selector: "raised-card", ngImport: i0, template: "<daff-raised-card [color]=\"colorControl.value\">\n\t<daff-image daffCardImage\n\t\tsrc=\"https://images.unsplash.com/photo-1593519749347-80f101e93113?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=3774&q=80\"\n\t\talt=\"Bottom up view of Basel exhibition centre\"\n\t\twidth=\"1261\"\n\t\theight=\"946\">\n\t</daff-image>\n\t<div daffCardTagline>Basel, Switzerland</div>\n\t<h4 daffCardTitle>Basel Exhibition Centre</h4>\n\t<div daffCardContent>\n\t\t<p>This covered, public space not only marks the entrance to the exhibitions, but also functions as a meeting place for locals and visitors. The architects called the prominent hole in the middle the \"Fenster zum Himmel\" (\"window to heaven\").</p>\n\t</div>\n</daff-raised-card>\n\n<select [formControl]=\"colorControl\">\n\t<option *ngFor=\"let option of options\" [value]=\"option.value\">{{ option.label }}</option>\n</select>", styles: ["daff-raised-card{max-width:480px}\n"], dependencies: [{ kind: "ngmodule", type: DaffCardModule }, { kind: "component", type: i1.DaffCardComponent, selector: "daff-card,daff-raised-card,daff-stroked-card,a[daff-card],a[daff-raised-card],a[daff-stroked-card]", inputs: ["orientation"] }, { kind: "directive", type: i1.DaffCardImageDirective, selector: "[daffCardImage]" }, { kind: "directive", type: i1.DaffCardTaglineDirective, selector: "[daffCardTagline]" }, { kind: "directive", type: i1.DaffCardTitleDirective, selector: "[daffCardTitle]" }, { kind: "directive", type: i1.DaffCardContentDirective, selector: "[daffCardContent]" }, { kind: "ngmodule", type: DaffImageModule }, { kind: "component", type: i2.DaffImageComponent, selector: "daff-image", inputs: ["src", "alt", "width", "height"], outputs: ["load"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3$1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3$1.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
127
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: RaisedCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
128
+ /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.2", type: RaisedCardComponent, isStandalone: true, selector: "raised-card", ngImport: i0, template: "<daff-raised-card [color]=\"colorControl.value\">\n\t<daff-image daffCardImage\n\t\tsrc=\"https://images.unsplash.com/photo-1593519749347-80f101e93113?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=3774&q=80\"\n\t\talt=\"Bottom up view of Basel exhibition centre\"\n\t\twidth=\"1261\"\n\t\theight=\"946\">\n\t</daff-image>\n\t<div daffCardTagline>Basel, Switzerland</div>\n\t<h4 daffCardTitle>Basel Exhibition Centre</h4>\n\t<div daffCardContent>\n\t\t<p>This covered, public space not only marks the entrance to the exhibitions, but also functions as a meeting place for locals and visitors. The architects called the prominent hole in the middle the \"Fenster zum Himmel\" (\"window to heaven\").</p>\n\t</div>\n</daff-raised-card>\n\n<select [formControl]=\"colorControl\">\n\t<option *ngFor=\"let option of options\" [value]=\"option.value\">{{ option.label }}</option>\n</select>", styles: ["daff-raised-card{max-width:480px}\n"], dependencies: [{ kind: "component", type: i1.DaffCardComponent, selector: "daff-card,daff-raised-card,daff-stroked-card,a[daff-card],a[daff-raised-card],a[daff-stroked-card]", inputs: ["orientation"] }, { kind: "directive", type: i1.DaffCardImageDirective, selector: "[daffCardImage]" }, { kind: "directive", type: i1.DaffCardTaglineDirective, selector: "[daffCardTagline]" }, { kind: "directive", type: i1.DaffCardTitleDirective, selector: "[daffCardTitle]" }, { kind: "directive", type: i1.DaffCardContentDirective, selector: "[daffCardContent]" }, { kind: "component", type: i2.DaffImageComponent, selector: "daff-image", inputs: ["src", "alt", "width", "height"], outputs: ["load"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3$1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3$1.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
128
129
  }
129
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: RaisedCardComponent, decorators: [{
130
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: RaisedCardComponent, decorators: [{
130
131
  type: Component,
131
132
  args: [{ selector: 'raised-card', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [
132
- DaffCardModule,
133
- DaffImageModule,
133
+ DAFF_CARD_COMPONENTS,
134
+ DAFF_IMAGE_COMPONENTS,
134
135
  ReactiveFormsModule,
135
136
  NgFor,
136
137
  ], template: "<daff-raised-card [color]=\"colorControl.value\">\n\t<daff-image daffCardImage\n\t\tsrc=\"https://images.unsplash.com/photo-1593519749347-80f101e93113?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=3774&q=80\"\n\t\talt=\"Bottom up view of Basel exhibition centre\"\n\t\twidth=\"1261\"\n\t\theight=\"946\">\n\t</daff-image>\n\t<div daffCardTagline>Basel, Switzerland</div>\n\t<h4 daffCardTitle>Basel Exhibition Centre</h4>\n\t<div daffCardContent>\n\t\t<p>This covered, public space not only marks the entrance to the exhibitions, but also functions as a meeting place for locals and visitors. The architects called the prominent hole in the middle the \"Fenster zum Himmel\" (\"window to heaven\").</p>\n\t</div>\n</daff-raised-card>\n\n<select [formControl]=\"colorControl\">\n\t<option *ngFor=\"let option of options\" [value]=\"option.value\">{{ option.label }}</option>\n</select>", styles: ["daff-raised-card{max-width:480px}\n"] }]
@@ -150,14 +151,14 @@ class StrokedCardComponent {
150
151
  { value: 'white', label: 'White' },
151
152
  ];
152
153
  }
153
- /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: StrokedCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
154
- /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: StrokedCardComponent, isStandalone: true, selector: "stroked-card", ngImport: i0, template: "<daff-stroked-card [color]=\"colorControl.value\">\n\t<daff-image daffCardImage\n\t\tsrc=\"https://images.unsplash.com/photo-1593519749347-80f101e93113?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=3774&q=80\"\n\t\talt=\"Bottom up view of Basel exhibition centre\"\n\t\twidth=\"1261\"\n\t\theight=\"946\">\n\t</daff-image>\n\t<div daffCardTagline>Basel, Switzerland</div>\n\t<h4 daffCardTitle>Basel Exhibition Centre</h4>\n\t<div daffCardContent>\n\t\t<p>This covered, public space not only marks the entrance to the exhibitions, but also functions as a meeting place for locals and visitors. The architects called the prominent hole in the middle the \"Fenster zum Himmel\" (\"window to heaven\").</p>\n\t</div>\n</daff-stroked-card>\n\n<select [formControl]=\"colorControl\">\n\t<option *ngFor=\"let option of options\" [value]=\"option.value\">{{ option.label }}</option>\n</select>", styles: [":host{display:block;max-width:340px}\n"], dependencies: [{ kind: "ngmodule", type: DaffCardModule }, { kind: "component", type: i1.DaffCardComponent, selector: "daff-card,daff-raised-card,daff-stroked-card,a[daff-card],a[daff-raised-card],a[daff-stroked-card]", inputs: ["orientation"] }, { kind: "directive", type: i1.DaffCardImageDirective, selector: "[daffCardImage]" }, { kind: "directive", type: i1.DaffCardTaglineDirective, selector: "[daffCardTagline]" }, { kind: "directive", type: i1.DaffCardTitleDirective, selector: "[daffCardTitle]" }, { kind: "directive", type: i1.DaffCardContentDirective, selector: "[daffCardContent]" }, { kind: "ngmodule", type: DaffImageModule }, { kind: "component", type: i2.DaffImageComponent, selector: "daff-image", inputs: ["src", "alt", "width", "height"], outputs: ["load"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3$1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3$1.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
154
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: StrokedCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
155
+ /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.2", type: StrokedCardComponent, isStandalone: true, selector: "stroked-card", ngImport: i0, template: "<daff-stroked-card [color]=\"colorControl.value\">\n\t<daff-image daffCardImage\n\t\tsrc=\"https://images.unsplash.com/photo-1593519749347-80f101e93113?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=3774&q=80\"\n\t\talt=\"Bottom up view of Basel exhibition centre\"\n\t\twidth=\"1261\"\n\t\theight=\"946\">\n\t</daff-image>\n\t<div daffCardTagline>Basel, Switzerland</div>\n\t<h4 daffCardTitle>Basel Exhibition Centre</h4>\n\t<div daffCardContent>\n\t\t<p>This covered, public space not only marks the entrance to the exhibitions, but also functions as a meeting place for locals and visitors. The architects called the prominent hole in the middle the \"Fenster zum Himmel\" (\"window to heaven\").</p>\n\t</div>\n</daff-stroked-card>\n\n<select [formControl]=\"colorControl\">\n\t<option *ngFor=\"let option of options\" [value]=\"option.value\">{{ option.label }}</option>\n</select>", styles: [":host{display:block;max-width:340px}\n"], dependencies: [{ kind: "component", type: i1.DaffCardComponent, selector: "daff-card,daff-raised-card,daff-stroked-card,a[daff-card],a[daff-raised-card],a[daff-stroked-card]", inputs: ["orientation"] }, { kind: "directive", type: i1.DaffCardImageDirective, selector: "[daffCardImage]" }, { kind: "directive", type: i1.DaffCardTaglineDirective, selector: "[daffCardTagline]" }, { kind: "directive", type: i1.DaffCardTitleDirective, selector: "[daffCardTitle]" }, { kind: "directive", type: i1.DaffCardContentDirective, selector: "[daffCardContent]" }, { kind: "component", type: i2.DaffImageComponent, selector: "daff-image", inputs: ["src", "alt", "width", "height"], outputs: ["load"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3$1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3$1.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
155
156
  }
156
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: StrokedCardComponent, decorators: [{
157
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: StrokedCardComponent, decorators: [{
157
158
  type: Component,
158
159
  args: [{ selector: 'stroked-card', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [
159
- DaffCardModule,
160
- DaffImageModule,
160
+ DAFF_CARD_COMPONENTS,
161
+ DAFF_IMAGE_COMPONENTS,
161
162
  ReactiveFormsModule,
162
163
  NgFor,
163
164
  ], template: "<daff-stroked-card [color]=\"colorControl.value\">\n\t<daff-image daffCardImage\n\t\tsrc=\"https://images.unsplash.com/photo-1593519749347-80f101e93113?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=3774&q=80\"\n\t\talt=\"Bottom up view of Basel exhibition centre\"\n\t\twidth=\"1261\"\n\t\theight=\"946\">\n\t</daff-image>\n\t<div daffCardTagline>Basel, Switzerland</div>\n\t<h4 daffCardTitle>Basel Exhibition Centre</h4>\n\t<div daffCardContent>\n\t\t<p>This covered, public space not only marks the entrance to the exhibitions, but also functions as a meeting place for locals and visitors. The architects called the prominent hole in the middle the \"Fenster zum Himmel\" (\"window to heaven\").</p>\n\t</div>\n</daff-stroked-card>\n\n<select [formControl]=\"colorControl\">\n\t<option *ngFor=\"let option of options\" [value]=\"option.value\">{{ option.label }}</option>\n</select>", styles: [":host{display:block;max-width:340px}\n"] }]