@aws-amplify/ui-react-native 1.2.22 → 1.2.23

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 (351) hide show
  1. package/dist/version.d.ts +1 -1
  2. package/dist/version.js +1 -1
  3. package/lib/Authenticator/Authenticator.js +72 -0
  4. package/lib/Authenticator/Defaults/ConfirmResetPassword/ConfirmResetPassword.js +43 -0
  5. package/lib/Authenticator/Defaults/ConfirmResetPassword/index.js +8 -0
  6. package/lib/Authenticator/Defaults/ConfirmSignIn/ConfirmSignIn.js +42 -0
  7. package/lib/Authenticator/Defaults/ConfirmSignIn/index.js +8 -0
  8. package/lib/Authenticator/Defaults/ConfirmSignUp/ConfirmSignUp.js +43 -0
  9. package/lib/Authenticator/Defaults/ConfirmSignUp/index.js +8 -0
  10. package/lib/Authenticator/Defaults/ConfirmVerifyUser/ConfirmVerifyUser.js +42 -0
  11. package/lib/Authenticator/Defaults/ConfirmVerifyUser/index.js +8 -0
  12. package/lib/Authenticator/Defaults/ForceNewPassword/ForceNewPassword.js +45 -0
  13. package/lib/Authenticator/Defaults/ForceNewPassword/index.js +8 -0
  14. package/lib/Authenticator/Defaults/ResetPassword/ResetPassword.js +42 -0
  15. package/lib/Authenticator/Defaults/ResetPassword/index.js +8 -0
  16. package/lib/Authenticator/Defaults/SetupTOTP/SetupTOTP.js +52 -0
  17. package/lib/Authenticator/Defaults/SetupTOTP/index.js +8 -0
  18. package/lib/Authenticator/Defaults/SetupTOTP/styles.js +8 -0
  19. package/lib/Authenticator/Defaults/SignIn/SignIn.js +50 -0
  20. package/lib/Authenticator/Defaults/SignIn/index.js +8 -0
  21. package/lib/Authenticator/Defaults/SignUp/SignUp.js +48 -0
  22. package/lib/Authenticator/Defaults/SignUp/index.js +8 -0
  23. package/lib/Authenticator/Defaults/VerifyUser/VerifyUser.js +33 -0
  24. package/lib/Authenticator/Defaults/VerifyUser/index.js +8 -0
  25. package/lib/Authenticator/Defaults/index.js +23 -0
  26. package/lib/Authenticator/Defaults/types.js +2 -0
  27. package/lib/Authenticator/common/DefaultContainer/DefaultContainer.js +37 -0
  28. package/lib/Authenticator/common/DefaultContainer/InnerContainer.js +15 -0
  29. package/lib/Authenticator/common/DefaultContainer/index.js +10 -0
  30. package/lib/Authenticator/common/DefaultContainer/styles.js +31 -0
  31. package/lib/Authenticator/common/DefaultContainer/types.js +2 -0
  32. package/lib/Authenticator/common/DefaultContent/DefaultContent.js +33 -0
  33. package/lib/Authenticator/common/DefaultContent/index.js +8 -0
  34. package/lib/Authenticator/common/DefaultContent/styles.js +54 -0
  35. package/lib/Authenticator/common/DefaultContent/types.js +2 -0
  36. package/lib/Authenticator/common/DefaultFooter/DefaultFooter.js +9 -0
  37. package/lib/Authenticator/common/DefaultFooter/index.js +8 -0
  38. package/lib/Authenticator/common/DefaultFooter/types.js +2 -0
  39. package/lib/Authenticator/common/DefaultFormFields/DefaultRadioFormFields.js +28 -0
  40. package/lib/Authenticator/common/DefaultFormFields/DefaultTextFormFields.js +21 -0
  41. package/lib/Authenticator/common/DefaultFormFields/Field.js +37 -0
  42. package/lib/Authenticator/common/DefaultFormFields/FieldErrors.js +17 -0
  43. package/lib/Authenticator/common/DefaultFormFields/index.js +10 -0
  44. package/lib/Authenticator/common/DefaultFormFields/types.js +2 -0
  45. package/lib/Authenticator/common/DefaultHeader/DefaultHeader.js +11 -0
  46. package/lib/Authenticator/common/DefaultHeader/index.js +8 -0
  47. package/lib/Authenticator/common/DefaultHeader/types.js +2 -0
  48. package/lib/Authenticator/common/FederatedProviderButton/FederatedProviderButton.js +18 -0
  49. package/lib/Authenticator/common/FederatedProviderButton/index.js +8 -0
  50. package/lib/Authenticator/common/FederatedProviderButton/styles.js +21 -0
  51. package/lib/Authenticator/common/FederatedProviderButton/types.js +2 -0
  52. package/lib/Authenticator/common/FederatedProviderButtons/FederatedProviderButtons.js +26 -0
  53. package/lib/Authenticator/common/FederatedProviderButtons/index.js +8 -0
  54. package/lib/Authenticator/common/FederatedProviderButtons/styles.js +8 -0
  55. package/lib/Authenticator/common/FederatedProviderButtons/types.js +2 -0
  56. package/lib/Authenticator/common/index.js +10 -0
  57. package/lib/Authenticator/hooks/index.js +5 -0
  58. package/lib/Authenticator/hooks/types.js +2 -0
  59. package/lib/Authenticator/hooks/useFieldValues/constants.js +11 -0
  60. package/lib/Authenticator/hooks/useFieldValues/index.js +10 -0
  61. package/lib/Authenticator/hooks/useFieldValues/types.js +2 -0
  62. package/lib/Authenticator/hooks/useFieldValues/useFieldValues.js +101 -0
  63. package/lib/Authenticator/hooks/useFieldValues/utils.js +139 -0
  64. package/lib/Authenticator/index.js +13 -0
  65. package/lib/Authenticator/types.js +2 -0
  66. package/lib/Authenticator/withAuthenticator.js +15 -0
  67. package/lib/InAppMessaging/components/BannerMessage/BannerMessage.js +20 -0
  68. package/lib/InAppMessaging/components/BannerMessage/index.js +8 -0
  69. package/lib/InAppMessaging/components/BannerMessage/styles.js +81 -0
  70. package/lib/InAppMessaging/components/BannerMessage/types.js +2 -0
  71. package/lib/InAppMessaging/components/CarouselMessage/CarouselMessage.js +25 -0
  72. package/lib/InAppMessaging/components/CarouselMessage/CarouselMessageItem.js +22 -0
  73. package/lib/InAppMessaging/components/CarouselMessage/index.js +8 -0
  74. package/lib/InAppMessaging/components/CarouselMessage/styles.js +103 -0
  75. package/lib/InAppMessaging/components/CarouselMessage/types.js +2 -0
  76. package/lib/InAppMessaging/components/FullScreenMessage/FullScreenMessage.js +22 -0
  77. package/lib/InAppMessaging/components/FullScreenMessage/index.js +8 -0
  78. package/lib/InAppMessaging/components/FullScreenMessage/styles.js +91 -0
  79. package/lib/InAppMessaging/components/FullScreenMessage/types.js +2 -0
  80. package/lib/InAppMessaging/components/InAppMessageDisplay/InAppMessageDisplay.js +32 -0
  81. package/lib/InAppMessaging/components/InAppMessageDisplay/handleMessageLinkAction.js +26 -0
  82. package/lib/InAppMessaging/components/InAppMessageDisplay/index.js +8 -0
  83. package/lib/InAppMessaging/components/InAppMessageDisplay/types.js +2 -0
  84. package/lib/InAppMessaging/components/MessageLayout/MessageLayout.js +38 -0
  85. package/lib/InAppMessaging/components/MessageLayout/index.js +8 -0
  86. package/lib/InAppMessaging/components/MessageLayout/types.js +2 -0
  87. package/lib/InAppMessaging/components/MessageWrapper/MessageWrapper.js +24 -0
  88. package/lib/InAppMessaging/components/MessageWrapper/index.js +8 -0
  89. package/lib/InAppMessaging/components/MessageWrapper/styles.js +8 -0
  90. package/lib/InAppMessaging/components/MessageWrapper/types.js +2 -0
  91. package/lib/InAppMessaging/components/ModalMessage/ModalMessage.js +22 -0
  92. package/lib/InAppMessaging/components/ModalMessage/index.js +8 -0
  93. package/lib/InAppMessaging/components/ModalMessage/styles.js +104 -0
  94. package/lib/InAppMessaging/components/ModalMessage/types.js +2 -0
  95. package/lib/InAppMessaging/components/index.js +7 -0
  96. package/lib/InAppMessaging/components/withInAppMessaging/index.js +8 -0
  97. package/lib/InAppMessaging/components/withInAppMessaging/withInAppMessaging.js +15 -0
  98. package/lib/InAppMessaging/constants.js +48 -0
  99. package/lib/InAppMessaging/hooks/index.js +7 -0
  100. package/lib/InAppMessaging/hooks/useMessageImage/constants.js +21 -0
  101. package/lib/InAppMessaging/hooks/useMessageImage/index.js +8 -0
  102. package/lib/InAppMessaging/hooks/useMessageImage/types.js +9 -0
  103. package/lib/InAppMessaging/hooks/useMessageImage/useMessageImage.js +53 -0
  104. package/lib/InAppMessaging/hooks/useMessageImage/utils.js +61 -0
  105. package/lib/InAppMessaging/hooks/useMessageProps/index.js +8 -0
  106. package/lib/InAppMessaging/hooks/useMessageProps/types.js +2 -0
  107. package/lib/InAppMessaging/hooks/useMessageProps/useMessageProps.js +52 -0
  108. package/lib/InAppMessaging/hooks/useMessageProps/utils.js +201 -0
  109. package/lib/InAppMessaging/index.js +9 -0
  110. package/lib/assets/icons/amazonLogo.png +0 -0
  111. package/lib/assets/icons/amazonLogo@2x.png +0 -0
  112. package/lib/assets/icons/amazonLogo@3x.png +0 -0
  113. package/lib/assets/icons/appleLogo.png +0 -0
  114. package/lib/assets/icons/appleLogo@2x.png +0 -0
  115. package/lib/assets/icons/appleLogo@3x.png +0 -0
  116. package/lib/assets/icons/checkboxFilled.png +0 -0
  117. package/lib/assets/icons/checkboxFilled@2x.png +0 -0
  118. package/lib/assets/icons/checkboxFilled@3x.png +0 -0
  119. package/lib/assets/icons/checkboxOutline.png +0 -0
  120. package/lib/assets/icons/checkboxOutline@2x.png +0 -0
  121. package/lib/assets/icons/checkboxOutline@3x.png +0 -0
  122. package/lib/assets/icons/close.png +0 -0
  123. package/lib/assets/icons/close@2x.png +0 -0
  124. package/lib/assets/icons/close@3x.png +0 -0
  125. package/lib/assets/icons/copy.png +0 -0
  126. package/lib/assets/icons/copy@2x.png +0 -0
  127. package/lib/assets/icons/copy@3x.png +0 -0
  128. package/lib/assets/icons/error.png +0 -0
  129. package/lib/assets/icons/error@2x.png +0 -0
  130. package/lib/assets/icons/error@3x.png +0 -0
  131. package/lib/assets/icons/facebookLogo.png +0 -0
  132. package/lib/assets/icons/facebookLogo@2x.png +0 -0
  133. package/lib/assets/icons/facebookLogo@3x.png +0 -0
  134. package/lib/assets/icons/googleLogo.png +0 -0
  135. package/lib/assets/icons/googleLogo@2x.png +0 -0
  136. package/lib/assets/icons/googleLogo@3x.png +0 -0
  137. package/lib/assets/icons/index.js +16 -0
  138. package/lib/assets/icons/index.ts +17 -0
  139. package/lib/assets/icons/visibilityOff.png +0 -0
  140. package/lib/assets/icons/visibilityOff@2x.png +0 -0
  141. package/lib/assets/icons/visibilityOff@3x.png +0 -0
  142. package/lib/assets/icons/visibilityOn.png +0 -0
  143. package/lib/assets/icons/visibilityOn@2x.png +0 -0
  144. package/lib/assets/icons/visibilityOn@3x.png +0 -0
  145. package/lib/assets/index.js +8 -0
  146. package/lib/hooks/index.js +9 -0
  147. package/lib/hooks/useDeprecationWarning/index.js +8 -0
  148. package/lib/hooks/useDeprecationWarning/useDeprecationWarning.js +13 -0
  149. package/lib/hooks/useDeviceOrientation/index.js +8 -0
  150. package/lib/hooks/useDeviceOrientation/useDeviceOrientation.js +37 -0
  151. package/lib/hooks/usePressableContainerStyles/index.js +5 -0
  152. package/lib/hooks/usePressableContainerStyles/usePressableContainerStyles.js +19 -0
  153. package/lib/index.js +14 -0
  154. package/lib/primitives/Button/Button.js +31 -0
  155. package/lib/primitives/Button/index.js +8 -0
  156. package/lib/primitives/Button/styles.js +55 -0
  157. package/lib/primitives/Button/types.js +2 -0
  158. package/lib/primitives/Carousel/Carousel.js +63 -0
  159. package/lib/primitives/Carousel/CarouselPageIndicator.js +14 -0
  160. package/lib/primitives/Carousel/constants.js +21 -0
  161. package/lib/primitives/Carousel/index.js +10 -0
  162. package/lib/primitives/Carousel/styles.js +14 -0
  163. package/lib/primitives/Carousel/types.js +2 -0
  164. package/lib/primitives/Checkbox/Checkbox.js +28 -0
  165. package/lib/primitives/Checkbox/index.js +8 -0
  166. package/lib/primitives/Checkbox/styles.js +28 -0
  167. package/lib/primitives/Checkbox/types.js +2 -0
  168. package/lib/primitives/Divider/Divider.js +22 -0
  169. package/lib/primitives/Divider/index.js +8 -0
  170. package/lib/primitives/Divider/styles.js +28 -0
  171. package/lib/primitives/Divider/types.js +2 -0
  172. package/lib/primitives/ErrorMessage/ErrorMessage.js +22 -0
  173. package/lib/primitives/ErrorMessage/index.js +8 -0
  174. package/lib/primitives/ErrorMessage/styles.js +30 -0
  175. package/lib/primitives/ErrorMessage/types.js +2 -0
  176. package/lib/primitives/Heading/Heading.js +15 -0
  177. package/lib/primitives/Heading/index.js +8 -0
  178. package/lib/primitives/Heading/styles.js +51 -0
  179. package/lib/primitives/Heading/types.js +2 -0
  180. package/lib/primitives/Icon/Icon.js +21 -0
  181. package/lib/primitives/Icon/constants.js +10 -0
  182. package/lib/primitives/Icon/index.js +10 -0
  183. package/lib/primitives/Icon/styles.js +34 -0
  184. package/lib/primitives/Icon/types.js +2 -0
  185. package/lib/primitives/IconButton/IconButton.js +26 -0
  186. package/lib/primitives/IconButton/index.js +8 -0
  187. package/lib/primitives/IconButton/styles.js +21 -0
  188. package/lib/primitives/IconButton/types.js +2 -0
  189. package/lib/primitives/Label/Label.js +16 -0
  190. package/lib/primitives/Label/index.js +8 -0
  191. package/lib/primitives/Label/styles.js +45 -0
  192. package/lib/primitives/Label/types.js +2 -0
  193. package/lib/primitives/Label/utils.js +25 -0
  194. package/lib/primitives/PasswordField/PasswordField.js +24 -0
  195. package/lib/primitives/PasswordField/index.js +8 -0
  196. package/lib/primitives/PasswordField/styles.js +17 -0
  197. package/lib/primitives/PasswordField/types.js +2 -0
  198. package/lib/primitives/PhoneNumberField/PhoneNumberField.js +13 -0
  199. package/lib/primitives/PhoneNumberField/index.js +8 -0
  200. package/lib/primitives/PhoneNumberField/styles.js +22 -0
  201. package/lib/primitives/PhoneNumberField/types.js +2 -0
  202. package/lib/primitives/Radio/Radio.js +46 -0
  203. package/lib/primitives/Radio/getRadioDimensions.js +43 -0
  204. package/lib/primitives/Radio/index.js +8 -0
  205. package/lib/primitives/Radio/styles.js +68 -0
  206. package/lib/primitives/Radio/types.js +2 -0
  207. package/lib/primitives/RadioGroup/RadioGroup.js +55 -0
  208. package/lib/primitives/RadioGroup/index.js +8 -0
  209. package/lib/primitives/RadioGroup/styles.js +20 -0
  210. package/lib/primitives/RadioGroup/types.js +2 -0
  211. package/lib/primitives/Tabs/Tab.js +27 -0
  212. package/lib/primitives/Tabs/Tabs.js +29 -0
  213. package/lib/primitives/Tabs/index.js +10 -0
  214. package/lib/primitives/Tabs/styles.js +58 -0
  215. package/lib/primitives/Tabs/types.js +2 -0
  216. package/lib/primitives/TextField/TextField.js +31 -0
  217. package/lib/primitives/TextField/index.js +8 -0
  218. package/lib/primitives/TextField/styles.js +46 -0
  219. package/lib/primitives/TextField/types.js +2 -0
  220. package/lib/primitives/index.js +18 -0
  221. package/lib/theme/ThemeContext.js +9 -0
  222. package/lib/theme/ThemeProvider.js +12 -0
  223. package/lib/theme/createTheme.js +113 -0
  224. package/lib/theme/defaultTheme.js +11 -0
  225. package/lib/theme/index.js +12 -0
  226. package/lib/theme/types.js +2 -0
  227. package/lib/theme/useTheme.js +11 -0
  228. package/lib/utils/font.js +8 -0
  229. package/lib/utils/index.js +10 -0
  230. package/lib/utils/platform.js +21 -0
  231. package/lib/version.js +4 -0
  232. package/package.json +19 -10
  233. package/src/version.ts +1 -1
  234. package/.eslintrc.js +0 -12
  235. package/.lintstagedrc.js +0 -6
  236. package/.turbo/turbo-build.log +0 -3
  237. package/CHANGELOG.md +0 -332
  238. package/babel.config.js +0 -3
  239. package/dist/assets/index.ts +0 -1
  240. package/jest.config.js +0 -22
  241. package/jest.setup.js +0 -3
  242. package/src/Authenticator/Defaults/ConfirmResetPassword/__tests__/ConfirmResetPassword.spec.tsx +0 -89
  243. package/src/Authenticator/Defaults/ConfirmResetPassword/__tests__/__snapshots__/ConfirmResetPassword.spec.tsx.snap +0 -1090
  244. package/src/Authenticator/Defaults/ConfirmSignIn/__tests__/ConfirmSignIn.spec.tsx +0 -78
  245. package/src/Authenticator/Defaults/ConfirmSignIn/__tests__/__snapshots__/ConfirmSignIn.spec.tsx.snap +0 -512
  246. package/src/Authenticator/Defaults/ConfirmSignUp/__tests__/ConfirmSignUp.spec.tsx +0 -64
  247. package/src/Authenticator/Defaults/ConfirmSignUp/__tests__/__snapshots__/ConfirmSignUp.spec.tsx.snap +0 -528
  248. package/src/Authenticator/Defaults/ConfirmVerifyUser/__tests__/ConfirmVerifyUser.spec.tsx +0 -71
  249. package/src/Authenticator/Defaults/ConfirmVerifyUser/__tests__/__snapshots__/ConfirmVerifyUser.spec.tsx.snap +0 -492
  250. package/src/Authenticator/Defaults/ForceNewPassword/__tests__/ForceNewPassword.spec.tsx +0 -79
  251. package/src/Authenticator/Defaults/ForceNewPassword/__tests__/__snapshots__/ForceNewPassword.spec.tsx.snap +0 -896
  252. package/src/Authenticator/Defaults/ResetPassword/__tests__/ResetPassword.spec.tsx +0 -78
  253. package/src/Authenticator/Defaults/ResetPassword/__tests__/__snapshots__/ResetPassword.spec.tsx.snap +0 -512
  254. package/src/Authenticator/Defaults/SetupTOTP/__tests__/SetupTOTP.spec.tsx +0 -85
  255. package/src/Authenticator/Defaults/SetupTOTP/__tests__/__snapshots__/SetupTOTP.spec.tsx.snap +0 -602
  256. package/src/Authenticator/Defaults/SignIn/__tests__/SignIn.spec.tsx +0 -67
  257. package/src/Authenticator/Defaults/SignIn/__tests__/__snapshots__/SignIn.spec.tsx.snap +0 -1281
  258. package/src/Authenticator/Defaults/SignUp/__tests__/SignUp.spec.tsx +0 -102
  259. package/src/Authenticator/Defaults/SignUp/__tests__/__snapshots__/SignUp.spec.tsx.snap +0 -3122
  260. package/src/Authenticator/Defaults/VerifyUser/__tests__/VerifyUser.spec.tsx +0 -107
  261. package/src/Authenticator/Defaults/VerifyUser/__tests__/__snapshots__/VerifyUser.spec.tsx.snap +0 -692
  262. package/src/Authenticator/__tests__/Authenticator.spec.tsx +0 -131
  263. package/src/Authenticator/__tests__/__snapshots__/Authenticator.spec.tsx.snap +0 -90
  264. package/src/Authenticator/__tests__/__snapshots__/withAuthenticator.spec.tsx.snap +0 -68
  265. package/src/Authenticator/__tests__/withAuthenticator.spec.tsx +0 -73
  266. package/src/Authenticator/common/DefaultContainer/__tests__/DefaultContainer.spec.tsx +0 -19
  267. package/src/Authenticator/common/DefaultContainer/__tests__/__snapshots__/DefaultContainer.spec.tsx.snap +0 -83
  268. package/src/Authenticator/common/DefaultFooter/__tests__/DefaultFooter.spec.tsx +0 -26
  269. package/src/Authenticator/common/DefaultFooter/__tests__/__snapshots__/DefaultFooter.spec.tsx.snap +0 -40
  270. package/src/Authenticator/common/DefaultFormFields/__tests__/DefaultFormFields.spec.tsx +0 -15
  271. package/src/Authenticator/common/DefaultFormFields/__tests__/FieldErrors.spec.tsx +0 -29
  272. package/src/Authenticator/common/DefaultFormFields/__tests__/__snapshots__/DefaultFormFields.spec.tsx.snap +0 -3
  273. package/src/Authenticator/common/DefaultFormFields/__tests__/__snapshots__/FieldErrors.spec.tsx.snap +0 -32
  274. package/src/Authenticator/common/DefaultHeader/__tests__/DefaultHeader.spec.tsx +0 -23
  275. package/src/Authenticator/common/DefaultHeader/__tests__/__snapshots__/DefaultHeader.spec.tsx.snap +0 -24
  276. package/src/Authenticator/common/FederatedProviderButton/__tests__/FederatedProviderButton.spec.tsx +0 -67
  277. package/src/Authenticator/common/FederatedProviderButton/__tests__/__snapshots__/FederatedProviderButton.spec.tsx.snap +0 -185
  278. package/src/Authenticator/common/FederatedProviderButtons/__tests__/FederatedProviderButtons.spec.tsx +0 -55
  279. package/src/Authenticator/common/FederatedProviderButtons/__tests__/__snapshots__/FederatedProviderButtons.spec.tsx.snap +0 -167
  280. package/src/Authenticator/hooks/useFieldValues/__tests__/useFieldValues.spec.ts +0 -399
  281. package/src/Authenticator/hooks/useFieldValues/__tests__/utils.spec.ts +0 -282
  282. package/src/InAppMessaging/components/BannerMessage/__tests__/BannerMessage.spec.tsx +0 -151
  283. package/src/InAppMessaging/components/BannerMessage/__tests__/__snapshots__/BannerMessage.spec.tsx.snap +0 -618
  284. package/src/InAppMessaging/components/CarouselMessage/__tests__/CarouselMessage.spec.tsx +0 -92
  285. package/src/InAppMessaging/components/CarouselMessage/__tests__/CarouselMessageItem.spec.tsx +0 -50
  286. package/src/InAppMessaging/components/CarouselMessage/__tests__/__snapshots__/CarouselMessage.spec.tsx.snap +0 -124
  287. package/src/InAppMessaging/components/CarouselMessage/__tests__/__snapshots__/CarouselMessageItem.spec.tsx.snap +0 -248
  288. package/src/InAppMessaging/components/FullScreenMessage/__tests__/FullScreenMessage.spec.tsx +0 -53
  289. package/src/InAppMessaging/components/FullScreenMessage/__tests__/__snapshots__/FullScreenMessage.spec.tsx.snap +0 -238
  290. package/src/InAppMessaging/components/InAppMessageDisplay/__tests__/InAppMessageDisplay.spec.tsx +0 -34
  291. package/src/InAppMessaging/components/InAppMessageDisplay/__tests__/__snapshots__/InAppMessageDisplay.spec.tsx.snap +0 -9
  292. package/src/InAppMessaging/components/InAppMessageDisplay/__tests__/handleMessageLinkAction.spec.ts +0 -51
  293. package/src/InAppMessaging/components/MessageWrapper/__tests__/MessageWrapper.spec.tsx +0 -19
  294. package/src/InAppMessaging/components/MessageWrapper/__tests__/__snapshots__/MessageWrapper.spec.tsx.snap +0 -35
  295. package/src/InAppMessaging/components/ModalMessage/__tests__/ModalMessage.spec.tsx +0 -169
  296. package/src/InAppMessaging/components/ModalMessage/__tests__/__snapshots__/ModalMessage.spec.tsx.snap +0 -727
  297. package/src/InAppMessaging/components/withInAppMessaging/__tests__/__snapshots__/withInAppMessaging.spec.tsx.snap +0 -3
  298. package/src/InAppMessaging/components/withInAppMessaging/__tests__/withInAppMessaging.spec.tsx +0 -15
  299. package/src/InAppMessaging/hooks/useMessageImage/__tests__/useMessageImage.spec.ts +0 -141
  300. package/src/InAppMessaging/hooks/useMessageImage/__tests__/utils.spec.ts +0 -107
  301. package/src/InAppMessaging/hooks/useMessageProps/__tests__/__snapshots__/utils.spec.ts.snap +0 -223
  302. package/src/InAppMessaging/hooks/useMessageProps/__tests__/useMessageProps.spec.ts +0 -162
  303. package/src/InAppMessaging/hooks/useMessageProps/__tests__/utils.spec.ts +0 -355
  304. package/src/__mocks__/@react-native-async-storage/async-storage.ts +0 -2
  305. package/src/__mocks__/@react-native-community/netinfo.ts +0 -3
  306. package/src/__mocks__/react-native-safe-area-context.ts +0 -9
  307. package/src/__tests__/__snapshots__/index.spec.ts.snap +0 -26
  308. package/src/__tests__/index.spec.ts +0 -8
  309. package/src/hooks/useDeprecationWarning/__tests__/useDeprecationWarning.spec.ts +0 -42
  310. package/src/hooks/useDeviceOrientation/__tests__/useDeviceOrientation.spec.ts +0 -89
  311. package/src/hooks/usePressableContainerStyles/__tests__/usePressableContainerStyles.spec.ts +0 -68
  312. package/src/primitives/Button/__tests__/Button.spec.tsx +0 -92
  313. package/src/primitives/Button/__tests__/__snapshots__/Button.spec.tsx.snap +0 -143
  314. package/src/primitives/Carousel/__tests__/Carousel.spec.tsx +0 -174
  315. package/src/primitives/Carousel/__tests__/CarouselPageIndicator.spec.tsx +0 -73
  316. package/src/primitives/Carousel/__tests__/__snapshots__/Carousel.spec.tsx.snap +0 -310
  317. package/src/primitives/Carousel/__tests__/__snapshots__/CarouselPageIndicator.spec.tsx.snap +0 -191
  318. package/src/primitives/Checkbox/__tests__/Checkbox.spec.tsx +0 -150
  319. package/src/primitives/Checkbox/__tests__/__snapshots__/Checkbox.spec.tsx.snap +0 -527
  320. package/src/primitives/Divider/__tests__/Divider.spec.tsx +0 -50
  321. package/src/primitives/Divider/__tests__/__snapshots__/Divider.spec.tsx.snap +0 -165
  322. package/src/primitives/ErrorMessage/__tests__/ErrorMessage.spec.tsx +0 -60
  323. package/src/primitives/ErrorMessage/__tests__/__snapshots__/ErrorMessage.spec.tsx.snap +0 -123
  324. package/src/primitives/Heading/__tests__/Heading.spec.tsx +0 -73
  325. package/src/primitives/Heading/__tests__/__snapshots__/Heading.spec.tsx.snap +0 -171
  326. package/src/primitives/Icon/__tests__/Icon.spec.tsx +0 -100
  327. package/src/primitives/Icon/__tests__/__snapshots__/Icon.spec.tsx.snap +0 -139
  328. package/src/primitives/IconButton/__tests__/IconButton.spec.tsx +0 -71
  329. package/src/primitives/IconButton/__tests__/__snapshots__/IconButton.spec.tsx.snap +0 -192
  330. package/src/primitives/Label/__tests__/Label.spec.tsx +0 -75
  331. package/src/primitives/Label/__tests__/__snapshots__/Label.spec.tsx.snap +0 -91
  332. package/src/primitives/PasswordField/__tests__/PasswordField.spec.tsx +0 -110
  333. package/src/primitives/PasswordField/__tests__/__snapshots__/PasswordField.spec.tsx.snap +0 -625
  334. package/src/primitives/PhoneNumberField/__tests__/PhoneNumberField.spec.tsx +0 -53
  335. package/src/primitives/PhoneNumberField/__tests__/__snapshots__/PhoneNumberField.spec.tsx.snap +0 -188
  336. package/src/primitives/Radio/__tests__/Radio.spec.tsx +0 -166
  337. package/src/primitives/Radio/__tests__/__snapshots__/Radio.spec.tsx.snap +0 -678
  338. package/src/primitives/RadioGroup/__tests__/RadioGroup.spec.tsx +0 -183
  339. package/src/primitives/RadioGroup/__tests__/__snapshots__/RadioGroup.spec.tsx.snap +0 -1789
  340. package/src/primitives/Tabs/__tests__/Tab.spec.tsx +0 -75
  341. package/src/primitives/Tabs/__tests__/Tabs.spec.tsx +0 -81
  342. package/src/primitives/Tabs/__tests__/__snapshots__/Tab.spec.tsx.snap +0 -278
  343. package/src/primitives/Tabs/__tests__/__snapshots__/Tabs.spec.tsx.snap +0 -163
  344. package/src/primitives/TextField/__tests__/TextField.spec.tsx +0 -202
  345. package/src/primitives/TextField/__tests__/__snapshots__/TextField.spec.tsx.snap +0 -507
  346. package/src/theme/__tests__/ThemeProvider.spec.tsx +0 -23
  347. package/src/theme/__tests__/__snapshots__/useTheme.spec.tsx.snap +0 -226
  348. package/src/theme/__tests__/createTheme.spec.ts +0 -244
  349. package/src/theme/__tests__/useTheme.spec.tsx +0 -51
  350. package/tsconfig.dist.json +0 -4
  351. package/tsconfig.json +0 -9
@@ -1,678 +0,0 @@
1
- // Jest Snapshot v1, https://goo.gl/fbAQLP
2
-
3
- exports[`Radio applies theme and custom styles 1`] = `
4
- <View
5
- accessibilityRole="radio"
6
- accessible={true}
7
- collapsable={false}
8
- focusable={true}
9
- onBlur={[Function]}
10
- onClick={[Function]}
11
- onFocus={[Function]}
12
- onResponderGrant={[Function]}
13
- onResponderMove={[Function]}
14
- onResponderRelease={[Function]}
15
- onResponderTerminate={[Function]}
16
- onResponderTerminationRequest={[Function]}
17
- onStartShouldSetResponder={[Function]}
18
- style={
19
- Array [
20
- Object {
21
- "alignItems": "center",
22
- "flexDirection": "row",
23
- },
24
- undefined,
25
- Object {
26
- "margin": 10,
27
- },
28
- ]
29
- }
30
- >
31
- <View
32
- style={
33
- Array [
34
- Object {
35
- "alignItems": "center",
36
- "borderColor": "hsl(210, 10%, 58%)",
37
- "borderRadius": 999,
38
- "borderWidth": 2,
39
- "justifyContent": "center",
40
- "margin": 4,
41
- },
42
- Object {
43
- "height": 20,
44
- "width": 20,
45
- },
46
- Object {
47
- "borderColor": "blue",
48
- "borderWidth": 2,
49
- },
50
- ]
51
- }
52
- testID="amplify__radio-button__container"
53
- >
54
- <View
55
- style={
56
- Array [
57
- Object {
58
- "backgroundColor": "hsl(190, 95%, 30%)",
59
- "borderRadius": 999,
60
- },
61
- Object {
62
- "height": 12,
63
- "width": 12,
64
- },
65
- Object {
66
- "backgroundColor": "green",
67
- },
68
- ]
69
- }
70
- testID="amplify__radio-button__dot"
71
- />
72
- </View>
73
- </View>
74
- `;
75
-
76
- exports[`Radio renders as expected when disabled 1`] = `
77
- <View
78
- accessibilityRole="radio"
79
- accessible={true}
80
- collapsable={false}
81
- focusable={true}
82
- onBlur={[Function]}
83
- onClick={[Function]}
84
- onFocus={[Function]}
85
- onResponderGrant={[Function]}
86
- onResponderMove={[Function]}
87
- onResponderRelease={[Function]}
88
- onResponderTerminate={[Function]}
89
- onResponderTerminationRequest={[Function]}
90
- onStartShouldSetResponder={[Function]}
91
- style={
92
- Array [
93
- Object {
94
- "alignItems": "center",
95
- "flexDirection": "row",
96
- "opacity": 0.6,
97
- },
98
- undefined,
99
- undefined,
100
- ]
101
- }
102
- >
103
- <View
104
- style={
105
- Array [
106
- Object {
107
- "alignItems": "center",
108
- "borderColor": "hsl(210, 10%, 58%)",
109
- "borderRadius": 999,
110
- "borderWidth": 2,
111
- "justifyContent": "center",
112
- "margin": 4,
113
- },
114
- Object {
115
- "height": 20,
116
- "width": 20,
117
- },
118
- undefined,
119
- ]
120
- }
121
- testID="amplify__radio-button__container"
122
- />
123
- <Text
124
- accessibilityRole="text"
125
- style={
126
- Array [
127
- Object {
128
- "fontSize": 16,
129
- "fontWeight": "400",
130
- "lineHeight": 24,
131
- },
132
- Object {
133
- "color": "hsl(210, 50%, 10%)",
134
- },
135
- undefined,
136
- ]
137
- }
138
- >
139
- disabled
140
- </Text>
141
- </View>
142
- `;
143
-
144
- exports[`Radio renders as expected when passing a number to the size prop 1`] = `
145
- <View
146
- accessibilityRole="radio"
147
- accessible={true}
148
- collapsable={false}
149
- focusable={true}
150
- onBlur={[Function]}
151
- onClick={[Function]}
152
- onFocus={[Function]}
153
- onResponderGrant={[Function]}
154
- onResponderMove={[Function]}
155
- onResponderRelease={[Function]}
156
- onResponderTerminate={[Function]}
157
- onResponderTerminationRequest={[Function]}
158
- onStartShouldSetResponder={[Function]}
159
- style={
160
- Array [
161
- Object {
162
- "alignItems": "center",
163
- "flexDirection": "row",
164
- },
165
- undefined,
166
- undefined,
167
- ]
168
- }
169
- >
170
- <View
171
- style={
172
- Array [
173
- Object {
174
- "alignItems": "center",
175
- "borderColor": "hsl(210, 10%, 58%)",
176
- "borderRadius": 999,
177
- "borderWidth": 2,
178
- "justifyContent": "center",
179
- "margin": 4,
180
- },
181
- Object {
182
- "height": 40,
183
- "width": 40,
184
- },
185
- undefined,
186
- ]
187
- }
188
- testID="amplify__radio-button__container"
189
- >
190
- <View
191
- style={
192
- Array [
193
- Object {
194
- "backgroundColor": "hsl(190, 95%, 30%)",
195
- "borderRadius": 999,
196
- },
197
- Object {
198
- "height": 24,
199
- "width": 24,
200
- },
201
- undefined,
202
- ]
203
- }
204
- testID="amplify__radio-button__dot"
205
- />
206
- </View>
207
- <Text
208
- accessibilityRole="text"
209
- style={
210
- Array [
211
- Object {
212
- "fontSize": 16,
213
- "fontWeight": "400",
214
- "lineHeight": 24,
215
- },
216
- Object {
217
- "color": "hsl(210, 50%, 10%)",
218
- },
219
- undefined,
220
- ]
221
- }
222
- >
223
- number
224
- </Text>
225
- </View>
226
- `;
227
-
228
- exports[`Radio renders as expected when selected is false 1`] = `
229
- <View
230
- accessibilityRole="radio"
231
- accessible={true}
232
- collapsable={false}
233
- focusable={true}
234
- onBlur={[Function]}
235
- onClick={[Function]}
236
- onFocus={[Function]}
237
- onResponderGrant={[Function]}
238
- onResponderMove={[Function]}
239
- onResponderRelease={[Function]}
240
- onResponderTerminate={[Function]}
241
- onResponderTerminationRequest={[Function]}
242
- onStartShouldSetResponder={[Function]}
243
- style={
244
- Array [
245
- Object {
246
- "alignItems": "center",
247
- "flexDirection": "row",
248
- },
249
- undefined,
250
- undefined,
251
- ]
252
- }
253
- >
254
- <View
255
- style={
256
- Array [
257
- Object {
258
- "alignItems": "center",
259
- "borderColor": "hsl(210, 10%, 58%)",
260
- "borderRadius": 999,
261
- "borderWidth": 2,
262
- "justifyContent": "center",
263
- "margin": 4,
264
- },
265
- Object {
266
- "height": 20,
267
- "width": 20,
268
- },
269
- undefined,
270
- ]
271
- }
272
- testID="amplify__radio-button__container"
273
- />
274
- <Text
275
- accessibilityRole="text"
276
- style={
277
- Array [
278
- Object {
279
- "fontSize": 16,
280
- "fontWeight": "400",
281
- "lineHeight": 24,
282
- },
283
- Object {
284
- "color": "hsl(210, 50%, 10%)",
285
- },
286
- undefined,
287
- ]
288
- }
289
- >
290
- false
291
- </Text>
292
- </View>
293
- `;
294
-
295
- exports[`Radio renders as expected when selected is true 1`] = `
296
- <View
297
- accessibilityRole="radio"
298
- accessible={true}
299
- collapsable={false}
300
- focusable={true}
301
- onBlur={[Function]}
302
- onClick={[Function]}
303
- onFocus={[Function]}
304
- onResponderGrant={[Function]}
305
- onResponderMove={[Function]}
306
- onResponderRelease={[Function]}
307
- onResponderTerminate={[Function]}
308
- onResponderTerminationRequest={[Function]}
309
- onStartShouldSetResponder={[Function]}
310
- style={
311
- Array [
312
- Object {
313
- "alignItems": "center",
314
- "flexDirection": "row",
315
- },
316
- undefined,
317
- undefined,
318
- ]
319
- }
320
- >
321
- <View
322
- style={
323
- Array [
324
- Object {
325
- "alignItems": "center",
326
- "borderColor": "hsl(210, 10%, 58%)",
327
- "borderRadius": 999,
328
- "borderWidth": 2,
329
- "justifyContent": "center",
330
- "margin": 4,
331
- },
332
- Object {
333
- "height": 20,
334
- "width": 20,
335
- },
336
- undefined,
337
- ]
338
- }
339
- testID="amplify__radio-button__container"
340
- >
341
- <View
342
- style={
343
- Array [
344
- Object {
345
- "backgroundColor": "hsl(190, 95%, 30%)",
346
- "borderRadius": 999,
347
- },
348
- Object {
349
- "height": 12,
350
- "width": 12,
351
- },
352
- undefined,
353
- ]
354
- }
355
- testID="amplify__radio-button__dot"
356
- />
357
- </View>
358
- <Text
359
- accessibilityRole="text"
360
- style={
361
- Array [
362
- Object {
363
- "fontSize": 16,
364
- "fontWeight": "400",
365
- "lineHeight": 24,
366
- },
367
- Object {
368
- "color": "hsl(210, 50%, 10%)",
369
- },
370
- undefined,
371
- ]
372
- }
373
- >
374
- true
375
- </Text>
376
- </View>
377
- `;
378
-
379
- exports[`Radio renders as expected when size is large 1`] = `
380
- <View
381
- accessibilityRole="radio"
382
- accessible={true}
383
- collapsable={false}
384
- focusable={true}
385
- onBlur={[Function]}
386
- onClick={[Function]}
387
- onFocus={[Function]}
388
- onResponderGrant={[Function]}
389
- onResponderMove={[Function]}
390
- onResponderRelease={[Function]}
391
- onResponderTerminate={[Function]}
392
- onResponderTerminationRequest={[Function]}
393
- onStartShouldSetResponder={[Function]}
394
- style={
395
- Array [
396
- Object {
397
- "alignItems": "center",
398
- "flexDirection": "row",
399
- },
400
- undefined,
401
- undefined,
402
- ]
403
- }
404
- >
405
- <View
406
- style={
407
- Array [
408
- Object {
409
- "alignItems": "center",
410
- "borderColor": "hsl(210, 10%, 58%)",
411
- "borderRadius": 999,
412
- "borderWidth": 2,
413
- "justifyContent": "center",
414
- "margin": 4,
415
- },
416
- Object {
417
- "height": 24,
418
- "width": 24,
419
- },
420
- undefined,
421
- ]
422
- }
423
- testID="amplify__radio-button__container"
424
- >
425
- <View
426
- style={
427
- Array [
428
- Object {
429
- "backgroundColor": "hsl(190, 95%, 30%)",
430
- "borderRadius": 999,
431
- },
432
- Object {
433
- "height": 14.399999999999999,
434
- "width": 14.399999999999999,
435
- },
436
- undefined,
437
- ]
438
- }
439
- testID="amplify__radio-button__dot"
440
- />
441
- </View>
442
- <Text
443
- accessibilityRole="text"
444
- style={
445
- Array [
446
- Object {
447
- "fontSize": 16,
448
- "fontWeight": "400",
449
- "lineHeight": 24,
450
- },
451
- Object {
452
- "color": "hsl(210, 50%, 10%)",
453
- },
454
- undefined,
455
- ]
456
- }
457
- >
458
- large
459
- </Text>
460
- </View>
461
- `;
462
-
463
- exports[`Radio renders as expected when size is medium 1`] = `
464
- <View
465
- accessibilityRole="radio"
466
- accessible={true}
467
- collapsable={false}
468
- focusable={true}
469
- onBlur={[Function]}
470
- onClick={[Function]}
471
- onFocus={[Function]}
472
- onResponderGrant={[Function]}
473
- onResponderMove={[Function]}
474
- onResponderRelease={[Function]}
475
- onResponderTerminate={[Function]}
476
- onResponderTerminationRequest={[Function]}
477
- onStartShouldSetResponder={[Function]}
478
- style={
479
- Array [
480
- Object {
481
- "alignItems": "center",
482
- "flexDirection": "row",
483
- },
484
- undefined,
485
- undefined,
486
- ]
487
- }
488
- >
489
- <View
490
- style={
491
- Array [
492
- Object {
493
- "alignItems": "center",
494
- "borderColor": "hsl(210, 10%, 58%)",
495
- "borderRadius": 999,
496
- "borderWidth": 2,
497
- "justifyContent": "center",
498
- "margin": 4,
499
- },
500
- Object {
501
- "height": 20,
502
- "width": 20,
503
- },
504
- undefined,
505
- ]
506
- }
507
- testID="amplify__radio-button__container"
508
- >
509
- <View
510
- style={
511
- Array [
512
- Object {
513
- "backgroundColor": "hsl(190, 95%, 30%)",
514
- "borderRadius": 999,
515
- },
516
- Object {
517
- "height": 12,
518
- "width": 12,
519
- },
520
- undefined,
521
- ]
522
- }
523
- testID="amplify__radio-button__dot"
524
- />
525
- </View>
526
- <Text
527
- accessibilityRole="text"
528
- style={
529
- Array [
530
- Object {
531
- "fontSize": 16,
532
- "fontWeight": "400",
533
- "lineHeight": 24,
534
- },
535
- Object {
536
- "color": "hsl(210, 50%, 10%)",
537
- },
538
- undefined,
539
- ]
540
- }
541
- >
542
- medium
543
- </Text>
544
- </View>
545
- `;
546
-
547
- exports[`Radio renders as expected when size is small 1`] = `
548
- <View
549
- accessibilityRole="radio"
550
- accessible={true}
551
- collapsable={false}
552
- focusable={true}
553
- onBlur={[Function]}
554
- onClick={[Function]}
555
- onFocus={[Function]}
556
- onResponderGrant={[Function]}
557
- onResponderMove={[Function]}
558
- onResponderRelease={[Function]}
559
- onResponderTerminate={[Function]}
560
- onResponderTerminationRequest={[Function]}
561
- onStartShouldSetResponder={[Function]}
562
- style={
563
- Array [
564
- Object {
565
- "alignItems": "center",
566
- "flexDirection": "row",
567
- },
568
- undefined,
569
- undefined,
570
- ]
571
- }
572
- >
573
- <View
574
- style={
575
- Array [
576
- Object {
577
- "alignItems": "center",
578
- "borderColor": "hsl(210, 10%, 58%)",
579
- "borderRadius": 999,
580
- "borderWidth": 2,
581
- "justifyContent": "center",
582
- "margin": 4,
583
- },
584
- Object {
585
- "height": 16,
586
- "width": 16,
587
- },
588
- undefined,
589
- ]
590
- }
591
- testID="amplify__radio-button__container"
592
- >
593
- <View
594
- style={
595
- Array [
596
- Object {
597
- "backgroundColor": "hsl(190, 95%, 30%)",
598
- "borderRadius": 999,
599
- },
600
- Object {
601
- "height": 9.6,
602
- "width": 9.6,
603
- },
604
- undefined,
605
- ]
606
- }
607
- testID="amplify__radio-button__dot"
608
- />
609
- </View>
610
- <Text
611
- accessibilityRole="text"
612
- style={
613
- Array [
614
- Object {
615
- "fontSize": 16,
616
- "fontWeight": "400",
617
- "lineHeight": 24,
618
- },
619
- Object {
620
- "color": "hsl(210, 50%, 10%)",
621
- },
622
- undefined,
623
- ]
624
- }
625
- >
626
- small
627
- </Text>
628
- </View>
629
- `;
630
-
631
- exports[`Radio renders as expected with accessibilityRole 1`] = `
632
- <View
633
- accessibilityRole="none"
634
- accessible={true}
635
- collapsable={false}
636
- focusable={true}
637
- onBlur={[Function]}
638
- onClick={[Function]}
639
- onFocus={[Function]}
640
- onResponderGrant={[Function]}
641
- onResponderMove={[Function]}
642
- onResponderRelease={[Function]}
643
- onResponderTerminate={[Function]}
644
- onResponderTerminationRequest={[Function]}
645
- onStartShouldSetResponder={[Function]}
646
- style={
647
- Array [
648
- Object {
649
- "alignItems": "center",
650
- "flexDirection": "row",
651
- },
652
- undefined,
653
- undefined,
654
- ]
655
- }
656
- >
657
- <View
658
- style={
659
- Array [
660
- Object {
661
- "alignItems": "center",
662
- "borderColor": "hsl(210, 10%, 58%)",
663
- "borderRadius": 999,
664
- "borderWidth": 2,
665
- "justifyContent": "center",
666
- "margin": 4,
667
- },
668
- Object {
669
- "height": 20,
670
- "width": 20,
671
- },
672
- undefined,
673
- ]
674
- }
675
- testID="amplify__radio-button__container"
676
- />
677
- </View>
678
- `;