@testgorilla/tgo-ui 2.10.1 → 2.10.2

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 (962) hide show
  1. package/components/accordion/accordion.component.d.ts +76 -0
  2. package/components/accordion/accordion.component.module.d.ts +12 -0
  3. package/components/alert-banner/alert-banner.component.d.ts +89 -0
  4. package/components/alert-banner/alert-banner.component.module.d.ts +10 -0
  5. package/components/autocomplete/autocomplete.component.d.ts +211 -0
  6. package/components/autocomplete/autocomplete.component.module.d.ts +22 -0
  7. package/components/autocomplete/autocomplete.model.d.ts +18 -0
  8. package/components/autocomplete/includes.pipe.d.ts +12 -0
  9. package/components/autocomplete/transform-Item.pipe.d.ts +11 -0
  10. package/components/avatar/avatar.component.d.ts +58 -0
  11. package/components/avatar/avatar.component.module.d.ts +12 -0
  12. package/components/avatar/avatar.model.d.ts +7 -0
  13. package/components/badge/badge.component.d.ts +58 -0
  14. package/components/badge/badge.component.module.d.ts +9 -0
  15. package/components/badge/badge.model.d.ts +27 -0
  16. package/components/button/button.component.d.ts +190 -0
  17. package/components/button/button.component.module.d.ts +13 -0
  18. package/components/button/button.model.d.ts +14 -0
  19. package/components/card/card.component.d.ts +46 -0
  20. package/components/card/card.component.module.d.ts +9 -0
  21. package/components/checkbox/checkbox.component.d.ts +147 -0
  22. package/components/checkbox/checkbox.component.module.d.ts +15 -0
  23. package/components/confirm-dialog/confirm-dialog.component.d.ts +25 -0
  24. package/components/confirm-dialog/confirm-dialog.component.module.d.ts +12 -0
  25. package/components/confirm-dialog/confirm-dialog.model.d.ts +9 -0
  26. package/components/datepicker/datepicker.component.d.ts +205 -0
  27. package/components/datepicker/datepicker.component.module.d.ts +18 -0
  28. package/components/datepicker/no-date-format.directive.d.ts +11 -0
  29. package/components/deprecated-paginator/deprecated-paginator.component.d.ts +38 -0
  30. package/components/deprecated-paginator/deprecated-paginator.component.module.d.ts +9 -0
  31. package/components/deprecated-table/deprecated-table.component.d.ts +91 -0
  32. package/components/deprecated-table/deprecated-table.component.module.d.ts +14 -0
  33. package/components/deprecated-table/deprecated-table.model.d.ts +45 -0
  34. package/components/deprecated-table/directives/dynamic-component.directive.d.ts +13 -0
  35. package/components/dialog/dialog.component.d.ts +108 -0
  36. package/components/dialog/dialog.component.module.d.ts +11 -0
  37. package/components/dialog/dialog.service.d.ts +13 -0
  38. package/components/divider/divider.component.d.ts +39 -0
  39. package/components/divider/divider.component.module.d.ts +9 -0
  40. package/components/dropdown/dropdown.component.d.ts +157 -0
  41. package/components/dropdown/dropdown.component.module.d.ts +17 -0
  42. package/components/dropdown/dropdown.model.d.ts +5 -0
  43. package/components/elevation-shadow/elevation-shadow.component.d.ts +26 -0
  44. package/components/elevation-shadow/elevation-shadow.component.module.d.ts +8 -0
  45. package/components/elevation-shadow/elevation-shadow.constant.d.ts +8 -0
  46. package/components/empty-state/empty-state.component.d.ts +124 -0
  47. package/components/empty-state/empty-state.component.module.d.ts +11 -0
  48. package/components/field/field.component.d.ts +238 -0
  49. package/components/field/field.component.module.d.ts +18 -0
  50. package/components/field/field.model.d.ts +1 -0
  51. package/components/file-upload/file-upload.component.d.ts +124 -0
  52. package/components/file-upload/file-upload.component.module.d.ts +14 -0
  53. package/components/icon/icon.component.d.ts +65 -0
  54. package/components/icon/icon.component.module.d.ts +10 -0
  55. package/components/icon/icon.config.d.ts +10 -0
  56. package/components/icon/icon.model.d.ts +7 -0
  57. package/components/icon-label/icon-label.component.d.ts +39 -0
  58. package/components/icon-label/icon-label.component.module.d.ts +9 -0
  59. package/components/logo/logo.component.d.ts +57 -0
  60. package/components/logo/logo.component.module.d.ts +8 -0
  61. package/components/logo/logo.model.d.ts +29 -0
  62. package/components/navbar/mobile-navbar-side-sheet/mobile-navbar-side-sheet.component.d.ts +22 -0
  63. package/components/navbar/navbar.component.d.ts +113 -0
  64. package/components/navbar/navbar.component.module.d.ts +20 -0
  65. package/components/navbar/navbar.model.d.ts +10 -0
  66. package/components/overflow-menu/overflow-menu.component.d.ts +55 -0
  67. package/components/overflow-menu/overflow-menu.component.module.d.ts +11 -0
  68. package/components/overflow-menu/overflow-menu.model.d.ts +10 -0
  69. package/components/page-header/page-header.component.d.ts +45 -0
  70. package/components/page-header/page-header.component.module.d.ts +10 -0
  71. package/components/paginator/paginator.component.d.ts +49 -0
  72. package/components/paginator/paginator.component.module.d.ts +9 -0
  73. package/components/password-criteria/password.component.d.ts +49 -0
  74. package/components/password-criteria/password.component.module.d.ts +13 -0
  75. package/components/password-strength/password-strength.component.d.ts +52 -0
  76. package/components/password-strength/password-strength.component.module.d.ts +11 -0
  77. package/components/phone-input/join-strings.pipe.d.ts +7 -0
  78. package/components/phone-input/phone-input.component.d.ts +154 -0
  79. package/components/phone-input/phone-input.component.module.d.ts +20 -0
  80. package/components/phone-input/phone-input.model.d.ts +8 -0
  81. package/components/progress-bar/progress-bar.component.d.ts +52 -0
  82. package/components/progress-bar/progress-bar.component.module.d.ts +9 -0
  83. package/components/radial-progress/radial-progress.component.d.ts +68 -0
  84. package/components/radial-progress/radial-progress.component.module.d.ts +10 -0
  85. package/components/radial-progress/radial-progress.model.d.ts +10 -0
  86. package/components/radio-button/radio-button.component.d.ts +116 -0
  87. package/components/radio-button/radio-button.component.module.d.ts +11 -0
  88. package/components/radio-button/radio-button.model.d.ts +4 -0
  89. package/components/rating/half-star.pipe.d.ts +14 -0
  90. package/components/rating/rating.component.d.ts +64 -0
  91. package/components/rating/rating.component.module.d.ts +10 -0
  92. package/components/scale/scale.component.d.ts +34 -0
  93. package/components/scale/scale.component.module.d.ts +8 -0
  94. package/components/segmented-bar/segmented-bar.component.d.ts +54 -0
  95. package/components/segmented-bar/segmented-bar.component.module.d.ts +10 -0
  96. package/components/segmented-bar/segmented-bar.model.d.ts +7 -0
  97. package/components/segmented-button/segmented-button.component.d.ts +23 -0
  98. package/components/segmented-button/segmented-button.component.module.d.ts +10 -0
  99. package/components/segmented-button/segmented-button.model.d.ts +6 -0
  100. package/components/side-sheet/side-sheet.component.d.ts +49 -0
  101. package/components/side-sheet/side-sheet.component.module.d.ts +14 -0
  102. package/components/side-sheet/side-sheet.model.d.ts +10 -0
  103. package/components/side-sheet/side-sheet.service.d.ts +14 -0
  104. package/components/skeleton/skeleton.component.d.ts +26 -0
  105. package/components/skeleton/skeleton.model.d.ts +2 -0
  106. package/components/slider/slider.component.d.ts +103 -0
  107. package/components/slider/slider.component.module.d.ts +14 -0
  108. package/components/slider/slider.model.d.ts +4 -0
  109. package/components/snackbar/snackbar.component.d.ts +111 -0
  110. package/components/snackbar/snackbar.component.module.d.ts +12 -0
  111. package/components/snackbar/snackbar.service.d.ts +12 -0
  112. package/components/spinner/spinner.component.d.ts +38 -0
  113. package/components/spinner/spinner.module.d.ts +8 -0
  114. package/components/step/step.component.d.ts +104 -0
  115. package/components/step/step.component.module.d.ts +9 -0
  116. package/components/stepper/stepper.component.d.ts +76 -0
  117. package/components/stepper/stepper.component.module.d.ts +15 -0
  118. package/components/stepper/stepper.model.d.ts +9 -0
  119. package/components/table/sentence-case.pipe.d.ts +7 -0
  120. package/components/table/table.component.d.ts +93 -0
  121. package/components/table/table.component.module.d.ts +19 -0
  122. package/components/table/table.model.d.ts +92 -0
  123. package/components/tabs/tab.directive.d.ts +18 -0
  124. package/components/tabs/tabs.component.d.ts +59 -0
  125. package/components/tabs/tabs.component.module.d.ts +11 -0
  126. package/components/tabs/tabs.model.d.ts +9 -0
  127. package/components/tag/tag.component.d.ts +129 -0
  128. package/components/tag/tag.component.module.d.ts +12 -0
  129. package/components/toggle/toggle.component.d.ts +105 -0
  130. package/components/toggle/toggle.component.module.d.ts +12 -0
  131. package/components/tooltip/tooltip.component.d.ts +44 -0
  132. package/components/tooltip/tooltip.component.module.d.ts +8 -0
  133. package/components/tooltip/tooltip.model.d.ts +6 -0
  134. package/components/validation-error/validation-error.component.d.ts +27 -0
  135. package/components/validation-error/validation-error.module.d.ts +10 -0
  136. package/directives/digits-only.directive.d.ts +15 -0
  137. package/directives/drag-drop.directive.d.ts +12 -0
  138. package/directives/ellipse-text.directive.d.ts +16 -0
  139. package/directives/select-text.directive.d.ts +19 -0
  140. package/directives/step-line-width.directive.d.ts +15 -0
  141. package/esm2022/assets/i18n/da-dk.json +77 -0
  142. package/esm2022/assets/i18n/de.json +77 -0
  143. package/esm2022/assets/i18n/en.json +100 -0
  144. package/esm2022/assets/i18n/es.json +77 -0
  145. package/esm2022/assets/i18n/fr.json +77 -0
  146. package/esm2022/assets/i18n/it-it.json +77 -0
  147. package/esm2022/assets/i18n/ja-jp.json +77 -0
  148. package/esm2022/assets/i18n/nb-no.json +77 -0
  149. package/esm2022/assets/i18n/nl.json +77 -0
  150. package/esm2022/assets/i18n/pl-pl.json +77 -0
  151. package/esm2022/assets/i18n/pt-br.json +77 -0
  152. package/esm2022/assets/i18n/sv-se.json +77 -0
  153. package/esm2022/components/accordion/accordion.component.mjs +105 -0
  154. package/esm2022/components/accordion/accordion.component.module.mjs +40 -0
  155. package/esm2022/components/accordion/accordion.model.mjs +2 -0
  156. package/esm2022/components/alert-banner/alert-banner.component.mjs +127 -0
  157. package/esm2022/components/alert-banner/alert-banner.component.module.mjs +20 -0
  158. package/esm2022/components/alert-banner/alert-banner.model.mjs +2 -0
  159. package/esm2022/components/autocomplete/autocomplete.component.mjs +507 -0
  160. package/esm2022/components/autocomplete/autocomplete.component.module.mjs +70 -0
  161. package/esm2022/components/autocomplete/autocomplete.model.mjs +22 -0
  162. package/esm2022/components/autocomplete/includes.pipe.mjs +21 -0
  163. package/esm2022/components/autocomplete/transform-Item.pipe.mjs +29 -0
  164. package/esm2022/components/avatar/avatar.component.mjs +91 -0
  165. package/esm2022/components/avatar/avatar.component.module.mjs +22 -0
  166. package/esm2022/components/avatar/avatar.model.mjs +12 -0
  167. package/esm2022/components/badge/badge.component.mjs +102 -0
  168. package/esm2022/components/badge/badge.component.module.mjs +19 -0
  169. package/esm2022/components/badge/badge.model.mjs +28 -0
  170. package/esm2022/components/button/button.component.mjs +352 -0
  171. package/esm2022/components/button/button.component.module.mjs +41 -0
  172. package/esm2022/components/button/button.model.mjs +2 -0
  173. package/esm2022/components/card/card.component.mjs +75 -0
  174. package/esm2022/components/card/card.component.module.mjs +19 -0
  175. package/esm2022/components/card/card.model.mjs +2 -0
  176. package/esm2022/components/checkbox/checkbox.component.mjs +228 -0
  177. package/esm2022/components/checkbox/checkbox.component.module.mjs +25 -0
  178. package/esm2022/components/confirm-dialog/confirm-dialog.component.mjs +48 -0
  179. package/esm2022/components/confirm-dialog/confirm-dialog.component.module.mjs +29 -0
  180. package/esm2022/components/confirm-dialog/confirm-dialog.model.mjs +2 -0
  181. package/esm2022/components/datepicker/datepicker.component.mjs +302 -0
  182. package/esm2022/components/datepicker/datepicker.component.module.mjs +60 -0
  183. package/esm2022/components/datepicker/no-date-format.directive.mjs +56 -0
  184. package/esm2022/components/deprecated-paginator/deprecated-paginator.component.mjs +55 -0
  185. package/esm2022/components/deprecated-paginator/deprecated-paginator.component.module.mjs +20 -0
  186. package/esm2022/components/deprecated-table/deprecated-table.component.mjs +158 -0
  187. package/esm2022/components/deprecated-table/deprecated-table.component.module.mjs +43 -0
  188. package/esm2022/components/deprecated-table/deprecated-table.model.mjs +13 -0
  189. package/esm2022/components/deprecated-table/directives/dynamic-component.directive.mjs +40 -0
  190. package/esm2022/components/dialog/dialog.component.mjs +193 -0
  191. package/esm2022/components/dialog/dialog.component.module.mjs +23 -0
  192. package/esm2022/components/dialog/dialog.service.mjs +32 -0
  193. package/esm2022/components/divider/divider.component.mjs +65 -0
  194. package/esm2022/components/divider/divider.component.module.mjs +19 -0
  195. package/esm2022/components/divider/divider.model.mjs +2 -0
  196. package/esm2022/components/dropdown/dropdown.component.mjs +228 -0
  197. package/esm2022/components/dropdown/dropdown.component.module.mjs +57 -0
  198. package/esm2022/components/dropdown/dropdown.model.mjs +2 -0
  199. package/esm2022/components/elevation-shadow/elevation-shadow.component.mjs +45 -0
  200. package/esm2022/components/elevation-shadow/elevation-shadow.component.module.mjs +18 -0
  201. package/esm2022/components/elevation-shadow/elevation-shadow.constant.mjs +9 -0
  202. package/esm2022/components/empty-state/empty-state.component.mjs +195 -0
  203. package/esm2022/components/empty-state/empty-state.component.module.mjs +21 -0
  204. package/esm2022/components/empty-state/empty-state.model.mjs +2 -0
  205. package/esm2022/components/field/field.component.mjs +409 -0
  206. package/esm2022/components/field/field.component.module.mjs +58 -0
  207. package/esm2022/components/field/field.model.mjs +2 -0
  208. package/esm2022/components/file-upload/file-upload.component.mjs +271 -0
  209. package/esm2022/components/file-upload/file-upload.component.module.mjs +40 -0
  210. package/esm2022/components/icon/icon.component.mjs +127 -0
  211. package/esm2022/components/icon/icon.component.module.mjs +21 -0
  212. package/esm2022/components/icon/icon.config.mjs +657 -0
  213. package/esm2022/components/icon/icon.model.mjs +2 -0
  214. package/esm2022/components/icon-label/icon-label.component.mjs +53 -0
  215. package/esm2022/components/icon-label/icon-label.component.module.mjs +20 -0
  216. package/esm2022/components/logo/logo.component.mjs +149 -0
  217. package/esm2022/components/logo/logo.component.module.mjs +18 -0
  218. package/esm2022/components/logo/logo.model.mjs +32 -0
  219. package/esm2022/components/navbar/mobile-navbar-side-sheet/mobile-navbar-side-sheet.component.mjs +75 -0
  220. package/esm2022/components/navbar/navbar.component.mjs +200 -0
  221. package/esm2022/components/navbar/navbar.component.module.mjs +67 -0
  222. package/esm2022/components/navbar/navbar.model.mjs +2 -0
  223. package/esm2022/components/overflow-menu/overflow-menu.component.mjs +73 -0
  224. package/esm2022/components/overflow-menu/overflow-menu.component.module.mjs +21 -0
  225. package/esm2022/components/overflow-menu/overflow-menu.model.mjs +2 -0
  226. package/esm2022/components/page-header/page-header.component.mjs +81 -0
  227. package/esm2022/components/page-header/page-header.component.module.mjs +20 -0
  228. package/esm2022/components/paginator/paginator.component.mjs +76 -0
  229. package/esm2022/components/paginator/paginator.component.module.mjs +19 -0
  230. package/esm2022/components/password-criteria/password.component.mjs +115 -0
  231. package/esm2022/components/password-criteria/password.component.module.mjs +39 -0
  232. package/esm2022/components/password-strength/password-strength.component.mjs +103 -0
  233. package/esm2022/components/password-strength/password-strength.component.module.mjs +21 -0
  234. package/esm2022/components/phone-input/join-strings.pipe.mjs +14 -0
  235. package/esm2022/components/phone-input/phone-input.component.mjs +363 -0
  236. package/esm2022/components/phone-input/phone-input.component.module.mjs +63 -0
  237. package/esm2022/components/phone-input/phone-input.model.mjs +2 -0
  238. package/esm2022/components/progress-bar/progress-bar.component.mjs +74 -0
  239. package/esm2022/components/progress-bar/progress-bar.component.module.mjs +20 -0
  240. package/esm2022/components/radial-progress/radial-progress.component.mjs +106 -0
  241. package/esm2022/components/radial-progress/radial-progress.component.module.mjs +20 -0
  242. package/esm2022/components/radial-progress/radial-progress.model.mjs +11 -0
  243. package/esm2022/components/radio-button/radio-button.component.mjs +176 -0
  244. package/esm2022/components/radio-button/radio-button.component.module.mjs +21 -0
  245. package/esm2022/components/radio-button/radio-button.model.mjs +2 -0
  246. package/esm2022/components/rating/half-star.pipe.mjs +23 -0
  247. package/esm2022/components/rating/rating.component.mjs +92 -0
  248. package/esm2022/components/rating/rating.component.module.mjs +20 -0
  249. package/esm2022/components/scale/scale.component.mjs +58 -0
  250. package/esm2022/components/scale/scale.component.module.mjs +18 -0
  251. package/esm2022/components/segmented-bar/segmented-bar.component.mjs +75 -0
  252. package/esm2022/components/segmented-bar/segmented-bar.component.module.mjs +20 -0
  253. package/esm2022/components/segmented-bar/segmented-bar.model.mjs +2 -0
  254. package/esm2022/components/segmented-button/segmented-button.component.mjs +53 -0
  255. package/esm2022/components/segmented-button/segmented-button.component.module.mjs +32 -0
  256. package/esm2022/components/segmented-button/segmented-button.model.mjs +2 -0
  257. package/esm2022/components/side-sheet/side-sheet.component.mjs +109 -0
  258. package/esm2022/components/side-sheet/side-sheet.component.module.mjs +43 -0
  259. package/esm2022/components/side-sheet/side-sheet.model.mjs +2 -0
  260. package/esm2022/components/side-sheet/side-sheet.service.mjs +31 -0
  261. package/esm2022/components/skeleton/skeleton.component.mjs +71 -0
  262. package/esm2022/components/skeleton/skeleton.model.mjs +2 -0
  263. package/esm2022/components/slider/slider.component.mjs +191 -0
  264. package/esm2022/components/slider/slider.component.module.mjs +43 -0
  265. package/esm2022/components/slider/slider.model.mjs +2 -0
  266. package/esm2022/components/snackbar/snackbar.component.mjs +208 -0
  267. package/esm2022/components/snackbar/snackbar.component.module.mjs +24 -0
  268. package/esm2022/components/snackbar/snackbar.model.mjs +2 -0
  269. package/esm2022/components/snackbar/snackbar.service.mjs +41 -0
  270. package/esm2022/components/spinner/spinner.component.mjs +62 -0
  271. package/esm2022/components/spinner/spinner.model.mjs +2 -0
  272. package/esm2022/components/spinner/spinner.module.mjs +18 -0
  273. package/esm2022/components/step/step.component.mjs +110 -0
  274. package/esm2022/components/step/step.component.module.mjs +19 -0
  275. package/esm2022/components/stepper/stepper.component.mjs +124 -0
  276. package/esm2022/components/stepper/stepper.component.module.mjs +44 -0
  277. package/esm2022/components/stepper/stepper.model.mjs +2 -0
  278. package/esm2022/components/table/sentence-case.pipe.mjs +19 -0
  279. package/esm2022/components/table/table.component.mjs +220 -0
  280. package/esm2022/components/table/table.component.module.mjs +58 -0
  281. package/esm2022/components/table/table.model.mjs +13 -0
  282. package/esm2022/components/tabs/tab.directive.mjs +42 -0
  283. package/esm2022/components/tabs/tabs.component.mjs +99 -0
  284. package/esm2022/components/tabs/tabs.component.module.mjs +33 -0
  285. package/esm2022/components/tabs/tabs.model.mjs +2 -0
  286. package/esm2022/components/tag/tag.component.mjs +201 -0
  287. package/esm2022/components/tag/tag.component.module.mjs +23 -0
  288. package/esm2022/components/tag/tag.model.mjs +2 -0
  289. package/esm2022/components/toggle/toggle.component.mjs +169 -0
  290. package/esm2022/components/toggle/toggle.component.module.mjs +22 -0
  291. package/esm2022/components/toggle/toggle.model.mjs +2 -0
  292. package/esm2022/components/tooltip/tooltip.component.mjs +79 -0
  293. package/esm2022/components/tooltip/tooltip.component.module.mjs +18 -0
  294. package/esm2022/components/tooltip/tooltip.model.mjs +8 -0
  295. package/esm2022/components/validation-error/validation-error.component.mjs +59 -0
  296. package/esm2022/components/validation-error/validation-error.model.mjs +2 -0
  297. package/esm2022/components/validation-error/validation-error.module.mjs +20 -0
  298. package/esm2022/directives/digits-only.directive.mjs +52 -0
  299. package/esm2022/directives/drag-drop.directive.mjs +55 -0
  300. package/esm2022/directives/ellipse-text.directive.mjs +37 -0
  301. package/esm2022/directives/select-text.directive.mjs +41 -0
  302. package/esm2022/directives/step-line-width.directive.mjs +38 -0
  303. package/esm2022/models/application-theme.model.mjs +2 -0
  304. package/esm2022/models/colors.model.mjs +78 -0
  305. package/esm2022/models/screen-breakpoints.model.mjs +6 -0
  306. package/esm2022/pipes/data-property-getter.mjs +33 -0
  307. package/esm2022/pipes/has-validation-error.pipe.mjs +27 -0
  308. package/esm2022/pipes/name-initials.pipe.mjs +25 -0
  309. package/esm2022/pipes/ui-translate.pipe.mjs +76 -0
  310. package/esm2022/providers/is-mobile.mjs +11 -0
  311. package/esm2022/public-api.mjs +184 -0
  312. package/esm2022/testgorilla-tgo-ui.mjs +5 -0
  313. package/esm2022/utils/alert-bar.model.mjs +2 -0
  314. package/esm2022/utils/alert-bars.utils.mjs +33 -0
  315. package/esm2022/utils/autocomplete-utils.mjs +61 -0
  316. package/esm2022/utils/color-contrast.mjs +131 -0
  317. package/esm2022/utils/localization/language.model.mjs +16 -0
  318. package/esm2022/utils/localization/language.service.mjs +33 -0
  319. package/esm2022/utils/table.utils.mjs +19 -0
  320. package/fesm2022/testgorilla-tgo-ui.mjs +11104 -0
  321. package/fesm2022/testgorilla-tgo-ui.mjs.map +1 -0
  322. package/index.d.ts +5 -0
  323. package/models/colors.model.d.ts +63 -0
  324. package/models/screen-breakpoints.model.d.ts +4 -0
  325. package/package.json +17 -68
  326. package/pipes/data-property-getter.d.ts +8 -0
  327. package/pipes/has-validation-error.pipe.d.ts +15 -0
  328. package/pipes/name-initials.pipe.d.ts +7 -0
  329. package/pipes/ui-translate.pipe.d.ts +28 -0
  330. package/providers/is-mobile.d.ts +2 -0
  331. package/public-api.d.ts +130 -0
  332. package/utils/alert-bars.utils.d.ts +7 -0
  333. package/utils/autocomplete-utils.d.ts +11 -0
  334. package/utils/color-contrast.d.ts +28 -0
  335. package/utils/localization/language.model.d.ts +14 -0
  336. package/utils/localization/language.service.d.ts +16 -0
  337. package/utils/table.utils.d.ts +6 -0
  338. package/.circleci/config.yml +0 -112
  339. package/.editorconfig +0 -16
  340. package/.eslintignore +0 -5
  341. package/.eslintrc.js +0 -301
  342. package/.github/README.md +0 -81
  343. package/.husky/pre-commit +0 -4
  344. package/.prettierignore +0 -2
  345. package/.prettierrc +0 -13
  346. package/.storybook/main.js +0 -25
  347. package/.storybook/preview-head.html +0 -10
  348. package/.storybook/preview.js +0 -107
  349. package/.storybook/tsconfig.json +0 -24
  350. package/.storybook/typings.d.ts +0 -4
  351. package/.stylelintrc.json +0 -30
  352. package/.vscode/extensions.json +0 -4
  353. package/.vscode/launch.json +0 -20
  354. package/.vscode/tasks.json +0 -42
  355. package/CHANGELOG.md +0 -123
  356. package/angular.json +0 -164
  357. package/e2e/bannerAction.spec.ts +0 -46
  358. package/e2e/bannerAction.spec.ts-snapshots/id-alert-bars-banner-action--default-chromium-darwin.png +0 -0
  359. package/e2e/bannerAction.spec.ts-snapshots/id-alert-bars-banner-action--default-chromium-linux.png +0 -0
  360. package/e2e/bannerAction.spec.ts-snapshots/id-alert-bars-banner-action--error-chromium-darwin.png +0 -0
  361. package/e2e/bannerAction.spec.ts-snapshots/id-alert-bars-banner-action--error-chromium-linux.png +0 -0
  362. package/e2e/bannerAction.spec.ts-snapshots/id-alert-bars-banner-action--info-chromium-darwin.png +0 -0
  363. package/e2e/bannerAction.spec.ts-snapshots/id-alert-bars-banner-action--info-chromium-linux.png +0 -0
  364. package/e2e/bannerAction.spec.ts-snapshots/id-alert-bars-banner-action--warning-chromium-darwin.png +0 -0
  365. package/e2e/bannerAction.spec.ts-snapshots/id-alert-bars-banner-action--warning-chromium-linux.png +0 -0
  366. package/e2e/bannerAction.spec.ts-snapshots/id-alert-bars-banner-action--with-relative-width-chromium-darwin.png +0 -0
  367. package/e2e/bannerAction.spec.ts-snapshots/id-alert-bars-banner-action--with-relative-width-chromium-linux.png +0 -0
  368. package/e2e/bannerAction.spec.ts-snapshots/id-bars-banner-action--default-chromium-linux.png +0 -0
  369. package/e2e/bannerAction.spec.ts-snapshots/id-bars-banner-action--error-chromium-linux.png +0 -0
  370. package/e2e/bannerAction.spec.ts-snapshots/id-bars-banner-action--info-chromium-linux.png +0 -0
  371. package/e2e/bannerAction.spec.ts-snapshots/id-bars-banner-action--warning-chromium-linux.png +0 -0
  372. package/e2e/bannerAction.spec.ts-snapshots/id-bars-banner-action--with-relative-width-chromium-linux.png +0 -0
  373. package/e2e/button.spec.ts +0 -53
  374. package/e2e/button.spec.ts-snapshots/id-button--basic-chromium-linux.png +0 -0
  375. package/e2e/button.spec.ts-snapshots/id-button--button-as-link-chromium-linux.png +0 -0
  376. package/e2e/button.spec.ts-snapshots/id-button--button-only-label-chromium-linux.png +0 -0
  377. package/e2e/button.spec.ts-snapshots/id-button--disabled-chromium-linux.png +0 -0
  378. package/e2e/button.spec.ts-snapshots/id-button--full-width-chromium-linux.png +0 -0
  379. package/e2e/button.spec.ts-snapshots/id-button--label-icon-left-chromium-linux.png +0 -0
  380. package/e2e/button.spec.ts-snapshots/id-button--label-icon-right-chromium-linux.png +0 -0
  381. package/e2e/button.spec.ts-snapshots/id-button--loading-chromium-linux.png +0 -0
  382. package/e2e/button.spec.ts-snapshots/id-button--menu-cell-chromium-linux.png +0 -0
  383. package/e2e/button.spec.ts-snapshots/id-button--menu-trigger-chromium-linux.png +0 -0
  384. package/e2e/button.spec.ts-snapshots/id-button--only-icon-chromium-linux.png +0 -0
  385. package/e2e/button.spec.ts-snapshots/id-button--small-chromium-linux.png +0 -0
  386. package/e2e/card.spec.ts +0 -43
  387. package/e2e/card.spec.ts-snapshots/id-card--default-chromium-linux.png +0 -0
  388. package/e2e/colors.spec.ts +0 -47
  389. package/e2e/colors.spec.ts-snapshots/id-foundations-colors--greysacale-chromium-linux.png +0 -0
  390. package/e2e/colors.spec.ts-snapshots/id-foundations-colors--primary-error-chromium-linux.png +0 -0
  391. package/e2e/colors.spec.ts-snapshots/id-foundations-colors--primary-petrol-chromium-linux.png +0 -0
  392. package/e2e/colors.spec.ts-snapshots/id-foundations-colors--primary-teal-chromium-linux.png +0 -0
  393. package/e2e/colors.spec.ts-snapshots/id-foundations-colors--primary-warning-chromium-linux.png +0 -0
  394. package/e2e/colors.spec.ts-snapshots/id-foundations-colors--secondary-colors-chromium-linux.png +0 -0
  395. package/e2e/createAccount.spec.ts +0 -102
  396. package/e2e/createAccount.spec.ts-snapshots/id-create-account--default-chromium-linux.png +0 -0
  397. package/e2e/createAccount.spec.ts-snapshots/id-deprecated-create-account--default-chromium-linux.png +0 -0
  398. package/e2e/createAccount.spec.ts-snapshots/register-with-errors-chromium-linux.png +0 -0
  399. package/e2e/createAccount.spec.ts-snapshots/register-with-texts-chromium-linux.png +0 -0
  400. package/e2e/createPassword.spec.ts +0 -94
  401. package/e2e/createPassword.spec.ts-snapshots/createPassword-with-errors-chromium-linux.png +0 -0
  402. package/e2e/createPassword.spec.ts-snapshots/createPassword-with-texts-chromium-linux.png +0 -0
  403. package/e2e/createPassword.spec.ts-snapshots/id-createpassword--default-args-viewMode-story-chromium-linux.png +0 -0
  404. package/e2e/createPassword.spec.ts-snapshots/id-createpassword--default-chromium-linux.png +0 -0
  405. package/e2e/createPassword.spec.ts-snapshots/id-deprecated-create-password--default-chromium-linux.png +0 -0
  406. package/e2e/dialog.spec.ts +0 -43
  407. package/e2e/dialog.spec.ts-snapshots/id-dialog-dialog--default-chromium-darwin.png +0 -0
  408. package/e2e/dialog.spec.ts-snapshots/id-dialog-dialog--default-chromium-linux.png +0 -0
  409. package/e2e/field.spec.ts +0 -51
  410. package/e2e/field.spec.ts-snapshots/id-forms-field--email-chromium-linux.png +0 -0
  411. package/e2e/field.spec.ts-snapshots/id-forms-field--number-type-chromium-linux.png +0 -0
  412. package/e2e/field.spec.ts-snapshots/id-forms-field--password-chromium-linux.png +0 -0
  413. package/e2e/field.spec.ts-snapshots/id-forms-field--search-chromium-linux.png +0 -0
  414. package/e2e/field.spec.ts-snapshots/id-forms-field--tel-chromium-linux.png +0 -0
  415. package/e2e/field.spec.ts-snapshots/id-forms-field--text-chromium-linux.png +0 -0
  416. package/e2e/field.spec.ts-snapshots/id-forms-field--with-disable-chromium-linux.png +0 -0
  417. package/e2e/field.spec.ts-snapshots/id-forms-field--with-errors-chromium-linux.png +0 -0
  418. package/e2e/field.spec.ts-snapshots/id-forms-field--with-require-chromium-linux.png +0 -0
  419. package/e2e/field.spec.ts-snapshots/id-forms-field--without-label-chromium-linux.png +0 -0
  420. package/e2e/forgotPassword.spec.ts +0 -94
  421. package/e2e/forgotPassword.spec.ts-snapshots/forgotPassword-with-errors-chromium-linux.png +0 -0
  422. package/e2e/forgotPassword.spec.ts-snapshots/forgotPassword-with-texts-chromium-linux.png +0 -0
  423. package/e2e/forgotPassword.spec.ts-snapshots/id-deprecated-forgot-password--default-chromium-linux.png +0 -0
  424. package/e2e/forgotPassword.spec.ts-snapshots/id-forgotpassword--default-args-viewMode-story-chromium-linux.png +0 -0
  425. package/e2e/forgotPassword.spec.ts-snapshots/id-forgotpassword--default-chromium-linux.png +0 -0
  426. package/e2e/label.spec.ts +0 -47
  427. package/e2e/label.spec.ts-snapshots/id-label--big-chromium-linux.png +0 -0
  428. package/e2e/label.spec.ts-snapshots/id-label--huge-chromium-linux.png +0 -0
  429. package/e2e/label.spec.ts-snapshots/id-label--large-chromium-linux.png +0 -0
  430. package/e2e/label.spec.ts-snapshots/id-label--medium-chromium-linux.png +0 -0
  431. package/e2e/label.spec.ts-snapshots/id-label--small-chromium-linux.png +0 -0
  432. package/e2e/label.spec.ts-snapshots/id-under-review-label--big-chromium-linux.png +0 -0
  433. package/e2e/label.spec.ts-snapshots/id-under-review-label--huge-chromium-linux.png +0 -0
  434. package/e2e/label.spec.ts-snapshots/id-under-review-label--large-chromium-linux.png +0 -0
  435. package/e2e/label.spec.ts-snapshots/id-under-review-label--medium-chromium-linux.png +0 -0
  436. package/e2e/label.spec.ts-snapshots/id-under-review-label--small-chromium-linux.png +0 -0
  437. package/e2e/login.spec.ts +0 -102
  438. package/e2e/login.spec.ts-snapshots/id-deprecated-login--default-chromium-linux.png +0 -0
  439. package/e2e/login.spec.ts-snapshots/id-login--default-chromium-linux.png +0 -0
  440. package/e2e/login.spec.ts-snapshots/login-with-errors-chromium-linux.png +0 -0
  441. package/e2e/login.spec.ts-snapshots/login-with-texts-chromium-linux.png +0 -0
  442. package/e2e/logo.spec.ts +0 -45
  443. package/e2e/logo.spec.ts-snapshots/id-logo--default-chromium-linux.png +0 -0
  444. package/e2e/logo.spec.ts-snapshots/id-logo--powered-by-chromium-linux.png +0 -0
  445. package/e2e/logo.spec.ts-snapshots/id-logo--reverse-chromium-linux.png +0 -0
  446. package/e2e/navbar.spec.ts +0 -42
  447. package/e2e/navbar.spec.ts-snapshots/id-navbar--default-chromium-linux.png +0 -0
  448. package/e2e/navigation.spec.ts +0 -43
  449. package/e2e/navigation.spec.ts-snapshots/id-navigation--default-chromium-linux.png +0 -0
  450. package/e2e/paginator.spec.ts +0 -42
  451. package/e2e/paginator.spec.ts-snapshots/id-paginator--default-chromium-linux.png +0 -0
  452. package/e2e/progressBar.spec.ts +0 -42
  453. package/e2e/progressBar.spec.ts-snapshots/id-progressbar--determinate-chromium-linux.png +0 -0
  454. package/e2e/table.spec.ts +0 -47
  455. package/e2e/table.spec.ts-snapshots/id-deprecated-table--default-chromium-linux.png +0 -0
  456. package/e2e/table.spec.ts-snapshots/id-table--default-chromium-darwin.png +0 -0
  457. package/e2e/table.spec.ts-snapshots/id-table--default-chromium-linux.png +0 -0
  458. package/e2e/table.spec.ts-snapshots/id-table--expandable-chromium-darwin.png +0 -0
  459. package/e2e/table.spec.ts-snapshots/id-table--expandable-chromium-linux.png +0 -0
  460. package/e2e/typography.spec.ts +0 -42
  461. package/e2e/typography.spec.ts-snapshots/id-foundations-typography--page-args-viewMode-story-chromium-linux.png +0 -0
  462. package/globalSetup.js +0 -9
  463. package/jest.config.js +0 -69
  464. package/ng-package.json +0 -9
  465. package/projects/client/src/app/app.component.html +0 -1
  466. package/projects/client/src/app/app.component.scss +0 -8
  467. package/projects/client/src/app/app.component.spec.ts +0 -27
  468. package/projects/client/src/app/app.component.ts +0 -37
  469. package/projects/client/src/app/app.routes.ts +0 -8
  470. package/projects/client/src/app/components/avatar/avatar.component.html +0 -10
  471. package/projects/client/src/app/components/avatar/avatar.component.scss +0 -0
  472. package/projects/client/src/app/components/avatar/avatar.component.ts +0 -25
  473. package/projects/client/src/assets/.gitkeep +0 -0
  474. package/projects/client/src/favicon.ico +0 -0
  475. package/projects/client/src/index.html +0 -13
  476. package/projects/client/src/main.ts +0 -15
  477. package/projects/client/src/styles.scss +0 -10
  478. package/projects/client/tsconfig.app.json +0 -14
  479. package/projects/client/tsconfig.spec.json +0 -14
  480. package/projects/tgo-canopy-ui/__mocks__/alert-bar.mock.ts +0 -18
  481. package/projects/tgo-canopy-ui/__mocks__/button.mock.ts +0 -34
  482. package/projects/tgo-canopy-ui/__mocks__/field.mock.ts +0 -10
  483. package/projects/tgo-canopy-ui/__mocks__/icon.mock.ts +0 -14
  484. package/projects/tgo-canopy-ui/__mocks__/tag.mock.ts +0 -9
  485. package/projects/tgo-canopy-ui/assets/.gitkeep +0 -0
  486. package/projects/tgo-canopy-ui/components/accordion/accordion.component.html +0 -35
  487. package/projects/tgo-canopy-ui/components/accordion/accordion.component.module.ts +0 -26
  488. package/projects/tgo-canopy-ui/components/accordion/accordion.component.scss +0 -284
  489. package/projects/tgo-canopy-ui/components/accordion/accordion.component.spec.ts +0 -37
  490. package/projects/tgo-canopy-ui/components/accordion/accordion.component.stories.ts +0 -176
  491. package/projects/tgo-canopy-ui/components/accordion/accordion.component.ts +0 -97
  492. package/projects/tgo-canopy-ui/components/alert-banner/__snapshots__/alert-banner.component.spec.ts.snap +0 -42
  493. package/projects/tgo-canopy-ui/components/alert-banner/alert-banner.component.html +0 -22
  494. package/projects/tgo-canopy-ui/components/alert-banner/alert-banner.component.module.ts +0 -12
  495. package/projects/tgo-canopy-ui/components/alert-banner/alert-banner.component.scss +0 -39
  496. package/projects/tgo-canopy-ui/components/alert-banner/alert-banner.component.spec.ts +0 -177
  497. package/projects/tgo-canopy-ui/components/alert-banner/alert-banner.component.stories.ts +0 -100
  498. package/projects/tgo-canopy-ui/components/alert-banner/alert-banner.component.ts +0 -130
  499. package/projects/tgo-canopy-ui/components/autocomplete/autocomplete.component.html +0 -198
  500. package/projects/tgo-canopy-ui/components/autocomplete/autocomplete.component.module.ts +0 -40
  501. package/projects/tgo-canopy-ui/components/autocomplete/autocomplete.component.scss +0 -283
  502. package/projects/tgo-canopy-ui/components/autocomplete/autocomplete.component.spec.ts +0 -238
  503. package/projects/tgo-canopy-ui/components/autocomplete/autocomplete.component.stories.ts +0 -135
  504. package/projects/tgo-canopy-ui/components/autocomplete/autocomplete.component.ts +0 -519
  505. package/projects/tgo-canopy-ui/components/autocomplete/autocomplete.model.ts +0 -22
  506. package/projects/tgo-canopy-ui/components/autocomplete/includes.pipe.spec.ts +0 -33
  507. package/projects/tgo-canopy-ui/components/autocomplete/includes.pipe.ts +0 -15
  508. package/projects/tgo-canopy-ui/components/autocomplete/transform-Item.pipe.ts +0 -21
  509. package/projects/tgo-canopy-ui/components/autocomplete/transform-item.pipe.spec.ts +0 -24
  510. package/projects/tgo-canopy-ui/components/avatar/avatar.component.html +0 -23
  511. package/projects/tgo-canopy-ui/components/avatar/avatar.component.module.ts +0 -14
  512. package/projects/tgo-canopy-ui/components/avatar/avatar.component.scss +0 -75
  513. package/projects/tgo-canopy-ui/components/avatar/avatar.component.spec.ts +0 -39
  514. package/projects/tgo-canopy-ui/components/avatar/avatar.component.stories.ts +0 -111
  515. package/projects/tgo-canopy-ui/components/avatar/avatar.component.ts +0 -76
  516. package/projects/tgo-canopy-ui/components/avatar/avatar.model.ts +0 -13
  517. package/projects/tgo-canopy-ui/components/badge/badge.component.html +0 -10
  518. package/projects/tgo-canopy-ui/components/badge/badge.component.module.ts +0 -11
  519. package/projects/tgo-canopy-ui/components/badge/badge.component.scss +0 -147
  520. package/projects/tgo-canopy-ui/components/badge/badge.component.spec.ts +0 -57
  521. package/projects/tgo-canopy-ui/components/badge/badge.component.stories.ts +0 -61
  522. package/projects/tgo-canopy-ui/components/badge/badge.component.ts +0 -99
  523. package/projects/tgo-canopy-ui/components/badge/badge.model.ts +0 -40
  524. package/projects/tgo-canopy-ui/components/button/__snapshots__/button.component.spec.ts.snap +0 -64
  525. package/projects/tgo-canopy-ui/components/button/button.component.html +0 -80
  526. package/projects/tgo-canopy-ui/components/button/button.component.module.ts +0 -23
  527. package/projects/tgo-canopy-ui/components/button/button.component.scss +0 -1012
  528. package/projects/tgo-canopy-ui/components/button/button.component.spec.ts +0 -274
  529. package/projects/tgo-canopy-ui/components/button/button.component.stories.ts +0 -455
  530. package/projects/tgo-canopy-ui/components/button/button.component.ts +0 -393
  531. package/projects/tgo-canopy-ui/components/button/button.model.ts +0 -28
  532. package/projects/tgo-canopy-ui/components/card/card.component.html +0 -9
  533. package/projects/tgo-canopy-ui/components/card/card.component.module.ts +0 -11
  534. package/projects/tgo-canopy-ui/components/card/card.component.scss +0 -91
  535. package/projects/tgo-canopy-ui/components/card/card.component.spec.ts +0 -76
  536. package/projects/tgo-canopy-ui/components/card/card.component.stories.ts +0 -88
  537. package/projects/tgo-canopy-ui/components/card/card.component.ts +0 -72
  538. package/projects/tgo-canopy-ui/components/checkbox/checkbox.component.html +0 -23
  539. package/projects/tgo-canopy-ui/components/checkbox/checkbox.component.module.ts +0 -17
  540. package/projects/tgo-canopy-ui/components/checkbox/checkbox.component.scss +0 -221
  541. package/projects/tgo-canopy-ui/components/checkbox/checkbox.component.spec.ts +0 -191
  542. package/projects/tgo-canopy-ui/components/checkbox/checkbox.component.stories.ts +0 -122
  543. package/projects/tgo-canopy-ui/components/checkbox/checkbox.component.ts +0 -233
  544. package/projects/tgo-canopy-ui/components/confirm-dialog/confirm-dialog.component.html +0 -16
  545. package/projects/tgo-canopy-ui/components/confirm-dialog/confirm-dialog.component.module.ts +0 -18
  546. package/projects/tgo-canopy-ui/components/confirm-dialog/confirm-dialog.component.scss +0 -3
  547. package/projects/tgo-canopy-ui/components/confirm-dialog/confirm-dialog.component.spec.ts +0 -42
  548. package/projects/tgo-canopy-ui/components/confirm-dialog/confirm-dialog.component.ts +0 -43
  549. package/projects/tgo-canopy-ui/components/confirm-dialog/confirm-dialog.model.ts +0 -10
  550. package/projects/tgo-canopy-ui/components/confirm-dialog/confirm-dialog.stories.ts +0 -37
  551. package/projects/tgo-canopy-ui/components/datepicker/__snapshots__/datepicker.component.spec.ts.snap +0 -56
  552. package/projects/tgo-canopy-ui/components/datepicker/datepicker.component.html +0 -98
  553. package/projects/tgo-canopy-ui/components/datepicker/datepicker.component.module.ts +0 -33
  554. package/projects/tgo-canopy-ui/components/datepicker/datepicker.component.scss +0 -195
  555. package/projects/tgo-canopy-ui/components/datepicker/datepicker.component.spec.ts +0 -249
  556. package/projects/tgo-canopy-ui/components/datepicker/datepicker.component.stories.ts +0 -138
  557. package/projects/tgo-canopy-ui/components/datepicker/datepicker.component.ts +0 -358
  558. package/projects/tgo-canopy-ui/components/datepicker/no-date-format.directive.spec.ts +0 -35
  559. package/projects/tgo-canopy-ui/components/datepicker/no-date-format.directive.ts +0 -43
  560. package/projects/tgo-canopy-ui/components/deprecated-paginator/deprecated-paginator.component.html +0 -5
  561. package/projects/tgo-canopy-ui/components/deprecated-paginator/deprecated-paginator.component.module.ts +0 -12
  562. package/projects/tgo-canopy-ui/components/deprecated-paginator/deprecated-paginator.component.scss +0 -32
  563. package/projects/tgo-canopy-ui/components/deprecated-paginator/deprecated-paginator.component.stories.ts +0 -31
  564. package/projects/tgo-canopy-ui/components/deprecated-paginator/deprecated-paginator.component.ts +0 -54
  565. package/projects/tgo-canopy-ui/components/deprecated-table/deprecated-table.component.html +0 -113
  566. package/projects/tgo-canopy-ui/components/deprecated-table/deprecated-table.component.module.ts +0 -25
  567. package/projects/tgo-canopy-ui/components/deprecated-table/deprecated-table.component.scss +0 -188
  568. package/projects/tgo-canopy-ui/components/deprecated-table/deprecated-table.component.stories.ts +0 -620
  569. package/projects/tgo-canopy-ui/components/deprecated-table/deprecated-table.component.ts +0 -160
  570. package/projects/tgo-canopy-ui/components/deprecated-table/deprecated-table.model.ts +0 -51
  571. package/projects/tgo-canopy-ui/components/deprecated-table/directives/dynamic-component.directive.ts +0 -41
  572. package/projects/tgo-canopy-ui/components/dialog/__snapshots__/dialog.component.spec.ts.snap +0 -51
  573. package/projects/tgo-canopy-ui/components/dialog/dialog.component.html +0 -41
  574. package/projects/tgo-canopy-ui/components/dialog/dialog.component.module.ts +0 -15
  575. package/projects/tgo-canopy-ui/components/dialog/dialog.component.scss +0 -133
  576. package/projects/tgo-canopy-ui/components/dialog/dialog.component.spec.ts +0 -230
  577. package/projects/tgo-canopy-ui/components/dialog/dialog.component.stories.ts +0 -60
  578. package/projects/tgo-canopy-ui/components/dialog/dialog.component.ts +0 -184
  579. package/projects/tgo-canopy-ui/components/dialog/dialog.service.spec.ts +0 -55
  580. package/projects/tgo-canopy-ui/components/dialog/dialog.service.ts +0 -33
  581. package/projects/tgo-canopy-ui/components/dialog-custom/__snapshots__/dialog-custom.component.spec.ts.snap +0 -28
  582. package/projects/tgo-canopy-ui/components/dialog-custom/dialog-custom +0 -0
  583. package/projects/tgo-canopy-ui/components/dialog-custom/dialog-custom.component.html +0 -38
  584. package/projects/tgo-canopy-ui/components/dialog-custom/dialog-custom.component.mdx +0 -38
  585. package/projects/tgo-canopy-ui/components/dialog-custom/dialog-custom.component.module.ts +0 -11
  586. package/projects/tgo-canopy-ui/components/dialog-custom/dialog-custom.component.scss +0 -0
  587. package/projects/tgo-canopy-ui/components/dialog-custom/dialog-custom.component.spec.ts +0 -56
  588. package/projects/tgo-canopy-ui/components/dialog-custom/dialog-custom.component.stories.ts +0 -27
  589. package/projects/tgo-canopy-ui/components/dialog-custom/dialog-custom.component.ts +0 -45
  590. package/projects/tgo-canopy-ui/components/dialog-demo/__snapshots__/dialog-demo.component.spec.ts.snap +0 -21
  591. package/projects/tgo-canopy-ui/components/dialog-demo/dialog-demo.component.html +0 -4
  592. package/projects/tgo-canopy-ui/components/dialog-demo/dialog-demo.component.mdx +0 -28
  593. package/projects/tgo-canopy-ui/components/dialog-demo/dialog-demo.component.module.ts +0 -15
  594. package/projects/tgo-canopy-ui/components/dialog-demo/dialog-demo.component.scss +0 -12
  595. package/projects/tgo-canopy-ui/components/dialog-demo/dialog-demo.component.spec.ts +0 -58
  596. package/projects/tgo-canopy-ui/components/dialog-demo/dialog-demo.component.stories.ts +0 -30
  597. package/projects/tgo-canopy-ui/components/dialog-demo/dialog-demo.component.ts +0 -33
  598. package/projects/tgo-canopy-ui/components/divider/divider.component.html +0 -13
  599. package/projects/tgo-canopy-ui/components/divider/divider.component.module.ts +0 -11
  600. package/projects/tgo-canopy-ui/components/divider/divider.component.scss +0 -57
  601. package/projects/tgo-canopy-ui/components/divider/divider.component.spec.ts +0 -21
  602. package/projects/tgo-canopy-ui/components/divider/divider.component.stories.ts +0 -48
  603. package/projects/tgo-canopy-ui/components/divider/divider.component.ts +0 -54
  604. package/projects/tgo-canopy-ui/components/dropdown/dropdown.component.html +0 -43
  605. package/projects/tgo-canopy-ui/components/dropdown/dropdown.component.module.ts +0 -31
  606. package/projects/tgo-canopy-ui/components/dropdown/dropdown.component.scss +0 -237
  607. package/projects/tgo-canopy-ui/components/dropdown/dropdown.component.spec.ts +0 -104
  608. package/projects/tgo-canopy-ui/components/dropdown/dropdown.component.stories.ts +0 -213
  609. package/projects/tgo-canopy-ui/components/dropdown/dropdown.component.ts +0 -250
  610. package/projects/tgo-canopy-ui/components/dropdown/dropdown.model.ts +0 -5
  611. package/projects/tgo-canopy-ui/components/elevation-shadow/elevation-shadow.component.html +0 -3
  612. package/projects/tgo-canopy-ui/components/elevation-shadow/elevation-shadow.component.module.ts +0 -10
  613. package/projects/tgo-canopy-ui/components/elevation-shadow/elevation-shadow.component.scss +0 -41
  614. package/projects/tgo-canopy-ui/components/elevation-shadow/elevation-shadow.component.spec.ts +0 -39
  615. package/projects/tgo-canopy-ui/components/elevation-shadow/elevation-shadow.component.stories.ts +0 -59
  616. package/projects/tgo-canopy-ui/components/elevation-shadow/elevation-shadow.component.ts +0 -38
  617. package/projects/tgo-canopy-ui/components/elevation-shadow/elevation-shadow.constant.ts +0 -9
  618. package/projects/tgo-canopy-ui/components/empty-state/empty-state.component.html +0 -25
  619. package/projects/tgo-canopy-ui/components/empty-state/empty-state.component.module.ts +0 -13
  620. package/projects/tgo-canopy-ui/components/empty-state/empty-state.component.scss +0 -70
  621. package/projects/tgo-canopy-ui/components/empty-state/empty-state.component.spec.ts +0 -80
  622. package/projects/tgo-canopy-ui/components/empty-state/empty-state.component.stories.ts +0 -159
  623. package/projects/tgo-canopy-ui/components/empty-state/empty-state.component.ts +0 -174
  624. package/projects/tgo-canopy-ui/components/field/__snapshots__/field.component.spec.ts.snap +0 -55
  625. package/projects/tgo-canopy-ui/components/field/field.component.html +0 -105
  626. package/projects/tgo-canopy-ui/components/field/field.component.module.ts +0 -32
  627. package/projects/tgo-canopy-ui/components/field/field.component.scss +0 -492
  628. package/projects/tgo-canopy-ui/components/field/field.component.spec.ts +0 -268
  629. package/projects/tgo-canopy-ui/components/field/field.component.stories.ts +0 -212
  630. package/projects/tgo-canopy-ui/components/field/field.component.ts +0 -430
  631. package/projects/tgo-canopy-ui/components/field/field.model.ts +0 -11
  632. package/projects/tgo-canopy-ui/components/file-upload/__snapshots__/file-upload.component.spec.ts.snap +0 -59
  633. package/projects/tgo-canopy-ui/components/file-upload/file-upload.component.html +0 -94
  634. package/projects/tgo-canopy-ui/components/file-upload/file-upload.component.module.ts +0 -23
  635. package/projects/tgo-canopy-ui/components/file-upload/file-upload.component.scss +0 -182
  636. package/projects/tgo-canopy-ui/components/file-upload/file-upload.component.spec.ts +0 -142
  637. package/projects/tgo-canopy-ui/components/file-upload/file-upload.component.stories.ts +0 -96
  638. package/projects/tgo-canopy-ui/components/file-upload/file-upload.component.ts +0 -284
  639. package/projects/tgo-canopy-ui/components/file-upload-demo/file-upload-demo.component.html +0 -32
  640. package/projects/tgo-canopy-ui/components/file-upload-demo/file-upload-demo.component.module.ts +0 -14
  641. package/projects/tgo-canopy-ui/components/file-upload-demo/file-upload-demo.component.scss +0 -23
  642. package/projects/tgo-canopy-ui/components/file-upload-demo/file-upload-demo.component.spec.ts +0 -111
  643. package/projects/tgo-canopy-ui/components/file-upload-demo/file-upload-demo.component.stories.ts +0 -28
  644. package/projects/tgo-canopy-ui/components/file-upload-demo/file-upload-demo.component.ts +0 -74
  645. package/projects/tgo-canopy-ui/components/form-demo/form-demo-component.stories.ts +0 -41
  646. package/projects/tgo-canopy-ui/components/form-demo/form-demo.component.html +0 -210
  647. package/projects/tgo-canopy-ui/components/form-demo/form-demo.component.module.ts +0 -34
  648. package/projects/tgo-canopy-ui/components/form-demo/form-demo.component.scss +0 -59
  649. package/projects/tgo-canopy-ui/components/form-demo/form-demo.component.spec.ts +0 -127
  650. package/projects/tgo-canopy-ui/components/form-demo/form-demo.component.ts +0 -217
  651. package/projects/tgo-canopy-ui/components/form-demo/form-demo.model.ts +0 -6
  652. package/projects/tgo-canopy-ui/components/icon/__snapshots__/icon.component.spec.ts.snap +0 -20
  653. package/projects/tgo-canopy-ui/components/icon/icon.component.html +0 -1
  654. package/projects/tgo-canopy-ui/components/icon/icon.component.module.ts +0 -13
  655. package/projects/tgo-canopy-ui/components/icon/icon.component.scss +0 -66
  656. package/projects/tgo-canopy-ui/components/icon/icon.component.spec.ts +0 -150
  657. package/projects/tgo-canopy-ui/components/icon/icon.component.stories.ts +0 -68
  658. package/projects/tgo-canopy-ui/components/icon/icon.component.ts +0 -147
  659. package/projects/tgo-canopy-ui/components/icon/icon.config.ts +0 -658
  660. package/projects/tgo-canopy-ui/components/icon/icon.model.ts +0 -8
  661. package/projects/tgo-canopy-ui/components/icon-label/__snapshots__/icon-label.component.spec.ts.snap +0 -15
  662. package/projects/tgo-canopy-ui/components/icon-label/icon-label.component.html +0 -2
  663. package/projects/tgo-canopy-ui/components/icon-label/icon-label.component.module.ts +0 -12
  664. package/projects/tgo-canopy-ui/components/icon-label/icon-label.component.scss +0 -8
  665. package/projects/tgo-canopy-ui/components/icon-label/icon-label.component.spec.ts +0 -64
  666. package/projects/tgo-canopy-ui/components/icon-label/icon-label.component.stories.ts +0 -48
  667. package/projects/tgo-canopy-ui/components/icon-label/icon-label.component.ts +0 -53
  668. package/projects/tgo-canopy-ui/components/icons-showcase/__snapshots__/icons-showcase.component.spec.ts.snap +0 -3487
  669. package/projects/tgo-canopy-ui/components/icons-showcase/icons-showcase.component.html +0 -17
  670. package/projects/tgo-canopy-ui/components/icons-showcase/icons-showcase.component.module.ts +0 -12
  671. package/projects/tgo-canopy-ui/components/icons-showcase/icons-showcase.component.scss +0 -25
  672. package/projects/tgo-canopy-ui/components/icons-showcase/icons-showcase.component.spec.ts +0 -40
  673. package/projects/tgo-canopy-ui/components/icons-showcase/icons-showcase.component.stories.ts +0 -44
  674. package/projects/tgo-canopy-ui/components/icons-showcase/icons-showcase.component.ts +0 -43
  675. package/projects/tgo-canopy-ui/components/login/login.component.scss +0 -0
  676. package/projects/tgo-canopy-ui/components/logo/logo.component.html +0 -14
  677. package/projects/tgo-canopy-ui/components/logo/logo.component.module.ts +0 -10
  678. package/projects/tgo-canopy-ui/components/logo/logo.component.scss +0 -13
  679. package/projects/tgo-canopy-ui/components/logo/logo.component.spec.ts +0 -162
  680. package/projects/tgo-canopy-ui/components/logo/logo.component.stories.ts +0 -55
  681. package/projects/tgo-canopy-ui/components/logo/logo.component.ts +0 -148
  682. package/projects/tgo-canopy-ui/components/logo/logo.model.ts +0 -30
  683. package/projects/tgo-canopy-ui/components/navbar/mobile-navbar-side-sheet/mobile-navbar-side-sheet.component.html +0 -36
  684. package/projects/tgo-canopy-ui/components/navbar/mobile-navbar-side-sheet/mobile-navbar-side-sheet.component.scss +0 -70
  685. package/projects/tgo-canopy-ui/components/navbar/mobile-navbar-side-sheet/mobile-navbar-side-sheet.component.spec.ts +0 -58
  686. package/projects/tgo-canopy-ui/components/navbar/mobile-navbar-side-sheet/mobile-navbar-side-sheet.component.ts +0 -58
  687. package/projects/tgo-canopy-ui/components/navbar/navbar.component.html +0 -62
  688. package/projects/tgo-canopy-ui/components/navbar/navbar.component.module.ts +0 -36
  689. package/projects/tgo-canopy-ui/components/navbar/navbar.component.scss +0 -240
  690. package/projects/tgo-canopy-ui/components/navbar/navbar.component.spec.ts +0 -136
  691. package/projects/tgo-canopy-ui/components/navbar/navbar.component.stories.ts +0 -134
  692. package/projects/tgo-canopy-ui/components/navbar/navbar.component.ts +0 -206
  693. package/projects/tgo-canopy-ui/components/navbar/navbar.model.ts +0 -12
  694. package/projects/tgo-canopy-ui/components/overflow-menu/__snapshots__/overflow-menu.component.spec.ts.snap +0 -28
  695. package/projects/tgo-canopy-ui/components/overflow-menu/overflow-menu.component.html +0 -47
  696. package/projects/tgo-canopy-ui/components/overflow-menu/overflow-menu.component.module.ts +0 -13
  697. package/projects/tgo-canopy-ui/components/overflow-menu/overflow-menu.component.scss +0 -98
  698. package/projects/tgo-canopy-ui/components/overflow-menu/overflow-menu.component.spec.ts +0 -124
  699. package/projects/tgo-canopy-ui/components/overflow-menu/overflow-menu.component.stories.ts +0 -58
  700. package/projects/tgo-canopy-ui/components/overflow-menu/overflow-menu.component.ts +0 -88
  701. package/projects/tgo-canopy-ui/components/overflow-menu/overflow-menu.model.ts +0 -11
  702. package/projects/tgo-canopy-ui/components/page-header/page-header.component.html +0 -35
  703. package/projects/tgo-canopy-ui/components/page-header/page-header.component.module.ts +0 -12
  704. package/projects/tgo-canopy-ui/components/page-header/page-header.component.scss +0 -61
  705. package/projects/tgo-canopy-ui/components/page-header/page-header.component.spec.ts +0 -34
  706. package/projects/tgo-canopy-ui/components/page-header/page-header.component.stories.ts +0 -56
  707. package/projects/tgo-canopy-ui/components/page-header/page-header.component.ts +0 -64
  708. package/projects/tgo-canopy-ui/components/paginator/paginator.component.html +0 -10
  709. package/projects/tgo-canopy-ui/components/paginator/paginator.component.module.ts +0 -11
  710. package/projects/tgo-canopy-ui/components/paginator/paginator.component.scss +0 -159
  711. package/projects/tgo-canopy-ui/components/paginator/paginator.component.spec.ts +0 -29
  712. package/projects/tgo-canopy-ui/components/paginator/paginator.component.stories.ts +0 -36
  713. package/projects/tgo-canopy-ui/components/paginator/paginator.component.ts +0 -67
  714. package/projects/tgo-canopy-ui/components/password-criteria/password.component.html +0 -31
  715. package/projects/tgo-canopy-ui/components/password-criteria/password.component.module.ts +0 -22
  716. package/projects/tgo-canopy-ui/components/password-criteria/password.component.scss +0 -56
  717. package/projects/tgo-canopy-ui/components/password-criteria/password.component.spec.ts +0 -45
  718. package/projects/tgo-canopy-ui/components/password-criteria/password.component.stories.ts +0 -49
  719. package/projects/tgo-canopy-ui/components/password-criteria/password.component.ts +0 -106
  720. package/projects/tgo-canopy-ui/components/password-strength/password-strength.component.html +0 -19
  721. package/projects/tgo-canopy-ui/components/password-strength/password-strength.component.module.ts +0 -13
  722. package/projects/tgo-canopy-ui/components/password-strength/password-strength.component.scss +0 -54
  723. package/projects/tgo-canopy-ui/components/password-strength/password-strength.component.spec.ts +0 -40
  724. package/projects/tgo-canopy-ui/components/password-strength/password-strength.component.stories.ts +0 -50
  725. package/projects/tgo-canopy-ui/components/password-strength/password-strength.component.ts +0 -98
  726. package/projects/tgo-canopy-ui/components/password-strength-demo/password-strength-demo.component.html +0 -2
  727. package/projects/tgo-canopy-ui/components/password-strength-demo/password-strength-demo.component.scss +0 -0
  728. package/projects/tgo-canopy-ui/components/password-strength-demo/password-strength-demo.component.spec.ts +0 -28
  729. package/projects/tgo-canopy-ui/components/password-strength-demo/password-strength-demo.component.stories.ts +0 -40
  730. package/projects/tgo-canopy-ui/components/password-strength-demo/password-strength-demo.component.ts +0 -20
  731. package/projects/tgo-canopy-ui/components/phone-input/join-string.pipe.spec.ts +0 -9
  732. package/projects/tgo-canopy-ui/components/phone-input/join-strings.pipe.ts +0 -8
  733. package/projects/tgo-canopy-ui/components/phone-input/phone-input.component.html +0 -64
  734. package/projects/tgo-canopy-ui/components/phone-input/phone-input.component.module.ts +0 -35
  735. package/projects/tgo-canopy-ui/components/phone-input/phone-input.component.scss +0 -133
  736. package/projects/tgo-canopy-ui/components/phone-input/phone-input.component.spec.ts +0 -212
  737. package/projects/tgo-canopy-ui/components/phone-input/phone-input.component.stories.ts +0 -89
  738. package/projects/tgo-canopy-ui/components/phone-input/phone-input.component.ts +0 -427
  739. package/projects/tgo-canopy-ui/components/phone-input/phone-input.model.ts +0 -8
  740. package/projects/tgo-canopy-ui/components/progress-bar/progress-bar.component.html +0 -9
  741. package/projects/tgo-canopy-ui/components/progress-bar/progress-bar.component.module.ts +0 -12
  742. package/projects/tgo-canopy-ui/components/progress-bar/progress-bar.component.scss +0 -152
  743. package/projects/tgo-canopy-ui/components/progress-bar/progress-bar.component.spec.ts +0 -76
  744. package/projects/tgo-canopy-ui/components/progress-bar/progress-bar.component.stories.ts +0 -48
  745. package/projects/tgo-canopy-ui/components/progress-bar/progress-bar.component.ts +0 -82
  746. package/projects/tgo-canopy-ui/components/radial-progress/radial-progress.component.html +0 -26
  747. package/projects/tgo-canopy-ui/components/radial-progress/radial-progress.component.module.ts +0 -12
  748. package/projects/tgo-canopy-ui/components/radial-progress/radial-progress.component.scss +0 -41
  749. package/projects/tgo-canopy-ui/components/radial-progress/radial-progress.component.spec.ts +0 -102
  750. package/projects/tgo-canopy-ui/components/radial-progress/radial-progress.component.stories.ts +0 -69
  751. package/projects/tgo-canopy-ui/components/radial-progress/radial-progress.component.ts +0 -114
  752. package/projects/tgo-canopy-ui/components/radial-progress/radial-progress.model.ts +0 -13
  753. package/projects/tgo-canopy-ui/components/radio-button/radio-button.component.html +0 -16
  754. package/projects/tgo-canopy-ui/components/radio-button/radio-button.component.module.ts +0 -13
  755. package/projects/tgo-canopy-ui/components/radio-button/radio-button.component.scss +0 -175
  756. package/projects/tgo-canopy-ui/components/radio-button/radio-button.component.spec.ts +0 -141
  757. package/projects/tgo-canopy-ui/components/radio-button/radio-button.component.stories.ts +0 -126
  758. package/projects/tgo-canopy-ui/components/radio-button/radio-button.component.ts +0 -190
  759. package/projects/tgo-canopy-ui/components/radio-button/radio-button.model.ts +0 -4
  760. package/projects/tgo-canopy-ui/components/rating/__snapshots__/rating.component.spec.ts.snap +0 -47
  761. package/projects/tgo-canopy-ui/components/rating/half-star.pipe.spec.ts +0 -33
  762. package/projects/tgo-canopy-ui/components/rating/half-star.pipe.ts +0 -17
  763. package/projects/tgo-canopy-ui/components/rating/rating.component.html +0 -31
  764. package/projects/tgo-canopy-ui/components/rating/rating.component.module.ts +0 -12
  765. package/projects/tgo-canopy-ui/components/rating/rating.component.scss +0 -139
  766. package/projects/tgo-canopy-ui/components/rating/rating.component.spec.ts +0 -142
  767. package/projects/tgo-canopy-ui/components/rating/rating.component.stories.ts +0 -87
  768. package/projects/tgo-canopy-ui/components/rating/rating.component.ts +0 -97
  769. package/projects/tgo-canopy-ui/components/scale/__snapshots__/scale.component.spec.ts.snap +0 -42
  770. package/projects/tgo-canopy-ui/components/scale/scale.component.html +0 -7
  771. package/projects/tgo-canopy-ui/components/scale/scale.component.module.ts +0 -12
  772. package/projects/tgo-canopy-ui/components/scale/scale.component.scss +0 -71
  773. package/projects/tgo-canopy-ui/components/scale/scale.component.spec.ts +0 -125
  774. package/projects/tgo-canopy-ui/components/scale/scale.component.stories.ts +0 -60
  775. package/projects/tgo-canopy-ui/components/scale/scale.component.ts +0 -57
  776. package/projects/tgo-canopy-ui/components/segmented-bar/segmented-bar.component.html +0 -16
  777. package/projects/tgo-canopy-ui/components/segmented-bar/segmented-bar.component.module.ts +0 -12
  778. package/projects/tgo-canopy-ui/components/segmented-bar/segmented-bar.component.scss +0 -86
  779. package/projects/tgo-canopy-ui/components/segmented-bar/segmented-bar.component.spec.ts +0 -69
  780. package/projects/tgo-canopy-ui/components/segmented-bar/segmented-bar.component.stories.ts +0 -98
  781. package/projects/tgo-canopy-ui/components/segmented-bar/segmented-bar.component.ts +0 -69
  782. package/projects/tgo-canopy-ui/components/segmented-bar/segmented-bar.model.ts +0 -8
  783. package/projects/tgo-canopy-ui/components/segmented-button/segmented-button.component.html +0 -11
  784. package/projects/tgo-canopy-ui/components/segmented-button/segmented-button.component.module.ts +0 -22
  785. package/projects/tgo-canopy-ui/components/segmented-button/segmented-button.component.scss +0 -44
  786. package/projects/tgo-canopy-ui/components/segmented-button/segmented-button.component.spec.ts +0 -50
  787. package/projects/tgo-canopy-ui/components/segmented-button/segmented-button.component.stories.ts +0 -48
  788. package/projects/tgo-canopy-ui/components/segmented-button/segmented-button.component.ts +0 -54
  789. package/projects/tgo-canopy-ui/components/segmented-button/segmented-button.model.ts +0 -7
  790. package/projects/tgo-canopy-ui/components/side-sheet/side-sheet.component.html +0 -37
  791. package/projects/tgo-canopy-ui/components/side-sheet/side-sheet.component.module.ts +0 -24
  792. package/projects/tgo-canopy-ui/components/side-sheet/side-sheet.component.scss +0 -97
  793. package/projects/tgo-canopy-ui/components/side-sheet/side-sheet.component.spec.ts +0 -176
  794. package/projects/tgo-canopy-ui/components/side-sheet/side-sheet.component.ts +0 -110
  795. package/projects/tgo-canopy-ui/components/side-sheet/side-sheet.model.ts +0 -12
  796. package/projects/tgo-canopy-ui/components/side-sheet/side-sheet.service.spec.ts +0 -88
  797. package/projects/tgo-canopy-ui/components/side-sheet/side-sheet.service.ts +0 -28
  798. package/projects/tgo-canopy-ui/components/side-sheet-demo/side-sheet-demo.component.html +0 -5
  799. package/projects/tgo-canopy-ui/components/side-sheet-demo/side-sheet-demo.component.scss +0 -14
  800. package/projects/tgo-canopy-ui/components/side-sheet-demo/side-sheet-demo.component.spec.ts +0 -26
  801. package/projects/tgo-canopy-ui/components/side-sheet-demo/side-sheet-demo.component.stories.ts +0 -54
  802. package/projects/tgo-canopy-ui/components/side-sheet-demo/side-sheet-demo.component.ts +0 -98
  803. package/projects/tgo-canopy-ui/components/side-sheet-demo/side-sheet-demo.module.ts +0 -12
  804. package/projects/tgo-canopy-ui/components/skeleton/skeleton.component.html +0 -5
  805. package/projects/tgo-canopy-ui/components/skeleton/skeleton.component.scss +0 -0
  806. package/projects/tgo-canopy-ui/components/skeleton/skeleton.component.spec.ts +0 -75
  807. package/projects/tgo-canopy-ui/components/skeleton/skeleton.component.stories.ts +0 -47
  808. package/projects/tgo-canopy-ui/components/skeleton/skeleton.component.ts +0 -66
  809. package/projects/tgo-canopy-ui/components/skeleton/skeleton.model.ts +0 -3
  810. package/projects/tgo-canopy-ui/components/slider/slider.component.html +0 -75
  811. package/projects/tgo-canopy-ui/components/slider/slider.component.module.ts +0 -24
  812. package/projects/tgo-canopy-ui/components/slider/slider.component.scss +0 -223
  813. package/projects/tgo-canopy-ui/components/slider/slider.component.spec.ts +0 -103
  814. package/projects/tgo-canopy-ui/components/slider/slider.component.stories.ts +0 -87
  815. package/projects/tgo-canopy-ui/components/slider/slider.component.ts +0 -185
  816. package/projects/tgo-canopy-ui/components/slider/slider.model.ts +0 -4
  817. package/projects/tgo-canopy-ui/components/snackbar/__snapshots__/snackbar.component.spec.ts.snap +0 -44
  818. package/projects/tgo-canopy-ui/components/snackbar/snackbar.component.html +0 -33
  819. package/projects/tgo-canopy-ui/components/snackbar/snackbar.component.module.ts +0 -16
  820. package/projects/tgo-canopy-ui/components/snackbar/snackbar.component.scss +0 -45
  821. package/projects/tgo-canopy-ui/components/snackbar/snackbar.component.spec.ts +0 -214
  822. package/projects/tgo-canopy-ui/components/snackbar/snackbar.component.stories.ts +0 -159
  823. package/projects/tgo-canopy-ui/components/snackbar/snackbar.component.ts +0 -196
  824. package/projects/tgo-canopy-ui/components/snackbar/snackbar.service.spec.ts +0 -52
  825. package/projects/tgo-canopy-ui/components/snackbar/snackbar.service.ts +0 -37
  826. package/projects/tgo-canopy-ui/components/spinner/spinner.component.html +0 -6
  827. package/projects/tgo-canopy-ui/components/spinner/spinner.component.scss +0 -75
  828. package/projects/tgo-canopy-ui/components/spinner/spinner.component.spec.ts +0 -82
  829. package/projects/tgo-canopy-ui/components/spinner/spinner.component.stories.ts +0 -46
  830. package/projects/tgo-canopy-ui/components/spinner/spinner.component.ts +0 -59
  831. package/projects/tgo-canopy-ui/components/spinner/spinner.module.ts +0 -10
  832. package/projects/tgo-canopy-ui/components/step/step.component.html +0 -100
  833. package/projects/tgo-canopy-ui/components/step/step.component.module.ts +0 -11
  834. package/projects/tgo-canopy-ui/components/step/step.component.scss +0 -315
  835. package/projects/tgo-canopy-ui/components/step/step.component.spec.ts +0 -61
  836. package/projects/tgo-canopy-ui/components/step/step.component.ts +0 -134
  837. package/projects/tgo-canopy-ui/components/stepper/stepper.component.html +0 -79
  838. package/projects/tgo-canopy-ui/components/stepper/stepper.component.module.ts +0 -25
  839. package/projects/tgo-canopy-ui/components/stepper/stepper.component.scss +0 -144
  840. package/projects/tgo-canopy-ui/components/stepper/stepper.component.spec.ts +0 -64
  841. package/projects/tgo-canopy-ui/components/stepper/stepper.component.stories.ts +0 -84
  842. package/projects/tgo-canopy-ui/components/stepper/stepper.component.ts +0 -118
  843. package/projects/tgo-canopy-ui/components/stepper/stepper.model.ts +0 -10
  844. package/projects/tgo-canopy-ui/components/table/sentence-case.pipe.ts +0 -13
  845. package/projects/tgo-canopy-ui/components/table/sentence-case.spec.ts +0 -53
  846. package/projects/tgo-canopy-ui/components/table/table.component.html +0 -290
  847. package/projects/tgo-canopy-ui/components/table/table.component.module.ts +0 -33
  848. package/projects/tgo-canopy-ui/components/table/table.component.scss +0 -201
  849. package/projects/tgo-canopy-ui/components/table/table.component.spec.ts +0 -187
  850. package/projects/tgo-canopy-ui/components/table/table.component.stories.ts +0 -425
  851. package/projects/tgo-canopy-ui/components/table/table.component.ts +0 -235
  852. package/projects/tgo-canopy-ui/components/table/table.model.ts +0 -103
  853. package/projects/tgo-canopy-ui/components/tabs/tab.directive.ts +0 -33
  854. package/projects/tgo-canopy-ui/components/tabs/tabs.component.html +0 -19
  855. package/projects/tgo-canopy-ui/components/tabs/tabs.component.module.ts +0 -22
  856. package/projects/tgo-canopy-ui/components/tabs/tabs.component.scss +0 -234
  857. package/projects/tgo-canopy-ui/components/tabs/tabs.component.spec.ts +0 -85
  858. package/projects/tgo-canopy-ui/components/tabs/tabs.component.stories.ts +0 -73
  859. package/projects/tgo-canopy-ui/components/tabs/tabs.component.ts +0 -79
  860. package/projects/tgo-canopy-ui/components/tabs/tabs.directive.spec.ts +0 -90
  861. package/projects/tgo-canopy-ui/components/tabs/tabs.model.ts +0 -11
  862. package/projects/tgo-canopy-ui/components/tag/__snapshots__/tag.component.spec.ts.snap +0 -42
  863. package/projects/tgo-canopy-ui/components/tag/tag.component.html +0 -26
  864. package/projects/tgo-canopy-ui/components/tag/tag.component.module.ts +0 -15
  865. package/projects/tgo-canopy-ui/components/tag/tag.component.scss +0 -161
  866. package/projects/tgo-canopy-ui/components/tag/tag.component.spec.ts +0 -193
  867. package/projects/tgo-canopy-ui/components/tag/tag.component.stories.ts +0 -125
  868. package/projects/tgo-canopy-ui/components/tag/tag.component.ts +0 -213
  869. package/projects/tgo-canopy-ui/components/toggle/toggle.component.html +0 -24
  870. package/projects/tgo-canopy-ui/components/toggle/toggle.component.module.ts +0 -14
  871. package/projects/tgo-canopy-ui/components/toggle/toggle.component.scss +0 -202
  872. package/projects/tgo-canopy-ui/components/toggle/toggle.component.spec.ts +0 -197
  873. package/projects/tgo-canopy-ui/components/toggle/toggle.component.stories.ts +0 -97
  874. package/projects/tgo-canopy-ui/components/toggle/toggle.component.ts +0 -179
  875. package/projects/tgo-canopy-ui/components/tooltip/tooltip.component.html +0 -9
  876. package/projects/tgo-canopy-ui/components/tooltip/tooltip.component.module.ts +0 -10
  877. package/projects/tgo-canopy-ui/components/tooltip/tooltip.component.spec.ts +0 -53
  878. package/projects/tgo-canopy-ui/components/tooltip/tooltip.component.stories.ts +0 -235
  879. package/projects/tgo-canopy-ui/components/tooltip/tooltip.component.ts +0 -81
  880. package/projects/tgo-canopy-ui/components/tooltip/tooltip.model.ts +0 -6
  881. package/projects/tgo-canopy-ui/components/validation-error/validation-error.component.html +0 -29
  882. package/projects/tgo-canopy-ui/components/validation-error/validation-error.component.scss +0 -0
  883. package/projects/tgo-canopy-ui/components/validation-error/validation-error.component.spec.ts +0 -75
  884. package/projects/tgo-canopy-ui/components/validation-error/validation-error.component.ts +0 -53
  885. package/projects/tgo-canopy-ui/components/validation-error/validation-error.module.ts +0 -12
  886. package/projects/tgo-canopy-ui/directives/digits-only.directive.spec.ts +0 -121
  887. package/projects/tgo-canopy-ui/directives/digits-only.directive.ts +0 -42
  888. package/projects/tgo-canopy-ui/directives/drag-drop.directive.spec.ts +0 -84
  889. package/projects/tgo-canopy-ui/directives/drag-drop.directive.ts +0 -39
  890. package/projects/tgo-canopy-ui/directives/ellipse-text.directive.spec.ts +0 -57
  891. package/projects/tgo-canopy-ui/directives/ellipse-text.directive.ts +0 -27
  892. package/projects/tgo-canopy-ui/directives/select-text.directive.spec.ts +0 -54
  893. package/projects/tgo-canopy-ui/directives/select-text.directive.ts +0 -37
  894. package/projects/tgo-canopy-ui/directives/step-line-width.directive.spec.ts +0 -59
  895. package/projects/tgo-canopy-ui/directives/step-line-width.directive.ts +0 -31
  896. package/projects/tgo-canopy-ui/foundations/colors/colors.component.html +0 -4
  897. package/projects/tgo-canopy-ui/foundations/colors/colors.component.module.ts +0 -10
  898. package/projects/tgo-canopy-ui/foundations/colors/colors.component.scss +0 -318
  899. package/projects/tgo-canopy-ui/foundations/colors/colors.component.spec.ts +0 -47
  900. package/projects/tgo-canopy-ui/foundations/colors/colors.component.ts +0 -22
  901. package/projects/tgo-canopy-ui/foundations/colors/colors.stories.ts +0 -426
  902. package/projects/tgo-canopy-ui/foundations/typography/typography.stories.ts +0 -195
  903. package/projects/tgo-canopy-ui/mocked-assets/images/some_progress.svg +0 -4
  904. package/projects/tgo-canopy-ui/models/colors.model.ts +0 -88
  905. package/projects/tgo-canopy-ui/models/screen-breakpoints.model.ts +0 -4
  906. package/projects/tgo-canopy-ui/pipes/data-property-getter.spec.ts +0 -42
  907. package/projects/tgo-canopy-ui/pipes/data-property-getter.ts +0 -31
  908. package/projects/tgo-canopy-ui/pipes/has-validation-error.pipe.spec.ts +0 -32
  909. package/projects/tgo-canopy-ui/pipes/has-validation-error.pipe.ts +0 -20
  910. package/projects/tgo-canopy-ui/pipes/name-initials.pipe.spec.ts +0 -44
  911. package/projects/tgo-canopy-ui/pipes/name-initials.pipe.ts +0 -18
  912. package/projects/tgo-canopy-ui/pipes/ui-translate.pipe.spec.ts +0 -45
  913. package/projects/tgo-canopy-ui/pipes/ui-translate.pipe.ts +0 -71
  914. package/projects/tgo-canopy-ui/polyfills.ts +0 -51
  915. package/projects/tgo-canopy-ui/providers/is-mobile.ts +0 -11
  916. package/projects/tgo-canopy-ui/public-api.ts +0 -184
  917. package/projects/tgo-canopy-ui/services/custom-event-manager.service.spec.ts +0 -57
  918. package/projects/tgo-canopy-ui/services/custom-event-manager.service.ts +0 -28
  919. package/projects/tgo-canopy-ui/test-utils/mock-file.spec.ts +0 -44
  920. package/projects/tgo-canopy-ui/test-utils/mock-file.ts +0 -24
  921. package/projects/tgo-canopy-ui/test.ts +0 -20
  922. package/projects/tgo-canopy-ui/utils/alert-bars.utils.spec.ts +0 -47
  923. package/projects/tgo-canopy-ui/utils/alert-bars.utils.ts +0 -36
  924. package/projects/tgo-canopy-ui/utils/autocomplete-utils.spec.ts +0 -68
  925. package/projects/tgo-canopy-ui/utils/autocomplete-utils.ts +0 -66
  926. package/projects/tgo-canopy-ui/utils/color-contrast.spec.ts +0 -46
  927. package/projects/tgo-canopy-ui/utils/color-contrast.ts +0 -135
  928. package/projects/tgo-canopy-ui/utils/localization/language.model.ts +0 -14
  929. package/projects/tgo-canopy-ui/utils/localization/language.service.mocks.ts +0 -6
  930. package/projects/tgo-canopy-ui/utils/localization/language.service.spec.ts +0 -25
  931. package/projects/tgo-canopy-ui/utils/localization/language.service.ts +0 -32
  932. package/projects/tgo-canopy-ui/utils/table.utils.spec.ts +0 -47
  933. package/projects/tgo-canopy-ui/utils/table.utils.ts +0 -22
  934. package/projects/tgo-canopy-ui/utils/transform-theme.ts +0 -9
  935. package/projects/tgo-canopy-ui/utils/transform.theme.spec.ts +0 -16
  936. package/projects/tgo-canopy-ui/utils/validators.utils.spec.ts +0 -16
  937. package/projects/tgo-canopy-ui/utils/validators.utils.ts +0 -9
  938. package/setupJest.ts +0 -1
  939. package/transloco.config.js +0 -5
  940. package/tsconfig.json +0 -46
  941. package/tsconfig.spec.json +0 -17
  942. package/tsconfig.ui.json +0 -24
  943. package/tsconfig.ui.prod.json +0 -10
  944. package/visual-tests/component-page-objects/avatar-component.ts +0 -30
  945. package/visual-tests/component-page-objects/base-component.ts +0 -44
  946. package/visual-tests/component-tests/avatar.spec.ts +0 -32
  947. package/visual-tests/component-tests/avatar.spec.ts-snapshots/Avatar-Component-Visual-Tests-should-allow-edit-for-the-avatar-1-chromium-linux.png +0 -0
  948. package/visual-tests/component-tests/avatar.spec.ts-snapshots/Avatar-Component-Visual-Tests-should-display-the-avatar-correctly-1-chromium-linux.png +0 -0
  949. package/visual-tests/playwright.config.ts +0 -45
  950. package/visual-tests/runConfig.ts +0 -1
  951. /package/{projects/tgo-canopy-ui/components/accordion/accordion.model.ts → components/accordion/accordion.model.d.ts} +0 -0
  952. /package/{projects/tgo-canopy-ui/components/alert-banner/alert-banner.model.ts → components/alert-banner/alert-banner.model.d.ts} +0 -0
  953. /package/{projects/tgo-canopy-ui/components/card/card.model.ts → components/card/card.model.d.ts} +0 -0
  954. /package/{projects/tgo-canopy-ui/components/divider/divider.model.ts → components/divider/divider.model.d.ts} +0 -0
  955. /package/{projects/tgo-canopy-ui/components/empty-state/empty-state.model.ts → components/empty-state/empty-state.model.d.ts} +0 -0
  956. /package/{projects/tgo-canopy-ui/components/snackbar/snackbar.model.ts → components/snackbar/snackbar.model.d.ts} +0 -0
  957. /package/{projects/tgo-canopy-ui/components/spinner/spinner.model.ts → components/spinner/spinner.model.d.ts} +0 -0
  958. /package/{projects/tgo-canopy-ui/components/tag/tag.model.ts → components/tag/tag.model.d.ts} +0 -0
  959. /package/{projects/tgo-canopy-ui/components/toggle/toggle.model.ts → components/toggle/toggle.model.d.ts} +0 -0
  960. /package/{projects/tgo-canopy-ui/components/validation-error/validation-error.model.ts → components/validation-error/validation-error.model.d.ts} +0 -0
  961. /package/{projects/tgo-canopy-ui/models/application-theme.model.ts → models/application-theme.model.d.ts} +0 -0
  962. /package/{projects/tgo-canopy-ui/utils/alert-bar.model.ts → utils/alert-bar.model.d.ts} +0 -0
@@ -1,3487 +0,0 @@
1
- // Jest Snapshot v1, https://goo.gl/fbAQLP
2
-
3
- exports[`IconsShowcaseComponent should render correctly 1`] = `
4
- <ui-icons-showcase
5
- applicationTheme={[Function String]}
6
- defaultAppTheme="null"
7
- icons={[Function Object]}
8
- >
9
- <div
10
- class="icons-section"
11
- >
12
- <h1>
13
- Actions
14
- </h1>
15
- <ul
16
- class="icons-showcase"
17
- >
18
- <li>
19
- <ui-icon
20
- color="rebrand-black"
21
- size="24"
22
- />
23
- Archive-filled
24
- </li>
25
- <li>
26
- <ui-icon
27
- color="rebrand-black"
28
- size="24"
29
- />
30
- Archive-in-line
31
- </li>
32
- <li>
33
- <ui-icon
34
- color="rebrand-black"
35
- size="24"
36
- />
37
- Attach-filled
38
- </li>
39
- <li>
40
- <ui-icon
41
- color="rebrand-black"
42
- size="24"
43
- />
44
- Attach-in-line
45
- </li>
46
- <li>
47
- <ui-icon
48
- color="rebrand-black"
49
- size="24"
50
- />
51
- Clone-filled
52
- </li>
53
- <li>
54
- <ui-icon
55
- color="rebrand-black"
56
- size="24"
57
- />
58
- Clone-in-line
59
- </li>
60
- <li>
61
- <ui-icon
62
- color="rebrand-black"
63
- size="24"
64
- />
65
- Close-filled
66
- </li>
67
- <li>
68
- <ui-icon
69
- color="rebrand-black"
70
- size="24"
71
- />
72
- Close-in-line
73
- </li>
74
- <li>
75
- <ui-icon
76
- color="rebrand-black"
77
- size="24"
78
- />
79
- Copy-filled
80
- </li>
81
- <li>
82
- <ui-icon
83
- color="rebrand-black"
84
- size="24"
85
- />
86
- Copy-in-line
87
- </li>
88
- <li>
89
- <ui-icon
90
- color="rebrand-black"
91
- size="24"
92
- />
93
- Delete-filled
94
- </li>
95
- <li>
96
- <ui-icon
97
- color="rebrand-black"
98
- size="24"
99
- />
100
- Delete-in-line
101
- </li>
102
- <li>
103
- <ui-icon
104
- color="rebrand-black"
105
- size="24"
106
- />
107
- Download-filled
108
- </li>
109
- <li>
110
- <ui-icon
111
- color="rebrand-black"
112
- size="24"
113
- />
114
- Download-in-line
115
- </li>
116
- <li>
117
- <ui-icon
118
- color="rebrand-black"
119
- size="24"
120
- />
121
- Edit-filled
122
- </li>
123
- <li>
124
- <ui-icon
125
- color="rebrand-black"
126
- size="24"
127
- />
128
- Edit-in-line
129
- </li>
130
- <li>
131
- <ui-icon
132
- color="rebrand-black"
133
- size="24"
134
- />
135
- Edit-text-filled
136
- </li>
137
- <li>
138
- <ui-icon
139
- color="rebrand-black"
140
- size="24"
141
- />
142
- Edit-text-in-line
143
- </li>
144
- <li>
145
- <ui-icon
146
- color="rebrand-black"
147
- size="24"
148
- />
149
- Filter-filled
150
- </li>
151
- <li>
152
- <ui-icon
153
- color="rebrand-black"
154
- size="24"
155
- />
156
- Filter-in-line
157
- </li>
158
- <li>
159
- <ui-icon
160
- color="rebrand-black"
161
- size="24"
162
- />
163
- Full-screen-filled
164
- </li>
165
- <li>
166
- <ui-icon
167
- color="rebrand-black"
168
- size="24"
169
- />
170
- Full-screen-in-line
171
- </li>
172
- <li>
173
- <ui-icon
174
- color="rebrand-black"
175
- size="24"
176
- />
177
- Grab-filled
178
- </li>
179
- <li>
180
- <ui-icon
181
- color="rebrand-black"
182
- size="24"
183
- />
184
- Grab-in-line
185
- </li>
186
- <li>
187
- <ui-icon
188
- color="rebrand-black"
189
- size="24"
190
- />
191
- Hide-filled
192
- </li>
193
- <li>
194
- <ui-icon
195
- color="rebrand-black"
196
- size="24"
197
- />
198
- Hide-in-line
199
- </li>
200
- <li>
201
- <ui-icon
202
- color="rebrand-black"
203
- size="24"
204
- />
205
- Invite-filled
206
- </li>
207
- <li>
208
- <ui-icon
209
- color="rebrand-black"
210
- size="24"
211
- />
212
- Invite-in-line
213
- </li>
214
- <li>
215
- <ui-icon
216
- color="rebrand-black"
217
- size="24"
218
- />
219
- Link-filled
220
- </li>
221
- <li>
222
- <ui-icon
223
- color="rebrand-black"
224
- size="24"
225
- />
226
- Link-in-line
227
- </li>
228
- <li>
229
- <ui-icon
230
- color="rebrand-black"
231
- size="24"
232
- />
233
- Lock-filled
234
- </li>
235
- <li>
236
- <ui-icon
237
- color="rebrand-black"
238
- size="24"
239
- />
240
- Lock-in-line
241
- </li>
242
- <li>
243
- <ui-icon
244
- color="rebrand-black"
245
- size="24"
246
- />
247
- Logout-filled
248
- </li>
249
- <li>
250
- <ui-icon
251
- color="rebrand-black"
252
- size="24"
253
- />
254
- Logout-in-line
255
- </li>
256
- <li>
257
- <ui-icon
258
- color="rebrand-black"
259
- size="24"
260
- />
261
- Menu-burger-filled
262
- </li>
263
- <li>
264
- <ui-icon
265
- color="rebrand-black"
266
- size="24"
267
- />
268
- Menu-burger-in-line
269
- </li>
270
- <li>
271
- <ui-icon
272
- color="rebrand-black"
273
- size="24"
274
- />
275
- Menu-ellipsis-filled
276
- </li>
277
- <li>
278
- <ui-icon
279
- color="rebrand-black"
280
- size="24"
281
- />
282
- Menu-ellipsis-in-line
283
- </li>
284
- <li>
285
- <ui-icon
286
- color="rebrand-black"
287
- size="24"
288
- />
289
- Minimize-filled
290
- </li>
291
- <li>
292
- <ui-icon
293
- color="rebrand-black"
294
- size="24"
295
- />
296
- Minimize-in-line
297
- </li>
298
- <li>
299
- <ui-icon
300
- color="rebrand-black"
301
- size="24"
302
- />
303
- Pause-filled
304
- </li>
305
- <li>
306
- <ui-icon
307
- color="rebrand-black"
308
- size="24"
309
- />
310
- Pause-in-line
311
- </li>
312
- <li>
313
- <ui-icon
314
- color="rebrand-black"
315
- size="24"
316
- />
317
- Play-filled
318
- </li>
319
- <li>
320
- <ui-icon
321
- color="rebrand-black"
322
- size="24"
323
- />
324
- Play-in-line
325
- </li>
326
- <li>
327
- <ui-icon
328
- color="rebrand-black"
329
- size="24"
330
- />
331
- Record-filled
332
- </li>
333
- <li>
334
- <ui-icon
335
- color="rebrand-black"
336
- size="24"
337
- />
338
- Record-in-line
339
- </li>
340
- <li>
341
- <ui-icon
342
- color="rebrand-black"
343
- size="24"
344
- />
345
- Reject-filled
346
- </li>
347
- <li>
348
- <ui-icon
349
- color="rebrand-black"
350
- size="24"
351
- />
352
- Reject-in-line
353
- </li>
354
- <li>
355
- <ui-icon
356
- color="rebrand-black"
357
- size="24"
358
- />
359
- Reset-filled
360
- </li>
361
- <li>
362
- <ui-icon
363
- color="rebrand-black"
364
- size="24"
365
- />
366
- Reset-in-line
367
- </li>
368
- <li>
369
- <ui-icon
370
- color="rebrand-black"
371
- size="24"
372
- />
373
- Review-filled
374
- </li>
375
- <li>
376
- <ui-icon
377
- color="rebrand-black"
378
- size="24"
379
- />
380
- Review-half-star-filled
381
- </li>
382
- <li>
383
- <ui-icon
384
- color="rebrand-black"
385
- size="24"
386
- />
387
- Search-filled
388
- </li>
389
- <li>
390
- <ui-icon
391
- color="rebrand-black"
392
- size="24"
393
- />
394
- Search-in-line
395
- </li>
396
- <li>
397
- <ui-icon
398
- color="rebrand-black"
399
- size="24"
400
- />
401
- Send-filled
402
- </li>
403
- <li>
404
- <ui-icon
405
- color="rebrand-black"
406
- size="24"
407
- />
408
- Send-in-line
409
- </li>
410
- <li>
411
- <ui-icon
412
- color="rebrand-black"
413
- size="24"
414
- />
415
- Settings-filled
416
- </li>
417
- <li>
418
- <ui-icon
419
- color="rebrand-black"
420
- size="24"
421
- />
422
- Settings-in-line
423
- </li>
424
- <li>
425
- <ui-icon
426
- color="rebrand-black"
427
- size="24"
428
- />
429
- Share-filled
430
- </li>
431
- <li>
432
- <ui-icon
433
- color="rebrand-black"
434
- size="24"
435
- />
436
- Share-in-line
437
- </li>
438
- <li>
439
- <ui-icon
440
- color="rebrand-black"
441
- size="24"
442
- />
443
- Stop-filled
444
- </li>
445
- <li>
446
- <ui-icon
447
- color="rebrand-black"
448
- size="24"
449
- />
450
- Stop-in-line
451
- </li>
452
- <li>
453
- <ui-icon
454
- color="rebrand-black"
455
- size="24"
456
- />
457
- Switch-filled
458
- </li>
459
- <li>
460
- <ui-icon
461
- color="rebrand-black"
462
- size="24"
463
- />
464
- Switch-in-line
465
- </li>
466
- <li>
467
- <ui-icon
468
- color="rebrand-black"
469
- size="24"
470
- />
471
- Unarchive-filled
472
- </li>
473
- <li>
474
- <ui-icon
475
- color="rebrand-black"
476
- size="24"
477
- />
478
- Unarchive-in-line
479
- </li>
480
- <li>
481
- <ui-icon
482
- color="rebrand-black"
483
- size="24"
484
- />
485
- Unlock-filled
486
- </li>
487
- <li>
488
- <ui-icon
489
- color="rebrand-black"
490
- size="24"
491
- />
492
- Unlock-in-line
493
- </li>
494
- <li>
495
- <ui-icon
496
- color="rebrand-black"
497
- size="24"
498
- />
499
- Upgrade-filled
500
- </li>
501
- <li>
502
- <ui-icon
503
- color="rebrand-black"
504
- size="24"
505
- />
506
- Upgrade-in-line
507
- </li>
508
- <li>
509
- <ui-icon
510
- color="rebrand-black"
511
- size="24"
512
- />
513
- Upload-filled
514
- </li>
515
- <li>
516
- <ui-icon
517
- color="rebrand-black"
518
- size="24"
519
- />
520
- Upload-in-line
521
- </li>
522
- <li>
523
- <ui-icon
524
- color="rebrand-black"
525
- size="24"
526
- />
527
- User-add-filled
528
- </li>
529
- <li>
530
- <ui-icon
531
- color="rebrand-black"
532
- size="24"
533
- />
534
- User-add-in-line
535
- </li>
536
- <li>
537
- <ui-icon
538
- color="rebrand-black"
539
- size="24"
540
- />
541
- View-filled
542
- </li>
543
- <li>
544
- <ui-icon
545
- color="rebrand-black"
546
- size="24"
547
- />
548
- View-in-line
549
- </li>
550
- <li>
551
- <ui-icon
552
- color="rebrand-black"
553
- size="24"
554
- />
555
- Zoom-in-filled
556
- </li>
557
- <li>
558
- <ui-icon
559
- color="rebrand-black"
560
- size="24"
561
- />
562
- Zoom-in-in-line
563
- </li>
564
- <li>
565
- <ui-icon
566
- color="rebrand-black"
567
- size="24"
568
- />
569
- Zoom-out-filled
570
- </li>
571
- <li>
572
- <ui-icon
573
- color="rebrand-black"
574
- size="24"
575
- />
576
- Zoom-out-in-line
577
- </li>
578
- </ul>
579
- </div><div
580
- class="icons-section"
581
- >
582
- <h1>
583
- Assessment
584
- </h1>
585
- <ul
586
- class="icons-showcase"
587
- >
588
- <li>
589
- <ui-icon
590
- color="rebrand-black"
591
- size="24"
592
- />
593
- Assessment-filled
594
- </li>
595
- <li>
596
- <ui-icon
597
- color="rebrand-black"
598
- size="24"
599
- />
600
- Assessment-in-line
601
- </li>
602
- <li>
603
- <ui-icon
604
- color="rebrand-black"
605
- size="24"
606
- />
607
- Attempts-filled
608
- </li>
609
- <li>
610
- <ui-icon
611
- color="rebrand-black"
612
- size="24"
613
- />
614
- Attempts-in-line
615
- </li>
616
- <li>
617
- <ui-icon
618
- color="rebrand-black"
619
- size="24"
620
- />
621
- Candidates-filled
622
- </li>
623
- <li>
624
- <ui-icon
625
- color="rebrand-black"
626
- size="24"
627
- />
628
- Candidates-in-line
629
- </li>
630
- <li>
631
- <ui-icon
632
- color="rebrand-black"
633
- size="24"
634
- />
635
- Code-filled
636
- </li>
637
- <li>
638
- <ui-icon
639
- color="rebrand-black"
640
- size="24"
641
- />
642
- Code-in-line
643
- </li>
644
- <li>
645
- <ui-icon
646
- color="rebrand-black"
647
- size="24"
648
- />
649
- Essay-filled
650
- </li>
651
- <li>
652
- <ui-icon
653
- color="rebrand-black"
654
- size="24"
655
- />
656
- Essay-in-line
657
- </li>
658
- <li>
659
- <ui-icon
660
- color="rebrand-black"
661
- size="24"
662
- />
663
- Language-filled
664
- </li>
665
- <li>
666
- <ui-icon
667
- color="rebrand-black"
668
- size="24"
669
- />
670
- Language-in-line
671
- </li>
672
- <li>
673
- <ui-icon
674
- color="rebrand-black"
675
- size="24"
676
- />
677
- Learn-filled
678
- </li>
679
- <li>
680
- <ui-icon
681
- color="rebrand-black"
682
- size="24"
683
- />
684
- Learn-in-line
685
- </li>
686
- <li>
687
- <ui-icon
688
- color="rebrand-black"
689
- size="24"
690
- />
691
- Level-filled
692
- </li>
693
- <li>
694
- <ui-icon
695
- color="rebrand-black"
696
- size="24"
697
- />
698
- Level-in-line
699
- </li>
700
- <li>
701
- <ui-icon
702
- color="rebrand-black"
703
- size="24"
704
- />
705
- Localization-filled
706
- </li>
707
- <li>
708
- <ui-icon
709
- color="rebrand-black"
710
- size="24"
711
- />
712
- Localization-in-line
713
- </li>
714
- <li>
715
- <ui-icon
716
- color="rebrand-black"
717
- size="24"
718
- />
719
- Mic-filled
720
- </li>
721
- <li>
722
- <ui-icon
723
- color="rebrand-black"
724
- size="24"
725
- />
726
- Mic-in-line
727
- </li>
728
- <li>
729
- <ui-icon
730
- color="rebrand-black"
731
- size="24"
732
- />
733
- Multi-choice-filled
734
- </li>
735
- <li>
736
- <ui-icon
737
- color="rebrand-black"
738
- size="24"
739
- />
740
- Multi-choice-in-line
741
- </li>
742
- <li>
743
- <ui-icon
744
- color="rebrand-black"
745
- size="24"
746
- />
747
- Question-count-filled
748
- </li>
749
- <li>
750
- <ui-icon
751
- color="rebrand-black"
752
- size="24"
753
- />
754
- Question-count-in-line
755
- </li>
756
- <li>
757
- <ui-icon
758
- color="rebrand-black"
759
- size="24"
760
- />
761
- Question-filled
762
- </li>
763
- <li>
764
- <ui-icon
765
- color="rebrand-black"
766
- size="24"
767
- />
768
- Question-in-line
769
- </li>
770
- <li>
771
- <ui-icon
772
- color="rebrand-black"
773
- size="24"
774
- />
775
- Speedometer-filled
776
- </li>
777
- <li>
778
- <ui-icon
779
- color="rebrand-black"
780
- size="24"
781
- />
782
- Speedometer-in-line
783
- </li>
784
- <li>
785
- <ui-icon
786
- color="rebrand-black"
787
- size="24"
788
- />
789
- Test-filled
790
- </li>
791
- <li>
792
- <ui-icon
793
- color="rebrand-black"
794
- size="24"
795
- />
796
- Test-in-line
797
- </li>
798
- <li>
799
- <ui-icon
800
- color="rebrand-black"
801
- size="24"
802
- />
803
- Timer-filled
804
- </li>
805
- <li>
806
- <ui-icon
807
- color="rebrand-black"
808
- size="24"
809
- />
810
- Timer-in-line
811
- </li>
812
- <li>
813
- <ui-icon
814
- color="rebrand-black"
815
- size="24"
816
- />
817
- Type-filled
818
- </li>
819
- <li>
820
- <ui-icon
821
- color="rebrand-black"
822
- size="24"
823
- />
824
- Type-in-line
825
- </li>
826
- <li>
827
- <ui-icon
828
- color="rebrand-black"
829
- size="24"
830
- />
831
- Video-filled
832
- </li>
833
- <li>
834
- <ui-icon
835
- color="rebrand-black"
836
- size="24"
837
- />
838
- Video-in-line
839
- </li>
840
- </ul>
841
- </div><div
842
- class="icons-section"
843
- >
844
- <h1>
845
- Communication
846
- </h1>
847
- <ul
848
- class="icons-showcase"
849
- >
850
- <li>
851
- <ui-icon
852
- color="rebrand-black"
853
- size="24"
854
- />
855
- Book-filled
856
- </li>
857
- <li>
858
- <ui-icon
859
- color="rebrand-black"
860
- size="24"
861
- />
862
- Book-in-line
863
- </li>
864
- <li>
865
- <ui-icon
866
- color="rebrand-black"
867
- size="24"
868
- />
869
- Calendar-filled
870
- </li>
871
- <li>
872
- <ui-icon
873
- color="rebrand-black"
874
- size="24"
875
- />
876
- Calendar-in-line
877
- </li>
878
- <li>
879
- <ui-icon
880
- color="rebrand-black"
881
- size="24"
882
- />
883
- Chat-filled
884
- </li>
885
- <li>
886
- <ui-icon
887
- color="rebrand-black"
888
- size="24"
889
- />
890
- Chat-in-line
891
- </li>
892
- <li>
893
- <ui-icon
894
- color="rebrand-black"
895
- size="24"
896
- />
897
- Company-filled
898
- </li>
899
- <li>
900
- <ui-icon
901
- color="rebrand-black"
902
- size="24"
903
- />
904
- Company-in-line
905
- </li>
906
- <li>
907
- <ui-icon
908
- color="rebrand-black"
909
- size="24"
910
- />
911
- Devices-filled
912
- </li>
913
- <li>
914
- <ui-icon
915
- color="rebrand-black"
916
- size="24"
917
- />
918
- Devices-in-line
919
- </li>
920
- <li>
921
- <ui-icon
922
- color="rebrand-black"
923
- size="24"
924
- />
925
- Document-filled
926
- </li>
927
- <li>
928
- <ui-icon
929
- color="rebrand-black"
930
- size="24"
931
- />
932
- Document-in-line
933
- </li>
934
- <li>
935
- <ui-icon
936
- color="rebrand-black"
937
- size="24"
938
- />
939
- Employee-filled
940
- </li>
941
- <li>
942
- <ui-icon
943
- color="rebrand-black"
944
- size="24"
945
- />
946
- Employee-in-line
947
- </li>
948
- <li>
949
- <ui-icon
950
- color="rebrand-black"
951
- size="24"
952
- />
953
- Experience-filled
954
- </li>
955
- <li>
956
- <ui-icon
957
- color="rebrand-black"
958
- size="24"
959
- />
960
- Experience-in-line
961
- </li>
962
- <li>
963
- <ui-icon
964
- color="rebrand-black"
965
- size="24"
966
- />
967
- Fire-filled
968
- </li>
969
- <li>
970
- <ui-icon
971
- color="rebrand-black"
972
- size="24"
973
- />
974
- Fire-in-line
975
- </li>
976
- <li>
977
- <ui-icon
978
- color="rebrand-black"
979
- size="24"
980
- />
981
- Folder-filled
982
- </li>
983
- <li>
984
- <ui-icon
985
- color="rebrand-black"
986
- size="24"
987
- />
988
- Folder-in-line
989
- </li>
990
- <li>
991
- <ui-icon
992
- color="rebrand-black"
993
- size="24"
994
- />
995
- Gender-female-filled
996
- </li>
997
- <li>
998
- <ui-icon
999
- color="rebrand-black"
1000
- size="24"
1001
- />
1002
- Gender-female-in-line
1003
- </li>
1004
- <li>
1005
- <ui-icon
1006
- color="rebrand-black"
1007
- size="24"
1008
- />
1009
- Gender-male-filled
1010
- </li>
1011
- <li>
1012
- <ui-icon
1013
- color="rebrand-black"
1014
- size="24"
1015
- />
1016
- Gender-male-in-line
1017
- </li>
1018
- <li>
1019
- <ui-icon
1020
- color="rebrand-black"
1021
- size="24"
1022
- />
1023
- Gift-filled
1024
- </li>
1025
- <li>
1026
- <ui-icon
1027
- color="rebrand-black"
1028
- size="24"
1029
- />
1030
- Gift-in-line
1031
- </li>
1032
- <li>
1033
- <ui-icon
1034
- color="rebrand-black"
1035
- size="24"
1036
- />
1037
- Image-filled
1038
- </li>
1039
- <li>
1040
- <ui-icon
1041
- color="rebrand-black"
1042
- size="24"
1043
- />
1044
- Image-in-line
1045
- </li>
1046
- <li>
1047
- <ui-icon
1048
- color="rebrand-black"
1049
- size="24"
1050
- />
1051
- Integration-filled
1052
- </li>
1053
- <li>
1054
- <ui-icon
1055
- color="rebrand-black"
1056
- size="24"
1057
- />
1058
- Integration-in-line
1059
- </li>
1060
- <li>
1061
- <ui-icon
1062
- color="rebrand-black"
1063
- size="24"
1064
- />
1065
- Layout-filled
1066
- </li>
1067
- <li>
1068
- <ui-icon
1069
- color="rebrand-black"
1070
- size="24"
1071
- />
1072
- Layout-in-line
1073
- </li>
1074
- <li>
1075
- <ui-icon
1076
- color="rebrand-black"
1077
- size="24"
1078
- />
1079
- Light-bulb-filled
1080
- </li>
1081
- <li>
1082
- <ui-icon
1083
- color="rebrand-black"
1084
- size="24"
1085
- />
1086
- Light-bulb-in-line
1087
- </li>
1088
- <li>
1089
- <ui-icon
1090
- color="rebrand-black"
1091
- size="24"
1092
- />
1093
- Location-filled
1094
- </li>
1095
- <li>
1096
- <ui-icon
1097
- color="rebrand-black"
1098
- size="24"
1099
- />
1100
- Location-in-line
1101
- </li>
1102
- <li>
1103
- <ui-icon
1104
- color="rebrand-black"
1105
- size="24"
1106
- />
1107
- Mouse-filled
1108
- </li>
1109
- <li>
1110
- <ui-icon
1111
- color="rebrand-black"
1112
- size="24"
1113
- />
1114
- Mouse-in-line
1115
- </li>
1116
- <li>
1117
- <ui-icon
1118
- color="rebrand-black"
1119
- size="24"
1120
- />
1121
- Notification-bell-filled
1122
- </li>
1123
- <li>
1124
- <ui-icon
1125
- color="rebrand-black"
1126
- size="24"
1127
- />
1128
- Notification-bell-in-line
1129
- </li>
1130
- <li>
1131
- <ui-icon
1132
- color="rebrand-black"
1133
- size="24"
1134
- />
1135
- Password-filled
1136
- </li>
1137
- <li>
1138
- <ui-icon
1139
- color="rebrand-black"
1140
- size="24"
1141
- />
1142
- Password-in-line
1143
- </li>
1144
- <li>
1145
- <ui-icon
1146
- color="rebrand-black"
1147
- size="24"
1148
- />
1149
- Path-filled
1150
- </li>
1151
- <li>
1152
- <ui-icon
1153
- color="rebrand-black"
1154
- size="24"
1155
- />
1156
- Path-in-line
1157
- </li>
1158
- <li>
1159
- <ui-icon
1160
- color="rebrand-black"
1161
- size="24"
1162
- />
1163
- Plan-billing-filled
1164
- </li>
1165
- <li>
1166
- <ui-icon
1167
- color="rebrand-black"
1168
- size="24"
1169
- />
1170
- Plan-billing-in-line
1171
- </li>
1172
- <li>
1173
- <ui-icon
1174
- color="rebrand-black"
1175
- size="24"
1176
- />
1177
- Premium-filled
1178
- </li>
1179
- <li>
1180
- <ui-icon
1181
- color="rebrand-black"
1182
- size="24"
1183
- />
1184
- Premium-in-line
1185
- </li>
1186
- <li>
1187
- <ui-icon
1188
- color="rebrand-black"
1189
- size="24"
1190
- />
1191
- Premium-circle-in-line
1192
- </li>
1193
- <li>
1194
- <ui-icon
1195
- color="rebrand-black"
1196
- size="24"
1197
- />
1198
- Secure-filled
1199
- </li>
1200
- <li>
1201
- <ui-icon
1202
- color="rebrand-black"
1203
- size="24"
1204
- />
1205
- Secure-in-line
1206
- </li>
1207
- <li>
1208
- <ui-icon
1209
- color="rebrand-black"
1210
- size="24"
1211
- />
1212
- Sparkle-filled
1213
- </li>
1214
- <li>
1215
- <ui-icon
1216
- color="rebrand-black"
1217
- size="24"
1218
- />
1219
- Sparkle-in-line
1220
- </li>
1221
- <li>
1222
- <ui-icon
1223
- color="rebrand-black"
1224
- size="24"
1225
- />
1226
- Sync-filled
1227
- </li>
1228
- <li>
1229
- <ui-icon
1230
- color="rebrand-black"
1231
- size="24"
1232
- />
1233
- Sync-in-line
1234
- </li>
1235
- <li>
1236
- <ui-icon
1237
- color="rebrand-black"
1238
- size="24"
1239
- />
1240
- Team-filled
1241
- </li>
1242
- <li>
1243
- <ui-icon
1244
- color="rebrand-black"
1245
- size="24"
1246
- />
1247
- Team-in-line
1248
- </li>
1249
- <li>
1250
- <ui-icon
1251
- color="rebrand-black"
1252
- size="24"
1253
- />
1254
- User-access-filled
1255
- </li>
1256
- <li>
1257
- <ui-icon
1258
- color="rebrand-black"
1259
- size="24"
1260
- />
1261
- User-access-in-line
1262
- </li>
1263
- <li>
1264
- <ui-icon
1265
- color="rebrand-black"
1266
- size="24"
1267
- />
1268
- User-profile-filled
1269
- </li>
1270
- <li>
1271
- <ui-icon
1272
- color="rebrand-black"
1273
- size="24"
1274
- />
1275
- User-profile-in-line
1276
- </li>
1277
- <li>
1278
- <ui-icon
1279
- color="rebrand-black"
1280
- size="24"
1281
- />
1282
- Volume-filled
1283
- </li>
1284
- <li>
1285
- <ui-icon
1286
- color="rebrand-black"
1287
- size="24"
1288
- />
1289
- Volume-in-line
1290
- </li>
1291
- </ul>
1292
- </div><div
1293
- class="icons-section"
1294
- >
1295
- <h1>
1296
- Directional
1297
- </h1>
1298
- <ul
1299
- class="icons-showcase"
1300
- >
1301
- <li>
1302
- <ui-icon
1303
- color="rebrand-black"
1304
- size="24"
1305
- />
1306
- Arrow-chevron-down-filled
1307
- </li>
1308
- <li>
1309
- <ui-icon
1310
- color="rebrand-black"
1311
- size="24"
1312
- />
1313
- Arrow-chevron-down-in-line
1314
- </li>
1315
- <li>
1316
- <ui-icon
1317
- color="rebrand-black"
1318
- size="24"
1319
- />
1320
- Arrow-chevron-left-filled
1321
- </li>
1322
- <li>
1323
- <ui-icon
1324
- color="rebrand-black"
1325
- size="24"
1326
- />
1327
- Arrow-chevron-left-in-line
1328
- </li>
1329
- <li>
1330
- <ui-icon
1331
- color="rebrand-black"
1332
- size="24"
1333
- />
1334
- Arrow-chevron-right-filled
1335
- </li>
1336
- <li>
1337
- <ui-icon
1338
- color="rebrand-black"
1339
- size="24"
1340
- />
1341
- Arrow-chevron-right-in-line
1342
- </li>
1343
- <li>
1344
- <ui-icon
1345
- color="rebrand-black"
1346
- size="24"
1347
- />
1348
- Arrow-chevron-up-filled
1349
- </li>
1350
- <li>
1351
- <ui-icon
1352
- color="rebrand-black"
1353
- size="24"
1354
- />
1355
- Arrow-chevron-up-in-line
1356
- </li>
1357
- <li>
1358
- <ui-icon
1359
- color="rebrand-black"
1360
- size="24"
1361
- />
1362
- Arrow-down-filled
1363
- </li>
1364
- <li>
1365
- <ui-icon
1366
- color="rebrand-black"
1367
- size="24"
1368
- />
1369
- Arrow-down-in-line
1370
- </li>
1371
- <li>
1372
- <ui-icon
1373
- color="rebrand-black"
1374
- size="24"
1375
- />
1376
- Arrow-up-filled
1377
- </li>
1378
- <li>
1379
- <ui-icon
1380
- color="rebrand-black"
1381
- size="24"
1382
- />
1383
- Arrow-up-in-line
1384
- </li>
1385
- <li>
1386
- <ui-icon
1387
- color="rebrand-black"
1388
- size="24"
1389
- />
1390
- Fast-forward-filled
1391
- </li>
1392
- <li>
1393
- <ui-icon
1394
- color="rebrand-black"
1395
- size="24"
1396
- />
1397
- Fast-forward-in-line
1398
- </li>
1399
- <li>
1400
- <ui-icon
1401
- color="rebrand-black"
1402
- size="24"
1403
- />
1404
- Fast-rewind-filled
1405
- </li>
1406
- <li>
1407
- <ui-icon
1408
- color="rebrand-black"
1409
- size="24"
1410
- />
1411
- Fast-rewind-in-line
1412
- </li>
1413
- <li>
1414
- <ui-icon
1415
- color="rebrand-black"
1416
- size="24"
1417
- />
1418
- Minus-filled
1419
- </li>
1420
- <li>
1421
- <ui-icon
1422
- color="rebrand-black"
1423
- size="24"
1424
- />
1425
- Minus-in-line
1426
- </li>
1427
- <li>
1428
- <ui-icon
1429
- color="rebrand-black"
1430
- size="24"
1431
- />
1432
- Plus-filled
1433
- </li>
1434
- <li>
1435
- <ui-icon
1436
- color="rebrand-black"
1437
- size="24"
1438
- />
1439
- Plus-in-line
1440
- </li>
1441
- <li>
1442
- <ui-icon
1443
- color="rebrand-black"
1444
- size="24"
1445
- />
1446
- Skip-next-filled
1447
- </li>
1448
- <li>
1449
- <ui-icon
1450
- color="rebrand-black"
1451
- size="24"
1452
- />
1453
- Skip-next-in-line
1454
- </li>
1455
- <li>
1456
- <ui-icon
1457
- color="rebrand-black"
1458
- size="24"
1459
- />
1460
- Skip-previous-filled
1461
- </li>
1462
- <li>
1463
- <ui-icon
1464
- color="rebrand-black"
1465
- size="24"
1466
- />
1467
- Skip-previous-in-line
1468
- </li>
1469
- </ul>
1470
- </div><div
1471
- class="icons-section"
1472
- >
1473
- <h1>
1474
- Social
1475
- </h1>
1476
- <ul
1477
- class="icons-showcase"
1478
- >
1479
- <li>
1480
- <ui-icon
1481
- color="rebrand-black"
1482
- size="24"
1483
- />
1484
- Facebook-filled
1485
- </li>
1486
- <li>
1487
- <ui-icon
1488
- color="rebrand-black"
1489
- size="24"
1490
- />
1491
- Facebook-in-line
1492
- </li>
1493
- <li>
1494
- <ui-icon
1495
- color="rebrand-black"
1496
- size="24"
1497
- />
1498
- Google-filled
1499
- </li>
1500
- <li>
1501
- <ui-icon
1502
- color="rebrand-black"
1503
- size="24"
1504
- />
1505
- Google-in-line
1506
- </li>
1507
- <li>
1508
- <ui-icon
1509
- color="rebrand-black"
1510
- size="24"
1511
- />
1512
- Instagram-filled
1513
- </li>
1514
- <li>
1515
- <ui-icon
1516
- color="rebrand-black"
1517
- size="24"
1518
- />
1519
- Instagram-in-line
1520
- </li>
1521
- <li>
1522
- <ui-icon
1523
- color="rebrand-black"
1524
- size="24"
1525
- />
1526
- Linkedin-filled
1527
- </li>
1528
- <li>
1529
- <ui-icon
1530
- color="rebrand-black"
1531
- size="24"
1532
- />
1533
- Linkedin-in-line
1534
- </li>
1535
- </ul>
1536
- </div><div
1537
- class="icons-section"
1538
- >
1539
- <h1>
1540
- Status
1541
- </h1>
1542
- <ul
1543
- class="icons-showcase"
1544
- >
1545
- <li>
1546
- <ui-icon
1547
- color="rebrand-black"
1548
- size="24"
1549
- />
1550
- Check-filled
1551
- </li>
1552
- <li>
1553
- <ui-icon
1554
- color="rebrand-black"
1555
- size="24"
1556
- />
1557
- Check-in-line
1558
- </li>
1559
- <li>
1560
- <ui-icon
1561
- color="rebrand-black"
1562
- size="24"
1563
- />
1564
- Check-round-filled
1565
- </li>
1566
- <li>
1567
- <ui-icon
1568
- color="rebrand-black"
1569
- size="24"
1570
- />
1571
- Check-round-in-line
1572
- </li>
1573
- <li>
1574
- <ui-icon
1575
- color="rebrand-black"
1576
- size="24"
1577
- />
1578
- Error-filled
1579
- </li>
1580
- <li>
1581
- <ui-icon
1582
- color="rebrand-black"
1583
- size="24"
1584
- />
1585
- Error-in-line
1586
- </li>
1587
- <li>
1588
- <ui-icon
1589
- color="rebrand-black"
1590
- size="24"
1591
- />
1592
- Help-filled
1593
- </li>
1594
- <li>
1595
- <ui-icon
1596
- color="rebrand-black"
1597
- size="24"
1598
- />
1599
- Help-in-line
1600
- </li>
1601
- <li>
1602
- <ui-icon
1603
- color="rebrand-black"
1604
- size="24"
1605
- />
1606
- Info-filled
1607
- </li>
1608
- <li>
1609
- <ui-icon
1610
- color="rebrand-black"
1611
- size="24"
1612
- />
1613
- Info-in-line
1614
- </li>
1615
- <li>
1616
- <ui-icon
1617
- color="rebrand-black"
1618
- size="24"
1619
- />
1620
- Refer-in-line
1621
- </li>
1622
- <li>
1623
- <ui-icon
1624
- color="rebrand-black"
1625
- size="24"
1626
- />
1627
- Refer-filled
1628
- </li>
1629
- <li>
1630
- <ui-icon
1631
- color="rebrand-black"
1632
- size="24"
1633
- />
1634
- Review-emoji-1-filled
1635
- </li>
1636
- <li>
1637
- <ui-icon
1638
- color="rebrand-black"
1639
- size="24"
1640
- />
1641
- Review-emoji-1-in-line
1642
- </li>
1643
- <li>
1644
- <ui-icon
1645
- color="rebrand-black"
1646
- size="24"
1647
- />
1648
- Review-emoji-2-filled
1649
- </li>
1650
- <li>
1651
- <ui-icon
1652
- color="rebrand-black"
1653
- size="24"
1654
- />
1655
- Review-emoji-2-in-line
1656
- </li>
1657
- <li>
1658
- <ui-icon
1659
- color="rebrand-black"
1660
- size="24"
1661
- />
1662
- Review-emoji-3-filled
1663
- </li>
1664
- <li>
1665
- <ui-icon
1666
- color="rebrand-black"
1667
- size="24"
1668
- />
1669
- Review-emoji-3-in-line
1670
- </li>
1671
- <li>
1672
- <ui-icon
1673
- color="rebrand-black"
1674
- size="24"
1675
- />
1676
- Review-emoji-4-filled
1677
- </li>
1678
- <li>
1679
- <ui-icon
1680
- color="rebrand-black"
1681
- size="24"
1682
- />
1683
- Review-emoji-4-in-line
1684
- </li>
1685
- <li>
1686
- <ui-icon
1687
- color="rebrand-black"
1688
- size="24"
1689
- />
1690
- Review-emoji-5-filled
1691
- </li>
1692
- <li>
1693
- <ui-icon
1694
- color="rebrand-black"
1695
- size="24"
1696
- />
1697
- Review-emoji-5-in-line
1698
- </li>
1699
- <li>
1700
- <ui-icon
1701
- color="rebrand-black"
1702
- size="24"
1703
- />
1704
- Review-half-star-filled
1705
- </li>
1706
- <li>
1707
- <ui-icon
1708
- color="rebrand-black"
1709
- size="24"
1710
- />
1711
- Review-half-star-in-line
1712
- </li>
1713
- <li>
1714
- <ui-icon
1715
- color="rebrand-black"
1716
- size="24"
1717
- />
1718
- Review-star-filled
1719
- </li>
1720
- <li>
1721
- <ui-icon
1722
- color="rebrand-black"
1723
- size="24"
1724
- />
1725
- Review-star-in-line
1726
- </li>
1727
- <li>
1728
- <ui-icon
1729
- color="rebrand-black"
1730
- size="24"
1731
- />
1732
- Warning-filled
1733
- </li>
1734
- <li>
1735
- <ui-icon
1736
- color="rebrand-black"
1737
- size="24"
1738
- />
1739
- Warning-in-line
1740
- </li>
1741
- </ul>
1742
- </div>
1743
- </ui-icons-showcase>
1744
- `;
1745
-
1746
- exports[`IconsShowcaseComponent should render correctly 2`] = `
1747
- <ui-icons-showcase
1748
- applicationTheme={[Function String]}
1749
- defaultAppTheme="null"
1750
- icons={[Function Object]}
1751
- >
1752
- <div
1753
- class="icons-section"
1754
- >
1755
- <h1>
1756
- Actions
1757
- </h1>
1758
- <ul
1759
- class="icons-showcase"
1760
- >
1761
- <li>
1762
- <ui-icon
1763
- color="rebrand-black"
1764
- size="24"
1765
- />
1766
- Archive-filled
1767
- </li>
1768
- <li>
1769
- <ui-icon
1770
- color="rebrand-black"
1771
- size="24"
1772
- />
1773
- Archive-in-line
1774
- </li>
1775
- <li>
1776
- <ui-icon
1777
- color="rebrand-black"
1778
- size="24"
1779
- />
1780
- Attach-filled
1781
- </li>
1782
- <li>
1783
- <ui-icon
1784
- color="rebrand-black"
1785
- size="24"
1786
- />
1787
- Attach-in-line
1788
- </li>
1789
- <li>
1790
- <ui-icon
1791
- color="rebrand-black"
1792
- size="24"
1793
- />
1794
- Clone-filled
1795
- </li>
1796
- <li>
1797
- <ui-icon
1798
- color="rebrand-black"
1799
- size="24"
1800
- />
1801
- Clone-in-line
1802
- </li>
1803
- <li>
1804
- <ui-icon
1805
- color="rebrand-black"
1806
- size="24"
1807
- />
1808
- Close-filled
1809
- </li>
1810
- <li>
1811
- <ui-icon
1812
- color="rebrand-black"
1813
- size="24"
1814
- />
1815
- Close-in-line
1816
- </li>
1817
- <li>
1818
- <ui-icon
1819
- color="rebrand-black"
1820
- size="24"
1821
- />
1822
- Copy-filled
1823
- </li>
1824
- <li>
1825
- <ui-icon
1826
- color="rebrand-black"
1827
- size="24"
1828
- />
1829
- Copy-in-line
1830
- </li>
1831
- <li>
1832
- <ui-icon
1833
- color="rebrand-black"
1834
- size="24"
1835
- />
1836
- Delete-filled
1837
- </li>
1838
- <li>
1839
- <ui-icon
1840
- color="rebrand-black"
1841
- size="24"
1842
- />
1843
- Delete-in-line
1844
- </li>
1845
- <li>
1846
- <ui-icon
1847
- color="rebrand-black"
1848
- size="24"
1849
- />
1850
- Download-filled
1851
- </li>
1852
- <li>
1853
- <ui-icon
1854
- color="rebrand-black"
1855
- size="24"
1856
- />
1857
- Download-in-line
1858
- </li>
1859
- <li>
1860
- <ui-icon
1861
- color="rebrand-black"
1862
- size="24"
1863
- />
1864
- Edit-filled
1865
- </li>
1866
- <li>
1867
- <ui-icon
1868
- color="rebrand-black"
1869
- size="24"
1870
- />
1871
- Edit-in-line
1872
- </li>
1873
- <li>
1874
- <ui-icon
1875
- color="rebrand-black"
1876
- size="24"
1877
- />
1878
- Edit-text-filled
1879
- </li>
1880
- <li>
1881
- <ui-icon
1882
- color="rebrand-black"
1883
- size="24"
1884
- />
1885
- Edit-text-in-line
1886
- </li>
1887
- <li>
1888
- <ui-icon
1889
- color="rebrand-black"
1890
- size="24"
1891
- />
1892
- Filter-filled
1893
- </li>
1894
- <li>
1895
- <ui-icon
1896
- color="rebrand-black"
1897
- size="24"
1898
- />
1899
- Filter-in-line
1900
- </li>
1901
- <li>
1902
- <ui-icon
1903
- color="rebrand-black"
1904
- size="24"
1905
- />
1906
- Full-screen-filled
1907
- </li>
1908
- <li>
1909
- <ui-icon
1910
- color="rebrand-black"
1911
- size="24"
1912
- />
1913
- Full-screen-in-line
1914
- </li>
1915
- <li>
1916
- <ui-icon
1917
- color="rebrand-black"
1918
- size="24"
1919
- />
1920
- Grab-filled
1921
- </li>
1922
- <li>
1923
- <ui-icon
1924
- color="rebrand-black"
1925
- size="24"
1926
- />
1927
- Grab-in-line
1928
- </li>
1929
- <li>
1930
- <ui-icon
1931
- color="rebrand-black"
1932
- size="24"
1933
- />
1934
- Hide-filled
1935
- </li>
1936
- <li>
1937
- <ui-icon
1938
- color="rebrand-black"
1939
- size="24"
1940
- />
1941
- Hide-in-line
1942
- </li>
1943
- <li>
1944
- <ui-icon
1945
- color="rebrand-black"
1946
- size="24"
1947
- />
1948
- Invite-filled
1949
- </li>
1950
- <li>
1951
- <ui-icon
1952
- color="rebrand-black"
1953
- size="24"
1954
- />
1955
- Invite-in-line
1956
- </li>
1957
- <li>
1958
- <ui-icon
1959
- color="rebrand-black"
1960
- size="24"
1961
- />
1962
- Link-filled
1963
- </li>
1964
- <li>
1965
- <ui-icon
1966
- color="rebrand-black"
1967
- size="24"
1968
- />
1969
- Link-in-line
1970
- </li>
1971
- <li>
1972
- <ui-icon
1973
- color="rebrand-black"
1974
- size="24"
1975
- />
1976
- Lock-filled
1977
- </li>
1978
- <li>
1979
- <ui-icon
1980
- color="rebrand-black"
1981
- size="24"
1982
- />
1983
- Lock-in-line
1984
- </li>
1985
- <li>
1986
- <ui-icon
1987
- color="rebrand-black"
1988
- size="24"
1989
- />
1990
- Logout-filled
1991
- </li>
1992
- <li>
1993
- <ui-icon
1994
- color="rebrand-black"
1995
- size="24"
1996
- />
1997
- Logout-in-line
1998
- </li>
1999
- <li>
2000
- <ui-icon
2001
- color="rebrand-black"
2002
- size="24"
2003
- />
2004
- Menu-burger-filled
2005
- </li>
2006
- <li>
2007
- <ui-icon
2008
- color="rebrand-black"
2009
- size="24"
2010
- />
2011
- Menu-burger-in-line
2012
- </li>
2013
- <li>
2014
- <ui-icon
2015
- color="rebrand-black"
2016
- size="24"
2017
- />
2018
- Menu-ellipsis-filled
2019
- </li>
2020
- <li>
2021
- <ui-icon
2022
- color="rebrand-black"
2023
- size="24"
2024
- />
2025
- Menu-ellipsis-in-line
2026
- </li>
2027
- <li>
2028
- <ui-icon
2029
- color="rebrand-black"
2030
- size="24"
2031
- />
2032
- Minimize-filled
2033
- </li>
2034
- <li>
2035
- <ui-icon
2036
- color="rebrand-black"
2037
- size="24"
2038
- />
2039
- Minimize-in-line
2040
- </li>
2041
- <li>
2042
- <ui-icon
2043
- color="rebrand-black"
2044
- size="24"
2045
- />
2046
- Pause-filled
2047
- </li>
2048
- <li>
2049
- <ui-icon
2050
- color="rebrand-black"
2051
- size="24"
2052
- />
2053
- Pause-in-line
2054
- </li>
2055
- <li>
2056
- <ui-icon
2057
- color="rebrand-black"
2058
- size="24"
2059
- />
2060
- Play-filled
2061
- </li>
2062
- <li>
2063
- <ui-icon
2064
- color="rebrand-black"
2065
- size="24"
2066
- />
2067
- Play-in-line
2068
- </li>
2069
- <li>
2070
- <ui-icon
2071
- color="rebrand-black"
2072
- size="24"
2073
- />
2074
- Record-filled
2075
- </li>
2076
- <li>
2077
- <ui-icon
2078
- color="rebrand-black"
2079
- size="24"
2080
- />
2081
- Record-in-line
2082
- </li>
2083
- <li>
2084
- <ui-icon
2085
- color="rebrand-black"
2086
- size="24"
2087
- />
2088
- Reject-filled
2089
- </li>
2090
- <li>
2091
- <ui-icon
2092
- color="rebrand-black"
2093
- size="24"
2094
- />
2095
- Reject-in-line
2096
- </li>
2097
- <li>
2098
- <ui-icon
2099
- color="rebrand-black"
2100
- size="24"
2101
- />
2102
- Reset-filled
2103
- </li>
2104
- <li>
2105
- <ui-icon
2106
- color="rebrand-black"
2107
- size="24"
2108
- />
2109
- Reset-in-line
2110
- </li>
2111
- <li>
2112
- <ui-icon
2113
- color="rebrand-black"
2114
- size="24"
2115
- />
2116
- Review-filled
2117
- </li>
2118
- <li>
2119
- <ui-icon
2120
- color="rebrand-black"
2121
- size="24"
2122
- />
2123
- Review-half-star-filled
2124
- </li>
2125
- <li>
2126
- <ui-icon
2127
- color="rebrand-black"
2128
- size="24"
2129
- />
2130
- Search-filled
2131
- </li>
2132
- <li>
2133
- <ui-icon
2134
- color="rebrand-black"
2135
- size="24"
2136
- />
2137
- Search-in-line
2138
- </li>
2139
- <li>
2140
- <ui-icon
2141
- color="rebrand-black"
2142
- size="24"
2143
- />
2144
- Send-filled
2145
- </li>
2146
- <li>
2147
- <ui-icon
2148
- color="rebrand-black"
2149
- size="24"
2150
- />
2151
- Send-in-line
2152
- </li>
2153
- <li>
2154
- <ui-icon
2155
- color="rebrand-black"
2156
- size="24"
2157
- />
2158
- Settings-filled
2159
- </li>
2160
- <li>
2161
- <ui-icon
2162
- color="rebrand-black"
2163
- size="24"
2164
- />
2165
- Settings-in-line
2166
- </li>
2167
- <li>
2168
- <ui-icon
2169
- color="rebrand-black"
2170
- size="24"
2171
- />
2172
- Share-filled
2173
- </li>
2174
- <li>
2175
- <ui-icon
2176
- color="rebrand-black"
2177
- size="24"
2178
- />
2179
- Share-in-line
2180
- </li>
2181
- <li>
2182
- <ui-icon
2183
- color="rebrand-black"
2184
- size="24"
2185
- />
2186
- Stop-filled
2187
- </li>
2188
- <li>
2189
- <ui-icon
2190
- color="rebrand-black"
2191
- size="24"
2192
- />
2193
- Stop-in-line
2194
- </li>
2195
- <li>
2196
- <ui-icon
2197
- color="rebrand-black"
2198
- size="24"
2199
- />
2200
- Switch-filled
2201
- </li>
2202
- <li>
2203
- <ui-icon
2204
- color="rebrand-black"
2205
- size="24"
2206
- />
2207
- Switch-in-line
2208
- </li>
2209
- <li>
2210
- <ui-icon
2211
- color="rebrand-black"
2212
- size="24"
2213
- />
2214
- Unarchive-filled
2215
- </li>
2216
- <li>
2217
- <ui-icon
2218
- color="rebrand-black"
2219
- size="24"
2220
- />
2221
- Unarchive-in-line
2222
- </li>
2223
- <li>
2224
- <ui-icon
2225
- color="rebrand-black"
2226
- size="24"
2227
- />
2228
- Unlock-filled
2229
- </li>
2230
- <li>
2231
- <ui-icon
2232
- color="rebrand-black"
2233
- size="24"
2234
- />
2235
- Unlock-in-line
2236
- </li>
2237
- <li>
2238
- <ui-icon
2239
- color="rebrand-black"
2240
- size="24"
2241
- />
2242
- Upgrade-filled
2243
- </li>
2244
- <li>
2245
- <ui-icon
2246
- color="rebrand-black"
2247
- size="24"
2248
- />
2249
- Upgrade-in-line
2250
- </li>
2251
- <li>
2252
- <ui-icon
2253
- color="rebrand-black"
2254
- size="24"
2255
- />
2256
- Upload-filled
2257
- </li>
2258
- <li>
2259
- <ui-icon
2260
- color="rebrand-black"
2261
- size="24"
2262
- />
2263
- Upload-in-line
2264
- </li>
2265
- <li>
2266
- <ui-icon
2267
- color="rebrand-black"
2268
- size="24"
2269
- />
2270
- User-add-filled
2271
- </li>
2272
- <li>
2273
- <ui-icon
2274
- color="rebrand-black"
2275
- size="24"
2276
- />
2277
- User-add-in-line
2278
- </li>
2279
- <li>
2280
- <ui-icon
2281
- color="rebrand-black"
2282
- size="24"
2283
- />
2284
- View-filled
2285
- </li>
2286
- <li>
2287
- <ui-icon
2288
- color="rebrand-black"
2289
- size="24"
2290
- />
2291
- View-in-line
2292
- </li>
2293
- <li>
2294
- <ui-icon
2295
- color="rebrand-black"
2296
- size="24"
2297
- />
2298
- Zoom-in-filled
2299
- </li>
2300
- <li>
2301
- <ui-icon
2302
- color="rebrand-black"
2303
- size="24"
2304
- />
2305
- Zoom-in-in-line
2306
- </li>
2307
- <li>
2308
- <ui-icon
2309
- color="rebrand-black"
2310
- size="24"
2311
- />
2312
- Zoom-out-filled
2313
- </li>
2314
- <li>
2315
- <ui-icon
2316
- color="rebrand-black"
2317
- size="24"
2318
- />
2319
- Zoom-out-in-line
2320
- </li>
2321
- </ul>
2322
- </div><div
2323
- class="icons-section"
2324
- >
2325
- <h1>
2326
- Assessment
2327
- </h1>
2328
- <ul
2329
- class="icons-showcase"
2330
- >
2331
- <li>
2332
- <ui-icon
2333
- color="rebrand-black"
2334
- size="24"
2335
- />
2336
- Assessment-filled
2337
- </li>
2338
- <li>
2339
- <ui-icon
2340
- color="rebrand-black"
2341
- size="24"
2342
- />
2343
- Assessment-in-line
2344
- </li>
2345
- <li>
2346
- <ui-icon
2347
- color="rebrand-black"
2348
- size="24"
2349
- />
2350
- Attempts-filled
2351
- </li>
2352
- <li>
2353
- <ui-icon
2354
- color="rebrand-black"
2355
- size="24"
2356
- />
2357
- Attempts-in-line
2358
- </li>
2359
- <li>
2360
- <ui-icon
2361
- color="rebrand-black"
2362
- size="24"
2363
- />
2364
- Candidates-filled
2365
- </li>
2366
- <li>
2367
- <ui-icon
2368
- color="rebrand-black"
2369
- size="24"
2370
- />
2371
- Candidates-in-line
2372
- </li>
2373
- <li>
2374
- <ui-icon
2375
- color="rebrand-black"
2376
- size="24"
2377
- />
2378
- Code-filled
2379
- </li>
2380
- <li>
2381
- <ui-icon
2382
- color="rebrand-black"
2383
- size="24"
2384
- />
2385
- Code-in-line
2386
- </li>
2387
- <li>
2388
- <ui-icon
2389
- color="rebrand-black"
2390
- size="24"
2391
- />
2392
- Essay-filled
2393
- </li>
2394
- <li>
2395
- <ui-icon
2396
- color="rebrand-black"
2397
- size="24"
2398
- />
2399
- Essay-in-line
2400
- </li>
2401
- <li>
2402
- <ui-icon
2403
- color="rebrand-black"
2404
- size="24"
2405
- />
2406
- Language-filled
2407
- </li>
2408
- <li>
2409
- <ui-icon
2410
- color="rebrand-black"
2411
- size="24"
2412
- />
2413
- Language-in-line
2414
- </li>
2415
- <li>
2416
- <ui-icon
2417
- color="rebrand-black"
2418
- size="24"
2419
- />
2420
- Learn-filled
2421
- </li>
2422
- <li>
2423
- <ui-icon
2424
- color="rebrand-black"
2425
- size="24"
2426
- />
2427
- Learn-in-line
2428
- </li>
2429
- <li>
2430
- <ui-icon
2431
- color="rebrand-black"
2432
- size="24"
2433
- />
2434
- Level-filled
2435
- </li>
2436
- <li>
2437
- <ui-icon
2438
- color="rebrand-black"
2439
- size="24"
2440
- />
2441
- Level-in-line
2442
- </li>
2443
- <li>
2444
- <ui-icon
2445
- color="rebrand-black"
2446
- size="24"
2447
- />
2448
- Localization-filled
2449
- </li>
2450
- <li>
2451
- <ui-icon
2452
- color="rebrand-black"
2453
- size="24"
2454
- />
2455
- Localization-in-line
2456
- </li>
2457
- <li>
2458
- <ui-icon
2459
- color="rebrand-black"
2460
- size="24"
2461
- />
2462
- Mic-filled
2463
- </li>
2464
- <li>
2465
- <ui-icon
2466
- color="rebrand-black"
2467
- size="24"
2468
- />
2469
- Mic-in-line
2470
- </li>
2471
- <li>
2472
- <ui-icon
2473
- color="rebrand-black"
2474
- size="24"
2475
- />
2476
- Multi-choice-filled
2477
- </li>
2478
- <li>
2479
- <ui-icon
2480
- color="rebrand-black"
2481
- size="24"
2482
- />
2483
- Multi-choice-in-line
2484
- </li>
2485
- <li>
2486
- <ui-icon
2487
- color="rebrand-black"
2488
- size="24"
2489
- />
2490
- Question-count-filled
2491
- </li>
2492
- <li>
2493
- <ui-icon
2494
- color="rebrand-black"
2495
- size="24"
2496
- />
2497
- Question-count-in-line
2498
- </li>
2499
- <li>
2500
- <ui-icon
2501
- color="rebrand-black"
2502
- size="24"
2503
- />
2504
- Question-filled
2505
- </li>
2506
- <li>
2507
- <ui-icon
2508
- color="rebrand-black"
2509
- size="24"
2510
- />
2511
- Question-in-line
2512
- </li>
2513
- <li>
2514
- <ui-icon
2515
- color="rebrand-black"
2516
- size="24"
2517
- />
2518
- Speedometer-filled
2519
- </li>
2520
- <li>
2521
- <ui-icon
2522
- color="rebrand-black"
2523
- size="24"
2524
- />
2525
- Speedometer-in-line
2526
- </li>
2527
- <li>
2528
- <ui-icon
2529
- color="rebrand-black"
2530
- size="24"
2531
- />
2532
- Test-filled
2533
- </li>
2534
- <li>
2535
- <ui-icon
2536
- color="rebrand-black"
2537
- size="24"
2538
- />
2539
- Test-in-line
2540
- </li>
2541
- <li>
2542
- <ui-icon
2543
- color="rebrand-black"
2544
- size="24"
2545
- />
2546
- Timer-filled
2547
- </li>
2548
- <li>
2549
- <ui-icon
2550
- color="rebrand-black"
2551
- size="24"
2552
- />
2553
- Timer-in-line
2554
- </li>
2555
- <li>
2556
- <ui-icon
2557
- color="rebrand-black"
2558
- size="24"
2559
- />
2560
- Type-filled
2561
- </li>
2562
- <li>
2563
- <ui-icon
2564
- color="rebrand-black"
2565
- size="24"
2566
- />
2567
- Type-in-line
2568
- </li>
2569
- <li>
2570
- <ui-icon
2571
- color="rebrand-black"
2572
- size="24"
2573
- />
2574
- Video-filled
2575
- </li>
2576
- <li>
2577
- <ui-icon
2578
- color="rebrand-black"
2579
- size="24"
2580
- />
2581
- Video-in-line
2582
- </li>
2583
- </ul>
2584
- </div><div
2585
- class="icons-section"
2586
- >
2587
- <h1>
2588
- Communication
2589
- </h1>
2590
- <ul
2591
- class="icons-showcase"
2592
- >
2593
- <li>
2594
- <ui-icon
2595
- color="rebrand-black"
2596
- size="24"
2597
- />
2598
- Book-filled
2599
- </li>
2600
- <li>
2601
- <ui-icon
2602
- color="rebrand-black"
2603
- size="24"
2604
- />
2605
- Book-in-line
2606
- </li>
2607
- <li>
2608
- <ui-icon
2609
- color="rebrand-black"
2610
- size="24"
2611
- />
2612
- Calendar-filled
2613
- </li>
2614
- <li>
2615
- <ui-icon
2616
- color="rebrand-black"
2617
- size="24"
2618
- />
2619
- Calendar-in-line
2620
- </li>
2621
- <li>
2622
- <ui-icon
2623
- color="rebrand-black"
2624
- size="24"
2625
- />
2626
- Chat-filled
2627
- </li>
2628
- <li>
2629
- <ui-icon
2630
- color="rebrand-black"
2631
- size="24"
2632
- />
2633
- Chat-in-line
2634
- </li>
2635
- <li>
2636
- <ui-icon
2637
- color="rebrand-black"
2638
- size="24"
2639
- />
2640
- Company-filled
2641
- </li>
2642
- <li>
2643
- <ui-icon
2644
- color="rebrand-black"
2645
- size="24"
2646
- />
2647
- Company-in-line
2648
- </li>
2649
- <li>
2650
- <ui-icon
2651
- color="rebrand-black"
2652
- size="24"
2653
- />
2654
- Devices-filled
2655
- </li>
2656
- <li>
2657
- <ui-icon
2658
- color="rebrand-black"
2659
- size="24"
2660
- />
2661
- Devices-in-line
2662
- </li>
2663
- <li>
2664
- <ui-icon
2665
- color="rebrand-black"
2666
- size="24"
2667
- />
2668
- Document-filled
2669
- </li>
2670
- <li>
2671
- <ui-icon
2672
- color="rebrand-black"
2673
- size="24"
2674
- />
2675
- Document-in-line
2676
- </li>
2677
- <li>
2678
- <ui-icon
2679
- color="rebrand-black"
2680
- size="24"
2681
- />
2682
- Employee-filled
2683
- </li>
2684
- <li>
2685
- <ui-icon
2686
- color="rebrand-black"
2687
- size="24"
2688
- />
2689
- Employee-in-line
2690
- </li>
2691
- <li>
2692
- <ui-icon
2693
- color="rebrand-black"
2694
- size="24"
2695
- />
2696
- Experience-filled
2697
- </li>
2698
- <li>
2699
- <ui-icon
2700
- color="rebrand-black"
2701
- size="24"
2702
- />
2703
- Experience-in-line
2704
- </li>
2705
- <li>
2706
- <ui-icon
2707
- color="rebrand-black"
2708
- size="24"
2709
- />
2710
- Fire-filled
2711
- </li>
2712
- <li>
2713
- <ui-icon
2714
- color="rebrand-black"
2715
- size="24"
2716
- />
2717
- Fire-in-line
2718
- </li>
2719
- <li>
2720
- <ui-icon
2721
- color="rebrand-black"
2722
- size="24"
2723
- />
2724
- Folder-filled
2725
- </li>
2726
- <li>
2727
- <ui-icon
2728
- color="rebrand-black"
2729
- size="24"
2730
- />
2731
- Folder-in-line
2732
- </li>
2733
- <li>
2734
- <ui-icon
2735
- color="rebrand-black"
2736
- size="24"
2737
- />
2738
- Gender-female-filled
2739
- </li>
2740
- <li>
2741
- <ui-icon
2742
- color="rebrand-black"
2743
- size="24"
2744
- />
2745
- Gender-female-in-line
2746
- </li>
2747
- <li>
2748
- <ui-icon
2749
- color="rebrand-black"
2750
- size="24"
2751
- />
2752
- Gender-male-filled
2753
- </li>
2754
- <li>
2755
- <ui-icon
2756
- color="rebrand-black"
2757
- size="24"
2758
- />
2759
- Gender-male-in-line
2760
- </li>
2761
- <li>
2762
- <ui-icon
2763
- color="rebrand-black"
2764
- size="24"
2765
- />
2766
- Gift-filled
2767
- </li>
2768
- <li>
2769
- <ui-icon
2770
- color="rebrand-black"
2771
- size="24"
2772
- />
2773
- Gift-in-line
2774
- </li>
2775
- <li>
2776
- <ui-icon
2777
- color="rebrand-black"
2778
- size="24"
2779
- />
2780
- Image-filled
2781
- </li>
2782
- <li>
2783
- <ui-icon
2784
- color="rebrand-black"
2785
- size="24"
2786
- />
2787
- Image-in-line
2788
- </li>
2789
- <li>
2790
- <ui-icon
2791
- color="rebrand-black"
2792
- size="24"
2793
- />
2794
- Integration-filled
2795
- </li>
2796
- <li>
2797
- <ui-icon
2798
- color="rebrand-black"
2799
- size="24"
2800
- />
2801
- Integration-in-line
2802
- </li>
2803
- <li>
2804
- <ui-icon
2805
- color="rebrand-black"
2806
- size="24"
2807
- />
2808
- Layout-filled
2809
- </li>
2810
- <li>
2811
- <ui-icon
2812
- color="rebrand-black"
2813
- size="24"
2814
- />
2815
- Layout-in-line
2816
- </li>
2817
- <li>
2818
- <ui-icon
2819
- color="rebrand-black"
2820
- size="24"
2821
- />
2822
- Light-bulb-filled
2823
- </li>
2824
- <li>
2825
- <ui-icon
2826
- color="rebrand-black"
2827
- size="24"
2828
- />
2829
- Light-bulb-in-line
2830
- </li>
2831
- <li>
2832
- <ui-icon
2833
- color="rebrand-black"
2834
- size="24"
2835
- />
2836
- Location-filled
2837
- </li>
2838
- <li>
2839
- <ui-icon
2840
- color="rebrand-black"
2841
- size="24"
2842
- />
2843
- Location-in-line
2844
- </li>
2845
- <li>
2846
- <ui-icon
2847
- color="rebrand-black"
2848
- size="24"
2849
- />
2850
- Mouse-filled
2851
- </li>
2852
- <li>
2853
- <ui-icon
2854
- color="rebrand-black"
2855
- size="24"
2856
- />
2857
- Mouse-in-line
2858
- </li>
2859
- <li>
2860
- <ui-icon
2861
- color="rebrand-black"
2862
- size="24"
2863
- />
2864
- Notification-bell-filled
2865
- </li>
2866
- <li>
2867
- <ui-icon
2868
- color="rebrand-black"
2869
- size="24"
2870
- />
2871
- Notification-bell-in-line
2872
- </li>
2873
- <li>
2874
- <ui-icon
2875
- color="rebrand-black"
2876
- size="24"
2877
- />
2878
- Password-filled
2879
- </li>
2880
- <li>
2881
- <ui-icon
2882
- color="rebrand-black"
2883
- size="24"
2884
- />
2885
- Password-in-line
2886
- </li>
2887
- <li>
2888
- <ui-icon
2889
- color="rebrand-black"
2890
- size="24"
2891
- />
2892
- Path-filled
2893
- </li>
2894
- <li>
2895
- <ui-icon
2896
- color="rebrand-black"
2897
- size="24"
2898
- />
2899
- Path-in-line
2900
- </li>
2901
- <li>
2902
- <ui-icon
2903
- color="rebrand-black"
2904
- size="24"
2905
- />
2906
- Plan-billing-filled
2907
- </li>
2908
- <li>
2909
- <ui-icon
2910
- color="rebrand-black"
2911
- size="24"
2912
- />
2913
- Plan-billing-in-line
2914
- </li>
2915
- <li>
2916
- <ui-icon
2917
- color="rebrand-black"
2918
- size="24"
2919
- />
2920
- Premium-filled
2921
- </li>
2922
- <li>
2923
- <ui-icon
2924
- color="rebrand-black"
2925
- size="24"
2926
- />
2927
- Premium-in-line
2928
- </li>
2929
- <li>
2930
- <ui-icon
2931
- color="rebrand-black"
2932
- size="24"
2933
- />
2934
- Premium-circle-in-line
2935
- </li>
2936
- <li>
2937
- <ui-icon
2938
- color="rebrand-black"
2939
- size="24"
2940
- />
2941
- Secure-filled
2942
- </li>
2943
- <li>
2944
- <ui-icon
2945
- color="rebrand-black"
2946
- size="24"
2947
- />
2948
- Secure-in-line
2949
- </li>
2950
- <li>
2951
- <ui-icon
2952
- color="rebrand-black"
2953
- size="24"
2954
- />
2955
- Sparkle-filled
2956
- </li>
2957
- <li>
2958
- <ui-icon
2959
- color="rebrand-black"
2960
- size="24"
2961
- />
2962
- Sparkle-in-line
2963
- </li>
2964
- <li>
2965
- <ui-icon
2966
- color="rebrand-black"
2967
- size="24"
2968
- />
2969
- Sync-filled
2970
- </li>
2971
- <li>
2972
- <ui-icon
2973
- color="rebrand-black"
2974
- size="24"
2975
- />
2976
- Sync-in-line
2977
- </li>
2978
- <li>
2979
- <ui-icon
2980
- color="rebrand-black"
2981
- size="24"
2982
- />
2983
- Team-filled
2984
- </li>
2985
- <li>
2986
- <ui-icon
2987
- color="rebrand-black"
2988
- size="24"
2989
- />
2990
- Team-in-line
2991
- </li>
2992
- <li>
2993
- <ui-icon
2994
- color="rebrand-black"
2995
- size="24"
2996
- />
2997
- User-access-filled
2998
- </li>
2999
- <li>
3000
- <ui-icon
3001
- color="rebrand-black"
3002
- size="24"
3003
- />
3004
- User-access-in-line
3005
- </li>
3006
- <li>
3007
- <ui-icon
3008
- color="rebrand-black"
3009
- size="24"
3010
- />
3011
- User-profile-filled
3012
- </li>
3013
- <li>
3014
- <ui-icon
3015
- color="rebrand-black"
3016
- size="24"
3017
- />
3018
- User-profile-in-line
3019
- </li>
3020
- <li>
3021
- <ui-icon
3022
- color="rebrand-black"
3023
- size="24"
3024
- />
3025
- Volume-filled
3026
- </li>
3027
- <li>
3028
- <ui-icon
3029
- color="rebrand-black"
3030
- size="24"
3031
- />
3032
- Volume-in-line
3033
- </li>
3034
- </ul>
3035
- </div><div
3036
- class="icons-section"
3037
- >
3038
- <h1>
3039
- Directional
3040
- </h1>
3041
- <ul
3042
- class="icons-showcase"
3043
- >
3044
- <li>
3045
- <ui-icon
3046
- color="rebrand-black"
3047
- size="24"
3048
- />
3049
- Arrow-chevron-down-filled
3050
- </li>
3051
- <li>
3052
- <ui-icon
3053
- color="rebrand-black"
3054
- size="24"
3055
- />
3056
- Arrow-chevron-down-in-line
3057
- </li>
3058
- <li>
3059
- <ui-icon
3060
- color="rebrand-black"
3061
- size="24"
3062
- />
3063
- Arrow-chevron-left-filled
3064
- </li>
3065
- <li>
3066
- <ui-icon
3067
- color="rebrand-black"
3068
- size="24"
3069
- />
3070
- Arrow-chevron-left-in-line
3071
- </li>
3072
- <li>
3073
- <ui-icon
3074
- color="rebrand-black"
3075
- size="24"
3076
- />
3077
- Arrow-chevron-right-filled
3078
- </li>
3079
- <li>
3080
- <ui-icon
3081
- color="rebrand-black"
3082
- size="24"
3083
- />
3084
- Arrow-chevron-right-in-line
3085
- </li>
3086
- <li>
3087
- <ui-icon
3088
- color="rebrand-black"
3089
- size="24"
3090
- />
3091
- Arrow-chevron-up-filled
3092
- </li>
3093
- <li>
3094
- <ui-icon
3095
- color="rebrand-black"
3096
- size="24"
3097
- />
3098
- Arrow-chevron-up-in-line
3099
- </li>
3100
- <li>
3101
- <ui-icon
3102
- color="rebrand-black"
3103
- size="24"
3104
- />
3105
- Arrow-down-filled
3106
- </li>
3107
- <li>
3108
- <ui-icon
3109
- color="rebrand-black"
3110
- size="24"
3111
- />
3112
- Arrow-down-in-line
3113
- </li>
3114
- <li>
3115
- <ui-icon
3116
- color="rebrand-black"
3117
- size="24"
3118
- />
3119
- Arrow-up-filled
3120
- </li>
3121
- <li>
3122
- <ui-icon
3123
- color="rebrand-black"
3124
- size="24"
3125
- />
3126
- Arrow-up-in-line
3127
- </li>
3128
- <li>
3129
- <ui-icon
3130
- color="rebrand-black"
3131
- size="24"
3132
- />
3133
- Fast-forward-filled
3134
- </li>
3135
- <li>
3136
- <ui-icon
3137
- color="rebrand-black"
3138
- size="24"
3139
- />
3140
- Fast-forward-in-line
3141
- </li>
3142
- <li>
3143
- <ui-icon
3144
- color="rebrand-black"
3145
- size="24"
3146
- />
3147
- Fast-rewind-filled
3148
- </li>
3149
- <li>
3150
- <ui-icon
3151
- color="rebrand-black"
3152
- size="24"
3153
- />
3154
- Fast-rewind-in-line
3155
- </li>
3156
- <li>
3157
- <ui-icon
3158
- color="rebrand-black"
3159
- size="24"
3160
- />
3161
- Minus-filled
3162
- </li>
3163
- <li>
3164
- <ui-icon
3165
- color="rebrand-black"
3166
- size="24"
3167
- />
3168
- Minus-in-line
3169
- </li>
3170
- <li>
3171
- <ui-icon
3172
- color="rebrand-black"
3173
- size="24"
3174
- />
3175
- Plus-filled
3176
- </li>
3177
- <li>
3178
- <ui-icon
3179
- color="rebrand-black"
3180
- size="24"
3181
- />
3182
- Plus-in-line
3183
- </li>
3184
- <li>
3185
- <ui-icon
3186
- color="rebrand-black"
3187
- size="24"
3188
- />
3189
- Skip-next-filled
3190
- </li>
3191
- <li>
3192
- <ui-icon
3193
- color="rebrand-black"
3194
- size="24"
3195
- />
3196
- Skip-next-in-line
3197
- </li>
3198
- <li>
3199
- <ui-icon
3200
- color="rebrand-black"
3201
- size="24"
3202
- />
3203
- Skip-previous-filled
3204
- </li>
3205
- <li>
3206
- <ui-icon
3207
- color="rebrand-black"
3208
- size="24"
3209
- />
3210
- Skip-previous-in-line
3211
- </li>
3212
- </ul>
3213
- </div><div
3214
- class="icons-section"
3215
- >
3216
- <h1>
3217
- Social
3218
- </h1>
3219
- <ul
3220
- class="icons-showcase"
3221
- >
3222
- <li>
3223
- <ui-icon
3224
- color="rebrand-black"
3225
- size="24"
3226
- />
3227
- Facebook-filled
3228
- </li>
3229
- <li>
3230
- <ui-icon
3231
- color="rebrand-black"
3232
- size="24"
3233
- />
3234
- Facebook-in-line
3235
- </li>
3236
- <li>
3237
- <ui-icon
3238
- color="rebrand-black"
3239
- size="24"
3240
- />
3241
- Google-filled
3242
- </li>
3243
- <li>
3244
- <ui-icon
3245
- color="rebrand-black"
3246
- size="24"
3247
- />
3248
- Google-in-line
3249
- </li>
3250
- <li>
3251
- <ui-icon
3252
- color="rebrand-black"
3253
- size="24"
3254
- />
3255
- Instagram-filled
3256
- </li>
3257
- <li>
3258
- <ui-icon
3259
- color="rebrand-black"
3260
- size="24"
3261
- />
3262
- Instagram-in-line
3263
- </li>
3264
- <li>
3265
- <ui-icon
3266
- color="rebrand-black"
3267
- size="24"
3268
- />
3269
- Linkedin-filled
3270
- </li>
3271
- <li>
3272
- <ui-icon
3273
- color="rebrand-black"
3274
- size="24"
3275
- />
3276
- Linkedin-in-line
3277
- </li>
3278
- </ul>
3279
- </div><div
3280
- class="icons-section"
3281
- >
3282
- <h1>
3283
- Status
3284
- </h1>
3285
- <ul
3286
- class="icons-showcase"
3287
- >
3288
- <li>
3289
- <ui-icon
3290
- color="rebrand-black"
3291
- size="24"
3292
- />
3293
- Check-filled
3294
- </li>
3295
- <li>
3296
- <ui-icon
3297
- color="rebrand-black"
3298
- size="24"
3299
- />
3300
- Check-in-line
3301
- </li>
3302
- <li>
3303
- <ui-icon
3304
- color="rebrand-black"
3305
- size="24"
3306
- />
3307
- Check-round-filled
3308
- </li>
3309
- <li>
3310
- <ui-icon
3311
- color="rebrand-black"
3312
- size="24"
3313
- />
3314
- Check-round-in-line
3315
- </li>
3316
- <li>
3317
- <ui-icon
3318
- color="rebrand-black"
3319
- size="24"
3320
- />
3321
- Error-filled
3322
- </li>
3323
- <li>
3324
- <ui-icon
3325
- color="rebrand-black"
3326
- size="24"
3327
- />
3328
- Error-in-line
3329
- </li>
3330
- <li>
3331
- <ui-icon
3332
- color="rebrand-black"
3333
- size="24"
3334
- />
3335
- Help-filled
3336
- </li>
3337
- <li>
3338
- <ui-icon
3339
- color="rebrand-black"
3340
- size="24"
3341
- />
3342
- Help-in-line
3343
- </li>
3344
- <li>
3345
- <ui-icon
3346
- color="rebrand-black"
3347
- size="24"
3348
- />
3349
- Info-filled
3350
- </li>
3351
- <li>
3352
- <ui-icon
3353
- color="rebrand-black"
3354
- size="24"
3355
- />
3356
- Info-in-line
3357
- </li>
3358
- <li>
3359
- <ui-icon
3360
- color="rebrand-black"
3361
- size="24"
3362
- />
3363
- Refer-in-line
3364
- </li>
3365
- <li>
3366
- <ui-icon
3367
- color="rebrand-black"
3368
- size="24"
3369
- />
3370
- Refer-filled
3371
- </li>
3372
- <li>
3373
- <ui-icon
3374
- color="rebrand-black"
3375
- size="24"
3376
- />
3377
- Review-emoji-1-filled
3378
- </li>
3379
- <li>
3380
- <ui-icon
3381
- color="rebrand-black"
3382
- size="24"
3383
- />
3384
- Review-emoji-1-in-line
3385
- </li>
3386
- <li>
3387
- <ui-icon
3388
- color="rebrand-black"
3389
- size="24"
3390
- />
3391
- Review-emoji-2-filled
3392
- </li>
3393
- <li>
3394
- <ui-icon
3395
- color="rebrand-black"
3396
- size="24"
3397
- />
3398
- Review-emoji-2-in-line
3399
- </li>
3400
- <li>
3401
- <ui-icon
3402
- color="rebrand-black"
3403
- size="24"
3404
- />
3405
- Review-emoji-3-filled
3406
- </li>
3407
- <li>
3408
- <ui-icon
3409
- color="rebrand-black"
3410
- size="24"
3411
- />
3412
- Review-emoji-3-in-line
3413
- </li>
3414
- <li>
3415
- <ui-icon
3416
- color="rebrand-black"
3417
- size="24"
3418
- />
3419
- Review-emoji-4-filled
3420
- </li>
3421
- <li>
3422
- <ui-icon
3423
- color="rebrand-black"
3424
- size="24"
3425
- />
3426
- Review-emoji-4-in-line
3427
- </li>
3428
- <li>
3429
- <ui-icon
3430
- color="rebrand-black"
3431
- size="24"
3432
- />
3433
- Review-emoji-5-filled
3434
- </li>
3435
- <li>
3436
- <ui-icon
3437
- color="rebrand-black"
3438
- size="24"
3439
- />
3440
- Review-emoji-5-in-line
3441
- </li>
3442
- <li>
3443
- <ui-icon
3444
- color="rebrand-black"
3445
- size="24"
3446
- />
3447
- Review-half-star-filled
3448
- </li>
3449
- <li>
3450
- <ui-icon
3451
- color="rebrand-black"
3452
- size="24"
3453
- />
3454
- Review-half-star-in-line
3455
- </li>
3456
- <li>
3457
- <ui-icon
3458
- color="rebrand-black"
3459
- size="24"
3460
- />
3461
- Review-star-filled
3462
- </li>
3463
- <li>
3464
- <ui-icon
3465
- color="rebrand-black"
3466
- size="24"
3467
- />
3468
- Review-star-in-line
3469
- </li>
3470
- <li>
3471
- <ui-icon
3472
- color="rebrand-black"
3473
- size="24"
3474
- />
3475
- Warning-filled
3476
- </li>
3477
- <li>
3478
- <ui-icon
3479
- color="rebrand-black"
3480
- size="24"
3481
- />
3482
- Warning-in-line
3483
- </li>
3484
- </ul>
3485
- </div>
3486
- </ui-icons-showcase>
3487
- `;