@symphony-talent/component-library 1.5.0 → 1.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (626) hide show
  1. package/esm2020/lib/atoms/atoms.module.mjs +123 -0
  2. package/esm2020/lib/atoms/avatar/avatar.component.mjs +96 -0
  3. package/esm2020/lib/atoms/avatar/avatar.module.mjs +18 -0
  4. package/esm2020/lib/atoms/button/button.component.mjs +28 -0
  5. package/esm2020/lib/atoms/button/button.module.mjs +19 -0
  6. package/esm2020/lib/atoms/color-sample/color-sample.component.mjs +18 -0
  7. package/esm2020/lib/atoms/color-sample/color-sample.enum.mjs +26 -0
  8. package/esm2020/lib/atoms/color-sample/color-sample.module.mjs +18 -0
  9. package/esm2020/lib/atoms/contextual-menu/contextual-menu.component.mjs +26 -0
  10. package/esm2020/lib/atoms/contextual-menu/contextual-menu.model.mjs +2 -0
  11. package/esm2020/lib/atoms/contextual-menu/contextual-menu.module.mjs +21 -0
  12. package/esm2020/lib/atoms/filter-area/filter-area.component.mjs +12 -0
  13. package/esm2020/lib/atoms/filter-area/filter-area.module.mjs +18 -0
  14. package/esm2020/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.mjs +47 -0
  15. package/esm2020/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.module.mjs +17 -0
  16. package/esm2020/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.model.mjs +8 -0
  17. package/esm2020/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.component.mjs +33 -0
  18. package/esm2020/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.model.mjs +2 -0
  19. package/esm2020/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.module.mjs +19 -0
  20. package/esm2020/lib/atoms/grid/framework/framework.module.mjs +31 -0
  21. package/esm2020/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.component.mjs +25 -0
  22. package/esm2020/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.model.mjs +2 -0
  23. package/esm2020/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.module.mjs +19 -0
  24. package/esm2020/lib/atoms/grid/framework/relevance-score/relevance-score.component.mjs +31 -0
  25. package/esm2020/lib/atoms/grid/framework/relevance-score/relevance-score.component.model.mjs +6 -0
  26. package/esm2020/lib/atoms/grid/framework/relevance-score/relevance-score.component.module.mjs +17 -0
  27. package/esm2020/lib/atoms/grid/grid.component.mjs +39 -0
  28. package/esm2020/lib/atoms/grid/grid.model.mjs +2 -0
  29. package/esm2020/lib/atoms/grid/grid.module.mjs +21 -0
  30. package/esm2020/lib/atoms/h1/h1.component.mjs +17 -0
  31. package/esm2020/lib/atoms/h1/h1.module.mjs +18 -0
  32. package/esm2020/lib/atoms/h2/h2.component.mjs +17 -0
  33. package/esm2020/lib/atoms/h2/h2.module.mjs +18 -0
  34. package/esm2020/lib/atoms/h3/h3.component.mjs +17 -0
  35. package/esm2020/lib/atoms/h3/h3.module.mjs +18 -0
  36. package/esm2020/lib/atoms/h4/h4.component.mjs +17 -0
  37. package/esm2020/lib/atoms/h4/h4.module.mjs +18 -0
  38. package/esm2020/lib/atoms/h5/h5.component.mjs +17 -0
  39. package/esm2020/lib/atoms/h5/h5.module.mjs +18 -0
  40. package/esm2020/lib/atoms/icon/icon.component.mjs +27 -0
  41. package/esm2020/lib/atoms/icon/icon.enum.mjs +75 -0
  42. package/esm2020/lib/atoms/icon/icon.module.mjs +18 -0
  43. package/esm2020/lib/atoms/icon-wrapper/icon-wrapper.component.mjs +24 -0
  44. package/esm2020/lib/atoms/icon-wrapper/icon-wrapper.module.mjs +18 -0
  45. package/esm2020/lib/atoms/input-checkbox/input-checkbox.component.mjs +30 -0
  46. package/esm2020/lib/atoms/input-checkbox/input-checkbox.module.mjs +18 -0
  47. package/esm2020/lib/atoms/input-dropdown/input-dropdown-list-item.model.mjs +3 -0
  48. package/esm2020/lib/atoms/input-dropdown/input-dropdown-list.model.mjs +3 -0
  49. package/esm2020/lib/atoms/input-dropdown/input-dropdown.component.mjs +42 -0
  50. package/esm2020/lib/atoms/input-dropdown/input-dropdown.module.mjs +24 -0
  51. package/esm2020/lib/atoms/input-radio/input-radio.component.mjs +30 -0
  52. package/esm2020/lib/atoms/input-radio/input-radio.module.mjs +29 -0
  53. package/esm2020/lib/atoms/input-text/input-text.component.mjs +43 -0
  54. package/esm2020/lib/atoms/input-text/input-text.module.mjs +19 -0
  55. package/esm2020/lib/atoms/input-toggle/input-toggle.component.mjs +25 -0
  56. package/esm2020/lib/atoms/input-toggle/input-toggle.module.mjs +18 -0
  57. package/esm2020/lib/atoms/paragraph/paragraph.component.mjs +17 -0
  58. package/esm2020/lib/atoms/paragraph/paragraph.module.mjs +18 -0
  59. package/esm2020/lib/atoms/pill/pill.component.mjs +29 -0
  60. package/esm2020/lib/atoms/pill/pill.model.mjs +2 -0
  61. package/esm2020/lib/atoms/pill/pill.module.mjs +24 -0
  62. package/esm2020/lib/atoms/sfx-loader/sfx-loader.component.mjs +16 -0
  63. package/esm2020/lib/atoms/sfx-loader/sfx-loader.module.mjs +18 -0
  64. package/esm2020/lib/atoms/sfx-page-loader/sfx-page-loader.component.mjs +12 -0
  65. package/esm2020/lib/atoms/sfx-page-loader/sfx-page-loader.module.mjs +18 -0
  66. package/esm2020/lib/atoms/sfx-progress-bar/sfx-progress-bar.component.mjs +14 -0
  67. package/esm2020/lib/atoms/sfx-progress-bar/sfx-progress-bar.module.mjs +18 -0
  68. package/esm2020/lib/atoms/task-icon/task-icon.component.mjs +15 -0
  69. package/esm2020/lib/atoms/task-icon/task-icon.module.mjs +18 -0
  70. package/esm2020/lib/atoms/toaster-alert/toaster-alert.component.mjs +50 -0
  71. package/esm2020/lib/atoms/toaster-alert/toaster-alert.model.mjs +18 -0
  72. package/esm2020/lib/atoms/toaster-alert/toaster-alert.module.mjs +18 -0
  73. package/esm2020/lib/atoms/two-column-filter-area/two-column-filter-area.component.mjs +15 -0
  74. package/esm2020/lib/atoms/two-column-filter-area/two-column-filter-area.module.mjs +18 -0
  75. package/esm2020/lib/design-guide/color-swatch-collection/color-swatch-collection.component.mjs +16 -0
  76. package/esm2020/lib/design-guide/color-swatch-collection/color-swatch-collection.module.mjs +19 -0
  77. package/esm2020/lib/design-guide/icon-explorer/icon-explorer.component.mjs +32 -0
  78. package/esm2020/lib/design-guide/icon-explorer/icon-explorer.helper.mjs +521 -0
  79. package/esm2020/lib/design-guide/icon-explorer/icon-explorer.module.mjs +20 -0
  80. package/esm2020/lib/molecules/breadcrumb/breadcrumb.component.mjs +21 -0
  81. package/esm2020/lib/molecules/breadcrumb/breadcrumb.model.mjs +2 -0
  82. package/esm2020/lib/molecules/breadcrumb/breadcrumb.module.mjs +20 -0
  83. package/esm2020/lib/molecules/color-swatch/color-swatch.component.mjs +29 -0
  84. package/esm2020/lib/molecules/color-swatch/color-swatch.model.mjs +2 -0
  85. package/esm2020/lib/molecules/color-swatch/color-swatch.module.mjs +34 -0
  86. package/esm2020/lib/molecules/icon-swatch/icon-swatch.component.mjs +26 -0
  87. package/esm2020/lib/molecules/icon-swatch/icon-swatch.model.mjs +3 -0
  88. package/esm2020/lib/molecules/icon-swatch/icon-swatch.module.mjs +38 -0
  89. package/esm2020/lib/molecules/molecules.module.mjs +67 -0
  90. package/esm2020/lib/molecules/note/note.component.mjs +31 -0
  91. package/esm2020/lib/molecules/note/note.model.mjs +2 -0
  92. package/esm2020/lib/molecules/note/note.module.mjs +38 -0
  93. package/esm2020/lib/molecules/pills/pills.component.mjs +27 -0
  94. package/esm2020/lib/molecules/pills/pills.module.mjs +28 -0
  95. package/esm2020/lib/molecules/task/task.component.mjs +25 -0
  96. package/esm2020/lib/molecules/task/task.model.mjs +2 -0
  97. package/esm2020/lib/molecules/task/task.module.mjs +38 -0
  98. package/esm2020/lib/organisms/note-list/note-list.component.mjs +16 -0
  99. package/esm2020/lib/organisms/note-list/note-list.module.mjs +19 -0
  100. package/esm2020/lib/organisms/task-list/task-list.component.mjs +16 -0
  101. package/esm2020/lib/organisms/task-list/task-list.module.mjs +19 -0
  102. package/esm2020/lib/pages/events-settings-page/events-settings-page.component.mjs +56 -0
  103. package/esm2020/lib/pages/events-settings-page/events-settings-page.model.mjs +2 -0
  104. package/esm2020/lib/pages/events-settings-page/events-settings-page.module.mjs +70 -0
  105. package/esm2020/lib/templates/admin-list/admin-list.component.mjs +12 -0
  106. package/esm2020/lib/templates/admin-list/admin-list.module.mjs +18 -0
  107. package/esm2020/lib/templates/placeholder/placeholder.component.mjs +26 -0
  108. package/esm2020/lib/templates/placeholder/placeholder.module.mjs +20 -0
  109. package/esm2020/projects/component-library/lib/atoms/atoms.module.mjs +123 -0
  110. package/esm2020/projects/component-library/lib/atoms/avatar/avatar.component.mjs +96 -0
  111. package/esm2020/projects/component-library/lib/atoms/avatar/avatar.module.mjs +18 -0
  112. package/esm2020/projects/component-library/lib/atoms/button/button.component.mjs +28 -0
  113. package/esm2020/projects/component-library/lib/atoms/button/button.module.mjs +19 -0
  114. package/esm2020/projects/component-library/lib/atoms/color-sample/color-sample.component.mjs +18 -0
  115. package/esm2020/projects/component-library/lib/atoms/color-sample/color-sample.enum.mjs +26 -0
  116. package/esm2020/projects/component-library/lib/atoms/color-sample/color-sample.module.mjs +18 -0
  117. package/esm2020/projects/component-library/lib/atoms/contextual-menu/contextual-menu.component.mjs +26 -0
  118. package/esm2020/projects/component-library/lib/atoms/contextual-menu/contextual-menu.model.mjs +2 -0
  119. package/esm2020/projects/component-library/lib/atoms/contextual-menu/contextual-menu.module.mjs +21 -0
  120. package/esm2020/projects/component-library/lib/atoms/filter-area/filter-area.component.mjs +12 -0
  121. package/esm2020/projects/component-library/lib/atoms/filter-area/filter-area.module.mjs +18 -0
  122. package/esm2020/projects/component-library/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.mjs +47 -0
  123. package/esm2020/projects/component-library/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.module.mjs +17 -0
  124. package/esm2020/projects/component-library/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.model.mjs +8 -0
  125. package/esm2020/projects/component-library/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.component.mjs +33 -0
  126. package/esm2020/projects/component-library/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.model.mjs +2 -0
  127. package/esm2020/projects/component-library/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.module.mjs +19 -0
  128. package/esm2020/projects/component-library/lib/atoms/grid/framework/framework.module.mjs +31 -0
  129. package/esm2020/projects/component-library/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.component.mjs +25 -0
  130. package/esm2020/projects/component-library/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.model.mjs +2 -0
  131. package/esm2020/projects/component-library/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.module.mjs +19 -0
  132. package/esm2020/projects/component-library/lib/atoms/grid/framework/relevance-score/relevance-score.component.mjs +31 -0
  133. package/esm2020/projects/component-library/lib/atoms/grid/framework/relevance-score/relevance-score.component.model.mjs +6 -0
  134. package/esm2020/projects/component-library/lib/atoms/grid/framework/relevance-score/relevance-score.component.module.mjs +17 -0
  135. package/esm2020/projects/component-library/lib/atoms/grid/grid.component.mjs +39 -0
  136. package/esm2020/projects/component-library/lib/atoms/grid/grid.model.mjs +2 -0
  137. package/esm2020/projects/component-library/lib/atoms/grid/grid.module.mjs +21 -0
  138. package/esm2020/projects/component-library/lib/atoms/h1/h1.component.mjs +17 -0
  139. package/esm2020/projects/component-library/lib/atoms/h1/h1.module.mjs +18 -0
  140. package/esm2020/projects/component-library/lib/atoms/h2/h2.component.mjs +17 -0
  141. package/esm2020/projects/component-library/lib/atoms/h2/h2.module.mjs +18 -0
  142. package/esm2020/projects/component-library/lib/atoms/h3/h3.component.mjs +17 -0
  143. package/esm2020/projects/component-library/lib/atoms/h3/h3.module.mjs +18 -0
  144. package/esm2020/projects/component-library/lib/atoms/h4/h4.component.mjs +17 -0
  145. package/esm2020/projects/component-library/lib/atoms/h4/h4.module.mjs +18 -0
  146. package/esm2020/projects/component-library/lib/atoms/h5/h5.component.mjs +17 -0
  147. package/esm2020/projects/component-library/lib/atoms/h5/h5.module.mjs +18 -0
  148. package/esm2020/projects/component-library/lib/atoms/icon/icon.component.mjs +27 -0
  149. package/esm2020/projects/component-library/lib/atoms/icon/icon.enum.mjs +75 -0
  150. package/esm2020/projects/component-library/lib/atoms/icon/icon.module.mjs +18 -0
  151. package/esm2020/projects/component-library/lib/atoms/icon-wrapper/icon-wrapper.component.mjs +24 -0
  152. package/esm2020/projects/component-library/lib/atoms/icon-wrapper/icon-wrapper.module.mjs +18 -0
  153. package/esm2020/projects/component-library/lib/atoms/input-checkbox/input-checkbox.component.mjs +30 -0
  154. package/esm2020/projects/component-library/lib/atoms/input-checkbox/input-checkbox.module.mjs +18 -0
  155. package/esm2020/projects/component-library/lib/atoms/input-dropdown/input-dropdown-list-item.model.mjs +3 -0
  156. package/esm2020/projects/component-library/lib/atoms/input-dropdown/input-dropdown-list.model.mjs +3 -0
  157. package/esm2020/projects/component-library/lib/atoms/input-dropdown/input-dropdown.component.mjs +42 -0
  158. package/esm2020/projects/component-library/lib/atoms/input-dropdown/input-dropdown.module.mjs +24 -0
  159. package/esm2020/projects/component-library/lib/atoms/input-radio/input-radio.component.mjs +30 -0
  160. package/esm2020/projects/component-library/lib/atoms/input-radio/input-radio.module.mjs +29 -0
  161. package/esm2020/projects/component-library/lib/atoms/input-text/input-text.component.mjs +43 -0
  162. package/esm2020/projects/component-library/lib/atoms/input-text/input-text.module.mjs +19 -0
  163. package/esm2020/projects/component-library/lib/atoms/input-toggle/input-toggle.component.mjs +25 -0
  164. package/esm2020/projects/component-library/lib/atoms/input-toggle/input-toggle.module.mjs +18 -0
  165. package/esm2020/projects/component-library/lib/atoms/paragraph/paragraph.component.mjs +17 -0
  166. package/esm2020/projects/component-library/lib/atoms/paragraph/paragraph.module.mjs +18 -0
  167. package/esm2020/projects/component-library/lib/atoms/pill/pill.component.mjs +29 -0
  168. package/esm2020/projects/component-library/lib/atoms/pill/pill.model.mjs +2 -0
  169. package/esm2020/projects/component-library/lib/atoms/pill/pill.module.mjs +24 -0
  170. package/esm2020/projects/component-library/lib/atoms/sfx-loader/sfx-loader.component.mjs +16 -0
  171. package/esm2020/projects/component-library/lib/atoms/sfx-loader/sfx-loader.module.mjs +18 -0
  172. package/esm2020/projects/component-library/lib/atoms/sfx-page-loader/sfx-page-loader.component.mjs +12 -0
  173. package/esm2020/projects/component-library/lib/atoms/sfx-page-loader/sfx-page-loader.module.mjs +18 -0
  174. package/esm2020/projects/component-library/lib/atoms/sfx-progress-bar/sfx-progress-bar.component.mjs +14 -0
  175. package/esm2020/projects/component-library/lib/atoms/sfx-progress-bar/sfx-progress-bar.module.mjs +18 -0
  176. package/esm2020/projects/component-library/lib/atoms/task-icon/task-icon.component.mjs +15 -0
  177. package/esm2020/projects/component-library/lib/atoms/task-icon/task-icon.module.mjs +18 -0
  178. package/esm2020/projects/component-library/lib/atoms/toaster-alert/toaster-alert.component.mjs +50 -0
  179. package/esm2020/projects/component-library/lib/atoms/toaster-alert/toaster-alert.model.mjs +18 -0
  180. package/esm2020/projects/component-library/lib/atoms/toaster-alert/toaster-alert.module.mjs +18 -0
  181. package/esm2020/projects/component-library/lib/atoms/two-column-filter-area/two-column-filter-area.component.mjs +15 -0
  182. package/esm2020/projects/component-library/lib/atoms/two-column-filter-area/two-column-filter-area.module.mjs +18 -0
  183. package/esm2020/projects/component-library/lib/design-guide/color-swatch-collection/color-swatch-collection.component.mjs +16 -0
  184. package/esm2020/projects/component-library/lib/design-guide/color-swatch-collection/color-swatch-collection.module.mjs +19 -0
  185. package/esm2020/projects/component-library/lib/design-guide/icon-explorer/icon-explorer.component.mjs +32 -0
  186. package/esm2020/projects/component-library/lib/design-guide/icon-explorer/icon-explorer.helper.mjs +521 -0
  187. package/esm2020/projects/component-library/lib/design-guide/icon-explorer/icon-explorer.module.mjs +20 -0
  188. package/esm2020/projects/component-library/lib/molecules/breadcrumb/breadcrumb.component.mjs +21 -0
  189. package/esm2020/projects/component-library/lib/molecules/breadcrumb/breadcrumb.model.mjs +2 -0
  190. package/esm2020/projects/component-library/lib/molecules/breadcrumb/breadcrumb.module.mjs +20 -0
  191. package/esm2020/projects/component-library/lib/molecules/color-swatch/color-swatch.component.mjs +29 -0
  192. package/esm2020/projects/component-library/lib/molecules/color-swatch/color-swatch.model.mjs +2 -0
  193. package/esm2020/projects/component-library/lib/molecules/color-swatch/color-swatch.module.mjs +34 -0
  194. package/esm2020/projects/component-library/lib/molecules/icon-swatch/icon-swatch.component.mjs +26 -0
  195. package/esm2020/projects/component-library/lib/molecules/icon-swatch/icon-swatch.model.mjs +3 -0
  196. package/esm2020/projects/component-library/lib/molecules/icon-swatch/icon-swatch.module.mjs +38 -0
  197. package/esm2020/projects/component-library/lib/molecules/molecules.module.mjs +67 -0
  198. package/esm2020/projects/component-library/lib/molecules/note/note.component.mjs +31 -0
  199. package/esm2020/projects/component-library/lib/molecules/note/note.model.mjs +2 -0
  200. package/esm2020/projects/component-library/lib/molecules/note/note.module.mjs +38 -0
  201. package/esm2020/projects/component-library/lib/molecules/pills/pills.component.mjs +27 -0
  202. package/esm2020/projects/component-library/lib/molecules/pills/pills.module.mjs +28 -0
  203. package/esm2020/projects/component-library/lib/molecules/task/task.component.mjs +25 -0
  204. package/esm2020/projects/component-library/lib/molecules/task/task.model.mjs +2 -0
  205. package/esm2020/projects/component-library/lib/molecules/task/task.module.mjs +38 -0
  206. package/esm2020/projects/component-library/lib/organisms/note-list/note-list.component.mjs +16 -0
  207. package/esm2020/projects/component-library/lib/organisms/note-list/note-list.module.mjs +19 -0
  208. package/esm2020/projects/component-library/lib/organisms/task-list/task-list.component.mjs +16 -0
  209. package/esm2020/projects/component-library/lib/organisms/task-list/task-list.module.mjs +19 -0
  210. package/esm2020/projects/component-library/lib/pages/events-settings-page/events-settings-page.component.mjs +56 -0
  211. package/esm2020/projects/component-library/lib/pages/events-settings-page/events-settings-page.model.mjs +2 -0
  212. package/esm2020/projects/component-library/lib/pages/events-settings-page/events-settings-page.module.mjs +70 -0
  213. package/esm2020/projects/component-library/lib/templates/admin-list/admin-list.component.mjs +12 -0
  214. package/esm2020/projects/component-library/lib/templates/admin-list/admin-list.module.mjs +18 -0
  215. package/esm2020/projects/component-library/lib/templates/placeholder/placeholder.component.mjs +26 -0
  216. package/esm2020/projects/component-library/lib/templates/placeholder/placeholder.module.mjs +20 -0
  217. package/esm2020/projects/component-library/public-api.mjs +92 -0
  218. package/esm2020/projects/component-library/symphony-talent-component-library-projects-component-library.mjs +5 -0
  219. package/esm2020/public-api.mjs +92 -0
  220. package/esm2020/symphony-talent-component-library.mjs +5 -0
  221. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +2525 -0
  222. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -0
  223. package/fesm2015/symphony-talent-component-library.mjs +2525 -0
  224. package/fesm2015/symphony-talent-component-library.mjs.map +1 -0
  225. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +2523 -0
  226. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -0
  227. package/fesm2020/symphony-talent-component-library.mjs +2523 -0
  228. package/fesm2020/symphony-talent-component-library.mjs.map +1 -0
  229. package/lib/atoms/atoms.module.d.ts +31 -0
  230. package/lib/atoms/avatar/avatar.component.d.ts +5 -3
  231. package/lib/atoms/avatar/avatar.module.d.ts +6 -0
  232. package/lib/atoms/button/button.component.d.ts +6 -3
  233. package/lib/atoms/button/button.module.d.ts +6 -0
  234. package/lib/atoms/color-sample/color-sample.component.d.ts +3 -0
  235. package/lib/atoms/color-sample/color-sample.module.d.ts +6 -0
  236. package/lib/atoms/contextual-menu/contextual-menu.component.d.ts +11 -0
  237. package/lib/atoms/contextual-menu/contextual-menu.model.d.ts +4 -0
  238. package/lib/atoms/contextual-menu/contextual-menu.module.d.ts +10 -0
  239. package/lib/atoms/filter-area/filter-area.component.d.ts +6 -0
  240. package/lib/atoms/filter-area/filter-area.module.d.ts +8 -0
  241. package/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.d.ts +14 -0
  242. package/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.module.d.ts +8 -0
  243. package/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.model.d.ts +9 -0
  244. package/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.component.d.ts +14 -0
  245. package/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.model.d.ts +5 -0
  246. package/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.module.d.ts +9 -0
  247. package/lib/atoms/grid/framework/framework.module.d.ts +10 -0
  248. package/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.component.d.ts +11 -0
  249. package/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.model.d.ts +5 -0
  250. package/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.module.d.ts +9 -0
  251. package/lib/atoms/grid/framework/relevance-score/relevance-score.component.d.ts +14 -0
  252. package/lib/atoms/grid/framework/relevance-score/relevance-score.component.model.d.ts +7 -0
  253. package/lib/atoms/grid/framework/relevance-score/relevance-score.component.module.d.ts +8 -0
  254. package/lib/atoms/grid/grid.component.d.ts +19 -0
  255. package/lib/atoms/grid/grid.model.d.ts +5 -0
  256. package/lib/atoms/grid/grid.module.d.ts +10 -0
  257. package/lib/atoms/h1/h1.component.d.ts +4 -3
  258. package/lib/atoms/h1/h1.module.d.ts +6 -0
  259. package/lib/atoms/h2/h2.component.d.ts +4 -3
  260. package/lib/atoms/h2/h2.module.d.ts +6 -0
  261. package/lib/atoms/h3/h3.component.d.ts +4 -3
  262. package/lib/atoms/h3/h3.module.d.ts +6 -0
  263. package/lib/atoms/h4/h4.component.d.ts +4 -3
  264. package/lib/atoms/h4/h4.module.d.ts +6 -0
  265. package/lib/atoms/h5/h5.component.d.ts +4 -3
  266. package/lib/atoms/h5/h5.module.d.ts +6 -0
  267. package/lib/atoms/icon/icon.component.d.ts +9 -5
  268. package/lib/atoms/icon/icon.module.d.ts +6 -0
  269. package/lib/atoms/icon-wrapper/icon-wrapper.component.d.ts +7 -3
  270. package/lib/atoms/icon-wrapper/icon-wrapper.module.d.ts +6 -0
  271. package/lib/atoms/input-checkbox/input-checkbox.component.d.ts +12 -0
  272. package/lib/atoms/input-checkbox/input-checkbox.module.d.ts +8 -0
  273. package/lib/atoms/input-dropdown/input-dropdown-list-item.model.d.ts +8 -0
  274. package/lib/atoms/input-dropdown/input-dropdown-list.model.d.ts +7 -0
  275. package/lib/atoms/input-dropdown/input-dropdown.component.d.ts +19 -0
  276. package/lib/atoms/input-dropdown/input-dropdown.module.d.ts +9 -0
  277. package/lib/atoms/input-radio/input-radio.component.d.ts +12 -0
  278. package/lib/atoms/input-radio/input-radio.module.d.ts +9 -0
  279. package/lib/atoms/input-text/input-text.component.d.ts +11 -2
  280. package/lib/atoms/input-text/input-text.module.d.ts +7 -0
  281. package/lib/atoms/input-toggle/input-toggle.component.d.ts +11 -0
  282. package/lib/atoms/input-toggle/input-toggle.module.d.ts +8 -0
  283. package/lib/atoms/paragraph/paragraph.component.d.ts +4 -3
  284. package/lib/atoms/paragraph/paragraph.module.d.ts +6 -0
  285. package/lib/atoms/pill/pill.component.d.ts +5 -3
  286. package/lib/atoms/pill/pill.module.d.ts +7 -0
  287. package/lib/atoms/sfx-loader/sfx-loader.component.d.ts +7 -0
  288. package/lib/atoms/sfx-loader/sfx-loader.module.d.ts +8 -0
  289. package/lib/atoms/sfx-page-loader/sfx-page-loader.component.d.ts +6 -0
  290. package/lib/atoms/sfx-page-loader/sfx-page-loader.module.d.ts +8 -0
  291. package/lib/atoms/sfx-progress-bar/sfx-progress-bar.component.d.ts +7 -0
  292. package/lib/atoms/sfx-progress-bar/sfx-progress-bar.module.d.ts +8 -0
  293. package/lib/atoms/task-icon/task-icon.component.d.ts +4 -3
  294. package/lib/atoms/task-icon/task-icon.module.d.ts +6 -0
  295. package/lib/atoms/toaster-alert/toaster-alert.component.d.ts +19 -0
  296. package/lib/atoms/toaster-alert/toaster-alert.model.d.ts +20 -0
  297. package/lib/atoms/toaster-alert/toaster-alert.module.d.ts +8 -0
  298. package/lib/atoms/two-column-filter-area/two-column-filter-area.component.d.ts +7 -0
  299. package/lib/atoms/two-column-filter-area/two-column-filter-area.module.d.ts +8 -0
  300. package/lib/design-guide/color-swatch-collection/color-swatch-collection.component.d.ts +8 -0
  301. package/lib/design-guide/color-swatch-collection/color-swatch-collection.module.d.ts +9 -0
  302. package/lib/{organisms → design-guide}/icon-explorer/icon-explorer.component.d.ts +3 -0
  303. package/lib/{organisms → design-guide}/icon-explorer/icon-explorer.helper.d.ts +0 -0
  304. package/lib/design-guide/icon-explorer/icon-explorer.module.d.ts +11 -0
  305. package/lib/molecules/breadcrumb/breadcrumb.component.d.ts +12 -0
  306. package/lib/molecules/breadcrumb/breadcrumb.model.d.ts +5 -0
  307. package/lib/molecules/breadcrumb/breadcrumb.module.d.ts +10 -0
  308. package/lib/molecules/color-swatch/color-swatch.component.d.ts +3 -0
  309. package/lib/molecules/color-swatch/color-swatch.module.d.ts +9 -0
  310. package/lib/molecules/icon-swatch/icon-swatch.component.d.ts +4 -3
  311. package/lib/molecules/icon-swatch/icon-swatch.module.d.ts +10 -0
  312. package/lib/molecules/molecules.module.d.ts +13 -0
  313. package/lib/molecules/note/note.component.d.ts +6 -9
  314. package/lib/molecules/note/note.model.d.ts +9 -0
  315. package/lib/molecules/note/note.module.d.ts +10 -0
  316. package/lib/molecules/pills/pills.component.d.ts +5 -3
  317. package/lib/molecules/pills/pills.module.d.ts +7 -0
  318. package/lib/molecules/task/task.component.d.ts +4 -3
  319. package/lib/molecules/task/task.model.d.ts +2 -2
  320. package/lib/molecules/task/task.module.d.ts +10 -0
  321. package/lib/organisms/note-list/note-list.component.d.ts +8 -0
  322. package/lib/organisms/note-list/note-list.module.d.ts +9 -0
  323. package/lib/organisms/task-list/task-list.component.d.ts +4 -3
  324. package/lib/organisms/task-list/task-list.module.d.ts +7 -0
  325. package/lib/pages/events-settings-page/events-settings-page.component.d.ts +17 -0
  326. package/lib/pages/events-settings-page/events-settings-page.model.d.ts +14 -0
  327. package/lib/pages/events-settings-page/events-settings-page.module.d.ts +20 -0
  328. package/lib/templates/admin-list/admin-list.component.d.ts +6 -0
  329. package/lib/templates/admin-list/admin-list.module.d.ts +8 -0
  330. package/lib/templates/placeholder/placeholder.component.d.ts +12 -0
  331. package/lib/templates/placeholder/placeholder.module.d.ts +9 -0
  332. package/package.json +34 -17
  333. package/projects/component-library/lib/atoms/atoms.module.d.ts +31 -0
  334. package/projects/component-library/lib/atoms/avatar/avatar.component.d.ts +5 -3
  335. package/projects/component-library/lib/atoms/avatar/avatar.module.d.ts +6 -0
  336. package/projects/component-library/lib/atoms/button/button.component.d.ts +6 -3
  337. package/projects/component-library/lib/atoms/button/button.module.d.ts +6 -0
  338. package/projects/component-library/lib/atoms/color-sample/color-sample.component.d.ts +3 -0
  339. package/projects/component-library/lib/atoms/color-sample/color-sample.module.d.ts +6 -0
  340. package/projects/component-library/lib/atoms/contextual-menu/contextual-menu.component.d.ts +11 -0
  341. package/projects/component-library/lib/atoms/contextual-menu/contextual-menu.model.d.ts +4 -0
  342. package/projects/component-library/lib/atoms/contextual-menu/contextual-menu.module.d.ts +10 -0
  343. package/projects/component-library/lib/atoms/filter-area/filter-area.component.d.ts +6 -0
  344. package/projects/component-library/lib/atoms/filter-area/filter-area.module.d.ts +8 -0
  345. package/projects/component-library/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.d.ts +14 -0
  346. package/projects/component-library/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.module.d.ts +8 -0
  347. package/projects/component-library/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.model.d.ts +9 -0
  348. package/projects/component-library/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.component.d.ts +14 -0
  349. package/projects/component-library/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.model.d.ts +5 -0
  350. package/projects/component-library/lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.module.d.ts +9 -0
  351. package/projects/component-library/lib/atoms/grid/framework/framework.module.d.ts +10 -0
  352. package/projects/component-library/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.component.d.ts +11 -0
  353. package/projects/component-library/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.model.d.ts +5 -0
  354. package/projects/component-library/lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.module.d.ts +9 -0
  355. package/projects/component-library/lib/atoms/grid/framework/relevance-score/relevance-score.component.d.ts +14 -0
  356. package/projects/component-library/lib/atoms/grid/framework/relevance-score/relevance-score.component.model.d.ts +7 -0
  357. package/projects/component-library/lib/atoms/grid/framework/relevance-score/relevance-score.component.module.d.ts +8 -0
  358. package/projects/component-library/lib/atoms/grid/grid.component.d.ts +19 -0
  359. package/projects/component-library/lib/atoms/grid/grid.model.d.ts +5 -0
  360. package/projects/component-library/lib/atoms/grid/grid.module.d.ts +10 -0
  361. package/projects/component-library/lib/atoms/h1/h1.component.d.ts +4 -3
  362. package/projects/component-library/lib/atoms/h1/h1.module.d.ts +6 -0
  363. package/projects/component-library/lib/atoms/h2/h2.component.d.ts +4 -3
  364. package/projects/component-library/lib/atoms/h2/h2.module.d.ts +6 -0
  365. package/projects/component-library/lib/atoms/h3/h3.component.d.ts +4 -3
  366. package/projects/component-library/lib/atoms/h3/h3.module.d.ts +6 -0
  367. package/projects/component-library/lib/atoms/h4/h4.component.d.ts +4 -3
  368. package/projects/component-library/lib/atoms/h4/h4.module.d.ts +6 -0
  369. package/projects/component-library/lib/atoms/h5/h5.component.d.ts +4 -3
  370. package/projects/component-library/lib/atoms/h5/h5.module.d.ts +6 -0
  371. package/projects/component-library/lib/atoms/icon/icon.component.d.ts +9 -5
  372. package/projects/component-library/lib/atoms/icon/icon.module.d.ts +6 -0
  373. package/projects/component-library/lib/atoms/icon-wrapper/icon-wrapper.component.d.ts +7 -3
  374. package/projects/component-library/lib/atoms/icon-wrapper/icon-wrapper.module.d.ts +6 -0
  375. package/projects/component-library/lib/atoms/input-checkbox/input-checkbox.component.d.ts +12 -0
  376. package/projects/component-library/lib/atoms/input-checkbox/input-checkbox.module.d.ts +8 -0
  377. package/projects/component-library/lib/atoms/input-dropdown/input-dropdown-list-item.model.d.ts +8 -0
  378. package/projects/component-library/lib/atoms/input-dropdown/input-dropdown-list.model.d.ts +7 -0
  379. package/projects/component-library/lib/atoms/input-dropdown/input-dropdown.component.d.ts +19 -0
  380. package/projects/component-library/lib/atoms/input-dropdown/input-dropdown.module.d.ts +9 -0
  381. package/projects/component-library/lib/atoms/input-radio/input-radio.component.d.ts +12 -0
  382. package/projects/component-library/lib/atoms/input-radio/input-radio.module.d.ts +9 -0
  383. package/projects/component-library/lib/atoms/input-text/input-text.component.d.ts +11 -2
  384. package/projects/component-library/lib/atoms/input-text/input-text.module.d.ts +7 -0
  385. package/projects/component-library/lib/atoms/input-toggle/input-toggle.component.d.ts +11 -0
  386. package/projects/component-library/lib/atoms/input-toggle/input-toggle.module.d.ts +8 -0
  387. package/projects/component-library/lib/atoms/paragraph/paragraph.component.d.ts +4 -3
  388. package/projects/component-library/lib/atoms/paragraph/paragraph.module.d.ts +6 -0
  389. package/projects/component-library/lib/atoms/pill/pill.component.d.ts +5 -3
  390. package/projects/component-library/lib/atoms/pill/pill.module.d.ts +7 -0
  391. package/projects/component-library/lib/atoms/sfx-loader/sfx-loader.component.d.ts +7 -0
  392. package/projects/component-library/lib/atoms/sfx-loader/sfx-loader.module.d.ts +8 -0
  393. package/projects/component-library/lib/atoms/sfx-page-loader/sfx-page-loader.component.d.ts +6 -0
  394. package/projects/component-library/lib/atoms/sfx-page-loader/sfx-page-loader.module.d.ts +8 -0
  395. package/projects/component-library/lib/atoms/sfx-progress-bar/sfx-progress-bar.component.d.ts +7 -0
  396. package/projects/component-library/lib/atoms/sfx-progress-bar/sfx-progress-bar.module.d.ts +8 -0
  397. package/projects/component-library/lib/atoms/task-icon/task-icon.component.d.ts +4 -3
  398. package/projects/component-library/lib/atoms/task-icon/task-icon.module.d.ts +6 -0
  399. package/projects/component-library/lib/atoms/toaster-alert/toaster-alert.component.d.ts +19 -0
  400. package/projects/component-library/lib/atoms/toaster-alert/toaster-alert.model.d.ts +20 -0
  401. package/projects/component-library/lib/atoms/toaster-alert/toaster-alert.module.d.ts +8 -0
  402. package/projects/component-library/lib/atoms/two-column-filter-area/two-column-filter-area.component.d.ts +7 -0
  403. package/projects/component-library/lib/atoms/two-column-filter-area/two-column-filter-area.module.d.ts +8 -0
  404. package/projects/component-library/lib/design-guide/color-swatch-collection/color-swatch-collection.component.d.ts +8 -0
  405. package/projects/component-library/lib/design-guide/color-swatch-collection/color-swatch-collection.module.d.ts +9 -0
  406. package/projects/component-library/lib/{organisms → design-guide}/icon-explorer/icon-explorer.component.d.ts +3 -0
  407. package/projects/component-library/lib/{organisms → design-guide}/icon-explorer/icon-explorer.helper.d.ts +0 -0
  408. package/projects/component-library/lib/design-guide/icon-explorer/icon-explorer.module.d.ts +11 -0
  409. package/projects/component-library/lib/molecules/breadcrumb/breadcrumb.component.d.ts +12 -0
  410. package/projects/component-library/lib/molecules/breadcrumb/breadcrumb.model.d.ts +5 -0
  411. package/projects/component-library/lib/molecules/breadcrumb/breadcrumb.module.d.ts +10 -0
  412. package/projects/component-library/lib/molecules/color-swatch/color-swatch.component.d.ts +3 -0
  413. package/projects/component-library/lib/molecules/color-swatch/color-swatch.module.d.ts +9 -0
  414. package/projects/component-library/lib/molecules/icon-swatch/icon-swatch.component.d.ts +4 -3
  415. package/projects/component-library/lib/molecules/icon-swatch/icon-swatch.module.d.ts +10 -0
  416. package/projects/component-library/lib/molecules/molecules.module.d.ts +13 -0
  417. package/projects/component-library/lib/molecules/note/note.component.d.ts +6 -9
  418. package/projects/component-library/lib/molecules/note/note.model.d.ts +9 -0
  419. package/projects/component-library/lib/molecules/note/note.module.d.ts +10 -0
  420. package/projects/component-library/lib/molecules/pills/pills.component.d.ts +5 -3
  421. package/projects/component-library/lib/molecules/pills/pills.module.d.ts +7 -0
  422. package/projects/component-library/lib/molecules/task/task.component.d.ts +4 -3
  423. package/projects/component-library/lib/molecules/task/task.model.d.ts +2 -2
  424. package/projects/component-library/lib/molecules/task/task.module.d.ts +10 -0
  425. package/projects/component-library/lib/organisms/note-list/note-list.component.d.ts +8 -0
  426. package/projects/component-library/lib/organisms/note-list/note-list.module.d.ts +9 -0
  427. package/projects/component-library/lib/organisms/task-list/task-list.component.d.ts +4 -3
  428. package/projects/component-library/lib/organisms/task-list/task-list.module.d.ts +7 -0
  429. package/projects/component-library/lib/pages/events-settings-page/events-settings-page.component.d.ts +17 -0
  430. package/projects/component-library/lib/pages/events-settings-page/events-settings-page.model.d.ts +14 -0
  431. package/projects/component-library/lib/pages/events-settings-page/events-settings-page.module.d.ts +20 -0
  432. package/projects/component-library/lib/templates/admin-list/admin-list.component.d.ts +6 -0
  433. package/projects/component-library/lib/templates/admin-list/admin-list.module.d.ts +8 -0
  434. package/projects/component-library/lib/templates/placeholder/placeholder.component.d.ts +12 -0
  435. package/projects/component-library/lib/templates/placeholder/placeholder.module.d.ts +9 -0
  436. package/projects/component-library/package.json +7 -8
  437. package/projects/component-library/public-api.d.ts +49 -11
  438. package/projects/component-library/symphony-talent-component-library-projects-component-library.d.ts +1 -19
  439. package/public-api.d.ts +49 -11
  440. package/symphony-talent-component-library.d.ts +1 -19
  441. package/bundles/symphony-talent-component-library-projects-component-library.umd.js +0 -2060
  442. package/bundles/symphony-talent-component-library-projects-component-library.umd.js.map +0 -1
  443. package/bundles/symphony-talent-component-library-projects-component-library.umd.min.js +0 -16
  444. package/bundles/symphony-talent-component-library-projects-component-library.umd.min.js.map +0 -1
  445. package/bundles/symphony-talent-component-library.umd.js +0 -2060
  446. package/bundles/symphony-talent-component-library.umd.js.map +0 -1
  447. package/bundles/symphony-talent-component-library.umd.min.js +0 -16
  448. package/bundles/symphony-talent-component-library.umd.min.js.map +0 -1
  449. package/esm2015/lib/atoms/atoms.module.js +0 -52
  450. package/esm2015/lib/atoms/avatar/avatar.component.js +0 -101
  451. package/esm2015/lib/atoms/avatar/avatar.module.js +0 -16
  452. package/esm2015/lib/atoms/button/button.component.js +0 -32
  453. package/esm2015/lib/atoms/button/button.module.js +0 -16
  454. package/esm2015/lib/atoms/button-round/button-round.component.js +0 -32
  455. package/esm2015/lib/atoms/button-round/button-round.enum.js +0 -7
  456. package/esm2015/lib/atoms/button-round/button-round.module.js +0 -15
  457. package/esm2015/lib/atoms/color-sample/color-sample.component.js +0 -20
  458. package/esm2015/lib/atoms/color-sample/color-sample.enum.js +0 -26
  459. package/esm2015/lib/atoms/color-sample/color-sample.module.js +0 -15
  460. package/esm2015/lib/atoms/description/description.component.js +0 -18
  461. package/esm2015/lib/atoms/description/description.module.js +0 -15
  462. package/esm2015/lib/atoms/dropdown/dropdown.component.js +0 -16
  463. package/esm2015/lib/atoms/dropdown/dropdown.module.js +0 -18
  464. package/esm2015/lib/atoms/h1/h1.component.js +0 -21
  465. package/esm2015/lib/atoms/h1/h1.module.js +0 -15
  466. package/esm2015/lib/atoms/h2/h2.component.js +0 -21
  467. package/esm2015/lib/atoms/h2/h2.module.js +0 -15
  468. package/esm2015/lib/atoms/h3/h3.component.js +0 -21
  469. package/esm2015/lib/atoms/h3/h3.module.js +0 -15
  470. package/esm2015/lib/atoms/h4/h4.component.js +0 -21
  471. package/esm2015/lib/atoms/h4/h4.module.js +0 -15
  472. package/esm2015/lib/atoms/h5/h5.component.js +0 -21
  473. package/esm2015/lib/atoms/h5/h5.module.js +0 -15
  474. package/esm2015/lib/atoms/icon/icon.component.js +0 -21
  475. package/esm2015/lib/atoms/icon/icon.enum.js +0 -75
  476. package/esm2015/lib/atoms/icon/icon.module.js +0 -15
  477. package/esm2015/lib/atoms/icon-wrapper/icon-wrapper.component.js +0 -21
  478. package/esm2015/lib/atoms/icon-wrapper/icon-wrapper.module.js +0 -15
  479. package/esm2015/lib/atoms/input-text/input-text.component.js +0 -30
  480. package/esm2015/lib/atoms/input-text/input-text.module.js +0 -14
  481. package/esm2015/lib/atoms/list-title/list-title.component.js +0 -18
  482. package/esm2015/lib/atoms/list-title/list-title.module.js +0 -15
  483. package/esm2015/lib/atoms/more-dropdown/more-actions.model.js +0 -1
  484. package/esm2015/lib/atoms/more-dropdown/more-dropdown.component.js +0 -20
  485. package/esm2015/lib/atoms/more-dropdown/more-dropdown.module.js +0 -17
  486. package/esm2015/lib/atoms/paragraph/paragraph.component.js +0 -21
  487. package/esm2015/lib/atoms/paragraph/paragraph.module.js +0 -15
  488. package/esm2015/lib/atoms/pill/pill.component.js +0 -37
  489. package/esm2015/lib/atoms/pill/pill.model.js +0 -1
  490. package/esm2015/lib/atoms/pill/pill.module.js +0 -18
  491. package/esm2015/lib/atoms/task-icon/task-icon.component.js +0 -18
  492. package/esm2015/lib/atoms/task-icon/task-icon.module.js +0 -15
  493. package/esm2015/lib/atoms/time-stamp/time-stamp.component.js +0 -18
  494. package/esm2015/lib/atoms/time-stamp/time-stamp.module.js +0 -15
  495. package/esm2015/lib/molecules/color-swatch/color-swatch.component.js +0 -29
  496. package/esm2015/lib/molecules/color-swatch/color-swatch.model.js +0 -1
  497. package/esm2015/lib/molecules/color-swatch/color-swatch.module.js +0 -23
  498. package/esm2015/lib/molecules/icon-swatch/icon-swatch.component.js +0 -26
  499. package/esm2015/lib/molecules/icon-swatch/icon-swatch.model.js +0 -3
  500. package/esm2015/lib/molecules/icon-swatch/icon-swatch.module.js +0 -25
  501. package/esm2015/lib/molecules/molecules.module.js +0 -41
  502. package/esm2015/lib/molecules/note/note.component.js +0 -33
  503. package/esm2015/lib/molecules/note/note.module.js +0 -20
  504. package/esm2015/lib/molecules/pills/pills.component.js +0 -33
  505. package/esm2015/lib/molecules/pills/pills.module.js +0 -21
  506. package/esm2015/lib/molecules/task/task.component.js +0 -25
  507. package/esm2015/lib/molecules/task/task.model.js +0 -1
  508. package/esm2015/lib/molecules/task/task.module.js +0 -27
  509. package/esm2015/lib/organisms/color-swatch-collection/color-swatch-collection.component.js +0 -19
  510. package/esm2015/lib/organisms/color-swatch-collection/color-swatch-collection.module.js +0 -15
  511. package/esm2015/lib/organisms/icon-explorer/icon-explorer.component.js +0 -30
  512. package/esm2015/lib/organisms/icon-explorer/icon-explorer.helper.js +0 -521
  513. package/esm2015/lib/organisms/icon-explorer/icon-explorer.module.js +0 -17
  514. package/esm2015/lib/organisms/task-list/task-list.component.js +0 -18
  515. package/esm2015/lib/organisms/task-list/task-list.module.js +0 -16
  516. package/esm2015/projects/component-library/lib/atoms/atoms.module.js +0 -52
  517. package/esm2015/projects/component-library/lib/atoms/avatar/avatar.component.js +0 -101
  518. package/esm2015/projects/component-library/lib/atoms/avatar/avatar.module.js +0 -16
  519. package/esm2015/projects/component-library/lib/atoms/button/button.component.js +0 -32
  520. package/esm2015/projects/component-library/lib/atoms/button/button.module.js +0 -16
  521. package/esm2015/projects/component-library/lib/atoms/button-round/button-round.component.js +0 -32
  522. package/esm2015/projects/component-library/lib/atoms/button-round/button-round.enum.js +0 -7
  523. package/esm2015/projects/component-library/lib/atoms/button-round/button-round.module.js +0 -15
  524. package/esm2015/projects/component-library/lib/atoms/color-sample/color-sample.component.js +0 -20
  525. package/esm2015/projects/component-library/lib/atoms/color-sample/color-sample.enum.js +0 -26
  526. package/esm2015/projects/component-library/lib/atoms/color-sample/color-sample.module.js +0 -15
  527. package/esm2015/projects/component-library/lib/atoms/description/description.component.js +0 -18
  528. package/esm2015/projects/component-library/lib/atoms/description/description.module.js +0 -15
  529. package/esm2015/projects/component-library/lib/atoms/dropdown/dropdown.component.js +0 -16
  530. package/esm2015/projects/component-library/lib/atoms/dropdown/dropdown.module.js +0 -18
  531. package/esm2015/projects/component-library/lib/atoms/h1/h1.component.js +0 -21
  532. package/esm2015/projects/component-library/lib/atoms/h1/h1.module.js +0 -15
  533. package/esm2015/projects/component-library/lib/atoms/h2/h2.component.js +0 -21
  534. package/esm2015/projects/component-library/lib/atoms/h2/h2.module.js +0 -15
  535. package/esm2015/projects/component-library/lib/atoms/h3/h3.component.js +0 -21
  536. package/esm2015/projects/component-library/lib/atoms/h3/h3.module.js +0 -15
  537. package/esm2015/projects/component-library/lib/atoms/h4/h4.component.js +0 -21
  538. package/esm2015/projects/component-library/lib/atoms/h4/h4.module.js +0 -15
  539. package/esm2015/projects/component-library/lib/atoms/h5/h5.component.js +0 -21
  540. package/esm2015/projects/component-library/lib/atoms/h5/h5.module.js +0 -15
  541. package/esm2015/projects/component-library/lib/atoms/icon/icon.component.js +0 -21
  542. package/esm2015/projects/component-library/lib/atoms/icon/icon.enum.js +0 -75
  543. package/esm2015/projects/component-library/lib/atoms/icon/icon.module.js +0 -15
  544. package/esm2015/projects/component-library/lib/atoms/icon-wrapper/icon-wrapper.component.js +0 -21
  545. package/esm2015/projects/component-library/lib/atoms/icon-wrapper/icon-wrapper.module.js +0 -15
  546. package/esm2015/projects/component-library/lib/atoms/input-text/input-text.component.js +0 -30
  547. package/esm2015/projects/component-library/lib/atoms/input-text/input-text.module.js +0 -14
  548. package/esm2015/projects/component-library/lib/atoms/list-title/list-title.component.js +0 -18
  549. package/esm2015/projects/component-library/lib/atoms/list-title/list-title.module.js +0 -15
  550. package/esm2015/projects/component-library/lib/atoms/more-dropdown/more-actions.model.js +0 -1
  551. package/esm2015/projects/component-library/lib/atoms/more-dropdown/more-dropdown.component.js +0 -20
  552. package/esm2015/projects/component-library/lib/atoms/more-dropdown/more-dropdown.module.js +0 -17
  553. package/esm2015/projects/component-library/lib/atoms/paragraph/paragraph.component.js +0 -21
  554. package/esm2015/projects/component-library/lib/atoms/paragraph/paragraph.module.js +0 -15
  555. package/esm2015/projects/component-library/lib/atoms/pill/pill.component.js +0 -37
  556. package/esm2015/projects/component-library/lib/atoms/pill/pill.model.js +0 -1
  557. package/esm2015/projects/component-library/lib/atoms/pill/pill.module.js +0 -18
  558. package/esm2015/projects/component-library/lib/atoms/task-icon/task-icon.component.js +0 -18
  559. package/esm2015/projects/component-library/lib/atoms/task-icon/task-icon.module.js +0 -15
  560. package/esm2015/projects/component-library/lib/atoms/time-stamp/time-stamp.component.js +0 -18
  561. package/esm2015/projects/component-library/lib/atoms/time-stamp/time-stamp.module.js +0 -15
  562. package/esm2015/projects/component-library/lib/molecules/color-swatch/color-swatch.component.js +0 -29
  563. package/esm2015/projects/component-library/lib/molecules/color-swatch/color-swatch.model.js +0 -1
  564. package/esm2015/projects/component-library/lib/molecules/color-swatch/color-swatch.module.js +0 -23
  565. package/esm2015/projects/component-library/lib/molecules/icon-swatch/icon-swatch.component.js +0 -26
  566. package/esm2015/projects/component-library/lib/molecules/icon-swatch/icon-swatch.model.js +0 -3
  567. package/esm2015/projects/component-library/lib/molecules/icon-swatch/icon-swatch.module.js +0 -25
  568. package/esm2015/projects/component-library/lib/molecules/molecules.module.js +0 -41
  569. package/esm2015/projects/component-library/lib/molecules/note/note.component.js +0 -33
  570. package/esm2015/projects/component-library/lib/molecules/note/note.module.js +0 -20
  571. package/esm2015/projects/component-library/lib/molecules/pills/pills.component.js +0 -33
  572. package/esm2015/projects/component-library/lib/molecules/pills/pills.module.js +0 -21
  573. package/esm2015/projects/component-library/lib/molecules/task/task.component.js +0 -25
  574. package/esm2015/projects/component-library/lib/molecules/task/task.model.js +0 -1
  575. package/esm2015/projects/component-library/lib/molecules/task/task.module.js +0 -27
  576. package/esm2015/projects/component-library/lib/organisms/color-swatch-collection/color-swatch-collection.component.js +0 -19
  577. package/esm2015/projects/component-library/lib/organisms/color-swatch-collection/color-swatch-collection.module.js +0 -15
  578. package/esm2015/projects/component-library/lib/organisms/icon-explorer/icon-explorer.component.js +0 -30
  579. package/esm2015/projects/component-library/lib/organisms/icon-explorer/icon-explorer.helper.js +0 -521
  580. package/esm2015/projects/component-library/lib/organisms/icon-explorer/icon-explorer.module.js +0 -17
  581. package/esm2015/projects/component-library/lib/organisms/task-list/task-list.component.js +0 -18
  582. package/esm2015/projects/component-library/lib/organisms/task-list/task-list.module.js +0 -16
  583. package/esm2015/projects/component-library/public-api.js +0 -49
  584. package/esm2015/projects/component-library/symphony-talent-component-library-projects-component-library.js +0 -24
  585. package/esm2015/public-api.js +0 -49
  586. package/esm2015/symphony-talent-component-library.js +0 -24
  587. package/fesm2015/symphony-talent-component-library-projects-component-library.js +0 -1629
  588. package/fesm2015/symphony-talent-component-library-projects-component-library.js.map +0 -1
  589. package/fesm2015/symphony-talent-component-library.js +0 -1629
  590. package/fesm2015/symphony-talent-component-library.js.map +0 -1
  591. package/lib/atoms/button-round/button-round.component.d.ts +0 -11
  592. package/lib/atoms/button-round/button-round.enum.d.ts +0 -5
  593. package/lib/atoms/button-round/button-round.module.d.ts +0 -2
  594. package/lib/atoms/description/description.component.d.ts +0 -6
  595. package/lib/atoms/description/description.module.d.ts +0 -2
  596. package/lib/atoms/dropdown/dropdown.component.d.ts +0 -5
  597. package/lib/atoms/dropdown/dropdown.module.d.ts +0 -2
  598. package/lib/atoms/list-title/list-title.component.d.ts +0 -6
  599. package/lib/atoms/list-title/list-title.module.d.ts +0 -2
  600. package/lib/atoms/more-dropdown/more-actions.model.d.ts +0 -3
  601. package/lib/atoms/more-dropdown/more-dropdown.component.d.ts +0 -8
  602. package/lib/atoms/more-dropdown/more-dropdown.module.d.ts +0 -2
  603. package/lib/atoms/time-stamp/time-stamp.component.d.ts +0 -6
  604. package/lib/atoms/time-stamp/time-stamp.module.d.ts +0 -2
  605. package/lib/organisms/color-swatch-collection/color-swatch-collection.component.d.ts +0 -7
  606. package/lib/organisms/color-swatch-collection/color-swatch-collection.module.d.ts +0 -2
  607. package/lib/organisms/icon-explorer/icon-explorer.module.d.ts +0 -2
  608. package/projects/component-library/lib/atoms/button-round/button-round.component.d.ts +0 -11
  609. package/projects/component-library/lib/atoms/button-round/button-round.enum.d.ts +0 -5
  610. package/projects/component-library/lib/atoms/button-round/button-round.module.d.ts +0 -2
  611. package/projects/component-library/lib/atoms/description/description.component.d.ts +0 -6
  612. package/projects/component-library/lib/atoms/description/description.module.d.ts +0 -2
  613. package/projects/component-library/lib/atoms/dropdown/dropdown.component.d.ts +0 -5
  614. package/projects/component-library/lib/atoms/dropdown/dropdown.module.d.ts +0 -2
  615. package/projects/component-library/lib/atoms/list-title/list-title.component.d.ts +0 -6
  616. package/projects/component-library/lib/atoms/list-title/list-title.module.d.ts +0 -2
  617. package/projects/component-library/lib/atoms/more-dropdown/more-actions.model.d.ts +0 -3
  618. package/projects/component-library/lib/atoms/more-dropdown/more-dropdown.component.d.ts +0 -8
  619. package/projects/component-library/lib/atoms/more-dropdown/more-dropdown.module.d.ts +0 -2
  620. package/projects/component-library/lib/atoms/time-stamp/time-stamp.component.d.ts +0 -6
  621. package/projects/component-library/lib/atoms/time-stamp/time-stamp.module.d.ts +0 -2
  622. package/projects/component-library/lib/organisms/color-swatch-collection/color-swatch-collection.component.d.ts +0 -7
  623. package/projects/component-library/lib/organisms/color-swatch-collection/color-swatch-collection.module.d.ts +0 -2
  624. package/projects/component-library/lib/organisms/icon-explorer/icon-explorer.module.d.ts +0 -2
  625. package/projects/component-library/symphony-talent-component-library-projects-component-library.metadata.json +0 -1
  626. package/symphony-talent-component-library.metadata.json +0 -1
@@ -1,1629 +0,0 @@
1
- import { __decorate } from 'tslib';
2
- import { EventEmitter, Input, Output, Component, NgModule, ViewEncapsulation } from '@angular/core';
3
- import { CommonModule, SlicePipe } from '@angular/common';
4
- import { BsDropdownModule } from 'ngx-bootstrap/dropdown';
5
- import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
6
- import { TooltipModule } from 'ngx-bootstrap/tooltip';
7
-
8
- let ButtonComponent = class ButtonComponent {
9
- constructor() {
10
- this.clicked = new EventEmitter();
11
- }
12
- ngOnInit() { }
13
- onClick() {
14
- this.clicked.emit(this.text);
15
- }
16
- };
17
- __decorate([
18
- Input()
19
- ], ButtonComponent.prototype, "text", void 0);
20
- __decorate([
21
- Input()
22
- ], ButtonComponent.prototype, "disabled", void 0);
23
- __decorate([
24
- Input()
25
- ], ButtonComponent.prototype, "isSecondary", void 0);
26
- __decorate([
27
- Output()
28
- ], ButtonComponent.prototype, "clicked", void 0);
29
- ButtonComponent = __decorate([
30
- Component({
31
- selector: 'symphony-button',
32
- template: "<button class=\"btn\" \n[ngClass]=\"{'btn-secondary': isSecondary, 'btn-primary': !isSecondary }\"\n(click)=\"onClick()\" [disabled]=\"disabled\">{{ text }}</button>",
33
- styles: ["button,button:focus{outline:none}button:disabled{cursor:not-allowed;opacity:.3}.btn{border-radius:30px;height:60px;min-width:140px;padding-left:40px;padding-right:40px}.btn:focus{outline:none}.btn:disabled{opacity:.3}.btn-primary{background:#000;border:1px solid #000;color:#fff}.btn-secondary{background:#fff;border:1px solid #000;color:#000}"]
34
- })
35
- ], ButtonComponent);
36
-
37
- let ButtonModule = class ButtonModule {
38
- };
39
- ButtonModule = __decorate([
40
- NgModule({
41
- declarations: [ButtonComponent],
42
- imports: [CommonModule],
43
- providers: [],
44
- exports: [ButtonComponent],
45
- })
46
- ], ButtonModule);
47
-
48
- let PillComponent = class PillComponent {
49
- constructor() {
50
- this.removePill = new EventEmitter();
51
- }
52
- ngOnInit() {
53
- }
54
- onRemoveClick() {
55
- this.removePill.emit(this.pillLabel);
56
- }
57
- };
58
- __decorate([
59
- Input()
60
- ], PillComponent.prototype, "pillLabel", void 0);
61
- __decorate([
62
- Input()
63
- ], PillComponent.prototype, "isInverse", void 0);
64
- __decorate([
65
- Input()
66
- ], PillComponent.prototype, "hasClose", void 0);
67
- __decorate([
68
- Input()
69
- ], PillComponent.prototype, "tooltipLabel", void 0);
70
- __decorate([
71
- Output()
72
- ], PillComponent.prototype, "removePill", void 0);
73
- PillComponent = __decorate([
74
- Component({
75
- selector: 'symphony-pill',
76
- template: "<span *ngIf=\"tooltipLabel\"\n class=\"sfx-d-inline-block sfx-pill-item\"\n [ngClass]=\"{'inverse-pill': isInverse }\"\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=\"glyphicon glyphicon-remove 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 >\n <i *ngIf=\"hasClose\" (click)=\"onRemoveClick()\"\n class=\"glyphicon glyphicon-remove sfx-cursor-pointer\"\n ></i>\n {{ pillLabel }}\n</span>",
77
- encapsulation: ViewEncapsulation.None,
78
- styles: [".sfx-pill-item{background-color:#f1f1f1;border-radius:25px;color:#000;font-weight:600;margin-right:10px;margin-top:10px;padding:10px 20px;text-align:center}.sfx-pill-item.inverse-pill{background-color:#000;color:#fff}.sfx-pill-item i{font-size:12px;position:relative;top:2px}.sfx-pill-item:hover{background-color:#000;color:#fff}.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}"]
79
- })
80
- ], PillComponent);
81
-
82
- let TaskIconComponent = class TaskIconComponent {
83
- constructor() { }
84
- ngOnInit() { }
85
- };
86
- __decorate([
87
- Input()
88
- ], TaskIconComponent.prototype, "isComplete", void 0);
89
- TaskIconComponent = __decorate([
90
- Component({
91
- selector: 'symphony-task-icon',
92
- 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 'fa-clipboard': !isComplete,\n 'fa-clipboard-check': isComplete\n }\"\n ></i>\n</div>\n",
93
- styles: [".task-circle{border-radius:50%;height:50px;width:50px}.task-circle .fa-solid{color:#fff;font-size:20px;left:17px;position:relative;top:15px}.task-complete{background-color:#00d56b}.task-incomplete{background-color:#d9d9d9}"]
94
- })
95
- ], TaskIconComponent);
96
-
97
- let TaskIconModule = class TaskIconModule {
98
- };
99
- TaskIconModule = __decorate([
100
- NgModule({
101
- declarations: [TaskIconComponent],
102
- imports: [CommonModule],
103
- exports: [TaskIconComponent],
104
- })
105
- ], TaskIconModule);
106
-
107
- let InputTextComponent = class InputTextComponent {
108
- constructor() {
109
- this.placeholder = '';
110
- this.textChange = new EventEmitter();
111
- }
112
- ngOnInit() { }
113
- onTextChange(event) {
114
- this.textChange.emit(event.target.value);
115
- }
116
- };
117
- __decorate([
118
- Input()
119
- ], InputTextComponent.prototype, "placeholder", void 0);
120
- __decorate([
121
- Input()
122
- ], InputTextComponent.prototype, "icon", void 0);
123
- __decorate([
124
- Output()
125
- ], InputTextComponent.prototype, "textChange", void 0);
126
- InputTextComponent = __decorate([
127
- Component({
128
- selector: 'symphony-input',
129
- template: "<div class=\"search-wrap\">\n <label for=\"keyword-search\" class=\"visuallyhidden\">Search: </label>\n <input\n type=\"text\"\n name=\"keyword-search\"\n class=\"keyword-search\"\n placeholder=\"{{ placeholder }}\"\n (keyup)=\"onTextChange($event)\"\n />\n <i *ngIf=\"icon\" class=\"{{ icon }}\"></i>\n</div>\n",
130
- styles: [".visuallyhidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.search-wrap{position:relative}.search-wrap .keyword-search{border:1px solid #d0d0d0;border-radius:4px;font-family:neuzeit-grotesk,sans-serif!important;line-height:25px;padding:7px 15px;width:300px}.search-wrap .keyword-search::-moz-placeholder{color:#bababa}.search-wrap .keyword-search:-ms-input-placeholder{color:#bababa}.search-wrap .keyword-search::placeholder{color:#bababa}.search-wrap .keyword-search:focus{border-color:#464646}.search-wrap .keyword-search:focus-visible{outline:none}.search-wrap .fa-solid{font-size:20px;position:relative;right:30px;top:3px}"]
131
- })
132
- ], InputTextComponent);
133
-
134
- let InputTextModule = class InputTextModule {
135
- };
136
- InputTextModule = __decorate([
137
- NgModule({
138
- declarations: [InputTextComponent],
139
- imports: [CommonModule],
140
- })
141
- ], InputTextModule);
142
-
143
- let ColorSampleComponent = class ColorSampleComponent {
144
- constructor() { }
145
- ngOnInit() {
146
- this.bgColor = this.color;
147
- }
148
- };
149
- __decorate([
150
- Input()
151
- ], ColorSampleComponent.prototype, "color", void 0);
152
- ColorSampleComponent = __decorate([
153
- Component({
154
- selector: 'symphony-color-sample',
155
- 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",
156
- 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}"]
157
- })
158
- ], ColorSampleComponent);
159
-
160
- let ColorSampleModule = class ColorSampleModule {
161
- };
162
- ColorSampleModule = __decorate([
163
- NgModule({
164
- declarations: [ColorSampleComponent],
165
- imports: [CommonModule],
166
- exports: [ColorSampleComponent],
167
- })
168
- ], ColorSampleModule);
169
-
170
- let H2Component = class H2Component {
171
- constructor() { }
172
- ngOnInit() { }
173
- };
174
- __decorate([
175
- Input()
176
- ], H2Component.prototype, "text", void 0);
177
- __decorate([
178
- Input()
179
- ], H2Component.prototype, "isSecondary", void 0);
180
- H2Component = __decorate([
181
- Component({
182
- selector: 'symphony-h2',
183
- template: "<h2 [ngClass]=\"{ 'h2-secondary': isSecondary, 'h2-primary': !isSecondary }\">\n {{ text }}\n <ng-content></ng-content>\n</h2>\n",
184
- styles: [".h2-primary,.h2-secondary{color:#000;letter-spacing:-2px;line-height:40px;margin-bottom:0;margin-top:0}.h2-secondary{color:#fff}"]
185
- })
186
- ], H2Component);
187
-
188
- let H2Module = class H2Module {
189
- };
190
- H2Module = __decorate([
191
- NgModule({
192
- declarations: [H2Component],
193
- imports: [CommonModule],
194
- exports: [H2Component],
195
- })
196
- ], H2Module);
197
-
198
- let H3Component = class H3Component {
199
- constructor() { }
200
- ngOnInit() { }
201
- };
202
- __decorate([
203
- Input()
204
- ], H3Component.prototype, "text", void 0);
205
- __decorate([
206
- Input()
207
- ], H3Component.prototype, "isSecondary", void 0);
208
- H3Component = __decorate([
209
- Component({
210
- selector: 'symphony-h3',
211
- template: "<h3 [ngClass]=\"{ 'h3-secondary': isSecondary, 'h3-primary': !isSecondary }\">\n {{ text }}\n <ng-content></ng-content>\n</h3>\n",
212
- styles: [".h3-primary,.h3-secondary{color:#000;letter-spacing:-1px;line-height:30px;margin-bottom:0;margin-top:0}.h3-secondary{color:#fff}"]
213
- })
214
- ], H3Component);
215
-
216
- let H3Module = class H3Module {
217
- };
218
- H3Module = __decorate([
219
- NgModule({
220
- declarations: [H3Component],
221
- imports: [CommonModule],
222
- exports: [H3Component],
223
- })
224
- ], H3Module);
225
-
226
- let H4Component = class H4Component {
227
- constructor() { }
228
- ngOnInit() { }
229
- };
230
- __decorate([
231
- Input()
232
- ], H4Component.prototype, "text", void 0);
233
- __decorate([
234
- Input()
235
- ], H4Component.prototype, "isSecondary", void 0);
236
- H4Component = __decorate([
237
- Component({
238
- selector: 'symphony-h4',
239
- template: "<h4 [ngClass]=\"{ 'h4-secondary': isSecondary, 'h4-primary': !isSecondary }\">\n {{ text }}\n <ng-content></ng-content>\n</h4>\n",
240
- styles: [".h4-primary,.h4-secondary{color:#000;letter-spacing:-1px;line-height:20px;margin-bottom:0;margin-top:0}.h4-secondary{color:#fff}"]
241
- })
242
- ], H4Component);
243
-
244
- let H4Module = class H4Module {
245
- };
246
- H4Module = __decorate([
247
- NgModule({
248
- declarations: [H4Component],
249
- imports: [CommonModule],
250
- exports: [H4Component],
251
- })
252
- ], H4Module);
253
-
254
- let H1Component = class H1Component {
255
- constructor() { }
256
- ngOnInit() { }
257
- };
258
- __decorate([
259
- Input()
260
- ], H1Component.prototype, "text", void 0);
261
- __decorate([
262
- Input()
263
- ], H1Component.prototype, "isSecondary", void 0);
264
- H1Component = __decorate([
265
- Component({
266
- selector: 'symphony-h1',
267
- template: "<h1\n [ngClass]=\"{\n 'h1-secondary': isSecondary,\n 'h1-primary': !isSecondary\n }\"\n>\n {{ text }}\n <ng-content></ng-content>\n</h1>\n",
268
- styles: [".h1-primary,.h1-secondary{color:#000;letter-spacing:-2px;line-height:50px;margin-bottom:0;margin-top:0}.h1-secondary{color:#fff}"]
269
- })
270
- ], H1Component);
271
-
272
- let H1Module = class H1Module {
273
- };
274
- H1Module = __decorate([
275
- NgModule({
276
- declarations: [H1Component],
277
- imports: [CommonModule],
278
- exports: [H1Component],
279
- })
280
- ], H1Module);
281
-
282
- let ParagraphComponent = class ParagraphComponent {
283
- constructor() { }
284
- ngOnInit() { }
285
- };
286
- __decorate([
287
- Input()
288
- ], ParagraphComponent.prototype, "text", void 0);
289
- __decorate([
290
- Input()
291
- ], ParagraphComponent.prototype, "isSecondary", void 0);
292
- ParagraphComponent = __decorate([
293
- Component({
294
- selector: 'symphony-paragraph',
295
- 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",
296
- styles: [".body-copy-primary,.body-copy-secondary{color:#000;font-family:neuzeit-grotesk,sans-serif!important;font-size:14px;line-height:20px;margin-bottom:0}.body-copy-secondary{color:#fff}"]
297
- })
298
- ], ParagraphComponent);
299
-
300
- let ParagraphModule = class ParagraphModule {
301
- };
302
- ParagraphModule = __decorate([
303
- NgModule({
304
- declarations: [ParagraphComponent],
305
- imports: [CommonModule],
306
- exports: [ParagraphComponent],
307
- })
308
- ], ParagraphModule);
309
-
310
- let H5Component = class H5Component {
311
- constructor() { }
312
- ngOnInit() { }
313
- };
314
- __decorate([
315
- Input()
316
- ], H5Component.prototype, "text", void 0);
317
- __decorate([
318
- Input()
319
- ], H5Component.prototype, "isSecondary", void 0);
320
- H5Component = __decorate([
321
- Component({
322
- selector: 'symphony-h5',
323
- template: "<h5\n [ngClass]=\"{\n 'h5-secondary': isSecondary,\n 'h5-primary': !isSecondary\n }\"\n>\n {{ text }}\n <ng-content></ng-content>\n</h5>\n",
324
- styles: [".h5-primary,.h5-secondary{color:#000;font-size:14px;line-height:20px;margin-bottom:0;margin-top:0}.h5-secondary{color:#fff}"]
325
- })
326
- ], H5Component);
327
-
328
- let H5Module = class H5Module {
329
- };
330
- H5Module = __decorate([
331
- NgModule({
332
- declarations: [H5Component],
333
- imports: [CommonModule],
334
- exports: [H5Component],
335
- })
336
- ], H5Module);
337
-
338
- let IconComponent = class IconComponent {
339
- constructor() { }
340
- ngOnInit() { }
341
- };
342
- __decorate([
343
- Input()
344
- ], IconComponent.prototype, "icon", void 0);
345
- __decorate([
346
- Input()
347
- ], IconComponent.prototype, "isSecondary", void 0);
348
- IconComponent = __decorate([
349
- Component({
350
- selector: 'symphony-icon',
351
- template: "<i\n [class]=\"icon\"\n [ngClass]=\"{\n 'icon-secondary': isSecondary,\n 'icon-primary': !isSecondary\n }\"\n></i>\n",
352
- styles: [".icon-secondary{color:#fff}i{height:18px;width:18px}"]
353
- })
354
- ], IconComponent);
355
-
356
- let IconModule = class IconModule {
357
- };
358
- IconModule = __decorate([
359
- NgModule({
360
- declarations: [IconComponent],
361
- imports: [CommonModule],
362
- exports: [IconComponent],
363
- })
364
- ], IconModule);
365
-
366
- let AvatarComponent = class AvatarComponent {
367
- constructor(sp) {
368
- this.sp = sp;
369
- }
370
- ngOnInit() {
371
- this.initials = '';
372
- this.firstInitial = '';
373
- this.bgColor = '';
374
- if (this.firstName) {
375
- this.initials += this.sp.transform(this.firstName, 0, 1);
376
- this.firstInitial = this.sp
377
- .transform(this.firstName, 0, 1)
378
- .toLocaleLowerCase();
379
- }
380
- if (this.lastName) {
381
- this.initials += this.sp.transform(this.lastName, 0, 1);
382
- }
383
- this.bgColor = this.getColor(this.firstInitial);
384
- }
385
- getColor(character) {
386
- switch (character) {
387
- case 'a':
388
- return '#D0021B';
389
- case 'b':
390
- return '#F5A623';
391
- case 'c':
392
- return '#E4D75C';
393
- case 'd':
394
- return '#8B572A';
395
- case 'e':
396
- return '#579F09';
397
- case 'f':
398
- return '#BD10E0';
399
- case 'g':
400
- return '#9013FE';
401
- case 'h':
402
- return '#4A90E2';
403
- case 'i':
404
- return '#39B196';
405
- case 'j':
406
- return '#4A4A4A';
407
- case 'k':
408
- return '#E84D4D';
409
- case 'l':
410
- return '#E84DC0';
411
- case 'm':
412
- return '#CE950B';
413
- case 'n':
414
- return '#1CCE0B';
415
- case 'o':
416
- return '#1DB1A6';
417
- case 'p':
418
- return '#3724A9';
419
- case 'q':
420
- return '#A9249E';
421
- case 'r':
422
- return '#A9246B';
423
- case 's':
424
- return '#24A97A';
425
- case 't':
426
- return '#1C93B3';
427
- case 'u':
428
- return '#D52424';
429
- case 'v':
430
- return '#A45519';
431
- case 'w':
432
- return '#19A420';
433
- case 'x':
434
- return '#A41963';
435
- case 'y':
436
- return '#CFD00A';
437
- case 'z':
438
- return '#AA0AD0';
439
- default:
440
- return '#000000';
441
- }
442
- }
443
- };
444
- __decorate([
445
- Input()
446
- ], AvatarComponent.prototype, "firstName", void 0);
447
- __decorate([
448
- Input()
449
- ], AvatarComponent.prototype, "lastName", void 0);
450
- __decorate([
451
- Input()
452
- ], AvatarComponent.prototype, "sizePx", void 0);
453
- __decorate([
454
- Input()
455
- ], AvatarComponent.prototype, "fontSizePx", void 0);
456
- AvatarComponent = __decorate([
457
- Component({
458
- selector: 'lib-avatar',
459
- 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",
460
- styles: [".avatar-circle{background:#000;border-radius:50%;height:50px;line-height:50px;width:50px}.avatar-text{color:#fff;text-align:center}"]
461
- })
462
- ], AvatarComponent);
463
-
464
- let AvatarModule = class AvatarModule {
465
- };
466
- AvatarModule = __decorate([
467
- NgModule({
468
- declarations: [AvatarComponent],
469
- imports: [CommonModule],
470
- providers: [SlicePipe],
471
- exports: [AvatarComponent],
472
- })
473
- ], AvatarModule);
474
-
475
- let DescriptionComponent = class DescriptionComponent {
476
- constructor() { }
477
- ngOnInit() { }
478
- };
479
- __decorate([
480
- Input()
481
- ], DescriptionComponent.prototype, "description", void 0);
482
- DescriptionComponent = __decorate([
483
- Component({
484
- selector: 'symphony-description',
485
- template: "<p>{{description}}</p>\n",
486
- styles: ["p{font-size:14px;line-height:29px;margin-bottom:0}"]
487
- })
488
- ], DescriptionComponent);
489
-
490
- let DescriptionModule = class DescriptionModule {
491
- };
492
- DescriptionModule = __decorate([
493
- NgModule({
494
- declarations: [DescriptionComponent],
495
- imports: [CommonModule],
496
- exports: [DescriptionComponent]
497
- })
498
- ], DescriptionModule);
499
-
500
- let DropdownComponent = class DropdownComponent {
501
- constructor() { }
502
- ngOnInit() {
503
- }
504
- };
505
- DropdownComponent = __decorate([
506
- Component({
507
- selector: 'symphony-dropdown',
508
- template: "<div class=\"btn-group\" dropdown>\n <button id=\"button-basic\" dropdownToggle type=\"button\" class=\"btn btn-primary dropdown-toggle\"\n aria-controls=\"dropdown-basic\">\n Button dropdown <span class=\"caret\"></span>\n </button>\n <ul id=\"dropdown-basic\" *dropdownMenu class=\"dropdown-menu\"\n role=\"menu\" aria-labelledby=\"button-basic\">\n <li role=\"menuitem\"><a class=\"dropdown-item\" href=\"#\">Action</a></li>\n <li role=\"menuitem\"><a class=\"dropdown-item\" href=\"#\">Another action</a></li>\n <li role=\"menuitem\"><a class=\"dropdown-item\" href=\"#\">Something else here</a></li>\n <li class=\"divider dropdown-divider\"></li>\n <li role=\"menuitem\"><a class=\"dropdown-item\" href=\"#\">Separated link</a>\n </li>\n </ul>\n </div>",
509
- styles: [""]
510
- })
511
- ], DropdownComponent);
512
-
513
- let DropdownModule = class DropdownModule {
514
- };
515
- DropdownModule = __decorate([
516
- NgModule({
517
- declarations: [DropdownComponent],
518
- imports: [CommonModule, BsDropdownModule.forRoot(), BrowserAnimationsModule],
519
- providers: [],
520
- exports: [DropdownComponent],
521
- })
522
- ], DropdownModule);
523
-
524
- let ListTitleComponent = class ListTitleComponent {
525
- constructor() { }
526
- ngOnInit() { }
527
- };
528
- __decorate([
529
- Input()
530
- ], ListTitleComponent.prototype, "listTitle", void 0);
531
- ListTitleComponent = __decorate([
532
- Component({
533
- selector: 'symphony-list-title',
534
- template: "<h3>{{listTitle}}</h3>\n",
535
- styles: ["h3{font-weight:700;letter-spacing:-1px;line-height:29px;margin-bottom:0;margin-top:0}"]
536
- })
537
- ], ListTitleComponent);
538
-
539
- let ListTitleModule = class ListTitleModule {
540
- };
541
- ListTitleModule = __decorate([
542
- NgModule({
543
- declarations: [ListTitleComponent],
544
- imports: [CommonModule],
545
- exports: [ListTitleComponent]
546
- })
547
- ], ListTitleModule);
548
-
549
- let MoreDropdownComponent = class MoreDropdownComponent {
550
- constructor() { }
551
- ngOnInit() {
552
- this.sfxMoreActions = this.moreActions;
553
- }
554
- };
555
- __decorate([
556
- Input()
557
- ], MoreDropdownComponent.prototype, "moreActions", void 0);
558
- MoreDropdownComponent = __decorate([
559
- Component({
560
- selector: 'symphony-more-dropdown',
561
- template: "<div style=\"margin-left: 300px;\" class=\"btn-group\" dropdown>\n <button id=\"button-basic\" dropdownToggle type=\"button\" class=\"btn dropdown-toggle\"\n aria-controls=\"dropdown-basic\">\n <i class=\"glyphicon glyphicon-option-vertical\"></i>\n </button>\n <ul id=\"dropdown-basic\" *dropdownMenu class=\"dropdown-menu\"\n role=\"menu\" aria-labelledby=\"button-basic\">\n <li role=\"menuitem\" *ngFor=\"let moreActions of sfxMoreActions\">\n <a class=\"dropdown-item\" href=\"#\">{{moreActions.dropItemName}}</a>\n </li>\n </ul>\n </div>",
562
- styles: [".btn-group button.dropdown-toggle.btn{background:#fff;border-radius:50%;box-shadow:none;color:#000;font-size:24px;height:40px;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;overflow:inherit;padding-bottom:20px;padding-top:20px;right:7px}.btn-group .dropdown-menu li a.dropdown-item{color:#000;font-weight:600;padding:10px 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:8px;top:-13px;transform:rotate(180deg)}.btn-group.open button.dropdown-toggle.btn{background:#000;color:#fff}"]
563
- })
564
- ], MoreDropdownComponent);
565
-
566
- let MoreDropdownModule = class MoreDropdownModule {
567
- };
568
- MoreDropdownModule = __decorate([
569
- NgModule({
570
- declarations: [MoreDropdownComponent],
571
- imports: [CommonModule, BsDropdownModule.forRoot(), BrowserAnimationsModule],
572
- exports: [MoreDropdownComponent]
573
- })
574
- ], MoreDropdownModule);
575
-
576
- let PillModule = class PillModule {
577
- };
578
- PillModule = __decorate([
579
- NgModule({
580
- declarations: [PillComponent],
581
- imports: [
582
- CommonModule, TooltipModule.forRoot()
583
- ],
584
- exports: [PillComponent],
585
- })
586
- ], PillModule);
587
-
588
- let TimeStampComponent = class TimeStampComponent {
589
- constructor() { }
590
- ngOnInit() { }
591
- };
592
- __decorate([
593
- Input()
594
- ], TimeStampComponent.prototype, "timeStamp", void 0);
595
- TimeStampComponent = __decorate([
596
- Component({
597
- selector: 'symphony-time-stamp',
598
- template: "<p>{{timeStamp}}</p>\n",
599
- styles: ["p{font-size:14px;letter-spacing:-1px;line-height:29px;margin-bottom:0}"]
600
- })
601
- ], TimeStampComponent);
602
-
603
- let TimeStampModule = class TimeStampModule {
604
- };
605
- TimeStampModule = __decorate([
606
- NgModule({
607
- declarations: [TimeStampComponent],
608
- imports: [CommonModule],
609
- exports: [TimeStampComponent]
610
- })
611
- ], TimeStampModule);
612
-
613
- let ButtonRoundComponent = class ButtonRoundComponent {
614
- constructor() {
615
- this.clicked = new EventEmitter();
616
- }
617
- ngOnInit() { }
618
- onClick() {
619
- this.clicked.emit('Clicked');
620
- }
621
- };
622
- __decorate([
623
- Input()
624
- ], ButtonRoundComponent.prototype, "icon", void 0);
625
- __decorate([
626
- Input()
627
- ], ButtonRoundComponent.prototype, "disabled", void 0);
628
- __decorate([
629
- Input()
630
- ], ButtonRoundComponent.prototype, "isSecondary", void 0);
631
- __decorate([
632
- Output()
633
- ], ButtonRoundComponent.prototype, "clicked", void 0);
634
- ButtonRoundComponent = __decorate([
635
- Component({
636
- selector: 'symphony-button-round',
637
- template: "<button\n class=\"btn\"\n [ngClass]=\"{\n 'btn-secondary': isSecondary,\n 'btn-primary': !isSecondary\n }\"\n (click)=\"onClick()\"\n [disabled]=\"disabled\"\n>\n <i class=\"fas\" [ngClass]=\"icon\"></i>\n</button>\n",
638
- styles: ["button{border-radius:50%;height:40px;outline:none;width:40px}button i{font-size:10px}button:focus{outline:none}button:disabled{cursor:not-allowed;opacity:.3}button:disabled:hover{background-color:#fff;border:1px solid #000;color:#000}.btn-primary{background:#fff;border:1px solid #000;color:#000}.btn-primary:hover,.btn-secondary{background:#000;color:#fff}.btn-secondary{border:1px solid #fff}.btn-secondary:hover{background:#fff;color:#000}.bg-black{background-color:#000;padding:10px}"]
639
- })
640
- ], ButtonRoundComponent);
641
-
642
- let ButtonRoundModule = class ButtonRoundModule {
643
- };
644
- ButtonRoundModule = __decorate([
645
- NgModule({
646
- declarations: [ButtonRoundComponent],
647
- imports: [CommonModule],
648
- exports: [ButtonRoundComponent],
649
- })
650
- ], ButtonRoundModule);
651
-
652
- var Icons;
653
- (function (Icons) {
654
- Icons["MOREOPTIONS"] = "si-more-options";
655
- Icons["ADD"] = "si-add";
656
- Icons["ACTIVITY"] = "si-activity";
657
- Icons["ARROWHIDEREVEAL"] = "si-arrow-hide-reveal";
658
- Icons["ARROWNEXT"] = "si-arrow-next";
659
- Icons["ARROWPREV"] = "si-arrow-prev";
660
- Icons["CLOSEMODAL"] = "si-close-modal";
661
- Icons["COLLAPSE"] = "si-collapse";
662
- Icons["DAYMODE"] = "si-daymode";
663
- Icons["DELETE"] = "si-delete";
664
- Icons["DOCUMENT"] = "si-document";
665
- Icons["DOWNLOAD"] = "si-download";
666
- Icons["EDIT"] = "si-edit";
667
- Icons["EMAILDRIP"] = "si-email-drip";
668
- Icons["EMAILOPEN"] = "si-email-open";
669
- Icons["EMAILSEND"] = "si-email-send";
670
- Icons["EXPAND"] = "si-expand";
671
- Icons["FAVORITE"] = "si-favorite";
672
- Icons["FEEDBACKMAYBE"] = "si-feedback-maybe";
673
- Icons["FEEDBACKNO"] = "si-feedback-no";
674
- Icons["FEEDBACKYES"] = "si-feedback-yes";
675
- Icons["FOLDERMULTIPLE"] = "si-folder-multiple";
676
- Icons["INCLUDE"] = "si-include";
677
- Icons["INFO"] = "si-info";
678
- Icons["INTERVIEW"] = "si-interview";
679
- Icons["LINK"] = "si-link";
680
- Icons["LOCATION"] = "si-location";
681
- Icons["MENUALL"] = "si-menu-all";
682
- Icons["MENUANALYTICS"] = "si-menu-analytics";
683
- Icons["MENUASSETS"] = "si-menu-assets";
684
- Icons["MENUCAMPAIGNS"] = "si-menu-campaigns";
685
- Icons["MENUCONTACT"] = "si-menu-contact";
686
- Icons["MENUCONTENT"] = "si-menu-content";
687
- Icons["MENUDASHBOARD"] = "si-menu-dashboard";
688
- Icons["MENUEVENTS"] = "si-menu-events";
689
- Icons["MENUFOLDERS"] = "si-menu-folders";
690
- Icons["MENUJOBS"] = "si-menu-jobs";
691
- Icons["MENURETURN"] = "si-menu-return";
692
- Icons["MENUWORKFLOWS"] = "si-menu-workflows";
693
- Icons["MERGE"] = "si-merge";
694
- Icons["MOVE"] = "si-move";
695
- Icons["NIGHTMODE"] = "si-nightmode";
696
- Icons["NOTIFICATION"] = "si-notification";
697
- Icons["ORGANIZECOLUMNS"] = "si-organize-columns";
698
- Icons["ORGANIZECONTACTS"] = "si-organize-contacts";
699
- Icons["PENDINGINCOMPLETE"] = "si-pending-incomplete";
700
- Icons["PHONENUMBER"] = "si-phone-number";
701
- Icons["PREVIEW"] = "si-preview";
702
- Icons["PROMOTE"] = "si-promote";
703
- Icons["REFRESH"] = "si-refresh";
704
- Icons["REMOVE"] = "si-remove";
705
- Icons["EXCLUDE"] = "si-exclude";
706
- Icons["RESULTSFILTERS"] = "si-results-filters";
707
- Icons["REVIEW"] = "si-review";
708
- Icons["SALARY"] = "si-salary";
709
- Icons["SAVE"] = "si-save";
710
- Icons["SEARCHADVANCED"] = "si-search-advanced";
711
- Icons["SEARCHCLEAR"] = "si-search-clear";
712
- Icons["SEARCHNEW"] = "si-search-new";
713
- Icons["SETTINGSMART"] = "si-settings-smart";
714
- Icons["SMS"] = "si-sms";
715
- Icons["SORTMINI"] = "si-sort-mini";
716
- Icons["STATUS"] = "si-status";
717
- Icons["SYSTEMACTION"] = "si-system-action";
718
- Icons["TASKCOMPLETED"] = "si-task-completed";
719
- Icons["TASKOPEN"] = "si-task-open";
720
- Icons["TIMEFRAME"] = "si-timeframe";
721
- Icons["TIMELINE"] = "si-timeline";
722
- Icons["UPLOAD"] = "si-upload";
723
- Icons["USERMULTIPLE"] = "si-user-multiple";
724
- Icons["USER"] = "si-user";
725
- })(Icons || (Icons = {}));
726
-
727
- let IconWrapperComponent = class IconWrapperComponent {
728
- constructor() {
729
- this.Icons = Icons;
730
- }
731
- ngOnInit() { }
732
- };
733
- __decorate([
734
- Input()
735
- ], IconWrapperComponent.prototype, "isInverse", void 0);
736
- IconWrapperComponent = __decorate([
737
- Component({
738
- selector: 'symphony-icon-wrapper',
739
- template: "<div class=\"icon-wrapper\" [ngClass]=\"{ 'is-inverse': isInverse }\">\n <ng-content></ng-content>\n</div>\n",
740
- styles: [".icon-wrapper{border:1px solid #000;border-radius:50%;height:40px;padding-top:11px;width:40px}.icon-wrapper.is-inverse,.icon-wrapper:hover{background:#000;color:#fff}.icon-wrapper.is-inverse:hover{background:#fff;color:#000}"]
741
- })
742
- ], IconWrapperComponent);
743
-
744
- let IconWrapperModule = class IconWrapperModule {
745
- };
746
- IconWrapperModule = __decorate([
747
- NgModule({
748
- declarations: [IconWrapperComponent],
749
- imports: [CommonModule],
750
- exports: [IconWrapperComponent],
751
- })
752
- ], IconWrapperModule);
753
-
754
- let AtomsModule = class AtomsModule {
755
- };
756
- AtomsModule = __decorate([
757
- NgModule({
758
- declarations: [],
759
- imports: [],
760
- exports: [
761
- ButtonModule,
762
- DropdownModule,
763
- MoreDropdownModule,
764
- DescriptionModule,
765
- ListTitleModule,
766
- TimeStampModule,
767
- AvatarModule,
768
- PillModule,
769
- TaskIconModule,
770
- ColorSampleModule,
771
- H1Module,
772
- H2Module,
773
- H3Module,
774
- H4Module,
775
- ParagraphModule,
776
- H5Module,
777
- ButtonRoundModule,
778
- IconModule,
779
- IconWrapperModule,
780
- ],
781
- })
782
- ], AtomsModule);
783
-
784
- let PillsComponent = class PillsComponent {
785
- constructor() {
786
- this.removePill = new EventEmitter();
787
- }
788
- ngOnInit() {
789
- }
790
- onRemovePill(event) {
791
- this.removePill.emit(this.pillsList.find(p => p.pillLabel.toLowerCase() === event.toLowerCase()));
792
- }
793
- };
794
- __decorate([
795
- Input()
796
- ], PillsComponent.prototype, "hasClose", void 0);
797
- __decorate([
798
- Input()
799
- ], PillsComponent.prototype, "pillsList", void 0);
800
- __decorate([
801
- Input()
802
- ], PillsComponent.prototype, "hasTooltips", void 0);
803
- __decorate([
804
- Output()
805
- ], PillsComponent.prototype, "removePill", void 0);
806
- PillsComponent = __decorate([
807
- Component({
808
- selector: 'symphony-pills',
809
- 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>",
810
- styles: [".sfx-pills-wrapper{overflow-x:auto;padding-bottom:20px;white-space:nowrap;width:100%}"]
811
- })
812
- ], PillsComponent);
813
-
814
- let PillsModule = class PillsModule {
815
- };
816
- PillsModule = __decorate([
817
- NgModule({
818
- declarations: [PillsComponent],
819
- imports: [
820
- CommonModule,
821
- PillModule
822
- ],
823
- exports: [
824
- PillsComponent
825
- ]
826
- })
827
- ], PillsModule);
828
-
829
- let TaskComponent = class TaskComponent {
830
- constructor() {
831
- this.taskModel = {
832
- assignee: '',
833
- title: '',
834
- dueDate: '',
835
- moreActions: [],
836
- };
837
- }
838
- ngOnInit() { }
839
- };
840
- __decorate([
841
- Input()
842
- ], TaskComponent.prototype, "taskModel", void 0);
843
- TaskComponent = __decorate([
844
- Component({
845
- selector: 'symphony-task',
846
- 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-list-title [listTitle]=\"taskModel.title\"></symphony-list-title>\n <div class=\"time-and-assigned\">\n <symphony-time-stamp\n [timeStamp]=\"taskModel.dueDate\"\n ></symphony-time-stamp>\n <symphony-description\n [description]=\"taskModel.assignee\"\n ></symphony-description>\n </div>\n </div>\n <symphony-more-dropdown\n class=\"task-more-option\"\n *ngIf=\"taskModel.moreActions && taskModel.moreActions.length > 0\"\n [moreActions]=\"taskModel.moreActions\"\n >\n </symphony-more-dropdown>\n</div>\n",
847
- 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-description,.sfx-task symphony-time-stamp{display:inline-block}.sfx-task symphony-time-stamp{margin-right:20px}.sfx-task .time-and-assigned{margin-bottom:-10px}"]
848
- })
849
- ], TaskComponent);
850
-
851
- let TaskModule = class TaskModule {
852
- };
853
- TaskModule = __decorate([
854
- NgModule({
855
- declarations: [TaskComponent],
856
- imports: [
857
- CommonModule,
858
- TaskIconModule,
859
- ListTitleModule,
860
- TimeStampModule,
861
- DescriptionModule,
862
- MoreDropdownModule,
863
- ],
864
- exports: [TaskComponent],
865
- })
866
- ], TaskModule);
867
-
868
- let ColorSwatchComponent = class ColorSwatchComponent {
869
- constructor() {
870
- this.colorSwatchModel = {
871
- colorCode: '',
872
- sassCode: '',
873
- };
874
- }
875
- ngOnInit() {
876
- this.getDescription();
877
- }
878
- getDescription() {
879
- this.description = `${this.colorSwatchModel.colorCode} - ${this.colorSwatchModel.sassCode}`;
880
- return this.description;
881
- }
882
- };
883
- __decorate([
884
- Input()
885
- ], ColorSwatchComponent.prototype, "colorSwatchModel", void 0);
886
- ColorSwatchComponent = __decorate([
887
- Component({
888
- selector: 'symphony-ui-color-explorer',
889
- template: "<div class=\"sfx-ui-color-explorer\">\n <symphony-color-sample\n [color]=\"colorSwatchModel.color\"\n ></symphony-color-sample>\n <symphony-list-title\n [listTitle]=\"colorSwatchModel.colorName\"\n ></symphony-list-title>\n <symphony-description [description]=\"description\"></symphony-description>\n</div>\n",
890
- styles: [""]
891
- })
892
- ], ColorSwatchComponent);
893
-
894
- let ColorSwatchModule = class ColorSwatchModule {
895
- };
896
- ColorSwatchModule = __decorate([
897
- NgModule({
898
- declarations: [ColorSwatchComponent],
899
- imports: [
900
- CommonModule,
901
- ColorSampleModule,
902
- ListTitleModule,
903
- DescriptionModule,
904
- ],
905
- exports: [ColorSwatchComponent],
906
- })
907
- ], ColorSwatchModule);
908
-
909
- let IconSwatchComponent = class IconSwatchComponent {
910
- constructor() {
911
- this.iconSwatchModel = {
912
- iconName: '',
913
- iconClass: '',
914
- };
915
- }
916
- ngOnInit() { }
917
- };
918
- __decorate([
919
- Input()
920
- ], IconSwatchComponent.prototype, "iconSwatchModel", void 0);
921
- __decorate([
922
- Input()
923
- ], IconSwatchComponent.prototype, "isInverse", void 0);
924
- IconSwatchComponent = __decorate([
925
- Component({
926
- selector: 'symphony-icon-swatch',
927
- 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",
928
- 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}"]
929
- })
930
- ], IconSwatchComponent);
931
-
932
- let IconSwatchModule = class IconSwatchModule {
933
- };
934
- IconSwatchModule = __decorate([
935
- NgModule({
936
- declarations: [IconSwatchComponent],
937
- imports: [
938
- CommonModule,
939
- IconModule,
940
- H5Module,
941
- ParagraphModule,
942
- IconWrapperModule,
943
- ],
944
- exports: [IconSwatchComponent],
945
- })
946
- ], IconSwatchModule);
947
-
948
- let NoteComponent = class NoteComponent {
949
- constructor() { }
950
- ngOnInit() { }
951
- };
952
- __decorate([
953
- Input()
954
- ], NoteComponent.prototype, "firstName", void 0);
955
- __decorate([
956
- Input()
957
- ], NoteComponent.prototype, "lastName", void 0);
958
- __decorate([
959
- Input()
960
- ], NoteComponent.prototype, "listTitle", void 0);
961
- __decorate([
962
- Input()
963
- ], NoteComponent.prototype, "timeStamp", void 0);
964
- __decorate([
965
- Input()
966
- ], NoteComponent.prototype, "description", void 0);
967
- __decorate([
968
- Input()
969
- ], NoteComponent.prototype, "moreActions", void 0);
970
- NoteComponent = __decorate([
971
- Component({
972
- selector: 'symphony-note',
973
- template: "<div class=\"sfx-note\">\n <lib-avatar class=\"list-avatar\" [firstName]= firstName [lastName]= lastName></lib-avatar>\n <div class=\"list-content\">\n <symphony-list-title [listTitle]= listTitle></symphony-list-title>\n <symphony-time-stamp [timeStamp]= timeStamp></symphony-time-stamp>\n <symphony-description [description]= description></symphony-description>\n </div>\n <symphony-more-dropdown class=\"list-more-option\" [moreActions]= moreActions></symphony-more-dropdown>\n</div>\n",
974
- 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}"]
975
- })
976
- ], NoteComponent);
977
-
978
- let NoteModule = class NoteModule {
979
- };
980
- NoteModule = __decorate([
981
- NgModule({
982
- declarations: [NoteComponent],
983
- imports: [CommonModule, AvatarModule, ListTitleModule, TimeStampModule, DescriptionModule, MoreDropdownModule],
984
- exports: [NoteComponent]
985
- })
986
- ], NoteModule);
987
-
988
- let MoleculesModule = class MoleculesModule {
989
- };
990
- MoleculesModule = __decorate([
991
- NgModule({
992
- declarations: [],
993
- imports: [
994
- CommonModule,
995
- AvatarModule,
996
- ListTitleModule,
997
- TimeStampModule,
998
- DescriptionModule,
999
- MoreDropdownModule,
1000
- PillsModule,
1001
- TaskModule,
1002
- ColorSwatchModule,
1003
- IconSwatchModule,
1004
- ],
1005
- exports: [
1006
- NoteModule,
1007
- PillsModule,
1008
- TaskModule,
1009
- ColorSwatchModule,
1010
- IconSwatchModule,
1011
- ],
1012
- })
1013
- ], MoleculesModule);
1014
-
1015
- let TaskListComponent = class TaskListComponent {
1016
- constructor() { }
1017
- ngOnInit() { }
1018
- };
1019
- __decorate([
1020
- Input()
1021
- ], TaskListComponent.prototype, "taskList", void 0);
1022
- TaskListComponent = __decorate([
1023
- Component({
1024
- selector: 'symphony-task-list',
1025
- 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",
1026
- styles: [".task-list{border-top:1px solid #d9d9d9}"]
1027
- })
1028
- ], TaskListComponent);
1029
-
1030
- let TaskListModule = class TaskListModule {
1031
- };
1032
- TaskListModule = __decorate([
1033
- NgModule({
1034
- declarations: [TaskListComponent],
1035
- imports: [CommonModule, TaskModule],
1036
- exports: [TaskListComponent],
1037
- })
1038
- ], TaskListModule);
1039
-
1040
- let ColorSwatchCollectionComponent = class ColorSwatchCollectionComponent {
1041
- constructor() { }
1042
- ngOnInit() { }
1043
- };
1044
- __decorate([
1045
- Input()
1046
- ], ColorSwatchCollectionComponent.prototype, "colorList", void 0);
1047
- ColorSwatchCollectionComponent = __decorate([
1048
- Component({
1049
- selector: 'symphony-main-ui-color-swatch',
1050
- 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",
1051
- encapsulation: ViewEncapsulation.None,
1052
- 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}"]
1053
- })
1054
- ], ColorSwatchCollectionComponent);
1055
-
1056
- let ColorSwatchCollectionModule = class ColorSwatchCollectionModule {
1057
- };
1058
- ColorSwatchCollectionModule = __decorate([
1059
- NgModule({
1060
- declarations: [ColorSwatchCollectionComponent],
1061
- imports: [CommonModule, ColorSwatchModule],
1062
- })
1063
- ], ColorSwatchCollectionModule);
1064
-
1065
- class IconExplorerHelper {
1066
- static getAllIcons() {
1067
- let allIcons = [];
1068
- allIcons = allIcons.concat(this.getHasNoBorderIconList());
1069
- allIcons = allIcons.concat(this.getHasBorderIconList());
1070
- allIcons = allIcons.concat(this.getInverseIconList());
1071
- return allIcons;
1072
- }
1073
- static getHasNoBorderIconList() {
1074
- return [
1075
- {
1076
- icon: Icons.MOREOPTIONS,
1077
- iconName: 'MOREOPTIONS',
1078
- iconClass: 'si-more-options',
1079
- hasBorder: false,
1080
- },
1081
- {
1082
- icon: Icons.ADD,
1083
- iconName: 'ADD',
1084
- iconClass: 'si-add',
1085
- hasBorder: false,
1086
- },
1087
- {
1088
- icon: Icons.ACTIVITY,
1089
- iconName: 'ACTIVITY',
1090
- iconClass: 'si-activity',
1091
- hasBorder: false,
1092
- },
1093
- {
1094
- icon: Icons.ARROWHIDEREVEAL,
1095
- iconName: 'ARROWHIDEREVEAL',
1096
- iconClass: 'si-arrow-hide-reveal',
1097
- hasBorder: false,
1098
- },
1099
- {
1100
- icon: Icons.ARROWNEXT,
1101
- iconName: 'ARROWNEXT',
1102
- iconClass: 'si-arrow-next',
1103
- hasBorder: false,
1104
- },
1105
- {
1106
- icon: Icons.ARROWPREV,
1107
- iconName: 'ARROWPREV',
1108
- iconClass: 'si-arrow-prev',
1109
- hasBorder: false,
1110
- },
1111
- {
1112
- icon: Icons.CLOSEMODAL,
1113
- iconName: 'CLOSEMODAL',
1114
- iconClass: 'si-close-modal',
1115
- hasBorder: false,
1116
- },
1117
- {
1118
- icon: Icons.COLLAPSE,
1119
- iconName: 'COLLAPSE',
1120
- iconClass: 'si-collapse',
1121
- hasBorder: false,
1122
- },
1123
- {
1124
- icon: Icons.DAYMODE,
1125
- iconName: 'DAYMODE',
1126
- iconClass: 'si-daymode',
1127
- hasBorder: false,
1128
- },
1129
- {
1130
- icon: Icons.DELETE,
1131
- iconName: 'DELETE',
1132
- iconClass: 'si-delete',
1133
- hasBorder: false,
1134
- },
1135
- {
1136
- icon: Icons.DOCUMENT,
1137
- iconName: 'DOCUMENT',
1138
- iconClass: 'si-document',
1139
- hasBorder: false,
1140
- },
1141
- {
1142
- icon: Icons.DOWNLOAD,
1143
- iconName: 'DOWNLOAD',
1144
- iconClass: 'si-download',
1145
- hasBorder: false,
1146
- },
1147
- {
1148
- icon: Icons.EDIT,
1149
- iconName: 'EDIT',
1150
- iconClass: 'si-edit',
1151
- hasBorder: false,
1152
- },
1153
- {
1154
- icon: Icons.EMAILDRIP,
1155
- iconName: 'EMAILDRIP',
1156
- iconClass: 'si-email-drip',
1157
- hasBorder: false,
1158
- },
1159
- {
1160
- icon: Icons.EMAILOPEN,
1161
- iconName: 'EMAILOPEN',
1162
- iconClass: 'si-email-open',
1163
- hasBorder: false,
1164
- },
1165
- {
1166
- icon: Icons.EMAILSEND,
1167
- iconName: 'EMAILSEND',
1168
- iconClass: 'si-email-send',
1169
- hasBorder: false,
1170
- },
1171
- {
1172
- icon: Icons.EXPAND,
1173
- iconName: 'EXPAND',
1174
- iconClass: 'si-expand',
1175
- hasBorder: false,
1176
- },
1177
- {
1178
- icon: Icons.FAVORITE,
1179
- iconName: 'FAVORITE',
1180
- iconClass: 'si-favorite',
1181
- hasBorder: false,
1182
- },
1183
- {
1184
- icon: Icons.FEEDBACKMAYBE,
1185
- iconName: 'FEEDBACKMAYBE',
1186
- iconClass: 'si-feedback-maybe',
1187
- hasBorder: false,
1188
- },
1189
- {
1190
- icon: Icons.FEEDBACKNO,
1191
- iconName: 'FEEDBACKNO',
1192
- iconClass: 'si-feedback-no',
1193
- hasBorder: false,
1194
- },
1195
- {
1196
- icon: Icons.FEEDBACKYES,
1197
- iconName: 'FEEDBACKYES',
1198
- iconClass: 'si-feedback-yes',
1199
- hasBorder: false,
1200
- },
1201
- {
1202
- icon: Icons.FOLDERMULTIPLE,
1203
- iconName: 'FOLDERMULTIPLE',
1204
- iconClass: 'si-folder-multiple',
1205
- hasBorder: false,
1206
- },
1207
- {
1208
- icon: Icons.INCLUDE,
1209
- iconName: 'INCLUDE',
1210
- iconClass: 'si-include',
1211
- hasBorder: false,
1212
- },
1213
- {
1214
- icon: Icons.INFO,
1215
- iconName: 'INFO',
1216
- iconClass: 'si-info',
1217
- hasBorder: false,
1218
- },
1219
- {
1220
- icon: Icons.INTERVIEW,
1221
- iconName: 'INTERVIEW',
1222
- iconClass: 'si-interview',
1223
- hasBorder: false,
1224
- },
1225
- {
1226
- icon: Icons.LINK,
1227
- iconName: 'LINK',
1228
- iconClass: 'si-link',
1229
- hasBorder: false,
1230
- },
1231
- {
1232
- icon: Icons.LOCATION,
1233
- iconName: 'LOCATION',
1234
- iconClass: 'si-location',
1235
- hasBorder: false,
1236
- },
1237
- {
1238
- icon: Icons.MENUALL,
1239
- iconName: 'MENUALL',
1240
- iconClass: 'si-menu-all',
1241
- hasBorder: false,
1242
- },
1243
- {
1244
- icon: Icons.MENUANALYTICS,
1245
- iconName: 'MENUANALYTICS',
1246
- iconClass: 'si-menu-analytics',
1247
- hasBorder: false,
1248
- },
1249
- {
1250
- icon: Icons.MENUASSETS,
1251
- iconName: 'MENUASSETS',
1252
- iconClass: 'si-menu-assets',
1253
- hasBorder: false,
1254
- },
1255
- {
1256
- icon: Icons.MENUCAMPAIGNS,
1257
- iconName: 'MENUCAMPAIGNS',
1258
- iconClass: 'si-menu-campaigns',
1259
- hasBorder: false,
1260
- },
1261
- {
1262
- icon: Icons.MENUCONTACT,
1263
- iconName: 'MENUCONTACT',
1264
- iconClass: 'si-menu-contact',
1265
- hasBorder: false,
1266
- },
1267
- {
1268
- icon: Icons.MENUCONTENT,
1269
- iconName: 'MENUCONTENT',
1270
- iconClass: 'si-menu-content',
1271
- hasBorder: false,
1272
- },
1273
- {
1274
- icon: Icons.MENUDASHBOARD,
1275
- iconName: 'MENUDASHBOARD',
1276
- iconClass: 'si-menu-dashboard',
1277
- hasBorder: false,
1278
- },
1279
- {
1280
- icon: Icons.MENUEVENTS,
1281
- iconName: 'MENUEVENTS',
1282
- iconClass: 'si-menu-events',
1283
- hasBorder: false,
1284
- },
1285
- {
1286
- icon: Icons.MENUFOLDERS,
1287
- iconName: 'MENUFOLDERS',
1288
- iconClass: 'si-menu-folders',
1289
- hasBorder: false,
1290
- },
1291
- {
1292
- icon: Icons.MENUJOBS,
1293
- iconName: 'MENUJOBS',
1294
- iconClass: 'si-menu-jobs',
1295
- hasBorder: false,
1296
- },
1297
- {
1298
- icon: Icons.MENURETURN,
1299
- iconName: 'MENURETURN',
1300
- iconClass: 'si-menu-return',
1301
- hasBorder: false,
1302
- },
1303
- {
1304
- icon: Icons.MENUWORKFLOWS,
1305
- iconName: 'MENUWORKFLOWS',
1306
- iconClass: 'si-menu-workflows',
1307
- hasBorder: false,
1308
- },
1309
- {
1310
- icon: Icons.MERGE,
1311
- iconName: 'MERGE',
1312
- iconClass: 'si-merge',
1313
- hasBorder: false,
1314
- },
1315
- {
1316
- icon: Icons.MOVE,
1317
- iconName: 'MOVE',
1318
- iconClass: 'si-move',
1319
- hasBorder: false,
1320
- },
1321
- {
1322
- icon: Icons.NIGHTMODE,
1323
- iconName: 'NIGHTMODE',
1324
- iconClass: 'si-nightmode',
1325
- hasBorder: false,
1326
- },
1327
- {
1328
- icon: Icons.NOTIFICATION,
1329
- iconName: 'NOTIFICATION',
1330
- iconClass: 'si-notification',
1331
- hasBorder: false,
1332
- },
1333
- {
1334
- icon: Icons.ORGANIZECOLUMNS,
1335
- iconName: 'ORGANIZECOLUMNS',
1336
- iconClass: 'si-organize-columns',
1337
- hasBorder: false,
1338
- },
1339
- {
1340
- icon: Icons.ORGANIZECONTACTS,
1341
- iconName: 'ORGANIZECONTACTS',
1342
- iconClass: 'si-organize-contacts',
1343
- hasBorder: false,
1344
- },
1345
- {
1346
- icon: Icons.PENDINGINCOMPLETE,
1347
- iconName: 'PENDINGINCOMPLETE',
1348
- iconClass: 'si-pending-incomplete',
1349
- hasBorder: false,
1350
- },
1351
- {
1352
- icon: Icons.PHONENUMBER,
1353
- iconName: 'PHONENUMBER',
1354
- iconClass: 'si-phone-number',
1355
- hasBorder: false,
1356
- },
1357
- {
1358
- icon: Icons.PREVIEW,
1359
- iconName: 'PREVIEW',
1360
- iconClass: 'si-preview',
1361
- hasBorder: false,
1362
- },
1363
- {
1364
- icon: Icons.PROMOTE,
1365
- iconName: 'PROMOTE',
1366
- iconClass: 'si-promote',
1367
- hasBorder: false,
1368
- },
1369
- {
1370
- icon: Icons.REFRESH,
1371
- iconName: 'REFRESH',
1372
- iconClass: 'si-refresh',
1373
- hasBorder: false,
1374
- },
1375
- {
1376
- icon: Icons.REMOVE,
1377
- iconName: 'REMOVE',
1378
- iconClass: 'si-remove',
1379
- hasBorder: false,
1380
- },
1381
- {
1382
- icon: Icons.EXCLUDE,
1383
- iconName: 'EXCLUDE',
1384
- iconClass: 'si-exclude',
1385
- hasBorder: false,
1386
- },
1387
- {
1388
- icon: Icons.RESULTSFILTERS,
1389
- iconName: 'RESULTSFILTERS',
1390
- iconClass: 'si-results-filters',
1391
- hasBorder: false,
1392
- },
1393
- {
1394
- icon: Icons.REVIEW,
1395
- iconName: 'REVIEW',
1396
- iconClass: 'si-review',
1397
- hasBorder: false,
1398
- },
1399
- {
1400
- icon: Icons.SALARY,
1401
- iconName: 'SALARY',
1402
- iconClass: 'si-salary',
1403
- hasBorder: false,
1404
- },
1405
- {
1406
- icon: Icons.SAVE,
1407
- iconName: 'SAVE',
1408
- iconClass: 'si-save',
1409
- hasBorder: false,
1410
- },
1411
- {
1412
- icon: Icons.SEARCHADVANCED,
1413
- iconName: 'SEARCHADVANCED',
1414
- iconClass: 'si-search-advanced',
1415
- hasBorder: false,
1416
- },
1417
- {
1418
- icon: Icons.SEARCHCLEAR,
1419
- iconName: 'SEARCHCLEAR',
1420
- iconClass: 'si-search-clear',
1421
- hasBorder: false,
1422
- },
1423
- {
1424
- icon: Icons.SEARCHNEW,
1425
- iconName: 'SEARCHNEW',
1426
- iconClass: 'si-search-new',
1427
- hasBorder: false,
1428
- },
1429
- {
1430
- icon: Icons.SETTINGSMART,
1431
- iconName: 'SETTINGSMART',
1432
- iconClass: 'si-settings-smart',
1433
- hasBorder: false,
1434
- },
1435
- {
1436
- icon: Icons.SMS,
1437
- iconName: 'SMS',
1438
- iconClass: 'si-sms',
1439
- hasBorder: false,
1440
- },
1441
- {
1442
- icon: Icons.SORTMINI,
1443
- iconName: 'SORTMINI',
1444
- iconClass: 'si-sort-mini',
1445
- hasBorder: false,
1446
- },
1447
- {
1448
- icon: Icons.STATUS,
1449
- iconName: 'STATUS',
1450
- iconClass: 'si-status',
1451
- hasBorder: false,
1452
- },
1453
- {
1454
- icon: Icons.SYSTEMACTION,
1455
- iconName: 'SYSTEMACTION',
1456
- iconClass: 'si-system-action',
1457
- hasBorder: false,
1458
- },
1459
- {
1460
- icon: Icons.TASKCOMPLETED,
1461
- iconName: 'TASKCOMPLETED',
1462
- iconClass: 'si-task-completed',
1463
- hasBorder: false,
1464
- },
1465
- {
1466
- icon: Icons.TASKOPEN,
1467
- iconName: 'TASKOPEN',
1468
- iconClass: 'si-task-open',
1469
- hasBorder: false,
1470
- },
1471
- {
1472
- icon: Icons.TIMEFRAME,
1473
- iconName: 'TIMEFRAME',
1474
- iconClass: 'si-timeframe',
1475
- hasBorder: false,
1476
- },
1477
- {
1478
- icon: Icons.TIMELINE,
1479
- iconName: 'TIMELINE',
1480
- iconClass: 'si-timeline',
1481
- hasBorder: false,
1482
- },
1483
- {
1484
- icon: Icons.UPLOAD,
1485
- iconName: 'UPLOAD',
1486
- iconClass: 'si-upload',
1487
- hasBorder: false,
1488
- },
1489
- {
1490
- icon: Icons.USERMULTIPLE,
1491
- iconName: 'USERMULTIPLE',
1492
- iconClass: 'si-user-multiple',
1493
- hasBorder: false,
1494
- },
1495
- {
1496
- icon: Icons.USER,
1497
- iconName: 'USER',
1498
- iconClass: 'si-user',
1499
- hasBorder: false,
1500
- },
1501
- ];
1502
- }
1503
- static getInverseIconList() {
1504
- return [
1505
- {
1506
- icon: Icons.ACTIVITY,
1507
- iconName: 'ACTIVITY',
1508
- iconClass: 'si-activity',
1509
- hasBorder: true,
1510
- },
1511
- ];
1512
- }
1513
- static getHasBorderIconList() {
1514
- return [
1515
- {
1516
- icon: Icons.ADD,
1517
- iconName: 'ADD',
1518
- iconClass: 'si-add',
1519
- hasBorder: true,
1520
- },
1521
- {
1522
- icon: Icons.ARROWNEXT,
1523
- iconName: 'ARROWNEXT',
1524
- iconClass: 'si-arrow-next',
1525
- hasBorder: true,
1526
- },
1527
- {
1528
- icon: Icons.DELETE,
1529
- iconName: 'DELETE',
1530
- iconClass: 'si-delete',
1531
- hasBorder: true,
1532
- },
1533
- {
1534
- icon: Icons.DOWNLOAD,
1535
- iconName: 'DOWNLOAD',
1536
- iconClass: 'si-download',
1537
- hasBorder: true,
1538
- },
1539
- {
1540
- icon: Icons.EDIT,
1541
- iconName: 'EDIT',
1542
- iconClass: 'si-edit',
1543
- hasBorder: true,
1544
- },
1545
- {
1546
- icon: Icons.FEEDBACKYES,
1547
- iconName: 'FEEDBACKYES',
1548
- iconClass: 'si-feedback-yes',
1549
- hasBorder: true,
1550
- },
1551
- {
1552
- icon: Icons.MENUCONTACT,
1553
- iconName: 'MENUCONTACT',
1554
- iconClass: 'si-menu-contact',
1555
- hasBorder: true,
1556
- },
1557
- {
1558
- icon: Icons.MOREOPTIONS,
1559
- iconName: 'MOREOPTIONS',
1560
- iconClass: 'si-more-options',
1561
- hasBorder: true,
1562
- },
1563
- {
1564
- icon: Icons.ORGANIZECOLUMNS,
1565
- iconName: 'ORGANIZECOLUMNS',
1566
- iconClass: 'si-organize-columns',
1567
- hasBorder: true,
1568
- },
1569
- {
1570
- icon: Icons.PREVIEW,
1571
- iconName: 'PREVIEW',
1572
- iconClass: 'si-preview',
1573
- hasBorder: true,
1574
- },
1575
- {
1576
- icon: Icons.SAVE,
1577
- iconName: 'SAVE',
1578
- iconClass: 'si-save',
1579
- hasBorder: true,
1580
- },
1581
- ];
1582
- }
1583
- }
1584
-
1585
- let IconExplorerComponent = class IconExplorerComponent {
1586
- constructor() {
1587
- this.iconList = IconExplorerHelper.getAllIcons();
1588
- this.hasBorderIconsList = IconExplorerHelper.getHasBorderIconList();
1589
- this.hasNoBorderIconsList = IconExplorerHelper.getHasNoBorderIconList();
1590
- this.isInverseIconsList = IconExplorerHelper.getInverseIconList();
1591
- }
1592
- ngOnInit() {
1593
- this.iconCount = this.iconList.length;
1594
- this.explorerTitle = `Iconography (${this.iconCount} icons)`;
1595
- this.iconHasBorderCount = this.hasBorderIconsList.length;
1596
- this.borderTitle = `Icons with border (${this.iconHasBorderCount} icons)`;
1597
- this.iconHasNoBorderCount = this.hasNoBorderIconsList.length;
1598
- this.noBorderTitle = `Icons without border (${this.iconHasNoBorderCount} icons)`;
1599
- this.iconisInverseCount = this.isInverseIconsList.length;
1600
- this.backgroundTitle = `Icons with background (${this.iconisInverseCount} icons)`;
1601
- }
1602
- };
1603
- IconExplorerComponent = __decorate([
1604
- Component({
1605
- selector: 'symphony-icon-explorer',
1606
- 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",
1607
- styles: [".sfx-icon-list{display:flex;flex-direction:column;flex-wrap:wrap;height:90vh;width:100vw}.sfx-icon-list.has-border{height:50vh;width:39vw}.icon-list-item{flex:0 0 10%;padding:10px 0}.icon-list-item.has-border{flex:0 0 25%}.explorer-title{border-bottom:5px solid #000;margin-bottom:30px;padding-bottom:10px}.explorer-subtitle{margin-bottom:10px}"]
1608
- })
1609
- ], IconExplorerComponent);
1610
-
1611
- let IconExplorerModule = class IconExplorerModule {
1612
- };
1613
- IconExplorerModule = __decorate([
1614
- NgModule({
1615
- declarations: [IconExplorerComponent],
1616
- imports: [CommonModule, IconSwatchModule, H2Module, H3Module],
1617
- })
1618
- ], IconExplorerModule);
1619
-
1620
- /*
1621
- * ATOMS
1622
- */
1623
-
1624
- /**
1625
- * Generated bundle index. Do not edit.
1626
- */
1627
-
1628
- export { AtomsModule, ButtonComponent, ButtonModule, ColorSampleComponent, ColorSampleModule, ColorSwatchCollectionComponent, ColorSwatchCollectionModule, ColorSwatchComponent, ColorSwatchModule, H1Component, H1Module, H2Component, H2Module, H3Component, H3Module, H4Component, H4Module, H5Component, H5Module, IconComponent, IconExplorerComponent, IconExplorerModule, IconModule, IconSwatchComponent, IconSwatchModule, InputTextComponent, InputTextModule, MoleculesModule, ParagraphComponent, ParagraphModule, PillComponent, PillsComponent, PillsModule, TaskComponent, TaskIconComponent, TaskIconModule, TaskListComponent, TaskListModule, TaskModule, DropdownModule as ɵa, DropdownComponent as ɵb, MoreDropdownModule as ɵc, MoreDropdownComponent as ɵd, DescriptionModule as ɵe, DescriptionComponent as ɵf, ListTitleModule as ɵg, ListTitleComponent as ɵh, TimeStampModule as ɵi, TimeStampComponent as ɵj, AvatarModule as ɵk, AvatarComponent as ɵl, PillModule as ɵm, ButtonRoundModule as ɵn, ButtonRoundComponent as ɵo, IconWrapperModule as ɵp, IconWrapperComponent as ɵq, NoteModule as ɵr, NoteComponent as ɵs };
1629
- //# sourceMappingURL=symphony-talent-component-library.js.map