@fundamental-ngx/core 0.46.0-rc.4 → 0.46.0-rc.40

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 (389) hide show
  1. package/avatar/avatar.component.d.ts +2 -3
  2. package/avatar/avatar.module.d.ts +1 -2
  3. package/avatar-group/README.md +3 -21
  4. package/avatar-group/avatar-group.component.d.ts +51 -74
  5. package/avatar-group/avatar-group.module.d.ts +5 -8
  6. package/avatar-group/components/avatar-group-host.component.d.ts +61 -0
  7. package/avatar-group/components/avatar-group-overflow-body/avatar-group-overflow-body.component.d.ts +16 -0
  8. package/avatar-group/components/avatar-group-overflow-button.component.d.ts +36 -0
  9. package/avatar-group/components/default-avatar-group-overflow-body/default-avatar-group-overflow-body.component.d.ts +42 -0
  10. package/avatar-group/directives/avatar-group-internal-overflow-button.directive.d.ts +27 -0
  11. package/avatar-group/directives/avatar-group-item-renderer.directive.d.ts +81 -0
  12. package/avatar-group/directives/avatar-group-item.directive.d.ts +23 -16
  13. package/avatar-group/directives/avatar-group-overflow-body.directive.d.ts +13 -38
  14. package/avatar-group/directives/avatar-group-overflow-button.directive.d.ts +12 -26
  15. package/avatar-group/index.d.ts +5 -6
  16. package/avatar-group/tokens.d.ts +2 -6
  17. package/avatar-group/types.d.ts +9 -0
  18. package/avatar-group-legacy/README.md +25 -0
  19. package/avatar-group-legacy/avatar-group-legacy.component.d.ts +76 -0
  20. package/{avatar-group/avatar-group.interface.d.ts → avatar-group-legacy/avatar-group-legacy.interface.d.ts} +1 -1
  21. package/avatar-group-legacy/avatar-group-legacy.module.d.ts +14 -0
  22. package/avatar-group-legacy/directives/avatar-group-legacy-focusable-avatar.directive.d.ts +19 -0
  23. package/avatar-group-legacy/directives/avatar-group-legacy-item.directive.d.ts +20 -0
  24. package/avatar-group-legacy/directives/avatar-group-legacy-overflow-body.directive.d.ts +40 -0
  25. package/avatar-group-legacy/directives/avatar-group-legacy-overflow-button-text.directive.d.ts +5 -0
  26. package/avatar-group-legacy/directives/avatar-group-legacy-overflow-button.directive.d.ts +28 -0
  27. package/avatar-group-legacy/directives/avatar-group-legacy-overflow-item.directive.d.ts +6 -0
  28. package/avatar-group-legacy/directives/avatar-group-legacy-popover-control.directive.d.ts +10 -0
  29. package/avatar-group-legacy/index.d.ts +10 -0
  30. package/avatar-group-legacy/tokens.d.ts +7 -0
  31. package/button/base-button.d.ts +3 -1
  32. package/button/button.component.d.ts +6 -1
  33. package/checkbox/checkbox/checkbox.component.d.ts +22 -11
  34. package/content-density/content-density.module.d.ts +2 -3
  35. package/content-density/index.d.ts +3 -2
  36. package/content-density/provide-content-density.d.ts +7 -0
  37. package/date-picker/date-picker.component.d.ts +6 -4
  38. package/datetime-picker/datetime-picker.component.d.ts +8 -6
  39. package/dialog/base/dialog-base.service.d.ts +4 -3
  40. package/dialog/dialog-container/dialog-container.component.d.ts +8 -7
  41. package/dialog/index.d.ts +11 -10
  42. package/dialog/utils/dialog-container.model.d.ts +4 -0
  43. package/dynamic-page/dynamic-page.component.d.ts +12 -7
  44. package/esm2022/avatar/avatar.component.mjs +5 -5
  45. package/esm2022/avatar/avatar.module.mjs +5 -7
  46. package/esm2022/avatar-group/avatar-group.component.mjs +84 -183
  47. package/esm2022/avatar-group/avatar-group.module.mjs +19 -31
  48. package/esm2022/avatar-group/components/avatar-group-host.component.mjs +127 -0
  49. package/esm2022/avatar-group/components/avatar-group-overflow-body/avatar-group-overflow-body.component.mjs +34 -0
  50. package/esm2022/avatar-group/components/avatar-group-overflow-button.component.mjs +90 -0
  51. package/esm2022/avatar-group/components/default-avatar-group-overflow-body/default-avatar-group-overflow-body.component.mjs +92 -0
  52. package/esm2022/avatar-group/directives/avatar-group-internal-overflow-button.directive.mjs +60 -0
  53. package/esm2022/avatar-group/directives/avatar-group-item-renderer.directive.mjs +139 -0
  54. package/esm2022/avatar-group/directives/avatar-group-item.directive.mjs +35 -33
  55. package/esm2022/avatar-group/directives/avatar-group-overflow-body.directive.mjs +13 -99
  56. package/esm2022/avatar-group/directives/avatar-group-overflow-button.directive.mjs +14 -60
  57. package/esm2022/avatar-group/index.mjs +6 -7
  58. package/esm2022/avatar-group/tokens.mjs +2 -3
  59. package/esm2022/avatar-group/types.mjs +2 -0
  60. package/esm2022/avatar-group-legacy/avatar-group-legacy.component.mjs +206 -0
  61. package/esm2022/avatar-group-legacy/avatar-group-legacy.interface.mjs +2 -0
  62. package/esm2022/avatar-group-legacy/avatar-group-legacy.module.mjs +55 -0
  63. package/esm2022/avatar-group-legacy/directives/avatar-group-legacy-focusable-avatar.directive.mjs +59 -0
  64. package/esm2022/avatar-group-legacy/directives/avatar-group-legacy-item.directive.mjs +46 -0
  65. package/esm2022/avatar-group-legacy/directives/avatar-group-legacy-overflow-body.directive.mjs +109 -0
  66. package/esm2022/avatar-group-legacy/directives/avatar-group-legacy-overflow-button-text.directive.mjs +16 -0
  67. package/esm2022/avatar-group-legacy/directives/avatar-group-legacy-overflow-button.directive.mjs +68 -0
  68. package/esm2022/avatar-group-legacy/directives/avatar-group-legacy-overflow-item.directive.mjs +16 -0
  69. package/esm2022/avatar-group-legacy/directives/avatar-group-legacy-popover-control.directive.mjs +33 -0
  70. package/esm2022/avatar-group-legacy/fundamental-ngx-core-avatar-group-legacy.mjs +5 -0
  71. package/esm2022/avatar-group-legacy/index.mjs +11 -0
  72. package/esm2022/avatar-group-legacy/tokens.mjs +4 -0
  73. package/esm2022/breadcrumb/breadcrumb.component.mjs +1 -1
  74. package/esm2022/button/base-button.mjs +5 -3
  75. package/esm2022/button/button.component.mjs +22 -8
  76. package/esm2022/checkbox/checkbox/checkbox.component.mjs +24 -10
  77. package/esm2022/combobox/combobox.component.mjs +1 -1
  78. package/esm2022/content-density/content-density.module.mjs +6 -68
  79. package/esm2022/content-density/index.mjs +4 -3
  80. package/esm2022/content-density/provide-content-density.mjs +71 -0
  81. package/esm2022/date-picker/date-picker.component.mjs +26 -19
  82. package/esm2022/datetime-picker/datetime-picker.component.mjs +32 -22
  83. package/esm2022/dialog/base/dialog-base.service.mjs +7 -3
  84. package/esm2022/dialog/dialog-close-button/dialog-close-button.component.mjs +1 -1
  85. package/esm2022/dialog/dialog-container/dialog-container.component.mjs +11 -11
  86. package/esm2022/dialog/index.mjs +12 -11
  87. package/esm2022/dialog/utils/dialog-container.model.mjs +2 -0
  88. package/esm2022/dynamic-page/dynamic-page.component.mjs +29 -26
  89. package/esm2022/facets/facet.module.mjs +8 -8
  90. package/esm2022/feed-list-item/feed-list-item.module.mjs +11 -11
  91. package/esm2022/form/fieldset/fieldset.component.mjs +4 -4
  92. package/esm2022/form/fieldset/fieldset.module.mjs +9 -7
  93. package/esm2022/form/form-control/form-control.component.mjs +25 -16
  94. package/esm2022/form/form-control/form-control.module.mjs +9 -10
  95. package/esm2022/form/form-group/form-group.component.mjs +4 -4
  96. package/esm2022/form/form-group/form-group.module.mjs +9 -7
  97. package/esm2022/form/form-header/form-header.component.mjs +3 -3
  98. package/esm2022/form/form-header/form-header.module.mjs +9 -7
  99. package/esm2022/form/form-input-message-group/form-input-message-group.component.mjs +8 -5
  100. package/esm2022/form/form-input-message-group/form-input-message-group.module.mjs +10 -9
  101. package/esm2022/form/form-item/form-item.component.mjs +5 -5
  102. package/esm2022/form/form-item/form-item.module.mjs +9 -7
  103. package/esm2022/form/form-label/form-label.component.mjs +9 -7
  104. package/esm2022/form/form-label/form-label.module.mjs +9 -10
  105. package/esm2022/form/form-legend/form-legend.directive.mjs +4 -3
  106. package/esm2022/form/form-legend/form-legend.module.mjs +9 -7
  107. package/esm2022/form/form-message/form-message.component.mjs +3 -3
  108. package/esm2022/form/form-message/form-message.module.mjs +9 -7
  109. package/esm2022/form/form.module.mjs +54 -40
  110. package/esm2022/form/index.mjs +10 -12
  111. package/esm2022/formatted-text/formatted-text.component.mjs +4 -4
  112. package/esm2022/formatted-text/formatted-text.module.mjs +8 -6
  113. package/esm2022/fundamental-ngx.module.mjs +66 -62
  114. package/esm2022/generic-tag/fundamental-ngx-core-generic-tag.mjs +5 -0
  115. package/esm2022/generic-tag/generic-tag.component.mjs +75 -0
  116. package/esm2022/generic-tag/generic-tag.module.mjs +16 -0
  117. package/esm2022/generic-tag/index.mjs +4 -0
  118. package/esm2022/generic-tag/tokens.mjs +3 -0
  119. package/esm2022/grid-list/components/grid-list/grid-list.component.mjs +5 -5
  120. package/esm2022/grid-list/components/grid-list-filter-bar/grid-list-filter-bar.component.mjs +1 -1
  121. package/esm2022/grid-list/components/grid-list-item/grid-list-item.component.mjs +7 -7
  122. package/esm2022/icon/icon.component.mjs +8 -3
  123. package/esm2022/icon/icon.module.mjs +5 -7
  124. package/esm2022/index.mjs +45 -44
  125. package/esm2022/info-label/info-label.component.mjs +1 -1
  126. package/esm2022/list/directives/list-navigation-item-arrow.directive.mjs +18 -13
  127. package/esm2022/list/list-component.interface.mjs +1 -1
  128. package/esm2022/list/list-navigation-item/list-navigation-item.component.mjs +48 -46
  129. package/esm2022/list/list.component.mjs +22 -13
  130. package/esm2022/menu/directives/glyph-menu-addon.directive.mjs +86 -0
  131. package/esm2022/menu/directives/menu-addon.directive.mjs +22 -14
  132. package/esm2022/menu/directives/menu-item-input.directive.mjs +37 -0
  133. package/esm2022/menu/directives/menu-shortcut.directive.mjs +5 -4
  134. package/esm2022/menu/directives/menu-title.directive.mjs +4 -3
  135. package/esm2022/menu/directives/menu-trigger.directive.mjs +4 -3
  136. package/esm2022/menu/directives/segmented-button/segmented-button-header.directive.mjs +68 -0
  137. package/esm2022/menu/directives/segmented-button/segmented-button-option.directive.mjs +89 -0
  138. package/esm2022/menu/directives/toggle-button.directive.mjs +62 -0
  139. package/esm2022/menu/index.mjs +13 -8
  140. package/esm2022/menu/menu-interactive.component.mjs +121 -0
  141. package/esm2022/menu/menu-item/menu-item.component.mjs +36 -12
  142. package/esm2022/menu/menu-mobile/menu-mobile.component.mjs +31 -12
  143. package/esm2022/menu/menu-mobile/menu-mobile.module.mjs +7 -8
  144. package/esm2022/menu/menu-separator.directive.mjs +30 -0
  145. package/esm2022/menu/menu.component.mjs +89 -11
  146. package/esm2022/menu/menu.module.mjs +67 -27
  147. package/esm2022/menu/menu.tokens.mjs +5 -0
  148. package/esm2022/message-box/message-box-container/message-box-container.component.mjs +12 -12
  149. package/esm2022/message-strip/message-strip.component.mjs +1 -1
  150. package/esm2022/micro-process-flow/components/micro-process-flow-icon/micro-process-flow-icon.component.mjs +1 -1
  151. package/esm2022/multi-combobox/multi-combobox.component.mjs +3 -3
  152. package/esm2022/multi-input/multi-input-mobile/multi-input-mobile.component.mjs +22 -6
  153. package/esm2022/multi-input/multi-input-mobile/multi-input-mobile.module.mjs +4 -9
  154. package/esm2022/multi-input/multi-input.component.mjs +109 -62
  155. package/esm2022/multi-input/multi-input.module.mjs +5 -54
  156. package/esm2022/nested-list/nested-list-directives.mjs +1 -1
  157. package/esm2022/notification/notification-body/notification-body.component.mjs +2 -2
  158. package/esm2022/object-status/object-status.component.mjs +1 -1
  159. package/esm2022/pagination/pagination.component.mjs +1 -1
  160. package/esm2022/popover/index.mjs +12 -12
  161. package/esm2022/popover/popover-body.directive.mjs +20 -0
  162. package/esm2022/popover/popover-service/popover.service.mjs +29 -14
  163. package/esm2022/popover/popover.component.mjs +32 -14
  164. package/esm2022/popover/popover.module.mjs +15 -10
  165. package/esm2022/quick-view/quick-view.module.mjs +38 -18
  166. package/esm2022/rating-indicator/components/rating-indicator.component.mjs +3 -3
  167. package/esm2022/scrollbar/scrollbar.directive.mjs +9 -8
  168. package/esm2022/select/select.component.mjs +6 -4
  169. package/esm2022/shellbar/product-menu/product-menu.component.mjs +2 -2
  170. package/esm2022/shellbar/user-menu/shellbar-user-menu.component.mjs +2 -2
  171. package/esm2022/splitter/splitter-resizer/splitter-resizer.component.mjs +1 -1
  172. package/esm2022/step-input/step-input.module.mjs +11 -11
  173. package/esm2022/table/directives/table-row.directive.mjs +8 -5
  174. package/esm2022/tabs/tab-item-expand/tab-item-expand.component.mjs +1 -1
  175. package/esm2022/tabs/tab-list.component.mjs +22 -17
  176. package/esm2022/tabs/tab-utils/tab-directives.mjs +1 -1
  177. package/esm2022/theming/index.mjs +4 -3
  178. package/esm2022/theming/provide-theming.mjs +16 -0
  179. package/esm2022/theming/theming.module.mjs +6 -24
  180. package/esm2022/theming/tokens.mjs +5 -2
  181. package/esm2022/time-picker/time-picker.module.mjs +8 -8
  182. package/esm2022/timeline/components/timeline-node/timeline-node.component.mjs +1 -1
  183. package/esm2022/token/token.component.mjs +2 -2
  184. package/esm2022/token/tokenizer.component.mjs +29 -12
  185. package/esm2022/tree/components/tree-item/tree-item.component.mjs +1 -1
  186. package/esm2022/upload-collection/upload-collection-form-item/upload-collection-form-item.component.mjs +2 -2
  187. package/esm2022/upload-collection/upload-collection.component.mjs +1 -1
  188. package/esm2022/vertical-navigation/vertical-navigation-main-navigation.component.mjs +2 -2
  189. package/esm2022/vertical-navigation/vertical-navigation.component.mjs +2 -2
  190. package/esm2022/wizard/wizard-step-indicator/wizard-step-indicator.component.mjs +1 -1
  191. package/esm2022/wizard/wizard.component.mjs +2 -2
  192. package/facets/facet.module.d.ts +1 -1
  193. package/feed-list-item/feed-list-item.module.d.ts +1 -1
  194. package/fesm2022/fundamental-ngx-core-avatar-group-legacy.mjs +580 -0
  195. package/fesm2022/fundamental-ngx-core-avatar-group-legacy.mjs.map +1 -0
  196. package/fesm2022/fundamental-ngx-core-avatar-group.mjs +597 -432
  197. package/fesm2022/fundamental-ngx-core-avatar-group.mjs.map +1 -1
  198. package/fesm2022/fundamental-ngx-core-avatar.mjs +8 -10
  199. package/fesm2022/fundamental-ngx-core-avatar.mjs.map +1 -1
  200. package/fesm2022/fundamental-ngx-core-breadcrumb.mjs +1 -1
  201. package/fesm2022/fundamental-ngx-core-breadcrumb.mjs.map +1 -1
  202. package/fesm2022/fundamental-ngx-core-button.mjs +24 -8
  203. package/fesm2022/fundamental-ngx-core-button.mjs.map +1 -1
  204. package/fesm2022/fundamental-ngx-core-checkbox.mjs +24 -10
  205. package/fesm2022/fundamental-ngx-core-checkbox.mjs.map +1 -1
  206. package/fesm2022/fundamental-ngx-core-combobox.mjs +1 -1
  207. package/fesm2022/fundamental-ngx-core-combobox.mjs.map +1 -1
  208. package/fesm2022/fundamental-ngx-core-content-density.mjs +111 -103
  209. package/fesm2022/fundamental-ngx-core-content-density.mjs.map +1 -1
  210. package/fesm2022/fundamental-ngx-core-date-picker.mjs +33 -23
  211. package/fesm2022/fundamental-ngx-core-date-picker.mjs.map +1 -1
  212. package/fesm2022/fundamental-ngx-core-datetime-picker.mjs +41 -31
  213. package/fesm2022/fundamental-ngx-core-datetime-picker.mjs.map +1 -1
  214. package/fesm2022/fundamental-ngx-core-dialog.mjs +160 -156
  215. package/fesm2022/fundamental-ngx-core-dialog.mjs.map +1 -1
  216. package/fesm2022/fundamental-ngx-core-dynamic-page.mjs +202 -200
  217. package/fesm2022/fundamental-ngx-core-dynamic-page.mjs.map +1 -1
  218. package/fesm2022/fundamental-ngx-core-facets.mjs +4 -4
  219. package/fesm2022/fundamental-ngx-core-facets.mjs.map +1 -1
  220. package/fesm2022/fundamental-ngx-core-feed-list-item.mjs +49 -49
  221. package/fesm2022/fundamental-ngx-core-feed-list-item.mjs.map +1 -1
  222. package/fesm2022/fundamental-ngx-core-form.mjs +332 -322
  223. package/fesm2022/fundamental-ngx-core-form.mjs.map +1 -1
  224. package/fesm2022/fundamental-ngx-core-formatted-text.mjs +9 -7
  225. package/fesm2022/fundamental-ngx-core-formatted-text.mjs.map +1 -1
  226. package/fesm2022/fundamental-ngx-core-generic-tag.mjs +96 -0
  227. package/fesm2022/fundamental-ngx-core-generic-tag.mjs.map +1 -0
  228. package/fesm2022/fundamental-ngx-core-grid-list.mjs +19 -19
  229. package/fesm2022/fundamental-ngx-core-grid-list.mjs.map +1 -1
  230. package/fesm2022/fundamental-ngx-core-icon.mjs +11 -8
  231. package/fesm2022/fundamental-ngx-core-icon.mjs.map +1 -1
  232. package/fesm2022/fundamental-ngx-core-info-label.mjs +1 -1
  233. package/fesm2022/fundamental-ngx-core-info-label.mjs.map +1 -1
  234. package/fesm2022/fundamental-ngx-core-list.mjs +124 -108
  235. package/fesm2022/fundamental-ngx-core-list.mjs.map +1 -1
  236. package/fesm2022/fundamental-ngx-core-menu.mjs +663 -134
  237. package/fesm2022/fundamental-ngx-core-menu.mjs.map +1 -1
  238. package/fesm2022/fundamental-ngx-core-message-box.mjs +9 -9
  239. package/fesm2022/fundamental-ngx-core-message-box.mjs.map +1 -1
  240. package/fesm2022/fundamental-ngx-core-message-strip.mjs +1 -1
  241. package/fesm2022/fundamental-ngx-core-message-strip.mjs.map +1 -1
  242. package/fesm2022/fundamental-ngx-core-micro-process-flow.mjs +1 -1
  243. package/fesm2022/fundamental-ngx-core-micro-process-flow.mjs.map +1 -1
  244. package/fesm2022/fundamental-ngx-core-multi-combobox.mjs +2 -2
  245. package/fesm2022/fundamental-ngx-core-multi-combobox.mjs.map +1 -1
  246. package/fesm2022/fundamental-ngx-core-multi-input.mjs +134 -118
  247. package/fesm2022/fundamental-ngx-core-multi-input.mjs.map +1 -1
  248. package/fesm2022/fundamental-ngx-core-nested-list.mjs +1 -1
  249. package/fesm2022/fundamental-ngx-core-nested-list.mjs.map +1 -1
  250. package/fesm2022/fundamental-ngx-core-notification.mjs.map +1 -1
  251. package/fesm2022/fundamental-ngx-core-object-status.mjs +1 -1
  252. package/fesm2022/fundamental-ngx-core-object-status.mjs.map +1 -1
  253. package/fesm2022/fundamental-ngx-core-pagination.mjs +1 -1
  254. package/fesm2022/fundamental-ngx-core-pagination.mjs.map +1 -1
  255. package/fesm2022/fundamental-ngx-core-popover.mjs +445 -391
  256. package/fesm2022/fundamental-ngx-core-popover.mjs.map +1 -1
  257. package/fesm2022/fundamental-ngx-core-quick-view.mjs +152 -132
  258. package/fesm2022/fundamental-ngx-core-quick-view.mjs.map +1 -1
  259. package/fesm2022/fundamental-ngx-core-rating-indicator.mjs +2 -2
  260. package/fesm2022/fundamental-ngx-core-rating-indicator.mjs.map +1 -1
  261. package/fesm2022/fundamental-ngx-core-scrollbar.mjs +9 -8
  262. package/fesm2022/fundamental-ngx-core-scrollbar.mjs.map +1 -1
  263. package/fesm2022/fundamental-ngx-core-select.mjs +5 -3
  264. package/fesm2022/fundamental-ngx-core-select.mjs.map +1 -1
  265. package/fesm2022/fundamental-ngx-core-shellbar.mjs +2 -2
  266. package/fesm2022/fundamental-ngx-core-shellbar.mjs.map +1 -1
  267. package/fesm2022/fundamental-ngx-core-splitter.mjs +1 -1
  268. package/fesm2022/fundamental-ngx-core-splitter.mjs.map +1 -1
  269. package/fesm2022/fundamental-ngx-core-step-input.mjs +13 -13
  270. package/fesm2022/fundamental-ngx-core-step-input.mjs.map +1 -1
  271. package/fesm2022/fundamental-ngx-core-table.mjs +5 -2
  272. package/fesm2022/fundamental-ngx-core-table.mjs.map +1 -1
  273. package/fesm2022/fundamental-ngx-core-tabs.mjs +21 -17
  274. package/fesm2022/fundamental-ngx-core-tabs.mjs.map +1 -1
  275. package/fesm2022/fundamental-ngx-core-theming.mjs +22 -23
  276. package/fesm2022/fundamental-ngx-core-theming.mjs.map +1 -1
  277. package/fesm2022/fundamental-ngx-core-time-picker.mjs +10 -10
  278. package/fesm2022/fundamental-ngx-core-time-picker.mjs.map +1 -1
  279. package/fesm2022/fundamental-ngx-core-timeline.mjs +1 -1
  280. package/fesm2022/fundamental-ngx-core-timeline.mjs.map +1 -1
  281. package/fesm2022/fundamental-ngx-core-token.mjs +26 -9
  282. package/fesm2022/fundamental-ngx-core-token.mjs.map +1 -1
  283. package/fesm2022/fundamental-ngx-core-tree.mjs +1 -1
  284. package/fesm2022/fundamental-ngx-core-tree.mjs.map +1 -1
  285. package/fesm2022/fundamental-ngx-core-upload-collection.mjs +2 -2
  286. package/fesm2022/fundamental-ngx-core-upload-collection.mjs.map +1 -1
  287. package/fesm2022/fundamental-ngx-core-vertical-navigation.mjs +4 -4
  288. package/fesm2022/fundamental-ngx-core-vertical-navigation.mjs.map +1 -1
  289. package/fesm2022/fundamental-ngx-core-wizard.mjs +3 -3
  290. package/fesm2022/fundamental-ngx-core-wizard.mjs.map +1 -1
  291. package/fesm2022/fundamental-ngx-core.mjs +126 -120
  292. package/fesm2022/fundamental-ngx-core.mjs.map +1 -1
  293. package/form/fieldset/fieldset.component.d.ts +1 -1
  294. package/form/fieldset/fieldset.module.d.ts +5 -2
  295. package/form/form-control/form-control.component.d.ts +9 -7
  296. package/form/form-control/form-control.module.d.ts +5 -5
  297. package/form/form-group/form-group.component.d.ts +1 -1
  298. package/form/form-group/form-group.module.d.ts +5 -2
  299. package/form/form-header/form-header.component.d.ts +1 -1
  300. package/form/form-header/form-header.module.d.ts +5 -2
  301. package/form/form-input-message-group/form-input-message-group.component.d.ts +4 -2
  302. package/form/form-input-message-group/form-input-message-group.module.d.ts +5 -3
  303. package/form/form-item/form-item.component.d.ts +3 -3
  304. package/form/form-item/form-item.module.d.ts +5 -2
  305. package/form/form-label/form-label.component.d.ts +2 -2
  306. package/form/form-label/form-label.module.d.ts +5 -5
  307. package/form/form-legend/form-legend.directive.d.ts +1 -1
  308. package/form/form-legend/form-legend.module.d.ts +5 -2
  309. package/form/form-message/form-message.component.d.ts +2 -2
  310. package/form/form-message/form-message.module.d.ts +5 -2
  311. package/form/form.module.d.ts +10 -12
  312. package/form/index.d.ts +9 -11
  313. package/formatted-text/formatted-text.component.d.ts +1 -1
  314. package/formatted-text/formatted-text.module.d.ts +5 -2
  315. package/fundamental-ngx-core-v0.46.0-rc.40.tgz +0 -0
  316. package/fundamental-ngx.module.d.ts +16 -15
  317. package/generic-tag/README.md +25 -0
  318. package/generic-tag/generic-tag.component.d.ts +43 -0
  319. package/generic-tag/generic-tag.module.d.ts +7 -0
  320. package/generic-tag/index.d.ts +3 -0
  321. package/generic-tag/tokens.d.ts +2 -0
  322. package/grid-list/components/grid-list/grid-list.component.d.ts +3 -3
  323. package/grid-list/components/grid-list-item/grid-list-item.component.d.ts +2 -2
  324. package/icon/icon.component.d.ts +4 -3
  325. package/icon/icon.module.d.ts +1 -2
  326. package/index.d.ts +44 -43
  327. package/list/directives/list-navigation-item-arrow.directive.d.ts +4 -7
  328. package/list/list-component.interface.d.ts +3 -2
  329. package/list/list-navigation-item/list-navigation-item.component.d.ts +16 -13
  330. package/list/list.component.d.ts +15 -6
  331. package/menu/directives/glyph-menu-addon.directive.d.ts +43 -0
  332. package/menu/directives/menu-addon.directive.d.ts +11 -5
  333. package/menu/directives/menu-item-input.directive.d.ts +14 -0
  334. package/menu/directives/menu-shortcut.directive.d.ts +1 -1
  335. package/menu/directives/menu-title.directive.d.ts +1 -1
  336. package/menu/directives/menu-trigger.directive.d.ts +1 -1
  337. package/menu/directives/segmented-button/segmented-button-header.directive.d.ts +27 -0
  338. package/menu/directives/segmented-button/segmented-button-option.directive.d.ts +40 -0
  339. package/menu/directives/toggle-button.directive.d.ts +19 -0
  340. package/menu/index.d.ts +12 -7
  341. package/menu/menu-interactive.component.d.ts +44 -0
  342. package/menu/menu-item/menu-item.component.d.ts +9 -6
  343. package/menu/menu-mobile/menu-mobile.component.d.ts +4 -4
  344. package/menu/menu-mobile/menu-mobile.module.d.ts +5 -5
  345. package/menu/menu-separator.directive.d.ts +15 -0
  346. package/menu/menu.component.d.ts +22 -7
  347. package/menu/menu.module.d.ts +19 -14
  348. package/menu/menu.tokens.d.ts +4 -0
  349. package/message-box/message-box-container/message-box-container.component.d.ts +7 -6
  350. package/multi-input/multi-input-mobile/multi-input-mobile.component.d.ts +3 -3
  351. package/multi-input/multi-input-mobile/multi-input-mobile.module.d.ts +1 -5
  352. package/multi-input/multi-input.component.d.ts +51 -40
  353. package/multi-input/multi-input.module.d.ts +3 -13
  354. package/notification/notification-body/notification-body.component.d.ts +1 -1
  355. package/package.json +15 -3
  356. package/popover/index.d.ts +11 -11
  357. package/popover/popover-body.directive.d.ts +10 -0
  358. package/popover/popover-service/popover.service.d.ts +10 -4
  359. package/popover/popover.component.d.ts +11 -2
  360. package/popover/popover.module.d.ts +2 -1
  361. package/quick-view/quick-view.module.d.ts +1 -1
  362. package/schematics/add-dependencies/index.js +4 -4
  363. package/scrollbar/scrollbar.directive.d.ts +6 -4
  364. package/select/select.component.d.ts +4 -2
  365. package/step-input/step-input.module.d.ts +1 -1
  366. package/table/directives/table-row.directive.d.ts +1 -1
  367. package/tabs/tab-list.component.d.ts +11 -8
  368. package/theming/index.d.ts +3 -2
  369. package/theming/provide-theming.d.ts +7 -0
  370. package/time-picker/time-picker.module.d.ts +1 -1
  371. package/token/tokenizer.component.d.ts +12 -2
  372. package/avatar-group/directives/avatar-group-focusable-avatar.directive.d.ts +0 -19
  373. package/avatar-group/directives/avatar-group-overflow-button-text.directive.d.ts +0 -5
  374. package/avatar-group/directives/avatar-group-overflow-item.directive.d.ts +0 -6
  375. package/avatar-group/directives/avatar-group-popover-control.directive.d.ts +0 -10
  376. package/esm2022/avatar-group/avatar-group.interface.mjs +0 -2
  377. package/esm2022/avatar-group/directives/avatar-group-focusable-avatar.directive.mjs +0 -58
  378. package/esm2022/avatar-group/directives/avatar-group-overflow-button-text.directive.mjs +0 -15
  379. package/esm2022/avatar-group/directives/avatar-group-overflow-item.directive.mjs +0 -15
  380. package/esm2022/avatar-group/directives/avatar-group-popover-control.directive.mjs +0 -32
  381. package/esm2022/form/form-control/input-form-control.directive.mjs +0 -25
  382. package/esm2022/form/form-control/textarea-form-control.directive.mjs +0 -25
  383. package/esm2022/menu/directives/menu-interactive.directive.mjs +0 -68
  384. package/esm2022/menu/menu-separator/menu-separator.component.mjs +0 -23
  385. package/form/form-control/input-form-control.directive.d.ts +0 -9
  386. package/form/form-control/textarea-form-control.directive.d.ts +0 -9
  387. package/fundamental-ngx-core-v0.46.0-rc.4.tgz +0 -0
  388. package/menu/directives/menu-interactive.directive.d.ts +0 -30
  389. package/menu/menu-separator/menu-separator.component.d.ts +0 -7
@@ -1,6 +1,5 @@
1
1
  import { ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, OnInit, Renderer2 } from '@angular/core';
2
- import { ColorAccent, Size, CssClassBuilder } from '@fundamental-ngx/cdk/utils';
3
- import { Nullable } from '@fundamental-ngx/cdk/utils';
2
+ import { ColorAccent, CssClassBuilder, Nullable, Size } from '@fundamental-ngx/cdk/utils';
4
3
  import * as i0 from "@angular/core";
5
4
  export declare class AvatarComponent implements OnChanges, OnInit, CssClassBuilder, OnChanges {
6
5
  readonly elementRef: ElementRef;
@@ -115,5 +114,5 @@ export declare class AvatarComponent implements OnChanges, OnInit, CssClassBuild
115
114
  /** @hidden */
116
115
  private _showDefaultIcon;
117
116
  static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, [null, null, null, { attribute: "tabindex"; }]>;
118
- static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "fd-avatar", never, { "class": { "alias": "class"; "required": false; }; "id": { "alias": "id"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaLabelledby": { "alias": "ariaLabelledby"; "required": false; }; "label": { "alias": "label"; "required": false; }; "size": { "alias": "size"; "required": false; }; "glyph": { "alias": "glyph"; "required": false; }; "zoomGlyph": { "alias": "zoomGlyph"; "required": false; }; "circle": { "alias": "circle"; "required": false; }; "transparent": { "alias": "transparent"; "required": false; }; "contain": { "alias": "contain"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "tile": { "alias": "tile"; "required": false; }; "border": { "alias": "border"; "required": false; }; "colorAccent": { "alias": "colorAccent"; "required": false; }; "random": { "alias": "random"; "required": false; }; "clickable": { "alias": "clickable"; "required": false; }; "image": { "alias": "image"; "required": false; }; "alterIcon": { "alias": "alterIcon"; "required": false; }; "backupImage": { "alias": "backupImage"; "required": false; }; }, { "avatarClicked": "avatarClicked"; "zoomGlyphClicked": "zoomGlyphClicked"; }, never, ["*"], false, never, false>;
117
+ static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "fd-avatar", never, { "class": { "alias": "class"; "required": false; }; "id": { "alias": "id"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaLabelledby": { "alias": "ariaLabelledby"; "required": false; }; "label": { "alias": "label"; "required": false; }; "size": { "alias": "size"; "required": false; }; "glyph": { "alias": "glyph"; "required": false; }; "zoomGlyph": { "alias": "zoomGlyph"; "required": false; }; "circle": { "alias": "circle"; "required": false; }; "transparent": { "alias": "transparent"; "required": false; }; "contain": { "alias": "contain"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "tile": { "alias": "tile"; "required": false; }; "border": { "alias": "border"; "required": false; }; "colorAccent": { "alias": "colorAccent"; "required": false; }; "random": { "alias": "random"; "required": false; }; "clickable": { "alias": "clickable"; "required": false; }; "image": { "alias": "image"; "required": false; }; "alterIcon": { "alias": "alterIcon"; "required": false; }; "backupImage": { "alias": "backupImage"; "required": false; }; }, { "avatarClicked": "avatarClicked"; "zoomGlyphClicked": "zoomGlyphClicked"; }, never, ["*"], true, never, false>;
119
118
  }
@@ -1,8 +1,7 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "./avatar.component";
3
- import * as i2 from "@angular/common";
4
3
  export declare class AvatarModule {
5
4
  static ɵfac: i0.ɵɵFactoryDeclaration<AvatarModule, never>;
6
- static ɵmod: i0.ɵɵNgModuleDeclaration<AvatarModule, [typeof i1.AvatarComponent], [typeof i2.CommonModule], [typeof i1.AvatarComponent]>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AvatarModule, never, [typeof i1.AvatarComponent], [typeof i1.AvatarComponent]>;
7
6
  static ɵinj: i0.ɵɵInjectorDeclaration<AvatarModule>;
8
7
  }
@@ -1,25 +1,7 @@
1
- # AvatarGroup
1
+ # core-src-lib-avatar-group
2
2
 
3
- This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 12.0.5.
4
-
5
- ## Code scaffolding
6
-
7
- Run `ng generate component component-name --project avatar-group` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project avatar-group`.
8
-
9
- > Note: Don't forget to add `--project avatar-group` or else it will be added to the default project in your `angular.json` file.
10
-
11
- ## Build
12
-
13
- Run `ng build avatar-group` to build the project. The build artifacts will be stored in the `dist/` directory.
14
-
15
- ## Publishing
16
-
17
- After building your library with `ng build avatar-group`, go to the dist folder `cd dist/avatar-group` and run `npm publish`.
3
+ This library was generated with [Nx](https://nx.dev).
18
4
 
19
5
  ## Running unit tests
20
6
 
21
- Run `ng test avatar-group` to execute the unit tests via [Karma](https://karma-runner.github.io).
22
-
23
- ## Further help
24
-
25
- To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
7
+ Run `nx test core-src-lib-avatar-group` to execute the unit tests.
@@ -1,77 +1,54 @@
1
- import { AfterViewInit, ElementRef, OnChanges, OnDestroy, OnInit, QueryList } from '@angular/core';
2
- import { ViewportRuler } from '@angular/cdk/overlay';
3
- import { Nullable } from '@fundamental-ngx/cdk/utils';
4
- import { ColorAccent, RtlService, Size } from '@fundamental-ngx/cdk/utils';
1
+ import { QueryList } from '@angular/core';
2
+ import { Observable } from 'rxjs';
3
+ import { AvatarGroupItemRendererDirective } from './directives/avatar-group-item-renderer.directive';
5
4
  import { AvatarGroupItemDirective } from './directives/avatar-group-item.directive';
6
- import { AvatarGroupInterface } from './avatar-group.interface';
5
+ import { AvatarGroupOverflowBodyDirective } from './directives/avatar-group-overflow-body.directive';
6
+ import { AvatarGroupOverflowButtonDirective } from './directives/avatar-group-overflow-button.directive';
7
+ import { AvatarGroupHostConfig } from './types';
7
8
  import * as i0 from "@angular/core";
8
- export type AvatarGroupType = 'group' | 'individual';
9
- export type AvatarGroupOverflowButtonColor = 'neutral' | 'random' | ColorAccent;
10
- export declare class AvatarGroupComponent implements AvatarGroupInterface, OnChanges, OnInit, AfterViewInit, OnDestroy {
11
- private readonly _viewportRuler;
12
- private _rtlService;
13
- /** Id of the Avatar Group. */
14
- id: string;
15
- /** Apply user custom class. */
16
- class: string;
17
- /** The size of the Avatar Group. Options include: *xs*, *s*, *m*, *l* and *xl* (default: *s*). */
18
- size: Size;
19
- /** The type of the Avatar Group. Options include: *group* and *individual* (default: *group*). */
20
- type: AvatarGroupType;
21
- /** Aria-label for Avatar Group. */
22
- ariaLabel: Nullable<string>;
23
- /** Counter for all avatars. */
24
- allItemsCount: number;
25
- /** Counter for visible in overflow popover avatars. */
26
- overflowItemsCount: number;
27
- /** @hidden Avatar Group items. */
28
- mainItems: QueryList<AvatarGroupItemDirective>;
29
- /** @hidden */
30
- avatarGroupContainer: ElementRef<HTMLDivElement>;
31
- /** @hidden */
32
- rootClassNames: Record<string, boolean | undefined | null>;
33
- /** @hidden */
34
- get isGroupType(): boolean;
35
- /** @hidden */
36
- private get _avatarGroupWidth();
37
- /** @hidden */
38
- private get _avatarGroupItemWidth();
39
- /** @hidden */
40
- private get _avatarGroupItemWithMarginsWidth();
41
- /** @hidden FocusKeyManager instance */
42
- private _keyboardEventsManager;
43
- /** @hidden */
44
- private readonly _subscription;
45
- /** @hidden handles rtl service */
46
- private _dir;
47
- /** @hidden */
48
- constructor(_viewportRuler: ViewportRuler, _rtlService: RtlService);
49
- /** @hidden */
50
- ngOnInit(): void;
51
- /** @hidden */
52
- ngOnChanges(): void;
53
- /** @hidden */
54
- ngAfterViewInit(): void;
55
- /** @hidden */
56
- ngOnDestroy(): void;
57
- /** @hidden */
58
- keyUpHandler(event: KeyboardEvent): void;
59
- /** @hidden */
60
- _setActiveItem(item: AvatarGroupItemDirective): void;
61
- /** @hidden */
62
- private _onResize;
63
- /** @hidden */
64
- private _reset;
65
- /** @hidden */
66
- private _collapseItems;
67
- /** @hidden */
68
- private _listenForItemChanges;
69
- /** @hidden */
70
- private _assignCssClasses;
71
- /** @hidden */
72
- private _setKeyboardEventsManager;
73
- /** @hidden Rtl change subscription */
74
- private _subscribeToRtl;
75
- static ɵfac: i0.ɵɵFactoryDeclaration<AvatarGroupComponent, [null, { optional: true; }]>;
76
- static ɵcmp: i0.ɵɵComponentDeclaration<AvatarGroupComponent, "fd-avatar-group", never, { "id": { "alias": "id"; "required": false; }; "class": { "alias": "class"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, {}, ["mainItems"], ["*"], false, never, false>;
9
+ export declare class AvatarGroupComponent implements AvatarGroupHostConfig {
10
+ /**
11
+ * The AvatarGroup control has two group types:
12
+ *
13
+ * `group`: The avatars are displayed as partially overlapped on top of each other and the entire group has one click/tap area.
14
+ * `individual`: The avatars are displayed side-by-side and each avatar has its own click/tap area.
15
+ * */
16
+ type: AvatarGroupHostConfig['type'];
17
+ /**
18
+ * Orientation of the AvatarGroup control.
19
+ *
20
+ * `horizontal`: The avatars are displayed horizontally.
21
+ * `vertical`: The avatars are displayed vertically.
22
+ */
23
+ orientation: AvatarGroupHostConfig['orientation'];
24
+ /**
25
+ * The spacing between the items depends on the size of the avatars in the group.
26
+ * The size is also used for the default overflow button.
27
+ * `xs`, `s`, `m`, `l`, `xl`
28
+ */
29
+ size: AvatarGroupHostConfig['size'];
30
+ /**
31
+ * The title which is displayed when user opens the overflow popover.
32
+ * This takes effect only when default overflow popover body is used,
33
+ * otherwise the title should be set on the custom overflow popover body component.
34
+ */
35
+ overflowPopoverTitle: string;
36
+ /** @hidden */
37
+ _avatarRenderers: QueryList<AvatarGroupItemRendererDirective>;
38
+ /** @hidden */
39
+ _avatars: QueryList<AvatarGroupItemDirective>;
40
+ /** @hidden */
41
+ _overflowButton: AvatarGroupOverflowButtonDirective;
42
+ /** @hidden */
43
+ _avatarGroupPopoverBody: AvatarGroupOverflowBodyDirective;
44
+ /** @hidden */
45
+ _contentDirection$: Observable<'rtl' | 'ltr'>;
46
+ /** @hidden */
47
+ private _cdr;
48
+ /** @hidden */
49
+ _trackByFn(_: number, item: AvatarGroupItemDirective): AvatarGroupItemDirective;
50
+ /** @hidden */
51
+ _detectChanges(): void;
52
+ static ɵfac: i0.ɵɵFactoryDeclaration<AvatarGroupComponent, never>;
53
+ static ɵcmp: i0.ɵɵComponentDeclaration<AvatarGroupComponent, "fd-avatar-group", never, { "type": { "alias": "type"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "size": { "alias": "size"; "required": false; }; "overflowPopoverTitle": { "alias": "overflowPopoverTitle"; "required": false; }; }, {}, ["_overflowButton", "_avatarGroupPopoverBody", "_avatars"], ["*"], true, never, false>;
77
54
  }
@@ -1,15 +1,12 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "./avatar-group.component";
3
3
  import * as i2 from "./directives/avatar-group-item.directive";
4
- import * as i3 from "./directives/avatar-group-focusable-avatar.directive";
5
- import * as i4 from "./directives/avatar-group-popover-control.directive";
6
- import * as i5 from "./directives/avatar-group-overflow-body.directive";
7
- import * as i6 from "./directives/avatar-group-overflow-item.directive";
8
- import * as i7 from "./directives/avatar-group-overflow-button.directive";
9
- import * as i8 from "./directives/avatar-group-overflow-button-text.directive";
10
- import * as i9 from "@angular/common";
4
+ import * as i3 from "./components/avatar-group-overflow-button.component";
5
+ import * as i4 from "./directives/avatar-group-overflow-button.directive";
6
+ import * as i5 from "./components/avatar-group-overflow-body/avatar-group-overflow-body.component";
7
+ import * as i6 from "./directives/avatar-group-overflow-body.directive";
11
8
  export declare class AvatarGroupModule {
12
9
  static ɵfac: i0.ɵɵFactoryDeclaration<AvatarGroupModule, never>;
13
- static ɵmod: i0.ɵɵNgModuleDeclaration<AvatarGroupModule, [typeof i1.AvatarGroupComponent, typeof i2.AvatarGroupItemDirective, typeof i3.AvatarGroupFocusableAvatarDirective, typeof i4.AvatarGroupPopoverControlDirective, typeof i5.AvatarGroupOverflowBodyDirective, typeof i6.AvatarGroupOverflowItemDirective, typeof i7.AvatarGroupOverflowButtonDirective, typeof i8.AvatarGroupOverflowButtonTextDirective], [typeof i9.CommonModule], [typeof i1.AvatarGroupComponent, typeof i2.AvatarGroupItemDirective, typeof i3.AvatarGroupFocusableAvatarDirective, typeof i4.AvatarGroupPopoverControlDirective, typeof i5.AvatarGroupOverflowBodyDirective, typeof i6.AvatarGroupOverflowItemDirective, typeof i7.AvatarGroupOverflowButtonDirective, typeof i8.AvatarGroupOverflowButtonTextDirective]>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AvatarGroupModule, never, [typeof i1.AvatarGroupComponent, typeof i2.AvatarGroupItemDirective, typeof i3.AvatarGroupOverflowButtonComponent, typeof i4.AvatarGroupOverflowButtonDirective, typeof i5.AvatarGroupOverflowBodyComponent, typeof i6.AvatarGroupOverflowBodyDirective], [typeof i1.AvatarGroupComponent, typeof i2.AvatarGroupItemDirective, typeof i3.AvatarGroupOverflowButtonComponent, typeof i4.AvatarGroupOverflowButtonDirective, typeof i5.AvatarGroupOverflowBodyComponent, typeof i6.AvatarGroupOverflowBodyDirective]>;
14
11
  static ɵinj: i0.ɵɵInjectorDeclaration<AvatarGroupModule>;
15
12
  }
@@ -0,0 +1,61 @@
1
+ import { AfterViewInit, ElementRef, OnChanges, OnInit, QueryList, SimpleChanges } from '@angular/core';
2
+ import { CssClassBuilder, HasElementRef, Nullable } from '@fundamental-ngx/cdk/utils';
3
+ import { Observable } from 'rxjs';
4
+ import { AvatarGroupItemRendererDirective } from '../directives/avatar-group-item-renderer.directive';
5
+ import { AvatarGroupItemDirective } from '../directives/avatar-group-item.directive';
6
+ import { AvatarGroupHostConfig } from '../types';
7
+ import * as i0 from "@angular/core";
8
+ export declare class AvatarGroupHostComponent implements OnInit, AfterViewInit, OnChanges, HasElementRef, AvatarGroupHostConfig, CssClassBuilder {
9
+ /**
10
+ * The class to apply to the host element.
11
+ **/
12
+ class: Nullable<string>;
13
+ /**
14
+ * The type of the avatar group.
15
+ * Options include 'individual' and 'group'.
16
+ **/
17
+ type: AvatarGroupHostConfig['type'];
18
+ /**
19
+ * The orientation of the avatar group.
20
+ * Options include 'horizontal' and 'vertical'.
21
+ **/
22
+ orientation: AvatarGroupHostConfig['orientation'];
23
+ /**
24
+ * The size of the avatar group.
25
+ * Options include 'xs', 's', 'm', 'l', and 'xl'.
26
+ **/
27
+ size: AvatarGroupHostConfig['size'];
28
+ /**
29
+ * The items to be rendered in the avatar group.
30
+ **/
31
+ items: QueryList<AvatarGroupItemDirective>;
32
+ /**
33
+ * @hidden
34
+ * The portals to be rendered in the avatar group.
35
+ **/
36
+ _portals: QueryList<AvatarGroupItemRendererDirective>;
37
+ /** @hidden */
38
+ _resizeEmitter: Observable<ResizeObserverEntry[]>;
39
+ /** The reference to the host element */
40
+ elementRef: ElementRef<any>;
41
+ /** @hidden */
42
+ _hiddenItems: import("@angular/core").WritableSignal<AvatarGroupItemRendererDirective[]>;
43
+ /** @hidden */
44
+ private readonly _destroyRef;
45
+ /** @hidden */
46
+ private _cdr;
47
+ /** @hidden */
48
+ private _onChanges$;
49
+ /** @hidden */
50
+ buildComponentCssClass(): string[];
51
+ /** @hidden */
52
+ ngOnInit(): void;
53
+ /** @hidden */
54
+ ngOnChanges(changes: SimpleChanges): void;
55
+ /** @hidden */
56
+ ngAfterViewInit(): void;
57
+ /** @hidden */
58
+ private _calculateVisibility;
59
+ static ɵfac: i0.ɵɵFactoryDeclaration<AvatarGroupHostComponent, never>;
60
+ static ɵcmp: i0.ɵɵComponentDeclaration<AvatarGroupHostComponent, "fd-avatar-group-host", never, { "class": { "alias": "class"; "required": false; }; "type": { "alias": "type"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "size": { "alias": "size"; "required": false; }; "items": { "alias": "items"; "required": false; }; }, {}, ["_portals"], ["*"], true, never, false>;
61
+ }
@@ -0,0 +1,16 @@
1
+ import * as i0 from "@angular/core";
2
+ /**
3
+ * Avatar group overflow body component, used to provide a template for the avatar group overflow body.
4
+ */
5
+ export declare class AvatarGroupOverflowBodyComponent {
6
+ /** Remove the padding from the overflow body. */
7
+ noPadding: boolean;
8
+ /** Hide horizontal scrollbar from the overflow body. */
9
+ noHorizontalScroll: boolean;
10
+ /** Hide vertical scrollbar from the overflow body. */
11
+ noVerticalScroll: boolean;
12
+ /** Additional popover body class */
13
+ additionalPopoverBodyClass: string;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<AvatarGroupOverflowBodyComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<AvatarGroupOverflowBodyComponent, "fd-avatar-group-overflow-body", never, { "noPadding": { "alias": "noPadding"; "required": false; }; "noHorizontalScroll": { "alias": "noHorizontalScroll"; "required": false; }; "noVerticalScroll": { "alias": "noVerticalScroll"; "required": false; }; "additionalPopoverBodyClass": { "alias": "additionalPopoverBodyClass"; "required": false; }; }, {}, never, ["[fd-popover-body-header]", "[fd-avatar-group-overflow-body-content]"], true, never, false>;
16
+ }
@@ -0,0 +1,36 @@
1
+ import { OnChanges, OnInit } from '@angular/core';
2
+ import { ColorAccent, CssClassBuilder, FocusableItemDirective, Nullable, Size } from '@fundamental-ngx/cdk/utils';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Avatar group overflow button component.
6
+ * This is used for the overflow button template.
7
+ * Although any content can be projected as the overflow button, this component provides some styling and accessibility features.
8
+ */
9
+ export declare class AvatarGroupOverflowButtonComponent extends FocusableItemDirective implements OnChanges, OnInit, CssClassBuilder {
10
+ /**
11
+ * Size of the overflow button.
12
+ */
13
+ size: Size;
14
+ /**
15
+ * Whether the overflow button should be displayed as a circle.
16
+ */
17
+ circle: boolean;
18
+ /**
19
+ * A number from 1 to 10 representing the background color of the Avatar.
20
+ */
21
+ colorAccent: Nullable<ColorAccent>;
22
+ /**
23
+ * The class to apply to the host element.
24
+ **/
25
+ class: Nullable<string>;
26
+ /** @hidden */
27
+ constructor();
28
+ /** @hidden */
29
+ buildComponentCssClass(): string[];
30
+ /** @hidden */
31
+ ngOnInit(): void;
32
+ /** @hidden */
33
+ ngOnChanges(): void;
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<AvatarGroupOverflowButtonComponent, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<AvatarGroupOverflowButtonComponent, "fd-avatar-group-overflow-button", never, { "size": { "alias": "size"; "required": false; }; "circle": { "alias": "circle"; "required": false; }; "colorAccent": { "alias": "colorAccent"; "required": false; }; "class": { "alias": "class"; "required": false; }; }, {}, never, ["*"], true, never, false>;
36
+ }
@@ -0,0 +1,42 @@
1
+ import { AfterViewInit, OnDestroy, QueryList } from '@angular/core';
2
+ import { AvatarGroupItemRendererDirective } from '../../directives/avatar-group-item-renderer.directive';
3
+ import { AvatarGroupItemDirective } from '../../directives/avatar-group-item.directive';
4
+ import * as i0 from "@angular/core";
5
+ export declare class DefaultAvatarGroupOverflowBodyComponent implements AfterViewInit, OnDestroy {
6
+ /**
7
+ * List of avatars to be rendered in the overflow popover.
8
+ **/
9
+ avatars: Iterable<AvatarGroupItemRendererDirective>;
10
+ /**
11
+ * Title of the overflow popover.
12
+ * */
13
+ overflowPopoverTitle: string;
14
+ /** @hidden */
15
+ _avatarGroupItemPortals: QueryList<AvatarGroupItemRendererDirective>;
16
+ /** @hidden */
17
+ _overflowPopoverStage: 'main' | 'details';
18
+ /** @hidden */
19
+ _selectedItem: AvatarGroupItemDirective;
20
+ /** @hidden */
21
+ get _isDetailStage(): boolean;
22
+ /** @hidden */
23
+ get isRtl(): boolean;
24
+ /** @hidden */
25
+ private _itemClickSubscription;
26
+ /** @hidden */
27
+ private readonly _changeDetectorRef;
28
+ /** @hidden */
29
+ private readonly _renderer;
30
+ /** @hidden */
31
+ private readonly _rtlService;
32
+ /** @hidden */
33
+ _trackByFn(_: number, item: AvatarGroupItemRendererDirective): AvatarGroupItemRendererDirective;
34
+ /** @hidden */
35
+ ngAfterViewInit(): void;
36
+ /** @hidden */
37
+ ngOnDestroy(): void;
38
+ /** @hidden */
39
+ _openOverflowMain(): void;
40
+ static ɵfac: i0.ɵɵFactoryDeclaration<DefaultAvatarGroupOverflowBodyComponent, never>;
41
+ static ɵcmp: i0.ɵɵComponentDeclaration<DefaultAvatarGroupOverflowBodyComponent, "fd-default-avatar-group-overflow-body", never, { "avatars": { "alias": "avatars"; "required": false; }; "overflowPopoverTitle": { "alias": "overflowPopoverTitle"; "required": false; }; }, {}, never, never, true, never, false>;
42
+ }
@@ -0,0 +1,27 @@
1
+ import { OnDestroy } from '@angular/core';
2
+ import { AvatarGroupItemRendererDirective } from './avatar-group-item-renderer.directive';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AvatarGroupInternalOverflowButtonDirective implements OnDestroy {
5
+ /**
6
+ * List of hidden items to be rendered in the overflow popover.
7
+ **/
8
+ set hiddenItems(value: AvatarGroupItemRendererDirective[] | null);
9
+ /** @hidden */
10
+ private readonly _templateRef;
11
+ /** @hidden */
12
+ private readonly _viewContainerRef;
13
+ /** @hidden */
14
+ private _embeddedView?;
15
+ /** @hidden */
16
+ static ngTemplateContextGuard(_directive: AvatarGroupInternalOverflowButtonDirective, context: unknown): context is {
17
+ $implicit: AvatarGroupItemRendererDirective[];
18
+ };
19
+ /** @hidden */
20
+ ngOnDestroy(): void;
21
+ /** @hidden */
22
+ private _show;
23
+ /** @hidden */
24
+ private _hide;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<AvatarGroupInternalOverflowButtonDirective, never>;
26
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AvatarGroupInternalOverflowButtonDirective, "[fdAvatarGroupInternalOverflowButton]", never, { "hiddenItems": { "alias": "fdAvatarGroupInternalOverflowButton"; "required": false; }; }, {}, never, never, true, never, false>;
27
+ }
@@ -0,0 +1,81 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { FocusableItem, Nullable } from '@fundamental-ngx/cdk/utils';
3
+ import { Observable } from 'rxjs';
4
+ import { AvatarGroupItemDirective } from './avatar-group-item.directive';
5
+ import * as i0 from "@angular/core";
6
+ export declare class AvatarGroupItemRendererDirective implements OnInit, FocusableItem {
7
+ /**
8
+ * Avatar group item to be rendered.
9
+ **/
10
+ avatarGroupItem: AvatarGroupItemDirective;
11
+ /**
12
+ * Whether the item should be forced to be visible.
13
+ **/
14
+ forceVisibility: boolean;
15
+ /**
16
+ * HTML element of the item.
17
+ **/
18
+ element$: Observable<Nullable<HTMLElement>>;
19
+ /** @hidden */
20
+ keydown: Observable<KeyboardEvent>;
21
+ /**
22
+ * Whether the item is visible.
23
+ **/
24
+ get visible(): boolean;
25
+ /**
26
+ * Currently rendered element's HTMLElement.
27
+ **/
28
+ get element(): HTMLElement;
29
+ /**
30
+ * Rendered element's width or it's last saved width.
31
+ **/
32
+ get width(): number;
33
+ /**
34
+ * Rendered element's height or it's last saved height.
35
+ **/
36
+ get height(): number;
37
+ /** @hidden */
38
+ private _portalOutlet;
39
+ /** @hidden */
40
+ private _viewContainerRef;
41
+ /**
42
+ * @hidden
43
+ **/
44
+ private _element$;
45
+ /** @hidden */
46
+ private _templatePortal?;
47
+ /** @hidden */
48
+ private _isFocusable;
49
+ /** @hidden */
50
+ private _embeddedViewRef;
51
+ /** @hidden */
52
+ private _lastSavedWidth;
53
+ /** @hidden */
54
+ private _lastSavedHeight;
55
+ /** @hidden */
56
+ private _hostConfig;
57
+ /** @hidden */
58
+ constructor();
59
+ /** @hidden */
60
+ ngOnInit(): void;
61
+ /**
62
+ * Hides the item.
63
+ **/
64
+ hide(): void;
65
+ /**
66
+ * Shows the item.
67
+ **/
68
+ show(): void;
69
+ /**
70
+ * Whether the item is focusable.
71
+ **/
72
+ isFocusable: () => boolean;
73
+ /**
74
+ * Sets the tabbable state of the item.
75
+ **/
76
+ setTabbable(tabbable: boolean): void;
77
+ /** @hidden */
78
+ focus(): void;
79
+ static ɵfac: i0.ɵɵFactoryDeclaration<AvatarGroupItemRendererDirective, never>;
80
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AvatarGroupItemRendererDirective, "[fdAvatarGroupItemPortal]", ["fdAvatarGroupItemPortal"], { "avatarGroupItem": { "alias": "avatarGroupItem"; "required": false; }; "forceVisibility": { "alias": "forceVisibility"; "required": false; }; }, {}, never, never, true, never, false>;
81
+ }
@@ -1,20 +1,27 @@
1
- import { ElementRef } from '@angular/core';
2
- import { FocusableOption } from '@angular/cdk/a11y';
3
- import { AvatarGroupInterface } from '../avatar-group.interface';
1
+ import { TemplateRef } from '@angular/core';
4
2
  import * as i0 from "@angular/core";
5
- export declare class AvatarGroupItemDirective implements FocusableOption {
6
- private readonly _elementRef;
7
- private readonly _component;
8
- /** Item disable state */
9
- disabled: boolean;
3
+ /**
4
+ * Avatar group item directive, used to provide a template for the avatar group item.
5
+ */
6
+ export declare class AvatarGroupItemDirective {
7
+ /**
8
+ * Text, which will be displayed when in overflow popover and activated
9
+ * */
10
+ title: string;
11
+ /**
12
+ * If set to true, item will never be hidden in overflow popover
13
+ * */
14
+ forceVisibility: boolean;
10
15
  /** @hidden */
11
- constructor(_elementRef: ElementRef<HTMLElement>, _component: AvatarGroupInterface);
16
+ _templateRef: TemplateRef<void>;
17
+ /**
18
+ * Template for the details of the avatar group item.
19
+ * This template it used to render additional information in the overflow popover.
20
+ * */
21
+ set details(detailsTemplate: TemplateRef<void> | string);
22
+ get details(): TemplateRef<void>;
12
23
  /** @hidden */
13
- get _element(): HTMLElement;
14
- /** Handler for mouse events */
15
- onClick(): void;
16
- /** @hidden */
17
- focus(): void;
18
- static ɵfac: i0.ɵɵFactoryDeclaration<AvatarGroupItemDirective, [null, { optional: true; }]>;
19
- static ɵdir: i0.ɵɵDirectiveDeclaration<AvatarGroupItemDirective, "[fd-avatar-group-item]", never, {}, {}, never, never, false, never, false>;
24
+ private _details;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<AvatarGroupItemDirective, never>;
26
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AvatarGroupItemDirective, "[fdAvatarGroupItem]", never, { "title": { "alias": "fdAvatarGroupItemTitle"; "required": false; }; "forceVisibility": { "alias": "fdAvatarGroupItemForceVisibility"; "required": false; }; "details": { "alias": "fdAvatarGroupItem"; "required": false; }; }, {}, never, never, true, never, false>;
20
27
  }
@@ -1,40 +1,15 @@
1
- import { AfterViewInit, OnDestroy, QueryList } from '@angular/core';
2
- import { FocusableOption } from '@angular/cdk/a11y';
3
- import { HasElementRef, RtlService } from '@fundamental-ngx/cdk/utils';
4
- import { FocusableWithElementRef } from '../tokens';
1
+ import { TemplateRef } from '@angular/core';
2
+ import { AvatarGroupItemRendererDirective } from './avatar-group-item-renderer.directive';
5
3
  import * as i0 from "@angular/core";
6
- export declare class AvatarGroupOverflowBodyDirective implements AfterViewInit, OnDestroy {
7
- private _rtlService;
8
- /** Remove the padding from the overflow body. */
9
- noPadding: boolean;
10
- /** Hide horizontal scrollbar from the overflow body. */
11
- noHorizontalScroll: boolean;
12
- /** Hide vertical scrollbar from the overflow body. */
13
- noVerticalScroll: boolean;
14
- /** @hidden Avatar Group Overflow items. */
15
- overflowItems: QueryList<FocusableWithElementRef>;
16
- /** @hidden FocusKeyManager instance */
17
- private _keyboardEventsManager;
18
- /** @hidden */
19
- private readonly _subscription;
20
- /** @hidden handles rtl service */
21
- private _dir;
22
- /** @hidden */
23
- constructor(_rtlService: RtlService);
24
- /** @hidden */
25
- ngAfterViewInit(): void;
26
- /** @hidden */
27
- ngOnDestroy(): void;
28
- /** @hidden */
29
- keyUpHandler(event: KeyboardEvent): void;
30
- /** @hidden */
31
- _setActiveItem(item: FocusableOption & HasElementRef): void;
32
- /** @hidden */
33
- private _listenForItemChanges;
34
- /** @hidden */
35
- private _setKeyboardEventsManager;
36
- /** @hidden Rtl change subscription */
37
- private _subscribeToRtl;
38
- static ɵfac: i0.ɵɵFactoryDeclaration<AvatarGroupOverflowBodyDirective, [{ optional: true; }]>;
39
- static ɵdir: i0.ɵɵDirectiveDeclaration<AvatarGroupOverflowBodyDirective, "[fd-avatar-group-overflow-body]", never, { "noPadding": { "alias": "noPadding"; "required": false; }; "noHorizontalScroll": { "alias": "noHorizontalScroll"; "required": false; }; "noVerticalScroll": { "alias": "noVerticalScroll"; "required": false; }; }, {}, ["overflowItems"], never, false, never, false>;
4
+ /**
5
+ * Avatar group overflow body directive, used to provide a template for the avatar group overflow body.
6
+ * If nothing is provided, default overflow body will be used.
7
+ */
8
+ export declare class AvatarGroupOverflowBodyDirective {
9
+ /** @hidden */
10
+ readonly _templateRef: TemplateRef<{
11
+ hiddenItems: AvatarGroupItemRendererDirective[];
12
+ }>;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<AvatarGroupOverflowBodyDirective, never>;
14
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AvatarGroupOverflowBodyDirective, "[fdAvatarGroupOverflowBody]", never, {}, {}, never, never, true, never, false>;
40
15
  }
@@ -1,29 +1,15 @@
1
- import { ElementRef, OnChanges, OnInit } from '@angular/core';
2
- import { Size } from '@fundamental-ngx/cdk/utils';
3
- import { CssClassBuilder } from '@fundamental-ngx/cdk/utils';
4
- import { AvatarGroupOverflowButtonColor } from '../avatar-group.component';
1
+ import { TemplateRef } from '@angular/core';
2
+ import { AvatarGroupItemRendererDirective } from './avatar-group-item-renderer.directive';
5
3
  import * as i0 from "@angular/core";
6
- export declare class AvatarGroupOverflowButtonDirective implements OnInit, OnChanges, CssClassBuilder {
7
- readonly elementRef: ElementRef;
8
- /** User's custom classes. */
9
- class: string;
10
- /** The size of the overflow button.
11
- * Should be the same as the Avatar Group and Avatar size.
12
- * Options include: *xs*, *s*, *m*, *l* and *xl* (default: *s*). */
13
- size: Size;
14
- /** A number from 1 to 10 representing the background color of the Avatar Group's overflow button.
15
- * Options include: *neutral*, *random*, *1*, *2*, *3*, *4*, *5*, *6*, *7*, *8*, *9*, *10* (default: *neutral*). */
16
- color: AvatarGroupOverflowButtonColor;
17
- /** @hidden */
18
- constructor(elementRef: ElementRef);
19
- /** @hidden */
20
- ngOnInit(): void;
21
- /** @hidden */
22
- ngOnChanges(): void;
23
- /** @hidden */
24
- buildComponentCssClass(): string[];
25
- /** @hidden */
26
- private _getMoreButtonColorCssClass;
4
+ /**
5
+ * Avatar group overflow button directive, used to provide a template for the avatar group overflow button.
6
+ * If nothing is provided, default overflow button will be used.
7
+ */
8
+ export declare class AvatarGroupOverflowButtonDirective {
9
+ /** @hidden */
10
+ readonly _templateRef: TemplateRef<{
11
+ hiddenItems: AvatarGroupItemRendererDirective[];
12
+ }>;
27
13
  static ɵfac: i0.ɵɵFactoryDeclaration<AvatarGroupOverflowButtonDirective, never>;
28
- static ɵdir: i0.ɵɵDirectiveDeclaration<AvatarGroupOverflowButtonDirective, "[fd-avatar-group-overflow-button]", never, { "class": { "alias": "class"; "required": false; }; "size": { "alias": "size"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, false, never, false>;
14
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AvatarGroupOverflowButtonDirective, "[fdAvatarGroupOverflowButton]", never, {}, {}, never, never, true, never, false>;
29
15
  }