@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,2525 @@
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
+ var _a;
682
+ (_a = this.textChangeSubscription) === null || _a === void 0 ? void 0 : _a.unsubscribe();
683
+ }
684
+ onTextChange(event) {
685
+ this.textChange$.next(event.target.value);
686
+ }
687
+ }
688
+ InputTextComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
689
+ 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"] }] });
690
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextComponent, decorators: [{
691
+ type: Component,
692
+ 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"] }]
693
+ }], ctorParameters: function () { return []; }, propDecorators: { placeholder: [{
694
+ type: Input
695
+ }], icon: [{
696
+ type: Input
697
+ }], label: [{
698
+ type: Input
699
+ }], isInverse: [{
700
+ type: Input
701
+ }], textChange: [{
702
+ type: Output
703
+ }] } });
704
+
705
+ class InputTextModule {
706
+ }
707
+ InputTextModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
708
+ InputTextModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextModule, declarations: [InputTextComponent], imports: [CommonModule, IconModule], exports: [InputTextComponent] });
709
+ InputTextModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextModule, imports: [[CommonModule, IconModule]] });
710
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextModule, decorators: [{
711
+ type: NgModule,
712
+ args: [{
713
+ declarations: [InputTextComponent],
714
+ imports: [CommonModule, IconModule],
715
+ exports: [InputTextComponent],
716
+ }]
717
+ }] });
718
+
719
+ class ContextualMenuComponent {
720
+ constructor() {
721
+ this.model = {
722
+ hasBorder: false,
723
+ };
724
+ this.itemClick = new EventEmitter();
725
+ }
726
+ onItemClick(item) {
727
+ this.itemClick.emit(item);
728
+ }
729
+ }
730
+ ContextualMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContextualMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
731
+ 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"] }] });
732
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContextualMenuComponent, decorators: [{
733
+ type: Component,
734
+ 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"] }]
735
+ }], ctorParameters: function () { return []; }, propDecorators: { model: [{
736
+ type: Input
737
+ }], itemClick: [{
738
+ type: Output
739
+ }] } });
740
+
741
+ class ContextualMenuModule {
742
+ }
743
+ ContextualMenuModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContextualMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
744
+ 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] });
745
+ ContextualMenuModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContextualMenuModule, imports: [[CommonModule, BsDropdownModule.forRoot(), BrowserAnimationsModule]] });
746
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContextualMenuModule, decorators: [{
747
+ type: NgModule,
748
+ args: [{
749
+ declarations: [ContextualMenuComponent],
750
+ imports: [CommonModule, BsDropdownModule.forRoot(), BrowserAnimationsModule],
751
+ exports: [ContextualMenuComponent],
752
+ }]
753
+ }] });
754
+
755
+ class InputDropdownComponent {
756
+ constructor() {
757
+ this.selectItem = new EventEmitter();
758
+ this.clearSelection = new EventEmitter();
759
+ }
760
+ ngOnInit() {
761
+ this.initialSelectedValue = this.inputDropdownListModel.selectedName;
762
+ }
763
+ itemClick(action) {
764
+ if (!action.isDisabled) {
765
+ this.selectItem.emit(action);
766
+ this.inputDropdownListModel.selectedName = `${action.name}`;
767
+ }
768
+ }
769
+ onClearSelection() {
770
+ this.inputDropdownListModel.selectedName = this.initialSelectedValue;
771
+ this.clearSelection.emit(this.inputDropdownListModel);
772
+ }
773
+ }
774
+ InputDropdownComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputDropdownComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
775
+ 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"] }] });
776
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputDropdownComponent, decorators: [{
777
+ type: Component,
778
+ 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"] }]
779
+ }], ctorParameters: function () { return []; }, propDecorators: { inputDropdownListModel: [{
780
+ type: Input
781
+ }], disableBtn: [{
782
+ type: Input
783
+ }], isInverse: [{
784
+ type: Input
785
+ }], isRequired: [{
786
+ type: Input
787
+ }], selectItem: [{
788
+ type: Output
789
+ }], clearSelection: [{
790
+ type: Output
791
+ }] } });
792
+
793
+ class InputDropdownModule {
794
+ }
795
+ InputDropdownModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputDropdownModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
796
+ 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] });
797
+ InputDropdownModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputDropdownModule, imports: [[
798
+ BsDropdownModule.forRoot(), CommonModule
799
+ ]] });
800
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputDropdownModule, decorators: [{
801
+ type: NgModule,
802
+ args: [{
803
+ declarations: [InputDropdownComponent],
804
+ imports: [
805
+ BsDropdownModule.forRoot(), CommonModule
806
+ ],
807
+ exports: [InputDropdownComponent]
808
+ }]
809
+ }] });
810
+
811
+ class FilterAreaComponent {
812
+ constructor() { }
813
+ }
814
+ FilterAreaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FilterAreaComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
815
+ 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"] });
816
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FilterAreaComponent, decorators: [{
817
+ type: Component,
818
+ 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"] }]
819
+ }], ctorParameters: function () { return []; } });
820
+
821
+ class FilterAreaModule {
822
+ }
823
+ FilterAreaModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FilterAreaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
824
+ FilterAreaModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FilterAreaModule, declarations: [FilterAreaComponent], imports: [CommonModule], exports: [FilterAreaComponent] });
825
+ FilterAreaModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FilterAreaModule, imports: [[CommonModule]] });
826
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FilterAreaModule, decorators: [{
827
+ type: NgModule,
828
+ args: [{
829
+ declarations: [FilterAreaComponent],
830
+ imports: [CommonModule],
831
+ exports: [FilterAreaComponent]
832
+ }]
833
+ }] });
834
+
835
+ class TwoColumnFilterAreaComponent {
836
+ constructor() { }
837
+ }
838
+ TwoColumnFilterAreaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TwoColumnFilterAreaComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
839
+ 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"] }] });
840
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TwoColumnFilterAreaComponent, decorators: [{
841
+ type: Component,
842
+ 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"] }]
843
+ }], ctorParameters: function () { return []; }, propDecorators: { height: [{
844
+ type: Input
845
+ }] } });
846
+
847
+ class TwoColumnFilterAreaModule {
848
+ }
849
+ TwoColumnFilterAreaModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TwoColumnFilterAreaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
850
+ TwoColumnFilterAreaModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TwoColumnFilterAreaModule, declarations: [TwoColumnFilterAreaComponent], imports: [CommonModule], exports: [TwoColumnFilterAreaComponent] });
851
+ TwoColumnFilterAreaModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TwoColumnFilterAreaModule, imports: [[CommonModule]] });
852
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TwoColumnFilterAreaModule, decorators: [{
853
+ type: NgModule,
854
+ args: [{
855
+ declarations: [TwoColumnFilterAreaComponent],
856
+ imports: [CommonModule],
857
+ exports: [TwoColumnFilterAreaComponent],
858
+ }]
859
+ }] });
860
+
861
+ var ActivityScoreLevel;
862
+ (function (ActivityScoreLevel) {
863
+ ActivityScoreLevel["Low"] = "low";
864
+ ActivityScoreLevel["Medium"] = "medium";
865
+ ActivityScoreLevel["High"] = "high";
866
+ ActivityScoreLevel["Empty"] = "empty";
867
+ })(ActivityScoreLevel || (ActivityScoreLevel = {}));
868
+
869
+ class ContactActivityScoreComponent {
870
+ constructor() {
871
+ this.contactActivityScoreModel = { activityScore: ActivityScoreLevel.Low };
872
+ this.contact = { candidateScoreActivityScore: 0 };
873
+ }
874
+ refresh(params) {
875
+ return true;
876
+ }
877
+ agInit(params) {
878
+ this.contact = params.data;
879
+ if (!this.contact.header5) {
880
+ this.dataAvailable = 'N/A';
881
+ }
882
+ else {
883
+ this.dataAvailable = this.contact.header5;
884
+ }
885
+ switch (true) {
886
+ case this.contact.header5 >= 0 && this.contact.header5 < 34: {
887
+ this.contactActivityScoreModel.activityScore = ActivityScoreLevel.Low;
888
+ break;
889
+ }
890
+ case this.contact.header5 >= 34 && this.contact.header5 <= 66: {
891
+ this.contactActivityScoreModel.activityScore =
892
+ ActivityScoreLevel.Medium;
893
+ break;
894
+ }
895
+ case this.contact.header5 > 66: {
896
+ this.contactActivityScoreModel.activityScore = ActivityScoreLevel.High;
897
+ break;
898
+ }
899
+ default: {
900
+ this.contactActivityScoreModel.activityScore = ActivityScoreLevel.Empty;
901
+ break;
902
+ }
903
+ }
904
+ }
905
+ }
906
+ ContactActivityScoreComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContactActivityScoreComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
907
+ 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"] });
908
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContactActivityScoreComponent, decorators: [{
909
+ type: Component,
910
+ 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"] }]
911
+ }], ctorParameters: function () { return []; } });
912
+
913
+ class EventSettingsMoreOptionsComponent {
914
+ constructor() {
915
+ this.agGridParams = {};
916
+ this.moreOptions = {
917
+ items: ['Edit', 'Set as Default'],
918
+ hasBorder: false,
919
+ };
920
+ }
921
+ refresh(params) {
922
+ return true;
923
+ }
924
+ agInit(params) {
925
+ this.agGridParams = params;
926
+ }
927
+ onItemClick(item) {
928
+ const action = {
929
+ item,
930
+ row: this.agGridParams,
931
+ };
932
+ this.agGridParams.itemClick(action);
933
+ }
934
+ }
935
+ EventSettingsMoreOptionsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventSettingsMoreOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
936
+ 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"] }] });
937
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventSettingsMoreOptionsComponent, decorators: [{
938
+ type: Component,
939
+ 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" }]
940
+ }], ctorParameters: function () { return []; } });
941
+
942
+ class InputToggleComponent {
943
+ constructor() {
944
+ this.toggleClick = new EventEmitter();
945
+ }
946
+ toggleClicked() {
947
+ this.isToggled = !this.isToggled;
948
+ this.toggleClick.emit(this.isToggled);
949
+ }
950
+ }
951
+ InputToggleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputToggleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
952
+ 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"] }] });
953
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputToggleComponent, decorators: [{
954
+ type: Component,
955
+ 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"] }]
956
+ }], ctorParameters: function () { return []; }, propDecorators: { isToggled: [{
957
+ type: Input
958
+ }], isInverse: [{
959
+ type: Input
960
+ }], toggleClick: [{
961
+ type: Output
962
+ }] } });
963
+
964
+ class GridToggleCellRendererComponent {
965
+ refresh(params) {
966
+ return true;
967
+ }
968
+ agInit(params) {
969
+ this.params = params;
970
+ }
971
+ toggleClickedHandler(isToggled) {
972
+ const model = {
973
+ isToggled,
974
+ row: this.params,
975
+ };
976
+ this.params.clicked(model);
977
+ }
978
+ }
979
+ GridToggleCellRendererComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridToggleCellRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
980
+ 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"] }] });
981
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridToggleCellRendererComponent, decorators: [{
982
+ type: Component,
983
+ 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" }]
984
+ }] });
985
+
986
+ var RelevanceScoreLevel;
987
+ (function (RelevanceScoreLevel) {
988
+ RelevanceScoreLevel["Value"] = "value";
989
+ RelevanceScoreLevel["Empty"] = "empty";
990
+ })(RelevanceScoreLevel || (RelevanceScoreLevel = {}));
991
+
992
+ class RelevanceScoreComponent {
993
+ constructor() {
994
+ this.relevanceScoreModel = { relevanceScore: RelevanceScoreLevel.Empty };
995
+ this.contact = { relevanceScore: 0 };
996
+ }
997
+ refresh(params) {
998
+ return true;
999
+ }
1000
+ agInit(params) {
1001
+ this.contact = params.data;
1002
+ if (this.contact) {
1003
+ if (this.contact.header4 || this.contact.header4 === 0) {
1004
+ this.relevanceData = this.contact.header4;
1005
+ this.relevanceScoreModel.relevanceScore = RelevanceScoreLevel.Value;
1006
+ }
1007
+ else {
1008
+ this.relevanceData = 'N/A';
1009
+ }
1010
+ }
1011
+ }
1012
+ }
1013
+ RelevanceScoreComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: RelevanceScoreComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1014
+ 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"] });
1015
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: RelevanceScoreComponent, decorators: [{
1016
+ type: Component,
1017
+ 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"] }]
1018
+ }], ctorParameters: function () { return []; } });
1019
+
1020
+ class GridComponent {
1021
+ constructor() {
1022
+ this.rowHeightPage = 80;
1023
+ this.gridHeight = 100;
1024
+ this.frameworkComponents = this.getFrameworkComponents();
1025
+ this.getRowHeight = () => {
1026
+ return this.rowHeightPage;
1027
+ };
1028
+ }
1029
+ onGridReady(gridReadyEvent) {
1030
+ gridReadyEvent.api.sizeColumnsToFit();
1031
+ }
1032
+ getFrameworkComponents() {
1033
+ return {
1034
+ contactActivityScore: ContactActivityScoreComponent,
1035
+ fitScore: RelevanceScoreComponent,
1036
+ gridToggle: GridToggleCellRendererComponent,
1037
+ moreActions: EventSettingsMoreOptionsComponent,
1038
+ };
1039
+ }
1040
+ }
1041
+ GridComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1042
+ 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"] }] });
1043
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridComponent, decorators: [{
1044
+ type: Component,
1045
+ 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: [""] }]
1046
+ }], ctorParameters: function () { return []; }, propDecorators: { columnDefs: [{
1047
+ type: Input
1048
+ }], rowData: [{
1049
+ type: Input
1050
+ }] } });
1051
+
1052
+ class ContactActivityScoreModule {
1053
+ }
1054
+ ContactActivityScoreModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContactActivityScoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1055
+ ContactActivityScoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContactActivityScoreModule, declarations: [ContactActivityScoreComponent], imports: [CommonModule] });
1056
+ ContactActivityScoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContactActivityScoreModule, imports: [[CommonModule]] });
1057
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContactActivityScoreModule, decorators: [{
1058
+ type: NgModule,
1059
+ args: [{
1060
+ declarations: [ContactActivityScoreComponent],
1061
+ imports: [CommonModule],
1062
+ }]
1063
+ }] });
1064
+
1065
+ class EventSettingsMoreOptionsModule {
1066
+ }
1067
+ EventSettingsMoreOptionsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventSettingsMoreOptionsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1068
+ EventSettingsMoreOptionsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventSettingsMoreOptionsModule, declarations: [EventSettingsMoreOptionsComponent], imports: [CommonModule, ContextualMenuModule], exports: [EventSettingsMoreOptionsComponent] });
1069
+ EventSettingsMoreOptionsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventSettingsMoreOptionsModule, imports: [[CommonModule, ContextualMenuModule]] });
1070
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventSettingsMoreOptionsModule, decorators: [{
1071
+ type: NgModule,
1072
+ args: [{
1073
+ declarations: [EventSettingsMoreOptionsComponent],
1074
+ imports: [CommonModule, ContextualMenuModule],
1075
+ exports: [EventSettingsMoreOptionsComponent],
1076
+ }]
1077
+ }] });
1078
+
1079
+ class InputToggleModule {
1080
+ }
1081
+ InputToggleModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputToggleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1082
+ InputToggleModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputToggleModule, declarations: [InputToggleComponent], imports: [CommonModule], exports: [InputToggleComponent] });
1083
+ InputToggleModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputToggleModule, imports: [[CommonModule]] });
1084
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputToggleModule, decorators: [{
1085
+ type: NgModule,
1086
+ args: [{
1087
+ declarations: [InputToggleComponent],
1088
+ imports: [CommonModule],
1089
+ exports: [InputToggleComponent],
1090
+ }]
1091
+ }] });
1092
+
1093
+ class GridToggleCellRendererModule {
1094
+ }
1095
+ GridToggleCellRendererModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridToggleCellRendererModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1096
+ GridToggleCellRendererModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridToggleCellRendererModule, declarations: [GridToggleCellRendererComponent], imports: [CommonModule, InputToggleModule], exports: [GridToggleCellRendererComponent] });
1097
+ GridToggleCellRendererModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridToggleCellRendererModule, imports: [[CommonModule, InputToggleModule]] });
1098
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridToggleCellRendererModule, decorators: [{
1099
+ type: NgModule,
1100
+ args: [{
1101
+ declarations: [GridToggleCellRendererComponent],
1102
+ imports: [CommonModule, InputToggleModule],
1103
+ exports: [GridToggleCellRendererComponent],
1104
+ }]
1105
+ }] });
1106
+
1107
+ class RelevanceScoreModule {
1108
+ }
1109
+ RelevanceScoreModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: RelevanceScoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1110
+ RelevanceScoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: RelevanceScoreModule, declarations: [RelevanceScoreComponent], imports: [CommonModule] });
1111
+ RelevanceScoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: RelevanceScoreModule, imports: [[CommonModule]] });
1112
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: RelevanceScoreModule, decorators: [{
1113
+ type: NgModule,
1114
+ args: [{
1115
+ declarations: [RelevanceScoreComponent],
1116
+ imports: [CommonModule],
1117
+ }]
1118
+ }] });
1119
+
1120
+ class FrameworkModule {
1121
+ }
1122
+ FrameworkModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FrameworkModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1123
+ FrameworkModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FrameworkModule, exports: [ContactActivityScoreModule,
1124
+ RelevanceScoreModule,
1125
+ GridToggleCellRendererModule,
1126
+ EventSettingsMoreOptionsModule] });
1127
+ FrameworkModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FrameworkModule, imports: [[], ContactActivityScoreModule,
1128
+ RelevanceScoreModule,
1129
+ GridToggleCellRendererModule,
1130
+ EventSettingsMoreOptionsModule] });
1131
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FrameworkModule, decorators: [{
1132
+ type: NgModule,
1133
+ args: [{
1134
+ declarations: [],
1135
+ imports: [],
1136
+ exports: [
1137
+ ContactActivityScoreModule,
1138
+ RelevanceScoreModule,
1139
+ GridToggleCellRendererModule,
1140
+ EventSettingsMoreOptionsModule,
1141
+ ],
1142
+ }]
1143
+ }] });
1144
+
1145
+ class GridModule {
1146
+ }
1147
+ GridModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1148
+ 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] });
1149
+ GridModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridModule, imports: [[CommonModule, AgGridModule.withComponents([]), FrameworkModule]] });
1150
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridModule, decorators: [{
1151
+ type: NgModule,
1152
+ args: [{
1153
+ declarations: [GridComponent],
1154
+ imports: [CommonModule, AgGridModule.withComponents([]), FrameworkModule],
1155
+ exports: [GridComponent]
1156
+ }]
1157
+ }] });
1158
+
1159
+ class SfxLoaderComponent {
1160
+ constructor() {
1161
+ this.leftStyle = 50;
1162
+ }
1163
+ }
1164
+ SfxLoaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxLoaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1165
+ 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"] });
1166
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxLoaderComponent, decorators: [{
1167
+ type: Component,
1168
+ 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"] }]
1169
+ }], ctorParameters: function () { return []; }, propDecorators: { leftStyle: [{
1170
+ type: Input
1171
+ }] } });
1172
+
1173
+ class SfxLoaderModule {
1174
+ }
1175
+ SfxLoaderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxLoaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1176
+ SfxLoaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxLoaderModule, declarations: [SfxLoaderComponent], imports: [CommonModule], exports: [SfxLoaderComponent] });
1177
+ SfxLoaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxLoaderModule, imports: [[CommonModule]] });
1178
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxLoaderModule, decorators: [{
1179
+ type: NgModule,
1180
+ args: [{
1181
+ declarations: [SfxLoaderComponent],
1182
+ imports: [CommonModule],
1183
+ exports: [SfxLoaderComponent],
1184
+ }]
1185
+ }] });
1186
+
1187
+ class SfxPageLoaderComponent {
1188
+ constructor() { }
1189
+ }
1190
+ SfxPageLoaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxPageLoaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1191
+ 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"] });
1192
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxPageLoaderComponent, decorators: [{
1193
+ type: Component,
1194
+ 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"] }]
1195
+ }], ctorParameters: function () { return []; } });
1196
+
1197
+ class SfxPageLoaderModule {
1198
+ }
1199
+ SfxPageLoaderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxPageLoaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1200
+ SfxPageLoaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxPageLoaderModule, declarations: [SfxPageLoaderComponent], imports: [CommonModule], exports: [SfxPageLoaderComponent] });
1201
+ SfxPageLoaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxPageLoaderModule, imports: [[CommonModule]] });
1202
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxPageLoaderModule, decorators: [{
1203
+ type: NgModule,
1204
+ args: [{
1205
+ declarations: [SfxPageLoaderComponent],
1206
+ imports: [CommonModule],
1207
+ exports: [SfxPageLoaderComponent],
1208
+ }]
1209
+ }] });
1210
+
1211
+ class SfxProgressBarComponent {
1212
+ constructor() { }
1213
+ }
1214
+ SfxProgressBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxProgressBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1215
+ 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"] });
1216
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxProgressBarComponent, decorators: [{
1217
+ type: Component,
1218
+ 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"] }]
1219
+ }], ctorParameters: function () { return []; }, propDecorators: { progress: [{
1220
+ type: Input
1221
+ }] } });
1222
+
1223
+ class SfxProgressBarModule {
1224
+ }
1225
+ SfxProgressBarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxProgressBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1226
+ SfxProgressBarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxProgressBarModule, declarations: [SfxProgressBarComponent], imports: [CommonModule], exports: [SfxProgressBarComponent] });
1227
+ SfxProgressBarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxProgressBarModule, imports: [[CommonModule]] });
1228
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SfxProgressBarModule, decorators: [{
1229
+ type: NgModule,
1230
+ args: [{
1231
+ declarations: [SfxProgressBarComponent],
1232
+ imports: [CommonModule],
1233
+ exports: [SfxProgressBarComponent],
1234
+ }]
1235
+ }] });
1236
+
1237
+ class ToasterAlertComponent {
1238
+ constructor() {
1239
+ this.showAlert = false;
1240
+ this.hideAlert = new EventEmitter();
1241
+ this.checkBulkStatus = new EventEmitter();
1242
+ }
1243
+ ngOnInit() {
1244
+ this.showAlert = false;
1245
+ const alertDuration = this.alertModel.duration
1246
+ ? this.alertModel.duration
1247
+ : 3000;
1248
+ const delayDuration = this.alertModel.delay ? this.alertModel.delay : 0;
1249
+ this.timeToShowSubscription = timer(0)
1250
+ .pipe(delay(delayDuration))
1251
+ .subscribe((t) => {
1252
+ this.showAlert = true;
1253
+ this.alertTimerSubscription = timer(alertDuration).subscribe((f) => this.hideToasterAlert());
1254
+ });
1255
+ }
1256
+ hideToasterAlert() {
1257
+ this.hideAlert.emit();
1258
+ }
1259
+ onCheckBulkStatus() {
1260
+ this.checkBulkStatus.emit();
1261
+ }
1262
+ ngOnDestroy() {
1263
+ var _a, _b;
1264
+ (_a = this.alertTimerSubscription) === null || _a === void 0 ? void 0 : _a.unsubscribe();
1265
+ (_b = this.timeToShowSubscription) === null || _b === void 0 ? void 0 : _b.unsubscribe();
1266
+ }
1267
+ }
1268
+ ToasterAlertComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToasterAlertComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1269
+ 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"] }] });
1270
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToasterAlertComponent, decorators: [{
1271
+ type: Component,
1272
+ 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"] }]
1273
+ }], ctorParameters: function () { return []; }, propDecorators: { alertModel: [{
1274
+ type: Input
1275
+ }], showAlert: [{
1276
+ type: Input
1277
+ }], hideAlert: [{
1278
+ type: Output
1279
+ }], checkBulkStatus: [{
1280
+ type: Output
1281
+ }] } });
1282
+
1283
+ class ToasterAlertModule {
1284
+ }
1285
+ ToasterAlertModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToasterAlertModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1286
+ ToasterAlertModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToasterAlertModule, declarations: [ToasterAlertComponent], imports: [CommonModule], exports: [ToasterAlertComponent] });
1287
+ ToasterAlertModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToasterAlertModule, imports: [[CommonModule]] });
1288
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToasterAlertModule, decorators: [{
1289
+ type: NgModule,
1290
+ args: [{
1291
+ declarations: [ToasterAlertComponent],
1292
+ imports: [CommonModule],
1293
+ exports: [ToasterAlertComponent],
1294
+ }]
1295
+ }] });
1296
+
1297
+ class AtomsModule {
1298
+ }
1299
+ AtomsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1300
+ AtomsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, exports: [ButtonModule,
1301
+ ContextualMenuModule,
1302
+ AvatarModule,
1303
+ PillModule,
1304
+ TaskIconModule,
1305
+ ColorSampleModule,
1306
+ H1Module,
1307
+ H2Module,
1308
+ H3Module,
1309
+ H4Module,
1310
+ H5Module,
1311
+ ParagraphModule,
1312
+ IconModule,
1313
+ IconWrapperModule,
1314
+ FilterAreaModule,
1315
+ TwoColumnFilterAreaModule,
1316
+ InputRadioModule,
1317
+ InputCheckboxModule,
1318
+ InputTextModule,
1319
+ InputDropdownModule,
1320
+ GridModule,
1321
+ ContactActivityScoreModule,
1322
+ RelevanceScoreModule,
1323
+ ToasterAlertModule,
1324
+ SfxLoaderModule,
1325
+ SfxPageLoaderModule,
1326
+ SfxProgressBarModule] });
1327
+ AtomsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, imports: [[], ButtonModule,
1328
+ ContextualMenuModule,
1329
+ AvatarModule,
1330
+ PillModule,
1331
+ TaskIconModule,
1332
+ ColorSampleModule,
1333
+ H1Module,
1334
+ H2Module,
1335
+ H3Module,
1336
+ H4Module,
1337
+ H5Module,
1338
+ ParagraphModule,
1339
+ IconModule,
1340
+ IconWrapperModule,
1341
+ FilterAreaModule,
1342
+ TwoColumnFilterAreaModule,
1343
+ InputRadioModule,
1344
+ InputCheckboxModule,
1345
+ InputTextModule,
1346
+ InputDropdownModule,
1347
+ GridModule,
1348
+ ContactActivityScoreModule,
1349
+ RelevanceScoreModule,
1350
+ ToasterAlertModule,
1351
+ SfxLoaderModule,
1352
+ SfxPageLoaderModule,
1353
+ SfxProgressBarModule] });
1354
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, decorators: [{
1355
+ type: NgModule,
1356
+ args: [{
1357
+ declarations: [],
1358
+ imports: [],
1359
+ exports: [
1360
+ ButtonModule,
1361
+ ContextualMenuModule,
1362
+ AvatarModule,
1363
+ PillModule,
1364
+ TaskIconModule,
1365
+ ColorSampleModule,
1366
+ H1Module,
1367
+ H2Module,
1368
+ H3Module,
1369
+ H4Module,
1370
+ H5Module,
1371
+ ParagraphModule,
1372
+ IconModule,
1373
+ IconWrapperModule,
1374
+ FilterAreaModule,
1375
+ TwoColumnFilterAreaModule,
1376
+ InputRadioModule,
1377
+ InputCheckboxModule,
1378
+ InputTextModule,
1379
+ InputDropdownModule,
1380
+ GridModule,
1381
+ ContactActivityScoreModule,
1382
+ RelevanceScoreModule,
1383
+ ToasterAlertModule,
1384
+ SfxLoaderModule,
1385
+ SfxPageLoaderModule,
1386
+ SfxProgressBarModule
1387
+ ],
1388
+ }]
1389
+ }] });
1390
+
1391
+ class BreadcrumbComponent {
1392
+ constructor() { }
1393
+ ngOnInit() {
1394
+ this.icon = Icons.ARROWNEXT;
1395
+ }
1396
+ }
1397
+ BreadcrumbComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: BreadcrumbComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1398
+ 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"] }] });
1399
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: BreadcrumbComponent, decorators: [{
1400
+ type: Component,
1401
+ 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"] }]
1402
+ }], ctorParameters: function () { return []; }, propDecorators: { breadcrumbs: [{
1403
+ type: Input
1404
+ }] } });
1405
+
1406
+ class BreadcrumbModule {
1407
+ }
1408
+ BreadcrumbModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: BreadcrumbModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1409
+ BreadcrumbModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: BreadcrumbModule, declarations: [BreadcrumbComponent], imports: [CommonModule, H3Module, IconModule], exports: [BreadcrumbComponent] });
1410
+ BreadcrumbModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: BreadcrumbModule, imports: [[CommonModule, H3Module, IconModule]] });
1411
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: BreadcrumbModule, decorators: [{
1412
+ type: NgModule,
1413
+ args: [{
1414
+ declarations: [BreadcrumbComponent],
1415
+ imports: [CommonModule, H3Module, IconModule],
1416
+ exports: [BreadcrumbComponent],
1417
+ }]
1418
+ }] });
1419
+
1420
+ class ColorSwatchComponent {
1421
+ constructor() {
1422
+ this.colorSwatchModel = {
1423
+ colorCode: '',
1424
+ sassCode: '',
1425
+ };
1426
+ }
1427
+ ngOnInit() {
1428
+ this.getDescription();
1429
+ }
1430
+ getDescription() {
1431
+ this.description = `${this.colorSwatchModel.colorCode} - ${this.colorSwatchModel.sassCode}`;
1432
+ return this.description;
1433
+ }
1434
+ }
1435
+ ColorSwatchComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1436
+ 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"] }] });
1437
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchComponent, decorators: [{
1438
+ type: Component,
1439
+ 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: [""] }]
1440
+ }], ctorParameters: function () { return []; }, propDecorators: { colorSwatchModel: [{
1441
+ type: Input
1442
+ }] } });
1443
+
1444
+ class ColorSwatchModule {
1445
+ }
1446
+ ColorSwatchModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1447
+ ColorSwatchModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchModule, declarations: [ColorSwatchComponent], imports: [CommonModule,
1448
+ ColorSampleModule,
1449
+ H3Module,
1450
+ ParagraphModule], exports: [ColorSwatchComponent] });
1451
+ ColorSwatchModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchModule, imports: [[
1452
+ CommonModule,
1453
+ ColorSampleModule,
1454
+ H3Module,
1455
+ ParagraphModule
1456
+ ]] });
1457
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchModule, decorators: [{
1458
+ type: NgModule,
1459
+ args: [{
1460
+ declarations: [ColorSwatchComponent],
1461
+ imports: [
1462
+ CommonModule,
1463
+ ColorSampleModule,
1464
+ H3Module,
1465
+ ParagraphModule
1466
+ ],
1467
+ exports: [ColorSwatchComponent],
1468
+ }]
1469
+ }] });
1470
+
1471
+ class IconSwatchComponent {
1472
+ constructor() {
1473
+ this.iconSwatchModel = {
1474
+ iconName: '',
1475
+ iconClass: '',
1476
+ };
1477
+ }
1478
+ }
1479
+ IconSwatchComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconSwatchComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1480
+ 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"] }] });
1481
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconSwatchComponent, decorators: [{
1482
+ type: Component,
1483
+ 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"] }]
1484
+ }], ctorParameters: function () { return []; }, propDecorators: { iconSwatchModel: [{
1485
+ type: Input
1486
+ }], isInverse: [{
1487
+ type: Input
1488
+ }] } });
1489
+
1490
+ class IconSwatchModule {
1491
+ }
1492
+ IconSwatchModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconSwatchModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1493
+ IconSwatchModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconSwatchModule, declarations: [IconSwatchComponent], imports: [CommonModule,
1494
+ IconModule,
1495
+ H5Module,
1496
+ ParagraphModule,
1497
+ IconWrapperModule], exports: [IconSwatchComponent] });
1498
+ IconSwatchModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconSwatchModule, imports: [[
1499
+ CommonModule,
1500
+ IconModule,
1501
+ H5Module,
1502
+ ParagraphModule,
1503
+ IconWrapperModule,
1504
+ ]] });
1505
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconSwatchModule, decorators: [{
1506
+ type: NgModule,
1507
+ args: [{
1508
+ declarations: [IconSwatchComponent],
1509
+ imports: [
1510
+ CommonModule,
1511
+ IconModule,
1512
+ H5Module,
1513
+ ParagraphModule,
1514
+ IconWrapperModule,
1515
+ ],
1516
+ exports: [IconSwatchComponent],
1517
+ }]
1518
+ }] });
1519
+
1520
+ class NoteComponent {
1521
+ constructor() {
1522
+ this.noteModel = {
1523
+ firstName: '',
1524
+ lastName: '',
1525
+ listTitle: '',
1526
+ timeStamp: '',
1527
+ description: '',
1528
+ moreActions: {
1529
+ items: [],
1530
+ hasBorder: false,
1531
+ },
1532
+ };
1533
+ }
1534
+ }
1535
+ NoteComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1536
+ 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"] }] });
1537
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteComponent, decorators: [{
1538
+ type: Component,
1539
+ 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"] }]
1540
+ }], ctorParameters: function () { return []; }, propDecorators: { noteModel: [{
1541
+ type: Input
1542
+ }] } });
1543
+
1544
+ class NoteModule {
1545
+ }
1546
+ NoteModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1547
+ NoteModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteModule, declarations: [NoteComponent], imports: [CommonModule,
1548
+ AvatarModule,
1549
+ ContextualMenuModule,
1550
+ H3Module,
1551
+ ParagraphModule], exports: [NoteComponent] });
1552
+ NoteModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteModule, imports: [[
1553
+ CommonModule,
1554
+ AvatarModule,
1555
+ ContextualMenuModule,
1556
+ H3Module,
1557
+ ParagraphModule
1558
+ ]] });
1559
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteModule, decorators: [{
1560
+ type: NgModule,
1561
+ args: [{
1562
+ declarations: [NoteComponent],
1563
+ imports: [
1564
+ CommonModule,
1565
+ AvatarModule,
1566
+ ContextualMenuModule,
1567
+ H3Module,
1568
+ ParagraphModule
1569
+ ],
1570
+ exports: [NoteComponent]
1571
+ }]
1572
+ }] });
1573
+
1574
+ class PillsComponent {
1575
+ constructor() {
1576
+ this.removePill = new EventEmitter();
1577
+ }
1578
+ onRemovePill(event) {
1579
+ this.removePill.emit(this.pillsList.find(p => p.pillLabel.toLowerCase() === event.toLowerCase()));
1580
+ }
1581
+ }
1582
+ PillsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1583
+ 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"] }] });
1584
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillsComponent, decorators: [{
1585
+ type: Component,
1586
+ 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"] }]
1587
+ }], ctorParameters: function () { return []; }, propDecorators: { hasClose: [{
1588
+ type: Input
1589
+ }], pillsList: [{
1590
+ type: Input
1591
+ }], hasTooltips: [{
1592
+ type: Input
1593
+ }], removePill: [{
1594
+ type: Output
1595
+ }] } });
1596
+
1597
+ class PillsModule {
1598
+ }
1599
+ PillsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1600
+ PillsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillsModule, declarations: [PillsComponent], imports: [CommonModule,
1601
+ PillModule], exports: [PillsComponent] });
1602
+ PillsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillsModule, imports: [[
1603
+ CommonModule,
1604
+ PillModule
1605
+ ]] });
1606
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillsModule, decorators: [{
1607
+ type: NgModule,
1608
+ args: [{
1609
+ declarations: [PillsComponent],
1610
+ imports: [
1611
+ CommonModule,
1612
+ PillModule
1613
+ ],
1614
+ exports: [
1615
+ PillsComponent
1616
+ ]
1617
+ }]
1618
+ }] });
1619
+
1620
+ class TaskComponent {
1621
+ constructor() {
1622
+ this.taskModel = {
1623
+ assignee: '',
1624
+ title: '',
1625
+ dueDate: '',
1626
+ };
1627
+ }
1628
+ }
1629
+ TaskComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1630
+ 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"] }] });
1631
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskComponent, decorators: [{
1632
+ type: Component,
1633
+ 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"] }]
1634
+ }], ctorParameters: function () { return []; }, propDecorators: { taskModel: [{
1635
+ type: Input
1636
+ }] } });
1637
+
1638
+ class TaskModule {
1639
+ }
1640
+ TaskModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1641
+ TaskModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskModule, declarations: [TaskComponent], imports: [CommonModule,
1642
+ TaskIconModule,
1643
+ ContextualMenuModule,
1644
+ H3Module,
1645
+ ParagraphModule], exports: [TaskComponent] });
1646
+ TaskModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskModule, imports: [[
1647
+ CommonModule,
1648
+ TaskIconModule,
1649
+ ContextualMenuModule,
1650
+ H3Module,
1651
+ ParagraphModule
1652
+ ]] });
1653
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskModule, decorators: [{
1654
+ type: NgModule,
1655
+ args: [{
1656
+ declarations: [TaskComponent],
1657
+ imports: [
1658
+ CommonModule,
1659
+ TaskIconModule,
1660
+ ContextualMenuModule,
1661
+ H3Module,
1662
+ ParagraphModule
1663
+ ],
1664
+ exports: [TaskComponent],
1665
+ }]
1666
+ }] });
1667
+
1668
+ class MoleculesModule {
1669
+ }
1670
+ MoleculesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: MoleculesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1671
+ MoleculesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: MoleculesModule, imports: [CommonModule,
1672
+ AvatarModule,
1673
+ ContextualMenuModule,
1674
+ PillsModule,
1675
+ TaskModule,
1676
+ ColorSwatchModule,
1677
+ IconSwatchModule,
1678
+ BreadcrumbModule], exports: [NoteModule,
1679
+ PillsModule,
1680
+ TaskModule,
1681
+ ColorSwatchModule,
1682
+ IconSwatchModule,
1683
+ BreadcrumbModule] });
1684
+ MoleculesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: MoleculesModule, imports: [[
1685
+ CommonModule,
1686
+ AvatarModule,
1687
+ ContextualMenuModule,
1688
+ PillsModule,
1689
+ TaskModule,
1690
+ ColorSwatchModule,
1691
+ IconSwatchModule,
1692
+ BreadcrumbModule,
1693
+ ], NoteModule,
1694
+ PillsModule,
1695
+ TaskModule,
1696
+ ColorSwatchModule,
1697
+ IconSwatchModule,
1698
+ BreadcrumbModule] });
1699
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: MoleculesModule, decorators: [{
1700
+ type: NgModule,
1701
+ args: [{
1702
+ declarations: [],
1703
+ imports: [
1704
+ CommonModule,
1705
+ AvatarModule,
1706
+ ContextualMenuModule,
1707
+ PillsModule,
1708
+ TaskModule,
1709
+ ColorSwatchModule,
1710
+ IconSwatchModule,
1711
+ BreadcrumbModule,
1712
+ ],
1713
+ exports: [
1714
+ NoteModule,
1715
+ PillsModule,
1716
+ TaskModule,
1717
+ ColorSwatchModule,
1718
+ IconSwatchModule,
1719
+ BreadcrumbModule,
1720
+ ],
1721
+ }]
1722
+ }] });
1723
+
1724
+ class TaskListComponent {
1725
+ constructor() { }
1726
+ }
1727
+ TaskListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1728
+ 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"] }] });
1729
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskListComponent, decorators: [{
1730
+ type: Component,
1731
+ 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"] }]
1732
+ }], ctorParameters: function () { return []; }, propDecorators: { taskList: [{
1733
+ type: Input
1734
+ }] } });
1735
+
1736
+ class TaskListModule {
1737
+ }
1738
+ TaskListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1739
+ TaskListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskListModule, declarations: [TaskListComponent], imports: [CommonModule, TaskModule], exports: [TaskListComponent] });
1740
+ TaskListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskListModule, imports: [[CommonModule, TaskModule]] });
1741
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskListModule, decorators: [{
1742
+ type: NgModule,
1743
+ args: [{
1744
+ declarations: [TaskListComponent],
1745
+ imports: [CommonModule, TaskModule],
1746
+ exports: [TaskListComponent],
1747
+ }]
1748
+ }] });
1749
+
1750
+ class NoteListComponent {
1751
+ constructor() { }
1752
+ }
1753
+ NoteListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1754
+ 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"] }] });
1755
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteListComponent, decorators: [{
1756
+ type: Component,
1757
+ 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"] }]
1758
+ }], ctorParameters: function () { return []; }, propDecorators: { noteList: [{
1759
+ type: Input
1760
+ }] } });
1761
+
1762
+ class NoteListModule {
1763
+ }
1764
+ NoteListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1765
+ NoteListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteListModule, declarations: [NoteListComponent], imports: [CommonModule, NoteModule], exports: [NoteListComponent] });
1766
+ NoteListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteListModule, imports: [[CommonModule, NoteModule]] });
1767
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteListModule, decorators: [{
1768
+ type: NgModule,
1769
+ args: [{
1770
+ declarations: [NoteListComponent],
1771
+ imports: [CommonModule, NoteModule],
1772
+ exports: [NoteListComponent]
1773
+ }]
1774
+ }] });
1775
+
1776
+ class AdminListTemplateComponent {
1777
+ constructor() { }
1778
+ }
1779
+ AdminListTemplateComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdminListTemplateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1780
+ 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"] });
1781
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdminListTemplateComponent, decorators: [{
1782
+ type: Component,
1783
+ 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"] }]
1784
+ }], ctorParameters: function () { return []; } });
1785
+
1786
+ class PlaceholderComponent {
1787
+ constructor() { }
1788
+ }
1789
+ PlaceholderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PlaceholderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1790
+ 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"] }] });
1791
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PlaceholderComponent, decorators: [{
1792
+ type: Component,
1793
+ 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"] }]
1794
+ }], ctorParameters: function () { return []; }, propDecorators: { type: [{
1795
+ type: Input
1796
+ }], label: [{
1797
+ type: Input
1798
+ }], tooltip: [{
1799
+ type: Input
1800
+ }], tooltipPlacement: [{
1801
+ type: Input
1802
+ }], height: [{
1803
+ type: Input
1804
+ }], width: [{
1805
+ type: Input
1806
+ }] } });
1807
+
1808
+ class EventsSettingsPageComponent {
1809
+ constructor() {
1810
+ this.keywordSearchChange = new EventEmitter();
1811
+ this.gridActionsSelectedOption = new EventEmitter();
1812
+ this.addButtonClicked = new EventEmitter();
1813
+ this.eventsSettingsBreadcrumbs = [
1814
+ {
1815
+ label: 'Main Menu',
1816
+ link: '/tools',
1817
+ },
1818
+ {
1819
+ label: 'Sub Menu One',
1820
+ },
1821
+ ];
1822
+ }
1823
+ keywordSearch(keyword) {
1824
+ this.keywordSearchChange.emit(keyword);
1825
+ console.log(keyword);
1826
+ }
1827
+ gridActionsSelect(selection) {
1828
+ this.gridActionsSelectedOption.emit(selection);
1829
+ console.log(selection);
1830
+ }
1831
+ onAddButtonClick() {
1832
+ this.addButtonClicked.emit();
1833
+ }
1834
+ }
1835
+ EventsSettingsPageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventsSettingsPageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1836
+ 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"] }] });
1837
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventsSettingsPageComponent, decorators: [{
1838
+ type: Component,
1839
+ 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: [""] }]
1840
+ }], ctorParameters: function () { return []; }, propDecorators: { model: [{
1841
+ type: Input
1842
+ }], keywordSearchChange: [{
1843
+ type: Output
1844
+ }], gridActionsSelectedOption: [{
1845
+ type: Output
1846
+ }], addButtonClicked: [{
1847
+ type: Output
1848
+ }] } });
1849
+
1850
+ class AdminListModule {
1851
+ }
1852
+ AdminListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdminListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1853
+ AdminListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdminListModule, declarations: [AdminListTemplateComponent], imports: [CommonModule], exports: [AdminListTemplateComponent] });
1854
+ AdminListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdminListModule, imports: [[CommonModule]] });
1855
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdminListModule, decorators: [{
1856
+ type: NgModule,
1857
+ args: [{
1858
+ declarations: [AdminListTemplateComponent],
1859
+ imports: [CommonModule],
1860
+ exports: [AdminListTemplateComponent],
1861
+ }]
1862
+ }] });
1863
+
1864
+ class PlaceholderModule {
1865
+ }
1866
+ PlaceholderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PlaceholderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1867
+ PlaceholderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PlaceholderModule, declarations: [PlaceholderComponent], imports: [CommonModule, i2.TooltipModule], exports: [PlaceholderComponent] });
1868
+ PlaceholderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PlaceholderModule, imports: [[CommonModule, TooltipModule.forRoot()]] });
1869
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PlaceholderModule, decorators: [{
1870
+ type: NgModule,
1871
+ args: [{
1872
+ declarations: [PlaceholderComponent],
1873
+ imports: [CommonModule, TooltipModule.forRoot()],
1874
+ exports: [PlaceholderComponent],
1875
+ }]
1876
+ }] });
1877
+
1878
+ class EventsSettingsPageModule {
1879
+ }
1880
+ EventsSettingsPageModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventsSettingsPageModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1881
+ EventsSettingsPageModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventsSettingsPageModule, declarations: [EventsSettingsPageComponent], imports: [CommonModule,
1882
+ AdminListModule,
1883
+ H3Module,
1884
+ H4Module,
1885
+ PlaceholderModule,
1886
+ BreadcrumbModule,
1887
+ TwoColumnFilterAreaModule,
1888
+ IconModule,
1889
+ InputTextModule,
1890
+ ContextualMenuModule,
1891
+ InputDropdownModule,
1892
+ GridModule,
1893
+ IconWrapperModule], exports: [EventsSettingsPageComponent] });
1894
+ EventsSettingsPageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventsSettingsPageModule, imports: [[
1895
+ CommonModule,
1896
+ AdminListModule,
1897
+ H3Module,
1898
+ H4Module,
1899
+ PlaceholderModule,
1900
+ BreadcrumbModule,
1901
+ TwoColumnFilterAreaModule,
1902
+ IconModule,
1903
+ InputTextModule,
1904
+ ContextualMenuModule,
1905
+ InputDropdownModule,
1906
+ GridModule,
1907
+ IconWrapperModule,
1908
+ ]] });
1909
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventsSettingsPageModule, decorators: [{
1910
+ type: NgModule,
1911
+ args: [{
1912
+ declarations: [EventsSettingsPageComponent],
1913
+ imports: [
1914
+ CommonModule,
1915
+ AdminListModule,
1916
+ H3Module,
1917
+ H4Module,
1918
+ PlaceholderModule,
1919
+ BreadcrumbModule,
1920
+ TwoColumnFilterAreaModule,
1921
+ IconModule,
1922
+ InputTextModule,
1923
+ ContextualMenuModule,
1924
+ InputDropdownModule,
1925
+ GridModule,
1926
+ IconWrapperModule,
1927
+ ],
1928
+ exports: [EventsSettingsPageComponent],
1929
+ }]
1930
+ }] });
1931
+
1932
+ class ColorSwatchCollectionComponent {
1933
+ constructor() { }
1934
+ }
1935
+ ColorSwatchCollectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchCollectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1936
+ 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 });
1937
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchCollectionComponent, decorators: [{
1938
+ type: Component,
1939
+ 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"] }]
1940
+ }], ctorParameters: function () { return []; }, propDecorators: { colorList: [{
1941
+ type: Input
1942
+ }] } });
1943
+
1944
+ class ColorSwatchCollectionModule {
1945
+ }
1946
+ ColorSwatchCollectionModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchCollectionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1947
+ ColorSwatchCollectionModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchCollectionModule, declarations: [ColorSwatchCollectionComponent], imports: [CommonModule, ColorSwatchModule] });
1948
+ ColorSwatchCollectionModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchCollectionModule, imports: [[CommonModule, ColorSwatchModule]] });
1949
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchCollectionModule, decorators: [{
1950
+ type: NgModule,
1951
+ args: [{
1952
+ declarations: [ColorSwatchCollectionComponent],
1953
+ imports: [CommonModule, ColorSwatchModule],
1954
+ exports: []
1955
+ }]
1956
+ }] });
1957
+
1958
+ class IconExplorerHelper {
1959
+ static getAllIcons() {
1960
+ let allIcons = [];
1961
+ allIcons = allIcons.concat(this.getHasNoBorderIconList());
1962
+ allIcons = allIcons.concat(this.getHasBorderIconList());
1963
+ allIcons = allIcons.concat(this.getInverseIconList());
1964
+ return allIcons;
1965
+ }
1966
+ static getHasNoBorderIconList() {
1967
+ return [
1968
+ {
1969
+ icon: Icons.MOREOPTIONS,
1970
+ iconName: 'MOREOPTIONS',
1971
+ iconClass: 'si-more-options',
1972
+ hasBorder: false,
1973
+ },
1974
+ {
1975
+ icon: Icons.ADD,
1976
+ iconName: 'ADD',
1977
+ iconClass: 'si-add',
1978
+ hasBorder: false,
1979
+ },
1980
+ {
1981
+ icon: Icons.ACTIVITY,
1982
+ iconName: 'ACTIVITY',
1983
+ iconClass: 'si-activity',
1984
+ hasBorder: false,
1985
+ },
1986
+ {
1987
+ icon: Icons.ARROWHIDEREVEAL,
1988
+ iconName: 'ARROWHIDEREVEAL',
1989
+ iconClass: 'si-arrow-hide-reveal',
1990
+ hasBorder: false,
1991
+ },
1992
+ {
1993
+ icon: Icons.ARROWNEXT,
1994
+ iconName: 'ARROWNEXT',
1995
+ iconClass: 'si-arrow-next',
1996
+ hasBorder: false,
1997
+ },
1998
+ {
1999
+ icon: Icons.ARROWPREV,
2000
+ iconName: 'ARROWPREV',
2001
+ iconClass: 'si-arrow-prev',
2002
+ hasBorder: false,
2003
+ },
2004
+ {
2005
+ icon: Icons.CLOSEMODAL,
2006
+ iconName: 'CLOSEMODAL',
2007
+ iconClass: 'si-close-modal',
2008
+ hasBorder: false,
2009
+ },
2010
+ {
2011
+ icon: Icons.COLLAPSE,
2012
+ iconName: 'COLLAPSE',
2013
+ iconClass: 'si-collapse',
2014
+ hasBorder: false,
2015
+ },
2016
+ {
2017
+ icon: Icons.DAYMODE,
2018
+ iconName: 'DAYMODE',
2019
+ iconClass: 'si-daymode',
2020
+ hasBorder: false,
2021
+ },
2022
+ {
2023
+ icon: Icons.DELETE,
2024
+ iconName: 'DELETE',
2025
+ iconClass: 'si-delete',
2026
+ hasBorder: false,
2027
+ },
2028
+ {
2029
+ icon: Icons.DOCUMENT,
2030
+ iconName: 'DOCUMENT',
2031
+ iconClass: 'si-document',
2032
+ hasBorder: false,
2033
+ },
2034
+ {
2035
+ icon: Icons.DOWNLOAD,
2036
+ iconName: 'DOWNLOAD',
2037
+ iconClass: 'si-download',
2038
+ hasBorder: false,
2039
+ },
2040
+ {
2041
+ icon: Icons.EDIT,
2042
+ iconName: 'EDIT',
2043
+ iconClass: 'si-edit',
2044
+ hasBorder: false,
2045
+ },
2046
+ {
2047
+ icon: Icons.EMAILDRIP,
2048
+ iconName: 'EMAILDRIP',
2049
+ iconClass: 'si-email-drip',
2050
+ hasBorder: false,
2051
+ },
2052
+ {
2053
+ icon: Icons.EMAILOPEN,
2054
+ iconName: 'EMAILOPEN',
2055
+ iconClass: 'si-email-open',
2056
+ hasBorder: false,
2057
+ },
2058
+ {
2059
+ icon: Icons.EMAILSEND,
2060
+ iconName: 'EMAILSEND',
2061
+ iconClass: 'si-email-send',
2062
+ hasBorder: false,
2063
+ },
2064
+ {
2065
+ icon: Icons.EXPAND,
2066
+ iconName: 'EXPAND',
2067
+ iconClass: 'si-expand',
2068
+ hasBorder: false,
2069
+ },
2070
+ {
2071
+ icon: Icons.FAVORITE,
2072
+ iconName: 'FAVORITE',
2073
+ iconClass: 'si-favorite',
2074
+ hasBorder: false,
2075
+ },
2076
+ {
2077
+ icon: Icons.FEEDBACKMAYBE,
2078
+ iconName: 'FEEDBACKMAYBE',
2079
+ iconClass: 'si-feedback-maybe',
2080
+ hasBorder: false,
2081
+ },
2082
+ {
2083
+ icon: Icons.FEEDBACKNO,
2084
+ iconName: 'FEEDBACKNO',
2085
+ iconClass: 'si-feedback-no',
2086
+ hasBorder: false,
2087
+ },
2088
+ {
2089
+ icon: Icons.FEEDBACKYES,
2090
+ iconName: 'FEEDBACKYES',
2091
+ iconClass: 'si-feedback-yes',
2092
+ hasBorder: false,
2093
+ },
2094
+ {
2095
+ icon: Icons.FOLDERMULTIPLE,
2096
+ iconName: 'FOLDERMULTIPLE',
2097
+ iconClass: 'si-folder-multiple',
2098
+ hasBorder: false,
2099
+ },
2100
+ {
2101
+ icon: Icons.INCLUDE,
2102
+ iconName: 'INCLUDE',
2103
+ iconClass: 'si-include',
2104
+ hasBorder: false,
2105
+ },
2106
+ {
2107
+ icon: Icons.INFO,
2108
+ iconName: 'INFO',
2109
+ iconClass: 'si-info',
2110
+ hasBorder: false,
2111
+ },
2112
+ {
2113
+ icon: Icons.INTERVIEW,
2114
+ iconName: 'INTERVIEW',
2115
+ iconClass: 'si-interview',
2116
+ hasBorder: false,
2117
+ },
2118
+ {
2119
+ icon: Icons.LINK,
2120
+ iconName: 'LINK',
2121
+ iconClass: 'si-link',
2122
+ hasBorder: false,
2123
+ },
2124
+ {
2125
+ icon: Icons.LOCATION,
2126
+ iconName: 'LOCATION',
2127
+ iconClass: 'si-location',
2128
+ hasBorder: false,
2129
+ },
2130
+ {
2131
+ icon: Icons.MENUALL,
2132
+ iconName: 'MENUALL',
2133
+ iconClass: 'si-menu-all',
2134
+ hasBorder: false,
2135
+ },
2136
+ {
2137
+ icon: Icons.MENUANALYTICS,
2138
+ iconName: 'MENUANALYTICS',
2139
+ iconClass: 'si-menu-analytics',
2140
+ hasBorder: false,
2141
+ },
2142
+ {
2143
+ icon: Icons.MENUASSETS,
2144
+ iconName: 'MENUASSETS',
2145
+ iconClass: 'si-menu-assets',
2146
+ hasBorder: false,
2147
+ },
2148
+ {
2149
+ icon: Icons.MENUCAMPAIGNS,
2150
+ iconName: 'MENUCAMPAIGNS',
2151
+ iconClass: 'si-menu-campaigns',
2152
+ hasBorder: false,
2153
+ },
2154
+ {
2155
+ icon: Icons.MENUCONTACT,
2156
+ iconName: 'MENUCONTACT',
2157
+ iconClass: 'si-menu-contact',
2158
+ hasBorder: false,
2159
+ },
2160
+ {
2161
+ icon: Icons.MENUCONTENT,
2162
+ iconName: 'MENUCONTENT',
2163
+ iconClass: 'si-menu-content',
2164
+ hasBorder: false,
2165
+ },
2166
+ {
2167
+ icon: Icons.MENUDASHBOARD,
2168
+ iconName: 'MENUDASHBOARD',
2169
+ iconClass: 'si-menu-dashboard',
2170
+ hasBorder: false,
2171
+ },
2172
+ {
2173
+ icon: Icons.MENUEVENTS,
2174
+ iconName: 'MENUEVENTS',
2175
+ iconClass: 'si-menu-events',
2176
+ hasBorder: false,
2177
+ },
2178
+ {
2179
+ icon: Icons.MENUFOLDERS,
2180
+ iconName: 'MENUFOLDERS',
2181
+ iconClass: 'si-menu-folders',
2182
+ hasBorder: false,
2183
+ },
2184
+ {
2185
+ icon: Icons.MENUJOBS,
2186
+ iconName: 'MENUJOBS',
2187
+ iconClass: 'si-menu-jobs',
2188
+ hasBorder: false,
2189
+ },
2190
+ {
2191
+ icon: Icons.MENURETURN,
2192
+ iconName: 'MENURETURN',
2193
+ iconClass: 'si-menu-return',
2194
+ hasBorder: false,
2195
+ },
2196
+ {
2197
+ icon: Icons.MENUWORKFLOWS,
2198
+ iconName: 'MENUWORKFLOWS',
2199
+ iconClass: 'si-menu-workflows',
2200
+ hasBorder: false,
2201
+ },
2202
+ {
2203
+ icon: Icons.MERGE,
2204
+ iconName: 'MERGE',
2205
+ iconClass: 'si-merge',
2206
+ hasBorder: false,
2207
+ },
2208
+ {
2209
+ icon: Icons.MOVE,
2210
+ iconName: 'MOVE',
2211
+ iconClass: 'si-move',
2212
+ hasBorder: false,
2213
+ },
2214
+ {
2215
+ icon: Icons.NIGHTMODE,
2216
+ iconName: 'NIGHTMODE',
2217
+ iconClass: 'si-nightmode',
2218
+ hasBorder: false,
2219
+ },
2220
+ {
2221
+ icon: Icons.NOTIFICATION,
2222
+ iconName: 'NOTIFICATION',
2223
+ iconClass: 'si-notification',
2224
+ hasBorder: false,
2225
+ },
2226
+ {
2227
+ icon: Icons.ORGANIZECOLUMNS,
2228
+ iconName: 'ORGANIZECOLUMNS',
2229
+ iconClass: 'si-organize-columns',
2230
+ hasBorder: false,
2231
+ },
2232
+ {
2233
+ icon: Icons.ORGANIZECONTACTS,
2234
+ iconName: 'ORGANIZECONTACTS',
2235
+ iconClass: 'si-organize-contacts',
2236
+ hasBorder: false,
2237
+ },
2238
+ {
2239
+ icon: Icons.PENDINGINCOMPLETE,
2240
+ iconName: 'PENDINGINCOMPLETE',
2241
+ iconClass: 'si-pending-incomplete',
2242
+ hasBorder: false,
2243
+ },
2244
+ {
2245
+ icon: Icons.PHONENUMBER,
2246
+ iconName: 'PHONENUMBER',
2247
+ iconClass: 'si-phone-number',
2248
+ hasBorder: false,
2249
+ },
2250
+ {
2251
+ icon: Icons.PREVIEW,
2252
+ iconName: 'PREVIEW',
2253
+ iconClass: 'si-preview',
2254
+ hasBorder: false,
2255
+ },
2256
+ {
2257
+ icon: Icons.PROMOTE,
2258
+ iconName: 'PROMOTE',
2259
+ iconClass: 'si-promote',
2260
+ hasBorder: false,
2261
+ },
2262
+ {
2263
+ icon: Icons.REFRESH,
2264
+ iconName: 'REFRESH',
2265
+ iconClass: 'si-refresh',
2266
+ hasBorder: false,
2267
+ },
2268
+ {
2269
+ icon: Icons.REMOVE,
2270
+ iconName: 'REMOVE',
2271
+ iconClass: 'si-remove',
2272
+ hasBorder: false,
2273
+ },
2274
+ {
2275
+ icon: Icons.EXCLUDE,
2276
+ iconName: 'EXCLUDE',
2277
+ iconClass: 'si-exclude',
2278
+ hasBorder: false,
2279
+ },
2280
+ {
2281
+ icon: Icons.RESULTSFILTERS,
2282
+ iconName: 'RESULTSFILTERS',
2283
+ iconClass: 'si-results-filters',
2284
+ hasBorder: false,
2285
+ },
2286
+ {
2287
+ icon: Icons.REVIEW,
2288
+ iconName: 'REVIEW',
2289
+ iconClass: 'si-review',
2290
+ hasBorder: false,
2291
+ },
2292
+ {
2293
+ icon: Icons.SALARY,
2294
+ iconName: 'SALARY',
2295
+ iconClass: 'si-salary',
2296
+ hasBorder: false,
2297
+ },
2298
+ {
2299
+ icon: Icons.SAVE,
2300
+ iconName: 'SAVE',
2301
+ iconClass: 'si-save',
2302
+ hasBorder: false,
2303
+ },
2304
+ {
2305
+ icon: Icons.SEARCHADVANCED,
2306
+ iconName: 'SEARCHADVANCED',
2307
+ iconClass: 'si-search-advanced',
2308
+ hasBorder: false,
2309
+ },
2310
+ {
2311
+ icon: Icons.SEARCHCLEAR,
2312
+ iconName: 'SEARCHCLEAR',
2313
+ iconClass: 'si-search-clear',
2314
+ hasBorder: false,
2315
+ },
2316
+ {
2317
+ icon: Icons.SEARCHNEW,
2318
+ iconName: 'SEARCHNEW',
2319
+ iconClass: 'si-search-new',
2320
+ hasBorder: false,
2321
+ },
2322
+ {
2323
+ icon: Icons.SETTINGSMART,
2324
+ iconName: 'SETTINGSMART',
2325
+ iconClass: 'si-settings-smart',
2326
+ hasBorder: false,
2327
+ },
2328
+ {
2329
+ icon: Icons.SMS,
2330
+ iconName: 'SMS',
2331
+ iconClass: 'si-sms',
2332
+ hasBorder: false,
2333
+ },
2334
+ {
2335
+ icon: Icons.SORTMINI,
2336
+ iconName: 'SORTMINI',
2337
+ iconClass: 'si-sort-mini',
2338
+ hasBorder: false,
2339
+ },
2340
+ {
2341
+ icon: Icons.STATUS,
2342
+ iconName: 'STATUS',
2343
+ iconClass: 'si-status',
2344
+ hasBorder: false,
2345
+ },
2346
+ {
2347
+ icon: Icons.SYSTEMACTION,
2348
+ iconName: 'SYSTEMACTION',
2349
+ iconClass: 'si-system-action',
2350
+ hasBorder: false,
2351
+ },
2352
+ {
2353
+ icon: Icons.TASKCOMPLETED,
2354
+ iconName: 'TASKCOMPLETED',
2355
+ iconClass: 'si-task-completed',
2356
+ hasBorder: false,
2357
+ },
2358
+ {
2359
+ icon: Icons.TASKOPEN,
2360
+ iconName: 'TASKOPEN',
2361
+ iconClass: 'si-task-open',
2362
+ hasBorder: false,
2363
+ },
2364
+ {
2365
+ icon: Icons.TIMEFRAME,
2366
+ iconName: 'TIMEFRAME',
2367
+ iconClass: 'si-timeframe',
2368
+ hasBorder: false,
2369
+ },
2370
+ {
2371
+ icon: Icons.TIMELINE,
2372
+ iconName: 'TIMELINE',
2373
+ iconClass: 'si-timeline',
2374
+ hasBorder: false,
2375
+ },
2376
+ {
2377
+ icon: Icons.UPLOAD,
2378
+ iconName: 'UPLOAD',
2379
+ iconClass: 'si-upload',
2380
+ hasBorder: false,
2381
+ },
2382
+ {
2383
+ icon: Icons.USERMULTIPLE,
2384
+ iconName: 'USERMULTIPLE',
2385
+ iconClass: 'si-user-multiple',
2386
+ hasBorder: false,
2387
+ },
2388
+ {
2389
+ icon: Icons.USER,
2390
+ iconName: 'USER',
2391
+ iconClass: 'si-user',
2392
+ hasBorder: false,
2393
+ },
2394
+ ];
2395
+ }
2396
+ static getInverseIconList() {
2397
+ return [
2398
+ {
2399
+ icon: Icons.ACTIVITY,
2400
+ iconName: 'ACTIVITY',
2401
+ iconClass: 'si-activity',
2402
+ hasBorder: true,
2403
+ },
2404
+ ];
2405
+ }
2406
+ static getHasBorderIconList() {
2407
+ return [
2408
+ {
2409
+ icon: Icons.ADD,
2410
+ iconName: 'ADD',
2411
+ iconClass: 'si-add',
2412
+ hasBorder: true,
2413
+ },
2414
+ {
2415
+ icon: Icons.ARROWNEXT,
2416
+ iconName: 'ARROWNEXT',
2417
+ iconClass: 'si-arrow-next',
2418
+ hasBorder: true,
2419
+ },
2420
+ {
2421
+ icon: Icons.DELETE,
2422
+ iconName: 'DELETE',
2423
+ iconClass: 'si-delete',
2424
+ hasBorder: true,
2425
+ },
2426
+ {
2427
+ icon: Icons.DOWNLOAD,
2428
+ iconName: 'DOWNLOAD',
2429
+ iconClass: 'si-download',
2430
+ hasBorder: true,
2431
+ },
2432
+ {
2433
+ icon: Icons.EDIT,
2434
+ iconName: 'EDIT',
2435
+ iconClass: 'si-edit',
2436
+ hasBorder: true,
2437
+ },
2438
+ {
2439
+ icon: Icons.FEEDBACKYES,
2440
+ iconName: 'FEEDBACKYES',
2441
+ iconClass: 'si-feedback-yes',
2442
+ hasBorder: true,
2443
+ },
2444
+ {
2445
+ icon: Icons.MENUCONTACT,
2446
+ iconName: 'MENUCONTACT',
2447
+ iconClass: 'si-menu-contact',
2448
+ hasBorder: true,
2449
+ },
2450
+ {
2451
+ icon: Icons.MOREOPTIONS,
2452
+ iconName: 'MOREOPTIONS',
2453
+ iconClass: 'si-more-options',
2454
+ hasBorder: true,
2455
+ },
2456
+ {
2457
+ icon: Icons.ORGANIZECOLUMNS,
2458
+ iconName: 'ORGANIZECOLUMNS',
2459
+ iconClass: 'si-organize-columns',
2460
+ hasBorder: true,
2461
+ },
2462
+ {
2463
+ icon: Icons.PREVIEW,
2464
+ iconName: 'PREVIEW',
2465
+ iconClass: 'si-preview',
2466
+ hasBorder: true,
2467
+ },
2468
+ {
2469
+ icon: Icons.SAVE,
2470
+ iconName: 'SAVE',
2471
+ iconClass: 'si-save',
2472
+ hasBorder: true,
2473
+ },
2474
+ ];
2475
+ }
2476
+ }
2477
+
2478
+ class IconExplorerComponent {
2479
+ constructor() {
2480
+ this.iconList = IconExplorerHelper.getAllIcons();
2481
+ this.hasBorderIconsList = IconExplorerHelper.getHasBorderIconList();
2482
+ this.hasNoBorderIconsList = IconExplorerHelper.getHasNoBorderIconList();
2483
+ this.isInverseIconsList = IconExplorerHelper.getInverseIconList();
2484
+ }
2485
+ ngOnInit() {
2486
+ this.iconCount = this.iconList.length;
2487
+ this.explorerTitle = `Iconography (${this.iconCount} icons)`;
2488
+ this.iconHasBorderCount = this.hasBorderIconsList.length;
2489
+ this.borderTitle = `Icons with border (${this.iconHasBorderCount} icons)`;
2490
+ this.iconHasNoBorderCount = this.hasNoBorderIconsList.length;
2491
+ this.noBorderTitle = `Icons without border (${this.iconHasNoBorderCount} icons)`;
2492
+ this.iconisInverseCount = this.isInverseIconsList.length;
2493
+ this.backgroundTitle = `Icons with background (${this.iconisInverseCount} icons)`;
2494
+ }
2495
+ }
2496
+ IconExplorerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconExplorerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2497
+ 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"] }] });
2498
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconExplorerComponent, decorators: [{
2499
+ type: Component,
2500
+ 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"] }]
2501
+ }], ctorParameters: function () { return []; } });
2502
+
2503
+ class IconExplorerModule {
2504
+ }
2505
+ IconExplorerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconExplorerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2506
+ IconExplorerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconExplorerModule, declarations: [IconExplorerComponent], imports: [CommonModule, IconSwatchModule, H2Module, H3Module] });
2507
+ IconExplorerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconExplorerModule, imports: [[CommonModule, IconSwatchModule, H2Module, H3Module]] });
2508
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconExplorerModule, decorators: [{
2509
+ type: NgModule,
2510
+ args: [{
2511
+ declarations: [IconExplorerComponent],
2512
+ imports: [CommonModule, IconSwatchModule, H2Module, H3Module],
2513
+ }]
2514
+ }] });
2515
+
2516
+ /*
2517
+ * ATOMS
2518
+ */
2519
+
2520
+ /**
2521
+ * Generated bundle index. Do not edit.
2522
+ */
2523
+
2524
+ 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 };
2525
+ //# sourceMappingURL=symphony-talent-component-library.mjs.map