@symphony-talent/component-library 1.5.0 → 1.9.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 (626) hide show
  1. package/esm2020/lib/atoms/atoms.module.mjs +123 -0
  2. package/esm2020/lib/atoms/avatar/avatar.component.mjs +96 -0
  3. package/esm2020/lib/atoms/avatar/avatar.module.mjs +18 -0
  4. package/esm2020/lib/atoms/button/button.component.mjs +28 -0
  5. package/esm2020/lib/atoms/button/button.module.mjs +19 -0
  6. package/esm2020/lib/atoms/color-sample/color-sample.component.mjs +18 -0
  7. package/esm2020/lib/atoms/color-sample/color-sample.enum.mjs +26 -0
  8. package/esm2020/lib/atoms/color-sample/color-sample.module.mjs +18 -0
  9. package/esm2020/lib/atoms/contextual-menu/contextual-menu.component.mjs +26 -0
  10. package/esm2020/lib/atoms/contextual-menu/contextual-menu.model.mjs +2 -0
  11. package/esm2020/lib/atoms/contextual-menu/contextual-menu.module.mjs +21 -0
  12. package/esm2020/lib/atoms/filter-area/filter-area.component.mjs +12 -0
  13. package/esm2020/lib/atoms/filter-area/filter-area.module.mjs +18 -0
  14. package/esm2020/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.mjs +47 -0
  15. package/esm2020/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.module.mjs +17 -0
  16. package/esm2020/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.model.mjs +8 -0
  17. package/esm2020/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.component.mjs +33 -0
  18. package/esm2020/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.model.mjs +2 -0
  19. package/esm2020/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.module.mjs +19 -0
  20. package/esm2020/lib/atoms/grid/framework/framework.module.mjs +31 -0
  21. package/esm2020/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.component.mjs +25 -0
  22. package/esm2020/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.model.mjs +2 -0
  23. package/esm2020/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.module.mjs +19 -0
  24. package/esm2020/lib/atoms/grid/framework/relevance-score/relevance-score.component.mjs +31 -0
  25. package/esm2020/lib/atoms/grid/framework/relevance-score/relevance-score.component.model.mjs +6 -0
  26. package/esm2020/lib/atoms/grid/framework/relevance-score/relevance-score.component.module.mjs +17 -0
  27. package/esm2020/lib/atoms/grid/grid.component.mjs +39 -0
  28. package/esm2020/lib/atoms/grid/grid.model.mjs +2 -0
  29. package/esm2020/lib/atoms/grid/grid.module.mjs +21 -0
  30. package/esm2020/lib/atoms/h1/h1.component.mjs +17 -0
  31. package/esm2020/lib/atoms/h1/h1.module.mjs +18 -0
  32. package/esm2020/lib/atoms/h2/h2.component.mjs +17 -0
  33. package/esm2020/lib/atoms/h2/h2.module.mjs +18 -0
  34. package/esm2020/lib/atoms/h3/h3.component.mjs +17 -0
  35. package/esm2020/lib/atoms/h3/h3.module.mjs +18 -0
  36. package/esm2020/lib/atoms/h4/h4.component.mjs +17 -0
  37. package/esm2020/lib/atoms/h4/h4.module.mjs +18 -0
  38. package/esm2020/lib/atoms/h5/h5.component.mjs +17 -0
  39. package/esm2020/lib/atoms/h5/h5.module.mjs +18 -0
  40. package/esm2020/lib/atoms/icon/icon.component.mjs +27 -0
  41. package/esm2020/lib/atoms/icon/icon.enum.mjs +75 -0
  42. package/esm2020/lib/atoms/icon/icon.module.mjs +18 -0
  43. package/esm2020/lib/atoms/icon-wrapper/icon-wrapper.component.mjs +24 -0
  44. package/esm2020/lib/atoms/icon-wrapper/icon-wrapper.module.mjs +18 -0
  45. package/esm2020/lib/atoms/input-checkbox/input-checkbox.component.mjs +30 -0
  46. package/esm2020/lib/atoms/input-checkbox/input-checkbox.module.mjs +18 -0
  47. package/esm2020/lib/atoms/input-dropdown/input-dropdown-list-item.model.mjs +3 -0
  48. package/esm2020/lib/atoms/input-dropdown/input-dropdown-list.model.mjs +3 -0
  49. package/esm2020/lib/atoms/input-dropdown/input-dropdown.component.mjs +42 -0
  50. package/esm2020/lib/atoms/input-dropdown/input-dropdown.module.mjs +24 -0
  51. package/esm2020/lib/atoms/input-radio/input-radio.component.mjs +30 -0
  52. package/esm2020/lib/atoms/input-radio/input-radio.module.mjs +29 -0
  53. package/esm2020/lib/atoms/input-text/input-text.component.mjs +43 -0
  54. package/esm2020/lib/atoms/input-text/input-text.module.mjs +19 -0
  55. package/esm2020/lib/atoms/input-toggle/input-toggle.component.mjs +25 -0
  56. package/esm2020/lib/atoms/input-toggle/input-toggle.module.mjs +18 -0
  57. package/esm2020/lib/atoms/paragraph/paragraph.component.mjs +17 -0
  58. package/esm2020/lib/atoms/paragraph/paragraph.module.mjs +18 -0
  59. package/esm2020/lib/atoms/pill/pill.component.mjs +29 -0
  60. package/esm2020/lib/atoms/pill/pill.model.mjs +2 -0
  61. package/esm2020/lib/atoms/pill/pill.module.mjs +24 -0
  62. package/esm2020/lib/atoms/sfx-loader/sfx-loader.component.mjs +16 -0
  63. package/esm2020/lib/atoms/sfx-loader/sfx-loader.module.mjs +18 -0
  64. package/esm2020/lib/atoms/sfx-page-loader/sfx-page-loader.component.mjs +12 -0
  65. package/esm2020/lib/atoms/sfx-page-loader/sfx-page-loader.module.mjs +18 -0
  66. package/esm2020/lib/atoms/sfx-progress-bar/sfx-progress-bar.component.mjs +14 -0
  67. package/esm2020/lib/atoms/sfx-progress-bar/sfx-progress-bar.module.mjs +18 -0
  68. package/esm2020/lib/atoms/task-icon/task-icon.component.mjs +15 -0
  69. package/esm2020/lib/atoms/task-icon/task-icon.module.mjs +18 -0
  70. package/esm2020/lib/atoms/toaster-alert/toaster-alert.component.mjs +50 -0
  71. package/esm2020/lib/atoms/toaster-alert/toaster-alert.model.mjs +18 -0
  72. package/esm2020/lib/atoms/toaster-alert/toaster-alert.module.mjs +18 -0
  73. package/esm2020/lib/atoms/two-column-filter-area/two-column-filter-area.component.mjs +15 -0
  74. package/esm2020/lib/atoms/two-column-filter-area/two-column-filter-area.module.mjs +18 -0
  75. package/esm2020/lib/design-guide/color-swatch-collection/color-swatch-collection.component.mjs +16 -0
  76. package/esm2020/lib/design-guide/color-swatch-collection/color-swatch-collection.module.mjs +19 -0
  77. package/esm2020/lib/design-guide/icon-explorer/icon-explorer.component.mjs +32 -0
  78. package/esm2020/lib/design-guide/icon-explorer/icon-explorer.helper.mjs +521 -0
  79. package/esm2020/lib/design-guide/icon-explorer/icon-explorer.module.mjs +20 -0
  80. package/esm2020/lib/molecules/breadcrumb/breadcrumb.component.mjs +21 -0
  81. package/esm2020/lib/molecules/breadcrumb/breadcrumb.model.mjs +2 -0
  82. package/esm2020/lib/molecules/breadcrumb/breadcrumb.module.mjs +20 -0
  83. package/esm2020/lib/molecules/color-swatch/color-swatch.component.mjs +29 -0
  84. package/esm2020/lib/molecules/color-swatch/color-swatch.model.mjs +2 -0
  85. package/esm2020/lib/molecules/color-swatch/color-swatch.module.mjs +34 -0
  86. package/esm2020/lib/molecules/icon-swatch/icon-swatch.component.mjs +26 -0
  87. package/esm2020/lib/molecules/icon-swatch/icon-swatch.model.mjs +3 -0
  88. package/esm2020/lib/molecules/icon-swatch/icon-swatch.module.mjs +38 -0
  89. package/esm2020/lib/molecules/molecules.module.mjs +67 -0
  90. package/esm2020/lib/molecules/note/note.component.mjs +31 -0
  91. package/esm2020/lib/molecules/note/note.model.mjs +2 -0
  92. package/esm2020/lib/molecules/note/note.module.mjs +38 -0
  93. package/esm2020/lib/molecules/pills/pills.component.mjs +27 -0
  94. package/esm2020/lib/molecules/pills/pills.module.mjs +28 -0
  95. package/esm2020/lib/molecules/task/task.component.mjs +25 -0
  96. package/esm2020/lib/molecules/task/task.model.mjs +2 -0
  97. package/esm2020/lib/molecules/task/task.module.mjs +38 -0
  98. package/esm2020/lib/organisms/note-list/note-list.component.mjs +16 -0
  99. package/esm2020/lib/organisms/note-list/note-list.module.mjs +19 -0
  100. package/esm2020/lib/organisms/task-list/task-list.component.mjs +16 -0
  101. package/esm2020/lib/organisms/task-list/task-list.module.mjs +19 -0
  102. package/esm2020/lib/pages/events-settings-page/events-settings-page.component.mjs +56 -0
  103. package/esm2020/lib/pages/events-settings-page/events-settings-page.model.mjs +2 -0
  104. package/esm2020/lib/pages/events-settings-page/events-settings-page.module.mjs +70 -0
  105. package/esm2020/lib/templates/admin-list/admin-list.component.mjs +12 -0
  106. package/esm2020/lib/templates/admin-list/admin-list.module.mjs +18 -0
  107. package/esm2020/lib/templates/placeholder/placeholder.component.mjs +26 -0
  108. package/esm2020/lib/templates/placeholder/placeholder.module.mjs +20 -0
  109. package/esm2020/projects/component-library/lib/atoms/atoms.module.mjs +123 -0
  110. package/esm2020/projects/component-library/lib/atoms/avatar/avatar.component.mjs +96 -0
  111. package/esm2020/projects/component-library/lib/atoms/avatar/avatar.module.mjs +18 -0
  112. package/esm2020/projects/component-library/lib/atoms/button/button.component.mjs +28 -0
  113. package/esm2020/projects/component-library/lib/atoms/button/button.module.mjs +19 -0
  114. package/esm2020/projects/component-library/lib/atoms/color-sample/color-sample.component.mjs +18 -0
  115. package/esm2020/projects/component-library/lib/atoms/color-sample/color-sample.enum.mjs +26 -0
  116. package/esm2020/projects/component-library/lib/atoms/color-sample/color-sample.module.mjs +18 -0
  117. package/esm2020/projects/component-library/lib/atoms/contextual-menu/contextual-menu.component.mjs +26 -0
  118. package/esm2020/projects/component-library/lib/atoms/contextual-menu/contextual-menu.model.mjs +2 -0
  119. package/esm2020/projects/component-library/lib/atoms/contextual-menu/contextual-menu.module.mjs +21 -0
  120. package/esm2020/projects/component-library/lib/atoms/filter-area/filter-area.component.mjs +12 -0
  121. package/esm2020/projects/component-library/lib/atoms/filter-area/filter-area.module.mjs +18 -0
  122. package/esm2020/projects/component-library/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.mjs +47 -0
  123. package/esm2020/projects/component-library/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.module.mjs +17 -0
  124. package/esm2020/projects/component-library/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.model.mjs +8 -0
  125. package/esm2020/projects/component-library/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.component.mjs +33 -0
  126. package/esm2020/projects/component-library/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.model.mjs +2 -0
  127. package/esm2020/projects/component-library/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.module.mjs +19 -0
  128. package/esm2020/projects/component-library/lib/atoms/grid/framework/framework.module.mjs +31 -0
  129. package/esm2020/projects/component-library/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.component.mjs +25 -0
  130. package/esm2020/projects/component-library/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.model.mjs +2 -0
  131. package/esm2020/projects/component-library/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.module.mjs +19 -0
  132. package/esm2020/projects/component-library/lib/atoms/grid/framework/relevance-score/relevance-score.component.mjs +31 -0
  133. package/esm2020/projects/component-library/lib/atoms/grid/framework/relevance-score/relevance-score.component.model.mjs +6 -0
  134. package/esm2020/projects/component-library/lib/atoms/grid/framework/relevance-score/relevance-score.component.module.mjs +17 -0
  135. package/esm2020/projects/component-library/lib/atoms/grid/grid.component.mjs +39 -0
  136. package/esm2020/projects/component-library/lib/atoms/grid/grid.model.mjs +2 -0
  137. package/esm2020/projects/component-library/lib/atoms/grid/grid.module.mjs +21 -0
  138. package/esm2020/projects/component-library/lib/atoms/h1/h1.component.mjs +17 -0
  139. package/esm2020/projects/component-library/lib/atoms/h1/h1.module.mjs +18 -0
  140. package/esm2020/projects/component-library/lib/atoms/h2/h2.component.mjs +17 -0
  141. package/esm2020/projects/component-library/lib/atoms/h2/h2.module.mjs +18 -0
  142. package/esm2020/projects/component-library/lib/atoms/h3/h3.component.mjs +17 -0
  143. package/esm2020/projects/component-library/lib/atoms/h3/h3.module.mjs +18 -0
  144. package/esm2020/projects/component-library/lib/atoms/h4/h4.component.mjs +17 -0
  145. package/esm2020/projects/component-library/lib/atoms/h4/h4.module.mjs +18 -0
  146. package/esm2020/projects/component-library/lib/atoms/h5/h5.component.mjs +17 -0
  147. package/esm2020/projects/component-library/lib/atoms/h5/h5.module.mjs +18 -0
  148. package/esm2020/projects/component-library/lib/atoms/icon/icon.component.mjs +27 -0
  149. package/esm2020/projects/component-library/lib/atoms/icon/icon.enum.mjs +75 -0
  150. package/esm2020/projects/component-library/lib/atoms/icon/icon.module.mjs +18 -0
  151. package/esm2020/projects/component-library/lib/atoms/icon-wrapper/icon-wrapper.component.mjs +24 -0
  152. package/esm2020/projects/component-library/lib/atoms/icon-wrapper/icon-wrapper.module.mjs +18 -0
  153. package/esm2020/projects/component-library/lib/atoms/input-checkbox/input-checkbox.component.mjs +30 -0
  154. package/esm2020/projects/component-library/lib/atoms/input-checkbox/input-checkbox.module.mjs +18 -0
  155. package/esm2020/projects/component-library/lib/atoms/input-dropdown/input-dropdown-list-item.model.mjs +3 -0
  156. package/esm2020/projects/component-library/lib/atoms/input-dropdown/input-dropdown-list.model.mjs +3 -0
  157. package/esm2020/projects/component-library/lib/atoms/input-dropdown/input-dropdown.component.mjs +42 -0
  158. package/esm2020/projects/component-library/lib/atoms/input-dropdown/input-dropdown.module.mjs +24 -0
  159. package/esm2020/projects/component-library/lib/atoms/input-radio/input-radio.component.mjs +30 -0
  160. package/esm2020/projects/component-library/lib/atoms/input-radio/input-radio.module.mjs +29 -0
  161. package/esm2020/projects/component-library/lib/atoms/input-text/input-text.component.mjs +43 -0
  162. package/esm2020/projects/component-library/lib/atoms/input-text/input-text.module.mjs +19 -0
  163. package/esm2020/projects/component-library/lib/atoms/input-toggle/input-toggle.component.mjs +25 -0
  164. package/esm2020/projects/component-library/lib/atoms/input-toggle/input-toggle.module.mjs +18 -0
  165. package/esm2020/projects/component-library/lib/atoms/paragraph/paragraph.component.mjs +17 -0
  166. package/esm2020/projects/component-library/lib/atoms/paragraph/paragraph.module.mjs +18 -0
  167. package/esm2020/projects/component-library/lib/atoms/pill/pill.component.mjs +29 -0
  168. package/esm2020/projects/component-library/lib/atoms/pill/pill.model.mjs +2 -0
  169. package/esm2020/projects/component-library/lib/atoms/pill/pill.module.mjs +24 -0
  170. package/esm2020/projects/component-library/lib/atoms/sfx-loader/sfx-loader.component.mjs +16 -0
  171. package/esm2020/projects/component-library/lib/atoms/sfx-loader/sfx-loader.module.mjs +18 -0
  172. package/esm2020/projects/component-library/lib/atoms/sfx-page-loader/sfx-page-loader.component.mjs +12 -0
  173. package/esm2020/projects/component-library/lib/atoms/sfx-page-loader/sfx-page-loader.module.mjs +18 -0
  174. package/esm2020/projects/component-library/lib/atoms/sfx-progress-bar/sfx-progress-bar.component.mjs +14 -0
  175. package/esm2020/projects/component-library/lib/atoms/sfx-progress-bar/sfx-progress-bar.module.mjs +18 -0
  176. package/esm2020/projects/component-library/lib/atoms/task-icon/task-icon.component.mjs +15 -0
  177. package/esm2020/projects/component-library/lib/atoms/task-icon/task-icon.module.mjs +18 -0
  178. package/esm2020/projects/component-library/lib/atoms/toaster-alert/toaster-alert.component.mjs +50 -0
  179. package/esm2020/projects/component-library/lib/atoms/toaster-alert/toaster-alert.model.mjs +18 -0
  180. package/esm2020/projects/component-library/lib/atoms/toaster-alert/toaster-alert.module.mjs +18 -0
  181. package/esm2020/projects/component-library/lib/atoms/two-column-filter-area/two-column-filter-area.component.mjs +15 -0
  182. package/esm2020/projects/component-library/lib/atoms/two-column-filter-area/two-column-filter-area.module.mjs +18 -0
  183. package/esm2020/projects/component-library/lib/design-guide/color-swatch-collection/color-swatch-collection.component.mjs +16 -0
  184. package/esm2020/projects/component-library/lib/design-guide/color-swatch-collection/color-swatch-collection.module.mjs +19 -0
  185. package/esm2020/projects/component-library/lib/design-guide/icon-explorer/icon-explorer.component.mjs +32 -0
  186. package/esm2020/projects/component-library/lib/design-guide/icon-explorer/icon-explorer.helper.mjs +521 -0
  187. package/esm2020/projects/component-library/lib/design-guide/icon-explorer/icon-explorer.module.mjs +20 -0
  188. package/esm2020/projects/component-library/lib/molecules/breadcrumb/breadcrumb.component.mjs +21 -0
  189. package/esm2020/projects/component-library/lib/molecules/breadcrumb/breadcrumb.model.mjs +2 -0
  190. package/esm2020/projects/component-library/lib/molecules/breadcrumb/breadcrumb.module.mjs +20 -0
  191. package/esm2020/projects/component-library/lib/molecules/color-swatch/color-swatch.component.mjs +29 -0
  192. package/esm2020/projects/component-library/lib/molecules/color-swatch/color-swatch.model.mjs +2 -0
  193. package/esm2020/projects/component-library/lib/molecules/color-swatch/color-swatch.module.mjs +34 -0
  194. package/esm2020/projects/component-library/lib/molecules/icon-swatch/icon-swatch.component.mjs +26 -0
  195. package/esm2020/projects/component-library/lib/molecules/icon-swatch/icon-swatch.model.mjs +3 -0
  196. package/esm2020/projects/component-library/lib/molecules/icon-swatch/icon-swatch.module.mjs +38 -0
  197. package/esm2020/projects/component-library/lib/molecules/molecules.module.mjs +67 -0
  198. package/esm2020/projects/component-library/lib/molecules/note/note.component.mjs +31 -0
  199. package/esm2020/projects/component-library/lib/molecules/note/note.model.mjs +2 -0
  200. package/esm2020/projects/component-library/lib/molecules/note/note.module.mjs +38 -0
  201. package/esm2020/projects/component-library/lib/molecules/pills/pills.component.mjs +27 -0
  202. package/esm2020/projects/component-library/lib/molecules/pills/pills.module.mjs +28 -0
  203. package/esm2020/projects/component-library/lib/molecules/task/task.component.mjs +25 -0
  204. package/esm2020/projects/component-library/lib/molecules/task/task.model.mjs +2 -0
  205. package/esm2020/projects/component-library/lib/molecules/task/task.module.mjs +38 -0
  206. package/esm2020/projects/component-library/lib/organisms/note-list/note-list.component.mjs +16 -0
  207. package/esm2020/projects/component-library/lib/organisms/note-list/note-list.module.mjs +19 -0
  208. package/esm2020/projects/component-library/lib/organisms/task-list/task-list.component.mjs +16 -0
  209. package/esm2020/projects/component-library/lib/organisms/task-list/task-list.module.mjs +19 -0
  210. package/esm2020/projects/component-library/lib/pages/events-settings-page/events-settings-page.component.mjs +56 -0
  211. package/esm2020/projects/component-library/lib/pages/events-settings-page/events-settings-page.model.mjs +2 -0
  212. package/esm2020/projects/component-library/lib/pages/events-settings-page/events-settings-page.module.mjs +70 -0
  213. package/esm2020/projects/component-library/lib/templates/admin-list/admin-list.component.mjs +12 -0
  214. package/esm2020/projects/component-library/lib/templates/admin-list/admin-list.module.mjs +18 -0
  215. package/esm2020/projects/component-library/lib/templates/placeholder/placeholder.component.mjs +26 -0
  216. package/esm2020/projects/component-library/lib/templates/placeholder/placeholder.module.mjs +20 -0
  217. package/esm2020/projects/component-library/public-api.mjs +92 -0
  218. package/esm2020/projects/component-library/symphony-talent-component-library-projects-component-library.mjs +5 -0
  219. package/esm2020/public-api.mjs +92 -0
  220. package/esm2020/symphony-talent-component-library.mjs +5 -0
  221. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +2525 -0
  222. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -0
  223. package/fesm2015/symphony-talent-component-library.mjs +2525 -0
  224. package/fesm2015/symphony-talent-component-library.mjs.map +1 -0
  225. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +2523 -0
  226. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -0
  227. package/fesm2020/symphony-talent-component-library.mjs +2523 -0
  228. package/fesm2020/symphony-talent-component-library.mjs.map +1 -0
  229. package/lib/atoms/atoms.module.d.ts +31 -0
  230. package/lib/atoms/avatar/avatar.component.d.ts +5 -3
  231. package/lib/atoms/avatar/avatar.module.d.ts +6 -0
  232. package/lib/atoms/button/button.component.d.ts +6 -3
  233. package/lib/atoms/button/button.module.d.ts +6 -0
  234. package/lib/atoms/color-sample/color-sample.component.d.ts +3 -0
  235. package/lib/atoms/color-sample/color-sample.module.d.ts +6 -0
  236. package/lib/atoms/contextual-menu/contextual-menu.component.d.ts +11 -0
  237. package/lib/atoms/contextual-menu/contextual-menu.model.d.ts +4 -0
  238. package/lib/atoms/contextual-menu/contextual-menu.module.d.ts +10 -0
  239. package/lib/atoms/filter-area/filter-area.component.d.ts +6 -0
  240. package/lib/atoms/filter-area/filter-area.module.d.ts +8 -0
  241. package/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.d.ts +14 -0
  242. package/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.module.d.ts +8 -0
  243. package/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.model.d.ts +9 -0
  244. package/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.component.d.ts +14 -0
  245. package/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.model.d.ts +5 -0
  246. package/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.module.d.ts +9 -0
  247. package/lib/atoms/grid/framework/framework.module.d.ts +10 -0
  248. package/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.component.d.ts +11 -0
  249. package/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.model.d.ts +5 -0
  250. package/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.module.d.ts +9 -0
  251. package/lib/atoms/grid/framework/relevance-score/relevance-score.component.d.ts +14 -0
  252. package/lib/atoms/grid/framework/relevance-score/relevance-score.component.model.d.ts +7 -0
  253. package/lib/atoms/grid/framework/relevance-score/relevance-score.component.module.d.ts +8 -0
  254. package/lib/atoms/grid/grid.component.d.ts +19 -0
  255. package/lib/atoms/grid/grid.model.d.ts +5 -0
  256. package/lib/atoms/grid/grid.module.d.ts +10 -0
  257. package/lib/atoms/h1/h1.component.d.ts +4 -3
  258. package/lib/atoms/h1/h1.module.d.ts +6 -0
  259. package/lib/atoms/h2/h2.component.d.ts +4 -3
  260. package/lib/atoms/h2/h2.module.d.ts +6 -0
  261. package/lib/atoms/h3/h3.component.d.ts +4 -3
  262. package/lib/atoms/h3/h3.module.d.ts +6 -0
  263. package/lib/atoms/h4/h4.component.d.ts +4 -3
  264. package/lib/atoms/h4/h4.module.d.ts +6 -0
  265. package/lib/atoms/h5/h5.component.d.ts +4 -3
  266. package/lib/atoms/h5/h5.module.d.ts +6 -0
  267. package/lib/atoms/icon/icon.component.d.ts +9 -5
  268. package/lib/atoms/icon/icon.module.d.ts +6 -0
  269. package/lib/atoms/icon-wrapper/icon-wrapper.component.d.ts +7 -3
  270. package/lib/atoms/icon-wrapper/icon-wrapper.module.d.ts +6 -0
  271. package/lib/atoms/input-checkbox/input-checkbox.component.d.ts +12 -0
  272. package/lib/atoms/input-checkbox/input-checkbox.module.d.ts +8 -0
  273. package/lib/atoms/input-dropdown/input-dropdown-list-item.model.d.ts +8 -0
  274. package/lib/atoms/input-dropdown/input-dropdown-list.model.d.ts +7 -0
  275. package/lib/atoms/input-dropdown/input-dropdown.component.d.ts +19 -0
  276. package/lib/atoms/input-dropdown/input-dropdown.module.d.ts +9 -0
  277. package/lib/atoms/input-radio/input-radio.component.d.ts +12 -0
  278. package/lib/atoms/input-radio/input-radio.module.d.ts +9 -0
  279. package/lib/atoms/input-text/input-text.component.d.ts +11 -2
  280. package/lib/atoms/input-text/input-text.module.d.ts +7 -0
  281. package/lib/atoms/input-toggle/input-toggle.component.d.ts +11 -0
  282. package/lib/atoms/input-toggle/input-toggle.module.d.ts +8 -0
  283. package/lib/atoms/paragraph/paragraph.component.d.ts +4 -3
  284. package/lib/atoms/paragraph/paragraph.module.d.ts +6 -0
  285. package/lib/atoms/pill/pill.component.d.ts +5 -3
  286. package/lib/atoms/pill/pill.module.d.ts +7 -0
  287. package/lib/atoms/sfx-loader/sfx-loader.component.d.ts +7 -0
  288. package/lib/atoms/sfx-loader/sfx-loader.module.d.ts +8 -0
  289. package/lib/atoms/sfx-page-loader/sfx-page-loader.component.d.ts +6 -0
  290. package/lib/atoms/sfx-page-loader/sfx-page-loader.module.d.ts +8 -0
  291. package/lib/atoms/sfx-progress-bar/sfx-progress-bar.component.d.ts +7 -0
  292. package/lib/atoms/sfx-progress-bar/sfx-progress-bar.module.d.ts +8 -0
  293. package/lib/atoms/task-icon/task-icon.component.d.ts +4 -3
  294. package/lib/atoms/task-icon/task-icon.module.d.ts +6 -0
  295. package/lib/atoms/toaster-alert/toaster-alert.component.d.ts +19 -0
  296. package/lib/atoms/toaster-alert/toaster-alert.model.d.ts +20 -0
  297. package/lib/atoms/toaster-alert/toaster-alert.module.d.ts +8 -0
  298. package/lib/atoms/two-column-filter-area/two-column-filter-area.component.d.ts +7 -0
  299. package/lib/atoms/two-column-filter-area/two-column-filter-area.module.d.ts +8 -0
  300. package/lib/design-guide/color-swatch-collection/color-swatch-collection.component.d.ts +8 -0
  301. package/lib/design-guide/color-swatch-collection/color-swatch-collection.module.d.ts +9 -0
  302. package/lib/{organisms → design-guide}/icon-explorer/icon-explorer.component.d.ts +3 -0
  303. package/lib/{organisms → design-guide}/icon-explorer/icon-explorer.helper.d.ts +0 -0
  304. package/lib/design-guide/icon-explorer/icon-explorer.module.d.ts +11 -0
  305. package/lib/molecules/breadcrumb/breadcrumb.component.d.ts +12 -0
  306. package/lib/molecules/breadcrumb/breadcrumb.model.d.ts +5 -0
  307. package/lib/molecules/breadcrumb/breadcrumb.module.d.ts +10 -0
  308. package/lib/molecules/color-swatch/color-swatch.component.d.ts +3 -0
  309. package/lib/molecules/color-swatch/color-swatch.module.d.ts +9 -0
  310. package/lib/molecules/icon-swatch/icon-swatch.component.d.ts +4 -3
  311. package/lib/molecules/icon-swatch/icon-swatch.module.d.ts +10 -0
  312. package/lib/molecules/molecules.module.d.ts +13 -0
  313. package/lib/molecules/note/note.component.d.ts +6 -9
  314. package/lib/molecules/note/note.model.d.ts +9 -0
  315. package/lib/molecules/note/note.module.d.ts +10 -0
  316. package/lib/molecules/pills/pills.component.d.ts +5 -3
  317. package/lib/molecules/pills/pills.module.d.ts +7 -0
  318. package/lib/molecules/task/task.component.d.ts +4 -3
  319. package/lib/molecules/task/task.model.d.ts +2 -2
  320. package/lib/molecules/task/task.module.d.ts +10 -0
  321. package/lib/organisms/note-list/note-list.component.d.ts +8 -0
  322. package/lib/organisms/note-list/note-list.module.d.ts +9 -0
  323. package/lib/organisms/task-list/task-list.component.d.ts +4 -3
  324. package/lib/organisms/task-list/task-list.module.d.ts +7 -0
  325. package/lib/pages/events-settings-page/events-settings-page.component.d.ts +17 -0
  326. package/lib/pages/events-settings-page/events-settings-page.model.d.ts +14 -0
  327. package/lib/pages/events-settings-page/events-settings-page.module.d.ts +20 -0
  328. package/lib/templates/admin-list/admin-list.component.d.ts +6 -0
  329. package/lib/templates/admin-list/admin-list.module.d.ts +8 -0
  330. package/lib/templates/placeholder/placeholder.component.d.ts +12 -0
  331. package/lib/templates/placeholder/placeholder.module.d.ts +9 -0
  332. package/package.json +34 -17
  333. package/projects/component-library/lib/atoms/atoms.module.d.ts +31 -0
  334. package/projects/component-library/lib/atoms/avatar/avatar.component.d.ts +5 -3
  335. package/projects/component-library/lib/atoms/avatar/avatar.module.d.ts +6 -0
  336. package/projects/component-library/lib/atoms/button/button.component.d.ts +6 -3
  337. package/projects/component-library/lib/atoms/button/button.module.d.ts +6 -0
  338. package/projects/component-library/lib/atoms/color-sample/color-sample.component.d.ts +3 -0
  339. package/projects/component-library/lib/atoms/color-sample/color-sample.module.d.ts +6 -0
  340. package/projects/component-library/lib/atoms/contextual-menu/contextual-menu.component.d.ts +11 -0
  341. package/projects/component-library/lib/atoms/contextual-menu/contextual-menu.model.d.ts +4 -0
  342. package/projects/component-library/lib/atoms/contextual-menu/contextual-menu.module.d.ts +10 -0
  343. package/projects/component-library/lib/atoms/filter-area/filter-area.component.d.ts +6 -0
  344. package/projects/component-library/lib/atoms/filter-area/filter-area.module.d.ts +8 -0
  345. package/projects/component-library/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.d.ts +14 -0
  346. package/projects/component-library/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.module.d.ts +8 -0
  347. package/projects/component-library/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.model.d.ts +9 -0
  348. package/projects/component-library/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.component.d.ts +14 -0
  349. package/projects/component-library/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.model.d.ts +5 -0
  350. package/projects/component-library/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.module.d.ts +9 -0
  351. package/projects/component-library/lib/atoms/grid/framework/framework.module.d.ts +10 -0
  352. package/projects/component-library/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.component.d.ts +11 -0
  353. package/projects/component-library/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.model.d.ts +5 -0
  354. package/projects/component-library/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.module.d.ts +9 -0
  355. package/projects/component-library/lib/atoms/grid/framework/relevance-score/relevance-score.component.d.ts +14 -0
  356. package/projects/component-library/lib/atoms/grid/framework/relevance-score/relevance-score.component.model.d.ts +7 -0
  357. package/projects/component-library/lib/atoms/grid/framework/relevance-score/relevance-score.component.module.d.ts +8 -0
  358. package/projects/component-library/lib/atoms/grid/grid.component.d.ts +19 -0
  359. package/projects/component-library/lib/atoms/grid/grid.model.d.ts +5 -0
  360. package/projects/component-library/lib/atoms/grid/grid.module.d.ts +10 -0
  361. package/projects/component-library/lib/atoms/h1/h1.component.d.ts +4 -3
  362. package/projects/component-library/lib/atoms/h1/h1.module.d.ts +6 -0
  363. package/projects/component-library/lib/atoms/h2/h2.component.d.ts +4 -3
  364. package/projects/component-library/lib/atoms/h2/h2.module.d.ts +6 -0
  365. package/projects/component-library/lib/atoms/h3/h3.component.d.ts +4 -3
  366. package/projects/component-library/lib/atoms/h3/h3.module.d.ts +6 -0
  367. package/projects/component-library/lib/atoms/h4/h4.component.d.ts +4 -3
  368. package/projects/component-library/lib/atoms/h4/h4.module.d.ts +6 -0
  369. package/projects/component-library/lib/atoms/h5/h5.component.d.ts +4 -3
  370. package/projects/component-library/lib/atoms/h5/h5.module.d.ts +6 -0
  371. package/projects/component-library/lib/atoms/icon/icon.component.d.ts +9 -5
  372. package/projects/component-library/lib/atoms/icon/icon.module.d.ts +6 -0
  373. package/projects/component-library/lib/atoms/icon-wrapper/icon-wrapper.component.d.ts +7 -3
  374. package/projects/component-library/lib/atoms/icon-wrapper/icon-wrapper.module.d.ts +6 -0
  375. package/projects/component-library/lib/atoms/input-checkbox/input-checkbox.component.d.ts +12 -0
  376. package/projects/component-library/lib/atoms/input-checkbox/input-checkbox.module.d.ts +8 -0
  377. package/projects/component-library/lib/atoms/input-dropdown/input-dropdown-list-item.model.d.ts +8 -0
  378. package/projects/component-library/lib/atoms/input-dropdown/input-dropdown-list.model.d.ts +7 -0
  379. package/projects/component-library/lib/atoms/input-dropdown/input-dropdown.component.d.ts +19 -0
  380. package/projects/component-library/lib/atoms/input-dropdown/input-dropdown.module.d.ts +9 -0
  381. package/projects/component-library/lib/atoms/input-radio/input-radio.component.d.ts +12 -0
  382. package/projects/component-library/lib/atoms/input-radio/input-radio.module.d.ts +9 -0
  383. package/projects/component-library/lib/atoms/input-text/input-text.component.d.ts +11 -2
  384. package/projects/component-library/lib/atoms/input-text/input-text.module.d.ts +7 -0
  385. package/projects/component-library/lib/atoms/input-toggle/input-toggle.component.d.ts +11 -0
  386. package/projects/component-library/lib/atoms/input-toggle/input-toggle.module.d.ts +8 -0
  387. package/projects/component-library/lib/atoms/paragraph/paragraph.component.d.ts +4 -3
  388. package/projects/component-library/lib/atoms/paragraph/paragraph.module.d.ts +6 -0
  389. package/projects/component-library/lib/atoms/pill/pill.component.d.ts +5 -3
  390. package/projects/component-library/lib/atoms/pill/pill.module.d.ts +7 -0
  391. package/projects/component-library/lib/atoms/sfx-loader/sfx-loader.component.d.ts +7 -0
  392. package/projects/component-library/lib/atoms/sfx-loader/sfx-loader.module.d.ts +8 -0
  393. package/projects/component-library/lib/atoms/sfx-page-loader/sfx-page-loader.component.d.ts +6 -0
  394. package/projects/component-library/lib/atoms/sfx-page-loader/sfx-page-loader.module.d.ts +8 -0
  395. package/projects/component-library/lib/atoms/sfx-progress-bar/sfx-progress-bar.component.d.ts +7 -0
  396. package/projects/component-library/lib/atoms/sfx-progress-bar/sfx-progress-bar.module.d.ts +8 -0
  397. package/projects/component-library/lib/atoms/task-icon/task-icon.component.d.ts +4 -3
  398. package/projects/component-library/lib/atoms/task-icon/task-icon.module.d.ts +6 -0
  399. package/projects/component-library/lib/atoms/toaster-alert/toaster-alert.component.d.ts +19 -0
  400. package/projects/component-library/lib/atoms/toaster-alert/toaster-alert.model.d.ts +20 -0
  401. package/projects/component-library/lib/atoms/toaster-alert/toaster-alert.module.d.ts +8 -0
  402. package/projects/component-library/lib/atoms/two-column-filter-area/two-column-filter-area.component.d.ts +7 -0
  403. package/projects/component-library/lib/atoms/two-column-filter-area/two-column-filter-area.module.d.ts +8 -0
  404. package/projects/component-library/lib/design-guide/color-swatch-collection/color-swatch-collection.component.d.ts +8 -0
  405. package/projects/component-library/lib/design-guide/color-swatch-collection/color-swatch-collection.module.d.ts +9 -0
  406. package/projects/component-library/lib/{organisms → design-guide}/icon-explorer/icon-explorer.component.d.ts +3 -0
  407. package/projects/component-library/lib/{organisms → design-guide}/icon-explorer/icon-explorer.helper.d.ts +0 -0
  408. package/projects/component-library/lib/design-guide/icon-explorer/icon-explorer.module.d.ts +11 -0
  409. package/projects/component-library/lib/molecules/breadcrumb/breadcrumb.component.d.ts +12 -0
  410. package/projects/component-library/lib/molecules/breadcrumb/breadcrumb.model.d.ts +5 -0
  411. package/projects/component-library/lib/molecules/breadcrumb/breadcrumb.module.d.ts +10 -0
  412. package/projects/component-library/lib/molecules/color-swatch/color-swatch.component.d.ts +3 -0
  413. package/projects/component-library/lib/molecules/color-swatch/color-swatch.module.d.ts +9 -0
  414. package/projects/component-library/lib/molecules/icon-swatch/icon-swatch.component.d.ts +4 -3
  415. package/projects/component-library/lib/molecules/icon-swatch/icon-swatch.module.d.ts +10 -0
  416. package/projects/component-library/lib/molecules/molecules.module.d.ts +13 -0
  417. package/projects/component-library/lib/molecules/note/note.component.d.ts +6 -9
  418. package/projects/component-library/lib/molecules/note/note.model.d.ts +9 -0
  419. package/projects/component-library/lib/molecules/note/note.module.d.ts +10 -0
  420. package/projects/component-library/lib/molecules/pills/pills.component.d.ts +5 -3
  421. package/projects/component-library/lib/molecules/pills/pills.module.d.ts +7 -0
  422. package/projects/component-library/lib/molecules/task/task.component.d.ts +4 -3
  423. package/projects/component-library/lib/molecules/task/task.model.d.ts +2 -2
  424. package/projects/component-library/lib/molecules/task/task.module.d.ts +10 -0
  425. package/projects/component-library/lib/organisms/note-list/note-list.component.d.ts +8 -0
  426. package/projects/component-library/lib/organisms/note-list/note-list.module.d.ts +9 -0
  427. package/projects/component-library/lib/organisms/task-list/task-list.component.d.ts +4 -3
  428. package/projects/component-library/lib/organisms/task-list/task-list.module.d.ts +7 -0
  429. package/projects/component-library/lib/pages/events-settings-page/events-settings-page.component.d.ts +17 -0
  430. package/projects/component-library/lib/pages/events-settings-page/events-settings-page.model.d.ts +14 -0
  431. package/projects/component-library/lib/pages/events-settings-page/events-settings-page.module.d.ts +20 -0
  432. package/projects/component-library/lib/templates/admin-list/admin-list.component.d.ts +6 -0
  433. package/projects/component-library/lib/templates/admin-list/admin-list.module.d.ts +8 -0
  434. package/projects/component-library/lib/templates/placeholder/placeholder.component.d.ts +12 -0
  435. package/projects/component-library/lib/templates/placeholder/placeholder.module.d.ts +9 -0
  436. package/projects/component-library/package.json +7 -8
  437. package/projects/component-library/public-api.d.ts +49 -11
  438. package/projects/component-library/symphony-talent-component-library-projects-component-library.d.ts +1 -19
  439. package/public-api.d.ts +49 -11
  440. package/symphony-talent-component-library.d.ts +1 -19
  441. package/bundles/symphony-talent-component-library-projects-component-library.umd.js +0 -2060
  442. package/bundles/symphony-talent-component-library-projects-component-library.umd.js.map +0 -1
  443. package/bundles/symphony-talent-component-library-projects-component-library.umd.min.js +0 -16
  444. package/bundles/symphony-talent-component-library-projects-component-library.umd.min.js.map +0 -1
  445. package/bundles/symphony-talent-component-library.umd.js +0 -2060
  446. package/bundles/symphony-talent-component-library.umd.js.map +0 -1
  447. package/bundles/symphony-talent-component-library.umd.min.js +0 -16
  448. package/bundles/symphony-talent-component-library.umd.min.js.map +0 -1
  449. package/esm2015/lib/atoms/atoms.module.js +0 -52
  450. package/esm2015/lib/atoms/avatar/avatar.component.js +0 -101
  451. package/esm2015/lib/atoms/avatar/avatar.module.js +0 -16
  452. package/esm2015/lib/atoms/button/button.component.js +0 -32
  453. package/esm2015/lib/atoms/button/button.module.js +0 -16
  454. package/esm2015/lib/atoms/button-round/button-round.component.js +0 -32
  455. package/esm2015/lib/atoms/button-round/button-round.enum.js +0 -7
  456. package/esm2015/lib/atoms/button-round/button-round.module.js +0 -15
  457. package/esm2015/lib/atoms/color-sample/color-sample.component.js +0 -20
  458. package/esm2015/lib/atoms/color-sample/color-sample.enum.js +0 -26
  459. package/esm2015/lib/atoms/color-sample/color-sample.module.js +0 -15
  460. package/esm2015/lib/atoms/description/description.component.js +0 -18
  461. package/esm2015/lib/atoms/description/description.module.js +0 -15
  462. package/esm2015/lib/atoms/dropdown/dropdown.component.js +0 -16
  463. package/esm2015/lib/atoms/dropdown/dropdown.module.js +0 -18
  464. package/esm2015/lib/atoms/h1/h1.component.js +0 -21
  465. package/esm2015/lib/atoms/h1/h1.module.js +0 -15
  466. package/esm2015/lib/atoms/h2/h2.component.js +0 -21
  467. package/esm2015/lib/atoms/h2/h2.module.js +0 -15
  468. package/esm2015/lib/atoms/h3/h3.component.js +0 -21
  469. package/esm2015/lib/atoms/h3/h3.module.js +0 -15
  470. package/esm2015/lib/atoms/h4/h4.component.js +0 -21
  471. package/esm2015/lib/atoms/h4/h4.module.js +0 -15
  472. package/esm2015/lib/atoms/h5/h5.component.js +0 -21
  473. package/esm2015/lib/atoms/h5/h5.module.js +0 -15
  474. package/esm2015/lib/atoms/icon/icon.component.js +0 -21
  475. package/esm2015/lib/atoms/icon/icon.enum.js +0 -75
  476. package/esm2015/lib/atoms/icon/icon.module.js +0 -15
  477. package/esm2015/lib/atoms/icon-wrapper/icon-wrapper.component.js +0 -21
  478. package/esm2015/lib/atoms/icon-wrapper/icon-wrapper.module.js +0 -15
  479. package/esm2015/lib/atoms/input-text/input-text.component.js +0 -30
  480. package/esm2015/lib/atoms/input-text/input-text.module.js +0 -14
  481. package/esm2015/lib/atoms/list-title/list-title.component.js +0 -18
  482. package/esm2015/lib/atoms/list-title/list-title.module.js +0 -15
  483. package/esm2015/lib/atoms/more-dropdown/more-actions.model.js +0 -1
  484. package/esm2015/lib/atoms/more-dropdown/more-dropdown.component.js +0 -20
  485. package/esm2015/lib/atoms/more-dropdown/more-dropdown.module.js +0 -17
  486. package/esm2015/lib/atoms/paragraph/paragraph.component.js +0 -21
  487. package/esm2015/lib/atoms/paragraph/paragraph.module.js +0 -15
  488. package/esm2015/lib/atoms/pill/pill.component.js +0 -37
  489. package/esm2015/lib/atoms/pill/pill.model.js +0 -1
  490. package/esm2015/lib/atoms/pill/pill.module.js +0 -18
  491. package/esm2015/lib/atoms/task-icon/task-icon.component.js +0 -18
  492. package/esm2015/lib/atoms/task-icon/task-icon.module.js +0 -15
  493. package/esm2015/lib/atoms/time-stamp/time-stamp.component.js +0 -18
  494. package/esm2015/lib/atoms/time-stamp/time-stamp.module.js +0 -15
  495. package/esm2015/lib/molecules/color-swatch/color-swatch.component.js +0 -29
  496. package/esm2015/lib/molecules/color-swatch/color-swatch.model.js +0 -1
  497. package/esm2015/lib/molecules/color-swatch/color-swatch.module.js +0 -23
  498. package/esm2015/lib/molecules/icon-swatch/icon-swatch.component.js +0 -26
  499. package/esm2015/lib/molecules/icon-swatch/icon-swatch.model.js +0 -3
  500. package/esm2015/lib/molecules/icon-swatch/icon-swatch.module.js +0 -25
  501. package/esm2015/lib/molecules/molecules.module.js +0 -41
  502. package/esm2015/lib/molecules/note/note.component.js +0 -33
  503. package/esm2015/lib/molecules/note/note.module.js +0 -20
  504. package/esm2015/lib/molecules/pills/pills.component.js +0 -33
  505. package/esm2015/lib/molecules/pills/pills.module.js +0 -21
  506. package/esm2015/lib/molecules/task/task.component.js +0 -25
  507. package/esm2015/lib/molecules/task/task.model.js +0 -1
  508. package/esm2015/lib/molecules/task/task.module.js +0 -27
  509. package/esm2015/lib/organisms/color-swatch-collection/color-swatch-collection.component.js +0 -19
  510. package/esm2015/lib/organisms/color-swatch-collection/color-swatch-collection.module.js +0 -15
  511. package/esm2015/lib/organisms/icon-explorer/icon-explorer.component.js +0 -30
  512. package/esm2015/lib/organisms/icon-explorer/icon-explorer.helper.js +0 -521
  513. package/esm2015/lib/organisms/icon-explorer/icon-explorer.module.js +0 -17
  514. package/esm2015/lib/organisms/task-list/task-list.component.js +0 -18
  515. package/esm2015/lib/organisms/task-list/task-list.module.js +0 -16
  516. package/esm2015/projects/component-library/lib/atoms/atoms.module.js +0 -52
  517. package/esm2015/projects/component-library/lib/atoms/avatar/avatar.component.js +0 -101
  518. package/esm2015/projects/component-library/lib/atoms/avatar/avatar.module.js +0 -16
  519. package/esm2015/projects/component-library/lib/atoms/button/button.component.js +0 -32
  520. package/esm2015/projects/component-library/lib/atoms/button/button.module.js +0 -16
  521. package/esm2015/projects/component-library/lib/atoms/button-round/button-round.component.js +0 -32
  522. package/esm2015/projects/component-library/lib/atoms/button-round/button-round.enum.js +0 -7
  523. package/esm2015/projects/component-library/lib/atoms/button-round/button-round.module.js +0 -15
  524. package/esm2015/projects/component-library/lib/atoms/color-sample/color-sample.component.js +0 -20
  525. package/esm2015/projects/component-library/lib/atoms/color-sample/color-sample.enum.js +0 -26
  526. package/esm2015/projects/component-library/lib/atoms/color-sample/color-sample.module.js +0 -15
  527. package/esm2015/projects/component-library/lib/atoms/description/description.component.js +0 -18
  528. package/esm2015/projects/component-library/lib/atoms/description/description.module.js +0 -15
  529. package/esm2015/projects/component-library/lib/atoms/dropdown/dropdown.component.js +0 -16
  530. package/esm2015/projects/component-library/lib/atoms/dropdown/dropdown.module.js +0 -18
  531. package/esm2015/projects/component-library/lib/atoms/h1/h1.component.js +0 -21
  532. package/esm2015/projects/component-library/lib/atoms/h1/h1.module.js +0 -15
  533. package/esm2015/projects/component-library/lib/atoms/h2/h2.component.js +0 -21
  534. package/esm2015/projects/component-library/lib/atoms/h2/h2.module.js +0 -15
  535. package/esm2015/projects/component-library/lib/atoms/h3/h3.component.js +0 -21
  536. package/esm2015/projects/component-library/lib/atoms/h3/h3.module.js +0 -15
  537. package/esm2015/projects/component-library/lib/atoms/h4/h4.component.js +0 -21
  538. package/esm2015/projects/component-library/lib/atoms/h4/h4.module.js +0 -15
  539. package/esm2015/projects/component-library/lib/atoms/h5/h5.component.js +0 -21
  540. package/esm2015/projects/component-library/lib/atoms/h5/h5.module.js +0 -15
  541. package/esm2015/projects/component-library/lib/atoms/icon/icon.component.js +0 -21
  542. package/esm2015/projects/component-library/lib/atoms/icon/icon.enum.js +0 -75
  543. package/esm2015/projects/component-library/lib/atoms/icon/icon.module.js +0 -15
  544. package/esm2015/projects/component-library/lib/atoms/icon-wrapper/icon-wrapper.component.js +0 -21
  545. package/esm2015/projects/component-library/lib/atoms/icon-wrapper/icon-wrapper.module.js +0 -15
  546. package/esm2015/projects/component-library/lib/atoms/input-text/input-text.component.js +0 -30
  547. package/esm2015/projects/component-library/lib/atoms/input-text/input-text.module.js +0 -14
  548. package/esm2015/projects/component-library/lib/atoms/list-title/list-title.component.js +0 -18
  549. package/esm2015/projects/component-library/lib/atoms/list-title/list-title.module.js +0 -15
  550. package/esm2015/projects/component-library/lib/atoms/more-dropdown/more-actions.model.js +0 -1
  551. package/esm2015/projects/component-library/lib/atoms/more-dropdown/more-dropdown.component.js +0 -20
  552. package/esm2015/projects/component-library/lib/atoms/more-dropdown/more-dropdown.module.js +0 -17
  553. package/esm2015/projects/component-library/lib/atoms/paragraph/paragraph.component.js +0 -21
  554. package/esm2015/projects/component-library/lib/atoms/paragraph/paragraph.module.js +0 -15
  555. package/esm2015/projects/component-library/lib/atoms/pill/pill.component.js +0 -37
  556. package/esm2015/projects/component-library/lib/atoms/pill/pill.model.js +0 -1
  557. package/esm2015/projects/component-library/lib/atoms/pill/pill.module.js +0 -18
  558. package/esm2015/projects/component-library/lib/atoms/task-icon/task-icon.component.js +0 -18
  559. package/esm2015/projects/component-library/lib/atoms/task-icon/task-icon.module.js +0 -15
  560. package/esm2015/projects/component-library/lib/atoms/time-stamp/time-stamp.component.js +0 -18
  561. package/esm2015/projects/component-library/lib/atoms/time-stamp/time-stamp.module.js +0 -15
  562. package/esm2015/projects/component-library/lib/molecules/color-swatch/color-swatch.component.js +0 -29
  563. package/esm2015/projects/component-library/lib/molecules/color-swatch/color-swatch.model.js +0 -1
  564. package/esm2015/projects/component-library/lib/molecules/color-swatch/color-swatch.module.js +0 -23
  565. package/esm2015/projects/component-library/lib/molecules/icon-swatch/icon-swatch.component.js +0 -26
  566. package/esm2015/projects/component-library/lib/molecules/icon-swatch/icon-swatch.model.js +0 -3
  567. package/esm2015/projects/component-library/lib/molecules/icon-swatch/icon-swatch.module.js +0 -25
  568. package/esm2015/projects/component-library/lib/molecules/molecules.module.js +0 -41
  569. package/esm2015/projects/component-library/lib/molecules/note/note.component.js +0 -33
  570. package/esm2015/projects/component-library/lib/molecules/note/note.module.js +0 -20
  571. package/esm2015/projects/component-library/lib/molecules/pills/pills.component.js +0 -33
  572. package/esm2015/projects/component-library/lib/molecules/pills/pills.module.js +0 -21
  573. package/esm2015/projects/component-library/lib/molecules/task/task.component.js +0 -25
  574. package/esm2015/projects/component-library/lib/molecules/task/task.model.js +0 -1
  575. package/esm2015/projects/component-library/lib/molecules/task/task.module.js +0 -27
  576. package/esm2015/projects/component-library/lib/organisms/color-swatch-collection/color-swatch-collection.component.js +0 -19
  577. package/esm2015/projects/component-library/lib/organisms/color-swatch-collection/color-swatch-collection.module.js +0 -15
  578. package/esm2015/projects/component-library/lib/organisms/icon-explorer/icon-explorer.component.js +0 -30
  579. package/esm2015/projects/component-library/lib/organisms/icon-explorer/icon-explorer.helper.js +0 -521
  580. package/esm2015/projects/component-library/lib/organisms/icon-explorer/icon-explorer.module.js +0 -17
  581. package/esm2015/projects/component-library/lib/organisms/task-list/task-list.component.js +0 -18
  582. package/esm2015/projects/component-library/lib/organisms/task-list/task-list.module.js +0 -16
  583. package/esm2015/projects/component-library/public-api.js +0 -49
  584. package/esm2015/projects/component-library/symphony-talent-component-library-projects-component-library.js +0 -24
  585. package/esm2015/public-api.js +0 -49
  586. package/esm2015/symphony-talent-component-library.js +0 -24
  587. package/fesm2015/symphony-talent-component-library-projects-component-library.js +0 -1629
  588. package/fesm2015/symphony-talent-component-library-projects-component-library.js.map +0 -1
  589. package/fesm2015/symphony-talent-component-library.js +0 -1629
  590. package/fesm2015/symphony-talent-component-library.js.map +0 -1
  591. package/lib/atoms/button-round/button-round.component.d.ts +0 -11
  592. package/lib/atoms/button-round/button-round.enum.d.ts +0 -5
  593. package/lib/atoms/button-round/button-round.module.d.ts +0 -2
  594. package/lib/atoms/description/description.component.d.ts +0 -6
  595. package/lib/atoms/description/description.module.d.ts +0 -2
  596. package/lib/atoms/dropdown/dropdown.component.d.ts +0 -5
  597. package/lib/atoms/dropdown/dropdown.module.d.ts +0 -2
  598. package/lib/atoms/list-title/list-title.component.d.ts +0 -6
  599. package/lib/atoms/list-title/list-title.module.d.ts +0 -2
  600. package/lib/atoms/more-dropdown/more-actions.model.d.ts +0 -3
  601. package/lib/atoms/more-dropdown/more-dropdown.component.d.ts +0 -8
  602. package/lib/atoms/more-dropdown/more-dropdown.module.d.ts +0 -2
  603. package/lib/atoms/time-stamp/time-stamp.component.d.ts +0 -6
  604. package/lib/atoms/time-stamp/time-stamp.module.d.ts +0 -2
  605. package/lib/organisms/color-swatch-collection/color-swatch-collection.component.d.ts +0 -7
  606. package/lib/organisms/color-swatch-collection/color-swatch-collection.module.d.ts +0 -2
  607. package/lib/organisms/icon-explorer/icon-explorer.module.d.ts +0 -2
  608. package/projects/component-library/lib/atoms/button-round/button-round.component.d.ts +0 -11
  609. package/projects/component-library/lib/atoms/button-round/button-round.enum.d.ts +0 -5
  610. package/projects/component-library/lib/atoms/button-round/button-round.module.d.ts +0 -2
  611. package/projects/component-library/lib/atoms/description/description.component.d.ts +0 -6
  612. package/projects/component-library/lib/atoms/description/description.module.d.ts +0 -2
  613. package/projects/component-library/lib/atoms/dropdown/dropdown.component.d.ts +0 -5
  614. package/projects/component-library/lib/atoms/dropdown/dropdown.module.d.ts +0 -2
  615. package/projects/component-library/lib/atoms/list-title/list-title.component.d.ts +0 -6
  616. package/projects/component-library/lib/atoms/list-title/list-title.module.d.ts +0 -2
  617. package/projects/component-library/lib/atoms/more-dropdown/more-actions.model.d.ts +0 -3
  618. package/projects/component-library/lib/atoms/more-dropdown/more-dropdown.component.d.ts +0 -8
  619. package/projects/component-library/lib/atoms/more-dropdown/more-dropdown.module.d.ts +0 -2
  620. package/projects/component-library/lib/atoms/time-stamp/time-stamp.component.d.ts +0 -6
  621. package/projects/component-library/lib/atoms/time-stamp/time-stamp.module.d.ts +0 -2
  622. package/projects/component-library/lib/organisms/color-swatch-collection/color-swatch-collection.component.d.ts +0 -7
  623. package/projects/component-library/lib/organisms/color-swatch-collection/color-swatch-collection.module.d.ts +0 -2
  624. package/projects/component-library/lib/organisms/icon-explorer/icon-explorer.module.d.ts +0 -2
  625. package/projects/component-library/symphony-talent-component-library-projects-component-library.metadata.json +0 -1
  626. package/symphony-talent-component-library.metadata.json +0 -1
@@ -0,0 +1,2523 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Component, Input, NgModule, EventEmitter, Output, ViewEncapsulation } from '@angular/core';
3
+ import * as i1 from '@angular/common';
4
+ import { SlicePipe, CommonModule } from '@angular/common';
5
+ import * as i2 from 'ngx-bootstrap/tooltip';
6
+ import { TooltipModule } from 'ngx-bootstrap/tooltip';
7
+ import { FormsModule, ReactiveFormsModule } from '@angular/forms';
8
+ import { Subject, timer } from 'rxjs';
9
+ import { debounceTime, distinctUntilChanged, delay } from 'rxjs/operators';
10
+ import * as i1$1 from 'ngx-bootstrap/dropdown';
11
+ import { BsDropdownModule } from 'ngx-bootstrap/dropdown';
12
+ import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
13
+ import * as i1$2 from 'ag-grid-angular';
14
+ import { AgGridModule } from 'ag-grid-angular';
15
+
16
+ class AvatarComponent {
17
+ constructor() { }
18
+ ngOnInit() {
19
+ this.sp = new SlicePipe();
20
+ this.initials = '';
21
+ this.firstInitial = '';
22
+ this.bgColor = '';
23
+ if (this.firstName) {
24
+ this.initials += this.sp.transform(this.firstName, 0, 1);
25
+ this.firstInitial = this.sp
26
+ .transform(this.firstName, 0, 1)
27
+ .toLocaleLowerCase();
28
+ }
29
+ if (this.lastName) {
30
+ this.initials += this.sp.transform(this.lastName, 0, 1);
31
+ }
32
+ this.bgColor = this.getColor(this.firstInitial);
33
+ }
34
+ getColor(character) {
35
+ switch (character) {
36
+ case 'a':
37
+ return '#D0021B';
38
+ case 'b':
39
+ return '#F5A623';
40
+ case 'c':
41
+ return '#E4D75C';
42
+ case 'd':
43
+ return '#8B572A';
44
+ case 'e':
45
+ return '#579F09';
46
+ case 'f':
47
+ return '#BD10E0';
48
+ case 'g':
49
+ return '#9013FE';
50
+ case 'h':
51
+ return '#4A90E2';
52
+ case 'i':
53
+ return '#39B196';
54
+ case 'j':
55
+ return '#4A4A4A';
56
+ case 'k':
57
+ return '#E84D4D';
58
+ case 'l':
59
+ return '#E84DC0';
60
+ case 'm':
61
+ return '#CE950B';
62
+ case 'n':
63
+ return '#1CCE0B';
64
+ case 'o':
65
+ return '#1DB1A6';
66
+ case 'p':
67
+ return '#3724A9';
68
+ case 'q':
69
+ return '#A9249E';
70
+ case 'r':
71
+ return '#A9246B';
72
+ case 's':
73
+ return '#24A97A';
74
+ case 't':
75
+ return '#1C93B3';
76
+ case 'u':
77
+ return '#D52424';
78
+ case 'v':
79
+ return '#A45519';
80
+ case 'w':
81
+ return '#19A420';
82
+ case 'x':
83
+ return '#A41963';
84
+ case 'y':
85
+ return '#CFD00A';
86
+ case 'z':
87
+ return '#AA0AD0';
88
+ default:
89
+ return '#000000';
90
+ }
91
+ }
92
+ }
93
+ AvatarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AvatarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
94
+ AvatarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: AvatarComponent, selector: "symphony-avatar", inputs: { firstName: "firstName", lastName: "lastName", sizePx: "sizePx", fontSizePx: "fontSizePx" }, ngImport: i0, template: "<div\n [style.line-height.px]=\"sizePx\"\n [style.height.px]=\"sizePx\"\n [style.width.px]=\"sizePx\"\n [style.font-size.px]=\"fontSizePx\"\n [style.background-color]=\"bgColor\"\n class=\"avatar-circle\"\n>\n <div *ngIf=\"initials\" class=\"avatar-text\">\n {{ initials }}\n </div>\n</div>\n", styles: [".avatar-circle{width:50px;height:50px;background:#000;border-radius:50%;line-height:50px}.avatar-text{text-align:center;color:#fff}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
95
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AvatarComponent, decorators: [{
96
+ type: Component,
97
+ args: [{ selector: 'symphony-avatar', template: "<div\n [style.line-height.px]=\"sizePx\"\n [style.height.px]=\"sizePx\"\n [style.width.px]=\"sizePx\"\n [style.font-size.px]=\"fontSizePx\"\n [style.background-color]=\"bgColor\"\n class=\"avatar-circle\"\n>\n <div *ngIf=\"initials\" class=\"avatar-text\">\n {{ initials }}\n </div>\n</div>\n", styles: [".avatar-circle{width:50px;height:50px;background:#000;border-radius:50%;line-height:50px}.avatar-text{text-align:center;color:#fff}\n"] }]
98
+ }], ctorParameters: function () { return []; }, propDecorators: { firstName: [{
99
+ type: Input
100
+ }], lastName: [{
101
+ type: Input
102
+ }], sizePx: [{
103
+ type: Input
104
+ }], fontSizePx: [{
105
+ type: Input
106
+ }] } });
107
+
108
+ class AvatarModule {
109
+ }
110
+ AvatarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AvatarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
111
+ AvatarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AvatarModule, declarations: [AvatarComponent], imports: [CommonModule], exports: [AvatarComponent] });
112
+ AvatarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AvatarModule, imports: [[CommonModule]] });
113
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AvatarModule, decorators: [{
114
+ type: NgModule,
115
+ args: [{
116
+ declarations: [AvatarComponent],
117
+ imports: [CommonModule],
118
+ exports: [AvatarComponent],
119
+ }]
120
+ }] });
121
+
122
+ class ButtonComponent {
123
+ constructor() {
124
+ this.clicked = new EventEmitter();
125
+ }
126
+ onClick() {
127
+ this.clicked.emit(this.text);
128
+ }
129
+ }
130
+ ButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
131
+ ButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ButtonComponent, selector: "symphony-button", inputs: { text: "text", disabled: "disabled", isSecondary: "isSecondary", isInverse: "isInverse" }, outputs: { clicked: "clicked" }, ngImport: i0, template: "<button class=\"btn\" \n[ngClass]=\"{'btn-secondary': isSecondary, 'btn-primary': !isSecondary, 'is-inverse': isInverse }\"\n(click)=\"onClick()\" [disabled]=\"disabled\">{{ text }}</button>", styles: ["button{outline:none}.btn{padding-left:40px;padding-right:40px;border-radius:30px;height:56px;min-width:140px;font-family:neuzeit_groteskbold;letter-spacing:.4px}.btn:focus{outline:none}.btn:disabled{cursor:not-allowed;opacity:70%}.btn-primary{background:#000!important;color:#fff;border:2px solid #000!important}.btn-primary.is-inverse{background:#FFF!important;color:#000;border:2px solid #FFF!important}.btn-secondary{background:#FFF;border:2px solid #000;color:#000}.btn-secondary.is-inverse{background:#000;color:#fff;border:2px solid #FFF}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
132
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonComponent, decorators: [{
133
+ type: Component,
134
+ args: [{ selector: 'symphony-button', template: "<button class=\"btn\" \n[ngClass]=\"{'btn-secondary': isSecondary, 'btn-primary': !isSecondary, 'is-inverse': isInverse }\"\n(click)=\"onClick()\" [disabled]=\"disabled\">{{ text }}</button>", styles: ["button{outline:none}.btn{padding-left:40px;padding-right:40px;border-radius:30px;height:56px;min-width:140px;font-family:neuzeit_groteskbold;letter-spacing:.4px}.btn:focus{outline:none}.btn:disabled{cursor:not-allowed;opacity:70%}.btn-primary{background:#000!important;color:#fff;border:2px solid #000!important}.btn-primary.is-inverse{background:#FFF!important;color:#000;border:2px solid #FFF!important}.btn-secondary{background:#FFF;border:2px solid #000;color:#000}.btn-secondary.is-inverse{background:#000;color:#fff;border:2px solid #FFF}\n"] }]
135
+ }], ctorParameters: function () { return []; }, propDecorators: { text: [{
136
+ type: Input
137
+ }], disabled: [{
138
+ type: Input
139
+ }], isSecondary: [{
140
+ type: Input
141
+ }], isInverse: [{
142
+ type: Input
143
+ }], clicked: [{
144
+ type: Output
145
+ }] } });
146
+
147
+ class ButtonModule {
148
+ }
149
+ ButtonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
150
+ ButtonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonModule, declarations: [ButtonComponent], imports: [CommonModule], exports: [ButtonComponent] });
151
+ ButtonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonModule, providers: [], imports: [[CommonModule]] });
152
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonModule, decorators: [{
153
+ type: NgModule,
154
+ args: [{
155
+ declarations: [ButtonComponent],
156
+ imports: [CommonModule],
157
+ providers: [],
158
+ exports: [ButtonComponent],
159
+ }]
160
+ }] });
161
+
162
+ class PillComponent {
163
+ constructor() {
164
+ this.removePill = new EventEmitter();
165
+ }
166
+ onRemoveClick() {
167
+ this.removePill.emit(this.pillLabel);
168
+ }
169
+ }
170
+ PillComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
171
+ PillComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: PillComponent, selector: "symphony-pill", inputs: { pillLabel: "pillLabel", isInverse: "isInverse", hasClose: "hasClose", tooltipLabel: "tooltipLabel" }, outputs: { removePill: "removePill" }, ngImport: i0, template: "<span *ngIf=\"tooltipLabel\"\n class=\"sfx-d-inline-block sfx-pill-item\"\n [ngClass]=\"{'inverse-pill': isInverse }\"\n [ngClass]=\"{'has-close': hasClose }\"\n tooltip=\"{{tooltipLabel}}\"\n placement=\"top\"\n containerClass=\"sfx-info-tooltip pill-tooltip\"\n [adaptivePosition]=\"false\"\n >\n <i *ngIf=\"hasClose\" (click)=\"onRemoveClick()\"\n class=\"si-add sfx-cursor-pointer\"\n ></i>\n {{ pillLabel }}\n</span>\n\n<span *ngIf=\"!tooltipLabel\"\n class=\"sfx-d-inline-block sfx-pill-item\"\n [ngClass]=\"{'inverse-pill': isInverse }\"\n [ngClass]=\"{'has-close': hasClose }\"\n >\n <i *ngIf=\"hasClose\" (click)=\"onRemoveClick()\"\n class=\"si-add sfx-cursor-pointer\"\n ></i>\n {{ pillLabel }}\n</span>", styles: [".sfx-pill-item{font-family:neuzeit_groteskbold;background-color:#f1f1f1;color:#000;padding:10px 20px;border-radius:25px;text-align:center;font-weight:600;margin-right:10px;margin-top:10px;position:relative}.sfx-pill-item:hover,.sfx-pill-item.inverse-pill{background-color:#000;color:#fff}.sfx-pill-item.has-close{padding:10px 20px 10px 38px}.sfx-pill-item i{font-size:18px;position:absolute;left:14px;top:11px;transform:rotate(45deg)}.sfx-d-inline-block{display:inline-block}.sfx-cursor-pointer{cursor:pointer}.sfx-info-tooltip{min-width:100px}.sfx-info-tooltip.pill-tooltip{min-width:80px;opacity:1;top:-5px!important}.sfx-info-tooltip.pill-tooltip .tooltip-inner{border-radius:10px;box-shadow:0 0 20px #0003;font-weight:600}.sfx-info-tooltip.pill-tooltip .tooltip-arrow.arrow{border-top-color:#fff}.sfx-info-tooltip .tooltip-inner{background-color:#fff;padding:8px 15px;border-radius:0;max-width:160px;font-size:13px;color:#000}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i2.TooltipDirective, selector: "[tooltip], [tooltipHtml]", inputs: ["containerClass", "tooltipAnimation", "tooltipFadeDuration", "isOpen", "tooltipHtml", "tooltip", "tooltipPlacement", "placement", "tooltipIsOpen", "tooltipEnable", "isDisabled", "tooltipAppendToBody", "container", "tooltipClass", "tooltipContext", "tooltipPopupDelay", "delay", "tooltipTrigger", "triggers", "adaptivePosition"], outputs: ["tooltipChange", "tooltipStateChanged", "onShown", "onHidden"], exportAs: ["bs-tooltip"] }], encapsulation: i0.ViewEncapsulation.None });
172
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillComponent, decorators: [{
173
+ type: Component,
174
+ args: [{ selector: 'symphony-pill', encapsulation: ViewEncapsulation.None, template: "<span *ngIf=\"tooltipLabel\"\n class=\"sfx-d-inline-block sfx-pill-item\"\n [ngClass]=\"{'inverse-pill': isInverse }\"\n [ngClass]=\"{'has-close': hasClose }\"\n tooltip=\"{{tooltipLabel}}\"\n placement=\"top\"\n containerClass=\"sfx-info-tooltip pill-tooltip\"\n [adaptivePosition]=\"false\"\n >\n <i *ngIf=\"hasClose\" (click)=\"onRemoveClick()\"\n class=\"si-add sfx-cursor-pointer\"\n ></i>\n {{ pillLabel }}\n</span>\n\n<span *ngIf=\"!tooltipLabel\"\n class=\"sfx-d-inline-block sfx-pill-item\"\n [ngClass]=\"{'inverse-pill': isInverse }\"\n [ngClass]=\"{'has-close': hasClose }\"\n >\n <i *ngIf=\"hasClose\" (click)=\"onRemoveClick()\"\n class=\"si-add sfx-cursor-pointer\"\n ></i>\n {{ pillLabel }}\n</span>", styles: [".sfx-pill-item{font-family:neuzeit_groteskbold;background-color:#f1f1f1;color:#000;padding:10px 20px;border-radius:25px;text-align:center;font-weight:600;margin-right:10px;margin-top:10px;position:relative}.sfx-pill-item:hover,.sfx-pill-item.inverse-pill{background-color:#000;color:#fff}.sfx-pill-item.has-close{padding:10px 20px 10px 38px}.sfx-pill-item i{font-size:18px;position:absolute;left:14px;top:11px;transform:rotate(45deg)}.sfx-d-inline-block{display:inline-block}.sfx-cursor-pointer{cursor:pointer}.sfx-info-tooltip{min-width:100px}.sfx-info-tooltip.pill-tooltip{min-width:80px;opacity:1;top:-5px!important}.sfx-info-tooltip.pill-tooltip .tooltip-inner{border-radius:10px;box-shadow:0 0 20px #0003;font-weight:600}.sfx-info-tooltip.pill-tooltip .tooltip-arrow.arrow{border-top-color:#fff}.sfx-info-tooltip .tooltip-inner{background-color:#fff;padding:8px 15px;border-radius:0;max-width:160px;font-size:13px;color:#000}\n"] }]
175
+ }], ctorParameters: function () { return []; }, propDecorators: { pillLabel: [{
176
+ type: Input
177
+ }], isInverse: [{
178
+ type: Input
179
+ }], hasClose: [{
180
+ type: Input
181
+ }], tooltipLabel: [{
182
+ type: Input
183
+ }], removePill: [{
184
+ type: Output
185
+ }] } });
186
+
187
+ class PillModule {
188
+ }
189
+ PillModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
190
+ PillModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillModule, declarations: [PillComponent], imports: [CommonModule, i2.TooltipModule], exports: [PillComponent] });
191
+ PillModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillModule, imports: [[
192
+ CommonModule, TooltipModule.forRoot()
193
+ ]] });
194
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillModule, decorators: [{
195
+ type: NgModule,
196
+ args: [{
197
+ declarations: [PillComponent],
198
+ imports: [
199
+ CommonModule, TooltipModule.forRoot()
200
+ ],
201
+ exports: [PillComponent],
202
+ }]
203
+ }] });
204
+
205
+ class TaskIconComponent {
206
+ constructor() { }
207
+ }
208
+ TaskIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
209
+ TaskIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: TaskIconComponent, selector: "symphony-task-icon", inputs: { isComplete: "isComplete" }, ngImport: i0, template: "<div\n class=\"task-circle\"\n [ngClass]=\"{\n 'task-incomplete': !isComplete,\n 'task-complete': isComplete\n }\"\n>\n <i\n class=\"fa-solid\"\n [ngClass]=\"{\n 'si-task-completed': !isComplete,\n 'si-task-open': isComplete\n }\"\n ></i>\n</div>\n", styles: [".task-circle{border-radius:50%;height:50px;width:50px}.task-circle .fa-solid{color:#fff;font-size:20px;position:relative;top:15px;left:15px}.task-complete{background-color:#00d56b}.task-incomplete{background-color:#d9d9d9}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
210
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskIconComponent, decorators: [{
211
+ type: Component,
212
+ args: [{ selector: 'symphony-task-icon', template: "<div\n class=\"task-circle\"\n [ngClass]=\"{\n 'task-incomplete': !isComplete,\n 'task-complete': isComplete\n }\"\n>\n <i\n class=\"fa-solid\"\n [ngClass]=\"{\n 'si-task-completed': !isComplete,\n 'si-task-open': isComplete\n }\"\n ></i>\n</div>\n", styles: [".task-circle{border-radius:50%;height:50px;width:50px}.task-circle .fa-solid{color:#fff;font-size:20px;position:relative;top:15px;left:15px}.task-complete{background-color:#00d56b}.task-incomplete{background-color:#d9d9d9}\n"] }]
213
+ }], ctorParameters: function () { return []; }, propDecorators: { isComplete: [{
214
+ type: Input
215
+ }] } });
216
+
217
+ class TaskIconModule {
218
+ }
219
+ TaskIconModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskIconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
220
+ TaskIconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskIconModule, declarations: [TaskIconComponent], imports: [CommonModule], exports: [TaskIconComponent] });
221
+ TaskIconModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskIconModule, imports: [[CommonModule]] });
222
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskIconModule, decorators: [{
223
+ type: NgModule,
224
+ args: [{
225
+ declarations: [TaskIconComponent],
226
+ imports: [CommonModule],
227
+ exports: [TaskIconComponent],
228
+ }]
229
+ }] });
230
+
231
+ class ColorSampleComponent {
232
+ constructor() { }
233
+ ngOnInit() {
234
+ this.bgColor = this.color;
235
+ }
236
+ }
237
+ ColorSampleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSampleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
238
+ ColorSampleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ColorSampleComponent, selector: "symphony-color-sample", inputs: { color: "color" }, ngImport: i0, template: "<div\n class=\"color-sample\"\n [ngClass]=\"bgColor\"\n [ngStyle]=\"{\n border: color === 'background-color-white' ? '1px solid #000' : 'none'\n }\"\n></div>\n", styles: [".color-sample{float:left;border-radius:50%;height:30px;width:30px;margin-top:10px;margin-right:20px}.background-color-black{background-color:#000}.background-color-grey{background-color:#bababa}.background-color-light-grey-1{background-color:#d0d0d0}.background-color-light-grey-2{background-color:#d9d9d9}.background-color-medium-black{background-color:#464646}.background-color-space-grey{background-color:#141414}.background-color-white{background-color:#fff}.background-color-green{background-color:#00d56b}.background-color-ice-blue{background-color:#03bcce}.background-color-lavender{background-color:#af5af9}.background-color-orange{background-color:#ffa700}.background-color-pink{background-color:#ff6cff}.background-color-purple{background-color:#801afc}.background-color-red{background-color:#f0001e}.background-color-skyblue{background-color:#007dbb}.background-color-turquoise{background-color:#00ebb5}.background-color-yellow{background-color:#fde928}.background-color-cyan{background-color:#00ffd8}.background-color-strong-orange{background-color:#ffa700}.background-color-soft-lime-green{background-color:#67f95a}.background-color-bright-violet{background-color:#7428fd}.background-color-lime-green{background-color:#00bb5e}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
239
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSampleComponent, decorators: [{
240
+ type: Component,
241
+ args: [{ selector: 'symphony-color-sample', template: "<div\n class=\"color-sample\"\n [ngClass]=\"bgColor\"\n [ngStyle]=\"{\n border: color === 'background-color-white' ? '1px solid #000' : 'none'\n }\"\n></div>\n", styles: [".color-sample{float:left;border-radius:50%;height:30px;width:30px;margin-top:10px;margin-right:20px}.background-color-black{background-color:#000}.background-color-grey{background-color:#bababa}.background-color-light-grey-1{background-color:#d0d0d0}.background-color-light-grey-2{background-color:#d9d9d9}.background-color-medium-black{background-color:#464646}.background-color-space-grey{background-color:#141414}.background-color-white{background-color:#fff}.background-color-green{background-color:#00d56b}.background-color-ice-blue{background-color:#03bcce}.background-color-lavender{background-color:#af5af9}.background-color-orange{background-color:#ffa700}.background-color-pink{background-color:#ff6cff}.background-color-purple{background-color:#801afc}.background-color-red{background-color:#f0001e}.background-color-skyblue{background-color:#007dbb}.background-color-turquoise{background-color:#00ebb5}.background-color-yellow{background-color:#fde928}.background-color-cyan{background-color:#00ffd8}.background-color-strong-orange{background-color:#ffa700}.background-color-soft-lime-green{background-color:#67f95a}.background-color-bright-violet{background-color:#7428fd}.background-color-lime-green{background-color:#00bb5e}\n"] }]
242
+ }], ctorParameters: function () { return []; }, propDecorators: { color: [{
243
+ type: Input
244
+ }] } });
245
+
246
+ class ColorSampleModule {
247
+ }
248
+ ColorSampleModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSampleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
249
+ ColorSampleModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSampleModule, declarations: [ColorSampleComponent], imports: [CommonModule], exports: [ColorSampleComponent] });
250
+ ColorSampleModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSampleModule, imports: [[CommonModule]] });
251
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSampleModule, decorators: [{
252
+ type: NgModule,
253
+ args: [{
254
+ declarations: [ColorSampleComponent],
255
+ imports: [CommonModule],
256
+ exports: [ColorSampleComponent],
257
+ }]
258
+ }] });
259
+
260
+ class H2Component {
261
+ constructor() { }
262
+ }
263
+ H2Component.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H2Component, deps: [], target: i0.ɵɵFactoryTarget.Component });
264
+ H2Component.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: H2Component, selector: "symphony-h2", inputs: { text: "text", isSecondary: "isSecondary" }, ngImport: i0, template: "<h2 [ngClass]=\"{ 'h2-secondary': isSecondary, 'h2-primary': !isSecondary }\">\n {{ text }}\n <ng-content></ng-content>\n</h2>\n", styles: [".h2-primary,.h2-secondary{margin-bottom:0;line-height:40px;letter-spacing:-2px;margin-top:0}.h2-secondary{color:#fff}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
265
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H2Component, decorators: [{
266
+ type: Component,
267
+ args: [{ selector: 'symphony-h2', template: "<h2 [ngClass]=\"{ 'h2-secondary': isSecondary, 'h2-primary': !isSecondary }\">\n {{ text }}\n <ng-content></ng-content>\n</h2>\n", styles: [".h2-primary,.h2-secondary{margin-bottom:0;line-height:40px;letter-spacing:-2px;margin-top:0}.h2-secondary{color:#fff}\n"] }]
268
+ }], ctorParameters: function () { return []; }, propDecorators: { text: [{
269
+ type: Input
270
+ }], isSecondary: [{
271
+ type: Input
272
+ }] } });
273
+
274
+ class H2Module {
275
+ }
276
+ H2Module.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H2Module, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
277
+ H2Module.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H2Module, declarations: [H2Component], imports: [CommonModule], exports: [H2Component] });
278
+ H2Module.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H2Module, imports: [[CommonModule]] });
279
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H2Module, decorators: [{
280
+ type: NgModule,
281
+ args: [{
282
+ declarations: [H2Component],
283
+ imports: [CommonModule],
284
+ exports: [H2Component],
285
+ }]
286
+ }] });
287
+
288
+ class H3Component {
289
+ constructor() { }
290
+ }
291
+ H3Component.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H3Component, deps: [], target: i0.ɵɵFactoryTarget.Component });
292
+ H3Component.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: H3Component, selector: "symphony-h3", inputs: { text: "text", isSecondary: "isSecondary" }, ngImport: i0, template: "<h3 [ngClass]=\"{ 'h3-secondary': isSecondary, 'h3-primary': !isSecondary }\">\n {{ text }}\n <ng-content></ng-content>\n</h3>\n", styles: [".h3-primary,.h3-secondary{margin-bottom:0;line-height:30px;letter-spacing:-1px;margin-top:0}.h3-secondary{color:#fff}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
293
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H3Component, decorators: [{
294
+ type: Component,
295
+ args: [{ selector: 'symphony-h3', template: "<h3 [ngClass]=\"{ 'h3-secondary': isSecondary, 'h3-primary': !isSecondary }\">\n {{ text }}\n <ng-content></ng-content>\n</h3>\n", styles: [".h3-primary,.h3-secondary{margin-bottom:0;line-height:30px;letter-spacing:-1px;margin-top:0}.h3-secondary{color:#fff}\n"] }]
296
+ }], ctorParameters: function () { return []; }, propDecorators: { text: [{
297
+ type: Input
298
+ }], isSecondary: [{
299
+ type: Input
300
+ }] } });
301
+
302
+ class H3Module {
303
+ }
304
+ H3Module.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H3Module, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
305
+ H3Module.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H3Module, declarations: [H3Component], imports: [CommonModule], exports: [H3Component] });
306
+ H3Module.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H3Module, imports: [[CommonModule]] });
307
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H3Module, decorators: [{
308
+ type: NgModule,
309
+ args: [{
310
+ declarations: [H3Component],
311
+ imports: [CommonModule],
312
+ exports: [H3Component],
313
+ }]
314
+ }] });
315
+
316
+ class H4Component {
317
+ constructor() { }
318
+ }
319
+ H4Component.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H4Component, deps: [], target: i0.ɵɵFactoryTarget.Component });
320
+ H4Component.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: H4Component, selector: "symphony-h4", inputs: { text: "text", isSecondary: "isSecondary" }, ngImport: i0, template: "<h4 [ngClass]=\"{ 'h4-secondary': isSecondary, 'h4-primary': !isSecondary }\">\n {{ text }}\n <ng-content></ng-content>\n</h4>\n", styles: [".h4-primary,.h4-secondary{margin-bottom:0;line-height:20px;letter-spacing:-1px;margin-top:0}.h4-secondary{color:#fff}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
321
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H4Component, decorators: [{
322
+ type: Component,
323
+ args: [{ selector: 'symphony-h4', template: "<h4 [ngClass]=\"{ 'h4-secondary': isSecondary, 'h4-primary': !isSecondary }\">\n {{ text }}\n <ng-content></ng-content>\n</h4>\n", styles: [".h4-primary,.h4-secondary{margin-bottom:0;line-height:20px;letter-spacing:-1px;margin-top:0}.h4-secondary{color:#fff}\n"] }]
324
+ }], ctorParameters: function () { return []; }, propDecorators: { text: [{
325
+ type: Input
326
+ }], isSecondary: [{
327
+ type: Input
328
+ }] } });
329
+
330
+ class H4Module {
331
+ }
332
+ H4Module.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H4Module, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
333
+ H4Module.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H4Module, declarations: [H4Component], imports: [CommonModule], exports: [H4Component] });
334
+ H4Module.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H4Module, imports: [[CommonModule]] });
335
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H4Module, decorators: [{
336
+ type: NgModule,
337
+ args: [{
338
+ declarations: [H4Component],
339
+ imports: [CommonModule],
340
+ exports: [H4Component],
341
+ }]
342
+ }] });
343
+
344
+ class H1Component {
345
+ constructor() { }
346
+ }
347
+ H1Component.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H1Component, deps: [], target: i0.ɵɵFactoryTarget.Component });
348
+ H1Component.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: H1Component, selector: "symphony-h1", inputs: { text: "text", isSecondary: "isSecondary" }, ngImport: i0, template: "<h1\n [ngClass]=\"{\n 'h1-secondary': isSecondary,\n 'h1-primary': !isSecondary\n }\"\n>\n {{ text }}\n <ng-content></ng-content>\n</h1>\n", styles: [".h1-primary,.h1-secondary{margin-bottom:0;line-height:50px;letter-spacing:-2px;margin-top:0}.h1-secondary{color:#fff}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
349
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H1Component, decorators: [{
350
+ type: Component,
351
+ args: [{ selector: 'symphony-h1', template: "<h1\n [ngClass]=\"{\n 'h1-secondary': isSecondary,\n 'h1-primary': !isSecondary\n }\"\n>\n {{ text }}\n <ng-content></ng-content>\n</h1>\n", styles: [".h1-primary,.h1-secondary{margin-bottom:0;line-height:50px;letter-spacing:-2px;margin-top:0}.h1-secondary{color:#fff}\n"] }]
352
+ }], ctorParameters: function () { return []; }, propDecorators: { text: [{
353
+ type: Input
354
+ }], isSecondary: [{
355
+ type: Input
356
+ }] } });
357
+
358
+ class H1Module {
359
+ }
360
+ H1Module.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H1Module, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
361
+ H1Module.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H1Module, declarations: [H1Component], imports: [CommonModule], exports: [H1Component] });
362
+ H1Module.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H1Module, imports: [[CommonModule]] });
363
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H1Module, decorators: [{
364
+ type: NgModule,
365
+ args: [{
366
+ declarations: [H1Component],
367
+ imports: [CommonModule],
368
+ exports: [H1Component],
369
+ }]
370
+ }] });
371
+
372
+ class ParagraphComponent {
373
+ constructor() { }
374
+ }
375
+ ParagraphComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ParagraphComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
376
+ ParagraphComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ParagraphComponent, selector: "symphony-paragraph", inputs: { text: "text", isSecondary: "isSecondary" }, ngImport: i0, template: "<p\n [ngClass]=\"{\n 'body-copy-secondary': isSecondary,\n 'body-copy-primary': !isSecondary\n }\"\n>\n {{ text }}\n <ng-content></ng-content>\n</p>\n", styles: [".body-copy-primary,.body-copy-secondary{margin-bottom:0;line-height:20px}.body-copy-secondary{color:#fff}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
377
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ParagraphComponent, decorators: [{
378
+ type: Component,
379
+ args: [{ selector: 'symphony-paragraph', template: "<p\n [ngClass]=\"{\n 'body-copy-secondary': isSecondary,\n 'body-copy-primary': !isSecondary\n }\"\n>\n {{ text }}\n <ng-content></ng-content>\n</p>\n", styles: [".body-copy-primary,.body-copy-secondary{margin-bottom:0;line-height:20px}.body-copy-secondary{color:#fff}\n"] }]
380
+ }], ctorParameters: function () { return []; }, propDecorators: { text: [{
381
+ type: Input
382
+ }], isSecondary: [{
383
+ type: Input
384
+ }] } });
385
+
386
+ class ParagraphModule {
387
+ }
388
+ ParagraphModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ParagraphModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
389
+ ParagraphModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ParagraphModule, declarations: [ParagraphComponent], imports: [CommonModule], exports: [ParagraphComponent] });
390
+ ParagraphModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ParagraphModule, imports: [[CommonModule]] });
391
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ParagraphModule, decorators: [{
392
+ type: NgModule,
393
+ args: [{
394
+ declarations: [ParagraphComponent],
395
+ imports: [CommonModule],
396
+ exports: [ParagraphComponent],
397
+ }]
398
+ }] });
399
+
400
+ class H5Component {
401
+ constructor() { }
402
+ }
403
+ H5Component.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H5Component, deps: [], target: i0.ɵɵFactoryTarget.Component });
404
+ H5Component.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: H5Component, selector: "symphony-h5", inputs: { text: "text", isSecondary: "isSecondary" }, ngImport: i0, template: "<h5\n [ngClass]=\"{\n 'h5-secondary': isSecondary,\n 'h5-primary': !isSecondary\n }\"\n>\n {{ text }}\n <ng-content></ng-content>\n</h5>\n", styles: [".h5-primary,.h5-secondary{margin-bottom:0;line-height:20px;margin-top:0}.h5-secondary{color:#fff}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
405
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H5Component, decorators: [{
406
+ type: Component,
407
+ args: [{ selector: 'symphony-h5', template: "<h5\n [ngClass]=\"{\n 'h5-secondary': isSecondary,\n 'h5-primary': !isSecondary\n }\"\n>\n {{ text }}\n <ng-content></ng-content>\n</h5>\n", styles: [".h5-primary,.h5-secondary{margin-bottom:0;line-height:20px;margin-top:0}.h5-secondary{color:#fff}\n"] }]
408
+ }], ctorParameters: function () { return []; }, propDecorators: { text: [{
409
+ type: Input
410
+ }], isSecondary: [{
411
+ type: Input
412
+ }] } });
413
+
414
+ class H5Module {
415
+ }
416
+ H5Module.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H5Module, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
417
+ H5Module.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H5Module, declarations: [H5Component], imports: [CommonModule], exports: [H5Component] });
418
+ H5Module.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H5Module, imports: [[CommonModule]] });
419
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H5Module, decorators: [{
420
+ type: NgModule,
421
+ args: [{
422
+ declarations: [H5Component],
423
+ imports: [CommonModule],
424
+ exports: [H5Component],
425
+ }]
426
+ }] });
427
+
428
+ class IconComponent {
429
+ constructor() {
430
+ this.size = '18px';
431
+ this.clicked = new EventEmitter();
432
+ }
433
+ onClick() {
434
+ this.clicked.emit('clicked');
435
+ }
436
+ }
437
+ IconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
438
+ IconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: IconComponent, selector: "symphony-icon", inputs: { icon: "icon", isSecondary: "isSecondary", size: "size" }, outputs: { clicked: "clicked" }, ngImport: i0, template: "<i\n [class]=\"icon\"\n [ngClass]=\"{\n 'icon-secondary': isSecondary,\n 'icon-primary': !isSecondary\n }\"\n [style.fontSize]=\"size\"\n (click)=\"onClick()\"\n></i>\n", styles: [".icon-secondary{color:#fff}i{cursor:pointer;font-size:18px}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
439
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconComponent, decorators: [{
440
+ type: Component,
441
+ args: [{ selector: 'symphony-icon', template: "<i\n [class]=\"icon\"\n [ngClass]=\"{\n 'icon-secondary': isSecondary,\n 'icon-primary': !isSecondary\n }\"\n [style.fontSize]=\"size\"\n (click)=\"onClick()\"\n></i>\n", styles: [".icon-secondary{color:#fff}i{cursor:pointer;font-size:18px}\n"] }]
442
+ }], ctorParameters: function () { return []; }, propDecorators: { icon: [{
443
+ type: Input
444
+ }], isSecondary: [{
445
+ type: Input
446
+ }], size: [{
447
+ type: Input
448
+ }], clicked: [{
449
+ type: Output
450
+ }] } });
451
+
452
+ class IconModule {
453
+ }
454
+ IconModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
455
+ IconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconModule, declarations: [IconComponent], imports: [CommonModule], exports: [IconComponent] });
456
+ IconModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconModule, imports: [[CommonModule]] });
457
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconModule, decorators: [{
458
+ type: NgModule,
459
+ args: [{
460
+ declarations: [IconComponent],
461
+ imports: [CommonModule],
462
+ exports: [IconComponent],
463
+ }]
464
+ }] });
465
+
466
+ var Icons;
467
+ (function (Icons) {
468
+ Icons["MOREOPTIONS"] = "si-more-options";
469
+ Icons["ADD"] = "si-add";
470
+ Icons["ACTIVITY"] = "si-activity";
471
+ Icons["ARROWHIDEREVEAL"] = "si-arrow-hide-reveal";
472
+ Icons["ARROWNEXT"] = "si-arrow-next";
473
+ Icons["ARROWPREV"] = "si-arrow-prev";
474
+ Icons["CLOSEMODAL"] = "si-close-modal";
475
+ Icons["COLLAPSE"] = "si-collapse";
476
+ Icons["DAYMODE"] = "si-daymode";
477
+ Icons["DELETE"] = "si-delete";
478
+ Icons["DOCUMENT"] = "si-document";
479
+ Icons["DOWNLOAD"] = "si-download";
480
+ Icons["EDIT"] = "si-edit";
481
+ Icons["EMAILDRIP"] = "si-email-drip";
482
+ Icons["EMAILOPEN"] = "si-email-open";
483
+ Icons["EMAILSEND"] = "si-email-send";
484
+ Icons["EXPAND"] = "si-expand";
485
+ Icons["FAVORITE"] = "si-favorite";
486
+ Icons["FEEDBACKMAYBE"] = "si-feedback-maybe";
487
+ Icons["FEEDBACKNO"] = "si-feedback-no";
488
+ Icons["FEEDBACKYES"] = "si-feedback-yes";
489
+ Icons["FOLDERMULTIPLE"] = "si-folder-multiple";
490
+ Icons["INCLUDE"] = "si-include";
491
+ Icons["INFO"] = "si-info";
492
+ Icons["INTERVIEW"] = "si-interview";
493
+ Icons["LINK"] = "si-link";
494
+ Icons["LOCATION"] = "si-location";
495
+ Icons["MENUALL"] = "si-menu-all";
496
+ Icons["MENUANALYTICS"] = "si-menu-analytics";
497
+ Icons["MENUASSETS"] = "si-menu-assets";
498
+ Icons["MENUCAMPAIGNS"] = "si-menu-campaigns";
499
+ Icons["MENUCONTACT"] = "si-menu-contact";
500
+ Icons["MENUCONTENT"] = "si-menu-content";
501
+ Icons["MENUDASHBOARD"] = "si-menu-dashboard";
502
+ Icons["MENUEVENTS"] = "si-menu-events";
503
+ Icons["MENUFOLDERS"] = "si-menu-folders";
504
+ Icons["MENUJOBS"] = "si-menu-jobs";
505
+ Icons["MENURETURN"] = "si-menu-return";
506
+ Icons["MENUWORKFLOWS"] = "si-menu-workflows";
507
+ Icons["MERGE"] = "si-merge";
508
+ Icons["MOVE"] = "si-move";
509
+ Icons["NIGHTMODE"] = "si-nightmode";
510
+ Icons["NOTIFICATION"] = "si-notification";
511
+ Icons["ORGANIZECOLUMNS"] = "si-organize-columns";
512
+ Icons["ORGANIZECONTACTS"] = "si-organize-contacts";
513
+ Icons["PENDINGINCOMPLETE"] = "si-pending-incomplete";
514
+ Icons["PHONENUMBER"] = "si-phone-number";
515
+ Icons["PREVIEW"] = "si-preview";
516
+ Icons["PROMOTE"] = "si-promote";
517
+ Icons["REFRESH"] = "si-refresh";
518
+ Icons["REMOVE"] = "si-remove";
519
+ Icons["EXCLUDE"] = "si-exclude";
520
+ Icons["RESULTSFILTERS"] = "si-results-filters";
521
+ Icons["REVIEW"] = "si-review";
522
+ Icons["SALARY"] = "si-salary";
523
+ Icons["SAVE"] = "si-save";
524
+ Icons["SEARCHADVANCED"] = "si-search-advanced";
525
+ Icons["SEARCHCLEAR"] = "si-search-clear";
526
+ Icons["SEARCHNEW"] = "si-search-new";
527
+ Icons["SETTINGSMART"] = "si-settings-smart";
528
+ Icons["SMS"] = "si-sms";
529
+ Icons["SORTMINI"] = "si-sort-mini";
530
+ Icons["STATUS"] = "si-status";
531
+ Icons["SYSTEMACTION"] = "si-system-action";
532
+ Icons["TASKCOMPLETED"] = "si-task-completed";
533
+ Icons["TASKOPEN"] = "si-task-open";
534
+ Icons["TIMEFRAME"] = "si-timeframe";
535
+ Icons["TIMELINE"] = "si-timeline";
536
+ Icons["UPLOAD"] = "si-upload";
537
+ Icons["USERMULTIPLE"] = "si-user-multiple";
538
+ Icons["USER"] = "si-user";
539
+ })(Icons || (Icons = {}));
540
+
541
+ class IconWrapperComponent {
542
+ constructor() {
543
+ this.Icons = Icons;
544
+ this.clicked = new EventEmitter();
545
+ }
546
+ onClick() {
547
+ this.clicked.emit('clicked');
548
+ }
549
+ }
550
+ IconWrapperComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconWrapperComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
551
+ IconWrapperComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: IconWrapperComponent, selector: "symphony-icon-wrapper", inputs: { isInverse: "isInverse" }, outputs: { clicked: "clicked" }, ngImport: i0, template: "<div\n class=\"icon-wrapper\"\n [ngClass]=\"{ 'is-inverse': isInverse }\"\n (click)=\"onClick()\"\n>\n <ng-content></ng-content>\n</div>\n", styles: [".icon-wrapper{border-radius:50%;border:2px solid black;height:40px;width:40px;padding:9px 0;cursor:pointer;text-align:center}.icon-wrapper:hover,.icon-wrapper.is-inverse{background:#000;color:#fff}.icon-wrapper.is-inverse:hover{background:#fff;color:#000}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
552
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconWrapperComponent, decorators: [{
553
+ type: Component,
554
+ args: [{ selector: 'symphony-icon-wrapper', template: "<div\n class=\"icon-wrapper\"\n [ngClass]=\"{ 'is-inverse': isInverse }\"\n (click)=\"onClick()\"\n>\n <ng-content></ng-content>\n</div>\n", styles: [".icon-wrapper{border-radius:50%;border:2px solid black;height:40px;width:40px;padding:9px 0;cursor:pointer;text-align:center}.icon-wrapper:hover,.icon-wrapper.is-inverse{background:#000;color:#fff}.icon-wrapper.is-inverse:hover{background:#fff;color:#000}\n"] }]
555
+ }], ctorParameters: function () { return []; }, propDecorators: { isInverse: [{
556
+ type: Input
557
+ }], clicked: [{
558
+ type: Output
559
+ }] } });
560
+
561
+ class IconWrapperModule {
562
+ }
563
+ IconWrapperModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconWrapperModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
564
+ IconWrapperModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconWrapperModule, declarations: [IconWrapperComponent], imports: [CommonModule], exports: [IconWrapperComponent] });
565
+ IconWrapperModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconWrapperModule, imports: [[CommonModule]] });
566
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconWrapperModule, decorators: [{
567
+ type: NgModule,
568
+ args: [{
569
+ declarations: [IconWrapperComponent],
570
+ imports: [CommonModule],
571
+ exports: [IconWrapperComponent],
572
+ }]
573
+ }] });
574
+
575
+ class InputCheckboxComponent {
576
+ constructor() {
577
+ this.clicked = new EventEmitter();
578
+ }
579
+ onClick() {
580
+ this.isActive ? (this.isActive = false) : (this.isActive = true);
581
+ this.clicked.emit({
582
+ label: this.label,
583
+ isActive: this.isActive,
584
+ });
585
+ }
586
+ }
587
+ InputCheckboxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputCheckboxComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
588
+ InputCheckboxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: InputCheckboxComponent, selector: "symphony-input-checkbox", inputs: { isActive: "isActive", label: "label", isRequired: "isRequired" }, outputs: { clicked: "clicked" }, ngImport: i0, template: "<div class=\"sfx-checkbox\" (click)=\"onClick()\">\n <input\n type=\"checkbox\"\n class=\"sfx-checkbox-input\"\n [checked]=\"isActive\"\n name=\"{{ label }}\"\n />\n <label for=\"{{ label }}\" class=\"Font400\"\n >{{ label }}<span class=\"requiredField\" *ngIf=\"isRequired\">*</span></label\n >\n</div>\n", styles: [".sfx-checkbox .sfx-checkbox-input:checked~label:after{background-color:transparent}.requiredField{color:red!important}.sfx-checkbox{margin:10px 0;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.sfx-checkbox .sfx-checkbox-input:checked,.sfx-checkbox .sfx-checkbox-input:not(:checked){opacity:0;position:absolute;margin:0;z-index:-1;width:0;height:0;overflow:hidden;left:0;pointer-events:none}.sfx-checkbox .sfx-checkbox-input~label{display:inline-block;position:relative;cursor:pointer;height:100%;line-height:20px;font-size:14px;color:#000;padding-left:36px;font-family:neuzeit_groteskbold,sans-serif;margin:0;word-break:break-word}.sfx-checkbox .sfx-checkbox-input~label.sfx-font-reg{font-family:neuzeit_groteskregular,sans-serif}.sfx-checkbox .sfx-checkbox-input~label:before{transform:translateZ(0);transition:all .2s ease-in;position:absolute;content:\"\";left:0;border-radius:2px}.sfx-checkbox .sfx-checkbox-input~label:after{position:absolute;content:\"\";left:0;border-radius:2px;top:0}.sfx-checkbox .sfx-checkbox-input:not(:checked)~label:before{width:9px;height:15px;border:none;top:1px;left:0;transform:rotate(37deg) scale(.1);transform-origin:100% 100%}.sfx-checkbox .sfx-checkbox-input:not(:checked)~label:after{width:20px;height:20px;border:2px solid #000;z-index:0;border-radius:4px}.sfx-checkbox .sfx-checkbox-input:checked~label:before{top:3px;left:3px;width:6px;height:12px;border-color:transparent #000 #000 transparent;border-style:solid;border-width:0 2px 2px 0;z-index:1;-webkit-backface-visibility:hidden;backface-visibility:hidden;transform:rotate(37deg) scale(1);transform-origin:100% 100%;border-radius:0}.sfx-checkbox .sfx-checkbox-input:checked~label:after{width:20px;height:20px;background-color:#fff;border:2px solid #000;border-radius:4px}.sfx-checkbox .sfx-checkbox-input:disabled~label{opacity:.3;pointer-events:none}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
589
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputCheckboxComponent, decorators: [{
590
+ type: Component,
591
+ args: [{ selector: 'symphony-input-checkbox', template: "<div class=\"sfx-checkbox\" (click)=\"onClick()\">\n <input\n type=\"checkbox\"\n class=\"sfx-checkbox-input\"\n [checked]=\"isActive\"\n name=\"{{ label }}\"\n />\n <label for=\"{{ label }}\" class=\"Font400\"\n >{{ label }}<span class=\"requiredField\" *ngIf=\"isRequired\">*</span></label\n >\n</div>\n", styles: [".sfx-checkbox .sfx-checkbox-input:checked~label:after{background-color:transparent}.requiredField{color:red!important}.sfx-checkbox{margin:10px 0;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.sfx-checkbox .sfx-checkbox-input:checked,.sfx-checkbox .sfx-checkbox-input:not(:checked){opacity:0;position:absolute;margin:0;z-index:-1;width:0;height:0;overflow:hidden;left:0;pointer-events:none}.sfx-checkbox .sfx-checkbox-input~label{display:inline-block;position:relative;cursor:pointer;height:100%;line-height:20px;font-size:14px;color:#000;padding-left:36px;font-family:neuzeit_groteskbold,sans-serif;margin:0;word-break:break-word}.sfx-checkbox .sfx-checkbox-input~label.sfx-font-reg{font-family:neuzeit_groteskregular,sans-serif}.sfx-checkbox .sfx-checkbox-input~label:before{transform:translateZ(0);transition:all .2s ease-in;position:absolute;content:\"\";left:0;border-radius:2px}.sfx-checkbox .sfx-checkbox-input~label:after{position:absolute;content:\"\";left:0;border-radius:2px;top:0}.sfx-checkbox .sfx-checkbox-input:not(:checked)~label:before{width:9px;height:15px;border:none;top:1px;left:0;transform:rotate(37deg) scale(.1);transform-origin:100% 100%}.sfx-checkbox .sfx-checkbox-input:not(:checked)~label:after{width:20px;height:20px;border:2px solid #000;z-index:0;border-radius:4px}.sfx-checkbox .sfx-checkbox-input:checked~label:before{top:3px;left:3px;width:6px;height:12px;border-color:transparent #000 #000 transparent;border-style:solid;border-width:0 2px 2px 0;z-index:1;-webkit-backface-visibility:hidden;backface-visibility:hidden;transform:rotate(37deg) scale(1);transform-origin:100% 100%;border-radius:0}.sfx-checkbox .sfx-checkbox-input:checked~label:after{width:20px;height:20px;background-color:#fff;border:2px solid #000;border-radius:4px}.sfx-checkbox .sfx-checkbox-input:disabled~label{opacity:.3;pointer-events:none}\n"] }]
592
+ }], ctorParameters: function () { return []; }, propDecorators: { isActive: [{
593
+ type: Input
594
+ }], label: [{
595
+ type: Input
596
+ }], isRequired: [{
597
+ type: Input
598
+ }], clicked: [{
599
+ type: Output
600
+ }] } });
601
+
602
+ class InputCheckboxModule {
603
+ }
604
+ InputCheckboxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputCheckboxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
605
+ InputCheckboxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputCheckboxModule, declarations: [InputCheckboxComponent], imports: [CommonModule], exports: [InputCheckboxComponent] });
606
+ InputCheckboxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputCheckboxModule, imports: [[CommonModule]] });
607
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputCheckboxModule, decorators: [{
608
+ type: NgModule,
609
+ args: [{
610
+ declarations: [InputCheckboxComponent],
611
+ imports: [CommonModule],
612
+ exports: [InputCheckboxComponent],
613
+ }]
614
+ }] });
615
+
616
+ class InputRadioComponent {
617
+ constructor() {
618
+ this.clicked = new EventEmitter();
619
+ }
620
+ onClick() {
621
+ this.isActive ? (this.isActive = false) : (this.isActive = true);
622
+ this.clicked.emit({
623
+ label: this.label,
624
+ isActive: this.isActive,
625
+ });
626
+ }
627
+ }
628
+ InputRadioComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
629
+ InputRadioComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: InputRadioComponent, selector: "symphony-input-radio", inputs: { isActive: "isActive", label: "label", isRequired: "isRequired" }, outputs: { clicked: "clicked" }, ngImport: i0, template: "<div class=\"sfx-radio\" (click)=\"onClick()\">\n <input\n type=\"radio\"\n class=\"sfx-radio-input sfx-position-absolute\"\n [checked]=\"isActive\"\n name=\"{{ label }}\"\n />\n <label for=\"{{ label }}\" class=\"Font400\"\n >{{ label }}<span class=\"requiredField\" *ngIf=\"isRequired\">*</span></label\n >\n</div>\n", styles: [".requiredField{color:red!important}.sfx-radio{margin:10px 0;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.sfx-radio .sfx-radio-input{top:0;left:0;width:100%;cursor:inherit;height:100%;margin:0;opacity:0;padding:0;z-index:1;position:absolute}.sfx-radio .sfx-radio-input~label{display:inline-block;position:relative;cursor:pointer;height:100%;line-height:20px;font-size:14px;color:#000;font-family:neuzeit_groteskbold}.sfx-radio .sfx-radio-input+*:before{content:\"\";display:inline-block;vertical-align:bottom;width:1rem;height:1rem;margin-right:.5rem;margin-bottom:.2rem;border-radius:50%;border-style:solid;border-width:.1rem;border-color:#000}.sfx-radio .sfx-radio-input:checked+*:before{background:radial-gradient(black 0%,black 40%,transparent 50%,transparent)}.sfx-radio .sfx-radio-input:checked+*{color:#000}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
630
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioComponent, decorators: [{
631
+ type: Component,
632
+ args: [{ selector: 'symphony-input-radio', template: "<div class=\"sfx-radio\" (click)=\"onClick()\">\n <input\n type=\"radio\"\n class=\"sfx-radio-input sfx-position-absolute\"\n [checked]=\"isActive\"\n name=\"{{ label }}\"\n />\n <label for=\"{{ label }}\" class=\"Font400\"\n >{{ label }}<span class=\"requiredField\" *ngIf=\"isRequired\">*</span></label\n >\n</div>\n", styles: [".requiredField{color:red!important}.sfx-radio{margin:10px 0;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.sfx-radio .sfx-radio-input{top:0;left:0;width:100%;cursor:inherit;height:100%;margin:0;opacity:0;padding:0;z-index:1;position:absolute}.sfx-radio .sfx-radio-input~label{display:inline-block;position:relative;cursor:pointer;height:100%;line-height:20px;font-size:14px;color:#000;font-family:neuzeit_groteskbold}.sfx-radio .sfx-radio-input+*:before{content:\"\";display:inline-block;vertical-align:bottom;width:1rem;height:1rem;margin-right:.5rem;margin-bottom:.2rem;border-radius:50%;border-style:solid;border-width:.1rem;border-color:#000}.sfx-radio .sfx-radio-input:checked+*:before{background:radial-gradient(black 0%,black 40%,transparent 50%,transparent)}.sfx-radio .sfx-radio-input:checked+*{color:#000}\n"] }]
633
+ }], ctorParameters: function () { return []; }, propDecorators: { isActive: [{
634
+ type: Input
635
+ }], label: [{
636
+ type: Input
637
+ }], isRequired: [{
638
+ type: Input
639
+ }], clicked: [{
640
+ type: Output
641
+ }] } });
642
+
643
+ class InputRadioModule {
644
+ }
645
+ InputRadioModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
646
+ InputRadioModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioModule, declarations: [InputRadioComponent], imports: [CommonModule,
647
+ FormsModule,
648
+ ReactiveFormsModule], exports: [InputRadioComponent] });
649
+ InputRadioModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioModule, imports: [[
650
+ CommonModule,
651
+ FormsModule,
652
+ ReactiveFormsModule,
653
+ ]] });
654
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioModule, decorators: [{
655
+ type: NgModule,
656
+ args: [{
657
+ declarations: [InputRadioComponent],
658
+ imports: [
659
+ CommonModule,
660
+ FormsModule,
661
+ ReactiveFormsModule,
662
+ ],
663
+ exports: [InputRadioComponent],
664
+ }]
665
+ }] });
666
+
667
+ class InputTextComponent {
668
+ constructor() {
669
+ this.placeholder = '';
670
+ this.textChange = new EventEmitter();
671
+ this.textChange$ = new Subject();
672
+ }
673
+ ngOnInit() {
674
+ this.textChangeSubscription = this.textChange$
675
+ .pipe(debounceTime(1000), distinctUntilChanged())
676
+ .subscribe((tc) => {
677
+ this.textChange.emit(tc);
678
+ });
679
+ }
680
+ ngOnDestroy() {
681
+ this.textChangeSubscription?.unsubscribe();
682
+ }
683
+ onTextChange(event) {
684
+ this.textChange$.next(event.target.value);
685
+ }
686
+ }
687
+ InputTextComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
688
+ InputTextComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: InputTextComponent, selector: "symphony-input-text", inputs: { placeholder: "placeholder", icon: "icon", label: "label", isInverse: "isInverse" }, outputs: { textChange: "textChange" }, ngImport: i0, template: "<div\n class=\"input-text-wrap\"\n [ngClass]=\"{\n 'input-secondary': isInverse\n }\"\n>\n <label for=\"input-text\" *ngIf=\"label\" class=\"input-text-label\">{{\n label\n }}</label>\n <input\n type=\"text\"\n name=\"input-text\"\n class=\"input-text\"\n autocomplete=\"off\"\n placeholder=\"{{ placeholder }}\"\n (keyup)=\"onTextChange($event)\"\n />\n <symphony-icon [icon]=\"icon\"></symphony-icon>\n</div>\n", styles: [".input-text-wrap{position:relative}.input-text-wrap.input-secondary{color:#fff}.input-text-wrap.input-secondary .input-text{background-color:transparent;border-color:#565656}.input-text-wrap.input-secondary .input-text::placeholder{color:#fff}.input-text-wrap .input-text-label{display:block;font-family:neuzeit_groteskbold,sans-serif;margin-bottom:.27rem;line-height:25px;margin-left:.3rem}.input-text-wrap .input-text{font-family:neuzeit-grotesk,sans-serif!important;width:calc(100% - .6rem);height:40px;border:1px solid #d0d0d0;border-radius:4px;padding:7px 15px;line-height:25px;margin:.3rem}.input-text-wrap .input-text::placeholder{color:#000}.input-text-wrap .input-text:focus{border-color:#464646}.input-text-wrap .input-text:focus-visible{outline:none}.input-text-wrap symphony-icon{position:absolute;right:17px;font-size:14px;bottom:11px}\n"], components: [{ type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size"], outputs: ["clicked"] }], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
689
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextComponent, decorators: [{
690
+ type: Component,
691
+ args: [{ selector: 'symphony-input-text', template: "<div\n class=\"input-text-wrap\"\n [ngClass]=\"{\n 'input-secondary': isInverse\n }\"\n>\n <label for=\"input-text\" *ngIf=\"label\" class=\"input-text-label\">{{\n label\n }}</label>\n <input\n type=\"text\"\n name=\"input-text\"\n class=\"input-text\"\n autocomplete=\"off\"\n placeholder=\"{{ placeholder }}\"\n (keyup)=\"onTextChange($event)\"\n />\n <symphony-icon [icon]=\"icon\"></symphony-icon>\n</div>\n", styles: [".input-text-wrap{position:relative}.input-text-wrap.input-secondary{color:#fff}.input-text-wrap.input-secondary .input-text{background-color:transparent;border-color:#565656}.input-text-wrap.input-secondary .input-text::placeholder{color:#fff}.input-text-wrap .input-text-label{display:block;font-family:neuzeit_groteskbold,sans-serif;margin-bottom:.27rem;line-height:25px;margin-left:.3rem}.input-text-wrap .input-text{font-family:neuzeit-grotesk,sans-serif!important;width:calc(100% - .6rem);height:40px;border:1px solid #d0d0d0;border-radius:4px;padding:7px 15px;line-height:25px;margin:.3rem}.input-text-wrap .input-text::placeholder{color:#000}.input-text-wrap .input-text:focus{border-color:#464646}.input-text-wrap .input-text:focus-visible{outline:none}.input-text-wrap symphony-icon{position:absolute;right:17px;font-size:14px;bottom:11px}\n"] }]
692
+ }], ctorParameters: function () { return []; }, propDecorators: { placeholder: [{
693
+ type: Input
694
+ }], icon: [{
695
+ type: Input
696
+ }], label: [{
697
+ type: Input
698
+ }], isInverse: [{
699
+ type: Input
700
+ }], textChange: [{
701
+ type: Output
702
+ }] } });
703
+
704
+ class InputTextModule {
705
+ }
706
+ InputTextModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
707
+ InputTextModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextModule, declarations: [InputTextComponent], imports: [CommonModule, IconModule], exports: [InputTextComponent] });
708
+ InputTextModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextModule, imports: [[CommonModule, IconModule]] });
709
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextModule, decorators: [{
710
+ type: NgModule,
711
+ args: [{
712
+ declarations: [InputTextComponent],
713
+ imports: [CommonModule, IconModule],
714
+ exports: [InputTextComponent],
715
+ }]
716
+ }] });
717
+
718
+ class ContextualMenuComponent {
719
+ constructor() {
720
+ this.model = {
721
+ hasBorder: false,
722
+ };
723
+ this.itemClick = new EventEmitter();
724
+ }
725
+ onItemClick(item) {
726
+ this.itemClick.emit(item);
727
+ }
728
+ }
729
+ ContextualMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContextualMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
730
+ ContextualMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ContextualMenuComponent, selector: "symphony-contextual-menu", inputs: { model: "model" }, outputs: { itemClick: "itemClick" }, ngImport: i0, template: "<div class=\"btn-group\" dropdown>\n <button\n id=\"button-basic\"\n dropdownToggle\n type=\"button\"\n class=\"btn dropdown-toggle\"\n [ngClass]=\"{\n 'has-border': model.hasBorder\n }\"\n aria-controls=\"dropdown-basic\"\n aria-label=\"more-actions-menu\"\n >\n <i class=\"si-more-options\"></i>\n </button>\n <ul\n id=\"dropdown-basic\"\n *dropdownMenu\n class=\"dropdown-menu\"\n role=\"menu\"\n aria-labelledby=\"button-basic\"\n >\n <li role=\"menuitem\" *ngFor=\"let item of model.items\">\n <a\n class=\"dropdown-item\"\n href=\"#\"\n (click)=\"$event.preventDefault(); onItemClick(item)\"\n >{{ item }}</a\n >\n </li>\n </ul>\n</div>\n", styles: [".btn-group .has-border{border-radius:50%;border:2px solid #000;height:40px;width:40px;padding:9px 0;cursor:pointer;text-align:center}.btn-group button.dropdown-toggle.btn{display:flex;align-items:center;justify-content:center;background:#ffffff;padding:0;font-size:18px;line-height:26px;box-shadow:none;width:40px;height:40px;border-radius:50%;color:#000}.btn-group button.dropdown-toggle.btn:hover{background:#000000;color:#fff}.btn-group button.dropdown-toggle.btn .si-more-options{font-size:18px}.btn-group .dropdown-menu{min-width:240px;margin-top:10px;border:none;border-radius:10px;padding-top:20px;padding-bottom:20px;right:-10px;left:auto;box-shadow:0 0 30px #0003;max-height:none;overflow:inherit}.btn-group .dropdown-menu li a.dropdown-item{padding:0 20px;line-height:40px;color:#000;font-weight:600}.btn-group .dropdown-menu li a.dropdown-item:hover{background:#000000;color:#fff}.btn-group .dropdown-menu li a.not-allowed{cursor:not-allowed}.btn-group .dropdown-menu:before{content:\"\\e252\";font-family:Glyphicons Halflings!important;font-size:14px;transform:rotate(180deg);display:inline-block;position:absolute;top:-13px;right:23px;color:#fff}.btn-group.open button.dropdown-toggle.btn{background:#000000;color:#fff}\n"], directives: [{ type: i1$1.BsDropdownDirective, selector: "[bsDropdown],[dropdown]", inputs: ["autoClose", "isAnimated", "insideClick", "isDisabled", "isOpen", "placement", "triggers", "container", "dropup"], outputs: ["onShown", "onHidden", "isOpenChange"], exportAs: ["bs-dropdown"] }, { type: i1$1.BsDropdownToggleDirective, selector: "[bsDropdownToggle],[dropdownToggle]", exportAs: ["bs-dropdown-toggle"] }, { type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1$1.BsDropdownMenuDirective, selector: "[bsDropdownMenu],[dropdownMenu]", exportAs: ["bs-dropdown-menu"] }, { type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
731
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContextualMenuComponent, decorators: [{
732
+ type: Component,
733
+ args: [{ selector: 'symphony-contextual-menu', template: "<div class=\"btn-group\" dropdown>\n <button\n id=\"button-basic\"\n dropdownToggle\n type=\"button\"\n class=\"btn dropdown-toggle\"\n [ngClass]=\"{\n 'has-border': model.hasBorder\n }\"\n aria-controls=\"dropdown-basic\"\n aria-label=\"more-actions-menu\"\n >\n <i class=\"si-more-options\"></i>\n </button>\n <ul\n id=\"dropdown-basic\"\n *dropdownMenu\n class=\"dropdown-menu\"\n role=\"menu\"\n aria-labelledby=\"button-basic\"\n >\n <li role=\"menuitem\" *ngFor=\"let item of model.items\">\n <a\n class=\"dropdown-item\"\n href=\"#\"\n (click)=\"$event.preventDefault(); onItemClick(item)\"\n >{{ item }}</a\n >\n </li>\n </ul>\n</div>\n", styles: [".btn-group .has-border{border-radius:50%;border:2px solid #000;height:40px;width:40px;padding:9px 0;cursor:pointer;text-align:center}.btn-group button.dropdown-toggle.btn{display:flex;align-items:center;justify-content:center;background:#ffffff;padding:0;font-size:18px;line-height:26px;box-shadow:none;width:40px;height:40px;border-radius:50%;color:#000}.btn-group button.dropdown-toggle.btn:hover{background:#000000;color:#fff}.btn-group button.dropdown-toggle.btn .si-more-options{font-size:18px}.btn-group .dropdown-menu{min-width:240px;margin-top:10px;border:none;border-radius:10px;padding-top:20px;padding-bottom:20px;right:-10px;left:auto;box-shadow:0 0 30px #0003;max-height:none;overflow:inherit}.btn-group .dropdown-menu li a.dropdown-item{padding:0 20px;line-height:40px;color:#000;font-weight:600}.btn-group .dropdown-menu li a.dropdown-item:hover{background:#000000;color:#fff}.btn-group .dropdown-menu li a.not-allowed{cursor:not-allowed}.btn-group .dropdown-menu:before{content:\"\\e252\";font-family:Glyphicons Halflings!important;font-size:14px;transform:rotate(180deg);display:inline-block;position:absolute;top:-13px;right:23px;color:#fff}.btn-group.open button.dropdown-toggle.btn{background:#000000;color:#fff}\n"] }]
734
+ }], ctorParameters: function () { return []; }, propDecorators: { model: [{
735
+ type: Input
736
+ }], itemClick: [{
737
+ type: Output
738
+ }] } });
739
+
740
+ class ContextualMenuModule {
741
+ }
742
+ ContextualMenuModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContextualMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
743
+ ContextualMenuModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContextualMenuModule, declarations: [ContextualMenuComponent], imports: [CommonModule, i1$1.BsDropdownModule, BrowserAnimationsModule], exports: [ContextualMenuComponent] });
744
+ ContextualMenuModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContextualMenuModule, imports: [[CommonModule, BsDropdownModule.forRoot(), BrowserAnimationsModule]] });
745
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContextualMenuModule, decorators: [{
746
+ type: NgModule,
747
+ args: [{
748
+ declarations: [ContextualMenuComponent],
749
+ imports: [CommonModule, BsDropdownModule.forRoot(), BrowserAnimationsModule],
750
+ exports: [ContextualMenuComponent],
751
+ }]
752
+ }] });
753
+
754
+ class InputDropdownComponent {
755
+ constructor() {
756
+ this.selectItem = new EventEmitter();
757
+ this.clearSelection = new EventEmitter();
758
+ }
759
+ ngOnInit() {
760
+ this.initialSelectedValue = this.inputDropdownListModel.selectedName;
761
+ }
762
+ itemClick(action) {
763
+ if (!action.isDisabled) {
764
+ this.selectItem.emit(action);
765
+ this.inputDropdownListModel.selectedName = `${action.name}`;
766
+ }
767
+ }
768
+ onClearSelection() {
769
+ this.inputDropdownListModel.selectedName = this.initialSelectedValue;
770
+ this.clearSelection.emit(this.inputDropdownListModel);
771
+ }
772
+ }
773
+ InputDropdownComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputDropdownComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
774
+ InputDropdownComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: InputDropdownComponent, selector: "symphony-input-dropdown", inputs: { inputDropdownListModel: "inputDropdownListModel", disableBtn: "disableBtn", isInverse: "isInverse", isRequired: "isRequired" }, outputs: { selectItem: "selectItem", clearSelection: "clearSelection" }, ngImport: i0, template: "<div\n *ngIf=\"inputDropdownListModel.componentHeading\"\n class=\"sfx-filter-label sfx-d-inline-block\"\n [ngClass]=\"{ 'is-inverse': isInverse }\"\n>\n {{ inputDropdownListModel.componentHeading }}\n <span class=\"requiredField\" *ngIf=\"isRequired\">*</span>\n</div>\n<div\n class=\"btn-group sfx-filter-dropdown sfx-d-inline-block\"\n [ngClass]=\"{ 'is-inverse': isInverse }\"\n [isDisabled]=\"disableBtn\"\n dropdown\n>\n <button\n id=\"moreDrop\"\n dropdownToggle\n type=\"button\"\n class=\"btn dropdown-toggle\"\n aria-controls=\"dropdown-basic\"\n >\n {{ inputDropdownListModel.selectedName }}\n </button>\n <i *ngIf=\"!disableBtn\" class=\"si-arrow-hide-reveal\"></i>\n <hr />\n <ul\n id=\"dropdown-basic\"\n *dropdownMenu\n class=\"dropdown-menu\"\n role=\"menu\"\n aria-labelledby=\"moreDrop\"\n [ngClass]=\"{ 'sfx-pb-0': inputDropdownListModel.showClearButton === true }\"\n >\n <li\n *ngFor=\"let action of inputDropdownListModel.dropdownList\"\n [ngClass]=\"{ disabled: action.isDisabled }\"\n (click)=\"itemClick(action)\"\n >\n <a class=\"dropdown-item\" href=\"javascript:;\">{{ action.name }}</a>\n </li>\n <div\n *ngIf=\"inputDropdownListModel.showClearButton\"\n class=\"divider dropdown-divider\"\n ></div>\n <a\n class=\"sfx-filter-item-footer\"\n *ngIf=\"inputDropdownListModel.showClearButton\"\n >\n <button\n type=\"button\"\n (click)=\"onClearSelection()\"\n class=\"pull-left sfx-clear-button\"\n >\n Clear All\n </button>\n </a>\n </ul>\n</div>\n", styles: [".sfx-filter-label{font-family:neuzeit_groteskbold;line-height:25px;margin-bottom:.27rem;margin-left:calc(.3rem + 1px)}.sfx-filter-dropdown{min-width:100%}.sfx-filter-dropdown hr{margin:0;border-top:none;height:1px;width:100%}.sfx-filter-dropdown button.dropdown-toggle.btn{width:calc(100% - .6rem);height:40px;background:transparent;border-color:#d0d0d0;color:#000;margin:.3rem;text-align:left;box-shadow:none;padding:10px 15px}.sfx-filter-dropdown button.dropdown-toggle.btn:before{color:#fff}.sfx-filter-dropdown button.dropdown-toggle.btn:disabled{opacity:1;background:#1d1d1d;border-color:#1d1d1d}.sfx-filter-dropdown button.dropdown-toggle.btn:disabled:before{color:#565656}.sfx-filter-dropdown i{position:absolute;right:12px;top:17px;transform:rotate(180deg);z-index:10;transition:linear .1s;font-size:18px}.sfx-filter-dropdown .dropdown-menu{box-shadow:0 10px 10px #0003;background:#fff;width:100%;border:none;max-height:280px;overflow-y:scroll;padding:0 0 10px;margin:0;border-radius:0}.sfx-filter-dropdown .dropdown-menu li a.dropdown-item{padding:.625rem 1.25rem;color:#000;font-family:neuzeit_groteskbold,sans-serif;word-break:break-word;white-space:normal}.sfx-filter-dropdown .dropdown-menu li a.dropdown-item:hover{background:#000;color:#fff}.sfx-filter-dropdown ::-webkit-scrollbar{width:10px}.sfx-filter-dropdown ::-webkit-scrollbar-track{background:#fff}.sfx-filter-dropdown ::-webkit-scrollbar-thumb{background:#d4d4d4;border-radius:4px}.sfx-filter-dropdown ::-webkit-scrollbar-thumb:hover{background:#555}.sfx-filter-dropdown.btn-group.open{background:#fff;box-shadow:0 10px 10px #0003}.sfx-filter-dropdown.btn-group.open i{transform:rotate(0);color:#fff}.sfx-filter-dropdown.btn-group.open hr{margin:0;border-top:1px solid #d0d0d0;width:100%;height:0}.sfx-filter-dropdown.btn-group.open button.dropdown-toggle.btn{background:#000;color:#fff;border-color:#000}.sfx-filter-dropdown .sfx-clear-button{background:transparent;border:none;color:#000;font-family:neuzeit_groteskbold;padding:15px 20px 26px}.is-inverse.sfx-filter-label{color:#fff}.is-inverse button.dropdown-toggle.btn{color:#fff;border-color:#565656}.is-inverse i{color:#fff}.sfx-pb-0{padding-bottom:0!important}.requiredField{color:red!important}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1$1.BsDropdownDirective, selector: "[bsDropdown],[dropdown]", inputs: ["autoClose", "isAnimated", "insideClick", "isDisabled", "isOpen", "placement", "triggers", "container", "dropup"], outputs: ["onShown", "onHidden", "isOpenChange"], exportAs: ["bs-dropdown"] }, { type: i1$1.BsDropdownToggleDirective, selector: "[bsDropdownToggle],[dropdownToggle]", exportAs: ["bs-dropdown-toggle"] }, { type: i1$1.BsDropdownMenuDirective, selector: "[bsDropdownMenu],[dropdownMenu]", exportAs: ["bs-dropdown-menu"] }, { type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
775
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputDropdownComponent, decorators: [{
776
+ type: Component,
777
+ args: [{ selector: 'symphony-input-dropdown', template: "<div\n *ngIf=\"inputDropdownListModel.componentHeading\"\n class=\"sfx-filter-label sfx-d-inline-block\"\n [ngClass]=\"{ 'is-inverse': isInverse }\"\n>\n {{ inputDropdownListModel.componentHeading }}\n <span class=\"requiredField\" *ngIf=\"isRequired\">*</span>\n</div>\n<div\n class=\"btn-group sfx-filter-dropdown sfx-d-inline-block\"\n [ngClass]=\"{ 'is-inverse': isInverse }\"\n [isDisabled]=\"disableBtn\"\n dropdown\n>\n <button\n id=\"moreDrop\"\n dropdownToggle\n type=\"button\"\n class=\"btn dropdown-toggle\"\n aria-controls=\"dropdown-basic\"\n >\n {{ inputDropdownListModel.selectedName }}\n </button>\n <i *ngIf=\"!disableBtn\" class=\"si-arrow-hide-reveal\"></i>\n <hr />\n <ul\n id=\"dropdown-basic\"\n *dropdownMenu\n class=\"dropdown-menu\"\n role=\"menu\"\n aria-labelledby=\"moreDrop\"\n [ngClass]=\"{ 'sfx-pb-0': inputDropdownListModel.showClearButton === true }\"\n >\n <li\n *ngFor=\"let action of inputDropdownListModel.dropdownList\"\n [ngClass]=\"{ disabled: action.isDisabled }\"\n (click)=\"itemClick(action)\"\n >\n <a class=\"dropdown-item\" href=\"javascript:;\">{{ action.name }}</a>\n </li>\n <div\n *ngIf=\"inputDropdownListModel.showClearButton\"\n class=\"divider dropdown-divider\"\n ></div>\n <a\n class=\"sfx-filter-item-footer\"\n *ngIf=\"inputDropdownListModel.showClearButton\"\n >\n <button\n type=\"button\"\n (click)=\"onClearSelection()\"\n class=\"pull-left sfx-clear-button\"\n >\n Clear All\n </button>\n </a>\n </ul>\n</div>\n", styles: [".sfx-filter-label{font-family:neuzeit_groteskbold;line-height:25px;margin-bottom:.27rem;margin-left:calc(.3rem + 1px)}.sfx-filter-dropdown{min-width:100%}.sfx-filter-dropdown hr{margin:0;border-top:none;height:1px;width:100%}.sfx-filter-dropdown button.dropdown-toggle.btn{width:calc(100% - .6rem);height:40px;background:transparent;border-color:#d0d0d0;color:#000;margin:.3rem;text-align:left;box-shadow:none;padding:10px 15px}.sfx-filter-dropdown button.dropdown-toggle.btn:before{color:#fff}.sfx-filter-dropdown button.dropdown-toggle.btn:disabled{opacity:1;background:#1d1d1d;border-color:#1d1d1d}.sfx-filter-dropdown button.dropdown-toggle.btn:disabled:before{color:#565656}.sfx-filter-dropdown i{position:absolute;right:12px;top:17px;transform:rotate(180deg);z-index:10;transition:linear .1s;font-size:18px}.sfx-filter-dropdown .dropdown-menu{box-shadow:0 10px 10px #0003;background:#fff;width:100%;border:none;max-height:280px;overflow-y:scroll;padding:0 0 10px;margin:0;border-radius:0}.sfx-filter-dropdown .dropdown-menu li a.dropdown-item{padding:.625rem 1.25rem;color:#000;font-family:neuzeit_groteskbold,sans-serif;word-break:break-word;white-space:normal}.sfx-filter-dropdown .dropdown-menu li a.dropdown-item:hover{background:#000;color:#fff}.sfx-filter-dropdown ::-webkit-scrollbar{width:10px}.sfx-filter-dropdown ::-webkit-scrollbar-track{background:#fff}.sfx-filter-dropdown ::-webkit-scrollbar-thumb{background:#d4d4d4;border-radius:4px}.sfx-filter-dropdown ::-webkit-scrollbar-thumb:hover{background:#555}.sfx-filter-dropdown.btn-group.open{background:#fff;box-shadow:0 10px 10px #0003}.sfx-filter-dropdown.btn-group.open i{transform:rotate(0);color:#fff}.sfx-filter-dropdown.btn-group.open hr{margin:0;border-top:1px solid #d0d0d0;width:100%;height:0}.sfx-filter-dropdown.btn-group.open button.dropdown-toggle.btn{background:#000;color:#fff;border-color:#000}.sfx-filter-dropdown .sfx-clear-button{background:transparent;border:none;color:#000;font-family:neuzeit_groteskbold;padding:15px 20px 26px}.is-inverse.sfx-filter-label{color:#fff}.is-inverse button.dropdown-toggle.btn{color:#fff;border-color:#565656}.is-inverse i{color:#fff}.sfx-pb-0{padding-bottom:0!important}.requiredField{color:red!important}\n"] }]
778
+ }], ctorParameters: function () { return []; }, propDecorators: { inputDropdownListModel: [{
779
+ type: Input
780
+ }], disableBtn: [{
781
+ type: Input
782
+ }], isInverse: [{
783
+ type: Input
784
+ }], isRequired: [{
785
+ type: Input
786
+ }], selectItem: [{
787
+ type: Output
788
+ }], clearSelection: [{
789
+ type: Output
790
+ }] } });
791
+
792
+ class InputDropdownModule {
793
+ }
794
+ InputDropdownModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputDropdownModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
795
+ InputDropdownModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputDropdownModule, declarations: [InputDropdownComponent], imports: [i1$1.BsDropdownModule, CommonModule], exports: [InputDropdownComponent] });
796
+ InputDropdownModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputDropdownModule, imports: [[
797
+ BsDropdownModule.forRoot(), CommonModule
798
+ ]] });
799
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputDropdownModule, decorators: [{
800
+ type: NgModule,
801
+ args: [{
802
+ declarations: [InputDropdownComponent],
803
+ imports: [
804
+ BsDropdownModule.forRoot(), CommonModule
805
+ ],
806
+ exports: [InputDropdownComponent]
807
+ }]
808
+ }] });
809
+
810
+ class FilterAreaComponent {
811
+ constructor() { }
812
+ }
813
+ FilterAreaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FilterAreaComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
814
+ FilterAreaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: FilterAreaComponent, selector: "symphony-filter-area", ngImport: i0, template: "<div class=\"sfx-filter-section\">\n <div class=\"sfx-border-bottom-mdm-black-1 sfx-mb-20 sfx-pb-20 sfx-mt-10 sfx-d-inline-block sfx-wid-100\">\n <ng-content select=\"[title]\"></ng-content>\n <div class=\"sfx-d-inline-block sfx-ml-10 pull-right\">\n <ng-content select=\"[actions]\"></ng-content>\n </div>\n </div>\n <div class=\"row\">\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-1]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-2]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-3]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-4]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-5]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-6]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6 sfx-mb-25\">\n <ng-content select=\"[filter-7]\"></ng-content>\n </div>\n </div>\n</div>", styles: [".sfx-filter-section{background:#000000;color:#fff;padding:1.875rem 2.5rem}\n"] });
815
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FilterAreaComponent, decorators: [{
816
+ type: Component,
817
+ args: [{ selector: 'symphony-filter-area', template: "<div class=\"sfx-filter-section\">\n <div class=\"sfx-border-bottom-mdm-black-1 sfx-mb-20 sfx-pb-20 sfx-mt-10 sfx-d-inline-block sfx-wid-100\">\n <ng-content select=\"[title]\"></ng-content>\n <div class=\"sfx-d-inline-block sfx-ml-10 pull-right\">\n <ng-content select=\"[actions]\"></ng-content>\n </div>\n </div>\n <div class=\"row\">\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-1]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-2]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-3]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-4]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-5]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-6]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6 sfx-mb-25\">\n <ng-content select=\"[filter-7]\"></ng-content>\n </div>\n </div>\n</div>", styles: [".sfx-filter-section{background:#000000;color:#fff;padding:1.875rem 2.5rem}\n"] }]
818
+ }], ctorParameters: function () { return []; } });
819
+
820
+ class FilterAreaModule {
821
+ }
822
+ FilterAreaModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FilterAreaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
823
+ FilterAreaModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FilterAreaModule, declarations: [FilterAreaComponent], imports: [CommonModule], exports: [FilterAreaComponent] });
824
+ FilterAreaModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FilterAreaModule, imports: [[CommonModule]] });
825
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FilterAreaModule, decorators: [{
826
+ type: NgModule,
827
+ args: [{
828
+ declarations: [FilterAreaComponent],
829
+ imports: [CommonModule],
830
+ exports: [FilterAreaComponent]
831
+ }]
832
+ }] });
833
+
834
+ class TwoColumnFilterAreaComponent {
835
+ constructor() { }
836
+ }
837
+ TwoColumnFilterAreaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TwoColumnFilterAreaComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
838
+ TwoColumnFilterAreaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: TwoColumnFilterAreaComponent, selector: "symphony-two-column-filter-area", inputs: { height: "height" }, ngImport: i0, template: "<section class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12 sfx-mb-30 sfx-p-0\">\n <div class=\"sfx-filter-section\" [ngStyle]=\"{ height: height }\">\n <div class=\"row\">\n <!-- select dropdown for event type -->\n <div class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6 sfx-filter-items-wrap\">\n <ng-content select=\"[filter-one]\"></ng-content>\n </div>\n\n <!-- search component -->\n <div class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6 sfx-filter-items-wrap\">\n <ng-content select=\"[filter-two]\"></ng-content>\n </div>\n </div>\n </div>\n</section>\n", styles: [".sfx-filter-section{background-color:#000;padding:2.625rem 1.875rem 2.825rem}.sfx-filter-items-wrap{padding:0 .6375rem}\n"], directives: [{ type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
839
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TwoColumnFilterAreaComponent, decorators: [{
840
+ type: Component,
841
+ args: [{ selector: 'symphony-two-column-filter-area', template: "<section class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12 sfx-mb-30 sfx-p-0\">\n <div class=\"sfx-filter-section\" [ngStyle]=\"{ height: height }\">\n <div class=\"row\">\n <!-- select dropdown for event type -->\n <div class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6 sfx-filter-items-wrap\">\n <ng-content select=\"[filter-one]\"></ng-content>\n </div>\n\n <!-- search component -->\n <div class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6 sfx-filter-items-wrap\">\n <ng-content select=\"[filter-two]\"></ng-content>\n </div>\n </div>\n </div>\n</section>\n", styles: [".sfx-filter-section{background-color:#000;padding:2.625rem 1.875rem 2.825rem}.sfx-filter-items-wrap{padding:0 .6375rem}\n"] }]
842
+ }], ctorParameters: function () { return []; }, propDecorators: { height: [{
843
+ type: Input
844
+ }] } });
845
+
846
+ class TwoColumnFilterAreaModule {
847
+ }
848
+ TwoColumnFilterAreaModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TwoColumnFilterAreaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
849
+ TwoColumnFilterAreaModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TwoColumnFilterAreaModule, declarations: [TwoColumnFilterAreaComponent], imports: [CommonModule], exports: [TwoColumnFilterAreaComponent] });
850
+ TwoColumnFilterAreaModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TwoColumnFilterAreaModule, imports: [[CommonModule]] });
851
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TwoColumnFilterAreaModule, decorators: [{
852
+ type: NgModule,
853
+ args: [{
854
+ declarations: [TwoColumnFilterAreaComponent],
855
+ imports: [CommonModule],
856
+ exports: [TwoColumnFilterAreaComponent],
857
+ }]
858
+ }] });
859
+
860
+ var ActivityScoreLevel;
861
+ (function (ActivityScoreLevel) {
862
+ ActivityScoreLevel["Low"] = "low";
863
+ ActivityScoreLevel["Medium"] = "medium";
864
+ ActivityScoreLevel["High"] = "high";
865
+ ActivityScoreLevel["Empty"] = "empty";
866
+ })(ActivityScoreLevel || (ActivityScoreLevel = {}));
867
+
868
+ class ContactActivityScoreComponent {
869
+ constructor() {
870
+ this.contactActivityScoreModel = { activityScore: ActivityScoreLevel.Low };
871
+ this.contact = { candidateScoreActivityScore: 0 };
872
+ }
873
+ refresh(params) {
874
+ return true;
875
+ }
876
+ agInit(params) {
877
+ this.contact = params.data;
878
+ if (!this.contact.header5) {
879
+ this.dataAvailable = 'N/A';
880
+ }
881
+ else {
882
+ this.dataAvailable = this.contact.header5;
883
+ }
884
+ switch (true) {
885
+ case this.contact.header5 >= 0 && this.contact.header5 < 34: {
886
+ this.contactActivityScoreModel.activityScore = ActivityScoreLevel.Low;
887
+ break;
888
+ }
889
+ case this.contact.header5 >= 34 && this.contact.header5 <= 66: {
890
+ this.contactActivityScoreModel.activityScore =
891
+ ActivityScoreLevel.Medium;
892
+ break;
893
+ }
894
+ case this.contact.header5 > 66: {
895
+ this.contactActivityScoreModel.activityScore = ActivityScoreLevel.High;
896
+ break;
897
+ }
898
+ default: {
899
+ this.contactActivityScoreModel.activityScore = ActivityScoreLevel.Empty;
900
+ break;
901
+ }
902
+ }
903
+ }
904
+ }
905
+ ContactActivityScoreComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContactActivityScoreComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
906
+ ContactActivityScoreComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ContactActivityScoreComponent, selector: "symphony-contact-activity-score", ngImport: i0, template: "<span\n class=\"activity-score-bg activity-score-{{\n contactActivityScoreModel.activityScore\n }}\"\n>\n <div class=\"activity-score-content\">{{ dataAvailable }}</div>\n</span>\n", styles: [".activity-score-bg{height:38px;width:38px;background-color:#bbb;border-radius:50%;display:inline-block;color:#fff;text-align:center}.activity-score-bg.activity-score-high{background-color:#00bb5b}.activity-score-bg.activity-score-medium{background-color:#f57300}.activity-score-bg.activity-score-low{background-color:#d60000}.activity-score-bg.activity-score-empty{background-color:#fff;color:#000!important}\n"] });
907
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContactActivityScoreComponent, decorators: [{
908
+ type: Component,
909
+ args: [{ selector: 'symphony-contact-activity-score', template: "<span\n class=\"activity-score-bg activity-score-{{\n contactActivityScoreModel.activityScore\n }}\"\n>\n <div class=\"activity-score-content\">{{ dataAvailable }}</div>\n</span>\n", styles: [".activity-score-bg{height:38px;width:38px;background-color:#bbb;border-radius:50%;display:inline-block;color:#fff;text-align:center}.activity-score-bg.activity-score-high{background-color:#00bb5b}.activity-score-bg.activity-score-medium{background-color:#f57300}.activity-score-bg.activity-score-low{background-color:#d60000}.activity-score-bg.activity-score-empty{background-color:#fff;color:#000!important}\n"] }]
910
+ }], ctorParameters: function () { return []; } });
911
+
912
+ class EventSettingsMoreOptionsComponent {
913
+ constructor() {
914
+ this.agGridParams = {};
915
+ this.moreOptions = {
916
+ items: ['Edit', 'Set as Default'],
917
+ hasBorder: false,
918
+ };
919
+ }
920
+ refresh(params) {
921
+ return true;
922
+ }
923
+ agInit(params) {
924
+ this.agGridParams = params;
925
+ }
926
+ onItemClick(item) {
927
+ const action = {
928
+ item,
929
+ row: this.agGridParams,
930
+ };
931
+ this.agGridParams.itemClick(action);
932
+ }
933
+ }
934
+ EventSettingsMoreOptionsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventSettingsMoreOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
935
+ EventSettingsMoreOptionsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: EventSettingsMoreOptionsComponent, selector: "symphony-event-settings-more-options", ngImport: i0, template: "<symphony-contextual-menu\n class=\"more-options\"\n *ngIf=\"moreOptions.items && moreOptions.items.length > 0\"\n [model]=\"moreOptions\"\n (itemClick)=\"onItemClick($event)\"\n>\n</symphony-contextual-menu>\n", components: [{ type: ContextualMenuComponent, selector: "symphony-contextual-menu", inputs: ["model"], outputs: ["itemClick"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
936
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventSettingsMoreOptionsComponent, decorators: [{
937
+ type: Component,
938
+ args: [{ selector: 'symphony-event-settings-more-options', template: "<symphony-contextual-menu\n class=\"more-options\"\n *ngIf=\"moreOptions.items && moreOptions.items.length > 0\"\n [model]=\"moreOptions\"\n (itemClick)=\"onItemClick($event)\"\n>\n</symphony-contextual-menu>\n" }]
939
+ }], ctorParameters: function () { return []; } });
940
+
941
+ class InputToggleComponent {
942
+ constructor() {
943
+ this.toggleClick = new EventEmitter();
944
+ }
945
+ toggleClicked() {
946
+ this.isToggled = !this.isToggled;
947
+ this.toggleClick.emit(this.isToggled);
948
+ }
949
+ }
950
+ InputToggleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputToggleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
951
+ InputToggleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: InputToggleComponent, selector: "symphony-input-toggle", inputs: { isToggled: "isToggled", isInverse: "isInverse" }, outputs: { toggleClick: "toggleClick" }, ngImport: i0, template: "<label class=\"switch\">\n <input\n aria-label=\"toggle-active-state\"\n [checked]=\"isToggled\"\n type=\"checkbox\"\n (click)=\"toggleClicked()\"\n [ngClass]=\"{ 'is-inverse': isInverse }\"\n />\n <span class=\"slider round\"></span>\n</label>\n", styles: [".switch{position:relative;vertical-align:middle;display:inline-block;width:30px;height:14px}.switch input{opacity:0;width:0;height:0}.slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#ccc;transition:.4s}.slider:before{position:absolute;content:\"\";height:10px;width:10px;left:2px;bottom:2px;background-color:#fff;transition:.4s}.slider.round{border-radius:16px}.slider.round.round:before{border-radius:50%}input:checked+.slider{background-color:#000}input:checked+.slider:before{transform:translate(15px)}input:focus+.slider{box-shadow:0 0 1px #2196f3}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
952
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputToggleComponent, decorators: [{
953
+ type: Component,
954
+ args: [{ selector: 'symphony-input-toggle', template: "<label class=\"switch\">\n <input\n aria-label=\"toggle-active-state\"\n [checked]=\"isToggled\"\n type=\"checkbox\"\n (click)=\"toggleClicked()\"\n [ngClass]=\"{ 'is-inverse': isInverse }\"\n />\n <span class=\"slider round\"></span>\n</label>\n", styles: [".switch{position:relative;vertical-align:middle;display:inline-block;width:30px;height:14px}.switch input{opacity:0;width:0;height:0}.slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#ccc;transition:.4s}.slider:before{position:absolute;content:\"\";height:10px;width:10px;left:2px;bottom:2px;background-color:#fff;transition:.4s}.slider.round{border-radius:16px}.slider.round.round:before{border-radius:50%}input:checked+.slider{background-color:#000}input:checked+.slider:before{transform:translate(15px)}input:focus+.slider{box-shadow:0 0 1px #2196f3}\n"] }]
955
+ }], ctorParameters: function () { return []; }, propDecorators: { isToggled: [{
956
+ type: Input
957
+ }], isInverse: [{
958
+ type: Input
959
+ }], toggleClick: [{
960
+ type: Output
961
+ }] } });
962
+
963
+ class GridToggleCellRendererComponent {
964
+ refresh(params) {
965
+ return true;
966
+ }
967
+ agInit(params) {
968
+ this.params = params;
969
+ }
970
+ toggleClickedHandler(isToggled) {
971
+ const model = {
972
+ isToggled,
973
+ row: this.params,
974
+ };
975
+ this.params.clicked(model);
976
+ }
977
+ }
978
+ GridToggleCellRendererComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridToggleCellRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
979
+ GridToggleCellRendererComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: GridToggleCellRendererComponent, selector: "symphony-grid-toggle-cell-renderer", ngImport: i0, template: "<symphony-input-toggle\n [isToggled]=\"params.data[params.colDef.field]\"\n (toggleClick)=\"toggleClickedHandler($event)\"\n></symphony-input-toggle>\n", components: [{ type: InputToggleComponent, selector: "symphony-input-toggle", inputs: ["isToggled", "isInverse"], outputs: ["toggleClick"] }] });
980
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridToggleCellRendererComponent, decorators: [{
981
+ type: Component,
982
+ args: [{ selector: 'symphony-grid-toggle-cell-renderer', template: "<symphony-input-toggle\n [isToggled]=\"params.data[params.colDef.field]\"\n (toggleClick)=\"toggleClickedHandler($event)\"\n></symphony-input-toggle>\n" }]
983
+ }] });
984
+
985
+ var RelevanceScoreLevel;
986
+ (function (RelevanceScoreLevel) {
987
+ RelevanceScoreLevel["Value"] = "value";
988
+ RelevanceScoreLevel["Empty"] = "empty";
989
+ })(RelevanceScoreLevel || (RelevanceScoreLevel = {}));
990
+
991
+ class RelevanceScoreComponent {
992
+ constructor() {
993
+ this.relevanceScoreModel = { relevanceScore: RelevanceScoreLevel.Empty };
994
+ this.contact = { relevanceScore: 0 };
995
+ }
996
+ refresh(params) {
997
+ return true;
998
+ }
999
+ agInit(params) {
1000
+ this.contact = params.data;
1001
+ if (this.contact) {
1002
+ if (this.contact.header4 || this.contact.header4 === 0) {
1003
+ this.relevanceData = this.contact.header4;
1004
+ this.relevanceScoreModel.relevanceScore = RelevanceScoreLevel.Value;
1005
+ }
1006
+ else {
1007
+ this.relevanceData = 'N/A';
1008
+ }
1009
+ }
1010
+ }
1011
+ }
1012
+ RelevanceScoreComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: RelevanceScoreComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1013
+ RelevanceScoreComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: RelevanceScoreComponent, selector: "symphony-relevance-score", ngImport: i0, template: "<span class=\"relevance-score-bg relevance-score-{{ relevanceScoreModel.relevanceScore }}\">\n <div class=\"relevance-score-content\">{{ relevanceData}}</div>\n</span>", styles: [".relevance-score-bg{height:38px;width:38px;background-color:#fff;border-radius:50%;display:inline-block;color:#000;text-align:center}.relevance-score-value{border:1px solid black;font-weight:700}\n"] });
1014
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: RelevanceScoreComponent, decorators: [{
1015
+ type: Component,
1016
+ args: [{ selector: 'symphony-relevance-score', template: "<span class=\"relevance-score-bg relevance-score-{{ relevanceScoreModel.relevanceScore }}\">\n <div class=\"relevance-score-content\">{{ relevanceData}}</div>\n</span>", styles: [".relevance-score-bg{height:38px;width:38px;background-color:#fff;border-radius:50%;display:inline-block;color:#000;text-align:center}.relevance-score-value{border:1px solid black;font-weight:700}\n"] }]
1017
+ }], ctorParameters: function () { return []; } });
1018
+
1019
+ class GridComponent {
1020
+ constructor() {
1021
+ this.rowHeightPage = 80;
1022
+ this.gridHeight = 100;
1023
+ this.frameworkComponents = this.getFrameworkComponents();
1024
+ this.getRowHeight = () => {
1025
+ return this.rowHeightPage;
1026
+ };
1027
+ }
1028
+ onGridReady(gridReadyEvent) {
1029
+ gridReadyEvent.api.sizeColumnsToFit();
1030
+ }
1031
+ getFrameworkComponents() {
1032
+ return {
1033
+ contactActivityScore: ContactActivityScoreComponent,
1034
+ fitScore: RelevanceScoreComponent,
1035
+ gridToggle: GridToggleCellRendererComponent,
1036
+ moreActions: EventSettingsMoreOptionsComponent,
1037
+ };
1038
+ }
1039
+ }
1040
+ GridComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1041
+ GridComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: GridComponent, selector: "symphony-grid", inputs: { columnDefs: "columnDefs", rowData: "rowData" }, ngImport: i0, template: "<ag-grid-angular\n style=\"width: 100%\"\n class=\"ag-theme-alpine\"\n [rowData]=\"rowData\"\n [columnDefs]=\"columnDefs\"\n (gridReady)=\"onGridReady($event)\"\n [style.height.vh]=\"gridHeight\"\n [getRowHeight]=\"getRowHeight\"\n [frameworkComponents]=\"frameworkComponents\"\n>\n</ag-grid-angular>\n", styles: [""], components: [{ type: i1$2.AgGridAngular, selector: "ag-grid-angular", inputs: ["alignedGrids", "rowData", "columnDefs", "excelStyles", "pinnedTopRowData", "pinnedBottomRowData", "chartThemes", "components", "frameworkComponents", "rowStyle", "context", "autoGroupColumnDef", "localeText", "icons", "datasource", "serverSideDatasource", "viewportDatasource", "groupRowRendererParams", "aggFuncs", "fullWidthCellRendererParams", "defaultColGroupDef", "defaultColDef", "defaultExportParams", "columnTypes", "rowClassRules", "detailGridOptions", "detailCellRendererParams", "loadingCellRendererParams", "loadingOverlayComponentParams", "noRowsOverlayComponentParams", "popupParent", "colResizeDefault", "reduxStore", "statusBar", "sideBar", "chartThemeOverrides", "customChartThemes", "sortingOrder", "rowClass", "rowSelection", "overlayLoadingTemplate", "overlayNoRowsTemplate", "quickFilterText", "rowModelType", "editType", "domLayout", "clipboardDeliminator", "rowGroupPanelShow", "multiSortKey", "pivotColumnGroupTotals", "pivotRowTotals", "pivotPanelShow", "fillHandleDirection", "rowHeight", "detailRowHeight", "rowBuffer", "colWidth", "headerHeight", "groupHeaderHeight", "floatingFiltersHeight", "pivotHeaderHeight", "pivotGroupHeaderHeight", "groupDefaultExpanded", "minColWidth", "maxColWidth", "viewportRowModelPageSize", "viewportRowModelBufferSize", "autoSizePadding", "maxBlocksInCache", "maxConcurrentDatasourceRequests", "tooltipShowDelay", "cacheOverflowSize", "paginationPageSize", "cacheBlockSize", "infiniteInitialRowCount", "scrollbarWidth", "batchUpdateWaitMillis", "asyncTransactionWaitMillis", "blockLoadDebounceMillis", "keepDetailRowsCount", "undoRedoCellEditingLimit", "cellFlashDelay", "cellFadeDelay", "localeTextFunc", "groupRowInnerRenderer", "groupRowInnerRendererFramework", "dateComponent", "dateComponentFramework", "groupRowRenderer", "groupRowRendererFramework", "isExternalFilterPresent", "getRowHeight", "doesExternalFilterPass", "getRowClass", "getRowStyle", "getRowClassRules", "traverseNode", "getContextMenuItems", "getMainMenuItems", "processRowPostCreate", "processCellForClipboard", "groupRowAggNodes", "getRowNodeId", "isFullWidthCell", "fullWidthCellRenderer", "fullWidthCellRendererFramework", "processSecondaryColDef", "processSecondaryColGroupDef", "getBusinessKeyForNode", "sendToClipboard", "navigateToNextHeader", "tabToNextHeader", "navigateToNextCell", "tabToNextCell", "getDetailRowData", "processCellFromClipboard", "getDocument", "postProcessPopup", "getChildCount", "getDataPath", "loadingCellRenderer", "loadingCellRendererFramework", "loadingOverlayComponent", "loadingOverlayComponentFramework", "noRowsOverlayComponent", "noRowsOverlayComponentFramework", "detailCellRenderer", "detailCellRendererFramework", "defaultGroupSortComparator", "isRowMaster", "isRowSelectable", "postSort", "processHeaderForClipboard", "paginationNumberFormatter", "processDataFromClipboard", "getServerSideGroupKey", "isServerSideGroup", "suppressKeyboardEvent", "createChartContainer", "processChartOptions", "getChartToolbarItems", "fillOperation", "suppressMakeColumnVisibleAfterUnGroup", "suppressRowClickSelection", "suppressCellSelection", "suppressHorizontalScroll", "alwaysShowVerticalScroll", "debug", "enableBrowserTooltips", "enableCellExpressions", "angularCompileRows", "angularCompileFilters", "groupSuppressAutoColumn", "groupSelectsChildren", "groupIncludeFooter", "groupIncludeTotalFooter", "groupUseEntireRow", "groupSuppressBlankHeader", "suppressMenuHide", "suppressRowDeselection", "unSortIcon", "suppressMultiSort", "singleClickEdit", "suppressLoadingOverlay", "suppressNoRowsOverlay", "suppressAutoSize", "skipHeaderOnAutoSize", "suppressParentsInRowNodes", "suppressColumnMoveAnimation", "suppressMovableColumns", "suppressFieldDotNotation", "enableRangeSelection", "enableRangeHandle", "enableFillHandle", "suppressClearOnFillReduction", "deltaSort", "suppressTouch", "suppressAsyncEvents", "allowContextMenuWithControlKey", "suppressContextMenu", "rememberGroupStateWhenNewData", "enableCellChangeFlash", "suppressDragLeaveHidesColumns", "suppressMiddleClickScrolls", "suppressPreventDefaultOnMouseWheel", "suppressCopyRowsToClipboard", "copyHeadersToClipboard", "pivotMode", "suppressAggFuncInHeader", "suppressColumnVirtualisation", "suppressAggAtRootLevel", "suppressFocusAfterRefresh", "functionsPassive", "functionsReadOnly", "animateRows", "groupSelectsFiltered", "groupRemoveSingleChildren", "groupRemoveLowestSingleChildren", "enableRtl", "suppressClickEdit", "rowDragManaged", "suppressRowDrag", "suppressMoveWhenRowDragging", "enableMultiRowDragging", "enableGroupEdit", "embedFullWidthRows", "deprecatedEmbedFullWidthRows", "suppressPaginationPanel", "floatingFilter", "groupHideOpenParents", "groupMultiAutoColumn", "pagination", "stopEditingWhenGridLosesFocus", "paginationAutoPageSize", "suppressScrollOnNewData", "purgeClosedRowNodes", "cacheQuickFilter", "deltaRowDataMode", "ensureDomOrder", "accentedSort", "suppressChangeDetection", "valueCache", "valueCacheNeverExpires", "aggregateOnlyChangedColumns", "suppressAnimationFrame", "suppressExcelExport", "suppressCsvExport", "treeData", "masterDetail", "suppressMultiRangeSelection", "enterMovesDownAfterEdit", "enterMovesDown", "suppressPropertyNamesCheck", "rowMultiSelectWithClick", "suppressEnterpriseResetOnNewColumns", "enableOldSetFilterModel", "suppressRowHoverHighlight", "suppressRowTransform", "suppressClipboardPaste", "suppressLastEmptyLineOnPaste", "serverSideSortingAlwaysResets", "reactNext", "suppressSetColumnStateEvents", "suppressColumnStateEvents", "enableCharts", "deltaColumnMode", "suppressMaintainUnsortedOrder", "enableCellTextSelection", "suppressBrowserResizeObserver", "suppressMaxRenderedRowRestriction", "excludeChildrenWhenTreeDataFiltering", "tooltipMouseTrack", "keepDetailRows", "paginateChildRows", "preventDefaultOnContextMenu", "undoRedoCellEditing", "allowDragFromColumnsToolPanel", "immutableData", "immutableColumns", "pivotSuppressAutoColumn", "suppressExpandablePivotGroups", "applyColumnDefOrder", "debounceVerticalScrollbar", "detailRowAutoHeight", "gridOptions", "modules"], outputs: ["columnEverythingChanged", "newColumnsLoaded", "columnPivotModeChanged", "columnRowGroupChanged", "expandOrCollapseAll", "columnPivotChanged", "gridColumnsChanged", "columnValueChanged", "columnMoved", "columnVisible", "columnPinned", "columnGroupOpened", "columnResized", "displayedColumnsChanged", "virtualColumnsChanged", "rowGroupOpened", "rowDataChanged", "rowDataUpdated", "pinnedRowDataChanged", "rangeSelectionChanged", "chartCreated", "chartRangeSelectionChanged", "chartOptionsChanged", "chartDestroyed", "toolPanelVisibleChanged", "modelUpdated", "pasteStart", "pasteEnd", "fillStart", "fillEnd", "cellClicked", "cellDoubleClicked", "cellMouseDown", "cellContextMenu", "cellValueChanged", "rowValueChanged", "cellFocused", "rowSelected", "selectionChanged", "cellKeyDown", "cellKeyPress", "cellMouseOver", "cellMouseOut", "filterChanged", "filterModified", "filterOpened", "sortChanged", "virtualRowRemoved", "rowClicked", "rowDoubleClicked", "gridReady", "gridSizeChanged", "viewportChanged", "scrollbarWidthChanged", "firstDataRendered", "dragStarted", "dragStopped", "checkboxChanged", "rowEditingStarted", "rowEditingStopped", "cellEditingStarted", "cellEditingStopped", "bodyScroll", "animationQueueEmpty", "heightScaleChanged", "paginationChanged", "componentStateChanged", "bodyHeightChanged", "displayedColumnsWidthChanged", "scrollVisibilityChanged", "columnHoverChanged", "flashCells", "paginationPixelOffsetChanged", "rowDragEnter", "rowDragMove", "rowDragLeave", "rowDragEnd", "popupToFront", "columnRowGroupChangeRequest", "columnPivotChangeRequest", "columnValueChangeRequest", "columnAggFuncChangeRequest", "keyboardFocus", "mouseFocus"] }] });
1042
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridComponent, decorators: [{
1043
+ type: Component,
1044
+ args: [{ selector: 'symphony-grid', template: "<ag-grid-angular\n style=\"width: 100%\"\n class=\"ag-theme-alpine\"\n [rowData]=\"rowData\"\n [columnDefs]=\"columnDefs\"\n (gridReady)=\"onGridReady($event)\"\n [style.height.vh]=\"gridHeight\"\n [getRowHeight]=\"getRowHeight\"\n [frameworkComponents]=\"frameworkComponents\"\n>\n</ag-grid-angular>\n", styles: [""] }]
1045
+ }], ctorParameters: function () { return []; }, propDecorators: { columnDefs: [{
1046
+ type: Input
1047
+ }], rowData: [{
1048
+ type: Input
1049
+ }] } });
1050
+
1051
+ class ContactActivityScoreModule {
1052
+ }
1053
+ ContactActivityScoreModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContactActivityScoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1054
+ ContactActivityScoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContactActivityScoreModule, declarations: [ContactActivityScoreComponent], imports: [CommonModule] });
1055
+ ContactActivityScoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContactActivityScoreModule, imports: [[CommonModule]] });
1056
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContactActivityScoreModule, decorators: [{
1057
+ type: NgModule,
1058
+ args: [{
1059
+ declarations: [ContactActivityScoreComponent],
1060
+ imports: [CommonModule],
1061
+ }]
1062
+ }] });
1063
+
1064
+ class EventSettingsMoreOptionsModule {
1065
+ }
1066
+ EventSettingsMoreOptionsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventSettingsMoreOptionsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1067
+ EventSettingsMoreOptionsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventSettingsMoreOptionsModule, declarations: [EventSettingsMoreOptionsComponent], imports: [CommonModule, ContextualMenuModule], exports: [EventSettingsMoreOptionsComponent] });
1068
+ EventSettingsMoreOptionsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventSettingsMoreOptionsModule, imports: [[CommonModule, ContextualMenuModule]] });
1069
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventSettingsMoreOptionsModule, decorators: [{
1070
+ type: NgModule,
1071
+ args: [{
1072
+ declarations: [EventSettingsMoreOptionsComponent],
1073
+ imports: [CommonModule, ContextualMenuModule],
1074
+ exports: [EventSettingsMoreOptionsComponent],
1075
+ }]
1076
+ }] });
1077
+
1078
+ class InputToggleModule {
1079
+ }
1080
+ InputToggleModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputToggleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1081
+ InputToggleModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputToggleModule, declarations: [InputToggleComponent], imports: [CommonModule], exports: [InputToggleComponent] });
1082
+ InputToggleModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputToggleModule, imports: [[CommonModule]] });
1083
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputToggleModule, decorators: [{
1084
+ type: NgModule,
1085
+ args: [{
1086
+ declarations: [InputToggleComponent],
1087
+ imports: [CommonModule],
1088
+ exports: [InputToggleComponent],
1089
+ }]
1090
+ }] });
1091
+
1092
+ class GridToggleCellRendererModule {
1093
+ }
1094
+ GridToggleCellRendererModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridToggleCellRendererModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1095
+ GridToggleCellRendererModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridToggleCellRendererModule, declarations: [GridToggleCellRendererComponent], imports: [CommonModule, InputToggleModule], exports: [GridToggleCellRendererComponent] });
1096
+ GridToggleCellRendererModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridToggleCellRendererModule, imports: [[CommonModule, InputToggleModule]] });
1097
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridToggleCellRendererModule, decorators: [{
1098
+ type: NgModule,
1099
+ args: [{
1100
+ declarations: [GridToggleCellRendererComponent],
1101
+ imports: [CommonModule, InputToggleModule],
1102
+ exports: [GridToggleCellRendererComponent],
1103
+ }]
1104
+ }] });
1105
+
1106
+ class RelevanceScoreModule {
1107
+ }
1108
+ RelevanceScoreModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: RelevanceScoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1109
+ RelevanceScoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: RelevanceScoreModule, declarations: [RelevanceScoreComponent], imports: [CommonModule] });
1110
+ RelevanceScoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: RelevanceScoreModule, imports: [[CommonModule]] });
1111
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: RelevanceScoreModule, decorators: [{
1112
+ type: NgModule,
1113
+ args: [{
1114
+ declarations: [RelevanceScoreComponent],
1115
+ imports: [CommonModule],
1116
+ }]
1117
+ }] });
1118
+
1119
+ class FrameworkModule {
1120
+ }
1121
+ FrameworkModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FrameworkModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1122
+ FrameworkModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FrameworkModule, exports: [ContactActivityScoreModule,
1123
+ RelevanceScoreModule,
1124
+ GridToggleCellRendererModule,
1125
+ EventSettingsMoreOptionsModule] });
1126
+ FrameworkModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FrameworkModule, imports: [[], ContactActivityScoreModule,
1127
+ RelevanceScoreModule,
1128
+ GridToggleCellRendererModule,
1129
+ EventSettingsMoreOptionsModule] });
1130
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FrameworkModule, decorators: [{
1131
+ type: NgModule,
1132
+ args: [{
1133
+ declarations: [],
1134
+ imports: [],
1135
+ exports: [
1136
+ ContactActivityScoreModule,
1137
+ RelevanceScoreModule,
1138
+ GridToggleCellRendererModule,
1139
+ EventSettingsMoreOptionsModule,
1140
+ ],
1141
+ }]
1142
+ }] });
1143
+
1144
+ class GridModule {
1145
+ }
1146
+ GridModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1147
+ GridModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridModule, declarations: [GridComponent], imports: [CommonModule, i1$2.AgGridModule, FrameworkModule], exports: [GridComponent] });
1148
+ GridModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridModule, imports: [[CommonModule, AgGridModule.withComponents([]), FrameworkModule]] });
1149
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridModule, decorators: [{
1150
+ type: NgModule,
1151
+ args: [{
1152
+ declarations: [GridComponent],
1153
+ imports: [CommonModule, AgGridModule.withComponents([]), FrameworkModule],
1154
+ exports: [GridComponent]
1155
+ }]
1156
+ }] });
1157
+
1158
+ class SfxLoaderComponent {
1159
+ constructor() {
1160
+ this.leftStyle = 50;
1161
+ }
1162
+ }
1163
+ SfxLoaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxLoaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1164
+ SfxLoaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: SfxLoaderComponent, selector: "symphony-sfx-loader", inputs: { leftStyle: "leftStyle" }, ngImport: i0, template: "<div class=\"col-md-12 sfx-loader\" [style.left.%]=\"leftStyle\"></div>\n", styles: [".sfx-loader{z-index:10000;float:none;padding-top:5px;padding-bottom:5px;height:70px;width:50px;position:relative;padding-inline:0;transform:translate(-50%);display:inline-block;vertical-align:top}.sfx-loader:before{content:\" \";border:5px solid #000000;border-radius:50%;border-top:5px solid #ffffff;width:50px;height:50px;animation:sfxspin .5s linear infinite;position:absolute}\n"] });
1165
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxLoaderComponent, decorators: [{
1166
+ type: Component,
1167
+ args: [{ selector: 'symphony-sfx-loader', template: "<div class=\"col-md-12 sfx-loader\" [style.left.%]=\"leftStyle\"></div>\n", styles: [".sfx-loader{z-index:10000;float:none;padding-top:5px;padding-bottom:5px;height:70px;width:50px;position:relative;padding-inline:0;transform:translate(-50%);display:inline-block;vertical-align:top}.sfx-loader:before{content:\" \";border:5px solid #000000;border-radius:50%;border-top:5px solid #ffffff;width:50px;height:50px;animation:sfxspin .5s linear infinite;position:absolute}\n"] }]
1168
+ }], ctorParameters: function () { return []; }, propDecorators: { leftStyle: [{
1169
+ type: Input
1170
+ }] } });
1171
+
1172
+ class SfxLoaderModule {
1173
+ }
1174
+ SfxLoaderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxLoaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1175
+ SfxLoaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxLoaderModule, declarations: [SfxLoaderComponent], imports: [CommonModule], exports: [SfxLoaderComponent] });
1176
+ SfxLoaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxLoaderModule, imports: [[CommonModule]] });
1177
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxLoaderModule, decorators: [{
1178
+ type: NgModule,
1179
+ args: [{
1180
+ declarations: [SfxLoaderComponent],
1181
+ imports: [CommonModule],
1182
+ exports: [SfxLoaderComponent],
1183
+ }]
1184
+ }] });
1185
+
1186
+ class SfxPageLoaderComponent {
1187
+ constructor() { }
1188
+ }
1189
+ SfxPageLoaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxPageLoaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1190
+ SfxPageLoaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: SfxPageLoaderComponent, selector: "symphony-sfx-page-loader", ngImport: i0, template: "<div class=\"col-md-12 sfx-page-loader\"></div>\n", styles: [".sfx-page-loader{z-index:10000;float:none;height:100%;position:absolute;top:0}.sfx-page-loader:before{content:\" \";border:8px solid #000000;border-radius:50%;border-top:8px solid transparent;width:80px;height:80px;animation:sfxspin .5s linear infinite;position:fixed;z-index:2;left:50%;top:50%}.sfx-page-loader:after{content:\" \";position:fixed;top:0;left:0;width:100%;height:100%;z-index:1;background:rgba(255,255,255,.4)}\n"] });
1191
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxPageLoaderComponent, decorators: [{
1192
+ type: Component,
1193
+ args: [{ selector: 'symphony-sfx-page-loader', template: "<div class=\"col-md-12 sfx-page-loader\"></div>\n", styles: [".sfx-page-loader{z-index:10000;float:none;height:100%;position:absolute;top:0}.sfx-page-loader:before{content:\" \";border:8px solid #000000;border-radius:50%;border-top:8px solid transparent;width:80px;height:80px;animation:sfxspin .5s linear infinite;position:fixed;z-index:2;left:50%;top:50%}.sfx-page-loader:after{content:\" \";position:fixed;top:0;left:0;width:100%;height:100%;z-index:1;background:rgba(255,255,255,.4)}\n"] }]
1194
+ }], ctorParameters: function () { return []; } });
1195
+
1196
+ class SfxPageLoaderModule {
1197
+ }
1198
+ SfxPageLoaderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxPageLoaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1199
+ SfxPageLoaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxPageLoaderModule, declarations: [SfxPageLoaderComponent], imports: [CommonModule], exports: [SfxPageLoaderComponent] });
1200
+ SfxPageLoaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxPageLoaderModule, imports: [[CommonModule]] });
1201
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxPageLoaderModule, decorators: [{
1202
+ type: NgModule,
1203
+ args: [{
1204
+ declarations: [SfxPageLoaderComponent],
1205
+ imports: [CommonModule],
1206
+ exports: [SfxPageLoaderComponent],
1207
+ }]
1208
+ }] });
1209
+
1210
+ class SfxProgressBarComponent {
1211
+ constructor() { }
1212
+ }
1213
+ SfxProgressBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxProgressBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1214
+ SfxProgressBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: SfxProgressBarComponent, selector: "symphony-sfx-progress-bar", inputs: { progress: "progress" }, ngImport: i0, template: "<div class=\"progress sfx-progressBar\">\n <div\n class=\"progress-bar\"\n role=\"progressbar\"\n aria-valuenow=\"\"\n aria-valuemin=\"progress\"\n aria-valuemax=\"100\"\n [style.width.%]=\"progress\"\n >\n <span class=\"sr-only\">{{ progress }}% Complete</span>\n </div>\n</div>\n", styles: [".sfx-progressBar.progress{background-color:#fff;border-radius:10px}.sfx-progressBar.progress .progress-bar{background-color:#00d56b}\n"] });
1215
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxProgressBarComponent, decorators: [{
1216
+ type: Component,
1217
+ args: [{ selector: 'symphony-sfx-progress-bar', template: "<div class=\"progress sfx-progressBar\">\n <div\n class=\"progress-bar\"\n role=\"progressbar\"\n aria-valuenow=\"\"\n aria-valuemin=\"progress\"\n aria-valuemax=\"100\"\n [style.width.%]=\"progress\"\n >\n <span class=\"sr-only\">{{ progress }}% Complete</span>\n </div>\n</div>\n", styles: [".sfx-progressBar.progress{background-color:#fff;border-radius:10px}.sfx-progressBar.progress .progress-bar{background-color:#00d56b}\n"] }]
1218
+ }], ctorParameters: function () { return []; }, propDecorators: { progress: [{
1219
+ type: Input
1220
+ }] } });
1221
+
1222
+ class SfxProgressBarModule {
1223
+ }
1224
+ SfxProgressBarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxProgressBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1225
+ SfxProgressBarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxProgressBarModule, declarations: [SfxProgressBarComponent], imports: [CommonModule], exports: [SfxProgressBarComponent] });
1226
+ SfxProgressBarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxProgressBarModule, imports: [[CommonModule]] });
1227
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxProgressBarModule, decorators: [{
1228
+ type: NgModule,
1229
+ args: [{
1230
+ declarations: [SfxProgressBarComponent],
1231
+ imports: [CommonModule],
1232
+ exports: [SfxProgressBarComponent],
1233
+ }]
1234
+ }] });
1235
+
1236
+ class ToasterAlertComponent {
1237
+ constructor() {
1238
+ this.showAlert = false;
1239
+ this.hideAlert = new EventEmitter();
1240
+ this.checkBulkStatus = new EventEmitter();
1241
+ }
1242
+ ngOnInit() {
1243
+ this.showAlert = false;
1244
+ const alertDuration = this.alertModel.duration
1245
+ ? this.alertModel.duration
1246
+ : 3000;
1247
+ const delayDuration = this.alertModel.delay ? this.alertModel.delay : 0;
1248
+ this.timeToShowSubscription = timer(0)
1249
+ .pipe(delay(delayDuration))
1250
+ .subscribe((t) => {
1251
+ this.showAlert = true;
1252
+ this.alertTimerSubscription = timer(alertDuration).subscribe((f) => this.hideToasterAlert());
1253
+ });
1254
+ }
1255
+ hideToasterAlert() {
1256
+ this.hideAlert.emit();
1257
+ }
1258
+ onCheckBulkStatus() {
1259
+ this.checkBulkStatus.emit();
1260
+ }
1261
+ ngOnDestroy() {
1262
+ this.alertTimerSubscription?.unsubscribe();
1263
+ this.timeToShowSubscription?.unsubscribe();
1264
+ }
1265
+ }
1266
+ ToasterAlertComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToasterAlertComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1267
+ ToasterAlertComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ToasterAlertComponent, selector: "symphony-toaster-alert", inputs: { alertModel: "alertModel", showAlert: "showAlert" }, outputs: { hideAlert: "hideAlert", checkBulkStatus: "checkBulkStatus" }, ngImport: i0, template: "<div\n class=\"toaster-alert-container\"\n *ngIf=\"showAlert && alertModel\"\n [ngClass]=\"{\n success: alertModel.type === 1,\n warning: alertModel.type === 2,\n error: alertModel.type === 3\n }\"\n>\n <div class=\"sfx-p-20 row sfx-m-0\">\n <div class=\"col-xs-11 sfx-font-bold\">\n <div\n *ngIf=\"alertModel.showRefreshIcon\"\n class=\"sfx-d-inline-block pull-left sfx-mr-10\"\n >\n <span class=\"loader__dot sfx-icon-System sfx-txt-white\"></span>\n <span\n class=\"loader__dot sfx-icon-System sfx-txt-white sfx-ml-5 sfx-mr-5\"\n ></span>\n <span class=\"loader__dot sfx-icon-System sfx-txt-white\"></span>\n </div>\n <p\n class=\"sfx-mb-0\"\n [ngClass]=\"{ 'sfx-font-bold': alertModel.showRefreshIcon }\"\n >\n {{ alertModel.message }}\n </p>\n </div>\n\n <div class=\"col-xs-1 text-alert-close-icon hide\">\n <div (click)=\"hideToasterAlert()\">\n <i class=\"sfx-icon-Close_Outlined sfx-font24\"></i>\n </div>\n </div>\n <div\n *ngIf=\"alertModel.showRefreshIcon\"\n class=\"col-xs-1 text-alert-close-icon\"\n >\n <div (click)=\"onCheckBulkStatus()\">\n <i class=\"sfx-icon-Update sfx-font18\"></i>\n </div>\n </div>\n </div>\n</div>\n", styles: [".toaster-alert-container{width:100%;min-height:60px;color:#fff;z-index:100000000;position:fixed;top:0;left:0;padding-left:110px}.toaster-alert-container.success{background-color:#00d56b}.toaster-alert-container.warning{background-color:#ffa700}.toaster-alert-container.error{background-color:#f0001e}.text-alert-close-icon{text-align:right}.text-alert-close-icon:hover{cursor:pointer}.loader__dot{position:relative;animation:1s blink infinite}.loader__dot:before{content:\"\";display:inline-block;width:8px;height:8px;background:#ffffff;border-radius:50%}.loader__dot:nth-child(2){animation-delay:.2s}.loader__dot:nth-child(3){animation-delay:.3s}@keyframes blink{50%{opacity:.5}}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
1268
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToasterAlertComponent, decorators: [{
1269
+ type: Component,
1270
+ args: [{ selector: 'symphony-toaster-alert', template: "<div\n class=\"toaster-alert-container\"\n *ngIf=\"showAlert && alertModel\"\n [ngClass]=\"{\n success: alertModel.type === 1,\n warning: alertModel.type === 2,\n error: alertModel.type === 3\n }\"\n>\n <div class=\"sfx-p-20 row sfx-m-0\">\n <div class=\"col-xs-11 sfx-font-bold\">\n <div\n *ngIf=\"alertModel.showRefreshIcon\"\n class=\"sfx-d-inline-block pull-left sfx-mr-10\"\n >\n <span class=\"loader__dot sfx-icon-System sfx-txt-white\"></span>\n <span\n class=\"loader__dot sfx-icon-System sfx-txt-white sfx-ml-5 sfx-mr-5\"\n ></span>\n <span class=\"loader__dot sfx-icon-System sfx-txt-white\"></span>\n </div>\n <p\n class=\"sfx-mb-0\"\n [ngClass]=\"{ 'sfx-font-bold': alertModel.showRefreshIcon }\"\n >\n {{ alertModel.message }}\n </p>\n </div>\n\n <div class=\"col-xs-1 text-alert-close-icon hide\">\n <div (click)=\"hideToasterAlert()\">\n <i class=\"sfx-icon-Close_Outlined sfx-font24\"></i>\n </div>\n </div>\n <div\n *ngIf=\"alertModel.showRefreshIcon\"\n class=\"col-xs-1 text-alert-close-icon\"\n >\n <div (click)=\"onCheckBulkStatus()\">\n <i class=\"sfx-icon-Update sfx-font18\"></i>\n </div>\n </div>\n </div>\n</div>\n", styles: [".toaster-alert-container{width:100%;min-height:60px;color:#fff;z-index:100000000;position:fixed;top:0;left:0;padding-left:110px}.toaster-alert-container.success{background-color:#00d56b}.toaster-alert-container.warning{background-color:#ffa700}.toaster-alert-container.error{background-color:#f0001e}.text-alert-close-icon{text-align:right}.text-alert-close-icon:hover{cursor:pointer}.loader__dot{position:relative;animation:1s blink infinite}.loader__dot:before{content:\"\";display:inline-block;width:8px;height:8px;background:#ffffff;border-radius:50%}.loader__dot:nth-child(2){animation-delay:.2s}.loader__dot:nth-child(3){animation-delay:.3s}@keyframes blink{50%{opacity:.5}}\n"] }]
1271
+ }], ctorParameters: function () { return []; }, propDecorators: { alertModel: [{
1272
+ type: Input
1273
+ }], showAlert: [{
1274
+ type: Input
1275
+ }], hideAlert: [{
1276
+ type: Output
1277
+ }], checkBulkStatus: [{
1278
+ type: Output
1279
+ }] } });
1280
+
1281
+ class ToasterAlertModule {
1282
+ }
1283
+ ToasterAlertModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToasterAlertModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1284
+ ToasterAlertModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToasterAlertModule, declarations: [ToasterAlertComponent], imports: [CommonModule], exports: [ToasterAlertComponent] });
1285
+ ToasterAlertModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToasterAlertModule, imports: [[CommonModule]] });
1286
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToasterAlertModule, decorators: [{
1287
+ type: NgModule,
1288
+ args: [{
1289
+ declarations: [ToasterAlertComponent],
1290
+ imports: [CommonModule],
1291
+ exports: [ToasterAlertComponent],
1292
+ }]
1293
+ }] });
1294
+
1295
+ class AtomsModule {
1296
+ }
1297
+ AtomsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1298
+ AtomsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, exports: [ButtonModule,
1299
+ ContextualMenuModule,
1300
+ AvatarModule,
1301
+ PillModule,
1302
+ TaskIconModule,
1303
+ ColorSampleModule,
1304
+ H1Module,
1305
+ H2Module,
1306
+ H3Module,
1307
+ H4Module,
1308
+ H5Module,
1309
+ ParagraphModule,
1310
+ IconModule,
1311
+ IconWrapperModule,
1312
+ FilterAreaModule,
1313
+ TwoColumnFilterAreaModule,
1314
+ InputRadioModule,
1315
+ InputCheckboxModule,
1316
+ InputTextModule,
1317
+ InputDropdownModule,
1318
+ GridModule,
1319
+ ContactActivityScoreModule,
1320
+ RelevanceScoreModule,
1321
+ ToasterAlertModule,
1322
+ SfxLoaderModule,
1323
+ SfxPageLoaderModule,
1324
+ SfxProgressBarModule] });
1325
+ AtomsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, imports: [[], ButtonModule,
1326
+ ContextualMenuModule,
1327
+ AvatarModule,
1328
+ PillModule,
1329
+ TaskIconModule,
1330
+ ColorSampleModule,
1331
+ H1Module,
1332
+ H2Module,
1333
+ H3Module,
1334
+ H4Module,
1335
+ H5Module,
1336
+ ParagraphModule,
1337
+ IconModule,
1338
+ IconWrapperModule,
1339
+ FilterAreaModule,
1340
+ TwoColumnFilterAreaModule,
1341
+ InputRadioModule,
1342
+ InputCheckboxModule,
1343
+ InputTextModule,
1344
+ InputDropdownModule,
1345
+ GridModule,
1346
+ ContactActivityScoreModule,
1347
+ RelevanceScoreModule,
1348
+ ToasterAlertModule,
1349
+ SfxLoaderModule,
1350
+ SfxPageLoaderModule,
1351
+ SfxProgressBarModule] });
1352
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, decorators: [{
1353
+ type: NgModule,
1354
+ args: [{
1355
+ declarations: [],
1356
+ imports: [],
1357
+ exports: [
1358
+ ButtonModule,
1359
+ ContextualMenuModule,
1360
+ AvatarModule,
1361
+ PillModule,
1362
+ TaskIconModule,
1363
+ ColorSampleModule,
1364
+ H1Module,
1365
+ H2Module,
1366
+ H3Module,
1367
+ H4Module,
1368
+ H5Module,
1369
+ ParagraphModule,
1370
+ IconModule,
1371
+ IconWrapperModule,
1372
+ FilterAreaModule,
1373
+ TwoColumnFilterAreaModule,
1374
+ InputRadioModule,
1375
+ InputCheckboxModule,
1376
+ InputTextModule,
1377
+ InputDropdownModule,
1378
+ GridModule,
1379
+ ContactActivityScoreModule,
1380
+ RelevanceScoreModule,
1381
+ ToasterAlertModule,
1382
+ SfxLoaderModule,
1383
+ SfxPageLoaderModule,
1384
+ SfxProgressBarModule
1385
+ ],
1386
+ }]
1387
+ }] });
1388
+
1389
+ class BreadcrumbComponent {
1390
+ constructor() { }
1391
+ ngOnInit() {
1392
+ this.icon = Icons.ARROWNEXT;
1393
+ }
1394
+ }
1395
+ BreadcrumbComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: BreadcrumbComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1396
+ BreadcrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: BreadcrumbComponent, selector: "symphony-breadcrumb", inputs: { breadcrumbs: "breadcrumbs" }, ngImport: i0, template: "<div class=\"sfx-breadcrumb-wrapper\">\n <span\n class=\"breadcrumb-item\"\n *ngFor=\"let breadcrumb of breadcrumbs; let last = last\"\n >\n <symphony-h3 *ngIf=\"!last\"\n ><a\n class=\"sfx-cursor-pointer sfx-font30 sfx-txt-black\"\n href=\"{{ breadcrumb.link }}\"\n >{{ breadcrumb.label }}</a\n ></symphony-h3\n >\n <symphony-h3 *ngIf=\"last\">{{ breadcrumb.label }} </symphony-h3>\n\n <symphony-icon [icon]=\"icon\" [size]=\"'12px'\" *ngIf=\"!last\"></symphony-icon>\n </span>\n</div>\n", styles: [".sfx-breadcrumb-wrapper,.breadcrumb-item{display:flex}symphony-icon{padding:0 6px;top:9px;position:relative}\n"], components: [{ type: H3Component, selector: "symphony-h3", inputs: ["text", "isSecondary"] }, { type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size"], outputs: ["clicked"] }], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
1397
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: BreadcrumbComponent, decorators: [{
1398
+ type: Component,
1399
+ args: [{ selector: 'symphony-breadcrumb', template: "<div class=\"sfx-breadcrumb-wrapper\">\n <span\n class=\"breadcrumb-item\"\n *ngFor=\"let breadcrumb of breadcrumbs; let last = last\"\n >\n <symphony-h3 *ngIf=\"!last\"\n ><a\n class=\"sfx-cursor-pointer sfx-font30 sfx-txt-black\"\n href=\"{{ breadcrumb.link }}\"\n >{{ breadcrumb.label }}</a\n ></symphony-h3\n >\n <symphony-h3 *ngIf=\"last\">{{ breadcrumb.label }} </symphony-h3>\n\n <symphony-icon [icon]=\"icon\" [size]=\"'12px'\" *ngIf=\"!last\"></symphony-icon>\n </span>\n</div>\n", styles: [".sfx-breadcrumb-wrapper,.breadcrumb-item{display:flex}symphony-icon{padding:0 6px;top:9px;position:relative}\n"] }]
1400
+ }], ctorParameters: function () { return []; }, propDecorators: { breadcrumbs: [{
1401
+ type: Input
1402
+ }] } });
1403
+
1404
+ class BreadcrumbModule {
1405
+ }
1406
+ BreadcrumbModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: BreadcrumbModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1407
+ BreadcrumbModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: BreadcrumbModule, declarations: [BreadcrumbComponent], imports: [CommonModule, H3Module, IconModule], exports: [BreadcrumbComponent] });
1408
+ BreadcrumbModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: BreadcrumbModule, imports: [[CommonModule, H3Module, IconModule]] });
1409
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: BreadcrumbModule, decorators: [{
1410
+ type: NgModule,
1411
+ args: [{
1412
+ declarations: [BreadcrumbComponent],
1413
+ imports: [CommonModule, H3Module, IconModule],
1414
+ exports: [BreadcrumbComponent],
1415
+ }]
1416
+ }] });
1417
+
1418
+ class ColorSwatchComponent {
1419
+ constructor() {
1420
+ this.colorSwatchModel = {
1421
+ colorCode: '',
1422
+ sassCode: '',
1423
+ };
1424
+ }
1425
+ ngOnInit() {
1426
+ this.getDescription();
1427
+ }
1428
+ getDescription() {
1429
+ this.description = `${this.colorSwatchModel.colorCode} - ${this.colorSwatchModel.sassCode}`;
1430
+ return this.description;
1431
+ }
1432
+ }
1433
+ ColorSwatchComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1434
+ ColorSwatchComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ColorSwatchComponent, selector: "symphony-ui-color-explorer", inputs: { colorSwatchModel: "colorSwatchModel" }, ngImport: i0, template: "<div class=\"sfx-ui-color-explorer\">\n <symphony-color-sample\n [color]=\"colorSwatchModel.color\"\n ></symphony-color-sample>\n <symphony-h3\n [text]=\"colorSwatchModel.colorName\"\n ></symphony-h3>\n <symphony-paragraph [text]=\"description\"></symphony-paragraph>\n</div>\n", styles: [""], components: [{ type: ColorSampleComponent, selector: "symphony-color-sample", inputs: ["color"] }, { type: H3Component, selector: "symphony-h3", inputs: ["text", "isSecondary"] }, { type: ParagraphComponent, selector: "symphony-paragraph", inputs: ["text", "isSecondary"] }] });
1435
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchComponent, decorators: [{
1436
+ type: Component,
1437
+ args: [{ selector: 'symphony-ui-color-explorer', template: "<div class=\"sfx-ui-color-explorer\">\n <symphony-color-sample\n [color]=\"colorSwatchModel.color\"\n ></symphony-color-sample>\n <symphony-h3\n [text]=\"colorSwatchModel.colorName\"\n ></symphony-h3>\n <symphony-paragraph [text]=\"description\"></symphony-paragraph>\n</div>\n", styles: [""] }]
1438
+ }], ctorParameters: function () { return []; }, propDecorators: { colorSwatchModel: [{
1439
+ type: Input
1440
+ }] } });
1441
+
1442
+ class ColorSwatchModule {
1443
+ }
1444
+ ColorSwatchModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1445
+ ColorSwatchModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchModule, declarations: [ColorSwatchComponent], imports: [CommonModule,
1446
+ ColorSampleModule,
1447
+ H3Module,
1448
+ ParagraphModule], exports: [ColorSwatchComponent] });
1449
+ ColorSwatchModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchModule, imports: [[
1450
+ CommonModule,
1451
+ ColorSampleModule,
1452
+ H3Module,
1453
+ ParagraphModule
1454
+ ]] });
1455
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchModule, decorators: [{
1456
+ type: NgModule,
1457
+ args: [{
1458
+ declarations: [ColorSwatchComponent],
1459
+ imports: [
1460
+ CommonModule,
1461
+ ColorSampleModule,
1462
+ H3Module,
1463
+ ParagraphModule
1464
+ ],
1465
+ exports: [ColorSwatchComponent],
1466
+ }]
1467
+ }] });
1468
+
1469
+ class IconSwatchComponent {
1470
+ constructor() {
1471
+ this.iconSwatchModel = {
1472
+ iconName: '',
1473
+ iconClass: '',
1474
+ };
1475
+ }
1476
+ }
1477
+ IconSwatchComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconSwatchComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1478
+ IconSwatchComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: IconSwatchComponent, selector: "symphony-icon-swatch", inputs: { iconSwatchModel: "iconSwatchModel", isInverse: "isInverse" }, ngImport: i0, template: "<div class=\"sfx-icon-swatch\">\n <div\n class=\"sfx-icon-wrapper\"\n [ngClass]=\"{\n 'mt-0': iconSwatchModel.hasBorder\n }\"\n >\n <symphony-icon-wrapper\n *ngIf=\"iconSwatchModel.hasBorder\"\n [isInverse]=\"isInverse\"\n >\n <symphony-icon [icon]=\"iconSwatchModel.icon\"></symphony-icon>\n </symphony-icon-wrapper>\n <symphony-icon\n *ngIf=\"!iconSwatchModel.hasBorder\"\n [icon]=\"iconSwatchModel.icon\"\n ></symphony-icon>\n </div>\n <div class=\"sfx-icon-description-wrapper\">\n <symphony-h5 [text]=\"iconSwatchModel.iconName\"></symphony-h5>\n\n <symphony-paragraph [text]=\"iconSwatchModel.iconClass\"></symphony-paragraph>\n </div>\n</div>\n", styles: ["*{font-family:neuzeit-grotesk,sans-serif!important}.sfx-icon-wrapper{display:inline-block;vertical-align:top;margin-top:10px;margin-right:10px;text-align:center}.mt-0{margin-top:0}.sfx-icon-description-wrapper{display:inline-block}\n"], components: [{ type: IconWrapperComponent, selector: "symphony-icon-wrapper", inputs: ["isInverse"], outputs: ["clicked"] }, { type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size"], outputs: ["clicked"] }, { type: H5Component, selector: "symphony-h5", inputs: ["text", "isSecondary"] }, { type: ParagraphComponent, selector: "symphony-paragraph", inputs: ["text", "isSecondary"] }], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
1479
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconSwatchComponent, decorators: [{
1480
+ type: Component,
1481
+ args: [{ selector: 'symphony-icon-swatch', template: "<div class=\"sfx-icon-swatch\">\n <div\n class=\"sfx-icon-wrapper\"\n [ngClass]=\"{\n 'mt-0': iconSwatchModel.hasBorder\n }\"\n >\n <symphony-icon-wrapper\n *ngIf=\"iconSwatchModel.hasBorder\"\n [isInverse]=\"isInverse\"\n >\n <symphony-icon [icon]=\"iconSwatchModel.icon\"></symphony-icon>\n </symphony-icon-wrapper>\n <symphony-icon\n *ngIf=\"!iconSwatchModel.hasBorder\"\n [icon]=\"iconSwatchModel.icon\"\n ></symphony-icon>\n </div>\n <div class=\"sfx-icon-description-wrapper\">\n <symphony-h5 [text]=\"iconSwatchModel.iconName\"></symphony-h5>\n\n <symphony-paragraph [text]=\"iconSwatchModel.iconClass\"></symphony-paragraph>\n </div>\n</div>\n", styles: ["*{font-family:neuzeit-grotesk,sans-serif!important}.sfx-icon-wrapper{display:inline-block;vertical-align:top;margin-top:10px;margin-right:10px;text-align:center}.mt-0{margin-top:0}.sfx-icon-description-wrapper{display:inline-block}\n"] }]
1482
+ }], ctorParameters: function () { return []; }, propDecorators: { iconSwatchModel: [{
1483
+ type: Input
1484
+ }], isInverse: [{
1485
+ type: Input
1486
+ }] } });
1487
+
1488
+ class IconSwatchModule {
1489
+ }
1490
+ IconSwatchModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconSwatchModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1491
+ IconSwatchModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconSwatchModule, declarations: [IconSwatchComponent], imports: [CommonModule,
1492
+ IconModule,
1493
+ H5Module,
1494
+ ParagraphModule,
1495
+ IconWrapperModule], exports: [IconSwatchComponent] });
1496
+ IconSwatchModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconSwatchModule, imports: [[
1497
+ CommonModule,
1498
+ IconModule,
1499
+ H5Module,
1500
+ ParagraphModule,
1501
+ IconWrapperModule,
1502
+ ]] });
1503
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconSwatchModule, decorators: [{
1504
+ type: NgModule,
1505
+ args: [{
1506
+ declarations: [IconSwatchComponent],
1507
+ imports: [
1508
+ CommonModule,
1509
+ IconModule,
1510
+ H5Module,
1511
+ ParagraphModule,
1512
+ IconWrapperModule,
1513
+ ],
1514
+ exports: [IconSwatchComponent],
1515
+ }]
1516
+ }] });
1517
+
1518
+ class NoteComponent {
1519
+ constructor() {
1520
+ this.noteModel = {
1521
+ firstName: '',
1522
+ lastName: '',
1523
+ listTitle: '',
1524
+ timeStamp: '',
1525
+ description: '',
1526
+ moreActions: {
1527
+ items: [],
1528
+ hasBorder: false,
1529
+ },
1530
+ };
1531
+ }
1532
+ }
1533
+ NoteComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1534
+ NoteComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: NoteComponent, selector: "symphony-note", inputs: { noteModel: "noteModel" }, ngImport: i0, template: "<div class=\"sfx-note\">\n <symphony-avatar\n class=\"list-avatar\"\n [firstName]=\"noteModel.firstName\"\n [lastName]=\"noteModel.lastName\"\n ></symphony-avatar>\n <div class=\"list-content\">\n <symphony-h3 [text]=\"noteModel.listTitle\"></symphony-h3>\n <symphony-paragraph [text]=\"noteModel.timeStamp\"></symphony-paragraph>\n <symphony-paragraph [text]=\"noteModel.description\"></symphony-paragraph>\n </div>\n <symphony-contextual-menu\n class=\"list-more-option\"\n *ngIf=\"noteModel.moreActions && noteModel.moreActions.items.length > 0\"\n [model]=\"noteModel.moreActions\"\n ></symphony-contextual-menu>\n</div>\n", styles: [".sfx-note{position:relative;padding:20px 75px}.sfx-note .list-avatar{position:absolute;left:0;top:20px}.sfx-note .list-more-option{position:absolute;right:0;top:20px}\n"], components: [{ type: AvatarComponent, selector: "symphony-avatar", inputs: ["firstName", "lastName", "sizePx", "fontSizePx"] }, { type: H3Component, selector: "symphony-h3", inputs: ["text", "isSecondary"] }, { type: ParagraphComponent, selector: "symphony-paragraph", inputs: ["text", "isSecondary"] }, { type: ContextualMenuComponent, selector: "symphony-contextual-menu", inputs: ["model"], outputs: ["itemClick"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
1535
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteComponent, decorators: [{
1536
+ type: Component,
1537
+ args: [{ selector: 'symphony-note', template: "<div class=\"sfx-note\">\n <symphony-avatar\n class=\"list-avatar\"\n [firstName]=\"noteModel.firstName\"\n [lastName]=\"noteModel.lastName\"\n ></symphony-avatar>\n <div class=\"list-content\">\n <symphony-h3 [text]=\"noteModel.listTitle\"></symphony-h3>\n <symphony-paragraph [text]=\"noteModel.timeStamp\"></symphony-paragraph>\n <symphony-paragraph [text]=\"noteModel.description\"></symphony-paragraph>\n </div>\n <symphony-contextual-menu\n class=\"list-more-option\"\n *ngIf=\"noteModel.moreActions && noteModel.moreActions.items.length > 0\"\n [model]=\"noteModel.moreActions\"\n ></symphony-contextual-menu>\n</div>\n", styles: [".sfx-note{position:relative;padding:20px 75px}.sfx-note .list-avatar{position:absolute;left:0;top:20px}.sfx-note .list-more-option{position:absolute;right:0;top:20px}\n"] }]
1538
+ }], ctorParameters: function () { return []; }, propDecorators: { noteModel: [{
1539
+ type: Input
1540
+ }] } });
1541
+
1542
+ class NoteModule {
1543
+ }
1544
+ NoteModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1545
+ NoteModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteModule, declarations: [NoteComponent], imports: [CommonModule,
1546
+ AvatarModule,
1547
+ ContextualMenuModule,
1548
+ H3Module,
1549
+ ParagraphModule], exports: [NoteComponent] });
1550
+ NoteModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteModule, imports: [[
1551
+ CommonModule,
1552
+ AvatarModule,
1553
+ ContextualMenuModule,
1554
+ H3Module,
1555
+ ParagraphModule
1556
+ ]] });
1557
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteModule, decorators: [{
1558
+ type: NgModule,
1559
+ args: [{
1560
+ declarations: [NoteComponent],
1561
+ imports: [
1562
+ CommonModule,
1563
+ AvatarModule,
1564
+ ContextualMenuModule,
1565
+ H3Module,
1566
+ ParagraphModule
1567
+ ],
1568
+ exports: [NoteComponent]
1569
+ }]
1570
+ }] });
1571
+
1572
+ class PillsComponent {
1573
+ constructor() {
1574
+ this.removePill = new EventEmitter();
1575
+ }
1576
+ onRemovePill(event) {
1577
+ this.removePill.emit(this.pillsList.find(p => p.pillLabel.toLowerCase() === event.toLowerCase()));
1578
+ }
1579
+ }
1580
+ PillsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1581
+ PillsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: PillsComponent, selector: "symphony-pills", inputs: { hasClose: "hasClose", pillsList: "pillsList", hasTooltips: "hasTooltips" }, outputs: { removePill: "removePill" }, ngImport: i0, template: "<div class=\"sfx-pills-wrapper\">\n <symphony-pill *ngFor=\"let pill of pillsList\"\n [pillLabel]=pill.pillLabel\n [hasClose]=hasClose\n [tooltipLabel]=pill.tooltipLabel\n (removePill)=\"onRemovePill($event)\"\n ></symphony-pill>\n</div>", styles: [".sfx-pills-wrapper{overflow-x:auto;white-space:nowrap;width:100%;padding-bottom:20px}\n"], components: [{ type: PillComponent, selector: "symphony-pill", inputs: ["pillLabel", "isInverse", "hasClose", "tooltipLabel"], outputs: ["removePill"] }], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
1582
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillsComponent, decorators: [{
1583
+ type: Component,
1584
+ args: [{ selector: 'symphony-pills', template: "<div class=\"sfx-pills-wrapper\">\n <symphony-pill *ngFor=\"let pill of pillsList\"\n [pillLabel]=pill.pillLabel\n [hasClose]=hasClose\n [tooltipLabel]=pill.tooltipLabel\n (removePill)=\"onRemovePill($event)\"\n ></symphony-pill>\n</div>", styles: [".sfx-pills-wrapper{overflow-x:auto;white-space:nowrap;width:100%;padding-bottom:20px}\n"] }]
1585
+ }], ctorParameters: function () { return []; }, propDecorators: { hasClose: [{
1586
+ type: Input
1587
+ }], pillsList: [{
1588
+ type: Input
1589
+ }], hasTooltips: [{
1590
+ type: Input
1591
+ }], removePill: [{
1592
+ type: Output
1593
+ }] } });
1594
+
1595
+ class PillsModule {
1596
+ }
1597
+ PillsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1598
+ PillsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillsModule, declarations: [PillsComponent], imports: [CommonModule,
1599
+ PillModule], exports: [PillsComponent] });
1600
+ PillsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillsModule, imports: [[
1601
+ CommonModule,
1602
+ PillModule
1603
+ ]] });
1604
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillsModule, decorators: [{
1605
+ type: NgModule,
1606
+ args: [{
1607
+ declarations: [PillsComponent],
1608
+ imports: [
1609
+ CommonModule,
1610
+ PillModule
1611
+ ],
1612
+ exports: [
1613
+ PillsComponent
1614
+ ]
1615
+ }]
1616
+ }] });
1617
+
1618
+ class TaskComponent {
1619
+ constructor() {
1620
+ this.taskModel = {
1621
+ assignee: '',
1622
+ title: '',
1623
+ dueDate: '',
1624
+ };
1625
+ }
1626
+ }
1627
+ TaskComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1628
+ TaskComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: TaskComponent, selector: "symphony-task", inputs: { taskModel: "taskModel" }, ngImport: i0, template: "<div class=\"sfx-task\">\n <symphony-task-icon\n class=\"task-icon\"\n [isComplete]=\"taskModel.isComplete\"\n ></symphony-task-icon>\n <div class=\"task-content\">\n <symphony-h3 [text]=\"taskModel.title\"></symphony-h3>\n <div class=\"time-and-assigned\">\n <symphony-paragraph [text]=\"taskModel.dueDate\"></symphony-paragraph>\n <symphony-paragraph [text]=\"taskModel.assignee\"></symphony-paragraph>\n </div>\n </div>\n <symphony-contextual-menu\n class=\"task-more-option\"\n *ngIf=\"taskModel.moreActions && taskModel.moreActions.items.length > 0\"\n [model]=\"taskModel.moreActions\"\n >\n </symphony-contextual-menu>\n</div>\n", styles: ["*{font-family:neuzeit-grotesk,sans-serif!important}.sfx-task{display:flex;align-items:center;padding:30px 0;border-bottom:1px solid #d9d9d9}.sfx-task symphony-task{font-size:14px;letter-spacing:-1px}.sfx-task symphony-task-icon{margin-right:20px}.sfx-task .task-content{width:80%;height:50px}.sfx-task symphony-contextual-menu{margin-left:auto}.sfx-task symphony-paragraph{display:inline-block;margin-right:20px}.sfx-task .time-and-assigned{margin-bottom:-10px}\n"], components: [{ type: TaskIconComponent, selector: "symphony-task-icon", inputs: ["isComplete"] }, { type: H3Component, selector: "symphony-h3", inputs: ["text", "isSecondary"] }, { type: ParagraphComponent, selector: "symphony-paragraph", inputs: ["text", "isSecondary"] }, { type: ContextualMenuComponent, selector: "symphony-contextual-menu", inputs: ["model"], outputs: ["itemClick"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
1629
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskComponent, decorators: [{
1630
+ type: Component,
1631
+ args: [{ selector: 'symphony-task', template: "<div class=\"sfx-task\">\n <symphony-task-icon\n class=\"task-icon\"\n [isComplete]=\"taskModel.isComplete\"\n ></symphony-task-icon>\n <div class=\"task-content\">\n <symphony-h3 [text]=\"taskModel.title\"></symphony-h3>\n <div class=\"time-and-assigned\">\n <symphony-paragraph [text]=\"taskModel.dueDate\"></symphony-paragraph>\n <symphony-paragraph [text]=\"taskModel.assignee\"></symphony-paragraph>\n </div>\n </div>\n <symphony-contextual-menu\n class=\"task-more-option\"\n *ngIf=\"taskModel.moreActions && taskModel.moreActions.items.length > 0\"\n [model]=\"taskModel.moreActions\"\n >\n </symphony-contextual-menu>\n</div>\n", styles: ["*{font-family:neuzeit-grotesk,sans-serif!important}.sfx-task{display:flex;align-items:center;padding:30px 0;border-bottom:1px solid #d9d9d9}.sfx-task symphony-task{font-size:14px;letter-spacing:-1px}.sfx-task symphony-task-icon{margin-right:20px}.sfx-task .task-content{width:80%;height:50px}.sfx-task symphony-contextual-menu{margin-left:auto}.sfx-task symphony-paragraph{display:inline-block;margin-right:20px}.sfx-task .time-and-assigned{margin-bottom:-10px}\n"] }]
1632
+ }], ctorParameters: function () { return []; }, propDecorators: { taskModel: [{
1633
+ type: Input
1634
+ }] } });
1635
+
1636
+ class TaskModule {
1637
+ }
1638
+ TaskModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1639
+ TaskModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskModule, declarations: [TaskComponent], imports: [CommonModule,
1640
+ TaskIconModule,
1641
+ ContextualMenuModule,
1642
+ H3Module,
1643
+ ParagraphModule], exports: [TaskComponent] });
1644
+ TaskModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskModule, imports: [[
1645
+ CommonModule,
1646
+ TaskIconModule,
1647
+ ContextualMenuModule,
1648
+ H3Module,
1649
+ ParagraphModule
1650
+ ]] });
1651
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskModule, decorators: [{
1652
+ type: NgModule,
1653
+ args: [{
1654
+ declarations: [TaskComponent],
1655
+ imports: [
1656
+ CommonModule,
1657
+ TaskIconModule,
1658
+ ContextualMenuModule,
1659
+ H3Module,
1660
+ ParagraphModule
1661
+ ],
1662
+ exports: [TaskComponent],
1663
+ }]
1664
+ }] });
1665
+
1666
+ class MoleculesModule {
1667
+ }
1668
+ MoleculesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: MoleculesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1669
+ MoleculesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: MoleculesModule, imports: [CommonModule,
1670
+ AvatarModule,
1671
+ ContextualMenuModule,
1672
+ PillsModule,
1673
+ TaskModule,
1674
+ ColorSwatchModule,
1675
+ IconSwatchModule,
1676
+ BreadcrumbModule], exports: [NoteModule,
1677
+ PillsModule,
1678
+ TaskModule,
1679
+ ColorSwatchModule,
1680
+ IconSwatchModule,
1681
+ BreadcrumbModule] });
1682
+ MoleculesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: MoleculesModule, imports: [[
1683
+ CommonModule,
1684
+ AvatarModule,
1685
+ ContextualMenuModule,
1686
+ PillsModule,
1687
+ TaskModule,
1688
+ ColorSwatchModule,
1689
+ IconSwatchModule,
1690
+ BreadcrumbModule,
1691
+ ], NoteModule,
1692
+ PillsModule,
1693
+ TaskModule,
1694
+ ColorSwatchModule,
1695
+ IconSwatchModule,
1696
+ BreadcrumbModule] });
1697
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: MoleculesModule, decorators: [{
1698
+ type: NgModule,
1699
+ args: [{
1700
+ declarations: [],
1701
+ imports: [
1702
+ CommonModule,
1703
+ AvatarModule,
1704
+ ContextualMenuModule,
1705
+ PillsModule,
1706
+ TaskModule,
1707
+ ColorSwatchModule,
1708
+ IconSwatchModule,
1709
+ BreadcrumbModule,
1710
+ ],
1711
+ exports: [
1712
+ NoteModule,
1713
+ PillsModule,
1714
+ TaskModule,
1715
+ ColorSwatchModule,
1716
+ IconSwatchModule,
1717
+ BreadcrumbModule,
1718
+ ],
1719
+ }]
1720
+ }] });
1721
+
1722
+ class TaskListComponent {
1723
+ constructor() { }
1724
+ }
1725
+ TaskListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1726
+ TaskListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: TaskListComponent, selector: "symphony-task-list", inputs: { taskList: "taskList" }, ngImport: i0, template: "<ul class=\"task-list list-unstyled\">\n <li class=\"task-list-item\" *ngFor=\"let task of taskList\">\n <symphony-task [taskModel]=\"task\"></symphony-task>\n </li>\n</ul>\n", styles: [".task-list{border-top:1px solid #d9d9d9}\n"], components: [{ type: TaskComponent, selector: "symphony-task", inputs: ["taskModel"] }], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
1727
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskListComponent, decorators: [{
1728
+ type: Component,
1729
+ args: [{ selector: 'symphony-task-list', template: "<ul class=\"task-list list-unstyled\">\n <li class=\"task-list-item\" *ngFor=\"let task of taskList\">\n <symphony-task [taskModel]=\"task\"></symphony-task>\n </li>\n</ul>\n", styles: [".task-list{border-top:1px solid #d9d9d9}\n"] }]
1730
+ }], ctorParameters: function () { return []; }, propDecorators: { taskList: [{
1731
+ type: Input
1732
+ }] } });
1733
+
1734
+ class TaskListModule {
1735
+ }
1736
+ TaskListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1737
+ TaskListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskListModule, declarations: [TaskListComponent], imports: [CommonModule, TaskModule], exports: [TaskListComponent] });
1738
+ TaskListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskListModule, imports: [[CommonModule, TaskModule]] });
1739
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskListModule, decorators: [{
1740
+ type: NgModule,
1741
+ args: [{
1742
+ declarations: [TaskListComponent],
1743
+ imports: [CommonModule, TaskModule],
1744
+ exports: [TaskListComponent],
1745
+ }]
1746
+ }] });
1747
+
1748
+ class NoteListComponent {
1749
+ constructor() { }
1750
+ }
1751
+ NoteListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1752
+ NoteListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: NoteListComponent, selector: "symphony-note-list", inputs: { noteList: "noteList" }, ngImport: i0, template: "<ul class=\"list-unstyled\">\n <li *ngFor=\"let note of noteList\">\n <symphony-note [noteModel]='note'></symphony-note>\n </li>\n</ul>\n", styles: ["li{border-bottom:1px solid #d9d9d9}li:last-child{border-bottom-color:transparent}\n"], components: [{ type: NoteComponent, selector: "symphony-note", inputs: ["noteModel"] }], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
1753
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteListComponent, decorators: [{
1754
+ type: Component,
1755
+ args: [{ selector: 'symphony-note-list', template: "<ul class=\"list-unstyled\">\n <li *ngFor=\"let note of noteList\">\n <symphony-note [noteModel]='note'></symphony-note>\n </li>\n</ul>\n", styles: ["li{border-bottom:1px solid #d9d9d9}li:last-child{border-bottom-color:transparent}\n"] }]
1756
+ }], ctorParameters: function () { return []; }, propDecorators: { noteList: [{
1757
+ type: Input
1758
+ }] } });
1759
+
1760
+ class NoteListModule {
1761
+ }
1762
+ NoteListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1763
+ NoteListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteListModule, declarations: [NoteListComponent], imports: [CommonModule, NoteModule], exports: [NoteListComponent] });
1764
+ NoteListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteListModule, imports: [[CommonModule, NoteModule]] });
1765
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteListModule, decorators: [{
1766
+ type: NgModule,
1767
+ args: [{
1768
+ declarations: [NoteListComponent],
1769
+ imports: [CommonModule, NoteModule],
1770
+ exports: [NoteListComponent]
1771
+ }]
1772
+ }] });
1773
+
1774
+ class AdminListTemplateComponent {
1775
+ constructor() { }
1776
+ }
1777
+ AdminListTemplateComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdminListTemplateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1778
+ AdminListTemplateComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: AdminListTemplateComponent, selector: "symphony-admin-list-template", ngImport: i0, template: "<div class=\"sfx\">\n <!---->\n <section class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\n <div class=\"sfx-page-title\">\n <div class=\"row\">\n <div class=\"col-xs-12 col-sm-12 colmd-9 col-lg-9 sfx-pl-0\">\n <ng-content select=\"[sfx-header]\"></ng-content>\n </div>\n <span class=\"pull-right sfx-create-new\">\n <ng-content select=\"[sfx-page-action]\"></ng-content>\n </span>\n </div>\n </div>\n </section>\n <section class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\n <div class=\"sfx-filter-section\">\n <div class=\"row\">\n <ng-content select=\"[sfx-filter-area]\"></ng-content>\n </div>\n </div>\n </section>\n <section class=\"sfx-title-wrap\">\n <div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12 sfx-mb-30 sfx-p-0\">\n <div class=\"col-xs-12 col-sm-12 col-md-5 col-lg-5 sfx-pl-0 sfx-mt-10\">\n <!-- <h4 class=\"margin-left-minus-15\">22 Event Venues</h4> -->\n <ng-content select=\"[sfx-title]\"></ng-content>\n </div>\n <span class=\"pull-right sfx-create-new\">\n <ng-content select=\"[sfx-grid-action]\"></ng-content>\n </span>\n </div>\n </section>\n <section class=\"sfx-grid-wrap\">\n <ng-content select=\"[sfx-grid]\"></ng-content>\n </section>\n</div>\n", styles: [".sfx-page-title{margin-top:3.125rem;margin-bottom:1.875rem}.sfx-title-wrap{display:inline-block;width:100%;border-bottom:5px solid #000}\n"] });
1779
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdminListTemplateComponent, decorators: [{
1780
+ type: Component,
1781
+ args: [{ selector: 'symphony-admin-list-template', template: "<div class=\"sfx\">\n <!---->\n <section class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\n <div class=\"sfx-page-title\">\n <div class=\"row\">\n <div class=\"col-xs-12 col-sm-12 colmd-9 col-lg-9 sfx-pl-0\">\n <ng-content select=\"[sfx-header]\"></ng-content>\n </div>\n <span class=\"pull-right sfx-create-new\">\n <ng-content select=\"[sfx-page-action]\"></ng-content>\n </span>\n </div>\n </div>\n </section>\n <section class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\n <div class=\"sfx-filter-section\">\n <div class=\"row\">\n <ng-content select=\"[sfx-filter-area]\"></ng-content>\n </div>\n </div>\n </section>\n <section class=\"sfx-title-wrap\">\n <div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12 sfx-mb-30 sfx-p-0\">\n <div class=\"col-xs-12 col-sm-12 col-md-5 col-lg-5 sfx-pl-0 sfx-mt-10\">\n <!-- <h4 class=\"margin-left-minus-15\">22 Event Venues</h4> -->\n <ng-content select=\"[sfx-title]\"></ng-content>\n </div>\n <span class=\"pull-right sfx-create-new\">\n <ng-content select=\"[sfx-grid-action]\"></ng-content>\n </span>\n </div>\n </section>\n <section class=\"sfx-grid-wrap\">\n <ng-content select=\"[sfx-grid]\"></ng-content>\n </section>\n</div>\n", styles: [".sfx-page-title{margin-top:3.125rem;margin-bottom:1.875rem}.sfx-title-wrap{display:inline-block;width:100%;border-bottom:5px solid #000}\n"] }]
1782
+ }], ctorParameters: function () { return []; } });
1783
+
1784
+ class PlaceholderComponent {
1785
+ constructor() { }
1786
+ }
1787
+ PlaceholderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PlaceholderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1788
+ PlaceholderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: PlaceholderComponent, selector: "symphony-placeholder", inputs: { type: "type", label: "label", tooltip: "tooltip", tooltipPlacement: "tooltipPlacement", height: "height", width: "width" }, ngImport: i0, template: "<div\n *ngIf=\"type !== 'circle'\"\n class=\"placeholder-dashed\"\n [ngStyle]=\"{ height: height }\"\n>\n {{ label }}\n</div>\n\n<div\n *ngIf=\"type === 'circle'\"\n [tooltip]=\"tooltip\"\n [placement]=\"tooltipPlacement\"\n class=\"placeholder-dashed-circle\"\n [ngStyle]=\"{ height: height, width: width }\"\n>\n {{ label }}\n</div>\n", styles: [".placeholder-dashed{color:#464646;background:repeating-linear-gradient(-55deg,#d0d0d0,#d0d0d0 10px,#d9d9d9 10px,#d9d9d9 20px);border:3px dashed #464646;height:100%;display:flex;align-items:center;justify-content:center;text-align:center;font-size:18px;border-radius:10px}.placeholder-dashed-circle{color:#464646;background:repeating-linear-gradient(-55deg,#d0d0d0,#d0d0d0 10px,#d9d9d9 10px,#d9d9d9 20px);border:3px dashed #464646;height:100%;display:flex;align-items:center;justify-content:center;text-align:center;font-size:18px;border-radius:50%}.wrapper div{height:100%}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: i2.TooltipDirective, selector: "[tooltip], [tooltipHtml]", inputs: ["containerClass", "tooltipAnimation", "tooltipFadeDuration", "isOpen", "tooltipHtml", "tooltip", "tooltipPlacement", "placement", "tooltipIsOpen", "tooltipEnable", "isDisabled", "tooltipAppendToBody", "container", "tooltipClass", "tooltipContext", "tooltipPopupDelay", "delay", "tooltipTrigger", "triggers", "adaptivePosition"], outputs: ["tooltipChange", "tooltipStateChanged", "onShown", "onHidden"], exportAs: ["bs-tooltip"] }] });
1789
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PlaceholderComponent, decorators: [{
1790
+ type: Component,
1791
+ args: [{ selector: 'symphony-placeholder', template: "<div\n *ngIf=\"type !== 'circle'\"\n class=\"placeholder-dashed\"\n [ngStyle]=\"{ height: height }\"\n>\n {{ label }}\n</div>\n\n<div\n *ngIf=\"type === 'circle'\"\n [tooltip]=\"tooltip\"\n [placement]=\"tooltipPlacement\"\n class=\"placeholder-dashed-circle\"\n [ngStyle]=\"{ height: height, width: width }\"\n>\n {{ label }}\n</div>\n", styles: [".placeholder-dashed{color:#464646;background:repeating-linear-gradient(-55deg,#d0d0d0,#d0d0d0 10px,#d9d9d9 10px,#d9d9d9 20px);border:3px dashed #464646;height:100%;display:flex;align-items:center;justify-content:center;text-align:center;font-size:18px;border-radius:10px}.placeholder-dashed-circle{color:#464646;background:repeating-linear-gradient(-55deg,#d0d0d0,#d0d0d0 10px,#d9d9d9 10px,#d9d9d9 20px);border:3px dashed #464646;height:100%;display:flex;align-items:center;justify-content:center;text-align:center;font-size:18px;border-radius:50%}.wrapper div{height:100%}\n"] }]
1792
+ }], ctorParameters: function () { return []; }, propDecorators: { type: [{
1793
+ type: Input
1794
+ }], label: [{
1795
+ type: Input
1796
+ }], tooltip: [{
1797
+ type: Input
1798
+ }], tooltipPlacement: [{
1799
+ type: Input
1800
+ }], height: [{
1801
+ type: Input
1802
+ }], width: [{
1803
+ type: Input
1804
+ }] } });
1805
+
1806
+ class EventsSettingsPageComponent {
1807
+ constructor() {
1808
+ this.keywordSearchChange = new EventEmitter();
1809
+ this.gridActionsSelectedOption = new EventEmitter();
1810
+ this.addButtonClicked = new EventEmitter();
1811
+ this.eventsSettingsBreadcrumbs = [
1812
+ {
1813
+ label: 'Main Menu',
1814
+ link: '/tools',
1815
+ },
1816
+ {
1817
+ label: 'Sub Menu One',
1818
+ },
1819
+ ];
1820
+ }
1821
+ keywordSearch(keyword) {
1822
+ this.keywordSearchChange.emit(keyword);
1823
+ console.log(keyword);
1824
+ }
1825
+ gridActionsSelect(selection) {
1826
+ this.gridActionsSelectedOption.emit(selection);
1827
+ console.log(selection);
1828
+ }
1829
+ onAddButtonClick() {
1830
+ this.addButtonClicked.emit();
1831
+ }
1832
+ }
1833
+ EventsSettingsPageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventsSettingsPageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1834
+ EventsSettingsPageComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: EventsSettingsPageComponent, selector: "symphony-events-settings-page", inputs: { model: "model" }, outputs: { keywordSearchChange: "keywordSearchChange", gridActionsSelectedOption: "gridActionsSelectedOption", addButtonClicked: "addButtonClicked" }, ngImport: i0, template: "<symphony-admin-list-template *ngIf=\"model\">\n <symphony-breadcrumb sfx-header [breadcrumbs]=\"model.breadcrumbs\">\n </symphony-breadcrumb>\n <symphony-icon-wrapper\n sfx-page-action\n *ngIf=\"model.showAddButton\"\n (clicked)=\"onAddButtonClick()\"\n >\n <symphony-icon [icon]=\"'si-add'\"></symphony-icon>\n </symphony-icon-wrapper>\n <symphony-two-column-filter-area sfx-filter-area>\n <symphony-input-dropdown\n filter-one\n [isInverse]=\"true\"\n [inputDropdownListModel]=\"model.settingTypeDropdown\"\n *ngIf=\"!model.overrideSettingTypeFilterPlaceholder\"\n >\n </symphony-input-dropdown>\n <symphony-placeholder\n *ngIf=\"model.overrideSettingTypeFilterPlaceholder\"\n filter-one\n [label]=\"'filter-one'\"\n [height]=\"'80px'\"\n ></symphony-placeholder>\n <symphony-input-text\n filter-two\n [label]=\"'Search by Keyword'\"\n [placeholder]=\"'Enter Search Value'\"\n [icon]=\"'si-search-new'\"\n [isInverse]=\"true\"\n (textChange)=\"keywordSearch($event)\"\n >\n </symphony-input-text>\n </symphony-two-column-filter-area>\n <symphony-h4 sfx-title>{{ model.gridTitle }}</symphony-h4>\n <symphony-contextual-menu\n sfx-grid-action\n class=\"more-options\"\n *ngIf=\"model.gridActions.items && model.gridActions.items.length > 0\"\n [model]=\"model.gridActions\"\n (itemClick)=\"gridActionsSelect($event)\"\n >\n </symphony-contextual-menu>\n <symphony-grid\n sfx-grid\n [columnDefs]=\"model.grid.columnDefs\"\n [rowData]=\"model.grid.rowData\"\n *ngIf=\"!model.overrideGridPlaceholder\"\n ></symphony-grid>\n <symphony-placeholder\n *ngIf=\"model.overrideGridPlaceholder\"\n sfx-grid\n [label]=\"'sfx-grid'\"\n [height]=\"'500px'\"\n ></symphony-placeholder>\n</symphony-admin-list-template>\n", styles: [""], components: [{ type: AdminListTemplateComponent, selector: "symphony-admin-list-template" }, { type: BreadcrumbComponent, selector: "symphony-breadcrumb", inputs: ["breadcrumbs"] }, { type: IconWrapperComponent, selector: "symphony-icon-wrapper", inputs: ["isInverse"], outputs: ["clicked"] }, { type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size"], outputs: ["clicked"] }, { type: TwoColumnFilterAreaComponent, selector: "symphony-two-column-filter-area", inputs: ["height"] }, { type: InputDropdownComponent, selector: "symphony-input-dropdown", inputs: ["inputDropdownListModel", "disableBtn", "isInverse", "isRequired"], outputs: ["selectItem", "clearSelection"] }, { type: PlaceholderComponent, selector: "symphony-placeholder", inputs: ["type", "label", "tooltip", "tooltipPlacement", "height", "width"] }, { type: InputTextComponent, selector: "symphony-input-text", inputs: ["placeholder", "icon", "label", "isInverse"], outputs: ["textChange"] }, { type: H4Component, selector: "symphony-h4", inputs: ["text", "isSecondary"] }, { type: ContextualMenuComponent, selector: "symphony-contextual-menu", inputs: ["model"], outputs: ["itemClick"] }, { type: GridComponent, selector: "symphony-grid", inputs: ["columnDefs", "rowData"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
1835
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventsSettingsPageComponent, decorators: [{
1836
+ type: Component,
1837
+ args: [{ selector: 'symphony-events-settings-page', template: "<symphony-admin-list-template *ngIf=\"model\">\n <symphony-breadcrumb sfx-header [breadcrumbs]=\"model.breadcrumbs\">\n </symphony-breadcrumb>\n <symphony-icon-wrapper\n sfx-page-action\n *ngIf=\"model.showAddButton\"\n (clicked)=\"onAddButtonClick()\"\n >\n <symphony-icon [icon]=\"'si-add'\"></symphony-icon>\n </symphony-icon-wrapper>\n <symphony-two-column-filter-area sfx-filter-area>\n <symphony-input-dropdown\n filter-one\n [isInverse]=\"true\"\n [inputDropdownListModel]=\"model.settingTypeDropdown\"\n *ngIf=\"!model.overrideSettingTypeFilterPlaceholder\"\n >\n </symphony-input-dropdown>\n <symphony-placeholder\n *ngIf=\"model.overrideSettingTypeFilterPlaceholder\"\n filter-one\n [label]=\"'filter-one'\"\n [height]=\"'80px'\"\n ></symphony-placeholder>\n <symphony-input-text\n filter-two\n [label]=\"'Search by Keyword'\"\n [placeholder]=\"'Enter Search Value'\"\n [icon]=\"'si-search-new'\"\n [isInverse]=\"true\"\n (textChange)=\"keywordSearch($event)\"\n >\n </symphony-input-text>\n </symphony-two-column-filter-area>\n <symphony-h4 sfx-title>{{ model.gridTitle }}</symphony-h4>\n <symphony-contextual-menu\n sfx-grid-action\n class=\"more-options\"\n *ngIf=\"model.gridActions.items && model.gridActions.items.length > 0\"\n [model]=\"model.gridActions\"\n (itemClick)=\"gridActionsSelect($event)\"\n >\n </symphony-contextual-menu>\n <symphony-grid\n sfx-grid\n [columnDefs]=\"model.grid.columnDefs\"\n [rowData]=\"model.grid.rowData\"\n *ngIf=\"!model.overrideGridPlaceholder\"\n ></symphony-grid>\n <symphony-placeholder\n *ngIf=\"model.overrideGridPlaceholder\"\n sfx-grid\n [label]=\"'sfx-grid'\"\n [height]=\"'500px'\"\n ></symphony-placeholder>\n</symphony-admin-list-template>\n", styles: [""] }]
1838
+ }], ctorParameters: function () { return []; }, propDecorators: { model: [{
1839
+ type: Input
1840
+ }], keywordSearchChange: [{
1841
+ type: Output
1842
+ }], gridActionsSelectedOption: [{
1843
+ type: Output
1844
+ }], addButtonClicked: [{
1845
+ type: Output
1846
+ }] } });
1847
+
1848
+ class AdminListModule {
1849
+ }
1850
+ AdminListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdminListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1851
+ AdminListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdminListModule, declarations: [AdminListTemplateComponent], imports: [CommonModule], exports: [AdminListTemplateComponent] });
1852
+ AdminListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdminListModule, imports: [[CommonModule]] });
1853
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdminListModule, decorators: [{
1854
+ type: NgModule,
1855
+ args: [{
1856
+ declarations: [AdminListTemplateComponent],
1857
+ imports: [CommonModule],
1858
+ exports: [AdminListTemplateComponent],
1859
+ }]
1860
+ }] });
1861
+
1862
+ class PlaceholderModule {
1863
+ }
1864
+ PlaceholderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PlaceholderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1865
+ PlaceholderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PlaceholderModule, declarations: [PlaceholderComponent], imports: [CommonModule, i2.TooltipModule], exports: [PlaceholderComponent] });
1866
+ PlaceholderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PlaceholderModule, imports: [[CommonModule, TooltipModule.forRoot()]] });
1867
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PlaceholderModule, decorators: [{
1868
+ type: NgModule,
1869
+ args: [{
1870
+ declarations: [PlaceholderComponent],
1871
+ imports: [CommonModule, TooltipModule.forRoot()],
1872
+ exports: [PlaceholderComponent],
1873
+ }]
1874
+ }] });
1875
+
1876
+ class EventsSettingsPageModule {
1877
+ }
1878
+ EventsSettingsPageModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventsSettingsPageModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1879
+ EventsSettingsPageModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventsSettingsPageModule, declarations: [EventsSettingsPageComponent], imports: [CommonModule,
1880
+ AdminListModule,
1881
+ H3Module,
1882
+ H4Module,
1883
+ PlaceholderModule,
1884
+ BreadcrumbModule,
1885
+ TwoColumnFilterAreaModule,
1886
+ IconModule,
1887
+ InputTextModule,
1888
+ ContextualMenuModule,
1889
+ InputDropdownModule,
1890
+ GridModule,
1891
+ IconWrapperModule], exports: [EventsSettingsPageComponent] });
1892
+ EventsSettingsPageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventsSettingsPageModule, imports: [[
1893
+ CommonModule,
1894
+ AdminListModule,
1895
+ H3Module,
1896
+ H4Module,
1897
+ PlaceholderModule,
1898
+ BreadcrumbModule,
1899
+ TwoColumnFilterAreaModule,
1900
+ IconModule,
1901
+ InputTextModule,
1902
+ ContextualMenuModule,
1903
+ InputDropdownModule,
1904
+ GridModule,
1905
+ IconWrapperModule,
1906
+ ]] });
1907
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventsSettingsPageModule, decorators: [{
1908
+ type: NgModule,
1909
+ args: [{
1910
+ declarations: [EventsSettingsPageComponent],
1911
+ imports: [
1912
+ CommonModule,
1913
+ AdminListModule,
1914
+ H3Module,
1915
+ H4Module,
1916
+ PlaceholderModule,
1917
+ BreadcrumbModule,
1918
+ TwoColumnFilterAreaModule,
1919
+ IconModule,
1920
+ InputTextModule,
1921
+ ContextualMenuModule,
1922
+ InputDropdownModule,
1923
+ GridModule,
1924
+ IconWrapperModule,
1925
+ ],
1926
+ exports: [EventsSettingsPageComponent],
1927
+ }]
1928
+ }] });
1929
+
1930
+ class ColorSwatchCollectionComponent {
1931
+ constructor() { }
1932
+ }
1933
+ ColorSwatchCollectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchCollectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1934
+ ColorSwatchCollectionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ColorSwatchCollectionComponent, selector: "symphony-main-ui-color-swatch", inputs: { colorList: "colorList" }, ngImport: i0, template: "<ul class=\"color-list list-unstyled\">\n <li class=\"color-list-item\" *ngFor=\"let color of colorList\">\n <symphony-ui-color-explorer\n [colorSwatchModel]=\"color\"\n ></symphony-ui-color-explorer>\n </li>\n</ul>\n", styles: [".data-vis .color-list,.data-vis-ext .color-list{flex-direction:column;flex-wrap:wrap;display:flex;height:100vh;width:50vw}.data-vis .color-list-item,.data-vis-ext .color-list-item{padding:0;flex:0 0 20%}.main-ui .color-list-item{padding:5px 0}\n"], components: [{ type: ColorSwatchComponent, selector: "symphony-ui-color-explorer", inputs: ["colorSwatchModel"] }], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], encapsulation: i0.ViewEncapsulation.None });
1935
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchCollectionComponent, decorators: [{
1936
+ type: Component,
1937
+ args: [{ selector: 'symphony-main-ui-color-swatch', encapsulation: ViewEncapsulation.None, template: "<ul class=\"color-list list-unstyled\">\n <li class=\"color-list-item\" *ngFor=\"let color of colorList\">\n <symphony-ui-color-explorer\n [colorSwatchModel]=\"color\"\n ></symphony-ui-color-explorer>\n </li>\n</ul>\n", styles: [".data-vis .color-list,.data-vis-ext .color-list{flex-direction:column;flex-wrap:wrap;display:flex;height:100vh;width:50vw}.data-vis .color-list-item,.data-vis-ext .color-list-item{padding:0;flex:0 0 20%}.main-ui .color-list-item{padding:5px 0}\n"] }]
1938
+ }], ctorParameters: function () { return []; }, propDecorators: { colorList: [{
1939
+ type: Input
1940
+ }] } });
1941
+
1942
+ class ColorSwatchCollectionModule {
1943
+ }
1944
+ ColorSwatchCollectionModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchCollectionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1945
+ ColorSwatchCollectionModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchCollectionModule, declarations: [ColorSwatchCollectionComponent], imports: [CommonModule, ColorSwatchModule] });
1946
+ ColorSwatchCollectionModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchCollectionModule, imports: [[CommonModule, ColorSwatchModule]] });
1947
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchCollectionModule, decorators: [{
1948
+ type: NgModule,
1949
+ args: [{
1950
+ declarations: [ColorSwatchCollectionComponent],
1951
+ imports: [CommonModule, ColorSwatchModule],
1952
+ exports: []
1953
+ }]
1954
+ }] });
1955
+
1956
+ class IconExplorerHelper {
1957
+ static getAllIcons() {
1958
+ let allIcons = [];
1959
+ allIcons = allIcons.concat(this.getHasNoBorderIconList());
1960
+ allIcons = allIcons.concat(this.getHasBorderIconList());
1961
+ allIcons = allIcons.concat(this.getInverseIconList());
1962
+ return allIcons;
1963
+ }
1964
+ static getHasNoBorderIconList() {
1965
+ return [
1966
+ {
1967
+ icon: Icons.MOREOPTIONS,
1968
+ iconName: 'MOREOPTIONS',
1969
+ iconClass: 'si-more-options',
1970
+ hasBorder: false,
1971
+ },
1972
+ {
1973
+ icon: Icons.ADD,
1974
+ iconName: 'ADD',
1975
+ iconClass: 'si-add',
1976
+ hasBorder: false,
1977
+ },
1978
+ {
1979
+ icon: Icons.ACTIVITY,
1980
+ iconName: 'ACTIVITY',
1981
+ iconClass: 'si-activity',
1982
+ hasBorder: false,
1983
+ },
1984
+ {
1985
+ icon: Icons.ARROWHIDEREVEAL,
1986
+ iconName: 'ARROWHIDEREVEAL',
1987
+ iconClass: 'si-arrow-hide-reveal',
1988
+ hasBorder: false,
1989
+ },
1990
+ {
1991
+ icon: Icons.ARROWNEXT,
1992
+ iconName: 'ARROWNEXT',
1993
+ iconClass: 'si-arrow-next',
1994
+ hasBorder: false,
1995
+ },
1996
+ {
1997
+ icon: Icons.ARROWPREV,
1998
+ iconName: 'ARROWPREV',
1999
+ iconClass: 'si-arrow-prev',
2000
+ hasBorder: false,
2001
+ },
2002
+ {
2003
+ icon: Icons.CLOSEMODAL,
2004
+ iconName: 'CLOSEMODAL',
2005
+ iconClass: 'si-close-modal',
2006
+ hasBorder: false,
2007
+ },
2008
+ {
2009
+ icon: Icons.COLLAPSE,
2010
+ iconName: 'COLLAPSE',
2011
+ iconClass: 'si-collapse',
2012
+ hasBorder: false,
2013
+ },
2014
+ {
2015
+ icon: Icons.DAYMODE,
2016
+ iconName: 'DAYMODE',
2017
+ iconClass: 'si-daymode',
2018
+ hasBorder: false,
2019
+ },
2020
+ {
2021
+ icon: Icons.DELETE,
2022
+ iconName: 'DELETE',
2023
+ iconClass: 'si-delete',
2024
+ hasBorder: false,
2025
+ },
2026
+ {
2027
+ icon: Icons.DOCUMENT,
2028
+ iconName: 'DOCUMENT',
2029
+ iconClass: 'si-document',
2030
+ hasBorder: false,
2031
+ },
2032
+ {
2033
+ icon: Icons.DOWNLOAD,
2034
+ iconName: 'DOWNLOAD',
2035
+ iconClass: 'si-download',
2036
+ hasBorder: false,
2037
+ },
2038
+ {
2039
+ icon: Icons.EDIT,
2040
+ iconName: 'EDIT',
2041
+ iconClass: 'si-edit',
2042
+ hasBorder: false,
2043
+ },
2044
+ {
2045
+ icon: Icons.EMAILDRIP,
2046
+ iconName: 'EMAILDRIP',
2047
+ iconClass: 'si-email-drip',
2048
+ hasBorder: false,
2049
+ },
2050
+ {
2051
+ icon: Icons.EMAILOPEN,
2052
+ iconName: 'EMAILOPEN',
2053
+ iconClass: 'si-email-open',
2054
+ hasBorder: false,
2055
+ },
2056
+ {
2057
+ icon: Icons.EMAILSEND,
2058
+ iconName: 'EMAILSEND',
2059
+ iconClass: 'si-email-send',
2060
+ hasBorder: false,
2061
+ },
2062
+ {
2063
+ icon: Icons.EXPAND,
2064
+ iconName: 'EXPAND',
2065
+ iconClass: 'si-expand',
2066
+ hasBorder: false,
2067
+ },
2068
+ {
2069
+ icon: Icons.FAVORITE,
2070
+ iconName: 'FAVORITE',
2071
+ iconClass: 'si-favorite',
2072
+ hasBorder: false,
2073
+ },
2074
+ {
2075
+ icon: Icons.FEEDBACKMAYBE,
2076
+ iconName: 'FEEDBACKMAYBE',
2077
+ iconClass: 'si-feedback-maybe',
2078
+ hasBorder: false,
2079
+ },
2080
+ {
2081
+ icon: Icons.FEEDBACKNO,
2082
+ iconName: 'FEEDBACKNO',
2083
+ iconClass: 'si-feedback-no',
2084
+ hasBorder: false,
2085
+ },
2086
+ {
2087
+ icon: Icons.FEEDBACKYES,
2088
+ iconName: 'FEEDBACKYES',
2089
+ iconClass: 'si-feedback-yes',
2090
+ hasBorder: false,
2091
+ },
2092
+ {
2093
+ icon: Icons.FOLDERMULTIPLE,
2094
+ iconName: 'FOLDERMULTIPLE',
2095
+ iconClass: 'si-folder-multiple',
2096
+ hasBorder: false,
2097
+ },
2098
+ {
2099
+ icon: Icons.INCLUDE,
2100
+ iconName: 'INCLUDE',
2101
+ iconClass: 'si-include',
2102
+ hasBorder: false,
2103
+ },
2104
+ {
2105
+ icon: Icons.INFO,
2106
+ iconName: 'INFO',
2107
+ iconClass: 'si-info',
2108
+ hasBorder: false,
2109
+ },
2110
+ {
2111
+ icon: Icons.INTERVIEW,
2112
+ iconName: 'INTERVIEW',
2113
+ iconClass: 'si-interview',
2114
+ hasBorder: false,
2115
+ },
2116
+ {
2117
+ icon: Icons.LINK,
2118
+ iconName: 'LINK',
2119
+ iconClass: 'si-link',
2120
+ hasBorder: false,
2121
+ },
2122
+ {
2123
+ icon: Icons.LOCATION,
2124
+ iconName: 'LOCATION',
2125
+ iconClass: 'si-location',
2126
+ hasBorder: false,
2127
+ },
2128
+ {
2129
+ icon: Icons.MENUALL,
2130
+ iconName: 'MENUALL',
2131
+ iconClass: 'si-menu-all',
2132
+ hasBorder: false,
2133
+ },
2134
+ {
2135
+ icon: Icons.MENUANALYTICS,
2136
+ iconName: 'MENUANALYTICS',
2137
+ iconClass: 'si-menu-analytics',
2138
+ hasBorder: false,
2139
+ },
2140
+ {
2141
+ icon: Icons.MENUASSETS,
2142
+ iconName: 'MENUASSETS',
2143
+ iconClass: 'si-menu-assets',
2144
+ hasBorder: false,
2145
+ },
2146
+ {
2147
+ icon: Icons.MENUCAMPAIGNS,
2148
+ iconName: 'MENUCAMPAIGNS',
2149
+ iconClass: 'si-menu-campaigns',
2150
+ hasBorder: false,
2151
+ },
2152
+ {
2153
+ icon: Icons.MENUCONTACT,
2154
+ iconName: 'MENUCONTACT',
2155
+ iconClass: 'si-menu-contact',
2156
+ hasBorder: false,
2157
+ },
2158
+ {
2159
+ icon: Icons.MENUCONTENT,
2160
+ iconName: 'MENUCONTENT',
2161
+ iconClass: 'si-menu-content',
2162
+ hasBorder: false,
2163
+ },
2164
+ {
2165
+ icon: Icons.MENUDASHBOARD,
2166
+ iconName: 'MENUDASHBOARD',
2167
+ iconClass: 'si-menu-dashboard',
2168
+ hasBorder: false,
2169
+ },
2170
+ {
2171
+ icon: Icons.MENUEVENTS,
2172
+ iconName: 'MENUEVENTS',
2173
+ iconClass: 'si-menu-events',
2174
+ hasBorder: false,
2175
+ },
2176
+ {
2177
+ icon: Icons.MENUFOLDERS,
2178
+ iconName: 'MENUFOLDERS',
2179
+ iconClass: 'si-menu-folders',
2180
+ hasBorder: false,
2181
+ },
2182
+ {
2183
+ icon: Icons.MENUJOBS,
2184
+ iconName: 'MENUJOBS',
2185
+ iconClass: 'si-menu-jobs',
2186
+ hasBorder: false,
2187
+ },
2188
+ {
2189
+ icon: Icons.MENURETURN,
2190
+ iconName: 'MENURETURN',
2191
+ iconClass: 'si-menu-return',
2192
+ hasBorder: false,
2193
+ },
2194
+ {
2195
+ icon: Icons.MENUWORKFLOWS,
2196
+ iconName: 'MENUWORKFLOWS',
2197
+ iconClass: 'si-menu-workflows',
2198
+ hasBorder: false,
2199
+ },
2200
+ {
2201
+ icon: Icons.MERGE,
2202
+ iconName: 'MERGE',
2203
+ iconClass: 'si-merge',
2204
+ hasBorder: false,
2205
+ },
2206
+ {
2207
+ icon: Icons.MOVE,
2208
+ iconName: 'MOVE',
2209
+ iconClass: 'si-move',
2210
+ hasBorder: false,
2211
+ },
2212
+ {
2213
+ icon: Icons.NIGHTMODE,
2214
+ iconName: 'NIGHTMODE',
2215
+ iconClass: 'si-nightmode',
2216
+ hasBorder: false,
2217
+ },
2218
+ {
2219
+ icon: Icons.NOTIFICATION,
2220
+ iconName: 'NOTIFICATION',
2221
+ iconClass: 'si-notification',
2222
+ hasBorder: false,
2223
+ },
2224
+ {
2225
+ icon: Icons.ORGANIZECOLUMNS,
2226
+ iconName: 'ORGANIZECOLUMNS',
2227
+ iconClass: 'si-organize-columns',
2228
+ hasBorder: false,
2229
+ },
2230
+ {
2231
+ icon: Icons.ORGANIZECONTACTS,
2232
+ iconName: 'ORGANIZECONTACTS',
2233
+ iconClass: 'si-organize-contacts',
2234
+ hasBorder: false,
2235
+ },
2236
+ {
2237
+ icon: Icons.PENDINGINCOMPLETE,
2238
+ iconName: 'PENDINGINCOMPLETE',
2239
+ iconClass: 'si-pending-incomplete',
2240
+ hasBorder: false,
2241
+ },
2242
+ {
2243
+ icon: Icons.PHONENUMBER,
2244
+ iconName: 'PHONENUMBER',
2245
+ iconClass: 'si-phone-number',
2246
+ hasBorder: false,
2247
+ },
2248
+ {
2249
+ icon: Icons.PREVIEW,
2250
+ iconName: 'PREVIEW',
2251
+ iconClass: 'si-preview',
2252
+ hasBorder: false,
2253
+ },
2254
+ {
2255
+ icon: Icons.PROMOTE,
2256
+ iconName: 'PROMOTE',
2257
+ iconClass: 'si-promote',
2258
+ hasBorder: false,
2259
+ },
2260
+ {
2261
+ icon: Icons.REFRESH,
2262
+ iconName: 'REFRESH',
2263
+ iconClass: 'si-refresh',
2264
+ hasBorder: false,
2265
+ },
2266
+ {
2267
+ icon: Icons.REMOVE,
2268
+ iconName: 'REMOVE',
2269
+ iconClass: 'si-remove',
2270
+ hasBorder: false,
2271
+ },
2272
+ {
2273
+ icon: Icons.EXCLUDE,
2274
+ iconName: 'EXCLUDE',
2275
+ iconClass: 'si-exclude',
2276
+ hasBorder: false,
2277
+ },
2278
+ {
2279
+ icon: Icons.RESULTSFILTERS,
2280
+ iconName: 'RESULTSFILTERS',
2281
+ iconClass: 'si-results-filters',
2282
+ hasBorder: false,
2283
+ },
2284
+ {
2285
+ icon: Icons.REVIEW,
2286
+ iconName: 'REVIEW',
2287
+ iconClass: 'si-review',
2288
+ hasBorder: false,
2289
+ },
2290
+ {
2291
+ icon: Icons.SALARY,
2292
+ iconName: 'SALARY',
2293
+ iconClass: 'si-salary',
2294
+ hasBorder: false,
2295
+ },
2296
+ {
2297
+ icon: Icons.SAVE,
2298
+ iconName: 'SAVE',
2299
+ iconClass: 'si-save',
2300
+ hasBorder: false,
2301
+ },
2302
+ {
2303
+ icon: Icons.SEARCHADVANCED,
2304
+ iconName: 'SEARCHADVANCED',
2305
+ iconClass: 'si-search-advanced',
2306
+ hasBorder: false,
2307
+ },
2308
+ {
2309
+ icon: Icons.SEARCHCLEAR,
2310
+ iconName: 'SEARCHCLEAR',
2311
+ iconClass: 'si-search-clear',
2312
+ hasBorder: false,
2313
+ },
2314
+ {
2315
+ icon: Icons.SEARCHNEW,
2316
+ iconName: 'SEARCHNEW',
2317
+ iconClass: 'si-search-new',
2318
+ hasBorder: false,
2319
+ },
2320
+ {
2321
+ icon: Icons.SETTINGSMART,
2322
+ iconName: 'SETTINGSMART',
2323
+ iconClass: 'si-settings-smart',
2324
+ hasBorder: false,
2325
+ },
2326
+ {
2327
+ icon: Icons.SMS,
2328
+ iconName: 'SMS',
2329
+ iconClass: 'si-sms',
2330
+ hasBorder: false,
2331
+ },
2332
+ {
2333
+ icon: Icons.SORTMINI,
2334
+ iconName: 'SORTMINI',
2335
+ iconClass: 'si-sort-mini',
2336
+ hasBorder: false,
2337
+ },
2338
+ {
2339
+ icon: Icons.STATUS,
2340
+ iconName: 'STATUS',
2341
+ iconClass: 'si-status',
2342
+ hasBorder: false,
2343
+ },
2344
+ {
2345
+ icon: Icons.SYSTEMACTION,
2346
+ iconName: 'SYSTEMACTION',
2347
+ iconClass: 'si-system-action',
2348
+ hasBorder: false,
2349
+ },
2350
+ {
2351
+ icon: Icons.TASKCOMPLETED,
2352
+ iconName: 'TASKCOMPLETED',
2353
+ iconClass: 'si-task-completed',
2354
+ hasBorder: false,
2355
+ },
2356
+ {
2357
+ icon: Icons.TASKOPEN,
2358
+ iconName: 'TASKOPEN',
2359
+ iconClass: 'si-task-open',
2360
+ hasBorder: false,
2361
+ },
2362
+ {
2363
+ icon: Icons.TIMEFRAME,
2364
+ iconName: 'TIMEFRAME',
2365
+ iconClass: 'si-timeframe',
2366
+ hasBorder: false,
2367
+ },
2368
+ {
2369
+ icon: Icons.TIMELINE,
2370
+ iconName: 'TIMELINE',
2371
+ iconClass: 'si-timeline',
2372
+ hasBorder: false,
2373
+ },
2374
+ {
2375
+ icon: Icons.UPLOAD,
2376
+ iconName: 'UPLOAD',
2377
+ iconClass: 'si-upload',
2378
+ hasBorder: false,
2379
+ },
2380
+ {
2381
+ icon: Icons.USERMULTIPLE,
2382
+ iconName: 'USERMULTIPLE',
2383
+ iconClass: 'si-user-multiple',
2384
+ hasBorder: false,
2385
+ },
2386
+ {
2387
+ icon: Icons.USER,
2388
+ iconName: 'USER',
2389
+ iconClass: 'si-user',
2390
+ hasBorder: false,
2391
+ },
2392
+ ];
2393
+ }
2394
+ static getInverseIconList() {
2395
+ return [
2396
+ {
2397
+ icon: Icons.ACTIVITY,
2398
+ iconName: 'ACTIVITY',
2399
+ iconClass: 'si-activity',
2400
+ hasBorder: true,
2401
+ },
2402
+ ];
2403
+ }
2404
+ static getHasBorderIconList() {
2405
+ return [
2406
+ {
2407
+ icon: Icons.ADD,
2408
+ iconName: 'ADD',
2409
+ iconClass: 'si-add',
2410
+ hasBorder: true,
2411
+ },
2412
+ {
2413
+ icon: Icons.ARROWNEXT,
2414
+ iconName: 'ARROWNEXT',
2415
+ iconClass: 'si-arrow-next',
2416
+ hasBorder: true,
2417
+ },
2418
+ {
2419
+ icon: Icons.DELETE,
2420
+ iconName: 'DELETE',
2421
+ iconClass: 'si-delete',
2422
+ hasBorder: true,
2423
+ },
2424
+ {
2425
+ icon: Icons.DOWNLOAD,
2426
+ iconName: 'DOWNLOAD',
2427
+ iconClass: 'si-download',
2428
+ hasBorder: true,
2429
+ },
2430
+ {
2431
+ icon: Icons.EDIT,
2432
+ iconName: 'EDIT',
2433
+ iconClass: 'si-edit',
2434
+ hasBorder: true,
2435
+ },
2436
+ {
2437
+ icon: Icons.FEEDBACKYES,
2438
+ iconName: 'FEEDBACKYES',
2439
+ iconClass: 'si-feedback-yes',
2440
+ hasBorder: true,
2441
+ },
2442
+ {
2443
+ icon: Icons.MENUCONTACT,
2444
+ iconName: 'MENUCONTACT',
2445
+ iconClass: 'si-menu-contact',
2446
+ hasBorder: true,
2447
+ },
2448
+ {
2449
+ icon: Icons.MOREOPTIONS,
2450
+ iconName: 'MOREOPTIONS',
2451
+ iconClass: 'si-more-options',
2452
+ hasBorder: true,
2453
+ },
2454
+ {
2455
+ icon: Icons.ORGANIZECOLUMNS,
2456
+ iconName: 'ORGANIZECOLUMNS',
2457
+ iconClass: 'si-organize-columns',
2458
+ hasBorder: true,
2459
+ },
2460
+ {
2461
+ icon: Icons.PREVIEW,
2462
+ iconName: 'PREVIEW',
2463
+ iconClass: 'si-preview',
2464
+ hasBorder: true,
2465
+ },
2466
+ {
2467
+ icon: Icons.SAVE,
2468
+ iconName: 'SAVE',
2469
+ iconClass: 'si-save',
2470
+ hasBorder: true,
2471
+ },
2472
+ ];
2473
+ }
2474
+ }
2475
+
2476
+ class IconExplorerComponent {
2477
+ constructor() {
2478
+ this.iconList = IconExplorerHelper.getAllIcons();
2479
+ this.hasBorderIconsList = IconExplorerHelper.getHasBorderIconList();
2480
+ this.hasNoBorderIconsList = IconExplorerHelper.getHasNoBorderIconList();
2481
+ this.isInverseIconsList = IconExplorerHelper.getInverseIconList();
2482
+ }
2483
+ ngOnInit() {
2484
+ this.iconCount = this.iconList.length;
2485
+ this.explorerTitle = `Iconography (${this.iconCount} icons)`;
2486
+ this.iconHasBorderCount = this.hasBorderIconsList.length;
2487
+ this.borderTitle = `Icons with border (${this.iconHasBorderCount} icons)`;
2488
+ this.iconHasNoBorderCount = this.hasNoBorderIconsList.length;
2489
+ this.noBorderTitle = `Icons without border (${this.iconHasNoBorderCount} icons)`;
2490
+ this.iconisInverseCount = this.isInverseIconsList.length;
2491
+ this.backgroundTitle = `Icons with background (${this.iconisInverseCount} icons)`;
2492
+ }
2493
+ }
2494
+ IconExplorerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconExplorerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2495
+ IconExplorerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: IconExplorerComponent, selector: "symphony-icon-explorer", ngImport: i0, template: "<div class=\"explorer-title\">\n <symphony-h2 [text]=\"explorerTitle\"></symphony-h2>\n</div>\n<div class=\"explorer-subtitle\">\n <symphony-h3 [text]=\"noBorderTitle\"></symphony-h3>\n</div>\n<ul class=\"sfx-icon-list list-unstyled\">\n <li class=\"icon-list-item\" *ngFor=\"let icon of hasNoBorderIconsList\">\n <symphony-icon-swatch [iconSwatchModel]=\"icon\"></symphony-icon-swatch>\n </li>\n</ul>\n\n<div class=\"explorer-subtitle\">\n <symphony-h3 [text]=\"borderTitle\"></symphony-h3>\n</div>\n<ul class=\"sfx-icon-list list-unstyled\">\n <li class=\"icon-list-item\" *ngFor=\"let icon of hasBorderIconsList\">\n <symphony-icon-swatch [iconSwatchModel]=\"icon\"></symphony-icon-swatch>\n </li>\n</ul>\n\n<div class=\"explorer-subtitle\">\n <symphony-h3 [text]=\"backgroundTitle\"></symphony-h3>\n</div>\n<ul class=\"sfx-icon-list list-unstyled\">\n <li class=\"icon-list-item\" *ngFor=\"let icon of isInverseIconsList\">\n <symphony-icon-swatch\n [iconSwatchModel]=\"icon\"\n [isInverse]=\"true\"\n ></symphony-icon-swatch>\n </li>\n</ul>\n", styles: [".sfx-icon-list{flex-direction:row;flex-wrap:wrap;display:flex;width:100vw;margin:20px 0 80px}.icon-list-item{padding:15px 0;flex:0 0 20%}.explorer-title{padding-bottom:10px;border-bottom:5px solid black;margin-bottom:30px}.explorer-subtitle{margin-bottom:10px}\n"], components: [{ type: H2Component, selector: "symphony-h2", inputs: ["text", "isSecondary"] }, { type: H3Component, selector: "symphony-h3", inputs: ["text", "isSecondary"] }, { type: IconSwatchComponent, selector: "symphony-icon-swatch", inputs: ["iconSwatchModel", "isInverse"] }], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
2496
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconExplorerComponent, decorators: [{
2497
+ type: Component,
2498
+ args: [{ selector: 'symphony-icon-explorer', template: "<div class=\"explorer-title\">\n <symphony-h2 [text]=\"explorerTitle\"></symphony-h2>\n</div>\n<div class=\"explorer-subtitle\">\n <symphony-h3 [text]=\"noBorderTitle\"></symphony-h3>\n</div>\n<ul class=\"sfx-icon-list list-unstyled\">\n <li class=\"icon-list-item\" *ngFor=\"let icon of hasNoBorderIconsList\">\n <symphony-icon-swatch [iconSwatchModel]=\"icon\"></symphony-icon-swatch>\n </li>\n</ul>\n\n<div class=\"explorer-subtitle\">\n <symphony-h3 [text]=\"borderTitle\"></symphony-h3>\n</div>\n<ul class=\"sfx-icon-list list-unstyled\">\n <li class=\"icon-list-item\" *ngFor=\"let icon of hasBorderIconsList\">\n <symphony-icon-swatch [iconSwatchModel]=\"icon\"></symphony-icon-swatch>\n </li>\n</ul>\n\n<div class=\"explorer-subtitle\">\n <symphony-h3 [text]=\"backgroundTitle\"></symphony-h3>\n</div>\n<ul class=\"sfx-icon-list list-unstyled\">\n <li class=\"icon-list-item\" *ngFor=\"let icon of isInverseIconsList\">\n <symphony-icon-swatch\n [iconSwatchModel]=\"icon\"\n [isInverse]=\"true\"\n ></symphony-icon-swatch>\n </li>\n</ul>\n", styles: [".sfx-icon-list{flex-direction:row;flex-wrap:wrap;display:flex;width:100vw;margin:20px 0 80px}.icon-list-item{padding:15px 0;flex:0 0 20%}.explorer-title{padding-bottom:10px;border-bottom:5px solid black;margin-bottom:30px}.explorer-subtitle{margin-bottom:10px}\n"] }]
2499
+ }], ctorParameters: function () { return []; } });
2500
+
2501
+ class IconExplorerModule {
2502
+ }
2503
+ IconExplorerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconExplorerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2504
+ IconExplorerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconExplorerModule, declarations: [IconExplorerComponent], imports: [CommonModule, IconSwatchModule, H2Module, H3Module] });
2505
+ IconExplorerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconExplorerModule, imports: [[CommonModule, IconSwatchModule, H2Module, H3Module]] });
2506
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconExplorerModule, decorators: [{
2507
+ type: NgModule,
2508
+ args: [{
2509
+ declarations: [IconExplorerComponent],
2510
+ imports: [CommonModule, IconSwatchModule, H2Module, H3Module],
2511
+ }]
2512
+ }] });
2513
+
2514
+ /*
2515
+ * ATOMS
2516
+ */
2517
+
2518
+ /**
2519
+ * Generated bundle index. Do not edit.
2520
+ */
2521
+
2522
+ export { AtomsModule, AvatarComponent, AvatarModule, BreadcrumbComponent, BreadcrumbModule, ButtonComponent, ButtonModule, ColorSampleComponent, ColorSampleModule, ColorSwatchCollectionComponent, ColorSwatchCollectionModule, ColorSwatchComponent, ColorSwatchModule, ContactActivityScoreComponent, ContactActivityScoreModule, ContextualMenuComponent, ContextualMenuModule, EventsSettingsPageComponent, EventsSettingsPageModule, FilterAreaComponent, FilterAreaModule, GridComponent, GridModule, H1Component, H1Module, H2Component, H2Module, H3Component, H3Module, H4Component, H4Module, H5Component, H5Module, IconComponent, IconExplorerComponent, IconExplorerModule, IconModule, IconSwatchComponent, IconSwatchModule, IconWrapperComponent, IconWrapperModule, InputCheckboxComponent, InputCheckboxModule, InputDropdownComponent, InputDropdownModule, InputRadioComponent, InputRadioModule, InputTextComponent, InputTextModule, MoleculesModule, NoteComponent, NoteListComponent, NoteListModule, NoteModule, ParagraphComponent, ParagraphModule, PillComponent, PillModule, PillsComponent, PillsModule, RelevanceScoreComponent, RelevanceScoreModule, SfxLoaderComponent, SfxLoaderModule, SfxPageLoaderComponent, SfxPageLoaderModule, SfxProgressBarComponent, SfxProgressBarModule, TaskComponent, TaskIconComponent, TaskIconModule, TaskListComponent, TaskListModule, TaskModule, ToasterAlertComponent, ToasterAlertModule, TwoColumnFilterAreaComponent, TwoColumnFilterAreaModule };
2523
+ //# sourceMappingURL=symphony-talent-component-library.mjs.map