@pagopa/io-app-design-system 1.7.1 → 1.8.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 (542) hide show
  1. package/lib/commonjs/components/alert/Alert.js +9 -1
  2. package/lib/commonjs/components/alert/Alert.js.map +1 -1
  3. package/lib/commonjs/components/badge/Badge.js +11 -2
  4. package/lib/commonjs/components/badge/Badge.js.map +1 -1
  5. package/lib/commonjs/components/badge/__test__/__snapshots__/badge.test.tsx.snap +5 -3
  6. package/lib/commonjs/components/banner/Banner.js +0 -1
  7. package/lib/commonjs/components/banner/Banner.js.map +1 -1
  8. package/lib/commonjs/components/banner/__test__/__snapshots__/banner.test.tsx.snap +5 -5
  9. package/lib/commonjs/components/buttons/ButtonExtendedOutline.js +1 -1
  10. package/lib/commonjs/components/buttons/ButtonExtendedOutline.js.map +1 -1
  11. package/lib/commonjs/components/buttons/ButtonLink.js +3 -2
  12. package/lib/commonjs/components/buttons/ButtonLink.js.map +1 -1
  13. package/lib/commonjs/components/buttons/ButtonOutline.js +8 -48
  14. package/lib/commonjs/components/buttons/ButtonOutline.js.map +1 -1
  15. package/lib/commonjs/components/buttons/ButtonSolid.js +5 -7
  16. package/lib/commonjs/components/buttons/ButtonSolid.js.map +1 -1
  17. package/lib/commonjs/components/buttons/IconButtonSolid.js +54 -29
  18. package/lib/commonjs/components/buttons/IconButtonSolid.js.map +1 -1
  19. package/lib/commonjs/components/buttons/__test__/__snapshots__/button.test.tsx.snap +23 -21
  20. package/lib/commonjs/components/checkbox/AnimatedCheckbox.js +14 -2
  21. package/lib/commonjs/components/checkbox/AnimatedCheckbox.js.map +1 -1
  22. package/lib/commonjs/components/checkbox/AnimatedMessageCheckbox.js +11 -3
  23. package/lib/commonjs/components/checkbox/AnimatedMessageCheckbox.js.map +1 -1
  24. package/lib/commonjs/components/checkbox/CheckboxLabel.js +31 -8
  25. package/lib/commonjs/components/checkbox/CheckboxLabel.js.map +1 -1
  26. package/lib/commonjs/components/icons/Icon.js +27 -15
  27. package/lib/commonjs/components/icons/Icon.js.map +1 -1
  28. package/lib/commonjs/components/icons/IconContained.js +59 -0
  29. package/lib/commonjs/components/icons/IconContained.js.map +1 -0
  30. package/lib/commonjs/components/icons/index.js +11 -0
  31. package/lib/commonjs/components/icons/index.js.map +1 -1
  32. package/lib/commonjs/components/icons/svg/IconChange.js +31 -0
  33. package/lib/commonjs/components/icons/svg/IconChange.js.map +1 -0
  34. package/lib/commonjs/components/icons/svg/IconDialpad.js +29 -0
  35. package/lib/commonjs/components/icons/svg/IconDialpad.js.map +1 -0
  36. package/lib/commonjs/components/icons/svg/IconKey.js +31 -0
  37. package/lib/commonjs/components/icons/svg/IconKey.js.map +1 -0
  38. package/lib/commonjs/components/icons/svg/IconNotification.js +31 -0
  39. package/lib/commonjs/components/icons/svg/IconNotification.js.map +1 -0
  40. package/lib/commonjs/components/icons/svg/IconOption.js +31 -0
  41. package/lib/commonjs/components/icons/svg/IconOption.js.map +1 -0
  42. package/lib/commonjs/components/icons/svg/IconTransactions.js +1 -1
  43. package/lib/commonjs/components/icons/svg/IconTransactions.js.map +1 -1
  44. package/lib/commonjs/components/icons/svg/IconTransactionsBoxed.js +31 -0
  45. package/lib/commonjs/components/icons/svg/IconTransactionsBoxed.js.map +1 -0
  46. package/lib/commonjs/components/icons/svg/originals/IconChange.svg +3 -0
  47. package/lib/commonjs/components/icons/svg/originals/IconDialpad.svg +5 -0
  48. package/lib/commonjs/components/icons/svg/originals/IconKey.svg +7 -0
  49. package/lib/commonjs/components/icons/svg/originals/IconNotification.svg +7 -0
  50. package/lib/commonjs/components/icons/svg/originals/IconOption.svg +7 -0
  51. package/lib/commonjs/components/icons/svg/originals/IconTransactions.svg +8 -0
  52. package/lib/commonjs/components/icons/svg/originals/IconTransactionsBoxed.svg +8 -0
  53. package/lib/commonjs/components/index.js +11 -0
  54. package/lib/commonjs/components/index.js.map +1 -1
  55. package/lib/commonjs/components/listitems/ListItemAction.js +38 -8
  56. package/lib/commonjs/components/listitems/ListItemAction.js.map +1 -1
  57. package/lib/commonjs/components/listitems/ListItemInfo.js +31 -7
  58. package/lib/commonjs/components/listitems/ListItemInfo.js.map +1 -1
  59. package/lib/commonjs/components/listitems/ListItemInfoCopy.js +40 -10
  60. package/lib/commonjs/components/listitems/ListItemInfoCopy.js.map +1 -1
  61. package/lib/commonjs/components/listitems/ListItemNav.js +30 -7
  62. package/lib/commonjs/components/listitems/ListItemNav.js.map +1 -1
  63. package/lib/commonjs/components/listitems/ListItemNavAlert.js +32 -7
  64. package/lib/commonjs/components/listitems/ListItemNavAlert.js.map +1 -1
  65. package/lib/commonjs/components/listitems/ListItemSwitch.js +1 -1
  66. package/lib/commonjs/components/listitems/ListItemSwitch.js.map +1 -1
  67. package/lib/commonjs/components/listitems/__test__/__snapshots__/listitem.test.tsx.snap +75 -108
  68. package/lib/commonjs/components/listitems/__test__/listitem.test.js +2 -2
  69. package/lib/commonjs/components/listitems/__test__/listitem.test.js.map +1 -1
  70. package/lib/commonjs/components/listitems/index.js +4 -4
  71. package/lib/commonjs/components/listitems/index.js.map +1 -1
  72. package/lib/commonjs/components/{listitems/ListItemIDP.js → modules/ModuleIDP.js} +19 -12
  73. package/lib/commonjs/components/modules/ModuleIDP.js.map +1 -0
  74. package/lib/commonjs/components/modules/index.js +17 -0
  75. package/lib/commonjs/components/modules/index.js.map +1 -0
  76. package/lib/commonjs/components/pictograms/Pictogram.js +13 -1
  77. package/lib/commonjs/components/pictograms/Pictogram.js.map +1 -1
  78. package/lib/commonjs/components/pictograms/svg/PictogramBleedCie.js +47 -0
  79. package/lib/commonjs/components/pictograms/svg/PictogramBleedCie.js.map +1 -0
  80. package/lib/commonjs/components/pictograms/svg/PictogramBleedFeature.js +50 -0
  81. package/lib/commonjs/components/pictograms/svg/PictogramBleedFeature.js.map +1 -0
  82. package/lib/commonjs/components/pictograms/svg/PictogramBleedSecurity.js +44 -0
  83. package/lib/commonjs/components/pictograms/svg/PictogramBleedSecurity.js.map +1 -0
  84. package/lib/commonjs/components/pictograms/svg/PictogramCie.js +47 -0
  85. package/lib/commonjs/components/pictograms/svg/PictogramCie.js.map +1 -0
  86. package/lib/commonjs/components/pictograms/svg/PictogramFeature.js +50 -0
  87. package/lib/commonjs/components/pictograms/svg/PictogramFeature.js.map +1 -0
  88. package/lib/commonjs/components/pictograms/svg/PictogramSecurity.js +47 -0
  89. package/lib/commonjs/components/pictograms/svg/PictogramSecurity.js.map +1 -0
  90. package/lib/commonjs/components/pictograms/svg/originals/PictogramBleedCie.svg +30 -0
  91. package/lib/commonjs/components/pictograms/svg/originals/PictogramBleedFeature.svg +34 -0
  92. package/lib/commonjs/components/pictograms/svg/originals/PictogramBleedSecurity.svg +26 -0
  93. package/lib/commonjs/components/pictograms/svg/originals/PictogramCie.svg +30 -0
  94. package/lib/commonjs/components/pictograms/svg/originals/PictogramFeature.svg +34 -0
  95. package/lib/commonjs/components/pictograms/svg/originals/PictogramSecurity.svg +30 -0
  96. package/lib/commonjs/components/radio/AnimatedRadio.js +14 -2
  97. package/lib/commonjs/components/radio/AnimatedRadio.js.map +1 -1
  98. package/lib/commonjs/components/switch/NativeSwitch.js +19 -5
  99. package/lib/commonjs/components/switch/NativeSwitch.js.map +1 -1
  100. package/lib/commonjs/components/switch/SwitchLabel.js +31 -8
  101. package/lib/commonjs/components/switch/SwitchLabel.js.map +1 -1
  102. package/lib/commonjs/components/tag/Tag.js +16 -8
  103. package/lib/commonjs/components/tag/Tag.js.map +1 -1
  104. package/lib/commonjs/components/textInput/TextInputBase.js +11 -2
  105. package/lib/commonjs/components/textInput/TextInputBase.js.map +1 -1
  106. package/lib/commonjs/components/typography/Body.js +1 -4
  107. package/lib/commonjs/components/typography/Body.js.map +1 -1
  108. package/lib/commonjs/components/typography/BodyMonospace.js +28 -0
  109. package/lib/commonjs/components/typography/BodyMonospace.js.map +1 -0
  110. package/lib/commonjs/components/typography/ButtonText.js +39 -0
  111. package/lib/commonjs/components/typography/ButtonText.js.map +1 -0
  112. package/lib/commonjs/components/typography/Caption.js +37 -0
  113. package/lib/commonjs/components/typography/Caption.js.map +1 -0
  114. package/lib/commonjs/components/typography/Chip.js +34 -0
  115. package/lib/commonjs/components/typography/Chip.js.map +1 -0
  116. package/lib/commonjs/components/typography/H1.js +18 -15
  117. package/lib/commonjs/components/typography/H1.js.map +1 -1
  118. package/lib/commonjs/components/typography/H2.js +18 -15
  119. package/lib/commonjs/components/typography/H2.js.map +1 -1
  120. package/lib/commonjs/components/typography/H3.js +24 -18
  121. package/lib/commonjs/components/typography/H3.js.map +1 -1
  122. package/lib/commonjs/components/typography/H4.js +18 -14
  123. package/lib/commonjs/components/typography/H4.js.map +1 -1
  124. package/lib/commonjs/components/typography/H5.js +19 -33
  125. package/lib/commonjs/components/typography/H5.js.map +1 -1
  126. package/lib/commonjs/components/typography/H6.js +15 -13
  127. package/lib/commonjs/components/typography/H6.js.map +1 -1
  128. package/lib/commonjs/components/typography/Hero.js +38 -0
  129. package/lib/commonjs/components/typography/Hero.js.map +1 -0
  130. package/lib/commonjs/components/typography/Label.js +13 -10
  131. package/lib/commonjs/components/typography/Label.js.map +1 -1
  132. package/lib/commonjs/components/typography/LabelHeader.js +19 -16
  133. package/lib/commonjs/components/typography/LabelHeader.js.map +1 -1
  134. package/lib/commonjs/components/typography/{Link.js → LabelLink.js} +9 -14
  135. package/lib/commonjs/components/typography/LabelLink.js.map +1 -0
  136. package/lib/commonjs/components/typography/LabelSmall.js +18 -22
  137. package/lib/commonjs/components/typography/LabelSmall.js.map +1 -1
  138. package/lib/commonjs/components/typography/__test__/__snapshots__/typography.test.tsx.snap +195 -379
  139. package/lib/commonjs/components/typography/__test__/typography.test.js +10 -42
  140. package/lib/commonjs/components/typography/__test__/typography.test.js.map +1 -1
  141. package/lib/commonjs/components/typography/common.js +18 -1
  142. package/lib/commonjs/components/typography/common.js.map +1 -1
  143. package/lib/commonjs/components/typography/index.js +45 -12
  144. package/lib/commonjs/components/typography/index.js.map +1 -1
  145. package/lib/commonjs/core/IOShapes.js +3 -3
  146. package/lib/commonjs/core/IOShapes.js.map +1 -1
  147. package/lib/commonjs/core/IOSpacing.js +8 -8
  148. package/lib/commonjs/core/IOSpacing.js.map +1 -1
  149. package/lib/commonjs/core/IOStyles.js +2 -8
  150. package/lib/commonjs/core/IOStyles.js.map +1 -1
  151. package/lib/commonjs/stories/Link.stories.js +1 -1
  152. package/lib/commonjs/stories/Link.stories.js.map +1 -1
  153. package/lib/commonjs/stories/Monospace.stories.js +1 -1
  154. package/lib/commonjs/stories/Monospace.stories.js.map +1 -1
  155. package/lib/commonjs/utils/fonts.js +8 -6
  156. package/lib/commonjs/utils/fonts.js.map +1 -1
  157. package/lib/module/components/alert/Alert.js +9 -1
  158. package/lib/module/components/alert/Alert.js.map +1 -1
  159. package/lib/module/components/badge/Badge.js +12 -3
  160. package/lib/module/components/badge/Badge.js.map +1 -1
  161. package/lib/module/components/badge/__test__/__snapshots__/badge.test.tsx.snap +5 -3
  162. package/lib/module/components/banner/Banner.js +0 -1
  163. package/lib/module/components/banner/Banner.js.map +1 -1
  164. package/lib/module/components/banner/__test__/__snapshots__/banner.test.tsx.snap +5 -5
  165. package/lib/module/components/buttons/ButtonExtendedOutline.js +2 -2
  166. package/lib/module/components/buttons/ButtonExtendedOutline.js.map +1 -1
  167. package/lib/module/components/buttons/ButtonLink.js +3 -2
  168. package/lib/module/components/buttons/ButtonLink.js.map +1 -1
  169. package/lib/module/components/buttons/ButtonOutline.js +8 -48
  170. package/lib/module/components/buttons/ButtonOutline.js.map +1 -1
  171. package/lib/module/components/buttons/ButtonSolid.js +5 -7
  172. package/lib/module/components/buttons/ButtonSolid.js.map +1 -1
  173. package/lib/module/components/buttons/IconButtonSolid.js +55 -30
  174. package/lib/module/components/buttons/IconButtonSolid.js.map +1 -1
  175. package/lib/module/components/buttons/__test__/__snapshots__/button.test.tsx.snap +23 -21
  176. package/lib/module/components/checkbox/AnimatedCheckbox.js +15 -3
  177. package/lib/module/components/checkbox/AnimatedCheckbox.js.map +1 -1
  178. package/lib/module/components/checkbox/AnimatedMessageCheckbox.js +13 -5
  179. package/lib/module/components/checkbox/AnimatedMessageCheckbox.js.map +1 -1
  180. package/lib/module/components/checkbox/CheckboxLabel.js +32 -9
  181. package/lib/module/components/checkbox/CheckboxLabel.js.map +1 -1
  182. package/lib/module/components/icons/Icon.js +27 -15
  183. package/lib/module/components/icons/Icon.js.map +1 -1
  184. package/lib/module/components/icons/IconContained.js +51 -0
  185. package/lib/module/components/icons/IconContained.js.map +1 -0
  186. package/lib/module/components/icons/index.js +1 -0
  187. package/lib/module/components/icons/index.js.map +1 -1
  188. package/lib/module/components/icons/svg/IconChange.js +23 -0
  189. package/lib/module/components/icons/svg/IconChange.js.map +1 -0
  190. package/lib/module/components/icons/svg/IconDialpad.js +21 -0
  191. package/lib/module/components/icons/svg/IconDialpad.js.map +1 -0
  192. package/lib/module/components/icons/svg/IconKey.js +23 -0
  193. package/lib/module/components/icons/svg/IconKey.js.map +1 -0
  194. package/lib/module/components/icons/svg/IconNotification.js +23 -0
  195. package/lib/module/components/icons/svg/IconNotification.js.map +1 -0
  196. package/lib/module/components/icons/svg/IconOption.js +23 -0
  197. package/lib/module/components/icons/svg/IconOption.js.map +1 -0
  198. package/lib/module/components/icons/svg/IconTransactions.js +1 -1
  199. package/lib/module/components/icons/svg/IconTransactions.js.map +1 -1
  200. package/lib/module/components/icons/svg/IconTransactionsBoxed.js +23 -0
  201. package/lib/module/components/icons/svg/IconTransactionsBoxed.js.map +1 -0
  202. package/lib/module/components/icons/svg/originals/IconChange.svg +3 -0
  203. package/lib/module/components/icons/svg/originals/IconDialpad.svg +5 -0
  204. package/lib/module/components/icons/svg/originals/IconKey.svg +7 -0
  205. package/lib/module/components/icons/svg/originals/IconNotification.svg +7 -0
  206. package/lib/module/components/icons/svg/originals/IconOption.svg +7 -0
  207. package/lib/module/components/icons/svg/originals/IconTransactions.svg +8 -0
  208. package/lib/module/components/icons/svg/originals/IconTransactionsBoxed.svg +8 -0
  209. package/lib/module/components/index.js +1 -0
  210. package/lib/module/components/index.js.map +1 -1
  211. package/lib/module/components/listitems/ListItemAction.js +40 -10
  212. package/lib/module/components/listitems/ListItemAction.js.map +1 -1
  213. package/lib/module/components/listitems/ListItemInfo.js +34 -10
  214. package/lib/module/components/listitems/ListItemInfo.js.map +1 -1
  215. package/lib/module/components/listitems/ListItemInfoCopy.js +43 -13
  216. package/lib/module/components/listitems/ListItemInfoCopy.js.map +1 -1
  217. package/lib/module/components/listitems/ListItemNav.js +34 -10
  218. package/lib/module/components/listitems/ListItemNav.js.map +1 -1
  219. package/lib/module/components/listitems/ListItemNavAlert.js +35 -10
  220. package/lib/module/components/listitems/ListItemNavAlert.js.map +1 -1
  221. package/lib/module/components/listitems/ListItemSwitch.js +2 -2
  222. package/lib/module/components/listitems/ListItemSwitch.js.map +1 -1
  223. package/lib/module/components/listitems/__test__/__snapshots__/listitem.test.tsx.snap +75 -108
  224. package/lib/module/components/listitems/__test__/listitem.test.js +1 -1
  225. package/lib/module/components/listitems/__test__/listitem.test.js.map +1 -1
  226. package/lib/module/components/listitems/index.js +1 -1
  227. package/lib/module/components/listitems/index.js.map +1 -1
  228. package/lib/module/components/{listitems/ListItemIDP.js → modules/ModuleIDP.js} +18 -11
  229. package/lib/module/components/modules/ModuleIDP.js.map +1 -0
  230. package/lib/module/components/modules/index.js +2 -0
  231. package/lib/module/components/modules/index.js.map +1 -0
  232. package/lib/module/components/pictograms/Pictogram.js +13 -1
  233. package/lib/module/components/pictograms/Pictogram.js.map +1 -1
  234. package/lib/module/components/pictograms/svg/PictogramBleedCie.js +39 -0
  235. package/lib/module/components/pictograms/svg/PictogramBleedCie.js.map +1 -0
  236. package/lib/module/components/pictograms/svg/PictogramBleedFeature.js +42 -0
  237. package/lib/module/components/pictograms/svg/PictogramBleedFeature.js.map +1 -0
  238. package/lib/module/components/pictograms/svg/PictogramBleedSecurity.js +36 -0
  239. package/lib/module/components/pictograms/svg/PictogramBleedSecurity.js.map +1 -0
  240. package/lib/module/components/pictograms/svg/PictogramCie.js +39 -0
  241. package/lib/module/components/pictograms/svg/PictogramCie.js.map +1 -0
  242. package/lib/module/components/pictograms/svg/PictogramFeature.js +42 -0
  243. package/lib/module/components/pictograms/svg/PictogramFeature.js.map +1 -0
  244. package/lib/module/components/pictograms/svg/PictogramSecurity.js +39 -0
  245. package/lib/module/components/pictograms/svg/PictogramSecurity.js.map +1 -0
  246. package/lib/module/components/pictograms/svg/originals/PictogramBleedCie.svg +30 -0
  247. package/lib/module/components/pictograms/svg/originals/PictogramBleedFeature.svg +34 -0
  248. package/lib/module/components/pictograms/svg/originals/PictogramBleedSecurity.svg +26 -0
  249. package/lib/module/components/pictograms/svg/originals/PictogramCie.svg +30 -0
  250. package/lib/module/components/pictograms/svg/originals/PictogramFeature.svg +34 -0
  251. package/lib/module/components/pictograms/svg/originals/PictogramSecurity.svg +30 -0
  252. package/lib/module/components/radio/AnimatedRadio.js +15 -3
  253. package/lib/module/components/radio/AnimatedRadio.js.map +1 -1
  254. package/lib/module/components/switch/NativeSwitch.js +20 -6
  255. package/lib/module/components/switch/NativeSwitch.js.map +1 -1
  256. package/lib/module/components/switch/SwitchLabel.js +32 -9
  257. package/lib/module/components/switch/SwitchLabel.js.map +1 -1
  258. package/lib/module/components/tag/Tag.js +12 -4
  259. package/lib/module/components/tag/Tag.js.map +1 -1
  260. package/lib/module/components/textInput/TextInputBase.js +12 -3
  261. package/lib/module/components/textInput/TextInputBase.js.map +1 -1
  262. package/lib/module/components/typography/Body.js +1 -4
  263. package/lib/module/components/typography/Body.js.map +1 -1
  264. package/lib/module/components/typography/BodyMonospace.js +21 -0
  265. package/lib/module/components/typography/BodyMonospace.js.map +1 -0
  266. package/lib/module/components/typography/ButtonText.js +31 -0
  267. package/lib/module/components/typography/ButtonText.js.map +1 -0
  268. package/lib/module/components/typography/Caption.js +29 -0
  269. package/lib/module/components/typography/Caption.js.map +1 -0
  270. package/lib/module/components/typography/Chip.js +27 -0
  271. package/lib/module/components/typography/Chip.js.map +1 -0
  272. package/lib/module/components/typography/H1.js +17 -12
  273. package/lib/module/components/typography/H1.js.map +1 -1
  274. package/lib/module/components/typography/H2.js +17 -12
  275. package/lib/module/components/typography/H2.js.map +1 -1
  276. package/lib/module/components/typography/H3.js +24 -18
  277. package/lib/module/components/typography/H3.js.map +1 -1
  278. package/lib/module/components/typography/H4.js +17 -13
  279. package/lib/module/components/typography/H4.js.map +1 -1
  280. package/lib/module/components/typography/H5.js +17 -31
  281. package/lib/module/components/typography/H5.js.map +1 -1
  282. package/lib/module/components/typography/H6.js +15 -11
  283. package/lib/module/components/typography/H6.js.map +1 -1
  284. package/lib/module/components/typography/Hero.js +29 -0
  285. package/lib/module/components/typography/Hero.js.map +1 -0
  286. package/lib/module/components/typography/Label.js +13 -10
  287. package/lib/module/components/typography/Label.js.map +1 -1
  288. package/lib/module/components/typography/LabelHeader.js +20 -17
  289. package/lib/module/components/typography/LabelHeader.js.map +1 -1
  290. package/lib/module/components/typography/{Link.js → LabelLink.js} +6 -11
  291. package/lib/module/components/typography/LabelLink.js.map +1 -0
  292. package/lib/module/components/typography/LabelSmall.js +18 -22
  293. package/lib/module/components/typography/LabelSmall.js.map +1 -1
  294. package/lib/module/components/typography/__test__/__snapshots__/typography.test.tsx.snap +195 -379
  295. package/lib/module/components/typography/__test__/typography.test.js +10 -42
  296. package/lib/module/components/typography/__test__/typography.test.js.map +1 -1
  297. package/lib/module/components/typography/common.js +15 -0
  298. package/lib/module/components/typography/common.js.map +1 -1
  299. package/lib/module/components/typography/index.js +6 -3
  300. package/lib/module/components/typography/index.js.map +1 -1
  301. package/lib/module/core/IOShapes.js +1 -1
  302. package/lib/module/core/IOShapes.js.map +1 -1
  303. package/lib/module/core/IOSpacing.js +4 -4
  304. package/lib/module/core/IOSpacing.js.map +1 -1
  305. package/lib/module/core/IOStyles.js +2 -8
  306. package/lib/module/core/IOStyles.js.map +1 -1
  307. package/lib/module/stories/Link.stories.js +2 -2
  308. package/lib/module/stories/Link.stories.js.map +1 -1
  309. package/lib/module/stories/Monospace.stories.js +2 -2
  310. package/lib/module/stories/Monospace.stories.js.map +1 -1
  311. package/lib/module/utils/fonts.js +8 -6
  312. package/lib/module/utils/fonts.js.map +1 -1
  313. package/lib/typescript/components/alert/Alert.d.ts.map +1 -1
  314. package/lib/typescript/components/badge/Badge.d.ts.map +1 -1
  315. package/lib/typescript/components/banner/Banner.d.ts.map +1 -1
  316. package/lib/typescript/components/buttons/ButtonLink.d.ts.map +1 -1
  317. package/lib/typescript/components/buttons/ButtonOutline.d.ts +2 -3
  318. package/lib/typescript/components/buttons/ButtonOutline.d.ts.map +1 -1
  319. package/lib/typescript/components/buttons/ButtonSolid.d.ts.map +1 -1
  320. package/lib/typescript/components/buttons/IconButtonSolid.d.ts.map +1 -1
  321. package/lib/typescript/components/checkbox/AnimatedCheckbox.d.ts.map +1 -1
  322. package/lib/typescript/components/checkbox/AnimatedMessageCheckbox.d.ts.map +1 -1
  323. package/lib/typescript/components/checkbox/CheckboxLabel.d.ts.map +1 -1
  324. package/lib/typescript/components/icons/Icon.d.ts +7 -1
  325. package/lib/typescript/components/icons/Icon.d.ts.map +1 -1
  326. package/lib/typescript/components/icons/IconContained.d.ts +10 -0
  327. package/lib/typescript/components/icons/IconContained.d.ts.map +1 -0
  328. package/lib/typescript/components/icons/index.d.ts +1 -0
  329. package/lib/typescript/components/icons/index.d.ts.map +1 -1
  330. package/lib/typescript/components/icons/svg/IconChange.d.ts +5 -0
  331. package/lib/typescript/components/icons/svg/IconChange.d.ts.map +1 -0
  332. package/lib/typescript/components/icons/svg/IconDialpad.d.ts +5 -0
  333. package/lib/typescript/components/icons/svg/IconDialpad.d.ts.map +1 -0
  334. package/lib/typescript/components/icons/svg/IconKey.d.ts +5 -0
  335. package/lib/typescript/components/icons/svg/IconKey.d.ts.map +1 -0
  336. package/lib/typescript/components/icons/svg/IconNotification.d.ts +5 -0
  337. package/lib/typescript/components/icons/svg/IconNotification.d.ts.map +1 -0
  338. package/lib/typescript/components/icons/svg/IconOption.d.ts +5 -0
  339. package/lib/typescript/components/icons/svg/IconOption.d.ts.map +1 -0
  340. package/lib/typescript/components/icons/svg/IconTransactionsBoxed.d.ts +5 -0
  341. package/lib/typescript/components/icons/svg/IconTransactionsBoxed.d.ts.map +1 -0
  342. package/lib/typescript/components/index.d.ts +1 -0
  343. package/lib/typescript/components/index.d.ts.map +1 -1
  344. package/lib/typescript/components/listitems/ListItemAction.d.ts.map +1 -1
  345. package/lib/typescript/components/listitems/ListItemInfo.d.ts.map +1 -1
  346. package/lib/typescript/components/listitems/ListItemInfoCopy.d.ts.map +1 -1
  347. package/lib/typescript/components/listitems/ListItemNav.d.ts.map +1 -1
  348. package/lib/typescript/components/listitems/ListItemNavAlert.d.ts.map +1 -1
  349. package/lib/typescript/components/listitems/ListItemSwitch.d.ts +1 -1
  350. package/lib/typescript/components/listitems/ListItemSwitch.d.ts.map +1 -1
  351. package/lib/typescript/components/listitems/index.d.ts +1 -1
  352. package/lib/typescript/components/listitems/index.d.ts.map +1 -1
  353. package/lib/typescript/components/{listitems/ListItemIDP.d.ts → modules/ModuleIDP.d.ts} +4 -4
  354. package/lib/typescript/components/modules/ModuleIDP.d.ts.map +1 -0
  355. package/lib/typescript/components/modules/index.d.ts +2 -0
  356. package/lib/typescript/components/modules/index.d.ts.map +1 -0
  357. package/lib/typescript/components/pictograms/Pictogram.d.ts +4 -1
  358. package/lib/typescript/components/pictograms/Pictogram.d.ts.map +1 -1
  359. package/lib/typescript/components/pictograms/svg/PictogramBleedCie.d.ts +5 -0
  360. package/lib/typescript/components/pictograms/svg/PictogramBleedCie.d.ts.map +1 -0
  361. package/lib/typescript/components/pictograms/svg/PictogramBleedFeature.d.ts +5 -0
  362. package/lib/typescript/components/pictograms/svg/PictogramBleedFeature.d.ts.map +1 -0
  363. package/lib/typescript/components/pictograms/svg/PictogramBleedSecurity.d.ts +5 -0
  364. package/lib/typescript/components/pictograms/svg/PictogramBleedSecurity.d.ts.map +1 -0
  365. package/lib/typescript/components/pictograms/svg/PictogramCie.d.ts +5 -0
  366. package/lib/typescript/components/pictograms/svg/PictogramCie.d.ts.map +1 -0
  367. package/lib/typescript/components/pictograms/svg/PictogramFeature.d.ts +5 -0
  368. package/lib/typescript/components/pictograms/svg/PictogramFeature.d.ts.map +1 -0
  369. package/lib/typescript/components/pictograms/svg/PictogramSecurity.d.ts +5 -0
  370. package/lib/typescript/components/pictograms/svg/PictogramSecurity.d.ts.map +1 -0
  371. package/lib/typescript/components/radio/AnimatedRadio.d.ts.map +1 -1
  372. package/lib/typescript/components/switch/NativeSwitch.d.ts.map +1 -1
  373. package/lib/typescript/components/switch/SwitchLabel.d.ts.map +1 -1
  374. package/lib/typescript/components/tag/Tag.d.ts.map +1 -1
  375. package/lib/typescript/components/textInput/TextInputBase.d.ts.map +1 -1
  376. package/lib/typescript/components/typography/Body.d.ts +4 -7
  377. package/lib/typescript/components/typography/Body.d.ts.map +1 -1
  378. package/lib/typescript/components/typography/BodyMonospace.d.ts +13 -0
  379. package/lib/typescript/components/typography/BodyMonospace.d.ts.map +1 -0
  380. package/lib/typescript/components/typography/ButtonText.d.ts +14 -0
  381. package/lib/typescript/components/typography/ButtonText.d.ts.map +1 -0
  382. package/lib/typescript/components/typography/Caption.d.ts +14 -0
  383. package/lib/typescript/components/typography/Caption.d.ts.map +1 -0
  384. package/lib/typescript/components/typography/Chip.d.ts +13 -0
  385. package/lib/typescript/components/typography/Chip.d.ts.map +1 -0
  386. package/lib/typescript/components/typography/H1.d.ts +9 -15
  387. package/lib/typescript/components/typography/H1.d.ts.map +1 -1
  388. package/lib/typescript/components/typography/H2.d.ts +9 -15
  389. package/lib/typescript/components/typography/H2.d.ts.map +1 -1
  390. package/lib/typescript/components/typography/H3.d.ts +7 -10
  391. package/lib/typescript/components/typography/H3.d.ts.map +1 -1
  392. package/lib/typescript/components/typography/H4.d.ts +8 -11
  393. package/lib/typescript/components/typography/H4.d.ts.map +1 -1
  394. package/lib/typescript/components/typography/H5.d.ts +9 -24
  395. package/lib/typescript/components/typography/H5.d.ts.map +1 -1
  396. package/lib/typescript/components/typography/H6.d.ts +7 -12
  397. package/lib/typescript/components/typography/H6.d.ts.map +1 -1
  398. package/lib/typescript/components/typography/Hero.d.ts +15 -0
  399. package/lib/typescript/components/typography/Hero.d.ts.map +1 -0
  400. package/lib/typescript/components/typography/Label.d.ts +8 -9
  401. package/lib/typescript/components/typography/Label.d.ts.map +1 -1
  402. package/lib/typescript/components/typography/LabelHeader.d.ts +4 -7
  403. package/lib/typescript/components/typography/LabelHeader.d.ts.map +1 -1
  404. package/lib/typescript/components/typography/LabelLink.d.ts +18 -0
  405. package/lib/typescript/components/typography/LabelLink.d.ts.map +1 -0
  406. package/lib/typescript/components/typography/LabelSmall.d.ts +4 -7
  407. package/lib/typescript/components/typography/LabelSmall.d.ts.map +1 -1
  408. package/lib/typescript/components/typography/common.d.ts +6 -0
  409. package/lib/typescript/components/typography/common.d.ts.map +1 -1
  410. package/lib/typescript/components/typography/index.d.ts +6 -3
  411. package/lib/typescript/components/typography/index.d.ts.map +1 -1
  412. package/lib/typescript/core/IOShapes.d.ts +1 -1
  413. package/lib/typescript/core/IOShapes.d.ts.map +1 -1
  414. package/lib/typescript/core/IOSpacing.d.ts +5 -5
  415. package/lib/typescript/core/IOSpacing.d.ts.map +1 -1
  416. package/lib/typescript/core/IOStyles.d.ts +1 -6
  417. package/lib/typescript/core/IOStyles.d.ts.map +1 -1
  418. package/lib/typescript/stories/H1.stories.d.ts +2 -2
  419. package/lib/typescript/stories/H2.stories.d.ts +2 -2
  420. package/lib/typescript/stories/H3.stories.d.ts +2 -2
  421. package/lib/typescript/stories/H4.stories.d.ts +2 -2
  422. package/lib/typescript/stories/H5.stories.d.ts +2 -10
  423. package/lib/typescript/stories/H5.stories.d.ts.map +1 -1
  424. package/lib/typescript/stories/H6.stories.d.ts +2 -2
  425. package/lib/typescript/stories/Label.stories.d.ts +4 -2
  426. package/lib/typescript/stories/Label.stories.d.ts.map +1 -1
  427. package/lib/typescript/stories/LabelSmall.stories.d.ts +2 -2
  428. package/lib/typescript/stories/Link.stories.d.ts +3 -3
  429. package/lib/typescript/stories/Link.stories.d.ts.map +1 -1
  430. package/lib/typescript/stories/Monospace.stories.d.ts +2 -2
  431. package/lib/typescript/stories/Monospace.stories.d.ts.map +1 -1
  432. package/lib/typescript/utils/fonts.d.ts +3 -3
  433. package/lib/typescript/utils/fonts.d.ts.map +1 -1
  434. package/package.json +1 -1
  435. package/src/components/alert/Alert.tsx +7 -1
  436. package/src/components/badge/Badge.tsx +30 -19
  437. package/src/components/badge/__test__/__snapshots__/badge.test.tsx.snap +5 -3
  438. package/src/components/banner/Banner.tsx +1 -3
  439. package/src/components/banner/__test__/__snapshots__/banner.test.tsx.snap +5 -5
  440. package/src/components/buttons/ButtonExtendedOutline.tsx +2 -2
  441. package/src/components/buttons/ButtonLink.tsx +3 -2
  442. package/src/components/buttons/ButtonOutline.tsx +6 -53
  443. package/src/components/buttons/ButtonSolid.tsx +8 -17
  444. package/src/components/buttons/IconButtonSolid.tsx +43 -13
  445. package/src/components/buttons/__test__/__snapshots__/button.test.tsx.snap +23 -21
  446. package/src/components/checkbox/AnimatedCheckbox.tsx +26 -5
  447. package/src/components/checkbox/AnimatedMessageCheckbox.tsx +20 -10
  448. package/src/components/checkbox/CheckboxLabel.tsx +33 -6
  449. package/src/components/icons/Icon.tsx +27 -15
  450. package/src/components/icons/IconContained.tsx +76 -0
  451. package/src/components/icons/index.tsx +1 -0
  452. package/src/components/icons/svg/IconChange.tsx +16 -0
  453. package/src/components/icons/svg/IconDialpad.tsx +14 -0
  454. package/src/components/icons/svg/IconKey.tsx +16 -0
  455. package/src/components/icons/svg/IconNotification.tsx +16 -0
  456. package/src/components/icons/svg/IconOption.tsx +16 -0
  457. package/src/components/icons/svg/IconTransactions.tsx +1 -1
  458. package/src/components/icons/svg/IconTransactionsBoxed.tsx +16 -0
  459. package/src/components/icons/svg/originals/IconChange.svg +3 -0
  460. package/src/components/icons/svg/originals/IconDialpad.svg +5 -0
  461. package/src/components/icons/svg/originals/IconKey.svg +7 -0
  462. package/src/components/icons/svg/originals/IconNotification.svg +7 -0
  463. package/src/components/icons/svg/originals/IconOption.svg +7 -0
  464. package/src/components/icons/svg/originals/IconTransactions.svg +8 -0
  465. package/src/components/icons/svg/originals/IconTransactionsBoxed.svg +8 -0
  466. package/src/components/index.tsx +1 -0
  467. package/src/components/listitems/ListItemAction.tsx +53 -11
  468. package/src/components/listitems/ListItemInfo.tsx +55 -11
  469. package/src/components/listitems/ListItemInfoCopy.tsx +67 -18
  470. package/src/components/listitems/ListItemNav.tsx +60 -12
  471. package/src/components/listitems/ListItemNavAlert.tsx +50 -9
  472. package/src/components/listitems/ListItemSwitch.tsx +4 -4
  473. package/src/components/listitems/__test__/__snapshots__/listitem.test.tsx.snap +75 -108
  474. package/src/components/listitems/__test__/listitem.test.tsx +1 -1
  475. package/src/components/listitems/index.tsx +1 -1
  476. package/src/components/{listitems/ListItemIDP.tsx → modules/ModuleIDP.tsx} +29 -16
  477. package/src/components/modules/index.tsx +1 -0
  478. package/src/components/pictograms/Pictogram.tsx +14 -2
  479. package/src/components/pictograms/svg/PictogramBleedCie.tsx +38 -0
  480. package/src/components/pictograms/svg/PictogramBleedFeature.tsx +46 -0
  481. package/src/components/pictograms/svg/PictogramBleedSecurity.tsx +38 -0
  482. package/src/components/pictograms/svg/PictogramCie.tsx +38 -0
  483. package/src/components/pictograms/svg/PictogramFeature.tsx +42 -0
  484. package/src/components/pictograms/svg/PictogramSecurity.tsx +38 -0
  485. package/src/components/pictograms/svg/originals/PictogramBleedCie.svg +30 -0
  486. package/src/components/pictograms/svg/originals/PictogramBleedFeature.svg +34 -0
  487. package/src/components/pictograms/svg/originals/PictogramBleedSecurity.svg +26 -0
  488. package/src/components/pictograms/svg/originals/PictogramCie.svg +30 -0
  489. package/src/components/pictograms/svg/originals/PictogramFeature.svg +34 -0
  490. package/src/components/pictograms/svg/originals/PictogramSecurity.svg +30 -0
  491. package/src/components/radio/AnimatedRadio.tsx +26 -5
  492. package/src/components/switch/NativeSwitch.tsx +35 -13
  493. package/src/components/switch/SwitchLabel.tsx +33 -6
  494. package/src/components/tag/Tag.tsx +39 -24
  495. package/src/components/textInput/TextInputBase.tsx +20 -3
  496. package/src/components/typography/Body.tsx +3 -7
  497. package/src/components/typography/BodyMonospace.tsx +29 -0
  498. package/src/components/typography/ButtonText.tsx +45 -0
  499. package/src/components/typography/Caption.tsx +37 -0
  500. package/src/components/typography/Chip.tsx +33 -0
  501. package/src/components/typography/H1.tsx +20 -29
  502. package/src/components/typography/H2.tsx +20 -29
  503. package/src/components/typography/H3.tsx +21 -20
  504. package/src/components/typography/H4.tsx +19 -20
  505. package/src/components/typography/H5.tsx +22 -54
  506. package/src/components/typography/H6.tsx +17 -15
  507. package/src/components/typography/Hero.tsx +34 -0
  508. package/src/components/typography/Label.tsx +23 -21
  509. package/src/components/typography/LabelHeader.tsx +12 -12
  510. package/src/components/typography/{Link.tsx → LabelLink.tsx} +15 -12
  511. package/src/components/typography/LabelSmall.tsx +13 -14
  512. package/src/components/typography/__test__/__snapshots__/typography.test.tsx.snap +195 -379
  513. package/src/components/typography/__test__/typography.test.tsx +12 -50
  514. package/src/components/typography/common.tsx +16 -0
  515. package/src/components/typography/index.tsx +6 -3
  516. package/src/core/IOShapes.ts +1 -1
  517. package/src/core/IOSpacing.ts +6 -6
  518. package/src/core/IOStyles.ts +3 -8
  519. package/src/stories/Link.stories.ts +5 -5
  520. package/src/stories/Monospace.stories.ts +5 -5
  521. package/src/utils/fonts.ts +8 -6
  522. package/lib/commonjs/components/listitems/ListItemIDP.js.map +0 -1
  523. package/lib/commonjs/components/typography/CTA.js +0 -34
  524. package/lib/commonjs/components/typography/CTA.js.map +0 -1
  525. package/lib/commonjs/components/typography/Link.js.map +0 -1
  526. package/lib/commonjs/components/typography/Monospace.js +0 -30
  527. package/lib/commonjs/components/typography/Monospace.js.map +0 -1
  528. package/lib/module/components/listitems/ListItemIDP.js.map +0 -1
  529. package/lib/module/components/typography/CTA.js +0 -27
  530. package/lib/module/components/typography/CTA.js.map +0 -1
  531. package/lib/module/components/typography/Link.js.map +0 -1
  532. package/lib/module/components/typography/Monospace.js +0 -23
  533. package/lib/module/components/typography/Monospace.js.map +0 -1
  534. package/lib/typescript/components/listitems/ListItemIDP.d.ts.map +0 -1
  535. package/lib/typescript/components/typography/CTA.d.ts +0 -16
  536. package/lib/typescript/components/typography/CTA.d.ts.map +0 -1
  537. package/lib/typescript/components/typography/Link.d.ts +0 -22
  538. package/lib/typescript/components/typography/Link.d.ts.map +0 -1
  539. package/lib/typescript/components/typography/Monospace.d.ts +0 -16
  540. package/lib/typescript/components/typography/Monospace.d.ts.map +0 -1
  541. package/src/components/typography/CTA.tsx +0 -35
  542. package/src/components/typography/Monospace.tsx +0 -34
@@ -78,14 +78,14 @@ exports[`Test List Item Components ListItemAction Snapshot 1`] = `
78
78
  style={
79
79
  [
80
80
  {
81
- "fontFamily": "Readex Pro",
82
- "fontSize": 16,
81
+ "fontFamily": "Titillium Web",
82
+ "fontSize": 18,
83
83
  "fontStyle": "normal",
84
- "fontWeight": "400",
85
- "lineHeight": 20,
84
+ "fontWeight": "600",
85
+ "lineHeight": 24,
86
86
  },
87
87
  {
88
- "color": "#0B3EE3",
88
+ "color": "#0073E6",
89
89
  },
90
90
  ]
91
91
  }
@@ -159,17 +159,21 @@ exports[`Test List Item Components ListItemIDP Snapshot 1`] = `
159
159
  >
160
160
  <Text
161
161
  style={
162
- {
163
- "alignSelf": "center",
164
- "color": "#555C70",
165
- "flexShrink": 1,
166
- "fontFamily": "Readex Pro",
167
- "fontSize": 12,
168
- "fontStyle": "normal",
169
- "fontWeight": "400",
170
- "lineHeight": 16,
171
- "textTransform": "uppercase",
172
- }
162
+ [
163
+ {
164
+ "alignSelf": "center",
165
+ "color": "#555C70",
166
+ "flexShrink": 1,
167
+ "fontSize": 12,
168
+ "lineHeight": 16,
169
+ "textTransform": "uppercase",
170
+ },
171
+ {
172
+ "fontFamily": "Titillium Web",
173
+ "fontStyle": "normal",
174
+ "fontWeight": "600",
175
+ },
176
+ ]
173
177
  }
174
178
  />
175
179
  <Image
@@ -220,22 +224,24 @@ exports[`Test List Item Components ListItemInfo Snapshot 1`] = `
220
224
  }
221
225
  >
222
226
  <Text
223
- color="grey-700"
224
- defaultColor="blue"
225
- defaultWeight="Bold"
227
+ color="bluegrey"
228
+ defaultColor="bluegrey"
229
+ defaultWeight="Regular"
226
230
  font="TitilliumWeb"
227
231
  fontStyle={
228
232
  {
229
- "fontSize": 14,
233
+ "fontSize": 16,
234
+ "lineHeight": 24,
230
235
  }
231
236
  }
232
237
  style={
233
238
  [
234
239
  {
235
- "fontSize": 14,
240
+ "fontSize": 16,
241
+ "lineHeight": 24,
236
242
  },
237
243
  {
238
- "color": "#555C70",
244
+ "color": "#475A6D",
239
245
  "fontFamily": "Titillium Web",
240
246
  "fontStyle": "normal",
241
247
  "fontWeight": "400",
@@ -247,32 +253,21 @@ exports[`Test List Item Components ListItemInfo Snapshot 1`] = `
247
253
  label
248
254
  </Text>
249
255
  <Text
250
- color="black"
251
- defaultColor="black"
252
- defaultWeight="Regular"
253
- font="ReadexPro"
254
- fontStyle={
255
- {
256
- "fontSize": 16,
257
- "lineHeight": 20,
258
- }
259
- }
260
256
  numberOfLines={2}
261
257
  style={
262
258
  [
263
259
  {
264
- "fontSize": 16,
265
- "lineHeight": 20,
260
+ "fontFamily": "Titillium Web",
261
+ "fontSize": 18,
262
+ "fontStyle": "normal",
263
+ "fontWeight": "600",
264
+ "lineHeight": 24,
266
265
  },
267
266
  {
268
- "color": "#0E0F13",
269
- "fontFamily": "Readex Pro",
270
- "fontStyle": "normal",
271
- "fontWeight": "400",
267
+ "color": "#17324D",
272
268
  },
273
269
  ]
274
270
  }
275
- weight="Regular"
276
271
  >
277
272
  testValue
278
273
  </Text>
@@ -355,22 +350,24 @@ exports[`Test List Item Components ListItemInfoCopy Snapshot 1`] = `
355
350
  }
356
351
  >
357
352
  <Text
358
- color="grey-700"
359
- defaultColor="blue"
360
- defaultWeight="Bold"
353
+ color="bluegrey"
354
+ defaultColor="bluegrey"
355
+ defaultWeight="Regular"
361
356
  font="TitilliumWeb"
362
357
  fontStyle={
363
358
  {
364
- "fontSize": 14,
359
+ "fontSize": 16,
360
+ "lineHeight": 24,
365
361
  }
366
362
  }
367
363
  style={
368
364
  [
369
365
  {
370
- "fontSize": 14,
366
+ "fontSize": 16,
367
+ "lineHeight": 24,
371
368
  },
372
369
  {
373
- "color": "#555C70",
370
+ "color": "#475A6D",
374
371
  "fontFamily": "Titillium Web",
375
372
  "fontStyle": "normal",
376
373
  "fontWeight": "400",
@@ -381,33 +378,29 @@ exports[`Test List Item Components ListItemInfoCopy Snapshot 1`] = `
381
378
  >
382
379
  label
383
380
  </Text>
384
- <Text
385
- color="blueIO-500"
386
- defaultColor="black"
387
- defaultWeight="Regular"
388
- font="ReadexPro"
389
- fontStyle={
381
+ <View
382
+ style={
390
383
  {
391
- "fontSize": 16,
392
- "lineHeight": 20,
384
+ "height": 4,
393
385
  }
394
386
  }
387
+ />
388
+ <Text
395
389
  numberOfLines={2}
396
390
  style={
397
391
  [
398
392
  {
399
- "fontSize": 16,
400
- "lineHeight": 20,
393
+ "fontFamily": "Titillium Web",
394
+ "fontSize": 18,
395
+ "fontStyle": "normal",
396
+ "fontWeight": "600",
397
+ "lineHeight": 24,
401
398
  },
402
399
  {
403
- "color": "#0B3EE3",
404
- "fontFamily": "Readex Pro",
405
- "fontStyle": "normal",
406
- "fontWeight": "400",
400
+ "color": "#0073E6",
407
401
  },
408
402
  ]
409
403
  }
410
- weight="Regular"
411
404
  >
412
405
  testValue
413
406
  </Text>
@@ -426,7 +419,7 @@ exports[`Test List Item Components ListItemInfoCopy Snapshot 1`] = `
426
419
  align="xMidYMid"
427
420
  bbHeight={24}
428
421
  bbWidth={24}
429
- color={4278927075}
422
+ color={4278219750}
430
423
  focusable={false}
431
424
  height={24}
432
425
  importantForAccessibility="no-hide-descendants"
@@ -440,7 +433,7 @@ exports[`Test List Item Components ListItemInfoCopy Snapshot 1`] = `
440
433
  "borderWidth": 0,
441
434
  },
442
435
  {
443
- "color": "#0B3EE3",
436
+ "color": "#0073E6",
444
437
  },
445
438
  {
446
439
  "flex": 0,
@@ -449,7 +442,7 @@ exports[`Test List Item Components ListItemInfoCopy Snapshot 1`] = `
449
442
  },
450
443
  ]
451
444
  }
452
- tintColor={4278927075}
445
+ tintColor={4278219750}
453
446
  vbHeight={24}
454
447
  vbWidth={24}
455
448
  width={24}
@@ -553,31 +546,16 @@ exports[`Test List Item Components ListItemNav Snapshot 1`] = `
553
546
  }
554
547
  >
555
548
  <Text
556
- color="black"
557
- defaultColor="black"
558
- defaultWeight="Regular"
559
- font="ReadexPro"
560
- fontStyle={
549
+ style={
561
550
  {
562
- "fontSize": 16,
563
- "lineHeight": 20,
551
+ "color": "#17324D",
552
+ "fontFamily": "Titillium Web",
553
+ "fontSize": 18,
554
+ "fontStyle": "normal",
555
+ "fontWeight": "600",
556
+ "lineHeight": 24,
564
557
  }
565
558
  }
566
- style={
567
- [
568
- {
569
- "fontSize": 16,
570
- "lineHeight": 20,
571
- },
572
- {
573
- "color": "#0E0F13",
574
- "fontFamily": "Readex Pro",
575
- "fontStyle": "normal",
576
- "fontWeight": "400",
577
- },
578
- ]
579
- }
580
- weight="Regular"
581
559
  >
582
560
  testValue
583
561
  </Text>
@@ -596,7 +574,7 @@ exports[`Test List Item Components ListItemNav Snapshot 1`] = `
596
574
  align="xMidYMid"
597
575
  bbHeight={24}
598
576
  bbWidth={24}
599
- color={4278927075}
577
+ color={4278219750}
600
578
  focusable={false}
601
579
  height={24}
602
580
  importantForAccessibility="no-hide-descendants"
@@ -610,7 +588,7 @@ exports[`Test List Item Components ListItemNav Snapshot 1`] = `
610
588
  "borderWidth": 0,
611
589
  },
612
590
  {
613
- "color": "#0B3EE3",
591
+ "color": "#0073E6",
614
592
  },
615
593
  {
616
594
  "flex": 0,
@@ -619,7 +597,7 @@ exports[`Test List Item Components ListItemNav Snapshot 1`] = `
619
597
  },
620
598
  ]
621
599
  }
622
- tintColor={4278927075}
600
+ tintColor={4278219750}
623
601
  vbHeight={24}
624
602
  vbWidth={24}
625
603
  width={24}
@@ -785,31 +763,20 @@ exports[`Test List Item Components ListItemNavAlert Snapshot 1`] = `
785
763
  }
786
764
  >
787
765
  <Text
788
- color="black"
789
- defaultColor="black"
790
- defaultWeight="Regular"
791
- font="ReadexPro"
792
- fontStyle={
793
- {
794
- "fontSize": 16,
795
- "lineHeight": 20,
796
- }
797
- }
798
766
  style={
799
767
  [
800
768
  {
801
- "fontSize": 16,
802
- "lineHeight": 20,
769
+ "fontFamily": "Titillium Web",
770
+ "fontSize": 18,
771
+ "fontStyle": "normal",
772
+ "fontWeight": "600",
773
+ "lineHeight": 24,
803
774
  },
804
775
  {
805
- "color": "#0E0F13",
806
- "fontFamily": "Readex Pro",
807
- "fontStyle": "normal",
808
- "fontWeight": "400",
776
+ "color": "#17324D",
809
777
  },
810
778
  ]
811
779
  }
812
- weight="Regular"
813
780
  >
814
781
  testValue
815
782
  </Text>
@@ -828,7 +795,7 @@ exports[`Test List Item Components ListItemNavAlert Snapshot 1`] = `
828
795
  align="xMidYMid"
829
796
  bbHeight={24}
830
797
  bbWidth={24}
831
- color={4278927075}
798
+ color={4278219750}
832
799
  focusable={false}
833
800
  height={24}
834
801
  importantForAccessibility="no-hide-descendants"
@@ -842,7 +809,7 @@ exports[`Test List Item Components ListItemNavAlert Snapshot 1`] = `
842
809
  "borderWidth": 0,
843
810
  },
844
811
  {
845
- "color": "#0B3EE3",
812
+ "color": "#0073E6",
846
813
  },
847
814
  {
848
815
  "flex": 0,
@@ -851,7 +818,7 @@ exports[`Test List Item Components ListItemNavAlert Snapshot 1`] = `
851
818
  },
852
819
  ]
853
820
  }
854
- tintColor={4278927075}
821
+ tintColor={4278219750}
855
822
  vbHeight={24}
856
823
  vbWidth={24}
857
824
  width={24}
@@ -6,7 +6,7 @@ import ListItemInfoCopy from "../ListItemInfoCopy";
6
6
  import ListItemNav from "../ListItemNav";
7
7
  import ListItemNavAlert from "../ListItemNavAlert";
8
8
  import ListItemAction from "../ListItemAction";
9
- import ListItemIDP from "../ListItemIDP";
9
+ import ListItemIDP from "../../modules/ModuleIDP";
10
10
  import { ListItemTransaction } from "../ListItemTransaction";
11
11
  import { PressableListItemBase } from "../PressableListItemsBase";
12
12
 
@@ -1,5 +1,5 @@
1
1
  export * from "./ListItemAction";
2
- export * from "./ListItemIDP";
2
+ export * from "../modules/ModuleIDP";
3
3
  export * from "./ListItemInfo";
4
4
  export * from "./ListItemInfoCopy";
5
5
  export * from "./ListItemNav";
@@ -19,19 +19,20 @@ import Animated, {
19
19
  } from "react-native-reanimated";
20
20
  import {
21
21
  IOColors,
22
- IOListItemIDPHSpacing,
23
- IOListItemIDPRadius,
24
- IOListItemIDPSavedVSpacing,
25
- IOListItemIDPVSpacing,
22
+ IOModuleIDPHSpacing,
23
+ IOModuleIDPRadius,
24
+ IOModuleIDPSavedVSpacing,
25
+ IOModuleIDPVSpacing,
26
26
  IOListItemLogoMargin,
27
27
  IOScaleValues,
28
- IOSpringValues
28
+ IOSpringValues,
29
+ useIOExperimentalDesign
29
30
  } from "../../core";
30
31
  import { toAndroidCacheTimestamp } from "../../utils/dates";
31
32
  import { makeFontStyleObject } from "../../utils/fonts";
32
33
  import { WithTestID } from "../../utils/types";
33
34
 
34
- type ListItemIDP = WithTestID<{
35
+ type ModuleIDP = WithTestID<{
35
36
  name: string;
36
37
  localLogo: ImageSourcePropType;
37
38
  logo: ImageSourcePropType;
@@ -44,13 +45,13 @@ const styles = StyleSheet.create({
44
45
  button: {
45
46
  borderWidth: 1,
46
47
  borderColor: IOColors["grey-100"],
47
- borderRadius: IOListItemIDPRadius,
48
+ borderRadius: IOModuleIDPRadius,
48
49
  backgroundColor: IOColors.white,
49
50
  flexDirection: "row",
50
51
  justifyContent: "space-between",
51
52
  alignItems: "center",
52
- paddingVertical: IOListItemIDPVSpacing,
53
- paddingHorizontal: IOListItemIDPHSpacing
53
+ paddingVertical: IOModuleIDPVSpacing,
54
+ paddingHorizontal: IOModuleIDPHSpacing
54
55
  },
55
56
  idpName: {
56
57
  color: IOColors["grey-700"],
@@ -58,9 +59,14 @@ const styles = StyleSheet.create({
58
59
  lineHeight: 16,
59
60
  alignSelf: "center",
60
61
  textTransform: "uppercase",
61
- flexShrink: 1,
62
+ flexShrink: 1
63
+ },
64
+ idpNameFont: {
62
65
  ...makeFontStyleObject("Regular", false, "ReadexPro")
63
66
  },
67
+ idpLegacyNameFont: {
68
+ ...makeFontStyleObject("SemiBold", false, "TitilliumWeb")
69
+ },
64
70
  idpLogo: {
65
71
  marginStart: IOListItemLogoMargin,
66
72
  width: 120,
@@ -75,16 +81,16 @@ const styles = StyleSheet.create({
75
81
  const androidIdpLogoForcedRefreshed = () =>
76
82
  Platform.OS === "android" ? `?ts=${toAndroidCacheTimestamp()}` : "";
77
83
 
78
- export const ListItemIDP = ({
84
+ export const ModuleIDP = ({
79
85
  name,
80
86
  localLogo,
81
87
  logo,
82
88
  saved,
83
89
  onPress,
84
90
  testID
85
- }: ListItemIDP) => {
91
+ }: ModuleIDP) => {
86
92
  const isPressed = useSharedValue(0);
87
-
93
+ const { isExperimental } = useIOExperimentalDesign();
88
94
  // Scaling transformation applied when the button is pressed
89
95
  const animationScaleValue = IOScaleValues?.magnifiedButton?.pressedState;
90
96
 
@@ -135,15 +141,22 @@ export const ListItemIDP = ({
135
141
  <Animated.View
136
142
  style={[
137
143
  styles.button,
138
- saved && { paddingVertical: IOListItemIDPSavedVSpacing },
144
+ saved && { paddingVertical: IOModuleIDPSavedVSpacing },
139
145
  animatedStyle
140
146
  ]}
141
147
  >
142
- <Text style={styles.idpName}>{name}</Text>
148
+ <Text
149
+ style={[
150
+ styles.idpName,
151
+ isExperimental ? styles.idpNameFont : styles.idpLegacyNameFont
152
+ ]}
153
+ >
154
+ {name}
155
+ </Text>
143
156
  <Image source={urlLogoIDP} style={styles.idpLogo} />
144
157
  </Animated.View>
145
158
  </Pressable>
146
159
  );
147
160
  };
148
161
 
149
- export default ListItemIDP;
162
+ export default ModuleIDP;
@@ -0,0 +1 @@
1
+ export * from "./ModuleIDP";
@@ -50,16 +50,22 @@ import PictogramIdentity from "./svg/PictogramIdentity";
50
50
  import PictogramAccessDenied from "./svg/PictogramAccessDenied";
51
51
  import PictogramTime from "./svg/PictogramTime";
52
52
  import PictogramStopSecurity from "./svg/PictogramStopSecurity";
53
+ import PictogramSecurity from "./svg/PictogramSecurity";
53
54
  import PictogramPasscode from "./svg/PictogramPasscode";
54
55
  import PictogramIdentityCheck from "./svg/PictogramIdentityCheck";
55
56
  import PictogramTrash from "./svg/PictogramTrash";
56
57
  import PictogramCharity from "./svg/PictogramCharity";
57
58
  import PictogramEmpty from "./svg/PictogramEmpty";
59
+ import PictogramCie from "./svg/PictogramCie";
60
+ import PictogramFeature from "./svg/PictogramFeature";
58
61
  /* Bleed Pictograms */
59
62
  import PictogramBleedCharity from "./svg/PictogramBleedCharity";
60
63
  import PictogramBleedHelp from "./svg/PictogramBleedHelp";
61
64
  import PictogramBleedITWallet from "./svg/PictogramBleedITWallet";
62
65
  import PictogramBleedFeedback from "./svg/PictogramBleedFeedback";
66
+ import PictogramBleedSecurity from "./svg/PictogramBleedSecurity";
67
+ import PictogramBleedFeature from "./svg/PictogramBleedFeature";
68
+ import PictogramBleedCie from "./svg/PictogramBleedCie";
63
69
 
64
70
  export const IOPictograms = {
65
71
  // Start legacy pictograms //
@@ -98,6 +104,7 @@ export const IOPictograms = {
98
104
  manual: PictogramManual,
99
105
  trash: PictogramTrash,
100
106
  empty: PictogramEmpty,
107
+ feature: PictogramFeature,
101
108
  charity: PictogramCharity,
102
109
  attention: PictogramAttention,
103
110
  emptyArchive: PictogramEmptyArchive,
@@ -115,6 +122,8 @@ export const IOPictograms = {
115
122
  identityCheck: PictogramIdentityCheck,
116
123
  accessDenied: PictogramAccessDenied,
117
124
  stopSecurity: PictogramStopSecurity,
125
+ security: PictogramSecurity,
126
+ cie: PictogramCie,
118
127
  time: PictogramTime,
119
128
  passcode: PictogramPasscode
120
129
  };
@@ -152,7 +161,7 @@ export const Pictogram = ({
152
161
  */
153
162
 
154
163
  export type IOPictogramsBleed = Extract<
155
- "charity" | "help" | "feedback" | "itWallet",
164
+ "charity" | "help" | "feedback" | "itWallet" | "security" | "feature" | "cie",
156
165
  IOPictograms
157
166
  >;
158
167
 
@@ -162,7 +171,10 @@ export const IOPictogramsBleed: {
162
171
  charity: PictogramBleedCharity,
163
172
  help: PictogramBleedHelp,
164
173
  feedback: PictogramBleedFeedback,
165
- itWallet: PictogramBleedITWallet
174
+ itWallet: PictogramBleedITWallet,
175
+ security: PictogramBleedSecurity,
176
+ feature: PictogramBleedFeature,
177
+ cie: PictogramBleedCie
166
178
  };
167
179
 
168
180
  export const PictogramBleed = ({
@@ -0,0 +1,38 @@
1
+ import React from "react";
2
+ import { Svg, Path } from "react-native-svg";
3
+ import { SVGPictogramProps } from "../Pictogram";
4
+
5
+ const PictogramBleedCie = ({ size, color, ...props }: SVGPictogramProps) => (
6
+ <Svg fill="none" width={size} height={size} viewBox="0 0 240 240" {...props}>
7
+ <Path
8
+ d="M19 155.41v15.07c0 5.87 4.76 10.63 10.63 10.63h152.76c5.87 0 10.63-4.76 10.63-10.63v-17.77c0-.39-11.26-4.36-18.16-5.23-6.9-.87-16.08-7.6-16.08-7.6-10.32-3.9-.42-12.65-.42-12.65l2.72-.43c-11.11-.83-15.11-10.96-15.11-10.96l8.14-3.44-1.41-2.87-3.59-2.58 2.86-2.61 1.38-.98s4.14-1.27 4.79-1.33c.65-.06 6.02.68 6.02.68l7.73.98s11.4 3.27 11.63 3.34c.23.07 9.5 2.47 9.5 2.47V69.63c0-5.87-4.76-10.63-10.63-10.63H29.63C23.76 59 19 63.76 19 69.63V155.41Z"
9
+ fill="#AAEEEF"
10
+ />
11
+ <Path
12
+ d="M180.31 177.12H30.9201c-4.6 0-8.34-3.74-8.34-8.34V70.42c0-4.6 3.74-8.34 8.34-8.34H181.51c4.6 0 8.34 3.74 8.34 8.34v37.71c0 .75-.61 1.35-1.35 1.35-.74 0-1.35-.61-1.35-1.35V70.42c0-3.1-2.53-5.63-5.63-5.63H30.9201c-3.1 0-5.63 2.53-5.63 5.63v98.37c0 3.1 2.53 5.63 5.63 5.63H180.31c3.1 0 5.63-2.53 5.63-5.63V152.5c0-.75.61-1.35 1.35-1.35.74 0 1.35.61 1.35 1.35v16.29c0 4.6-3.74 8.34-8.34 8.34l.01-.01Z"
13
+ fill="#00C5CA"
14
+ />
15
+ <Path
16
+ d="M240.209 121.41c-9.7-6.57-37.08-23.63-47.18-23.63v-4.2c13.44 0 48.07 23.36 49.53 24.35l-2.36 3.48h.01ZM176.839 120.23c-19.38-2.54-29-6.34-30.27-11.94-.78-3.43 1.93-6.24 3.66-7.36 9.65-6.19 40.15 5.89 43.59 7.29l-1.58 3.89c-12.24-4.96-33.86-11.43-39.74-7.65 0 0-2.16 1.51-1.84 2.91.21.89 2.47 5.51 26.72 8.69l-.55 4.16.01.01Z"
17
+ fill="#0B3EE3"
18
+ />
19
+ <Path
20
+ d="M176.68 134.11c-28.52-5.99-32.37-11.92-32.78-15.85-.55-5.29 6.04-8.35 6.79-8.68l1.69 3.84c-1.49.66-4.5 2.61-4.31 4.41.15 1.44 2.73 6.56 29.46 12.17l-.86 4.11h.01Z"
21
+ fill="#0B3EE3"
22
+ />
23
+ <Path
24
+ d="M240.52 173.83c-38.99-17.68-53.2-21.59-71.19-26.54l-2.55-.7c-9.02-2.49-14.19-6.14-15.37-10.85-1.36-5.4 3.12-9.76 3.31-9.94l2.9 3.04-1.45-1.52 1.46 1.51s-2.92 2.88-2.14 5.9c.78 3.04 5.19 5.81 12.41 7.81l2.55.7c18.17 5 32.52 8.95 71.81 26.76l-1.73 3.82-.01.01Z"
25
+ fill="#0B3EE3"
26
+ />
27
+ <Path
28
+ d="M54.21 143.18c-8.36 0-15.17-6.8-15.17-15.17 0-8.37 6.8-15.17 15.17-15.17 8.37 0 15.17 6.8 15.17 15.17 0 8.37-6.8 15.17-15.17 15.17Zm0-27.33c-6.71 0-12.17 5.46-12.17 12.17s5.46 12.17 12.17 12.17 12.17-5.46 12.17-12.17-5.46-12.17-12.17-12.17Z"
29
+ fill="#00C5CA"
30
+ />
31
+ <Path
32
+ d="M74.0501 163.12c-.83 0-1.5-.67-1.5-1.5 0-10.11-8.23-18.34-18.34-18.34s-18.34 8.23-18.34 18.34c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-11.77 9.57-21.34 21.34-21.34s21.34 9.57 21.34 21.34c0 .83-.67 1.5-1.5 1.5ZM128.57 144.21H86.04c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5h42.53c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5ZM115.18 82H40.5498c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5H115.18c1.93 0 3.5 1.57 3.5 3.5s-1.57 3.5-3.5 3.5ZM82.2198 93.76h-41.67c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5h41.67c1.93 0 3.5 1.57 3.5 3.5s-1.57 3.5-3.5 3.5ZM117.74 158.72H86.0498c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5H117.74c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5ZM134.76 151.66H86.0498c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5H134.76c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5Z"
33
+ fill="#00C5CA"
34
+ />
35
+ </Svg>
36
+ );
37
+
38
+ export default PictogramBleedCie;
@@ -0,0 +1,46 @@
1
+ import React from "react";
2
+ import { Svg, Path } from "react-native-svg";
3
+ import { SVGPictogramProps } from "../Pictogram";
4
+
5
+ const PictogramBleedFeature = ({
6
+ size,
7
+ color,
8
+ ...props
9
+ }: SVGPictogramProps) => (
10
+ <Svg fill="none" width={size} height={size} viewBox="0 0 240 240" {...props}>
11
+ <Path
12
+ d="M156.2 126.24h-.29c-2.76-.16-4.87-2.52-4.71-5.28l5.89-103.24c.16-2.76 2.55-4.88 5.28-4.72 2.76.16 4.87 2.52 4.71 5.28l-5.89 103.24c-.15 2.66-2.36 4.72-4.99 4.72Z"
13
+ fill="#AAEEEF"
14
+ />
15
+ <Path
16
+ d="M153.501 158.01c-.18 0-.36 0-.55-.02-2.03-.12-3.79-1.04-5.1-2.67-4.58-5.71-2.57-19.08-2.33-20.59.6-5.18 2.79-8.92 6.52-11.01 7.82-4.39 20.48-.22 29.72 4.05 6.08 2.81 12.88 4.15 19.63 3.89 8.93-.35 23.07-1.9 39.71-7.35l1.24 3.8c-17.08 5.59-31.61 7.19-40.8 7.55-7.38.29-14.82-1.18-21.46-4.26-11.87-5.49-21.14-6.98-26.09-4.2-2.58 1.45-4.06 4.09-4.52 8.07-.59 3.7-1.46 13.86 1.49 17.54.6.75 1.3 1.12 2.21 1.17 1.24.07 2.31-.3 3.25-1.15 3.12-2.81 4.1-9.88 4.21-12.36l4 .18c-.02.43-.53 10.64-5.53 15.15-1.62 1.46-3.51 2.2-5.62 2.2l.02.01Z"
17
+ fill="#0B3EE3"
18
+ />
19
+ <Path
20
+ d="M135.05 181.89c-2.99-.35-5.27-1.67-6.79-3.93-3.58-5.35-1.19-14.09-1.09-14.46l.08-.27.15-.24c1.08-1.75 10.85-17 20.37-15.36l-.68 3.94c-5.68-.97-13.58 9.26-16.14 13.28-.57 2.24-1.41 7.86.63 10.89.84 1.26 2.13 1.97 3.92 2.18l-.46 3.97h.01Z"
21
+ fill="#0B3EE3"
22
+ />
23
+ <Path
24
+ d="M165.16 201.25h-.24c-17.54-.7-29.33-1.7-33.13-8.89-2.57-4.87-2.11-8.44 1.7-13.16 3.37-4.17 9.36-9.7 18.78-12.33 6.84-1.91 13.9.03 18.01 4.94 2.73 3.27 2.71 6.08 2.21 7.87-1.1 3.94-5.5 7.18-13.47 9.91l-1.3-3.78c8.56-2.93 10.51-5.77 10.91-7.2.13-.47.53-1.88-1.43-4.22-3.1-3.71-8.54-5.14-13.86-3.65-8.4 2.35-13.74 7.27-16.75 10.99-3.04 3.76-2.98 5.57-1.28 8.78 2.77 5.25 14.48 6.15 29.51 6.75 4.76-.96 61.18-12.3 76.36-12.3h.59l-.09 4c-14.14-.32-75.68 12.14-76.3 12.26l-.24.05.02-.02Z"
25
+ fill="#0B3EE3"
26
+ />
27
+ <Path
28
+ d="m169.52 172.88-3.6-1.74c6.24-12.95-5.67-19.12-6.18-19.37l1.79-3.57c.16.08 15.92 8.23 7.99 24.69v-.01Z"
29
+ fill="#0B3EE3"
30
+ />
31
+ <Path
32
+ d="M175.67 165.75c-3.52 0-6.42-1.02-6.64-1.1l1.35-3.76-.68 1.88.67-1.88c.08.03 7.67 2.66 11.57-1.41l2.89 2.77c-2.64 2.75-6.13 3.51-9.16 3.51v-.01ZM127.15 164.45c-2.38-11.4-1.06-20.32 3.9-26.51 6.49-8.1 16.75-8.34 17.19-8.34l.06 4c-.09 0-8.87.25-14.16 6.88-4.16 5.21-5.19 13-3.08 23.16l-3.92.82.01-.01Z"
33
+ fill="#0B3EE3"
34
+ />
35
+ <Path
36
+ d="M152.35 226.02h-.28c-2.76-.15-4.87-2.51-4.72-5.27l1.89-34.08c.15-2.76 2.54-4.87 5.27-4.72 2.76.15 4.87 2.51 4.72 5.27l-1.89 34.08c-.15 2.66-2.35 4.72-4.99 4.72ZM161.02 26l71.02 30.46c6.69 2.87 6.45 12.44-.37 14.97l-73.66 27.36L161.02 26Z"
37
+ fill="#AAEEEF"
38
+ />
39
+ <Path
40
+ d="M225.95 62.13c.57.04 1.13-.28 1.37-.83.3-.7-.02-1.52-.73-1.82l-60.7-26.1c-.71-.3-1.52.02-1.82.73-.3.7.02 1.52.73 1.82l60.7 26.1c.15.06.3.1.45.11v-.01Z"
41
+ fill="#00C5CA"
42
+ />
43
+ </Svg>
44
+ );
45
+
46
+ export default PictogramBleedFeature;
@@ -0,0 +1,38 @@
1
+ import React from "react";
2
+ import { Svg, Path } from "react-native-svg";
3
+ import { SVGPictogramProps } from "../Pictogram";
4
+
5
+ const PictogramBleedSecurity = ({
6
+ size,
7
+ color,
8
+ ...props
9
+ }: SVGPictogramProps) => (
10
+ <Svg fill="none" width={size} height={size} viewBox="0 0 240 240" {...props}>
11
+ <Path
12
+ d="m141.53 162.33-1.17-10.28 6.77-5.65 4.83.62 2.92-10.71 2.61-3.84 9.51-2.64 6.8 3.32c.02-.34.06-.68.06-1.02V68.12c0-7.32-4.35-13.95-11.06-16.87l-38.56-16.73c-4.67-2.03-9.98-2.03-14.65 0L71.06 51.25C64.35 54.17 60 60.79 60 68.12v64.01c0 5.42 2.39 10.57 6.54 14.07l38.53 32.45c6.84 5.76 16.84 5.76 23.69 0l14.63-12.32-1.87-3.99.01-.01Z"
13
+ fill="#AAEEEF"
14
+ />
15
+ <Path
16
+ d="M168.661 196.7c-1.31 0-2.73-.14-4.27-.43-10.76-1.98-18.32-11.19-20.8-18.9-1.51-4.72-1.14-8.71 1.03-10.95l2.88 2.78c-1.06 1.1-1.1 3.83-.1 6.96 2.12 6.62 8.57 14.5 17.71 16.19 4.24.78 7.1.31 8.51-1.39 2.37-2.88.66-9.13-.2-11.29l3.72-1.48c.41 1.02 3.85 10.09-.42 15.3-1.76 2.15-4.46 3.22-8.06 3.22v-.01Z"
17
+ fill="#0B3EE3"
18
+ />
19
+ <Path
20
+ d="M172.3 179.76c-2.96 0-6.55-.51-10.77-1.55-16.89-4.13-21.03-15.98-22-22.68-.53-3.67.42-7.29 2.61-9.95 2.82-3.43 6.74-4.12 10.75-1.89l-1.94 3.5c-2.35-1.31-4.12-1.02-5.72.93-1.47 1.79-2.11 4.29-1.74 6.84.82 5.7 4.38 15.8 18.99 19.37 10.13 2.47 14.73 1.34 15.67-.54.69-1.39-.39-3.51-1.44-4.35l2.51-3.11c2.49 2.01 4.11 6.01 2.51 9.24-1.38 2.8-4.54 4.2-9.43 4.2v-.01Z"
21
+ fill="#0B3EE3"
22
+ />
23
+ <Path
24
+ d="M177.89 169.91c-4.77 0-11.22-2.99-20.41-9.38-5.51-3.83-8.1-10.04-7.5-17.94.56-7.33 6.17-13.28 13.04-13.84 2.04-.17 6.27-.51 9.51 2.37 2.41 2.14 3.72 5.62 3.9 10.32l-4 .15c-.13-3.58-.99-6.09-2.56-7.48-1.81-1.61-4.32-1.55-6.53-1.37-4.94.4-8.97 4.77-9.38 10.16-.5 6.5 1.45 11.33 5.79 14.36 9.48 6.6 15.86 9.38 19.5 8.52 1.35-.32 2.36-1.17 3.17-2.66.77-1.42-.53-3.65-1.38-4.86-4.21-5.99-14.24-11.84-17.81-11.3l-.6-3.95c5.86-.89 17.18 6.54 21.69 12.95 3.05 4.34 2.57 7.33 1.62 9.07-1.36 2.5-3.29 4.06-5.76 4.65-.72.17-1.48.26-2.29.26v-.03Z"
25
+ fill="#0B3EE3"
26
+ />
27
+ <Path
28
+ d="M224.3 159.28c-6.98 0-13.93-1.73-20.62-5.2-6.62-3.43-11.12-9.88-12.04-17.27-.5-4.05.36-9.22 1.19-14.22.98-5.91 2.09-12.61.2-14.85-.31-.37-.9-.86-2.39-.86-2.81 0-5.15 1.01-7.15 3.08-7.72 8.02-7.06 28.27-7.05 28.47l-4 .15c-.03-.9-.73-22.15 8.17-31.39 2.75-2.86 6.13-4.31 10.03-4.31 2.33 0 4.16.76 5.44 2.27 3.09 3.65 1.93 10.66.7 18.09-.78 4.72-1.59 9.59-1.16 13.07.76 6.17 4.37 11.35 9.91 14.21 11.51 5.96 23.84 6.3 35.64 1.01l1.64 3.65c-6.09 2.73-12.31 4.1-18.5 4.1h-.01ZM218.88 206.26c-8.46 0-16.4-1.38-22.77-2.99-13.19-3.33-22.44-8.17-22.83-8.37l1.87-3.54c.36.19 36.66 19 66.06 6.78l1.54 3.69c-7.84 3.26-16.07 4.43-23.86 4.43h-.01Z"
29
+ fill="#0B3EE3"
30
+ />
31
+ <Path
32
+ d="M109.51 128.64c-.4 0-.79-.16-1.07-.45l-25.2299-25.74c-.58-.59-.57-1.54.02-2.12.59-.58 1.54-.57 2.12.02l24.1299 24.62 42.36-45.48c.56-.61 1.51-.64 2.12-.08.61.56.64 1.51.08 2.12l-43.43 46.63c-.28.3-.67.47-1.08.48h-.02Z"
33
+ fill="#00C5CA"
34
+ />
35
+ </Svg>
36
+ );
37
+
38
+ export default PictogramBleedSecurity;