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