@testgorilla/tgo-ui 2.99.1 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (267) hide show
  1. package/components/alert-banner/alert-banner.component.d.ts +9 -1
  2. package/components/autocomplete/autocomplete.component.d.ts +21 -4
  3. package/components/autocomplete/autocomplete.component.module.d.ts +2 -1
  4. package/components/avatar/avatar.component.module.d.ts +2 -1
  5. package/components/button/button.component.d.ts +14 -3
  6. package/components/button/button.model.d.ts +2 -2
  7. package/components/card/card.component.d.ts +16 -4
  8. package/components/checkbox/checkbox.component.d.ts +15 -4
  9. package/components/checklist/checklist.model.d.ts +1 -0
  10. package/components/confirm-dialog/confirm-dialog.component.d.ts +11 -2
  11. package/components/confirm-dialog/confirm-dialog.model.d.ts +8 -0
  12. package/components/datepicker/{DateAdapter.d.ts → date-adapter.d.ts} +6 -2
  13. package/components/datepicker/datepicker.component.d.ts +4 -4
  14. package/components/dialog/dialog.component.d.ts +10 -1
  15. package/components/dialog/dialog.model.d.ts +12 -0
  16. package/components/dialog/dialog.service.d.ts +3 -2
  17. package/components/dropdown/dropdown.component.d.ts +12 -2
  18. package/components/empty-state/empty-state.component.d.ts +38 -1
  19. package/components/field/field.component.d.ts +39 -9
  20. package/components/file-upload/file-upload.component.d.ts +19 -2
  21. package/components/filter-button/filter-button.component.d.ts +140 -0
  22. package/components/filter-button/filter-button.component.module.d.ts +18 -0
  23. package/components/filter-button/filter-button.model.d.ts +13 -0
  24. package/components/gaussian-chart/gaussian-chart.component.d.ts +75 -0
  25. package/components/gaussian-chart/gaussian-chart.module.d.ts +13 -0
  26. package/components/icon/icon.config.d.ts +1 -1
  27. package/components/logo/logo.component.d.ts +1 -1
  28. package/components/multi-input/multi-input.component.d.ts +14 -7
  29. package/components/navbar/mobile-navbar-side-sheet/mobile-navbar-side-sheet.component.d.ts +5 -3
  30. package/components/navbar/navbar.component.d.ts +11 -4
  31. package/components/page-header/page-header.component.d.ts +1 -1
  32. package/components/password-criteria/password.component.d.ts +3 -1
  33. package/components/radio-button/radio-button.component.d.ts +11 -1
  34. package/components/scale/scale.component.d.ts +1 -0
  35. package/components/side-panel/side-panel.service.d.ts +2 -2
  36. package/components/slider/slider.component.d.ts +19 -8
  37. package/components/slider/slider.component.module.d.ts +1 -8
  38. package/components/spider-chart/spider-chart.component.d.ts +2 -0
  39. package/components/spider-chart/spider-chart.module.d.ts +3 -2
  40. package/components/spinner/spinner.component.d.ts +7 -1
  41. package/components/step/step.component.d.ts +12 -4
  42. package/components/stepper/stepper.component.d.ts +11 -3
  43. package/components/table/table.component.d.ts +30 -7
  44. package/components/table/table.component.module.d.ts +1 -1
  45. package/components/table/table.model.d.ts +13 -4
  46. package/components/tabs/tab.directive.d.ts +2 -1
  47. package/components/tabs/tabs.component.d.ts +3 -0
  48. package/components/tabs/tabs.component.module.d.ts +2 -1
  49. package/components/tabs/tabs.model.d.ts +2 -0
  50. package/components/universal-skills-report/universal-skills-report.component.d.ts +7 -7
  51. package/components/universal-skills-spider-charts/universal-skills-spider-charts.component.d.ts +47 -0
  52. package/components/universal-skills-spider-charts/universal-skills-spider-charts.component.module.d.ts +16 -0
  53. package/{components/deprecated-table/directives → directives}/dynamic-component.directive.d.ts +9 -2
  54. package/esm2022/assets/i18n/da-dk.json +62 -1
  55. package/esm2022/assets/i18n/de.json +62 -1
  56. package/esm2022/assets/i18n/en.json +664 -10
  57. package/esm2022/assets/i18n/es.json +62 -1
  58. package/esm2022/assets/i18n/fr.json +62 -1
  59. package/esm2022/assets/i18n/it-it.json +62 -1
  60. package/esm2022/assets/i18n/ja-jp.json +62 -1
  61. package/esm2022/assets/i18n/nb-no.json +62 -1
  62. package/esm2022/assets/i18n/nl.json +62 -1
  63. package/esm2022/assets/i18n/pl-pl.json +62 -1
  64. package/esm2022/assets/i18n/pt-br.json +62 -1
  65. package/esm2022/assets/i18n/sv-se.json +62 -1
  66. package/esm2022/components/accordion/accordion.component.mjs +5 -5
  67. package/esm2022/components/accordion/accordion.component.module.mjs +4 -4
  68. package/esm2022/components/alert-banner/alert-banner.component.mjs +15 -5
  69. package/esm2022/components/alert-banner/alert-banner.component.module.mjs +4 -4
  70. package/esm2022/components/autocomplete/autocomplete.component.mjs +113 -21
  71. package/esm2022/components/autocomplete/autocomplete.component.module.mjs +11 -7
  72. package/esm2022/components/autocomplete/includes.pipe.mjs +3 -3
  73. package/esm2022/components/autocomplete/prevent-input.directive.mjs +3 -3
  74. package/esm2022/components/autocomplete/transform-Item.pipe.mjs +3 -3
  75. package/esm2022/components/avatar/avatar.component.mjs +7 -6
  76. package/esm2022/components/avatar/avatar.component.module.mjs +7 -6
  77. package/esm2022/components/badge/badge.component.mjs +4 -4
  78. package/esm2022/components/badge/badge.component.module.mjs +4 -4
  79. package/esm2022/components/button/button.component.mjs +44 -20
  80. package/esm2022/components/button/button.component.module.mjs +4 -4
  81. package/esm2022/components/button/button.model.mjs +1 -1
  82. package/esm2022/components/card/card.component.mjs +38 -7
  83. package/esm2022/components/card/card.component.module.mjs +4 -4
  84. package/esm2022/components/checkbox/checkbox.component.mjs +35 -11
  85. package/esm2022/components/checkbox/checkbox.component.module.mjs +4 -4
  86. package/esm2022/components/checkbox/focus-visible.directive.mjs +3 -3
  87. package/esm2022/components/checklist/checklist.component.mjs +6 -6
  88. package/esm2022/components/checklist/checklist.model.mjs +1 -1
  89. package/esm2022/components/confirm-dialog/confirm-dialog.component.mjs +18 -6
  90. package/esm2022/components/confirm-dialog/confirm-dialog.component.module.mjs +4 -4
  91. package/esm2022/components/confirm-dialog/confirm-dialog.model.mjs +1 -1
  92. package/esm2022/components/datepicker/date-adapter.mjs +39 -0
  93. package/esm2022/components/datepicker/datepicker.component.mjs +15 -17
  94. package/esm2022/components/datepicker/datepicker.component.module.mjs +4 -4
  95. package/esm2022/components/datepicker/datepicker.service.mjs +3 -3
  96. package/esm2022/components/datepicker/no-date-format.directive.mjs +6 -6
  97. package/esm2022/components/deprecated-paginator/deprecated-paginator.component.mjs +3 -3
  98. package/esm2022/components/deprecated-paginator/deprecated-paginator.component.module.mjs +4 -4
  99. package/esm2022/components/dialog/dialog.component.mjs +21 -8
  100. package/esm2022/components/dialog/dialog.component.module.mjs +4 -4
  101. package/esm2022/components/dialog/dialog.model.mjs +2 -0
  102. package/esm2022/components/dialog/dialog.service.mjs +6 -5
  103. package/esm2022/components/divider/divider.component.mjs +3 -3
  104. package/esm2022/components/divider/divider.component.module.mjs +4 -4
  105. package/esm2022/components/dropdown/dropdown.component.mjs +28 -9
  106. package/esm2022/components/dropdown/dropdown.component.module.mjs +4 -4
  107. package/esm2022/components/elevation-shadow/elevation-shadow.component.mjs +3 -3
  108. package/esm2022/components/elevation-shadow/elevation-shadow.component.module.mjs +4 -4
  109. package/esm2022/components/empty-state/empty-state.component.mjs +53 -5
  110. package/esm2022/components/empty-state/empty-state.component.module.mjs +4 -4
  111. package/esm2022/components/field/field.component.mjs +53 -29
  112. package/esm2022/components/field/field.component.module.mjs +4 -4
  113. package/esm2022/components/file-upload/file-upload.component.mjs +46 -32
  114. package/esm2022/components/file-upload/file-upload.component.module.mjs +4 -4
  115. package/esm2022/components/filter-button/filter-button.component.mjs +255 -0
  116. package/esm2022/components/filter-button/filter-button.component.module.mjs +58 -0
  117. package/esm2022/components/filter-button/filter-button.model.mjs +2 -0
  118. package/esm2022/components/gaussian-chart/gaussian-chart.component.mjs +246 -0
  119. package/esm2022/components/gaussian-chart/gaussian-chart.module.mjs +42 -0
  120. package/esm2022/components/icon/icon.component.mjs +5 -5
  121. package/esm2022/components/icon/icon.component.module.mjs +4 -4
  122. package/esm2022/components/icon/icon.config.mjs +27 -1
  123. package/esm2022/components/icon-label/icon-label.component.mjs +3 -3
  124. package/esm2022/components/icon-label/icon-label.component.module.mjs +4 -4
  125. package/esm2022/components/logo/logo.component.mjs +4 -4
  126. package/esm2022/components/logo/logo.component.module.mjs +4 -4
  127. package/esm2022/components/media-card/media-card.component.mjs +5 -5
  128. package/esm2022/components/multi-input/multi-input.component.mjs +37 -24
  129. package/esm2022/components/multi-input/multi-input.component.module.mjs +4 -4
  130. package/esm2022/components/navbar/mobile-navbar-side-sheet/mobile-navbar-side-sheet.component.mjs +13 -9
  131. package/esm2022/components/navbar/navbar.component.mjs +17 -14
  132. package/esm2022/components/navbar/navbar.component.module.mjs +4 -4
  133. package/esm2022/components/overflow-menu/overflow-menu.component.mjs +4 -4
  134. package/esm2022/components/overflow-menu/overflow-menu.component.module.mjs +4 -4
  135. package/esm2022/components/page-header/page-header.component.mjs +5 -5
  136. package/esm2022/components/page-header/page-header.component.module.mjs +4 -4
  137. package/esm2022/components/paginator/paginator.component.mjs +3 -3
  138. package/esm2022/components/paginator/paginator.component.module.mjs +4 -4
  139. package/esm2022/components/password-criteria/password.component.mjs +13 -7
  140. package/esm2022/components/password-criteria/password.component.module.mjs +4 -4
  141. package/esm2022/components/password-strength/password-strength.component.mjs +3 -3
  142. package/esm2022/components/password-strength/password-strength.component.module.mjs +4 -4
  143. package/esm2022/components/phone-input/join-strings.pipe.mjs +3 -3
  144. package/esm2022/components/phone-input/phone-input.component.mjs +4 -4
  145. package/esm2022/components/phone-input/phone-input.component.module.mjs +4 -4
  146. package/esm2022/components/progress-bar/progress-bar.component.mjs +4 -4
  147. package/esm2022/components/progress-bar/progress-bar.component.module.mjs +4 -4
  148. package/esm2022/components/radial-progress/radial-progress.component.mjs +3 -3
  149. package/esm2022/components/radial-progress/radial-progress.component.module.mjs +4 -4
  150. package/esm2022/components/radio-button/radio-button.component.mjs +19 -5
  151. package/esm2022/components/radio-button/radio-button.component.module.mjs +4 -4
  152. package/esm2022/components/rating/half-star.pipe.mjs +3 -3
  153. package/esm2022/components/rating/rating.component.mjs +3 -3
  154. package/esm2022/components/rating/rating.component.module.mjs +4 -4
  155. package/esm2022/components/scale/scale.component.mjs +18 -6
  156. package/esm2022/components/scale/scale.component.module.mjs +4 -4
  157. package/esm2022/components/segmented-bar/segmented-bar.component.mjs +3 -3
  158. package/esm2022/components/segmented-bar/segmented-bar.component.module.mjs +4 -4
  159. package/esm2022/components/segmented-button/segmented-button.component.mjs +6 -6
  160. package/esm2022/components/segmented-button/segmented-button.component.module.mjs +4 -4
  161. package/esm2022/components/side-panel/side-panel.component.mjs +6 -6
  162. package/esm2022/components/side-panel/side-panel.service.mjs +9 -8
  163. package/esm2022/components/side-sheet/side-sheet.component.mjs +3 -3
  164. package/esm2022/components/side-sheet/side-sheet.component.module.mjs +4 -4
  165. package/esm2022/components/side-sheet/side-sheet.service.mjs +3 -3
  166. package/esm2022/components/skeleton/skeleton.component.mjs +3 -3
  167. package/esm2022/components/slider/slider.component.mjs +70 -12
  168. package/esm2022/components/slider/slider.component.module.mjs +6 -33
  169. package/esm2022/components/slider/slider.model.mjs +1 -1
  170. package/esm2022/components/snackbar/snackbar.component.mjs +4 -4
  171. package/esm2022/components/snackbar/snackbar.component.module.mjs +4 -4
  172. package/esm2022/components/snackbar/snackbar.service.mjs +3 -3
  173. package/esm2022/components/spider-chart/spider-chart.component.mjs +25 -7
  174. package/esm2022/components/spider-chart/spider-chart.module.mjs +8 -5
  175. package/esm2022/components/spinner/spinner.component.mjs +15 -6
  176. package/esm2022/components/spinner/spinner.module.mjs +4 -4
  177. package/esm2022/components/step/step.component.mjs +52 -12
  178. package/esm2022/components/step/step.component.module.mjs +4 -4
  179. package/esm2022/components/stepper/stepper.component.mjs +52 -18
  180. package/esm2022/components/stepper/stepper.component.module.mjs +4 -4
  181. package/esm2022/components/table/sentence-case.pipe.mjs +3 -3
  182. package/esm2022/components/table/table.component.mjs +104 -57
  183. package/esm2022/components/table/table.component.module.mjs +6 -6
  184. package/esm2022/components/table/table.model.mjs +13 -1
  185. package/esm2022/components/tabs/tab.directive.mjs +7 -4
  186. package/esm2022/components/tabs/tabs.component.mjs +38 -9
  187. package/esm2022/components/tabs/tabs.component.module.mjs +7 -6
  188. package/esm2022/components/tabs/tabs.model.mjs +1 -1
  189. package/esm2022/components/tag/tag.component.mjs +3 -3
  190. package/esm2022/components/tag/tag.component.module.mjs +4 -4
  191. package/esm2022/components/toggle/toggle.component.mjs +4 -4
  192. package/esm2022/components/toggle/toggle.component.module.mjs +4 -4
  193. package/esm2022/components/tooltip/tooltip-template.directive.mjs +14 -12
  194. package/esm2022/components/tooltip/tooltip.component.mjs +3 -3
  195. package/esm2022/components/tooltip/tooltip.component.module.mjs +4 -4
  196. package/esm2022/components/universal-skills-report/universal-skills-report.component.mjs +29 -64
  197. package/esm2022/components/universal-skills-report/universal-skills-report.component.module.mjs +4 -4
  198. package/esm2022/components/universal-skills-spider-charts/universal-skills-spider-charts.component.mjs +109 -0
  199. package/esm2022/components/universal-skills-spider-charts/universal-skills-spider-charts.component.module.mjs +52 -0
  200. package/esm2022/components/validation-error/validation-error.component.mjs +3 -3
  201. package/esm2022/components/validation-error/validation-error.module.mjs +4 -4
  202. package/esm2022/directives/digits-only.directive.mjs +3 -3
  203. package/esm2022/directives/drag-drop.directive.mjs +3 -3
  204. package/esm2022/directives/dynamic-component.directive.mjs +40 -0
  205. package/esm2022/directives/ellipse-text.directive.mjs +3 -3
  206. package/esm2022/directives/select-text.directive.mjs +3 -3
  207. package/esm2022/directives/step-line-element.directive.mjs +3 -3
  208. package/esm2022/models/universal-skills-report.model.mjs +33 -0
  209. package/esm2022/pipes/data-property-getter.mjs +3 -3
  210. package/esm2022/pipes/has-validation-error.pipe.mjs +3 -3
  211. package/esm2022/pipes/memoize-func.pipe.mjs +3 -3
  212. package/esm2022/pipes/name-initials.pipe.mjs +3 -3
  213. package/esm2022/pipes/ui-ordinal-suffix.pipe.mjs +3 -3
  214. package/esm2022/pipes/ui-translate.pipe.mjs +3 -3
  215. package/esm2022/public-api.mjs +17 -6
  216. package/esm2022/services/icons.service.mjs +3 -3
  217. package/esm2022/services/universal-skills.service.mjs +85 -0
  218. package/esm2022/utils/autocomplete-utils.mjs +15 -3
  219. package/esm2022/utils/localization/language.service.mjs +3 -3
  220. package/fesm2022/testgorilla-tgo-ui.mjs +3878 -1246
  221. package/fesm2022/testgorilla-tgo-ui.mjs.map +1 -1
  222. package/models/universal-skills-report.model.d.ts +44 -0
  223. package/package.json +17 -15
  224. package/projects/tgo-canopy-ui/assets/i18n/da-dk.json +62 -1
  225. package/projects/tgo-canopy-ui/assets/i18n/de.json +62 -1
  226. package/projects/tgo-canopy-ui/assets/i18n/en.json +665 -10
  227. package/projects/tgo-canopy-ui/assets/i18n/es.json +62 -1
  228. package/projects/tgo-canopy-ui/assets/i18n/fr.json +62 -1
  229. package/projects/tgo-canopy-ui/assets/i18n/it-it.json +62 -1
  230. package/projects/tgo-canopy-ui/assets/i18n/ja-jp.json +62 -1
  231. package/projects/tgo-canopy-ui/assets/i18n/nb-no.json +62 -1
  232. package/projects/tgo-canopy-ui/assets/i18n/nl.json +62 -1
  233. package/projects/tgo-canopy-ui/assets/i18n/pl-pl.json +62 -1
  234. package/projects/tgo-canopy-ui/assets/i18n/pt-br.json +62 -1
  235. package/projects/tgo-canopy-ui/assets/i18n/sv-se.json +62 -1
  236. package/projects/tgo-canopy-ui/assets/icons/rebrand/Analytics-filled.svg +3 -0
  237. package/projects/tgo-canopy-ui/assets/icons/rebrand/Analytics-in-line.svg +3 -0
  238. package/projects/tgo-canopy-ui/assets/icons/rebrand/Failed-to-load-filled.svg +3 -0
  239. package/projects/tgo-canopy-ui/assets/icons/rebrand/Failed-to-load-in-line.svg +3 -0
  240. package/projects/tgo-canopy-ui/assets/icons/rebrand/History-filled.svg +3 -0
  241. package/projects/tgo-canopy-ui/assets/icons/rebrand/History-in-line.svg +3 -0
  242. package/projects/tgo-canopy-ui/assets/icons/rebrand/Star-filled.svg +5 -0
  243. package/projects/tgo-canopy-ui/assets/icons/rebrand/Star-in-line.svg +5 -0
  244. package/projects/tgo-canopy-ui/assets/icons/rebrand/Tag-filled.svg +3 -0
  245. package/projects/tgo-canopy-ui/assets/icons/rebrand/Tag-in-line.svg +3 -0
  246. package/projects/tgo-canopy-ui/assets/icons/rebrand/TestGorilla-Pink-filled.svg +11 -0
  247. package/projects/tgo-canopy-ui/assets/icons/rebrand/TestGorilla-Pink-in-line.svg +11 -0
  248. package/projects/tgo-canopy-ui/assets/icons/rebrand/Verified-badge-filled.svg +23 -0
  249. package/projects/tgo-canopy-ui/assets/icons/rebrand/Verified-badge-in-line.svg +23 -0
  250. package/projects/tgo-canopy-ui/theme/_input.scss +1 -0
  251. package/projects/tgo-canopy-ui/theme/_palette.scss +9 -9
  252. package/projects/tgo-canopy-ui/theme/_tooltip.scss +12 -8
  253. package/projects/tgo-canopy-ui/theme/_typography.scss +4 -0
  254. package/projects/tgo-canopy-ui/theme/_variables.scss +3 -3
  255. package/public-api.d.ts +11 -4
  256. package/services/universal-skills.service.d.ts +13 -0
  257. package/utils/autocomplete-utils.d.ts +2 -2
  258. package/components/deprecated-table/deprecated-table.component.d.ts +0 -91
  259. package/components/deprecated-table/deprecated-table.component.module.d.ts +0 -14
  260. package/components/deprecated-table/deprecated-table.model.d.ts +0 -45
  261. package/components/universal-skills-report/universal-skills-report.model.d.ts +0 -33
  262. package/esm2022/components/datepicker/DateAdapter.mjs +0 -30
  263. package/esm2022/components/deprecated-table/deprecated-table.component.mjs +0 -158
  264. package/esm2022/components/deprecated-table/deprecated-table.component.module.mjs +0 -43
  265. package/esm2022/components/deprecated-table/deprecated-table.model.mjs +0 -13
  266. package/esm2022/components/deprecated-table/directives/dynamic-component.directive.mjs +0 -40
  267. package/esm2022/components/universal-skills-report/universal-skills-report.model.mjs +0 -19
@@ -58,7 +58,9 @@
58
58
  "CLEAR": "Rensa",
59
59
  "PHONE_NUMBER": "Telefonnummer",
60
60
  "ON": "På",
61
- "OFF": "Av"
61
+ "OFF": "Av",
62
+ "LOADING": "Laddar …",
63
+ "PROGRESS": "Framsteg är {{progress}}"
62
64
  },
63
65
  "DIALOG": {
64
66
  "CLOSE_LABEL": "Stäng dialogrutan",
@@ -116,5 +118,64 @@
116
118
  "WARNING": "Varning:",
117
119
  "ERROR": "Fel:",
118
120
  "SUCCESS": "Framgång:"
121
+ },
122
+ "CHARTS": {
123
+ "SPIDER": {
124
+ "DATASET_HIDDEN": "{{dataset}} dold. Tryck på enter för att visa",
125
+ "DATASET_VISIBLE": "{{dataset}} synlig. Tryck på Enter för att dölja"
126
+ },
127
+ "GAUSSIAN_CHART": {
128
+ "PERCENTAGE_BUCKETS_GRAPH": {
129
+ "LOWEST": "Långt under",
130
+ "LOWER": "Under",
131
+ "AVERAGE": "Medelvärde",
132
+ "HIGHER": "Över",
133
+ "HIGHEST": "Långt över",
134
+ "LOWEST_TOOLTIP": "1 - 19 percentilen\nIndikerar ett behov av betydande förbättringar.",
135
+ "LOWER_TOOLTIP": "20 - 39 percentilen\nVisar på grundläggande förståelse men under genomsnittet.",
136
+ "AVERAGE_TOOLTIP": "40 - 59 percentilen\nIndikerar typiska eller genomsnittliga kompetensnivåer.",
137
+ "HIGHER_TOOLTIP": "60 - 79 percentilen\nIndikerar bättre förståelse och färdighetsnivå.",
138
+ "HIGHEST_TOOLTIP": "80 - 99 percentilen\nIndikerar exceptionella färdighetsnivåer."
139
+ },
140
+ "CANDIDATE_SCORE": "Kandidaternas poäng",
141
+ "HIGHEST_SCORE": "Högsta poäng i din bedömning",
142
+ "ARIA_LABEL": "Kandidatpoäng: {{score}} percentil, faller inom kategorin {{activeBucket}}. Den högsta kandidatpoängen i utvärderingen är {{bestCandidateScore}} percentil, vilket faller inom kategorin {{activeBucketBestScore}}."
143
+ }
144
+ },
145
+ "TAG": {
146
+ "REMOVE": "Ta bort tagg"
147
+ },
148
+ "UNIVERSAL_SKILLS_REPORT": {
149
+ "PERCENTILE": "percentil",
150
+ "SKILL_AREA_GROUP_TYPES": {
151
+ "FOCUSING_ON_OBJECTIVES": {
152
+ "TITLE": "Fokusering på mål",
153
+ "DESCRIPTION": "Färdighetsklustret Fokusera på mål bedömer en individs förmåga att uppnå mål."
154
+ },
155
+ "WORKING_WITH_PEOPLE": {
156
+ "TITLE": "Arbeta med människor",
157
+ "DESCRIPTION": "Färdighetsklustret Arbeta med människor bedömer en individs förmåga att främja interpersonella kontakter och samarbeten."
158
+ },
159
+ "MANAGING_ONES_SELF": {
160
+ "TITLE": "Hantera sig själv",
161
+ "DESCRIPTION": "Färdighetsklustret Hantera sig själv bedömer en individs förmåga att använda inre resurser för att anpassa sig, övervinna, lära sig och utforska nya möjligheter."
162
+ }
163
+ }
164
+ },
165
+ "PERCENTILE_SUFFIXES": {
166
+ "ST": "a",
167
+ "ND": "a",
168
+ "RD": "e",
169
+ "TH": "e"
170
+ },
171
+ "PERCENTILE_LABEL_TYPES": {
172
+ "WELL_BELOW_AVERAGE": "Långt under genomsnittet",
173
+ "BELLOW_AVERAGE": "Under genomsnittet",
174
+ "AVERAGE": "Medelvärde",
175
+ "ABOVE_AVERAGE": "Över genomsnittet",
176
+ "WELL_ABOVE_AVERAGE": "Långt över genomsnittet"
177
+ },
178
+ "TOOLTIP": {
179
+ "DETAILS": "Detaljer"
119
180
  }
120
181
  }
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16 20.5465V13.5465H20V20.5465H16ZM10 20.5465V4.54651H14V20.5465H10ZM4 20.5465V9.54651H8V20.5465H4Z" fill="#242424"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16 20.5465V13.5465H20V20.5465H16ZM10 20.5465V4.54651H14V20.5465H10ZM4 20.5465V9.54651H8V20.5465H4Z" fill="#242424"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M3 20.5464V18.5464H5.75L5.35 18.1964C4.48333 17.4297 3.875 16.5547 3.525 15.5714C3.175 14.5881 3 13.5964 3 12.5964C3 10.7464 3.55417 9.10055 4.6625 7.65889C5.77083 6.21722 7.21667 5.26305 9 4.79639V6.89639C7.8 7.32972 6.83333 8.06722 6.1 9.10889C5.36667 10.1506 5 11.3131 5 12.5964C5 13.3464 5.14167 14.0756 5.425 14.7839C5.70833 15.4922 6.15 16.1464 6.75 16.7464L7 16.9964V14.5464H9V20.5464H3ZM12 17.5464C11.7167 17.5464 11.4792 17.4506 11.2875 17.2589C11.0958 17.0672 11 16.8297 11 16.5464C11 16.2631 11.0958 16.0256 11.2875 15.8339C11.4792 15.6422 11.7167 15.5464 12 15.5464C12.2833 15.5464 12.5208 15.6422 12.7125 15.8339C12.9042 16.0256 13 16.2631 13 16.5464C13 16.8297 12.9042 17.0672 12.7125 17.2589C12.5208 17.4506 12.2833 17.5464 12 17.5464ZM11 13.5464V7.54639H13V13.5464H11ZM15 20.2964V18.1964C16.2 17.7631 17.1667 17.0256 17.9 15.9839C18.6333 14.9422 19 13.7797 19 12.4964C19 11.7464 18.8583 11.0172 18.575 10.3089C18.2917 9.60055 17.85 8.94639 17.25 8.34639L17 8.09639V10.5464H15V4.54639H21V6.54639H18.25L18.65 6.89639C19.4667 7.71305 20.0625 8.60055 20.4375 9.55889C20.8125 10.5172 21 11.4964 21 12.4964C21 14.3464 20.4458 15.9922 19.3375 17.4339C18.2292 18.8756 16.7833 19.8297 15 20.2964Z" fill="#242424"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M3 20.5464V18.5464H5.75L5.35 18.1964C4.48333 17.4297 3.875 16.5547 3.525 15.5714C3.175 14.5881 3 13.5964 3 12.5964C3 10.7464 3.55417 9.10055 4.6625 7.65889C5.77083 6.21722 7.21667 5.26305 9 4.79639V6.89639C7.8 7.32972 6.83333 8.06722 6.1 9.10889C5.36667 10.1506 5 11.3131 5 12.5964C5 13.3464 5.14167 14.0756 5.425 14.7839C5.70833 15.4922 6.15 16.1464 6.75 16.7464L7 16.9964V14.5464H9V20.5464H3ZM12 17.5464C11.7167 17.5464 11.4792 17.4506 11.2875 17.2589C11.0958 17.0672 11 16.8297 11 16.5464C11 16.2631 11.0958 16.0256 11.2875 15.8339C11.4792 15.6422 11.7167 15.5464 12 15.5464C12.2833 15.5464 12.5208 15.6422 12.7125 15.8339C12.9042 16.0256 13 16.2631 13 16.5464C13 16.8297 12.9042 17.0672 12.7125 17.2589C12.5208 17.4506 12.2833 17.5464 12 17.5464ZM11 13.5464V7.54639H13V13.5464H11ZM15 20.2964V18.1964C16.2 17.7631 17.1667 17.0256 17.9 15.9839C18.6333 14.9422 19 13.7797 19 12.4964C19 11.7464 18.8583 11.0172 18.575 10.3089C18.2917 9.60055 17.85 8.94639 17.25 8.34639L17 8.09639V10.5464H15V4.54639H21V6.54639H18.25L18.65 6.89639C19.4667 7.71305 20.0625 8.60055 20.4375 9.55889C20.8125 10.5172 21 11.4964 21 12.4964C21 14.3464 20.4458 15.9922 19.3375 17.4339C18.2292 18.8756 16.7833 19.8297 15 20.2964Z" fill="#242424"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 21.5464C9.7 21.5464 7.69583 20.7839 5.9875 19.2589C4.27917 17.7339 3.3 15.8297 3.05 13.5464H5.1C5.33333 15.2797 6.10417 16.7131 7.4125 17.8464C8.72083 18.9797 10.25 19.5464 12 19.5464C13.95 19.5464 15.6042 18.8672 16.9625 17.5089C18.3208 16.1506 19 14.4964 19 12.5464C19 10.5964 18.3208 8.94222 16.9625 7.58389C15.6042 6.22555 13.95 5.54639 12 5.54639C10.85 5.54639 9.775 5.81305 8.775 6.34639C7.775 6.87972 6.93333 7.61305 6.25 8.54639H9V10.5464H3V4.54639H5V6.89639C5.85 5.82972 6.8875 5.00472 8.1125 4.42139C9.3375 3.83805 10.6333 3.54639 12 3.54639C13.25 3.54639 14.4208 3.78389 15.5125 4.25889C16.6042 4.73389 17.5542 5.37555 18.3625 6.18389C19.1708 6.99222 19.8125 7.94222 20.2875 9.03389C20.7625 10.1256 21 11.2964 21 12.5464C21 13.7964 20.7625 14.9672 20.2875 16.0589C19.8125 17.1506 19.1708 18.1006 18.3625 18.9089C17.5542 19.7172 16.6042 20.3589 15.5125 20.8339C14.4208 21.3089 13.25 21.5464 12 21.5464ZM14.8 16.7464L11 12.9464V7.54639H13V12.1464L16.2 15.3464L14.8 16.7464Z" fill="#242424"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 21.5464C9.7 21.5464 7.69583 20.7839 5.9875 19.2589C4.27917 17.7339 3.3 15.8297 3.05 13.5464H5.1C5.33333 15.2797 6.10417 16.7131 7.4125 17.8464C8.72083 18.9797 10.25 19.5464 12 19.5464C13.95 19.5464 15.6042 18.8672 16.9625 17.5089C18.3208 16.1506 19 14.4964 19 12.5464C19 10.5964 18.3208 8.94222 16.9625 7.58389C15.6042 6.22555 13.95 5.54639 12 5.54639C10.85 5.54639 9.775 5.81305 8.775 6.34639C7.775 6.87972 6.93333 7.61305 6.25 8.54639H9V10.5464H3V4.54639H5V6.89639C5.85 5.82972 6.8875 5.00472 8.1125 4.42139C9.3375 3.83805 10.6333 3.54639 12 3.54639C13.25 3.54639 14.4208 3.78389 15.5125 4.25889C16.6042 4.73389 17.5542 5.37555 18.3625 6.18389C19.1708 6.99222 19.8125 7.94222 20.2875 9.03389C20.7625 10.1256 21 11.2964 21 12.5464C21 13.7964 20.7625 14.9672 20.2875 16.0589C19.8125 17.1506 19.1708 18.1006 18.3625 18.9089C17.5542 19.7172 16.6042 20.3589 15.5125 20.8339C14.4208 21.3089 13.25 21.5464 12 21.5464ZM14.8 16.7464L11 12.9464V7.54639H13V12.1464L16.2 15.3464L14.8 16.7464Z" fill="#242424"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M5.825 22.5464L7.45 15.5214L2 10.7964L9.2 10.1714L12 3.54639L14.8 10.1714L22 10.7964L16.55 15.5214L18.175 22.5464L12 18.8214L5.825 22.5464Z"
4
+ fill="currentColor" />
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="#919191" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M8.85 18.3714L12 16.4714L15.15 18.3964L14.325 14.7964L17.1 12.3964L13.45 12.0714L12 8.67139L10.55 12.0464L6.9 12.3714L9.675 14.7964L8.85 18.3714ZM5.825 22.5464L7.45 15.5214L2 10.7964L9.2 10.1714L12 3.54639L14.8 10.1714L22 10.7964L16.55 15.5214L18.175 22.5464L12 18.8214L5.825 22.5464Z"
4
+ fill="currentColor" />
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12.825 22.825L2 12V2H12L22.8 12.85L12.825 22.825ZM6.5 8C6.91667 8 7.27083 7.85417 7.5625 7.5625C7.85417 7.27083 8 6.91667 8 6.5C8 6.08333 7.85417 5.72917 7.5625 5.4375C7.27083 5.14583 6.91667 5 6.5 5C6.08333 5 5.72917 5.14583 5.4375 5.4375C5.14583 5.72917 5 6.08333 5 6.5C5 6.91667 5.14583 7.27083 5.4375 7.5625C5.72917 7.85417 6.08333 8 6.5 8Z" fill="#242424"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12.825 22.825L2 12V2H12L22.8 12.85L12.825 22.825ZM12.825 20L19.975 12.85L11.15 4H4V11.15L12.825 20ZM6.5 8C6.91667 8 7.27083 7.85417 7.5625 7.5625C7.85417 7.27083 8 6.91667 8 6.5C8 6.08333 7.85417 5.72917 7.5625 5.4375C7.27083 5.14583 6.91667 5 6.5 5C6.08333 5 5.72917 5.14583 5.4375 5.4375C5.14583 5.72917 5 6.08333 5 6.5C5 6.91667 5.14583 7.27083 5.4375 7.5625C5.72917 7.85417 6.08333 8 6.5 8Z" fill="#242424"/>
3
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_14855_20571)">
3
+ <path d="M18.1098 14.9289L17.3446 6.6185C17.2719 5.78322 16.7168 5.04547 15.9304 4.74321C14.6453 4.25016 13.3482 4 12.0606 4C10.7731 4 9.47596 4.25016 8.19083 4.74321C7.40437 5.04546 6.84936 5.78322 6.77665 6.6185L6.01139 14.9289C5.97079 15.3911 6.03926 15.8484 6.2077 16.2518C6.30283 16.4807 6.41311 16.6588 6.54338 16.7957L10.6508 21.4052L10.6653 21.4197C11.0368 21.7935 11.5323 22 12.0606 22C12.589 22 13.0844 21.7935 13.4559 21.4197L13.4704 21.4052L17.5778 16.7957C17.7081 16.6588 17.8184 16.4807 17.9135 16.2518C18.082 15.8484 18.1504 15.3911 18.1098 14.9289Z" fill="#FFFAF6"/>
4
+ <path d="M17.3452 14.9952L16.58 6.68902C16.5321 6.13661 16.1728 5.6587 15.6548 5.45942C14.4545 4.99908 13.2592 4.75795 12.0607 4.75757C10.8622 4.75794 9.66688 4.99908 8.46659 5.45942C7.94854 5.6587 7.58924 6.13661 7.54137 6.68902L6.77612 14.9952C6.74764 15.3217 6.78944 15.653 6.91608 15.9558C6.96818 16.0806 7.0312 16.1975 7.10633 16.2732L11.2107 20.8791C11.4367 21.1068 11.7389 21.2424 12.0607 21.2424C12.3824 21.2424 12.6846 21.1068 12.9106 20.8791L17.015 16.2732C17.0902 16.1975 17.1532 16.0806 17.2053 15.9558C17.3319 15.653 17.3737 15.3217 17.3452 14.9952ZM15.2318 16.7645L12.9948 19.2739C12.9488 19.3254 12.8828 19.3551 12.8137 19.3551H11.3077C11.2386 19.3551 11.1726 19.3254 11.1265 19.2739L8.88952 16.7645C8.86952 16.7421 8.89133 16.7075 8.92042 16.716C10.0413 17.0383 11.1185 17.1446 12.0607 17.1415C13.0029 17.1446 14.08 17.0383 15.201 16.716C15.23 16.7075 15.2518 16.7421 15.2318 16.7645ZM16.3328 15.3998C14.9066 15.9384 13.4868 16.2073 12.0607 16.2066C10.6346 16.2073 9.21471 15.9384 7.78858 15.3998C7.77646 15.3949 7.76858 15.3834 7.76858 15.3707C7.7801 13.7977 9.00524 12.7583 9.35969 12.4978C9.39847 12.4694 9.39362 12.41 9.34999 12.3894C8.67077 12.069 8.20847 11.4378 8.20847 10.7134C8.20847 9.66307 9.17671 9.01908 10.3709 9.01908C10.6206 9.01908 10.8605 9.03556 11.0835 9.09916C11.1102 9.10642 11.1332 9.07856 11.1192 9.05494C10.9217 8.72543 10.3049 8.41228 10.1007 8.31536C10.0837 8.30749 10.0892 8.28205 10.108 8.28083C11.318 8.23177 11.8469 8.70847 12.0111 8.9338C12.0232 8.95033 12.0421 8.9588 12.0607 8.95922C12.0793 8.9588 12.0981 8.95033 12.1102 8.9338C12.2744 8.70847 12.8034 8.23177 14.0134 8.28083C14.0321 8.28205 14.0376 8.30749 14.0206 8.31536C13.8164 8.41228 13.1996 8.72543 13.0021 9.05494C12.9882 9.07856 13.0112 9.10642 13.0379 9.09916C13.2608 9.03556 13.5008 9.01908 13.7504 9.01908C14.9446 9.01908 15.9129 9.66308 15.9129 10.7134C15.9129 11.4378 15.4506 12.069 14.7714 12.3894C14.7277 12.41 14.7229 12.4694 14.7617 12.4978C15.1161 12.7583 16.3412 13.7977 16.3528 15.3707C16.3528 15.3834 16.3449 15.3949 16.3328 15.3998ZM14.5953 11.3046C14.5523 11.3318 14.4947 11.3227 14.4632 11.2815C14.2663 11.0247 13.9531 10.8806 13.6253 10.903C13.4271 10.9157 13.2442 10.986 13.0909 11.1065C13.0509 11.138 12.9921 11.1325 12.957 11.0944L12.5964 10.7122C12.5569 10.6703 12.5615 10.5994 12.6067 10.5632C12.8806 10.3372 13.2211 10.2016 13.5768 10.1773C14.1639 10.1392 14.725 10.4039 15.0667 10.8763C15.0999 10.9227 15.0895 10.9894 15.0425 11.0223C15.0419 11.0223 14.5953 11.3046 14.5953 11.3046ZM12.3408 13.4966C12.3734 13.2519 12.5145 13.0372 12.7855 13.0039C12.9679 12.9815 13.1533 13.056 13.2484 13.1893C13.3319 13.3045 13.3301 13.4506 13.2684 13.5751C13.226 13.6618 13.2163 13.775 13.2066 13.884C13.1914 14.0639 13.1714 14.2875 12.9509 14.3159C12.795 14.3305 12.6523 14.2728 12.5407 14.1639C12.3822 14.0091 12.3087 13.7382 12.3408 13.4966ZM9.07889 11.0223C9.03185 10.9894 9.0215 10.9227 9.05465 10.8763C9.39638 10.4039 9.95745 10.1392 10.5446 10.1773C10.9002 10.2016 11.2408 10.3372 11.5146 10.5632C11.5599 10.5994 11.5644 10.6703 11.5249 10.7122L11.1644 11.0944C11.1293 11.1325 11.0705 11.138 11.0305 11.1065C10.8772 10.986 10.6942 10.9157 10.4961 10.903C10.1683 10.8806 9.85505 11.0247 9.65814 11.2815C9.62663 11.3227 9.56907 11.3318 9.52605 11.3046C9.52605 11.3046 9.0795 11.0223 9.07889 11.0223ZM11.5807 14.1639C11.4691 14.2728 11.3264 14.3305 11.1705 14.3159C10.9499 14.2875 10.9299 14.064 10.9148 13.8841C10.9051 13.775 10.8954 13.6618 10.853 13.5751C10.7913 13.4507 10.7895 13.3045 10.873 13.1893C10.9681 13.056 11.1535 12.9815 11.3359 13.004C11.6069 13.0373 11.7479 13.2519 11.7805 13.4967C11.8127 13.7382 11.7392 14.0091 11.5807 14.1639Z" fill="#D410AA"/>
5
+ </g>
6
+ <defs>
7
+ <clipPath id="clip0_14855_20571">
8
+ <rect width="12.1212" height="18" fill="white" transform="translate(6 4)"/>
9
+ </clipPath>
10
+ </defs>
11
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_14855_20575)">
3
+ <path d="M18.1098 14.9289L17.3446 6.6185C17.2719 5.78322 16.7168 5.04547 15.9304 4.74321C14.6453 4.25016 13.3482 4 12.0606 4C10.7731 4 9.47596 4.25016 8.19083 4.74321C7.40437 5.04546 6.84936 5.78322 6.77665 6.6185L6.01139 14.9289C5.97079 15.3911 6.03926 15.8484 6.2077 16.2518C6.30283 16.4807 6.41311 16.6588 6.54338 16.7957L10.6508 21.4052L10.6653 21.4197C11.0368 21.7935 11.5323 22 12.0606 22C12.589 22 13.0844 21.7935 13.4559 21.4197L13.4704 21.4052L17.5778 16.7957C17.7081 16.6588 17.8184 16.4807 17.9135 16.2518C18.082 15.8484 18.1504 15.3911 18.1098 14.9289Z" fill="#FFFAF6"/>
4
+ <path d="M17.3452 14.9952L16.58 6.68902C16.5321 6.13661 16.1728 5.6587 15.6548 5.45942C14.4545 4.99908 13.2592 4.75795 12.0607 4.75757C10.8622 4.75794 9.66688 4.99908 8.46659 5.45942C7.94854 5.6587 7.58924 6.13661 7.54137 6.68902L6.77612 14.9952C6.74764 15.3217 6.78944 15.653 6.91608 15.9558C6.96818 16.0806 7.0312 16.1975 7.10633 16.2732L11.2107 20.8791C11.4367 21.1068 11.7389 21.2424 12.0607 21.2424C12.3824 21.2424 12.6846 21.1068 12.9106 20.8791L17.015 16.2732C17.0902 16.1975 17.1532 16.0806 17.2053 15.9558C17.3319 15.653 17.3737 15.3217 17.3452 14.9952ZM15.2318 16.7645L12.9948 19.2739C12.9488 19.3254 12.8828 19.3551 12.8137 19.3551H11.3077C11.2386 19.3551 11.1726 19.3254 11.1265 19.2739L8.88952 16.7645C8.86952 16.7421 8.89133 16.7075 8.92042 16.716C10.0413 17.0383 11.1185 17.1446 12.0607 17.1415C13.0029 17.1446 14.08 17.0383 15.201 16.716C15.23 16.7075 15.2518 16.7421 15.2318 16.7645ZM16.3328 15.3998C14.9066 15.9384 13.4868 16.2073 12.0607 16.2066C10.6346 16.2073 9.21471 15.9384 7.78858 15.3998C7.77646 15.3949 7.76858 15.3834 7.76858 15.3707C7.7801 13.7977 9.00524 12.7583 9.35969 12.4978C9.39847 12.4694 9.39362 12.41 9.34999 12.3894C8.67077 12.069 8.20847 11.4378 8.20847 10.7134C8.20847 9.66307 9.17671 9.01908 10.3709 9.01908C10.6206 9.01908 10.8605 9.03556 11.0835 9.09916C11.1102 9.10642 11.1332 9.07856 11.1192 9.05494C10.9217 8.72543 10.3049 8.41228 10.1007 8.31536C10.0837 8.30749 10.0892 8.28205 10.108 8.28083C11.318 8.23177 11.8469 8.70847 12.0111 8.9338C12.0232 8.95033 12.0421 8.9588 12.0607 8.95922C12.0793 8.9588 12.0981 8.95033 12.1102 8.9338C12.2744 8.70847 12.8034 8.23177 14.0134 8.28083C14.0321 8.28205 14.0376 8.30749 14.0206 8.31536C13.8164 8.41228 13.1996 8.72543 13.0021 9.05494C12.9882 9.07856 13.0112 9.10642 13.0379 9.09916C13.2608 9.03556 13.5008 9.01908 13.7504 9.01908C14.9446 9.01908 15.9129 9.66308 15.9129 10.7134C15.9129 11.4378 15.4506 12.069 14.7714 12.3894C14.7277 12.41 14.7229 12.4694 14.7617 12.4978C15.1161 12.7583 16.3412 13.7977 16.3528 15.3707C16.3528 15.3834 16.3449 15.3949 16.3328 15.3998ZM14.5953 11.3046C14.5523 11.3318 14.4947 11.3227 14.4632 11.2815C14.2663 11.0247 13.9531 10.8806 13.6253 10.903C13.4271 10.9157 13.2442 10.986 13.0909 11.1065C13.0509 11.138 12.9921 11.1325 12.957 11.0944L12.5964 10.7122C12.5569 10.6703 12.5615 10.5994 12.6067 10.5632C12.8806 10.3372 13.2211 10.2016 13.5768 10.1773C14.1639 10.1392 14.725 10.4039 15.0667 10.8763C15.0999 10.9227 15.0895 10.9894 15.0425 11.0223C15.0419 11.0223 14.5953 11.3046 14.5953 11.3046ZM12.3408 13.4966C12.3734 13.2519 12.5145 13.0372 12.7855 13.0039C12.9679 12.9815 13.1533 13.056 13.2484 13.1893C13.3319 13.3045 13.3301 13.4506 13.2684 13.5751C13.226 13.6618 13.2163 13.775 13.2066 13.884C13.1914 14.0639 13.1714 14.2875 12.9509 14.3159C12.795 14.3305 12.6523 14.2728 12.5407 14.1639C12.3822 14.0091 12.3087 13.7382 12.3408 13.4966ZM9.07889 11.0223C9.03185 10.9894 9.0215 10.9227 9.05465 10.8763C9.39638 10.4039 9.95745 10.1392 10.5446 10.1773C10.9002 10.2016 11.2408 10.3372 11.5146 10.5632C11.5599 10.5994 11.5644 10.6703 11.5249 10.7122L11.1644 11.0944C11.1293 11.1325 11.0705 11.138 11.0305 11.1065C10.8772 10.986 10.6942 10.9157 10.4961 10.903C10.1683 10.8806 9.85505 11.0247 9.65814 11.2815C9.62663 11.3227 9.56907 11.3318 9.52605 11.3046C9.52605 11.3046 9.0795 11.0223 9.07889 11.0223ZM11.5807 14.1639C11.4691 14.2728 11.3264 14.3305 11.1705 14.3159C10.9499 14.2875 10.9299 14.064 10.9148 13.8841C10.9051 13.775 10.8954 13.6618 10.853 13.5751C10.7913 13.4507 10.7895 13.3045 10.873 13.1893C10.9681 13.056 11.1535 12.9815 11.3359 13.004C11.6069 13.0373 11.7479 13.2519 11.7805 13.4967C11.8127 13.7382 11.7392 14.0091 11.5807 14.1639Z" fill="#D410AA"/>
5
+ </g>
6
+ <defs>
7
+ <clipPath id="clip0_14855_20575">
8
+ <rect width="12.1212" height="18" fill="white" transform="translate(6 4)"/>
9
+ </clipPath>
10
+ </defs>
11
+ </svg>
@@ -0,0 +1,23 @@
1
+ <svg width="11" height="16" viewBox="0 0 11 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_16375_59428)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.44531 9.59122L9.05737 8.77539L10.9978 13.4357L8.59814 13.4076L6.62633 15.0508L4.44531 9.59122Z" fill="#D3D3D3"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M7.09835 9.07422L2.15375 9.20873L0.0351562 14.3852L2.43483 14.3568L4.40664 16L7.09835 9.07422Z" fill="white"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M5.61299 0.00103709C5.89772 -0.0114756 6.12216 0.090503 6.34842 0.238466C6.63589 0.425531 6.9593 0.795281 7.35854 1.02989C7.92039 1.3596 8.96095 0.904768 9.49388 1.71778C9.80449 2.19201 9.81911 2.56364 9.84226 2.93089C9.86723 3.32723 9.93483 3.69166 10.3298 4.22814C10.9833 5.11592 11.1194 5.70683 10.7826 6.32277C10.553 6.74257 10.0697 6.97593 9.95767 7.24183C9.71984 7.80772 9.98295 8.23409 9.6571 8.89382C9.43084 9.35116 9.08185 9.65271 8.61684 9.80662C8.22491 9.93613 7.83147 9.74875 7.5175 9.8842C6.9657 10.1223 6.55885 10.6756 6.12003 10.8155C5.9504 10.8696 5.7817 10.8962 5.61299 10.8949C5.44459 10.8962 5.27557 10.8696 5.10626 10.8155C4.66713 10.6756 4.26028 10.1223 3.70878 9.8842C3.39482 9.74875 3.00137 9.93613 2.60914 9.80662C2.14443 9.65271 1.79514 9.35116 1.56887 8.89382C1.24303 8.23409 1.50645 7.80772 1.26831 7.24183C1.15654 6.97593 0.672956 6.74257 0.443343 6.32277C0.106841 5.70683 0.242964 5.11592 0.896479 4.22814C1.29115 3.69166 1.35875 3.32723 1.38372 2.93089C1.40687 2.56364 1.42148 2.19201 1.7324 1.71778C2.26533 0.904768 3.30559 1.3596 3.86744 1.02989C4.26698 0.795281 4.59008 0.425531 4.87756 0.238466C5.10412 0.090503 5.32856 -0.0114756 5.61299 0.00103709Z" fill="#242424"/>
6
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M5.61312 0.00157235C5.89786 -0.0112532 6.12199 0.0910382 6.34856 0.238688C6.63603 0.425753 6.95944 0.795504 7.35867 1.03012C7.80541 1.29226 8.55485 1.05858 9.11122 1.36045L2.83401 9.85095C2.7594 9.84469 2.68419 9.83156 2.60927 9.80684C2.14426 9.65294 1.79527 9.35169 1.56901 8.89404C1.24317 8.23431 1.50658 7.80794 1.26844 7.24205C1.15668 6.97616 0.673091 6.74279 0.443478 6.32299C0.106672 5.70705 0.2431 5.11614 0.896614 4.22837C1.29128 3.6922 1.35889 3.32745 1.38386 2.93111C1.407 2.56386 1.42162 2.19223 1.73224 1.718C2.26546 0.904677 3.30603 1.35983 3.86758 1.03012C4.26712 0.795504 4.59052 0.425753 4.87769 0.238688C5.10426 0.0910382 5.3287 -0.0112532 5.61312 0.00157235Z" fill="#464646"/>
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M5.60069 1.46387C7.7875 1.46387 9.56045 3.28509 9.56045 5.53175C9.56045 7.77841 7.7875 9.59932 5.60069 9.59932C3.41358 9.59932 1.64062 7.77841 1.64062 5.53175C1.64062 3.28509 3.41358 1.46387 5.60069 1.46387Z" fill="white"/>
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M5.59915 2.27979C7.34744 2.27979 8.7644 3.73564 8.7644 5.53153C8.7644 7.32741 7.34744 8.78327 5.59915 8.78327C3.85086 8.78327 2.43359 7.32741 2.43359 5.53153C2.43359 3.73564 3.85086 2.27979 5.59915 2.27979Z" fill="#353535"/>
9
+ <path d="M7.82204 3.23096L4.00391 8.34634C4.00391 8.34634 6.00748 9.73096 8.01106 7.6925C9.90122 5.26942 7.82204 3.23096 7.82204 3.23096Z" fill="#242424"/>
10
+ <g clip-path="url(#clip1_16375_59428)">
11
+ <path d="M7.13861 6.03324L6.94768 3.90237C6.92954 3.68819 6.79106 3.49903 6.59484 3.42152C6.2742 3.2951 5.95057 3.23096 5.62932 3.23096C5.30808 3.23096 4.98445 3.2951 4.6638 3.42152C4.46758 3.49902 4.3291 3.68819 4.31096 3.90237L4.12003 6.03324C4.1099 6.15174 4.12698 6.269 4.16901 6.37244C4.19274 6.43115 4.22026 6.47681 4.25276 6.51191L5.27757 7.69383L5.2812 7.69756C5.37387 7.79338 5.4975 7.84634 5.62932 7.84634C5.76115 7.84634 5.88477 7.79338 5.97744 7.69756L5.98107 7.69383L7.00588 6.51191C7.03838 6.47681 7.0659 6.43115 7.08963 6.37244C7.13166 6.269 7.14874 6.15174 7.13861 6.03324Z" fill="#FFFAF6"/>
12
+ <path d="M6.94774 6.05032L6.75681 3.92054C6.74487 3.77889 6.65522 3.65635 6.52597 3.60526C6.22649 3.48722 5.92826 3.42539 5.62923 3.42529C5.33021 3.42539 5.03198 3.48722 4.7325 3.60526C4.60325 3.65635 4.5136 3.77889 4.50166 3.92054L4.31072 6.05032C4.30362 6.13403 4.31405 6.21899 4.34565 6.29665C4.35864 6.32864 4.37437 6.35862 4.39311 6.37803L5.41717 7.55902C5.47356 7.61741 5.54896 7.65218 5.62923 7.65218C5.70951 7.65218 5.78491 7.61741 5.8413 7.55902L6.86535 6.37803C6.8841 6.35862 6.89982 6.32864 6.91282 6.29665C6.94442 6.21899 6.95485 6.13403 6.94774 6.05032ZM6.42045 6.50399L5.86231 7.14744C5.85082 7.16064 5.83434 7.16825 5.81711 7.16825H5.44136C5.42413 7.16825 5.40765 7.16064 5.39616 7.14744L4.83802 6.50399C4.83303 6.49824 4.83847 6.48939 4.84573 6.49156C5.1254 6.57421 5.39415 6.60145 5.62923 6.60065C5.86432 6.60145 6.13307 6.57421 6.41274 6.49156C6.41999 6.48939 6.42543 6.49824 6.42045 6.50399ZM6.69513 6.15407C6.33931 6.29217 5.98505 6.36113 5.62923 6.36094C5.27341 6.36113 4.91916 6.29217 4.56334 6.15407C4.56031 6.15283 4.55835 6.14988 4.55835 6.14661C4.56122 5.74327 4.86689 5.47676 4.95533 5.40997C4.96501 5.40267 4.9638 5.38745 4.95291 5.38217C4.78344 5.30001 4.6681 5.13818 4.6681 4.95242C4.6681 4.68311 4.90968 4.51799 5.20764 4.51799C5.26993 4.51799 5.32979 4.52221 5.38542 4.53852C5.39207 4.54038 5.39782 4.53324 5.39434 4.52718C5.34506 4.44269 5.19116 4.3624 5.14022 4.33755C5.13598 4.33553 5.13734 4.32901 5.14203 4.32869C5.44393 4.31611 5.5759 4.43834 5.61687 4.49612C5.61989 4.50036 5.62459 4.50253 5.62923 4.50264C5.63387 4.50253 5.63857 4.50036 5.64159 4.49612C5.68256 4.43834 5.81454 4.31611 6.11643 4.32869C6.12112 4.32901 6.12248 4.33553 6.11825 4.33755C6.0673 4.3624 5.9134 4.44269 5.86412 4.52718C5.86064 4.53324 5.86639 4.54038 5.87304 4.53852C5.92867 4.52221 5.98854 4.51799 6.05082 4.51799C6.34879 4.51799 6.59036 4.68312 6.59036 4.95242C6.59036 5.13818 6.47502 5.30001 6.30555 5.38217C6.29467 5.38745 6.29346 5.40267 6.30313 5.40997C6.39157 5.47676 6.69724 5.74327 6.70012 6.14661C6.70012 6.14987 6.69815 6.15283 6.69513 6.15407ZM6.26163 5.10401C6.2509 5.111 6.23653 5.10867 6.22867 5.09811C6.17954 5.03225 6.10139 4.99529 6.0196 5.00104C5.97017 5.0043 5.92451 5.02232 5.88627 5.05322C5.87629 5.0613 5.86162 5.0599 5.85286 5.05012L5.76291 4.95211C5.75305 4.94137 5.75418 4.9232 5.76548 4.91391C5.83381 4.85598 5.91877 4.82119 6.00751 4.81497C6.15399 4.80519 6.29398 4.87306 6.37924 4.9942C6.38752 5.0061 6.38493 5.02319 6.3732 5.03163C6.37305 5.03163 6.26163 5.10401 6.26163 5.10401ZM5.69913 5.66608C5.70726 5.60333 5.74246 5.54829 5.81007 5.53975C5.85557 5.534 5.90183 5.5531 5.92557 5.58727C5.9464 5.61681 5.94595 5.65429 5.93056 5.68621C5.91998 5.70842 5.91756 5.73746 5.91514 5.76542C5.91136 5.81154 5.90637 5.86885 5.85134 5.87615C5.81244 5.8799 5.77684 5.8651 5.749 5.83717C5.70945 5.79749 5.6911 5.72803 5.69913 5.66608ZM4.88527 5.03163C4.87354 5.02319 4.87095 5.0061 4.87922 4.9942C4.96449 4.87306 5.10447 4.80519 5.25096 4.81498C5.3397 4.82119 5.42466 4.85598 5.49299 4.91391C5.50429 4.9232 5.50542 4.94137 5.49556 4.95212L5.40561 5.05012C5.39684 5.0599 5.38218 5.0613 5.3722 5.05322C5.33396 5.02232 5.2883 5.0043 5.23887 5.00104C5.15708 4.99529 5.07893 5.03226 5.02979 5.09811C5.02193 5.10867 5.00757 5.111 4.99684 5.10401C4.99684 5.10401 4.88542 5.03163 4.88527 5.03163ZM5.50947 5.83717C5.48163 5.8651 5.44603 5.8799 5.40713 5.87615C5.3521 5.86885 5.34711 5.81154 5.34333 5.76542C5.34091 5.73746 5.33849 5.70842 5.32791 5.68621C5.31251 5.65429 5.31207 5.61681 5.3329 5.58728C5.35663 5.55311 5.40289 5.534 5.4484 5.53975C5.51601 5.54829 5.55121 5.60333 5.55934 5.66608C5.56736 5.72803 5.54902 5.79749 5.50947 5.83717Z" fill="#D410AA"/>
13
+ </g>
14
+ </g>
15
+ <defs>
16
+ <clipPath id="clip0_16375_59428">
17
+ <rect width="10.963" height="16" fill="white" transform="translate(0.0351562)"/>
18
+ </clipPath>
19
+ <clipPath id="clip1_16375_59428">
20
+ <rect width="3.02427" height="4.61538" fill="white" transform="translate(4.11719 3.23096)"/>
21
+ </clipPath>
22
+ </defs>
23
+ </svg>
@@ -0,0 +1,23 @@
1
+ <svg width="11" height="16" viewBox="0 0 11 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_16375_59428)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.44531 9.59122L9.05737 8.77539L10.9978 13.4357L8.59814 13.4076L6.62633 15.0508L4.44531 9.59122Z" fill="#D3D3D3"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M7.09835 9.07422L2.15375 9.20873L0.0351562 14.3852L2.43483 14.3568L4.40664 16L7.09835 9.07422Z" fill="white"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M5.61299 0.00103709C5.89772 -0.0114756 6.12216 0.090503 6.34842 0.238466C6.63589 0.425531 6.9593 0.795281 7.35854 1.02989C7.92039 1.3596 8.96095 0.904768 9.49388 1.71778C9.80449 2.19201 9.81911 2.56364 9.84226 2.93089C9.86723 3.32723 9.93483 3.69166 10.3298 4.22814C10.9833 5.11592 11.1194 5.70683 10.7826 6.32277C10.553 6.74257 10.0697 6.97593 9.95767 7.24183C9.71984 7.80772 9.98295 8.23409 9.6571 8.89382C9.43084 9.35116 9.08185 9.65271 8.61684 9.80662C8.22491 9.93613 7.83147 9.74875 7.5175 9.8842C6.9657 10.1223 6.55885 10.6756 6.12003 10.8155C5.9504 10.8696 5.7817 10.8962 5.61299 10.8949C5.44459 10.8962 5.27557 10.8696 5.10626 10.8155C4.66713 10.6756 4.26028 10.1223 3.70878 9.8842C3.39482 9.74875 3.00137 9.93613 2.60914 9.80662C2.14443 9.65271 1.79514 9.35116 1.56887 8.89382C1.24303 8.23409 1.50645 7.80772 1.26831 7.24183C1.15654 6.97593 0.672956 6.74257 0.443343 6.32277C0.106841 5.70683 0.242964 5.11592 0.896479 4.22814C1.29115 3.69166 1.35875 3.32723 1.38372 2.93089C1.40687 2.56364 1.42148 2.19201 1.7324 1.71778C2.26533 0.904768 3.30559 1.3596 3.86744 1.02989C4.26698 0.795281 4.59008 0.425531 4.87756 0.238466C5.10412 0.090503 5.32856 -0.0114756 5.61299 0.00103709Z" fill="#242424"/>
6
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M5.61312 0.00157235C5.89786 -0.0112532 6.12199 0.0910382 6.34856 0.238688C6.63603 0.425753 6.95944 0.795504 7.35867 1.03012C7.80541 1.29226 8.55485 1.05858 9.11122 1.36045L2.83401 9.85095C2.7594 9.84469 2.68419 9.83156 2.60927 9.80684C2.14426 9.65294 1.79527 9.35169 1.56901 8.89404C1.24317 8.23431 1.50658 7.80794 1.26844 7.24205C1.15668 6.97616 0.673091 6.74279 0.443478 6.32299C0.106672 5.70705 0.2431 5.11614 0.896614 4.22837C1.29128 3.6922 1.35889 3.32745 1.38386 2.93111C1.407 2.56386 1.42162 2.19223 1.73224 1.718C2.26546 0.904677 3.30603 1.35983 3.86758 1.03012C4.26712 0.795504 4.59052 0.425753 4.87769 0.238688C5.10426 0.0910382 5.3287 -0.0112532 5.61312 0.00157235Z" fill="#464646"/>
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M5.60069 1.46387C7.7875 1.46387 9.56045 3.28509 9.56045 5.53175C9.56045 7.77841 7.7875 9.59932 5.60069 9.59932C3.41358 9.59932 1.64062 7.77841 1.64062 5.53175C1.64062 3.28509 3.41358 1.46387 5.60069 1.46387Z" fill="white"/>
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M5.59915 2.27979C7.34744 2.27979 8.7644 3.73564 8.7644 5.53153C8.7644 7.32741 7.34744 8.78327 5.59915 8.78327C3.85086 8.78327 2.43359 7.32741 2.43359 5.53153C2.43359 3.73564 3.85086 2.27979 5.59915 2.27979Z" fill="#353535"/>
9
+ <path d="M7.82204 3.23096L4.00391 8.34634C4.00391 8.34634 6.00748 9.73096 8.01106 7.6925C9.90122 5.26942 7.82204 3.23096 7.82204 3.23096Z" fill="#242424"/>
10
+ <g clip-path="url(#clip1_16375_59428)">
11
+ <path d="M7.13861 6.03324L6.94768 3.90237C6.92954 3.68819 6.79106 3.49903 6.59484 3.42152C6.2742 3.2951 5.95057 3.23096 5.62932 3.23096C5.30808 3.23096 4.98445 3.2951 4.6638 3.42152C4.46758 3.49902 4.3291 3.68819 4.31096 3.90237L4.12003 6.03324C4.1099 6.15174 4.12698 6.269 4.16901 6.37244C4.19274 6.43115 4.22026 6.47681 4.25276 6.51191L5.27757 7.69383L5.2812 7.69756C5.37387 7.79338 5.4975 7.84634 5.62932 7.84634C5.76115 7.84634 5.88477 7.79338 5.97744 7.69756L5.98107 7.69383L7.00588 6.51191C7.03838 6.47681 7.0659 6.43115 7.08963 6.37244C7.13166 6.269 7.14874 6.15174 7.13861 6.03324Z" fill="#FFFAF6"/>
12
+ <path d="M6.94774 6.05032L6.75681 3.92054C6.74487 3.77889 6.65522 3.65635 6.52597 3.60526C6.22649 3.48722 5.92826 3.42539 5.62923 3.42529C5.33021 3.42539 5.03198 3.48722 4.7325 3.60526C4.60325 3.65635 4.5136 3.77889 4.50166 3.92054L4.31072 6.05032C4.30362 6.13403 4.31405 6.21899 4.34565 6.29665C4.35864 6.32864 4.37437 6.35862 4.39311 6.37803L5.41717 7.55902C5.47356 7.61741 5.54896 7.65218 5.62923 7.65218C5.70951 7.65218 5.78491 7.61741 5.8413 7.55902L6.86535 6.37803C6.8841 6.35862 6.89982 6.32864 6.91282 6.29665C6.94442 6.21899 6.95485 6.13403 6.94774 6.05032ZM6.42045 6.50399L5.86231 7.14744C5.85082 7.16064 5.83434 7.16825 5.81711 7.16825H5.44136C5.42413 7.16825 5.40765 7.16064 5.39616 7.14744L4.83802 6.50399C4.83303 6.49824 4.83847 6.48939 4.84573 6.49156C5.1254 6.57421 5.39415 6.60145 5.62923 6.60065C5.86432 6.60145 6.13307 6.57421 6.41274 6.49156C6.41999 6.48939 6.42543 6.49824 6.42045 6.50399ZM6.69513 6.15407C6.33931 6.29217 5.98505 6.36113 5.62923 6.36094C5.27341 6.36113 4.91916 6.29217 4.56334 6.15407C4.56031 6.15283 4.55835 6.14988 4.55835 6.14661C4.56122 5.74327 4.86689 5.47676 4.95533 5.40997C4.96501 5.40267 4.9638 5.38745 4.95291 5.38217C4.78344 5.30001 4.6681 5.13818 4.6681 4.95242C4.6681 4.68311 4.90968 4.51799 5.20764 4.51799C5.26993 4.51799 5.32979 4.52221 5.38542 4.53852C5.39207 4.54038 5.39782 4.53324 5.39434 4.52718C5.34506 4.44269 5.19116 4.3624 5.14022 4.33755C5.13598 4.33553 5.13734 4.32901 5.14203 4.32869C5.44393 4.31611 5.5759 4.43834 5.61687 4.49612C5.61989 4.50036 5.62459 4.50253 5.62923 4.50264C5.63387 4.50253 5.63857 4.50036 5.64159 4.49612C5.68256 4.43834 5.81454 4.31611 6.11643 4.32869C6.12112 4.32901 6.12248 4.33553 6.11825 4.33755C6.0673 4.3624 5.9134 4.44269 5.86412 4.52718C5.86064 4.53324 5.86639 4.54038 5.87304 4.53852C5.92867 4.52221 5.98854 4.51799 6.05082 4.51799C6.34879 4.51799 6.59036 4.68312 6.59036 4.95242C6.59036 5.13818 6.47502 5.30001 6.30555 5.38217C6.29467 5.38745 6.29346 5.40267 6.30313 5.40997C6.39157 5.47676 6.69724 5.74327 6.70012 6.14661C6.70012 6.14987 6.69815 6.15283 6.69513 6.15407ZM6.26163 5.10401C6.2509 5.111 6.23653 5.10867 6.22867 5.09811C6.17954 5.03225 6.10139 4.99529 6.0196 5.00104C5.97017 5.0043 5.92451 5.02232 5.88627 5.05322C5.87629 5.0613 5.86162 5.0599 5.85286 5.05012L5.76291 4.95211C5.75305 4.94137 5.75418 4.9232 5.76548 4.91391C5.83381 4.85598 5.91877 4.82119 6.00751 4.81497C6.15399 4.80519 6.29398 4.87306 6.37924 4.9942C6.38752 5.0061 6.38493 5.02319 6.3732 5.03163C6.37305 5.03163 6.26163 5.10401 6.26163 5.10401ZM5.69913 5.66608C5.70726 5.60333 5.74246 5.54829 5.81007 5.53975C5.85557 5.534 5.90183 5.5531 5.92557 5.58727C5.9464 5.61681 5.94595 5.65429 5.93056 5.68621C5.91998 5.70842 5.91756 5.73746 5.91514 5.76542C5.91136 5.81154 5.90637 5.86885 5.85134 5.87615C5.81244 5.8799 5.77684 5.8651 5.749 5.83717C5.70945 5.79749 5.6911 5.72803 5.69913 5.66608ZM4.88527 5.03163C4.87354 5.02319 4.87095 5.0061 4.87922 4.9942C4.96449 4.87306 5.10447 4.80519 5.25096 4.81498C5.3397 4.82119 5.42466 4.85598 5.49299 4.91391C5.50429 4.9232 5.50542 4.94137 5.49556 4.95212L5.40561 5.05012C5.39684 5.0599 5.38218 5.0613 5.3722 5.05322C5.33396 5.02232 5.2883 5.0043 5.23887 5.00104C5.15708 4.99529 5.07893 5.03226 5.02979 5.09811C5.02193 5.10867 5.00757 5.111 4.99684 5.10401C4.99684 5.10401 4.88542 5.03163 4.88527 5.03163ZM5.50947 5.83717C5.48163 5.8651 5.44603 5.8799 5.40713 5.87615C5.3521 5.86885 5.34711 5.81154 5.34333 5.76542C5.34091 5.73746 5.33849 5.70842 5.32791 5.68621C5.31251 5.65429 5.31207 5.61681 5.3329 5.58728C5.35663 5.55311 5.40289 5.534 5.4484 5.53975C5.51601 5.54829 5.55121 5.60333 5.55934 5.66608C5.56736 5.72803 5.54902 5.79749 5.50947 5.83717Z" fill="#D410AA"/>
13
+ </g>
14
+ </g>
15
+ <defs>
16
+ <clipPath id="clip0_16375_59428">
17
+ <rect width="10.963" height="16" fill="white" transform="translate(0.0351562)"/>
18
+ </clipPath>
19
+ <clipPath id="clip1_16375_59428">
20
+ <rect width="3.02427" height="4.61538" fill="white" transform="translate(4.11719 3.23096)"/>
21
+ </clipPath>
22
+ </defs>
23
+ </svg>
@@ -57,6 +57,7 @@ ui-dropdown, ui-autocomplete {
57
57
  .mdc-notched-outline__notch {
58
58
  border-top-width: 2px;
59
59
  border-bottom-width: 2px;
60
+ border-left: none !important;
60
61
  }
61
62
 
62
63
  .mdc-notched-outline__trailing {
@@ -79,21 +79,21 @@ $tgo-error-palette: (
79
79
  );
80
80
 
81
81
  //teal
82
- $tgo-teal: mat.define-palette($tgo-teal-palette, 500);
83
- $tgo-light-palette: mat.define-palette($tgo-teal-palette, 50);
82
+ $tgo-teal: mat.m2-define-palette($tgo-teal-palette, 500);
83
+ $tgo-light-palette: mat.m2-define-palette($tgo-teal-palette, 50);
84
84
  //petrol
85
- $tgo-petrol: mat.define-palette($tgo-petrol-palette, 500);
85
+ $tgo-petrol: mat.m2-define-palette($tgo-petrol-palette, 500);
86
86
  //error
87
- $tgo-error: mat.define-palette($tgo-error-palette, 500);
87
+ $tgo-error: mat.m2-define-palette($tgo-error-palette, 500);
88
88
  //typography
89
- $tgo-typography: mat.define-typography-config(
89
+ $tgo-typography: mat.m2-define-typography-config(
90
90
  $font-family: "'Open Sans', sans-serif",
91
- $body-1: mat.define-typography-level($font-size: 14px, $letter-spacing: normal),
92
- $body-2: mat.define-typography-level($font-size: 14px, $letter-spacing: normal),
93
- $button: mat.define-typography-level($font-size: 14px, $letter-spacing: normal),
91
+ $body-1: mat.m2-define-typography-level($font-size: 14px, $letter-spacing: normal),
92
+ $body-2: mat.m2-define-typography-level($font-size: 14px, $letter-spacing: normal),
93
+ $button: mat.m2-define-typography-level($font-size: 14px, $letter-spacing: normal),
94
94
  );
95
95
 
96
- $my-theme: mat.define-light-theme(
96
+ $my-theme: mat.m2-define-light-theme(
97
97
  (
98
98
  color: (
99
99
  primary: $tgo-teal,
@@ -100,19 +100,19 @@ body {
100
100
  @include rebranded-tooltip()
101
101
  }
102
102
 
103
- .mat-mdc-tooltip-panel-right .mdc-tooltip--shown {
103
+ .mat-mdc-tooltip-panel-right .mat-mdc-tooltip-show {
104
104
  @include rebranded-tooltip-right()
105
105
  }
106
106
 
107
- .mat-mdc-tooltip-panel-left .mdc-tooltip--shown {
107
+ .mat-mdc-tooltip-panel-left .mat-mdc-tooltip-show {
108
108
  @include rebranded-tooltip-left()
109
109
  }
110
110
 
111
- .mat-mdc-tooltip-panel-below .mdc-tooltip--shown {
111
+ .mat-mdc-tooltip-panel-below .mat-mdc-tooltip-show {
112
112
  @include rebranded-tooltip-below()
113
113
  }
114
114
 
115
- .mat-mdc-tooltip-panel-above .mdc-tooltip--shown {
115
+ .mat-mdc-tooltip-panel-above .mat-mdc-tooltip-show {
116
116
  @include rebranded-tooltip-above()
117
117
  }
118
118
  }
@@ -124,26 +124,26 @@ body {
124
124
  }
125
125
  }
126
126
 
127
- .mat-mdc-tooltip-panel-right .mdc-tooltip--shown {
127
+ .mat-mdc-tooltip-panel-right .mat-mdc-tooltip-show {
128
128
  &.light, &.dark {
129
129
  @include rebranded-tooltip-right()
130
130
  }
131
131
  }
132
132
 
133
133
 
134
- .mat-mdc-tooltip-panel-left .mdc-tooltip--shown {
134
+ .mat-mdc-tooltip-panel-left .mat-mdc-tooltip-show {
135
135
  &.light, &.dark {
136
136
  @include rebranded-tooltip-left()
137
137
  }
138
138
  }
139
139
 
140
- .mat-mdc-tooltip-panel-below .mdc-tooltip--shown {
140
+ .mat-mdc-tooltip-panel-below .mat-mdc-tooltip-show {
141
141
  &.light, &.dark {
142
142
  @include rebranded-tooltip-below()
143
143
  }
144
144
  }
145
145
 
146
- .mat-mdc-tooltip-panel-above .mdc-tooltip--shown {
146
+ .mat-mdc-tooltip-panel-above .mat-mdc-tooltip-show {
147
147
  &.light, &.dark {
148
148
  @include rebranded-tooltip-above()
149
149
  }
@@ -314,3 +314,7 @@ body {
314
314
  font-size: 12px;
315
315
  line-height: 16px;
316
316
  }
317
+
318
+ .cdk-overlay-container {
319
+ z-index: 999999999;
320
+ }
@@ -119,6 +119,10 @@ caption,
119
119
  font-weight: bold;
120
120
  font-size: 12px;
121
121
  line-height: 16px;
122
+ } @else if ($type == 'body-small-regular') {
123
+ font-weight: 400;
124
+ font-size: 12px;
125
+ line-height: 16px;
122
126
  } @else if ($type == 'body-large-regular') {
123
127
  font-weight: 400;
124
128
  font-size: 12px;
@@ -44,7 +44,7 @@ $tgo-white: #ffffff;
44
44
 
45
45
  //box-shadow
46
46
  $box-shadow: #00000014;
47
- $box-shadow-rebrand: #242424,8%;
47
+ $box-shadow-rebrand: #24242414;
48
48
 
49
49
  $navigation-subtitle: #528593;
50
50
 
@@ -158,6 +158,6 @@ $box-shadow-page-card: 0px 4px 100px 0px #2424240A;
158
158
  $box-shadow-modal: 0px 4px 100px 0px #24242414;
159
159
 
160
160
  @mixin ai-gradient() {
161
- background: $ai-gradient-blue;
162
- background: linear-gradient(129deg, $ai-gradient-blue 12%, $ai-gradient-pink 88%);
161
+ background: linear-gradient(to left, white, white),
162
+ linear-gradient(to right, $ai-gradient-blue 12%, $ai-gradient-pink 88%);
163
163
  }
package/public-api.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  export * from './components/universal-skills-report/universal-skills-report.component';
2
2
  export * from './components/universal-skills-report/universal-skills-report.component.module';
3
- export * from './components/universal-skills-report/universal-skills-report.model';
3
+ export * from './models/universal-skills-report.model';
4
4
  export * from './components/alert-banner/alert-banner.component';
5
5
  export * from './components/alert-banner/alert-banner.component.module';
6
6
  export * from './components/button/button.component';
@@ -14,6 +14,7 @@ export * from './components/checkbox/checkbox.component.module';
14
14
  export * from './components/dialog/dialog.component';
15
15
  export * from './components/dialog/dialog.component.module';
16
16
  export * from './components/dialog/dialog.service';
17
+ export * from './components/dialog/dialog.model';
17
18
  export * from './components/elevation-shadow/elevation-shadow.component';
18
19
  export * from './components/elevation-shadow/elevation-shadow.component.module';
19
20
  export * from './components/elevation-shadow/elevation-shadow.constant';
@@ -43,9 +44,6 @@ export * from './components/snackbar/snackbar.component';
43
44
  export * from './components/snackbar/snackbar.component.module';
44
45
  export * from './components/snackbar/snackbar.model';
45
46
  export * from './components/snackbar/snackbar.service';
46
- export * from './components/deprecated-table/deprecated-table.component';
47
- export * from './components/deprecated-table/deprecated-table.component.module';
48
- export * from './components/deprecated-table/deprecated-table.model';
49
47
  export * from './pipes/data-property-getter';
50
48
  export * from './components/tag/tag.component';
51
49
  export * from './components/tag/tag.component.module';
@@ -150,3 +148,12 @@ export * from './components/spider-chart/spider-chart.model';
150
148
  export * from './components/checklist/checklist.component';
151
149
  export * from './components/checklist/checklist.model';
152
150
  export * from './components/media-card/media-card.component';
151
+ export * from './components/gaussian-chart/gaussian-chart.component';
152
+ export * from './components/gaussian-chart/gaussian-chart.module';
153
+ export * from './components/universal-skills-spider-charts/universal-skills-spider-charts.component';
154
+ export * from './components/universal-skills-spider-charts/universal-skills-spider-charts.component.module';
155
+ export * from './services/universal-skills.service';
156
+ export * from './pipes/memoize-func.pipe';
157
+ export * from './components/filter-button/filter-button.component';
158
+ export * from './components/filter-button/filter-button.component.module';
159
+ export * from './components/filter-button/filter-button.model';
@@ -0,0 +1,13 @@
1
+ import { SkillAreaData, SkillAreaGroup, SkillAreaGroupTypes, SkillAreaTypes } from '../models/universal-skills-report.model';
2
+ import * as i0 from "@angular/core";
3
+ export declare class UniversalSkillsService {
4
+ readonly translationContext = "UNIVERSAL_SKILLS_REPORT.";
5
+ private skillAreaGroupMap;
6
+ private staticSkillAreaGroupMap;
7
+ initializeSkillAreaGroupMap(): void;
8
+ prepareSkillAreaGroupMap(skillAreaDataList: SkillAreaData[]): void;
9
+ getSkillAreaGroupMap(): Record<SkillAreaGroupTypes, SkillAreaGroup>;
10
+ getStaticSkillAreaGroupMap(): SkillAreaTypes[][];
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<UniversalSkillsService, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<UniversalSkillsService>;
13
+ }
@@ -1,6 +1,6 @@
1
1
  export declare class AutocompleteUtils {
2
2
  static transformDisplayValue(value: any, textField: string): any;
3
- static filterItems(items: any, inputValue: string, textField?: string): any;
3
+ static filterItems(items: any, inputValue: string, textField?: string, isGroup?: boolean): any;
4
4
  static isPrimitive(value: any): boolean;
5
5
  static isArray(value: any): boolean;
6
6
  static throwInvalidSetupError(): void;
@@ -8,5 +8,5 @@ export declare class AutocompleteUtils {
8
8
  static shouldBeObject(value: any, textField: string, valueField: string): boolean;
9
9
  static createValueItem(value: any, textField: string, valueField: string): any;
10
10
  static findDuplicate(value: any, selectedValue: any, lookupKey?: string): any;
11
- static countMatchingWords(words: any[], query: string, textField?: string): number;
11
+ static countMatchingWords(words: any[], query: string, textField?: string, isGroup?: boolean): number;
12
12
  }
@@ -1,91 +0,0 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { MatSort, Sort } from '@angular/material/sort';
3
- import { MatTableDataSource } from '@angular/material/table';
4
- import { DataPropertyGetterPipe } from '../../pipes/data-property-getter';
5
- import { ColumnTypeEnum, IDataSource, ITableColumn, ITableDetailColumn } from './deprecated-table.model';
6
- import * as i0 from "@angular/core";
7
- export declare class DeprecatedTableComponent<T extends IDataSource, TDetail extends IDataSource> implements OnInit {
8
- private dataPropertyGetterPipe;
9
- /**
10
- * @ignore
11
- */
12
- set matSort(matSort: MatSort);
13
- /**
14
- * @ignore
15
- */
16
- tableDetails: boolean;
17
- /**
18
- * Data to be rendered
19
- *
20
- * @ignore
21
- * @type {IDataSource}
22
- * @memberof TableComponent
23
- */
24
- set tableData(data: T[] | null);
25
- /**
26
- * Data structure to select which columns should be rendered and their capabilities
27
- *
28
- * @type {ITableColumn}
29
- * @memberof TableComponent
30
- */
31
- tableColumns: ITableColumn<T>[];
32
- /**
33
- * Data structure to select which columns should be rendered and their capabilities
34
- *
35
- * @type {ITableColumn}
36
- * @memberof TableComponent
37
- */
38
- tableDetailColumns: ITableDetailColumn<T, TDetail>;
39
- /**
40
- * @ignore
41
- */
42
- onSortEvent: EventEmitter<Sort>;
43
- /**
44
- * @ignore
45
- */
46
- onRowClickEvent: EventEmitter<any>;
47
- /**
48
- * @ignore
49
- */
50
- onDetailRowClickEvent: EventEmitter<any>;
51
- /**
52
- * @ignore
53
- */
54
- dataSource: MatTableDataSource<any, import("@angular/material/table").MatTableDataSourcePaginator>;
55
- /**
56
- * @ignore
57
- */
58
- dataSourceDetail: MatTableDataSource<any, import("@angular/material/table").MatTableDataSourcePaginator>;
59
- /**
60
- * @ignore
61
- */
62
- elementDetail: any;
63
- /**
64
- * @ignore
65
- */
66
- columnsToDisplay: string[];
67
- /**
68
- * @ignore
69
- */
70
- columnsDetailToDisplay: string[];
71
- /**
72
- * @ignore
73
- */
74
- DataType: typeof ColumnTypeEnum;
75
- ngOnInit(): void;
76
- constructor(dataPropertyGetterPipe: DataPropertyGetterPipe);
77
- onSort(sortParams: Sort): void;
78
- onRowClick(rowParams: any): void;
79
- onDetailRowClick(rowParams: any): void;
80
- toggleRow(element: T): void;
81
- /**
82
- * @ignore
83
- */
84
- private setTableDataSource;
85
- /**
86
- * @ignore
87
- */
88
- private setTableDetailDataSource;
89
- static ɵfac: i0.ɵɵFactoryDeclaration<DeprecatedTableComponent<any, any>, never>;
90
- static ɵcmp: i0.ɵɵComponentDeclaration<DeprecatedTableComponent<any, any>, "ui-deprecated-table", never, { "tableDetails": { "alias": "tableDetails"; "required": false; }; "tableData": { "alias": "tableData"; "required": false; }; "tableColumns": { "alias": "tableColumns"; "required": false; }; "tableDetailColumns": { "alias": "tableDetailColumns"; "required": false; }; }, { "onSortEvent": "onSortEvent"; "onRowClickEvent": "onRowClickEvent"; "onDetailRowClickEvent": "onDetailRowClickEvent"; }, never, never, false, never>;
91
- }
@@ -1,14 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./deprecated-table.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "@angular/material/table";
5
- import * as i4 from "@angular/material/sort";
6
- import * as i5 from "@angular/material/icon";
7
- import * as i6 from "@angular/material/tooltip";
8
- import * as i7 from "./directives/dynamic-component.directive";
9
- import * as i8 from "../../pipes/data-property-getter";
10
- export declare class DeprecatedTableComponentModule {
11
- static ɵfac: i0.ɵɵFactoryDeclaration<DeprecatedTableComponentModule, never>;
12
- static ɵmod: i0.ɵɵNgModuleDeclaration<DeprecatedTableComponentModule, [typeof i1.DeprecatedTableComponent], [typeof i2.CommonModule, typeof i3.MatTableModule, typeof i4.MatSortModule, typeof i5.MatIconModule, typeof i6.MatTooltipModule, typeof i7.DynamicComponentDirective, typeof i8.DataPropertyGetterPipe], [typeof i1.DeprecatedTableComponent]>;
13
- static ɵinj: i0.ɵɵInjectorDeclaration<DeprecatedTableComponentModule>;
14
- }
@@ -1,45 +0,0 @@
1
- import { Type } from '@angular/core';
2
- export type IDataSource = {
3
- [key: string]: any;
4
- };
5
- export interface ITableColumn<T> {
6
- headerName: string;
7
- headerTooltip?: string;
8
- field?: string;
9
- type?: ColumnTypeEnum;
10
- function?: (v: T) => string;
11
- renderer?: (v: T) => IComponentRenderer | string;
12
- sortable?: boolean;
13
- styles?: IColumnStyles;
14
- }
15
- export interface IComponentRenderer {
16
- component: Type<any>;
17
- inputs?: any;
18
- outputs?: {
19
- [key: string]: any;
20
- };
21
- }
22
- export interface IDetailRowDataParams<T, TDetail> {
23
- data: T;
24
- setDetailDataSource(rowData: TDetail[]): void;
25
- }
26
- export interface ITableDetailColumn<T, TDetail> {
27
- columnDefs: ITableColumn<TDetail>[];
28
- setDetailRowData: (params: IDetailRowDataParams<T, TDetail>) => void;
29
- }
30
- export interface IColumnStyles {
31
- alignment?: ColumnAlignmentEnum;
32
- width?: string;
33
- 'min-width'?: string;
34
- padding?: string;
35
- }
36
- export declare enum ColumnTypeEnum {
37
- FIELD = "field",
38
- FUNCTION = "function",
39
- RENDERER = "renderer"
40
- }
41
- export declare enum ColumnAlignmentEnum {
42
- LEFT = "left",
43
- RIGHT = "right",
44
- CENTER = "center"
45
- }