@symphony-talent/component-library 1.8.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 (630) 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 +3 -0
  231. package/lib/atoms/avatar/avatar.module.d.ts +6 -0
  232. package/lib/atoms/button/button.component.d.ts +5 -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 +9 -6
  237. package/lib/atoms/contextual-menu/contextual-menu.model.d.ts +3 -2
  238. package/lib/atoms/contextual-menu/contextual-menu.module.d.ts +8 -0
  239. package/lib/atoms/filter-area/filter-area.component.d.ts +4 -3
  240. package/lib/atoms/filter-area/filter-area.module.d.ts +6 -0
  241. package/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.d.ts +3 -0
  242. package/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.module.d.ts +6 -0
  243. package/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.component.d.ts +14 -0
  244. package/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.model.d.ts +5 -0
  245. package/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.module.d.ts +9 -0
  246. package/lib/atoms/grid/framework/framework.module.d.ts +8 -0
  247. package/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.component.d.ts +11 -0
  248. package/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.model.d.ts +5 -0
  249. package/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.module.d.ts +9 -0
  250. package/lib/atoms/grid/framework/relevance-score/relevance-score.component.d.ts +3 -0
  251. package/lib/atoms/grid/framework/relevance-score/relevance-score.component.module.d.ts +6 -0
  252. package/lib/atoms/grid/grid.component.d.ts +6 -6
  253. package/lib/atoms/grid/grid.model.d.ts +4 -6
  254. package/lib/atoms/grid/grid.module.d.ts +8 -0
  255. package/lib/atoms/h1/h1.component.d.ts +4 -3
  256. package/lib/atoms/h1/h1.module.d.ts +6 -0
  257. package/lib/atoms/h2/h2.component.d.ts +4 -3
  258. package/lib/atoms/h2/h2.module.d.ts +6 -0
  259. package/lib/atoms/h3/h3.component.d.ts +4 -3
  260. package/lib/atoms/h3/h3.module.d.ts +6 -0
  261. package/lib/atoms/h4/h4.component.d.ts +4 -3
  262. package/lib/atoms/h4/h4.module.d.ts +6 -0
  263. package/lib/atoms/h5/h5.component.d.ts +4 -3
  264. package/lib/atoms/h5/h5.module.d.ts +6 -0
  265. package/lib/atoms/icon/icon.component.d.ts +7 -5
  266. package/lib/atoms/icon/icon.module.d.ts +6 -0
  267. package/lib/atoms/icon-wrapper/icon-wrapper.component.d.ts +5 -3
  268. package/lib/atoms/icon-wrapper/icon-wrapper.module.d.ts +6 -0
  269. package/lib/atoms/input-checkbox/input-checkbox.component.d.ts +5 -3
  270. package/lib/atoms/input-checkbox/input-checkbox.module.d.ts +6 -0
  271. package/lib/atoms/input-dropdown/input-dropdown-list-item.model.d.ts +8 -0
  272. package/lib/atoms/input-dropdown/input-dropdown-list.model.d.ts +7 -0
  273. package/lib/atoms/input-dropdown/input-dropdown.component.d.ts +19 -0
  274. package/lib/atoms/input-dropdown/input-dropdown.module.d.ts +9 -0
  275. package/lib/atoms/input-radio/input-radio.component.d.ts +5 -3
  276. package/lib/atoms/input-radio/input-radio.module.d.ts +7 -0
  277. package/lib/atoms/input-text/input-text.component.d.ts +10 -4
  278. package/lib/atoms/input-text/input-text.module.d.ts +7 -0
  279. package/lib/atoms/input-toggle/input-toggle.component.d.ts +11 -0
  280. package/lib/atoms/input-toggle/input-toggle.module.d.ts +8 -0
  281. package/lib/atoms/paragraph/paragraph.component.d.ts +4 -3
  282. package/lib/atoms/paragraph/paragraph.module.d.ts +6 -0
  283. package/lib/atoms/pill/pill.component.d.ts +5 -3
  284. package/lib/atoms/pill/pill.module.d.ts +7 -0
  285. package/lib/atoms/sfx-loader/sfx-loader.component.d.ts +7 -0
  286. package/lib/atoms/sfx-loader/sfx-loader.module.d.ts +8 -0
  287. package/lib/atoms/sfx-page-loader/sfx-page-loader.component.d.ts +6 -0
  288. package/lib/atoms/sfx-page-loader/sfx-page-loader.module.d.ts +8 -0
  289. package/lib/atoms/sfx-progress-bar/sfx-progress-bar.component.d.ts +7 -0
  290. package/lib/atoms/sfx-progress-bar/sfx-progress-bar.module.d.ts +8 -0
  291. package/lib/atoms/task-icon/task-icon.component.d.ts +4 -3
  292. package/lib/atoms/task-icon/task-icon.module.d.ts +6 -0
  293. package/lib/atoms/toaster-alert/toaster-alert.component.d.ts +19 -0
  294. package/lib/atoms/toaster-alert/toaster-alert.model.d.ts +20 -0
  295. package/lib/atoms/toaster-alert/toaster-alert.module.d.ts +8 -0
  296. package/lib/atoms/two-column-filter-area/two-column-filter-area.component.d.ts +4 -3
  297. package/lib/atoms/two-column-filter-area/two-column-filter-area.module.d.ts +6 -0
  298. package/lib/design-guide/color-swatch-collection/color-swatch-collection.component.d.ts +4 -3
  299. package/lib/design-guide/color-swatch-collection/color-swatch-collection.module.d.ts +7 -0
  300. package/lib/design-guide/icon-explorer/icon-explorer.component.d.ts +3 -0
  301. package/lib/design-guide/icon-explorer/icon-explorer.module.d.ts +9 -0
  302. package/lib/molecules/breadcrumb/breadcrumb.component.d.ts +5 -1
  303. package/lib/molecules/breadcrumb/breadcrumb.module.d.ts +8 -0
  304. package/lib/molecules/color-swatch/color-swatch.component.d.ts +3 -0
  305. package/lib/molecules/color-swatch/color-swatch.module.d.ts +9 -0
  306. package/lib/molecules/icon-swatch/icon-swatch.component.d.ts +4 -3
  307. package/lib/molecules/icon-swatch/icon-swatch.module.d.ts +10 -0
  308. package/lib/molecules/molecules.module.d.ts +13 -0
  309. package/lib/molecules/note/note.component.d.ts +4 -3
  310. package/lib/molecules/note/note.model.d.ts +2 -2
  311. package/lib/molecules/note/note.module.d.ts +10 -0
  312. package/lib/molecules/pills/pills.component.d.ts +5 -3
  313. package/lib/molecules/pills/pills.module.d.ts +7 -0
  314. package/lib/molecules/task/task.component.d.ts +4 -3
  315. package/lib/molecules/task/task.model.d.ts +2 -2
  316. package/lib/molecules/task/task.module.d.ts +10 -0
  317. package/lib/organisms/note-list/note-list.component.d.ts +4 -3
  318. package/lib/organisms/note-list/note-list.module.d.ts +7 -0
  319. package/lib/organisms/task-list/task-list.component.d.ts +4 -3
  320. package/lib/organisms/task-list/task-list.module.d.ts +7 -0
  321. package/lib/pages/events-settings-page/events-settings-page.component.d.ts +13 -5
  322. package/lib/pages/events-settings-page/events-settings-page.model.d.ts +14 -0
  323. package/lib/pages/events-settings-page/events-settings-page.module.d.ts +18 -0
  324. package/lib/templates/admin-list/admin-list.component.d.ts +4 -3
  325. package/lib/templates/admin-list/admin-list.module.d.ts +6 -0
  326. package/lib/templates/placeholder/placeholder.component.d.ts +4 -3
  327. package/lib/templates/placeholder/placeholder.module.d.ts +7 -0
  328. package/package.json +30 -16
  329. package/projects/component-library/lib/atoms/atoms.module.d.ts +31 -0
  330. package/projects/component-library/lib/atoms/avatar/avatar.component.d.ts +3 -0
  331. package/projects/component-library/lib/atoms/avatar/avatar.module.d.ts +6 -0
  332. package/projects/component-library/lib/atoms/button/button.component.d.ts +5 -3
  333. package/projects/component-library/lib/atoms/button/button.module.d.ts +6 -0
  334. package/projects/component-library/lib/atoms/color-sample/color-sample.component.d.ts +3 -0
  335. package/projects/component-library/lib/atoms/color-sample/color-sample.module.d.ts +6 -0
  336. package/projects/component-library/lib/atoms/contextual-menu/contextual-menu.component.d.ts +9 -6
  337. package/projects/component-library/lib/atoms/contextual-menu/contextual-menu.model.d.ts +3 -2
  338. package/projects/component-library/lib/atoms/contextual-menu/contextual-menu.module.d.ts +8 -0
  339. package/projects/component-library/lib/atoms/filter-area/filter-area.component.d.ts +4 -3
  340. package/projects/component-library/lib/atoms/filter-area/filter-area.module.d.ts +6 -0
  341. package/projects/component-library/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.d.ts +3 -0
  342. package/projects/component-library/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.module.d.ts +6 -0
  343. package/projects/component-library/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.component.d.ts +14 -0
  344. package/projects/component-library/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.model.d.ts +5 -0
  345. package/projects/component-library/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.module.d.ts +9 -0
  346. package/projects/component-library/lib/atoms/grid/framework/framework.module.d.ts +8 -0
  347. package/projects/component-library/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.component.d.ts +11 -0
  348. package/projects/component-library/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.model.d.ts +5 -0
  349. package/projects/component-library/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.module.d.ts +9 -0
  350. package/projects/component-library/lib/atoms/grid/framework/relevance-score/relevance-score.component.d.ts +3 -0
  351. package/projects/component-library/lib/atoms/grid/framework/relevance-score/relevance-score.component.module.d.ts +6 -0
  352. package/projects/component-library/lib/atoms/grid/grid.component.d.ts +6 -6
  353. package/projects/component-library/lib/atoms/grid/grid.model.d.ts +4 -6
  354. package/projects/component-library/lib/atoms/grid/grid.module.d.ts +8 -0
  355. package/projects/component-library/lib/atoms/h1/h1.component.d.ts +4 -3
  356. package/projects/component-library/lib/atoms/h1/h1.module.d.ts +6 -0
  357. package/projects/component-library/lib/atoms/h2/h2.component.d.ts +4 -3
  358. package/projects/component-library/lib/atoms/h2/h2.module.d.ts +6 -0
  359. package/projects/component-library/lib/atoms/h3/h3.component.d.ts +4 -3
  360. package/projects/component-library/lib/atoms/h3/h3.module.d.ts +6 -0
  361. package/projects/component-library/lib/atoms/h4/h4.component.d.ts +4 -3
  362. package/projects/component-library/lib/atoms/h4/h4.module.d.ts +6 -0
  363. package/projects/component-library/lib/atoms/h5/h5.component.d.ts +4 -3
  364. package/projects/component-library/lib/atoms/h5/h5.module.d.ts +6 -0
  365. package/projects/component-library/lib/atoms/icon/icon.component.d.ts +7 -5
  366. package/projects/component-library/lib/atoms/icon/icon.module.d.ts +6 -0
  367. package/projects/component-library/lib/atoms/icon-wrapper/icon-wrapper.component.d.ts +5 -3
  368. package/projects/component-library/lib/atoms/icon-wrapper/icon-wrapper.module.d.ts +6 -0
  369. package/projects/component-library/lib/atoms/input-checkbox/input-checkbox.component.d.ts +5 -3
  370. package/projects/component-library/lib/atoms/input-checkbox/input-checkbox.module.d.ts +6 -0
  371. package/projects/component-library/lib/atoms/input-dropdown/input-dropdown-list-item.model.d.ts +8 -0
  372. package/projects/component-library/lib/atoms/input-dropdown/input-dropdown-list.model.d.ts +7 -0
  373. package/projects/component-library/lib/atoms/input-dropdown/input-dropdown.component.d.ts +19 -0
  374. package/projects/component-library/lib/atoms/input-dropdown/input-dropdown.module.d.ts +9 -0
  375. package/projects/component-library/lib/atoms/input-radio/input-radio.component.d.ts +5 -3
  376. package/projects/component-library/lib/atoms/input-radio/input-radio.module.d.ts +7 -0
  377. package/projects/component-library/lib/atoms/input-text/input-text.component.d.ts +10 -4
  378. package/projects/component-library/lib/atoms/input-text/input-text.module.d.ts +7 -0
  379. package/projects/component-library/lib/atoms/input-toggle/input-toggle.component.d.ts +11 -0
  380. package/projects/component-library/lib/atoms/input-toggle/input-toggle.module.d.ts +8 -0
  381. package/projects/component-library/lib/atoms/paragraph/paragraph.component.d.ts +4 -3
  382. package/projects/component-library/lib/atoms/paragraph/paragraph.module.d.ts +6 -0
  383. package/projects/component-library/lib/atoms/pill/pill.component.d.ts +5 -3
  384. package/projects/component-library/lib/atoms/pill/pill.module.d.ts +7 -0
  385. package/projects/component-library/lib/atoms/sfx-loader/sfx-loader.component.d.ts +7 -0
  386. package/projects/component-library/lib/atoms/sfx-loader/sfx-loader.module.d.ts +8 -0
  387. package/projects/component-library/lib/atoms/sfx-page-loader/sfx-page-loader.component.d.ts +6 -0
  388. package/projects/component-library/lib/atoms/sfx-page-loader/sfx-page-loader.module.d.ts +8 -0
  389. package/projects/component-library/lib/atoms/sfx-progress-bar/sfx-progress-bar.component.d.ts +7 -0
  390. package/projects/component-library/lib/atoms/sfx-progress-bar/sfx-progress-bar.module.d.ts +8 -0
  391. package/projects/component-library/lib/atoms/task-icon/task-icon.component.d.ts +4 -3
  392. package/projects/component-library/lib/atoms/task-icon/task-icon.module.d.ts +6 -0
  393. package/projects/component-library/lib/atoms/toaster-alert/toaster-alert.component.d.ts +19 -0
  394. package/projects/component-library/lib/atoms/toaster-alert/toaster-alert.model.d.ts +20 -0
  395. package/projects/component-library/lib/atoms/toaster-alert/toaster-alert.module.d.ts +8 -0
  396. package/projects/component-library/lib/atoms/two-column-filter-area/two-column-filter-area.component.d.ts +4 -3
  397. package/projects/component-library/lib/atoms/two-column-filter-area/two-column-filter-area.module.d.ts +6 -0
  398. package/projects/component-library/lib/design-guide/color-swatch-collection/color-swatch-collection.component.d.ts +4 -3
  399. package/projects/component-library/lib/design-guide/color-swatch-collection/color-swatch-collection.module.d.ts +7 -0
  400. package/projects/component-library/lib/design-guide/icon-explorer/icon-explorer.component.d.ts +3 -0
  401. package/projects/component-library/lib/design-guide/icon-explorer/icon-explorer.module.d.ts +9 -0
  402. package/projects/component-library/lib/molecules/breadcrumb/breadcrumb.component.d.ts +5 -1
  403. package/projects/component-library/lib/molecules/breadcrumb/breadcrumb.module.d.ts +8 -0
  404. package/projects/component-library/lib/molecules/color-swatch/color-swatch.component.d.ts +3 -0
  405. package/projects/component-library/lib/molecules/color-swatch/color-swatch.module.d.ts +9 -0
  406. package/projects/component-library/lib/molecules/icon-swatch/icon-swatch.component.d.ts +4 -3
  407. package/projects/component-library/lib/molecules/icon-swatch/icon-swatch.module.d.ts +10 -0
  408. package/projects/component-library/lib/molecules/molecules.module.d.ts +13 -0
  409. package/projects/component-library/lib/molecules/note/note.component.d.ts +4 -3
  410. package/projects/component-library/lib/molecules/note/note.model.d.ts +2 -2
  411. package/projects/component-library/lib/molecules/note/note.module.d.ts +10 -0
  412. package/projects/component-library/lib/molecules/pills/pills.component.d.ts +5 -3
  413. package/projects/component-library/lib/molecules/pills/pills.module.d.ts +7 -0
  414. package/projects/component-library/lib/molecules/task/task.component.d.ts +4 -3
  415. package/projects/component-library/lib/molecules/task/task.model.d.ts +2 -2
  416. package/projects/component-library/lib/molecules/task/task.module.d.ts +10 -0
  417. package/projects/component-library/lib/organisms/note-list/note-list.component.d.ts +4 -3
  418. package/projects/component-library/lib/organisms/note-list/note-list.module.d.ts +7 -0
  419. package/projects/component-library/lib/organisms/task-list/task-list.component.d.ts +4 -3
  420. package/projects/component-library/lib/organisms/task-list/task-list.module.d.ts +7 -0
  421. package/projects/component-library/lib/pages/events-settings-page/events-settings-page.component.d.ts +13 -5
  422. package/projects/component-library/lib/pages/events-settings-page/events-settings-page.model.d.ts +14 -0
  423. package/projects/component-library/lib/pages/events-settings-page/events-settings-page.module.d.ts +18 -0
  424. package/projects/component-library/lib/templates/admin-list/admin-list.component.d.ts +4 -3
  425. package/projects/component-library/lib/templates/admin-list/admin-list.module.d.ts +6 -0
  426. package/projects/component-library/lib/templates/placeholder/placeholder.component.d.ts +4 -3
  427. package/projects/component-library/lib/templates/placeholder/placeholder.module.d.ts +7 -0
  428. package/projects/component-library/package.json +7 -8
  429. package/projects/component-library/public-api.d.ts +21 -0
  430. package/projects/component-library/symphony-talent-component-library-projects-component-library.d.ts +1 -18
  431. package/public-api.d.ts +21 -0
  432. package/symphony-talent-component-library.d.ts +1 -18
  433. package/bundles/symphony-talent-component-library-projects-component-library.umd.js +0 -2484
  434. package/bundles/symphony-talent-component-library-projects-component-library.umd.js.map +0 -1
  435. package/bundles/symphony-talent-component-library-projects-component-library.umd.min.js +0 -16
  436. package/bundles/symphony-talent-component-library-projects-component-library.umd.min.js.map +0 -1
  437. package/bundles/symphony-talent-component-library.umd.js +0 -2484
  438. package/bundles/symphony-talent-component-library.umd.js.map +0 -1
  439. package/bundles/symphony-talent-component-library.umd.min.js +0 -16
  440. package/bundles/symphony-talent-component-library.umd.min.js.map +0 -1
  441. package/esm2015/lib/atoms/atoms.module.js +0 -58
  442. package/esm2015/lib/atoms/avatar/avatar.component.js +0 -101
  443. package/esm2015/lib/atoms/avatar/avatar.module.js +0 -15
  444. package/esm2015/lib/atoms/button/button.component.js +0 -35
  445. package/esm2015/lib/atoms/button/button.module.js +0 -16
  446. package/esm2015/lib/atoms/color-sample/color-sample.component.js +0 -20
  447. package/esm2015/lib/atoms/color-sample/color-sample.enum.js +0 -26
  448. package/esm2015/lib/atoms/color-sample/color-sample.module.js +0 -15
  449. package/esm2015/lib/atoms/contextual-menu/contextual-menu.component.js +0 -20
  450. package/esm2015/lib/atoms/contextual-menu/contextual-menu.model.js +0 -1
  451. package/esm2015/lib/atoms/contextual-menu/contextual-menu.module.js +0 -17
  452. package/esm2015/lib/atoms/filter-area/filter-area.component.js +0 -16
  453. package/esm2015/lib/atoms/filter-area/filter-area.module.js +0 -15
  454. package/esm2015/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.js +0 -49
  455. package/esm2015/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.module.js +0 -14
  456. package/esm2015/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.model.js +0 -8
  457. package/esm2015/lib/atoms/grid/framework/framework.module.js +0 -15
  458. package/esm2015/lib/atoms/grid/framework/relevance-score/relevance-score.component.js +0 -33
  459. package/esm2015/lib/atoms/grid/framework/relevance-score/relevance-score.component.model.js +0 -6
  460. package/esm2015/lib/atoms/grid/framework/relevance-score/relevance-score.component.module.js +0 -14
  461. package/esm2015/lib/atoms/grid/grid.component.js +0 -51
  462. package/esm2015/lib/atoms/grid/grid.model.js +0 -1
  463. package/esm2015/lib/atoms/grid/grid.module.js +0 -17
  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 -29
  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 -28
  478. package/esm2015/lib/atoms/icon-wrapper/icon-wrapper.module.js +0 -15
  479. package/esm2015/lib/atoms/input-checkbox/input-checkbox.component.js +0 -36
  480. package/esm2015/lib/atoms/input-checkbox/input-checkbox.module.js +0 -15
  481. package/esm2015/lib/atoms/input-radio/input-radio.component.js +0 -36
  482. package/esm2015/lib/atoms/input-radio/input-radio.module.js +0 -22
  483. package/esm2015/lib/atoms/input-text/input-text.component.js +0 -36
  484. package/esm2015/lib/atoms/input-text/input-text.module.js +0 -16
  485. package/esm2015/lib/atoms/paragraph/paragraph.component.js +0 -21
  486. package/esm2015/lib/atoms/paragraph/paragraph.module.js +0 -15
  487. package/esm2015/lib/atoms/pill/pill.component.js +0 -37
  488. package/esm2015/lib/atoms/pill/pill.model.js +0 -1
  489. package/esm2015/lib/atoms/pill/pill.module.js +0 -18
  490. package/esm2015/lib/atoms/sfx-inline-error/sfx-inline-error.component.js +0 -17
  491. package/esm2015/lib/atoms/sfx-inline-error/sfx-inline-error.module.js +0 -15
  492. package/esm2015/lib/atoms/task-icon/task-icon.component.js +0 -18
  493. package/esm2015/lib/atoms/task-icon/task-icon.module.js +0 -15
  494. package/esm2015/lib/atoms/two-column-filter-area/two-column-filter-area.component.js +0 -18
  495. package/esm2015/lib/atoms/two-column-filter-area/two-column-filter-area.module.js +0 -15
  496. package/esm2015/lib/design-guide/color-swatch-collection/color-swatch-collection.component.js +0 -19
  497. package/esm2015/lib/design-guide/color-swatch-collection/color-swatch-collection.module.js +0 -16
  498. package/esm2015/lib/design-guide/icon-explorer/icon-explorer.component.js +0 -30
  499. package/esm2015/lib/design-guide/icon-explorer/icon-explorer.helper.js +0 -521
  500. package/esm2015/lib/design-guide/icon-explorer/icon-explorer.module.js +0 -17
  501. package/esm2015/lib/molecules/breadcrumb/breadcrumb.component.js +0 -21
  502. package/esm2015/lib/molecules/breadcrumb/breadcrumb.model.js +0 -1
  503. package/esm2015/lib/molecules/breadcrumb/breadcrumb.module.js +0 -17
  504. package/esm2015/lib/molecules/color-swatch/color-swatch.component.js +0 -29
  505. package/esm2015/lib/molecules/color-swatch/color-swatch.model.js +0 -1
  506. package/esm2015/lib/molecules/color-swatch/color-swatch.module.js +0 -23
  507. package/esm2015/lib/molecules/icon-swatch/icon-swatch.component.js +0 -26
  508. package/esm2015/lib/molecules/icon-swatch/icon-swatch.model.js +0 -3
  509. package/esm2015/lib/molecules/icon-swatch/icon-swatch.module.js +0 -25
  510. package/esm2015/lib/molecules/molecules.module.js +0 -38
  511. package/esm2015/lib/molecules/note/note.component.js +0 -27
  512. package/esm2015/lib/molecules/note/note.model.js +0 -1
  513. package/esm2015/lib/molecules/note/note.module.js +0 -25
  514. package/esm2015/lib/molecules/pills/pills.component.js +0 -33
  515. package/esm2015/lib/molecules/pills/pills.module.js +0 -21
  516. package/esm2015/lib/molecules/task/task.component.js +0 -25
  517. package/esm2015/lib/molecules/task/task.model.js +0 -1
  518. package/esm2015/lib/molecules/task/task.module.js +0 -25
  519. package/esm2015/lib/organisms/note-list/note-list.component.js +0 -19
  520. package/esm2015/lib/organisms/note-list/note-list.module.js +0 -16
  521. package/esm2015/lib/organisms/task-list/task-list.component.js +0 -18
  522. package/esm2015/lib/organisms/task-list/task-list.module.js +0 -16
  523. package/esm2015/lib/pages/events-settings-page/events-settings-page.component.js +0 -31
  524. package/esm2015/lib/pages/events-settings-page/events-settings-page.module.js +0 -35
  525. package/esm2015/lib/templates/admin-list/admin-list.component.js +0 -15
  526. package/esm2015/lib/templates/admin-list/admin-list.module.js +0 -15
  527. package/esm2015/lib/templates/placeholder/placeholder.component.js +0 -33
  528. package/esm2015/lib/templates/placeholder/placeholder.module.js +0 -16
  529. package/esm2015/projects/component-library/lib/atoms/atoms.module.js +0 -58
  530. package/esm2015/projects/component-library/lib/atoms/avatar/avatar.component.js +0 -101
  531. package/esm2015/projects/component-library/lib/atoms/avatar/avatar.module.js +0 -15
  532. package/esm2015/projects/component-library/lib/atoms/button/button.component.js +0 -35
  533. package/esm2015/projects/component-library/lib/atoms/button/button.module.js +0 -16
  534. package/esm2015/projects/component-library/lib/atoms/color-sample/color-sample.component.js +0 -20
  535. package/esm2015/projects/component-library/lib/atoms/color-sample/color-sample.enum.js +0 -26
  536. package/esm2015/projects/component-library/lib/atoms/color-sample/color-sample.module.js +0 -15
  537. package/esm2015/projects/component-library/lib/atoms/contextual-menu/contextual-menu.component.js +0 -20
  538. package/esm2015/projects/component-library/lib/atoms/contextual-menu/contextual-menu.model.js +0 -1
  539. package/esm2015/projects/component-library/lib/atoms/contextual-menu/contextual-menu.module.js +0 -17
  540. package/esm2015/projects/component-library/lib/atoms/filter-area/filter-area.component.js +0 -16
  541. package/esm2015/projects/component-library/lib/atoms/filter-area/filter-area.module.js +0 -15
  542. package/esm2015/projects/component-library/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.js +0 -49
  543. package/esm2015/projects/component-library/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.module.js +0 -14
  544. package/esm2015/projects/component-library/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.model.js +0 -8
  545. package/esm2015/projects/component-library/lib/atoms/grid/framework/framework.module.js +0 -15
  546. package/esm2015/projects/component-library/lib/atoms/grid/framework/relevance-score/relevance-score.component.js +0 -33
  547. package/esm2015/projects/component-library/lib/atoms/grid/framework/relevance-score/relevance-score.component.model.js +0 -6
  548. package/esm2015/projects/component-library/lib/atoms/grid/framework/relevance-score/relevance-score.component.module.js +0 -14
  549. package/esm2015/projects/component-library/lib/atoms/grid/grid.component.js +0 -51
  550. package/esm2015/projects/component-library/lib/atoms/grid/grid.model.js +0 -1
  551. package/esm2015/projects/component-library/lib/atoms/grid/grid.module.js +0 -17
  552. package/esm2015/projects/component-library/lib/atoms/h1/h1.component.js +0 -21
  553. package/esm2015/projects/component-library/lib/atoms/h1/h1.module.js +0 -15
  554. package/esm2015/projects/component-library/lib/atoms/h2/h2.component.js +0 -21
  555. package/esm2015/projects/component-library/lib/atoms/h2/h2.module.js +0 -15
  556. package/esm2015/projects/component-library/lib/atoms/h3/h3.component.js +0 -21
  557. package/esm2015/projects/component-library/lib/atoms/h3/h3.module.js +0 -15
  558. package/esm2015/projects/component-library/lib/atoms/h4/h4.component.js +0 -21
  559. package/esm2015/projects/component-library/lib/atoms/h4/h4.module.js +0 -15
  560. package/esm2015/projects/component-library/lib/atoms/h5/h5.component.js +0 -21
  561. package/esm2015/projects/component-library/lib/atoms/h5/h5.module.js +0 -15
  562. package/esm2015/projects/component-library/lib/atoms/icon/icon.component.js +0 -29
  563. package/esm2015/projects/component-library/lib/atoms/icon/icon.enum.js +0 -75
  564. package/esm2015/projects/component-library/lib/atoms/icon/icon.module.js +0 -15
  565. package/esm2015/projects/component-library/lib/atoms/icon-wrapper/icon-wrapper.component.js +0 -28
  566. package/esm2015/projects/component-library/lib/atoms/icon-wrapper/icon-wrapper.module.js +0 -15
  567. package/esm2015/projects/component-library/lib/atoms/input-checkbox/input-checkbox.component.js +0 -36
  568. package/esm2015/projects/component-library/lib/atoms/input-checkbox/input-checkbox.module.js +0 -15
  569. package/esm2015/projects/component-library/lib/atoms/input-radio/input-radio.component.js +0 -36
  570. package/esm2015/projects/component-library/lib/atoms/input-radio/input-radio.module.js +0 -22
  571. package/esm2015/projects/component-library/lib/atoms/input-text/input-text.component.js +0 -36
  572. package/esm2015/projects/component-library/lib/atoms/input-text/input-text.module.js +0 -16
  573. package/esm2015/projects/component-library/lib/atoms/paragraph/paragraph.component.js +0 -21
  574. package/esm2015/projects/component-library/lib/atoms/paragraph/paragraph.module.js +0 -15
  575. package/esm2015/projects/component-library/lib/atoms/pill/pill.component.js +0 -37
  576. package/esm2015/projects/component-library/lib/atoms/pill/pill.model.js +0 -1
  577. package/esm2015/projects/component-library/lib/atoms/pill/pill.module.js +0 -18
  578. package/esm2015/projects/component-library/lib/atoms/sfx-inline-error/sfx-inline-error.component.js +0 -17
  579. package/esm2015/projects/component-library/lib/atoms/sfx-inline-error/sfx-inline-error.module.js +0 -15
  580. package/esm2015/projects/component-library/lib/atoms/task-icon/task-icon.component.js +0 -18
  581. package/esm2015/projects/component-library/lib/atoms/task-icon/task-icon.module.js +0 -15
  582. package/esm2015/projects/component-library/lib/atoms/two-column-filter-area/two-column-filter-area.component.js +0 -18
  583. package/esm2015/projects/component-library/lib/atoms/two-column-filter-area/two-column-filter-area.module.js +0 -15
  584. package/esm2015/projects/component-library/lib/design-guide/color-swatch-collection/color-swatch-collection.component.js +0 -19
  585. package/esm2015/projects/component-library/lib/design-guide/color-swatch-collection/color-swatch-collection.module.js +0 -16
  586. package/esm2015/projects/component-library/lib/design-guide/icon-explorer/icon-explorer.component.js +0 -30
  587. package/esm2015/projects/component-library/lib/design-guide/icon-explorer/icon-explorer.helper.js +0 -521
  588. package/esm2015/projects/component-library/lib/design-guide/icon-explorer/icon-explorer.module.js +0 -17
  589. package/esm2015/projects/component-library/lib/molecules/breadcrumb/breadcrumb.component.js +0 -21
  590. package/esm2015/projects/component-library/lib/molecules/breadcrumb/breadcrumb.model.js +0 -1
  591. package/esm2015/projects/component-library/lib/molecules/breadcrumb/breadcrumb.module.js +0 -17
  592. package/esm2015/projects/component-library/lib/molecules/color-swatch/color-swatch.component.js +0 -29
  593. package/esm2015/projects/component-library/lib/molecules/color-swatch/color-swatch.model.js +0 -1
  594. package/esm2015/projects/component-library/lib/molecules/color-swatch/color-swatch.module.js +0 -23
  595. package/esm2015/projects/component-library/lib/molecules/icon-swatch/icon-swatch.component.js +0 -26
  596. package/esm2015/projects/component-library/lib/molecules/icon-swatch/icon-swatch.model.js +0 -3
  597. package/esm2015/projects/component-library/lib/molecules/icon-swatch/icon-swatch.module.js +0 -25
  598. package/esm2015/projects/component-library/lib/molecules/molecules.module.js +0 -38
  599. package/esm2015/projects/component-library/lib/molecules/note/note.component.js +0 -27
  600. package/esm2015/projects/component-library/lib/molecules/note/note.model.js +0 -1
  601. package/esm2015/projects/component-library/lib/molecules/note/note.module.js +0 -25
  602. package/esm2015/projects/component-library/lib/molecules/pills/pills.component.js +0 -33
  603. package/esm2015/projects/component-library/lib/molecules/pills/pills.module.js +0 -21
  604. package/esm2015/projects/component-library/lib/molecules/task/task.component.js +0 -25
  605. package/esm2015/projects/component-library/lib/molecules/task/task.model.js +0 -1
  606. package/esm2015/projects/component-library/lib/molecules/task/task.module.js +0 -25
  607. package/esm2015/projects/component-library/lib/organisms/note-list/note-list.component.js +0 -19
  608. package/esm2015/projects/component-library/lib/organisms/note-list/note-list.module.js +0 -16
  609. package/esm2015/projects/component-library/lib/organisms/task-list/task-list.component.js +0 -18
  610. package/esm2015/projects/component-library/lib/organisms/task-list/task-list.module.js +0 -16
  611. package/esm2015/projects/component-library/lib/pages/events-settings-page/events-settings-page.component.js +0 -31
  612. package/esm2015/projects/component-library/lib/pages/events-settings-page/events-settings-page.module.js +0 -35
  613. package/esm2015/projects/component-library/lib/templates/admin-list/admin-list.component.js +0 -15
  614. package/esm2015/projects/component-library/lib/templates/admin-list/admin-list.module.js +0 -15
  615. package/esm2015/projects/component-library/lib/templates/placeholder/placeholder.component.js +0 -33
  616. package/esm2015/projects/component-library/lib/templates/placeholder/placeholder.module.js +0 -16
  617. package/esm2015/projects/component-library/public-api.js +0 -70
  618. package/esm2015/projects/component-library/symphony-talent-component-library-projects-component-library.js +0 -23
  619. package/esm2015/public-api.js +0 -70
  620. package/esm2015/symphony-talent-component-library.js +0 -23
  621. package/fesm2015/symphony-talent-component-library-projects-component-library.js +0 -2017
  622. package/fesm2015/symphony-talent-component-library-projects-component-library.js.map +0 -1
  623. package/fesm2015/symphony-talent-component-library.js +0 -2017
  624. package/fesm2015/symphony-talent-component-library.js.map +0 -1
  625. package/lib/atoms/sfx-inline-error/sfx-inline-error.component.d.ts +0 -4
  626. package/lib/atoms/sfx-inline-error/sfx-inline-error.module.d.ts +0 -2
  627. package/projects/component-library/lib/atoms/sfx-inline-error/sfx-inline-error.component.d.ts +0 -4
  628. package/projects/component-library/lib/atoms/sfx-inline-error/sfx-inline-error.module.d.ts +0 -2
  629. package/projects/component-library/symphony-talent-component-library-projects-component-library.metadata.json +0 -1
  630. package/symphony-talent-component-library.metadata.json +0 -1
@@ -1,2017 +0,0 @@
1
- import { __decorate } from 'tslib';
2
- import { Input, Component, NgModule, EventEmitter, Output, ViewEncapsulation } from '@angular/core';
3
- import { SlicePipe, CommonModule } from '@angular/common';
4
- import { FormsModule, ReactiveFormsModule } from '@angular/forms';
5
- import { BsDropdownModule } from 'ngx-bootstrap/dropdown';
6
- import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
7
- import { TooltipModule } from 'ngx-bootstrap/tooltip';
8
- import { AgGridModule } from 'ag-grid-angular';
9
-
10
- let AvatarComponent = class AvatarComponent {
11
- constructor() { }
12
- ngOnInit() {
13
- this.sp = new SlicePipe();
14
- this.initials = '';
15
- this.firstInitial = '';
16
- this.bgColor = '';
17
- if (this.firstName) {
18
- this.initials += this.sp.transform(this.firstName, 0, 1);
19
- this.firstInitial = this.sp
20
- .transform(this.firstName, 0, 1)
21
- .toLocaleLowerCase();
22
- }
23
- if (this.lastName) {
24
- this.initials += this.sp.transform(this.lastName, 0, 1);
25
- }
26
- this.bgColor = this.getColor(this.firstInitial);
27
- }
28
- getColor(character) {
29
- switch (character) {
30
- case 'a':
31
- return '#D0021B';
32
- case 'b':
33
- return '#F5A623';
34
- case 'c':
35
- return '#E4D75C';
36
- case 'd':
37
- return '#8B572A';
38
- case 'e':
39
- return '#579F09';
40
- case 'f':
41
- return '#BD10E0';
42
- case 'g':
43
- return '#9013FE';
44
- case 'h':
45
- return '#4A90E2';
46
- case 'i':
47
- return '#39B196';
48
- case 'j':
49
- return '#4A4A4A';
50
- case 'k':
51
- return '#E84D4D';
52
- case 'l':
53
- return '#E84DC0';
54
- case 'm':
55
- return '#CE950B';
56
- case 'n':
57
- return '#1CCE0B';
58
- case 'o':
59
- return '#1DB1A6';
60
- case 'p':
61
- return '#3724A9';
62
- case 'q':
63
- return '#A9249E';
64
- case 'r':
65
- return '#A9246B';
66
- case 's':
67
- return '#24A97A';
68
- case 't':
69
- return '#1C93B3';
70
- case 'u':
71
- return '#D52424';
72
- case 'v':
73
- return '#A45519';
74
- case 'w':
75
- return '#19A420';
76
- case 'x':
77
- return '#A41963';
78
- case 'y':
79
- return '#CFD00A';
80
- case 'z':
81
- return '#AA0AD0';
82
- default:
83
- return '#000000';
84
- }
85
- }
86
- };
87
- __decorate([
88
- Input()
89
- ], AvatarComponent.prototype, "firstName", void 0);
90
- __decorate([
91
- Input()
92
- ], AvatarComponent.prototype, "lastName", void 0);
93
- __decorate([
94
- Input()
95
- ], AvatarComponent.prototype, "sizePx", void 0);
96
- __decorate([
97
- Input()
98
- ], AvatarComponent.prototype, "fontSizePx", void 0);
99
- AvatarComponent = __decorate([
100
- Component({
101
- selector: 'lib-avatar',
102
- 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",
103
- styles: [".avatar-circle{background:#000;border-radius:50%;height:50px;line-height:50px;width:50px}.avatar-text{color:#fff;text-align:center}"]
104
- })
105
- ], AvatarComponent);
106
-
107
- let AvatarModule = class AvatarModule {
108
- };
109
- AvatarModule = __decorate([
110
- NgModule({
111
- declarations: [AvatarComponent],
112
- imports: [CommonModule],
113
- exports: [AvatarComponent],
114
- })
115
- ], AvatarModule);
116
-
117
- let ButtonComponent = class ButtonComponent {
118
- constructor() {
119
- this.clicked = new EventEmitter();
120
- }
121
- ngOnInit() { }
122
- onClick() {
123
- this.clicked.emit(this.text);
124
- }
125
- };
126
- __decorate([
127
- Input()
128
- ], ButtonComponent.prototype, "text", void 0);
129
- __decorate([
130
- Input()
131
- ], ButtonComponent.prototype, "disabled", void 0);
132
- __decorate([
133
- Input()
134
- ], ButtonComponent.prototype, "isSecondary", void 0);
135
- __decorate([
136
- Input()
137
- ], ButtonComponent.prototype, "isInverse", void 0);
138
- __decorate([
139
- Output()
140
- ], ButtonComponent.prototype, "clicked", void 0);
141
- ButtonComponent = __decorate([
142
- Component({
143
- selector: 'symphony-button',
144
- template: "<button class=\"btn\" \n[ngClass]=\"{'btn-secondary': isSecondary, 'btn-primary': !isSecondary, 'is-inverse': isInverse }\"\n(click)=\"onClick()\" [disabled]=\"disabled\">{{ text }}</button>",
145
- styles: ["button{outline:none}.btn{border-radius:30px;font-family:neuzeit_groteskbold;height:56px;letter-spacing:.4px;min-width:140px;padding-left:40px;padding-right:40px}.btn:focus{outline:none}.btn:disabled{cursor:not-allowed;opacity:1%}.btn-primary{background:#000!important;border:2px solid #000!important;color:#fff}.btn-primary.is-inverse{background:#fff!important;border:2px solid #fff!important;color:#000}.btn-secondary{background:#fff;border:2px solid #000;color:#000}.btn-secondary.is-inverse{background:#000;border:2px solid #fff;color:#fff}"]
146
- })
147
- ], ButtonComponent);
148
-
149
- let ButtonModule = class ButtonModule {
150
- };
151
- ButtonModule = __decorate([
152
- NgModule({
153
- declarations: [ButtonComponent],
154
- imports: [CommonModule],
155
- providers: [],
156
- exports: [ButtonComponent],
157
- })
158
- ], ButtonModule);
159
-
160
- let PillComponent = class PillComponent {
161
- constructor() {
162
- this.removePill = new EventEmitter();
163
- }
164
- ngOnInit() {
165
- }
166
- onRemoveClick() {
167
- this.removePill.emit(this.pillLabel);
168
- }
169
- };
170
- __decorate([
171
- Input()
172
- ], PillComponent.prototype, "pillLabel", void 0);
173
- __decorate([
174
- Input()
175
- ], PillComponent.prototype, "isInverse", void 0);
176
- __decorate([
177
- Input()
178
- ], PillComponent.prototype, "hasClose", void 0);
179
- __decorate([
180
- Input()
181
- ], PillComponent.prototype, "tooltipLabel", void 0);
182
- __decorate([
183
- Output()
184
- ], PillComponent.prototype, "removePill", void 0);
185
- PillComponent = __decorate([
186
- Component({
187
- selector: 'symphony-pill',
188
- 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>",
189
- encapsulation: ViewEncapsulation.None,
190
- styles: [".sfx-pill-item{background-color:#f1f1f1;border-radius:25px;color:#000;font-family:neuzeit_groteskbold;font-weight:600;margin-right:10px;margin-top:10px;padding:10px 20px;position:relative;text-align:center}.sfx-pill-item.inverse-pill,.sfx-pill-item:hover{background-color:#000;color:#fff}.sfx-pill-item.has-close{padding:10px 20px 10px 38px}.sfx-pill-item i{font-size:18px;left:14px;position:absolute;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 rgba(0,0,0,.2);font-weight:600}.sfx-info-tooltip.pill-tooltip .tooltip-arrow.arrow{border-top-color:#fff}.sfx-info-tooltip .tooltip-inner{background-color:#fff;border-radius:0;color:#000;font-size:13px;max-width:160px;padding:8px 15px}"]
191
- })
192
- ], PillComponent);
193
-
194
- let TaskIconComponent = class TaskIconComponent {
195
- constructor() { }
196
- ngOnInit() { }
197
- };
198
- __decorate([
199
- Input()
200
- ], TaskIconComponent.prototype, "isComplete", void 0);
201
- TaskIconComponent = __decorate([
202
- Component({
203
- selector: 'symphony-task-icon',
204
- 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",
205
- styles: [".task-circle{border-radius:50%;height:50px;width:50px}.task-circle .fa-solid{color:#fff;font-size:20px;left:15px;position:relative;top:15px}.task-complete{background-color:#00d56b}.task-incomplete{background-color:#d9d9d9}"]
206
- })
207
- ], TaskIconComponent);
208
-
209
- let TaskIconModule = class TaskIconModule {
210
- };
211
- TaskIconModule = __decorate([
212
- NgModule({
213
- declarations: [TaskIconComponent],
214
- imports: [CommonModule],
215
- exports: [TaskIconComponent],
216
- })
217
- ], TaskIconModule);
218
-
219
- let ColorSampleComponent = class ColorSampleComponent {
220
- constructor() { }
221
- ngOnInit() {
222
- this.bgColor = this.color;
223
- }
224
- };
225
- __decorate([
226
- Input()
227
- ], ColorSampleComponent.prototype, "color", void 0);
228
- ColorSampleComponent = __decorate([
229
- Component({
230
- selector: 'symphony-color-sample',
231
- 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",
232
- styles: [".color-sample{border-radius:50%;float:left;height:30px;margin-right:20px;margin-top:10px;width:30px}.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}"]
233
- })
234
- ], ColorSampleComponent);
235
-
236
- let ColorSampleModule = class ColorSampleModule {
237
- };
238
- ColorSampleModule = __decorate([
239
- NgModule({
240
- declarations: [ColorSampleComponent],
241
- imports: [CommonModule],
242
- exports: [ColorSampleComponent],
243
- })
244
- ], ColorSampleModule);
245
-
246
- let H2Component = class H2Component {
247
- constructor() { }
248
- ngOnInit() { }
249
- };
250
- __decorate([
251
- Input()
252
- ], H2Component.prototype, "text", void 0);
253
- __decorate([
254
- Input()
255
- ], H2Component.prototype, "isSecondary", void 0);
256
- H2Component = __decorate([
257
- Component({
258
- selector: 'symphony-h2',
259
- template: "<h2 [ngClass]=\"{ 'h2-secondary': isSecondary, 'h2-primary': !isSecondary }\">\n {{ text }}\n <ng-content></ng-content>\n</h2>\n",
260
- styles: [".h2-primary,.h2-secondary{color:#000;letter-spacing:-2px;line-height:40px;margin-bottom:0;margin-top:0}.h2-secondary{color:#fff}"]
261
- })
262
- ], H2Component);
263
-
264
- let H2Module = class H2Module {
265
- };
266
- H2Module = __decorate([
267
- NgModule({
268
- declarations: [H2Component],
269
- imports: [CommonModule],
270
- exports: [H2Component],
271
- })
272
- ], H2Module);
273
-
274
- let H3Component = class H3Component {
275
- constructor() { }
276
- ngOnInit() { }
277
- };
278
- __decorate([
279
- Input()
280
- ], H3Component.prototype, "text", void 0);
281
- __decorate([
282
- Input()
283
- ], H3Component.prototype, "isSecondary", void 0);
284
- H3Component = __decorate([
285
- Component({
286
- selector: 'symphony-h3',
287
- template: "<h3 [ngClass]=\"{ 'h3-secondary': isSecondary, 'h3-primary': !isSecondary }\">\n {{ text }}\n <ng-content></ng-content>\n</h3>\n",
288
- styles: [".h3-primary,.h3-secondary{color:#000;letter-spacing:-1px;line-height:30px;margin-bottom:0;margin-top:0}.h3-secondary{color:#fff}"]
289
- })
290
- ], H3Component);
291
-
292
- let H3Module = class H3Module {
293
- };
294
- H3Module = __decorate([
295
- NgModule({
296
- declarations: [H3Component],
297
- imports: [CommonModule],
298
- exports: [H3Component],
299
- })
300
- ], H3Module);
301
-
302
- let H4Component = class H4Component {
303
- constructor() { }
304
- ngOnInit() { }
305
- };
306
- __decorate([
307
- Input()
308
- ], H4Component.prototype, "text", void 0);
309
- __decorate([
310
- Input()
311
- ], H4Component.prototype, "isSecondary", void 0);
312
- H4Component = __decorate([
313
- Component({
314
- selector: 'symphony-h4',
315
- template: "<h4 [ngClass]=\"{ 'h4-secondary': isSecondary, 'h4-primary': !isSecondary }\">\n {{ text }}\n <ng-content></ng-content>\n</h4>\n",
316
- styles: [".h4-primary,.h4-secondary{color:#000;letter-spacing:-1px;line-height:20px;margin-bottom:0;margin-top:0}.h4-secondary{color:#fff}"]
317
- })
318
- ], H4Component);
319
-
320
- let H4Module = class H4Module {
321
- };
322
- H4Module = __decorate([
323
- NgModule({
324
- declarations: [H4Component],
325
- imports: [CommonModule],
326
- exports: [H4Component],
327
- })
328
- ], H4Module);
329
-
330
- let H1Component = class H1Component {
331
- constructor() { }
332
- ngOnInit() { }
333
- };
334
- __decorate([
335
- Input()
336
- ], H1Component.prototype, "text", void 0);
337
- __decorate([
338
- Input()
339
- ], H1Component.prototype, "isSecondary", void 0);
340
- H1Component = __decorate([
341
- Component({
342
- selector: 'symphony-h1',
343
- template: "<h1\n [ngClass]=\"{\n 'h1-secondary': isSecondary,\n 'h1-primary': !isSecondary\n }\"\n>\n {{ text }}\n <ng-content></ng-content>\n</h1>\n",
344
- styles: [".h1-primary,.h1-secondary{color:#000;letter-spacing:-2px;line-height:50px;margin-bottom:0;margin-top:0}.h1-secondary{color:#fff}"]
345
- })
346
- ], H1Component);
347
-
348
- let H1Module = class H1Module {
349
- };
350
- H1Module = __decorate([
351
- NgModule({
352
- declarations: [H1Component],
353
- imports: [CommonModule],
354
- exports: [H1Component],
355
- })
356
- ], H1Module);
357
-
358
- let ParagraphComponent = class ParagraphComponent {
359
- constructor() { }
360
- ngOnInit() { }
361
- };
362
- __decorate([
363
- Input()
364
- ], ParagraphComponent.prototype, "text", void 0);
365
- __decorate([
366
- Input()
367
- ], ParagraphComponent.prototype, "isSecondary", void 0);
368
- ParagraphComponent = __decorate([
369
- Component({
370
- selector: 'symphony-paragraph',
371
- 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",
372
- styles: [".body-copy-primary,.body-copy-secondary{color:#000;line-height:20px;margin-bottom:0}.body-copy-secondary{color:#fff}"]
373
- })
374
- ], ParagraphComponent);
375
-
376
- let ParagraphModule = class ParagraphModule {
377
- };
378
- ParagraphModule = __decorate([
379
- NgModule({
380
- declarations: [ParagraphComponent],
381
- imports: [CommonModule],
382
- exports: [ParagraphComponent],
383
- })
384
- ], ParagraphModule);
385
-
386
- let H5Component = class H5Component {
387
- constructor() { }
388
- ngOnInit() { }
389
- };
390
- __decorate([
391
- Input()
392
- ], H5Component.prototype, "text", void 0);
393
- __decorate([
394
- Input()
395
- ], H5Component.prototype, "isSecondary", void 0);
396
- H5Component = __decorate([
397
- Component({
398
- selector: 'symphony-h5',
399
- template: "<h5\n [ngClass]=\"{\n 'h5-secondary': isSecondary,\n 'h5-primary': !isSecondary\n }\"\n>\n {{ text }}\n <ng-content></ng-content>\n</h5>\n",
400
- styles: [".h5-primary,.h5-secondary{color:#000;line-height:20px;margin-bottom:0;margin-top:0}.h5-secondary{color:#fff}"]
401
- })
402
- ], H5Component);
403
-
404
- let H5Module = class H5Module {
405
- };
406
- H5Module = __decorate([
407
- NgModule({
408
- declarations: [H5Component],
409
- imports: [CommonModule],
410
- exports: [H5Component],
411
- })
412
- ], H5Module);
413
-
414
- let IconComponent = class IconComponent {
415
- constructor() {
416
- this.clicked = new EventEmitter();
417
- }
418
- ngOnInit() { }
419
- onClick() {
420
- this.clicked.emit('clicked');
421
- }
422
- };
423
- __decorate([
424
- Input()
425
- ], IconComponent.prototype, "icon", void 0);
426
- __decorate([
427
- Input()
428
- ], IconComponent.prototype, "isSecondary", void 0);
429
- __decorate([
430
- Output()
431
- ], IconComponent.prototype, "clicked", void 0);
432
- IconComponent = __decorate([
433
- Component({
434
- selector: 'symphony-icon',
435
- template: "<i\n [class]=\"icon\"\n [ngClass]=\"{\n 'icon-secondary': isSecondary,\n 'icon-primary': !isSecondary\n }\"\n (click)=\"onClick()\"\n></i>\n",
436
- styles: [".icon-secondary{color:#fff}i{cursor:pointer;height:18px;width:18px}"]
437
- })
438
- ], IconComponent);
439
-
440
- let IconModule = class IconModule {
441
- };
442
- IconModule = __decorate([
443
- NgModule({
444
- declarations: [IconComponent],
445
- imports: [CommonModule],
446
- exports: [IconComponent],
447
- })
448
- ], IconModule);
449
-
450
- var Icons;
451
- (function (Icons) {
452
- Icons["MOREOPTIONS"] = "si-more-options";
453
- Icons["ADD"] = "si-add";
454
- Icons["ACTIVITY"] = "si-activity";
455
- Icons["ARROWHIDEREVEAL"] = "si-arrow-hide-reveal";
456
- Icons["ARROWNEXT"] = "si-arrow-next";
457
- Icons["ARROWPREV"] = "si-arrow-prev";
458
- Icons["CLOSEMODAL"] = "si-close-modal";
459
- Icons["COLLAPSE"] = "si-collapse";
460
- Icons["DAYMODE"] = "si-daymode";
461
- Icons["DELETE"] = "si-delete";
462
- Icons["DOCUMENT"] = "si-document";
463
- Icons["DOWNLOAD"] = "si-download";
464
- Icons["EDIT"] = "si-edit";
465
- Icons["EMAILDRIP"] = "si-email-drip";
466
- Icons["EMAILOPEN"] = "si-email-open";
467
- Icons["EMAILSEND"] = "si-email-send";
468
- Icons["EXPAND"] = "si-expand";
469
- Icons["FAVORITE"] = "si-favorite";
470
- Icons["FEEDBACKMAYBE"] = "si-feedback-maybe";
471
- Icons["FEEDBACKNO"] = "si-feedback-no";
472
- Icons["FEEDBACKYES"] = "si-feedback-yes";
473
- Icons["FOLDERMULTIPLE"] = "si-folder-multiple";
474
- Icons["INCLUDE"] = "si-include";
475
- Icons["INFO"] = "si-info";
476
- Icons["INTERVIEW"] = "si-interview";
477
- Icons["LINK"] = "si-link";
478
- Icons["LOCATION"] = "si-location";
479
- Icons["MENUALL"] = "si-menu-all";
480
- Icons["MENUANALYTICS"] = "si-menu-analytics";
481
- Icons["MENUASSETS"] = "si-menu-assets";
482
- Icons["MENUCAMPAIGNS"] = "si-menu-campaigns";
483
- Icons["MENUCONTACT"] = "si-menu-contact";
484
- Icons["MENUCONTENT"] = "si-menu-content";
485
- Icons["MENUDASHBOARD"] = "si-menu-dashboard";
486
- Icons["MENUEVENTS"] = "si-menu-events";
487
- Icons["MENUFOLDERS"] = "si-menu-folders";
488
- Icons["MENUJOBS"] = "si-menu-jobs";
489
- Icons["MENURETURN"] = "si-menu-return";
490
- Icons["MENUWORKFLOWS"] = "si-menu-workflows";
491
- Icons["MERGE"] = "si-merge";
492
- Icons["MOVE"] = "si-move";
493
- Icons["NIGHTMODE"] = "si-nightmode";
494
- Icons["NOTIFICATION"] = "si-notification";
495
- Icons["ORGANIZECOLUMNS"] = "si-organize-columns";
496
- Icons["ORGANIZECONTACTS"] = "si-organize-contacts";
497
- Icons["PENDINGINCOMPLETE"] = "si-pending-incomplete";
498
- Icons["PHONENUMBER"] = "si-phone-number";
499
- Icons["PREVIEW"] = "si-preview";
500
- Icons["PROMOTE"] = "si-promote";
501
- Icons["REFRESH"] = "si-refresh";
502
- Icons["REMOVE"] = "si-remove";
503
- Icons["EXCLUDE"] = "si-exclude";
504
- Icons["RESULTSFILTERS"] = "si-results-filters";
505
- Icons["REVIEW"] = "si-review";
506
- Icons["SALARY"] = "si-salary";
507
- Icons["SAVE"] = "si-save";
508
- Icons["SEARCHADVANCED"] = "si-search-advanced";
509
- Icons["SEARCHCLEAR"] = "si-search-clear";
510
- Icons["SEARCHNEW"] = "si-search-new";
511
- Icons["SETTINGSMART"] = "si-settings-smart";
512
- Icons["SMS"] = "si-sms";
513
- Icons["SORTMINI"] = "si-sort-mini";
514
- Icons["STATUS"] = "si-status";
515
- Icons["SYSTEMACTION"] = "si-system-action";
516
- Icons["TASKCOMPLETED"] = "si-task-completed";
517
- Icons["TASKOPEN"] = "si-task-open";
518
- Icons["TIMEFRAME"] = "si-timeframe";
519
- Icons["TIMELINE"] = "si-timeline";
520
- Icons["UPLOAD"] = "si-upload";
521
- Icons["USERMULTIPLE"] = "si-user-multiple";
522
- Icons["USER"] = "si-user";
523
- })(Icons || (Icons = {}));
524
-
525
- let IconWrapperComponent = class IconWrapperComponent {
526
- constructor() {
527
- this.Icons = Icons;
528
- this.clicked = new EventEmitter();
529
- }
530
- ngOnInit() { }
531
- onClick() {
532
- this.clicked.emit('clicked');
533
- }
534
- };
535
- __decorate([
536
- Input()
537
- ], IconWrapperComponent.prototype, "isInverse", void 0);
538
- __decorate([
539
- Output()
540
- ], IconWrapperComponent.prototype, "clicked", void 0);
541
- IconWrapperComponent = __decorate([
542
- Component({
543
- selector: 'symphony-icon-wrapper',
544
- template: "<div class=\"icon-wrapper\" [ngClass]=\"{ 'is-inverse': isInverse }\">\n <ng-content></ng-content>\n</div>\n",
545
- styles: [".icon-wrapper{border:1px solid #000;border-radius:50%;cursor:pointer;height:40px;padding-top:11px;text-align:center;width:40px}.icon-wrapper.is-inverse,.icon-wrapper:hover{background:#000;color:#fff}.icon-wrapper.is-inverse:hover{background:#fff;color:#000}"]
546
- })
547
- ], IconWrapperComponent);
548
-
549
- let IconWrapperModule = class IconWrapperModule {
550
- };
551
- IconWrapperModule = __decorate([
552
- NgModule({
553
- declarations: [IconWrapperComponent],
554
- imports: [CommonModule],
555
- exports: [IconWrapperComponent],
556
- })
557
- ], IconWrapperModule);
558
-
559
- let InputCheckboxComponent = class InputCheckboxComponent {
560
- constructor() {
561
- this.clicked = new EventEmitter();
562
- }
563
- ngOnInit() { }
564
- onClick() {
565
- this.isActive ? (this.isActive = false) : (this.isActive = true);
566
- this.clicked.emit({
567
- label: this.label,
568
- isActive: this.isActive,
569
- });
570
- }
571
- };
572
- __decorate([
573
- Input()
574
- ], InputCheckboxComponent.prototype, "isActive", void 0);
575
- __decorate([
576
- Input()
577
- ], InputCheckboxComponent.prototype, "label", void 0);
578
- __decorate([
579
- Input()
580
- ], InputCheckboxComponent.prototype, "isRequired", void 0);
581
- __decorate([
582
- Output()
583
- ], InputCheckboxComponent.prototype, "clicked", void 0);
584
- InputCheckboxComponent = __decorate([
585
- Component({
586
- selector: 'symphony-input-checkbox',
587
- 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",
588
- styles: [".sfx-checkbox .sfx-checkbox-input:checked~label:after{background-color:transparent}.requiredField{color:red!important}.sfx-checkbox{-moz-user-select:none;-ms-user-select:none;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-select:none;margin:10px 0;user-select:none}.sfx-checkbox .sfx-checkbox-input:checked,.sfx-checkbox .sfx-checkbox-input:not(:checked){height:0;left:0;margin:0;opacity:0;overflow:hidden;pointer-events:none;position:absolute;width:0;z-index:-1}.sfx-checkbox .sfx-checkbox-input~label{color:#000;cursor:pointer;display:inline-block;font-family:neuzeit_groteskbold,sans-serif;font-size:14px;height:100%;line-height:20px;margin:0;padding-left:36px;position:relative;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{border-radius:2px;content:\"\";left:0;position:absolute;transform:translateZ(0);transition:all .2s ease-in}.sfx-checkbox .sfx-checkbox-input~label:after{border-radius:2px;content:\"\";left:0;position:absolute;top:0}.sfx-checkbox .sfx-checkbox-input:not(:checked)~label:before{border:none;height:15px;left:0;top:1px;transform:rotate(37deg) scale(.1);transform-origin:100% 100%;width:9px}.sfx-checkbox .sfx-checkbox-input:not(:checked)~label:after{border:2px solid #000;border-radius:4px;height:20px;width:20px;z-index:0}.sfx-checkbox .sfx-checkbox-input:checked~label:before{-webkit-backface-visibility:hidden;backface-visibility:hidden;border-color:transparent #000 #000 transparent;border-radius:0;border-style:solid;border-width:0 2px 2px 0;height:12px;left:3px;top:3px;transform:rotate(37deg) scale(1);transform-origin:100% 100%;width:6px;z-index:1}.sfx-checkbox .sfx-checkbox-input:checked~label:after{background-color:#fff;border:2px solid #000;border-radius:4px;height:20px;width:20px}.sfx-checkbox .sfx-checkbox-input:disabled~label{opacity:.3;pointer-events:none}"]
589
- })
590
- ], InputCheckboxComponent);
591
-
592
- let InputCheckboxModule = class InputCheckboxModule {
593
- };
594
- InputCheckboxModule = __decorate([
595
- NgModule({
596
- declarations: [InputCheckboxComponent],
597
- imports: [CommonModule],
598
- exports: [InputCheckboxComponent],
599
- })
600
- ], InputCheckboxModule);
601
-
602
- let InputRadioComponent = class InputRadioComponent {
603
- constructor() {
604
- this.clicked = new EventEmitter();
605
- }
606
- ngOnInit() { }
607
- onClick() {
608
- this.isActive ? (this.isActive = false) : (this.isActive = true);
609
- this.clicked.emit({
610
- label: this.label,
611
- isActive: this.isActive,
612
- });
613
- }
614
- };
615
- __decorate([
616
- Input()
617
- ], InputRadioComponent.prototype, "isActive", void 0);
618
- __decorate([
619
- Input()
620
- ], InputRadioComponent.prototype, "label", void 0);
621
- __decorate([
622
- Input()
623
- ], InputRadioComponent.prototype, "isRequired", void 0);
624
- __decorate([
625
- Output()
626
- ], InputRadioComponent.prototype, "clicked", void 0);
627
- InputRadioComponent = __decorate([
628
- Component({
629
- selector: 'symphony-input-radio',
630
- 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",
631
- styles: [".requiredField{color:red!important}.sfx-radio{-moz-user-select:none;-ms-user-select:none;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-select:none;margin:10px 0;user-select:none}.sfx-radio .sfx-radio-input{cursor:inherit;height:100%;left:0;margin:0;opacity:0;padding:0;position:absolute;top:0;width:100%;z-index:1}.sfx-radio .sfx-radio-input~label{color:#000;cursor:pointer;display:inline-block;font-family:neuzeit_groteskbold;font-size:14px;height:100%;line-height:20px;position:relative}.sfx-radio .sfx-radio-input+:before{border:.1rem solid #000;border-radius:50%;content:\"\";display:inline-block;height:1rem;margin-bottom:.2rem;margin-right:.5rem;vertical-align:bottom;width:1rem}.sfx-radio .sfx-radio-input:checked+:before{background:radial-gradient(#000 0,#000 40%,transparent 50%,transparent)}.sfx-radio .sfx-radio-input:checked+*{color:#000}"]
632
- })
633
- ], InputRadioComponent);
634
-
635
- let SfxInlineErrorComponent = class SfxInlineErrorComponent {
636
- constructor() { }
637
- };
638
- __decorate([
639
- Input()
640
- ], SfxInlineErrorComponent.prototype, "errorMessage", void 0);
641
- SfxInlineErrorComponent = __decorate([
642
- Component({
643
- selector: 'lib-sfx-inline-error',
644
- template: "<p>{{ errorMessage }}</p>\n",
645
- styles: ["p{color:red!important;font-size:1rem;margin:0;padding:10px 0}"]
646
- })
647
- ], SfxInlineErrorComponent);
648
-
649
- let SfxInlineErrorModule = class SfxInlineErrorModule {
650
- };
651
- SfxInlineErrorModule = __decorate([
652
- NgModule({
653
- declarations: [SfxInlineErrorComponent],
654
- imports: [CommonModule],
655
- exports: [SfxInlineErrorComponent],
656
- })
657
- ], SfxInlineErrorModule);
658
-
659
- let InputRadioModule = class InputRadioModule {
660
- };
661
- InputRadioModule = __decorate([
662
- NgModule({
663
- declarations: [InputRadioComponent],
664
- imports: [
665
- CommonModule,
666
- FormsModule,
667
- ReactiveFormsModule,
668
- SfxInlineErrorModule,
669
- ],
670
- exports: [InputRadioComponent],
671
- })
672
- ], InputRadioModule);
673
-
674
- let InputTextComponent = class InputTextComponent {
675
- constructor() {
676
- this.placeholder = '';
677
- this.textChange = new EventEmitter();
678
- }
679
- ngOnInit() { }
680
- onTextChange(event) {
681
- this.textChange.emit(event.target.value);
682
- }
683
- };
684
- __decorate([
685
- Input()
686
- ], InputTextComponent.prototype, "placeholder", void 0);
687
- __decorate([
688
- Input()
689
- ], InputTextComponent.prototype, "icon", void 0);
690
- __decorate([
691
- Input()
692
- ], InputTextComponent.prototype, "label", void 0);
693
- __decorate([
694
- Input()
695
- ], InputTextComponent.prototype, "isInverse", void 0);
696
- __decorate([
697
- Output()
698
- ], InputTextComponent.prototype, "textChange", void 0);
699
- InputTextComponent = __decorate([
700
- Component({
701
- selector: 'symphony-input-text',
702
- template: "<div\n class=\"input-text-wrap\"\n [ngClass]=\"{\n 'input-secondary': isInverse\n }\"\n>\n <label for=\"input-text\" class=\"input-text-label\">{{ label }}</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",
703
- 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::-moz-placeholder{color:#fff}.input-text-wrap.input-secondary .input-text:-ms-input-placeholder{color:#fff}.input-text-wrap.input-secondary .input-text::placeholder{color:#fff}.input-text-wrap .input-text-label{display:block;font-family:neuzeit_groteskbold,sans-serif;line-height:25px;margin-bottom:.9375rem}.input-text-wrap .input-text{border:1px solid #d0d0d0;border-radius:4px;font-family:neuzeit-grotesk,sans-serif!important;line-height:25px;padding:7px 15px;width:100%}.input-text-wrap .input-text::-moz-placeholder{color:#000}.input-text-wrap .input-text:-ms-input-placeholder{color:#000}.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{bottom:8px;font-size:14px;position:absolute;right:15px}"]
704
- })
705
- ], InputTextComponent);
706
-
707
- let InputTextModule = class InputTextModule {
708
- };
709
- InputTextModule = __decorate([
710
- NgModule({
711
- declarations: [InputTextComponent],
712
- imports: [CommonModule, IconModule],
713
- exports: [InputTextComponent],
714
- })
715
- ], InputTextModule);
716
-
717
- let ContextualMenuComponent = class ContextualMenuComponent {
718
- constructor() { }
719
- ngOnInit() {
720
- this.sfxMoreActions = this.moreActions;
721
- }
722
- };
723
- __decorate([
724
- Input()
725
- ], ContextualMenuComponent.prototype, "moreActions", void 0);
726
- ContextualMenuComponent = __decorate([
727
- Component({
728
- selector: 'symphony-contextual-menu',
729
- template: "<div class=\"btn-group\" dropdown>\n <button\n id=\"button-basic\"\n dropdownToggle\n type=\"button\"\n class=\"btn dropdown-toggle\"\n aria-controls=\"dropdown-basic\"\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 moreActions of sfxMoreActions\">\n <a class=\"dropdown-item\" href=\"#\">{{ moreActions.dropItemName }}</a>\n </li>\n </ul>\n</div>\n",
730
- styles: [".btn-group button.dropdown-toggle.btn{align-items:center;background:#fff;border-radius:50%;box-shadow:none;color:#000;display:flex;font-size:18px;height:40px;justify-content:center;line-height:26px;padding:0;width:40px}.btn-group button.dropdown-toggle.btn:hover{background:#000;color:#fff}.btn-group .dropdown-menu{border:none;border-radius:10px;box-shadow:0 0 15px rgba(0,0,0,.175);left:auto;margin-top:10px;max-height:none;min-width:240px;overflow:inherit;padding-bottom:20px;padding-top:20px;right:-10px}.btn-group .dropdown-menu li a.dropdown-item{color:#000;font-weight:600;line-height:40px;padding:0 20px}.btn-group .dropdown-menu li a.dropdown-item:hover{background:#000;color:#fff}.btn-group .dropdown-menu li a.not-allowed{cursor:not-allowed}.btn-group .dropdown-menu:before{color:#fff;content:\"\\e252\";display:inline-block;font-family:Glyphicons Halflings!important;font-size:14px;position:absolute;right:23px;top:-13px;transform:rotate(180deg)}.btn-group.open button.dropdown-toggle.btn{background:#000;color:#fff}"]
731
- })
732
- ], ContextualMenuComponent);
733
-
734
- let ContextualMenuModule = class ContextualMenuModule {
735
- };
736
- ContextualMenuModule = __decorate([
737
- NgModule({
738
- declarations: [ContextualMenuComponent],
739
- imports: [CommonModule, BsDropdownModule.forRoot(), BrowserAnimationsModule],
740
- exports: [ContextualMenuComponent],
741
- })
742
- ], ContextualMenuModule);
743
-
744
- let PillModule = class PillModule {
745
- };
746
- PillModule = __decorate([
747
- NgModule({
748
- declarations: [PillComponent],
749
- imports: [
750
- CommonModule, TooltipModule.forRoot()
751
- ],
752
- exports: [PillComponent],
753
- })
754
- ], PillModule);
755
-
756
- let FilterAreaComponent = class FilterAreaComponent {
757
- constructor() { }
758
- ngOnInit() {
759
- }
760
- };
761
- FilterAreaComponent = __decorate([
762
- Component({
763
- selector: 'symphony-filter-area',
764
- 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>",
765
- styles: [".sfx-filter-section{background:#000;color:#fff;padding:1.875rem 2.5rem}"]
766
- })
767
- ], FilterAreaComponent);
768
-
769
- let FilterAreaModule = class FilterAreaModule {
770
- };
771
- FilterAreaModule = __decorate([
772
- NgModule({
773
- declarations: [FilterAreaComponent],
774
- imports: [CommonModule],
775
- exports: [FilterAreaComponent]
776
- })
777
- ], FilterAreaModule);
778
-
779
- let TwoColumnFilterAreaComponent = class TwoColumnFilterAreaComponent {
780
- constructor() { }
781
- ngOnInit() { }
782
- };
783
- __decorate([
784
- Input()
785
- ], TwoColumnFilterAreaComponent.prototype, "height", void 0);
786
- TwoColumnFilterAreaComponent = __decorate([
787
- Component({
788
- selector: 'symphony-two-column-filter-area',
789
- 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\n class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6 sfx-mb-30 sfx-filter-items-wrap\"\n >\n <ng-content select=\"[filter-one]\"></ng-content>\n </div>\n\n <!-- search component -->\n <div\n class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6 sfx-mb-30 sfx-filter-items-wrap\"\n >\n <ng-content select=\"[filter-two]\"></ng-content>\n </div>\n </div>\n </div>\n</section>\n",
790
- styles: [".sfx-filter-section{background-color:#000;border-radius:5px;padding:1.875rem 2.5rem}"]
791
- })
792
- ], TwoColumnFilterAreaComponent);
793
-
794
- let TwoColumnFilterAreaModule = class TwoColumnFilterAreaModule {
795
- };
796
- TwoColumnFilterAreaModule = __decorate([
797
- NgModule({
798
- declarations: [TwoColumnFilterAreaComponent],
799
- imports: [CommonModule],
800
- exports: [TwoColumnFilterAreaComponent],
801
- })
802
- ], TwoColumnFilterAreaModule);
803
-
804
- var ActivityScoreLevel;
805
- (function (ActivityScoreLevel) {
806
- ActivityScoreLevel["Low"] = "low";
807
- ActivityScoreLevel["Medium"] = "medium";
808
- ActivityScoreLevel["High"] = "high";
809
- ActivityScoreLevel["Empty"] = "empty";
810
- })(ActivityScoreLevel || (ActivityScoreLevel = {}));
811
-
812
- let ContactActivityScoreComponent = class ContactActivityScoreComponent {
813
- constructor() {
814
- this.contactActivityScoreModel = { activityScore: ActivityScoreLevel.Low };
815
- this.contact = { candidateScoreActivityScore: 0 };
816
- }
817
- refresh(params) {
818
- return true;
819
- }
820
- agInit(params) {
821
- this.contact = params.data;
822
- if (!this.contact.header5) {
823
- this.dataAvailable = 'N/A';
824
- }
825
- else {
826
- this.dataAvailable = this.contact.header5;
827
- }
828
- switch (true) {
829
- case this.contact.header5 >= 0 && this.contact.header5 < 34: {
830
- this.contactActivityScoreModel.activityScore = ActivityScoreLevel.Low;
831
- break;
832
- }
833
- case this.contact.header5 >= 34 && this.contact.header5 <= 66: {
834
- this.contactActivityScoreModel.activityScore =
835
- ActivityScoreLevel.Medium;
836
- break;
837
- }
838
- case this.contact.header5 > 66: {
839
- this.contactActivityScoreModel.activityScore = ActivityScoreLevel.High;
840
- break;
841
- }
842
- default: {
843
- this.contactActivityScoreModel.activityScore = ActivityScoreLevel.Empty;
844
- break;
845
- }
846
- }
847
- }
848
- };
849
- ContactActivityScoreComponent = __decorate([
850
- Component({
851
- selector: 'lib-contact-activity-score',
852
- 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",
853
- styles: [".activity-score-bg{background-color:#bbb;border-radius:50%;color:#fff;display:inline-block;height:38px;text-align:center;width:38px}.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}"]
854
- })
855
- ], ContactActivityScoreComponent);
856
-
857
- var RelevanceScoreLevel;
858
- (function (RelevanceScoreLevel) {
859
- RelevanceScoreLevel["Value"] = "value";
860
- RelevanceScoreLevel["Empty"] = "empty";
861
- })(RelevanceScoreLevel || (RelevanceScoreLevel = {}));
862
-
863
- let RelevanceScoreComponent = class RelevanceScoreComponent {
864
- constructor() {
865
- this.relevanceScoreModel = { relevanceScore: RelevanceScoreLevel.Empty };
866
- this.contact = { relevanceScore: 0 };
867
- }
868
- refresh(params) {
869
- return true;
870
- }
871
- agInit(params) {
872
- this.contact = params.data;
873
- if (this.contact) {
874
- if (this.contact.header4 || this.contact.header4 === 0) {
875
- this.relevanceData = this.contact.header4;
876
- this.relevanceScoreModel.relevanceScore = RelevanceScoreLevel.Value;
877
- }
878
- else {
879
- this.relevanceData = 'N/A';
880
- }
881
- }
882
- }
883
- };
884
- RelevanceScoreComponent = __decorate([
885
- Component({
886
- selector: 'lib-relevance-score',
887
- template: "<span class=\"relevance-score-bg relevance-score-{{ relevanceScoreModel.relevanceScore }}\">\n <div class=\"relevance-score-content\">{{ relevanceData}}</div>\n</span>",
888
- styles: [".relevance-score-bg{background-color:#fff;border-radius:50%;color:#000;display:inline-block;height:38px;text-align:center;width:38px}.relevance-score-value{border:1px solid #000;font-weight:700}"]
889
- })
890
- ], RelevanceScoreComponent);
891
-
892
- let GridComponent = class GridComponent {
893
- constructor() {
894
- this.rowHeightPage = 80;
895
- this.gridHeight = 100;
896
- this.frameworkComponents = this.getFrameworkComponents();
897
- this.columnDefs = [
898
- { headerName: 'Name', field: 'header1' },
899
- { headerName: 'Location', field: 'header2' },
900
- { headerName: 'Title', field: 'header3' },
901
- {
902
- headerName: 'Engagement Score',
903
- field: 'header4',
904
- cellRenderer: 'fitScore',
905
- },
906
- {
907
- headerName: 'Activity Score',
908
- field: 'header5',
909
- cellRenderer: 'contactActivityScore',
910
- },
911
- ];
912
- this.getRowHeight = () => {
913
- return this.rowHeightPage;
914
- };
915
- }
916
- ngOnInit() { }
917
- onGridReady(gridReadyEvent) {
918
- gridReadyEvent.api.sizeColumnsToFit();
919
- }
920
- getFrameworkComponents() {
921
- return {
922
- contactActivityScore: ContactActivityScoreComponent,
923
- fitScore: RelevanceScoreComponent,
924
- };
925
- }
926
- };
927
- __decorate([
928
- Input()
929
- ], GridComponent.prototype, "gridList", void 0);
930
- GridComponent = __decorate([
931
- Component({
932
- selector: 'symphony-grid',
933
- template: "<ag-grid-angular\n style=\"width: 100%\"\n class=\"ag-theme-alpine\"\n [rowData]=\"gridList\"\n [columnDefs]=\"columnDefs\"\n (gridReady)=\"onGridReady($event)\"\n [style.height.vh]=\"gridHeight\"\n [getRowHeight]=\"getRowHeight\"\n [frameworkComponents]=\"frameworkComponents\"\n>\n</ag-grid-angular>\n",
934
- styles: [""]
935
- })
936
- ], GridComponent);
937
-
938
- let ContactActivityScoreModule = class ContactActivityScoreModule {
939
- };
940
- ContactActivityScoreModule = __decorate([
941
- NgModule({
942
- declarations: [ContactActivityScoreComponent],
943
- imports: [CommonModule],
944
- })
945
- ], ContactActivityScoreModule);
946
-
947
- let RelevanceScoreModule = class RelevanceScoreModule {
948
- };
949
- RelevanceScoreModule = __decorate([
950
- NgModule({
951
- declarations: [RelevanceScoreComponent],
952
- imports: [CommonModule],
953
- })
954
- ], RelevanceScoreModule);
955
-
956
- let FrameworkModule = class FrameworkModule {
957
- };
958
- FrameworkModule = __decorate([
959
- NgModule({
960
- declarations: [],
961
- imports: [],
962
- exports: [ContactActivityScoreModule, RelevanceScoreModule]
963
- })
964
- ], FrameworkModule);
965
-
966
- let GridModule = class GridModule {
967
- };
968
- GridModule = __decorate([
969
- NgModule({
970
- declarations: [GridComponent],
971
- imports: [CommonModule, AgGridModule.withComponents([]), FrameworkModule],
972
- exports: [GridComponent]
973
- })
974
- ], GridModule);
975
-
976
- let AtomsModule = class AtomsModule {
977
- };
978
- AtomsModule = __decorate([
979
- NgModule({
980
- declarations: [],
981
- imports: [],
982
- exports: [
983
- ButtonModule,
984
- ContextualMenuModule,
985
- AvatarModule,
986
- PillModule,
987
- TaskIconModule,
988
- ColorSampleModule,
989
- H1Module,
990
- H2Module,
991
- H3Module,
992
- H4Module,
993
- H5Module,
994
- ParagraphModule,
995
- IconModule,
996
- IconWrapperModule,
997
- FilterAreaModule,
998
- TwoColumnFilterAreaModule,
999
- InputRadioModule,
1000
- InputCheckboxModule,
1001
- InputTextModule,
1002
- GridModule,
1003
- ContactActivityScoreModule,
1004
- RelevanceScoreModule
1005
- ],
1006
- })
1007
- ], AtomsModule);
1008
-
1009
- let BreadcrumbComponent = class BreadcrumbComponent {
1010
- constructor() { }
1011
- ngOnInit() {
1012
- this.icon = Icons.ARROWNEXT;
1013
- }
1014
- };
1015
- __decorate([
1016
- Input()
1017
- ], BreadcrumbComponent.prototype, "breadcrumbs", void 0);
1018
- BreadcrumbComponent = __decorate([
1019
- Component({
1020
- selector: 'symphony-breadcrumb',
1021
- 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\" *ngIf=\"!last\"></symphony-icon>\n </span>\n</div>\n",
1022
- styles: [".breadcrumb-item,.sfx-breadcrumb-wrapper{display:flex}symphony-icon{padding:0 6px;position:relative;top:9px}"]
1023
- })
1024
- ], BreadcrumbComponent);
1025
-
1026
- let BreadcrumbModule = class BreadcrumbModule {
1027
- };
1028
- BreadcrumbModule = __decorate([
1029
- NgModule({
1030
- declarations: [BreadcrumbComponent],
1031
- imports: [CommonModule, H3Module, IconModule],
1032
- exports: [BreadcrumbComponent],
1033
- })
1034
- ], BreadcrumbModule);
1035
-
1036
- let ColorSwatchComponent = class ColorSwatchComponent {
1037
- constructor() {
1038
- this.colorSwatchModel = {
1039
- colorCode: '',
1040
- sassCode: '',
1041
- };
1042
- }
1043
- ngOnInit() {
1044
- this.getDescription();
1045
- }
1046
- getDescription() {
1047
- this.description = `${this.colorSwatchModel.colorCode} - ${this.colorSwatchModel.sassCode}`;
1048
- return this.description;
1049
- }
1050
- };
1051
- __decorate([
1052
- Input()
1053
- ], ColorSwatchComponent.prototype, "colorSwatchModel", void 0);
1054
- ColorSwatchComponent = __decorate([
1055
- Component({
1056
- selector: 'symphony-ui-color-explorer',
1057
- 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",
1058
- styles: [""]
1059
- })
1060
- ], ColorSwatchComponent);
1061
-
1062
- let ColorSwatchModule = class ColorSwatchModule {
1063
- };
1064
- ColorSwatchModule = __decorate([
1065
- NgModule({
1066
- declarations: [ColorSwatchComponent],
1067
- imports: [
1068
- CommonModule,
1069
- ColorSampleModule,
1070
- H3Module,
1071
- ParagraphModule
1072
- ],
1073
- exports: [ColorSwatchComponent],
1074
- })
1075
- ], ColorSwatchModule);
1076
-
1077
- let IconSwatchComponent = class IconSwatchComponent {
1078
- constructor() {
1079
- this.iconSwatchModel = {
1080
- iconName: '',
1081
- iconClass: '',
1082
- };
1083
- }
1084
- ngOnInit() { }
1085
- };
1086
- __decorate([
1087
- Input()
1088
- ], IconSwatchComponent.prototype, "iconSwatchModel", void 0);
1089
- __decorate([
1090
- Input()
1091
- ], IconSwatchComponent.prototype, "isInverse", void 0);
1092
- IconSwatchComponent = __decorate([
1093
- Component({
1094
- selector: 'symphony-icon-swatch',
1095
- 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",
1096
- styles: ["*{font-family:neuzeit-grotesk,sans-serif!important}.sfx-icon-wrapper{display:inline-block;margin-right:10px;margin-top:10px;text-align:center;vertical-align:top}.mt-0{margin-top:0}.sfx-icon-description-wrapper{display:inline-block}"]
1097
- })
1098
- ], IconSwatchComponent);
1099
-
1100
- let IconSwatchModule = class IconSwatchModule {
1101
- };
1102
- IconSwatchModule = __decorate([
1103
- NgModule({
1104
- declarations: [IconSwatchComponent],
1105
- imports: [
1106
- CommonModule,
1107
- IconModule,
1108
- H5Module,
1109
- ParagraphModule,
1110
- IconWrapperModule,
1111
- ],
1112
- exports: [IconSwatchComponent],
1113
- })
1114
- ], IconSwatchModule);
1115
-
1116
- let NoteComponent = class NoteComponent {
1117
- constructor() {
1118
- this.noteModel = {
1119
- firstName: '',
1120
- lastName: '',
1121
- listTitle: '',
1122
- timeStamp: '',
1123
- description: '',
1124
- moreActions: [],
1125
- };
1126
- }
1127
- ngOnInit() { }
1128
- };
1129
- __decorate([
1130
- Input()
1131
- ], NoteComponent.prototype, "noteModel", void 0);
1132
- NoteComponent = __decorate([
1133
- Component({
1134
- selector: 'symphony-note',
1135
- template: "<div class=\"sfx-note\">\n <lib-avatar class=\"list-avatar\" [firstName]= noteModel.firstName [lastName]= noteModel.lastName></lib-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 class=\"list-more-option\" [moreActions]= noteModel.moreActions></symphony-contextual-menu>\n</div>\n",
1136
- styles: [".sfx-note{padding:20px 75px;position:relative}.sfx-note .list-avatar{left:0;position:absolute;top:20px}.sfx-note .list-more-option{position:absolute;right:0;top:20px}"]
1137
- })
1138
- ], NoteComponent);
1139
-
1140
- let NoteModule = class NoteModule {
1141
- };
1142
- NoteModule = __decorate([
1143
- NgModule({
1144
- declarations: [NoteComponent],
1145
- imports: [
1146
- CommonModule,
1147
- AvatarModule,
1148
- ContextualMenuModule,
1149
- H3Module,
1150
- ParagraphModule
1151
- ],
1152
- exports: [NoteComponent]
1153
- })
1154
- ], NoteModule);
1155
-
1156
- let PillsComponent = class PillsComponent {
1157
- constructor() {
1158
- this.removePill = new EventEmitter();
1159
- }
1160
- ngOnInit() {
1161
- }
1162
- onRemovePill(event) {
1163
- this.removePill.emit(this.pillsList.find(p => p.pillLabel.toLowerCase() === event.toLowerCase()));
1164
- }
1165
- };
1166
- __decorate([
1167
- Input()
1168
- ], PillsComponent.prototype, "hasClose", void 0);
1169
- __decorate([
1170
- Input()
1171
- ], PillsComponent.prototype, "pillsList", void 0);
1172
- __decorate([
1173
- Input()
1174
- ], PillsComponent.prototype, "hasTooltips", void 0);
1175
- __decorate([
1176
- Output()
1177
- ], PillsComponent.prototype, "removePill", void 0);
1178
- PillsComponent = __decorate([
1179
- Component({
1180
- selector: 'symphony-pills',
1181
- 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>",
1182
- styles: [".sfx-pills-wrapper{overflow-x:auto;padding-bottom:20px;white-space:nowrap;width:100%}"]
1183
- })
1184
- ], PillsComponent);
1185
-
1186
- let PillsModule = class PillsModule {
1187
- };
1188
- PillsModule = __decorate([
1189
- NgModule({
1190
- declarations: [PillsComponent],
1191
- imports: [
1192
- CommonModule,
1193
- PillModule
1194
- ],
1195
- exports: [
1196
- PillsComponent
1197
- ]
1198
- })
1199
- ], PillsModule);
1200
-
1201
- let TaskComponent = class TaskComponent {
1202
- constructor() {
1203
- this.taskModel = {
1204
- assignee: '',
1205
- title: '',
1206
- dueDate: '',
1207
- moreActions: [],
1208
- };
1209
- }
1210
- ngOnInit() { }
1211
- };
1212
- __decorate([
1213
- Input()
1214
- ], TaskComponent.prototype, "taskModel", void 0);
1215
- TaskComponent = __decorate([
1216
- Component({
1217
- selector: 'symphony-task',
1218
- 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\n [text]=\"taskModel.dueDate\"\n ></symphony-paragraph>\n <symphony-paragraph\n [text]=\"taskModel.assignee\"\n ></symphony-paragraph>\n </div>\n </div>\n <symphony-contextual-menu\n class=\"task-more-option\"\n *ngIf=\"taskModel.moreActions && taskModel.moreActions.length > 0\"\n [moreActions]=\"taskModel.moreActions\"\n >\n </symphony-contextual-menu>\n</div>\n",
1219
- styles: ["*{font-family:neuzeit-grotesk,sans-serif!important}.sfx-task{align-items:center;border-bottom:1px solid #d9d9d9;display:flex;padding:30px 0}.sfx-task symphony-task{font-size:14px;letter-spacing:-1px}.sfx-task symphony-task-icon{margin-right:20px}.sfx-task .task-content{height:50px;width:80%}.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}"]
1220
- })
1221
- ], TaskComponent);
1222
-
1223
- let TaskModule = class TaskModule {
1224
- };
1225
- TaskModule = __decorate([
1226
- NgModule({
1227
- declarations: [TaskComponent],
1228
- imports: [
1229
- CommonModule,
1230
- TaskIconModule,
1231
- ContextualMenuModule,
1232
- H3Module,
1233
- ParagraphModule
1234
- ],
1235
- exports: [TaskComponent],
1236
- })
1237
- ], TaskModule);
1238
-
1239
- let MoleculesModule = class MoleculesModule {
1240
- };
1241
- MoleculesModule = __decorate([
1242
- NgModule({
1243
- declarations: [],
1244
- imports: [
1245
- CommonModule,
1246
- AvatarModule,
1247
- ContextualMenuModule,
1248
- PillsModule,
1249
- TaskModule,
1250
- ColorSwatchModule,
1251
- IconSwatchModule,
1252
- BreadcrumbModule,
1253
- ],
1254
- exports: [
1255
- NoteModule,
1256
- PillsModule,
1257
- TaskModule,
1258
- ColorSwatchModule,
1259
- IconSwatchModule,
1260
- BreadcrumbModule,
1261
- ],
1262
- })
1263
- ], MoleculesModule);
1264
-
1265
- let TaskListComponent = class TaskListComponent {
1266
- constructor() { }
1267
- ngOnInit() { }
1268
- };
1269
- __decorate([
1270
- Input()
1271
- ], TaskListComponent.prototype, "taskList", void 0);
1272
- TaskListComponent = __decorate([
1273
- Component({
1274
- selector: 'symphony-task-list',
1275
- 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",
1276
- styles: [".task-list{border-top:1px solid #d9d9d9}"]
1277
- })
1278
- ], TaskListComponent);
1279
-
1280
- let TaskListModule = class TaskListModule {
1281
- };
1282
- TaskListModule = __decorate([
1283
- NgModule({
1284
- declarations: [TaskListComponent],
1285
- imports: [CommonModule, TaskModule],
1286
- exports: [TaskListComponent],
1287
- })
1288
- ], TaskListModule);
1289
-
1290
- let NoteListComponent = class NoteListComponent {
1291
- constructor() { }
1292
- ngOnInit() {
1293
- }
1294
- };
1295
- __decorate([
1296
- Input()
1297
- ], NoteListComponent.prototype, "noteList", void 0);
1298
- NoteListComponent = __decorate([
1299
- Component({
1300
- selector: 'symphony-note-list',
1301
- template: "<ul class=\"list-unstyled\">\n <li *ngFor=\"let note of noteList\">\n <symphony-note [noteModel]='note'></symphony-note>\n </li>\n</ul>\n",
1302
- styles: ["li{border-bottom:1px solid #d9d9d9}li:last-child{border-bottom-color:transparent}"]
1303
- })
1304
- ], NoteListComponent);
1305
-
1306
- let NoteListModule = class NoteListModule {
1307
- };
1308
- NoteListModule = __decorate([
1309
- NgModule({
1310
- declarations: [NoteListComponent],
1311
- imports: [CommonModule, NoteModule],
1312
- exports: [NoteListComponent]
1313
- })
1314
- ], NoteListModule);
1315
-
1316
- let EventsSettingsPageComponent = class EventsSettingsPageComponent {
1317
- constructor() {
1318
- this.eventsSettingsBreadcrumbs = [
1319
- {
1320
- label: 'Main Menu',
1321
- link: '/tools',
1322
- },
1323
- {
1324
- label: 'Sub Menu One',
1325
- },
1326
- ];
1327
- this.eventSettingsPageModel = {
1328
- moreActions: [],
1329
- };
1330
- }
1331
- ngOnInit() { }
1332
- };
1333
- __decorate([
1334
- Input()
1335
- ], EventsSettingsPageComponent.prototype, "eventSettingsPageModel", void 0);
1336
- EventsSettingsPageComponent = __decorate([
1337
- Component({
1338
- selector: 'symphony-events-settings-page',
1339
- template: "<symphony-admin-list-template>\n <symphony-breadcrumb sfx-header [breadcrumbs]=\"eventsSettingsBreadcrumbs\">\n </symphony-breadcrumb>\n <symphony-two-column-filter-area sfx-filter-area>\n <symphony-placeholder filter-one [label]=\"'filter-one'\" [height]=\"'85px'\">\n </symphony-placeholder>\n <symphony-input-text\n filter-two\n [label]=\"'Search by Keyword'\"\n [placeholder]=\"'Filter search results'\"\n [icon]=\"'si-search-new'\"\n [isInverse]=\"'true'\"\n >\n </symphony-input-text>\n </symphony-two-column-filter-area>\n <symphony-h4 sfx-title>X Event Venues</symphony-h4>\n <symphony-contextual-menu sfx-grid-action\n class=\"more-options\"\n *ngIf=\"eventSettingsPageModel.moreActions && eventSettingsPageModel.moreActions.length > 0\"\n [moreActions]=\"eventSettingsPageModel.moreActions\"\n >\n </symphony-contextual-menu>\n <symphony-placeholder\n sfx-grid\n [label]=\"'sfx-grid'\"\n [height]=\"'500px'\"\n ></symphony-placeholder>\n</symphony-admin-list-template>\n",
1340
- styles: [""]
1341
- })
1342
- ], EventsSettingsPageComponent);
1343
-
1344
- let AdminListTemplateComponent = class AdminListTemplateComponent {
1345
- constructor() { }
1346
- ngOnInit() { }
1347
- };
1348
- AdminListTemplateComponent = __decorate([
1349
- Component({
1350
- selector: 'symphony-admin-list-template',
1351
- template: "<div class=\"sfx\">\n <!---->\n <section class=\"sfx-page-title\">\n <div class=\"row\">\n <div class=\"col-xs-12 col-sm-12 colmd-12 col-lg-12 add-source-list\">\n <ng-content select=\"[sfx-header]\"></ng-content>\n </div>\n </div>\n </section>\n <section class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12 sfx-mb-30\">\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\">\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-mt-30\">\n <ng-content select=\"[sfx-grid]\"></ng-content>\n </section>\n</div>\n",
1352
- styles: [".sfx-page-title{margin-bottom:1.875rem;margin-top:3.125rem}.sfx-title-wrap{border-bottom:5px solid #000;display:inline-block;width:100%}"]
1353
- })
1354
- ], AdminListTemplateComponent);
1355
-
1356
- let AdminListModule = class AdminListModule {
1357
- };
1358
- AdminListModule = __decorate([
1359
- NgModule({
1360
- declarations: [AdminListTemplateComponent],
1361
- imports: [CommonModule],
1362
- exports: [AdminListTemplateComponent],
1363
- })
1364
- ], AdminListModule);
1365
-
1366
- let PlaceholderComponent = class PlaceholderComponent {
1367
- constructor() { }
1368
- ngOnInit() { }
1369
- };
1370
- __decorate([
1371
- Input()
1372
- ], PlaceholderComponent.prototype, "type", void 0);
1373
- __decorate([
1374
- Input()
1375
- ], PlaceholderComponent.prototype, "label", void 0);
1376
- __decorate([
1377
- Input()
1378
- ], PlaceholderComponent.prototype, "tooltip", void 0);
1379
- __decorate([
1380
- Input()
1381
- ], PlaceholderComponent.prototype, "tooltipPlacement", void 0);
1382
- __decorate([
1383
- Input()
1384
- ], PlaceholderComponent.prototype, "height", void 0);
1385
- __decorate([
1386
- Input()
1387
- ], PlaceholderComponent.prototype, "width", void 0);
1388
- PlaceholderComponent = __decorate([
1389
- Component({
1390
- selector: 'symphony-placeholder',
1391
- 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",
1392
- styles: [".placeholder-dashed{border:3px dashed #464646;border-radius:10px}.placeholder-dashed,.placeholder-dashed-circle{align-items:center;background:repeating-linear-gradient(-55deg,#d0d0d0,#d0d0d0 10px,#d9d9d9 0,#d9d9d9 20px);color:#464646;display:flex;font-size:18px;height:100%;justify-content:center;text-align:center}.placeholder-dashed-circle{border:3px dashed #464646;border-radius:50%}.wrapper div{height:100%}"]
1393
- })
1394
- ], PlaceholderComponent);
1395
-
1396
- let PlaceholderModule = class PlaceholderModule {
1397
- };
1398
- PlaceholderModule = __decorate([
1399
- NgModule({
1400
- declarations: [PlaceholderComponent],
1401
- imports: [CommonModule, TooltipModule.forRoot()],
1402
- exports: [PlaceholderComponent],
1403
- })
1404
- ], PlaceholderModule);
1405
-
1406
- let EventsSettingsPageModule = class EventsSettingsPageModule {
1407
- };
1408
- EventsSettingsPageModule = __decorate([
1409
- NgModule({
1410
- declarations: [EventsSettingsPageComponent],
1411
- imports: [
1412
- CommonModule,
1413
- AdminListModule,
1414
- H3Module,
1415
- H4Module,
1416
- PlaceholderModule,
1417
- BreadcrumbModule,
1418
- TwoColumnFilterAreaModule,
1419
- IconModule,
1420
- InputTextModule,
1421
- ContextualMenuModule
1422
- ],
1423
- exports: [EventsSettingsPageComponent],
1424
- })
1425
- ], EventsSettingsPageModule);
1426
-
1427
- let ColorSwatchCollectionComponent = class ColorSwatchCollectionComponent {
1428
- constructor() { }
1429
- ngOnInit() { }
1430
- };
1431
- __decorate([
1432
- Input()
1433
- ], ColorSwatchCollectionComponent.prototype, "colorList", void 0);
1434
- ColorSwatchCollectionComponent = __decorate([
1435
- Component({
1436
- selector: 'symphony-main-ui-color-swatch',
1437
- 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",
1438
- encapsulation: ViewEncapsulation.None,
1439
- styles: [".data-vis-ext .color-list,.data-vis .color-list{display:flex;flex-direction:column;flex-wrap:wrap;height:100vh;width:50vw}.data-vis-ext .color-list-item,.data-vis .color-list-item{flex:0 0 20%;padding:0}.main-ui .color-list-item{padding:5px 0}"]
1440
- })
1441
- ], ColorSwatchCollectionComponent);
1442
-
1443
- let ColorSwatchCollectionModule = class ColorSwatchCollectionModule {
1444
- };
1445
- ColorSwatchCollectionModule = __decorate([
1446
- NgModule({
1447
- declarations: [ColorSwatchCollectionComponent],
1448
- imports: [CommonModule, ColorSwatchModule],
1449
- exports: []
1450
- })
1451
- ], ColorSwatchCollectionModule);
1452
-
1453
- class IconExplorerHelper {
1454
- static getAllIcons() {
1455
- let allIcons = [];
1456
- allIcons = allIcons.concat(this.getHasNoBorderIconList());
1457
- allIcons = allIcons.concat(this.getHasBorderIconList());
1458
- allIcons = allIcons.concat(this.getInverseIconList());
1459
- return allIcons;
1460
- }
1461
- static getHasNoBorderIconList() {
1462
- return [
1463
- {
1464
- icon: Icons.MOREOPTIONS,
1465
- iconName: 'MOREOPTIONS',
1466
- iconClass: 'si-more-options',
1467
- hasBorder: false,
1468
- },
1469
- {
1470
- icon: Icons.ADD,
1471
- iconName: 'ADD',
1472
- iconClass: 'si-add',
1473
- hasBorder: false,
1474
- },
1475
- {
1476
- icon: Icons.ACTIVITY,
1477
- iconName: 'ACTIVITY',
1478
- iconClass: 'si-activity',
1479
- hasBorder: false,
1480
- },
1481
- {
1482
- icon: Icons.ARROWHIDEREVEAL,
1483
- iconName: 'ARROWHIDEREVEAL',
1484
- iconClass: 'si-arrow-hide-reveal',
1485
- hasBorder: false,
1486
- },
1487
- {
1488
- icon: Icons.ARROWNEXT,
1489
- iconName: 'ARROWNEXT',
1490
- iconClass: 'si-arrow-next',
1491
- hasBorder: false,
1492
- },
1493
- {
1494
- icon: Icons.ARROWPREV,
1495
- iconName: 'ARROWPREV',
1496
- iconClass: 'si-arrow-prev',
1497
- hasBorder: false,
1498
- },
1499
- {
1500
- icon: Icons.CLOSEMODAL,
1501
- iconName: 'CLOSEMODAL',
1502
- iconClass: 'si-close-modal',
1503
- hasBorder: false,
1504
- },
1505
- {
1506
- icon: Icons.COLLAPSE,
1507
- iconName: 'COLLAPSE',
1508
- iconClass: 'si-collapse',
1509
- hasBorder: false,
1510
- },
1511
- {
1512
- icon: Icons.DAYMODE,
1513
- iconName: 'DAYMODE',
1514
- iconClass: 'si-daymode',
1515
- hasBorder: false,
1516
- },
1517
- {
1518
- icon: Icons.DELETE,
1519
- iconName: 'DELETE',
1520
- iconClass: 'si-delete',
1521
- hasBorder: false,
1522
- },
1523
- {
1524
- icon: Icons.DOCUMENT,
1525
- iconName: 'DOCUMENT',
1526
- iconClass: 'si-document',
1527
- hasBorder: false,
1528
- },
1529
- {
1530
- icon: Icons.DOWNLOAD,
1531
- iconName: 'DOWNLOAD',
1532
- iconClass: 'si-download',
1533
- hasBorder: false,
1534
- },
1535
- {
1536
- icon: Icons.EDIT,
1537
- iconName: 'EDIT',
1538
- iconClass: 'si-edit',
1539
- hasBorder: false,
1540
- },
1541
- {
1542
- icon: Icons.EMAILDRIP,
1543
- iconName: 'EMAILDRIP',
1544
- iconClass: 'si-email-drip',
1545
- hasBorder: false,
1546
- },
1547
- {
1548
- icon: Icons.EMAILOPEN,
1549
- iconName: 'EMAILOPEN',
1550
- iconClass: 'si-email-open',
1551
- hasBorder: false,
1552
- },
1553
- {
1554
- icon: Icons.EMAILSEND,
1555
- iconName: 'EMAILSEND',
1556
- iconClass: 'si-email-send',
1557
- hasBorder: false,
1558
- },
1559
- {
1560
- icon: Icons.EXPAND,
1561
- iconName: 'EXPAND',
1562
- iconClass: 'si-expand',
1563
- hasBorder: false,
1564
- },
1565
- {
1566
- icon: Icons.FAVORITE,
1567
- iconName: 'FAVORITE',
1568
- iconClass: 'si-favorite',
1569
- hasBorder: false,
1570
- },
1571
- {
1572
- icon: Icons.FEEDBACKMAYBE,
1573
- iconName: 'FEEDBACKMAYBE',
1574
- iconClass: 'si-feedback-maybe',
1575
- hasBorder: false,
1576
- },
1577
- {
1578
- icon: Icons.FEEDBACKNO,
1579
- iconName: 'FEEDBACKNO',
1580
- iconClass: 'si-feedback-no',
1581
- hasBorder: false,
1582
- },
1583
- {
1584
- icon: Icons.FEEDBACKYES,
1585
- iconName: 'FEEDBACKYES',
1586
- iconClass: 'si-feedback-yes',
1587
- hasBorder: false,
1588
- },
1589
- {
1590
- icon: Icons.FOLDERMULTIPLE,
1591
- iconName: 'FOLDERMULTIPLE',
1592
- iconClass: 'si-folder-multiple',
1593
- hasBorder: false,
1594
- },
1595
- {
1596
- icon: Icons.INCLUDE,
1597
- iconName: 'INCLUDE',
1598
- iconClass: 'si-include',
1599
- hasBorder: false,
1600
- },
1601
- {
1602
- icon: Icons.INFO,
1603
- iconName: 'INFO',
1604
- iconClass: 'si-info',
1605
- hasBorder: false,
1606
- },
1607
- {
1608
- icon: Icons.INTERVIEW,
1609
- iconName: 'INTERVIEW',
1610
- iconClass: 'si-interview',
1611
- hasBorder: false,
1612
- },
1613
- {
1614
- icon: Icons.LINK,
1615
- iconName: 'LINK',
1616
- iconClass: 'si-link',
1617
- hasBorder: false,
1618
- },
1619
- {
1620
- icon: Icons.LOCATION,
1621
- iconName: 'LOCATION',
1622
- iconClass: 'si-location',
1623
- hasBorder: false,
1624
- },
1625
- {
1626
- icon: Icons.MENUALL,
1627
- iconName: 'MENUALL',
1628
- iconClass: 'si-menu-all',
1629
- hasBorder: false,
1630
- },
1631
- {
1632
- icon: Icons.MENUANALYTICS,
1633
- iconName: 'MENUANALYTICS',
1634
- iconClass: 'si-menu-analytics',
1635
- hasBorder: false,
1636
- },
1637
- {
1638
- icon: Icons.MENUASSETS,
1639
- iconName: 'MENUASSETS',
1640
- iconClass: 'si-menu-assets',
1641
- hasBorder: false,
1642
- },
1643
- {
1644
- icon: Icons.MENUCAMPAIGNS,
1645
- iconName: 'MENUCAMPAIGNS',
1646
- iconClass: 'si-menu-campaigns',
1647
- hasBorder: false,
1648
- },
1649
- {
1650
- icon: Icons.MENUCONTACT,
1651
- iconName: 'MENUCONTACT',
1652
- iconClass: 'si-menu-contact',
1653
- hasBorder: false,
1654
- },
1655
- {
1656
- icon: Icons.MENUCONTENT,
1657
- iconName: 'MENUCONTENT',
1658
- iconClass: 'si-menu-content',
1659
- hasBorder: false,
1660
- },
1661
- {
1662
- icon: Icons.MENUDASHBOARD,
1663
- iconName: 'MENUDASHBOARD',
1664
- iconClass: 'si-menu-dashboard',
1665
- hasBorder: false,
1666
- },
1667
- {
1668
- icon: Icons.MENUEVENTS,
1669
- iconName: 'MENUEVENTS',
1670
- iconClass: 'si-menu-events',
1671
- hasBorder: false,
1672
- },
1673
- {
1674
- icon: Icons.MENUFOLDERS,
1675
- iconName: 'MENUFOLDERS',
1676
- iconClass: 'si-menu-folders',
1677
- hasBorder: false,
1678
- },
1679
- {
1680
- icon: Icons.MENUJOBS,
1681
- iconName: 'MENUJOBS',
1682
- iconClass: 'si-menu-jobs',
1683
- hasBorder: false,
1684
- },
1685
- {
1686
- icon: Icons.MENURETURN,
1687
- iconName: 'MENURETURN',
1688
- iconClass: 'si-menu-return',
1689
- hasBorder: false,
1690
- },
1691
- {
1692
- icon: Icons.MENUWORKFLOWS,
1693
- iconName: 'MENUWORKFLOWS',
1694
- iconClass: 'si-menu-workflows',
1695
- hasBorder: false,
1696
- },
1697
- {
1698
- icon: Icons.MERGE,
1699
- iconName: 'MERGE',
1700
- iconClass: 'si-merge',
1701
- hasBorder: false,
1702
- },
1703
- {
1704
- icon: Icons.MOVE,
1705
- iconName: 'MOVE',
1706
- iconClass: 'si-move',
1707
- hasBorder: false,
1708
- },
1709
- {
1710
- icon: Icons.NIGHTMODE,
1711
- iconName: 'NIGHTMODE',
1712
- iconClass: 'si-nightmode',
1713
- hasBorder: false,
1714
- },
1715
- {
1716
- icon: Icons.NOTIFICATION,
1717
- iconName: 'NOTIFICATION',
1718
- iconClass: 'si-notification',
1719
- hasBorder: false,
1720
- },
1721
- {
1722
- icon: Icons.ORGANIZECOLUMNS,
1723
- iconName: 'ORGANIZECOLUMNS',
1724
- iconClass: 'si-organize-columns',
1725
- hasBorder: false,
1726
- },
1727
- {
1728
- icon: Icons.ORGANIZECONTACTS,
1729
- iconName: 'ORGANIZECONTACTS',
1730
- iconClass: 'si-organize-contacts',
1731
- hasBorder: false,
1732
- },
1733
- {
1734
- icon: Icons.PENDINGINCOMPLETE,
1735
- iconName: 'PENDINGINCOMPLETE',
1736
- iconClass: 'si-pending-incomplete',
1737
- hasBorder: false,
1738
- },
1739
- {
1740
- icon: Icons.PHONENUMBER,
1741
- iconName: 'PHONENUMBER',
1742
- iconClass: 'si-phone-number',
1743
- hasBorder: false,
1744
- },
1745
- {
1746
- icon: Icons.PREVIEW,
1747
- iconName: 'PREVIEW',
1748
- iconClass: 'si-preview',
1749
- hasBorder: false,
1750
- },
1751
- {
1752
- icon: Icons.PROMOTE,
1753
- iconName: 'PROMOTE',
1754
- iconClass: 'si-promote',
1755
- hasBorder: false,
1756
- },
1757
- {
1758
- icon: Icons.REFRESH,
1759
- iconName: 'REFRESH',
1760
- iconClass: 'si-refresh',
1761
- hasBorder: false,
1762
- },
1763
- {
1764
- icon: Icons.REMOVE,
1765
- iconName: 'REMOVE',
1766
- iconClass: 'si-remove',
1767
- hasBorder: false,
1768
- },
1769
- {
1770
- icon: Icons.EXCLUDE,
1771
- iconName: 'EXCLUDE',
1772
- iconClass: 'si-exclude',
1773
- hasBorder: false,
1774
- },
1775
- {
1776
- icon: Icons.RESULTSFILTERS,
1777
- iconName: 'RESULTSFILTERS',
1778
- iconClass: 'si-results-filters',
1779
- hasBorder: false,
1780
- },
1781
- {
1782
- icon: Icons.REVIEW,
1783
- iconName: 'REVIEW',
1784
- iconClass: 'si-review',
1785
- hasBorder: false,
1786
- },
1787
- {
1788
- icon: Icons.SALARY,
1789
- iconName: 'SALARY',
1790
- iconClass: 'si-salary',
1791
- hasBorder: false,
1792
- },
1793
- {
1794
- icon: Icons.SAVE,
1795
- iconName: 'SAVE',
1796
- iconClass: 'si-save',
1797
- hasBorder: false,
1798
- },
1799
- {
1800
- icon: Icons.SEARCHADVANCED,
1801
- iconName: 'SEARCHADVANCED',
1802
- iconClass: 'si-search-advanced',
1803
- hasBorder: false,
1804
- },
1805
- {
1806
- icon: Icons.SEARCHCLEAR,
1807
- iconName: 'SEARCHCLEAR',
1808
- iconClass: 'si-search-clear',
1809
- hasBorder: false,
1810
- },
1811
- {
1812
- icon: Icons.SEARCHNEW,
1813
- iconName: 'SEARCHNEW',
1814
- iconClass: 'si-search-new',
1815
- hasBorder: false,
1816
- },
1817
- {
1818
- icon: Icons.SETTINGSMART,
1819
- iconName: 'SETTINGSMART',
1820
- iconClass: 'si-settings-smart',
1821
- hasBorder: false,
1822
- },
1823
- {
1824
- icon: Icons.SMS,
1825
- iconName: 'SMS',
1826
- iconClass: 'si-sms',
1827
- hasBorder: false,
1828
- },
1829
- {
1830
- icon: Icons.SORTMINI,
1831
- iconName: 'SORTMINI',
1832
- iconClass: 'si-sort-mini',
1833
- hasBorder: false,
1834
- },
1835
- {
1836
- icon: Icons.STATUS,
1837
- iconName: 'STATUS',
1838
- iconClass: 'si-status',
1839
- hasBorder: false,
1840
- },
1841
- {
1842
- icon: Icons.SYSTEMACTION,
1843
- iconName: 'SYSTEMACTION',
1844
- iconClass: 'si-system-action',
1845
- hasBorder: false,
1846
- },
1847
- {
1848
- icon: Icons.TASKCOMPLETED,
1849
- iconName: 'TASKCOMPLETED',
1850
- iconClass: 'si-task-completed',
1851
- hasBorder: false,
1852
- },
1853
- {
1854
- icon: Icons.TASKOPEN,
1855
- iconName: 'TASKOPEN',
1856
- iconClass: 'si-task-open',
1857
- hasBorder: false,
1858
- },
1859
- {
1860
- icon: Icons.TIMEFRAME,
1861
- iconName: 'TIMEFRAME',
1862
- iconClass: 'si-timeframe',
1863
- hasBorder: false,
1864
- },
1865
- {
1866
- icon: Icons.TIMELINE,
1867
- iconName: 'TIMELINE',
1868
- iconClass: 'si-timeline',
1869
- hasBorder: false,
1870
- },
1871
- {
1872
- icon: Icons.UPLOAD,
1873
- iconName: 'UPLOAD',
1874
- iconClass: 'si-upload',
1875
- hasBorder: false,
1876
- },
1877
- {
1878
- icon: Icons.USERMULTIPLE,
1879
- iconName: 'USERMULTIPLE',
1880
- iconClass: 'si-user-multiple',
1881
- hasBorder: false,
1882
- },
1883
- {
1884
- icon: Icons.USER,
1885
- iconName: 'USER',
1886
- iconClass: 'si-user',
1887
- hasBorder: false,
1888
- },
1889
- ];
1890
- }
1891
- static getInverseIconList() {
1892
- return [
1893
- {
1894
- icon: Icons.ACTIVITY,
1895
- iconName: 'ACTIVITY',
1896
- iconClass: 'si-activity',
1897
- hasBorder: true,
1898
- },
1899
- ];
1900
- }
1901
- static getHasBorderIconList() {
1902
- return [
1903
- {
1904
- icon: Icons.ADD,
1905
- iconName: 'ADD',
1906
- iconClass: 'si-add',
1907
- hasBorder: true,
1908
- },
1909
- {
1910
- icon: Icons.ARROWNEXT,
1911
- iconName: 'ARROWNEXT',
1912
- iconClass: 'si-arrow-next',
1913
- hasBorder: true,
1914
- },
1915
- {
1916
- icon: Icons.DELETE,
1917
- iconName: 'DELETE',
1918
- iconClass: 'si-delete',
1919
- hasBorder: true,
1920
- },
1921
- {
1922
- icon: Icons.DOWNLOAD,
1923
- iconName: 'DOWNLOAD',
1924
- iconClass: 'si-download',
1925
- hasBorder: true,
1926
- },
1927
- {
1928
- icon: Icons.EDIT,
1929
- iconName: 'EDIT',
1930
- iconClass: 'si-edit',
1931
- hasBorder: true,
1932
- },
1933
- {
1934
- icon: Icons.FEEDBACKYES,
1935
- iconName: 'FEEDBACKYES',
1936
- iconClass: 'si-feedback-yes',
1937
- hasBorder: true,
1938
- },
1939
- {
1940
- icon: Icons.MENUCONTACT,
1941
- iconName: 'MENUCONTACT',
1942
- iconClass: 'si-menu-contact',
1943
- hasBorder: true,
1944
- },
1945
- {
1946
- icon: Icons.MOREOPTIONS,
1947
- iconName: 'MOREOPTIONS',
1948
- iconClass: 'si-more-options',
1949
- hasBorder: true,
1950
- },
1951
- {
1952
- icon: Icons.ORGANIZECOLUMNS,
1953
- iconName: 'ORGANIZECOLUMNS',
1954
- iconClass: 'si-organize-columns',
1955
- hasBorder: true,
1956
- },
1957
- {
1958
- icon: Icons.PREVIEW,
1959
- iconName: 'PREVIEW',
1960
- iconClass: 'si-preview',
1961
- hasBorder: true,
1962
- },
1963
- {
1964
- icon: Icons.SAVE,
1965
- iconName: 'SAVE',
1966
- iconClass: 'si-save',
1967
- hasBorder: true,
1968
- },
1969
- ];
1970
- }
1971
- }
1972
-
1973
- let IconExplorerComponent = class IconExplorerComponent {
1974
- constructor() {
1975
- this.iconList = IconExplorerHelper.getAllIcons();
1976
- this.hasBorderIconsList = IconExplorerHelper.getHasBorderIconList();
1977
- this.hasNoBorderIconsList = IconExplorerHelper.getHasNoBorderIconList();
1978
- this.isInverseIconsList = IconExplorerHelper.getInverseIconList();
1979
- }
1980
- ngOnInit() {
1981
- this.iconCount = this.iconList.length;
1982
- this.explorerTitle = `Iconography (${this.iconCount} icons)`;
1983
- this.iconHasBorderCount = this.hasBorderIconsList.length;
1984
- this.borderTitle = `Icons with border (${this.iconHasBorderCount} icons)`;
1985
- this.iconHasNoBorderCount = this.hasNoBorderIconsList.length;
1986
- this.noBorderTitle = `Icons without border (${this.iconHasNoBorderCount} icons)`;
1987
- this.iconisInverseCount = this.isInverseIconsList.length;
1988
- this.backgroundTitle = `Icons with background (${this.iconisInverseCount} icons)`;
1989
- }
1990
- };
1991
- IconExplorerComponent = __decorate([
1992
- Component({
1993
- selector: 'symphony-icon-explorer',
1994
- 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",
1995
- styles: [".sfx-icon-list{display:flex;flex-direction:row;flex-wrap:wrap;margin:20px 0 80px;width:100vw}.icon-list-item{flex:0 0 20%;padding:15px 0}.explorer-title{border-bottom:5px solid #000;margin-bottom:30px;padding-bottom:10px}.explorer-subtitle{margin-bottom:10px}"]
1996
- })
1997
- ], IconExplorerComponent);
1998
-
1999
- let IconExplorerModule = class IconExplorerModule {
2000
- };
2001
- IconExplorerModule = __decorate([
2002
- NgModule({
2003
- declarations: [IconExplorerComponent],
2004
- imports: [CommonModule, IconSwatchModule, H2Module, H3Module],
2005
- })
2006
- ], IconExplorerModule);
2007
-
2008
- /*
2009
- * ATOMS
2010
- */
2011
-
2012
- /**
2013
- * Generated bundle index. Do not edit.
2014
- */
2015
-
2016
- export { AtomsModule, AvatarComponent, AvatarModule, BreadcrumbComponent, BreadcrumbModule, ButtonComponent, ButtonModule, ColorSampleComponent, ColorSampleModule, ColorSwatchCollectionComponent, ColorSwatchCollectionModule, ColorSwatchComponent, ColorSwatchModule, ContextualMenuComponent, ContextualMenuModule, EventsSettingsPageComponent, EventsSettingsPageModule, H1Component, H1Module, H2Component, H2Module, H3Component, H3Module, H4Component, H4Module, H5Component, H5Module, IconComponent, IconExplorerComponent, IconExplorerModule, IconModule, IconSwatchComponent, IconSwatchModule, IconWrapperComponent, IconWrapperModule, InputCheckboxComponent, InputCheckboxModule, InputRadioComponent, InputRadioModule, InputTextComponent, InputTextModule, MoleculesModule, NoteComponent, NoteListComponent, NoteListModule, NoteModule, ParagraphComponent, ParagraphModule, PillComponent, PillsComponent, PillsModule, TaskComponent, TaskIconComponent, TaskIconModule, TaskListComponent, TaskListModule, TaskModule, SfxInlineErrorModule as ɵa, SfxInlineErrorComponent as ɵb, PillModule as ɵc, FilterAreaModule as ɵd, FilterAreaComponent as ɵe, TwoColumnFilterAreaModule as ɵf, TwoColumnFilterAreaComponent as ɵg, GridModule as ɵh, GridComponent as ɵi, FrameworkModule as ɵj, ContactActivityScoreModule as ɵk, ContactActivityScoreComponent as ɵl, RelevanceScoreModule as ɵm, RelevanceScoreComponent as ɵn, AdminListModule as ɵo, AdminListTemplateComponent as ɵp, PlaceholderModule as ɵq, PlaceholderComponent as ɵr };
2017
- //# sourceMappingURL=symphony-talent-component-library.js.map