@navegarti/rn-design-system 0.2.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 (470) hide show
  1. package/LICENSE +20 -0
  2. package/README.md +37 -0
  3. package/lib/module/api/axios-adapter.js +174 -0
  4. package/lib/module/api/axios-adapter.js.map +1 -0
  5. package/lib/module/api/errors.js +91 -0
  6. package/lib/module/api/errors.js.map +1 -0
  7. package/lib/module/api/index.js +30 -0
  8. package/lib/module/api/index.js.map +1 -0
  9. package/lib/module/api/retry-strategy.js +68 -0
  10. package/lib/module/api/retry-strategy.js.map +1 -0
  11. package/lib/module/api/stores/auth-store.js +26 -0
  12. package/lib/module/api/stores/auth-store.js.map +1 -0
  13. package/lib/module/api/types.js +4 -0
  14. package/lib/module/api/types.js.map +1 -0
  15. package/lib/module/api.js +10 -0
  16. package/lib/module/api.js.map +1 -0
  17. package/lib/module/components/Button/index.js +32 -0
  18. package/lib/module/components/Button/index.js.map +1 -0
  19. package/lib/module/components/Button/styles.js +27 -0
  20. package/lib/module/components/Button/styles.js.map +1 -0
  21. package/lib/module/components/Carousel/components/dot.js +42 -0
  22. package/lib/module/components/Carousel/components/dot.js.map +1 -0
  23. package/lib/module/components/Carousel/components/footer.js +22 -0
  24. package/lib/module/components/Carousel/components/footer.js.map +1 -0
  25. package/lib/module/components/Carousel/components/list.js +55 -0
  26. package/lib/module/components/Carousel/components/list.js.map +1 -0
  27. package/lib/module/components/Carousel/components/pagination.js +29 -0
  28. package/lib/module/components/Carousel/components/pagination.js.map +1 -0
  29. package/lib/module/components/Carousel/components/see-all-button.js +24 -0
  30. package/lib/module/components/Carousel/components/see-all-button.js.map +1 -0
  31. package/lib/module/components/Carousel/context.js +15 -0
  32. package/lib/module/components/Carousel/context.js.map +1 -0
  33. package/lib/module/components/Carousel/index.js +142 -0
  34. package/lib/module/components/Carousel/index.js.map +1 -0
  35. package/lib/module/components/Carousel/styles.js +10 -0
  36. package/lib/module/components/Carousel/styles.js.map +1 -0
  37. package/lib/module/components/Carousel/types.js +4 -0
  38. package/lib/module/components/Carousel/types.js.map +1 -0
  39. package/lib/module/components/Checkbox/index.js +34 -0
  40. package/lib/module/components/Checkbox/index.js.map +1 -0
  41. package/lib/module/components/Checkbox/styles.js +9 -0
  42. package/lib/module/components/Checkbox/styles.js.map +1 -0
  43. package/lib/module/components/FAB/components/extended-fab.js +17 -0
  44. package/lib/module/components/FAB/components/extended-fab.js.map +1 -0
  45. package/lib/module/components/FAB/index.js +24 -0
  46. package/lib/module/components/FAB/index.js.map +1 -0
  47. package/lib/module/components/FAB/styles.js +40 -0
  48. package/lib/module/components/FAB/styles.js.map +1 -0
  49. package/lib/module/components/FAB/utils.js +49 -0
  50. package/lib/module/components/FAB/utils.js.map +1 -0
  51. package/lib/module/components/Flex/index.js +4 -0
  52. package/lib/module/components/Flex/index.js.map +1 -0
  53. package/lib/module/components/Flex/styles.js +31 -0
  54. package/lib/module/components/Flex/styles.js.map +1 -0
  55. package/lib/module/components/FormLabel/index.js +10 -0
  56. package/lib/module/components/FormLabel/index.js.map +1 -0
  57. package/lib/module/components/FormLabel/styles.js +10 -0
  58. package/lib/module/components/FormLabel/styles.js.map +1 -0
  59. package/lib/module/components/Input/components/input-control.js +25 -0
  60. package/lib/module/components/Input/components/input-control.js.map +1 -0
  61. package/lib/module/components/Input/components/input-error.js +17 -0
  62. package/lib/module/components/Input/components/input-error.js.map +1 -0
  63. package/lib/module/components/Input/components/input-field.js +48 -0
  64. package/lib/module/components/Input/components/input-field.js.map +1 -0
  65. package/lib/module/components/Input/components/input-icon.js +10 -0
  66. package/lib/module/components/Input/components/input-icon.js.map +1 -0
  67. package/lib/module/components/Input/components/input-password-toggle.js +30 -0
  68. package/lib/module/components/Input/components/input-password-toggle.js.map +1 -0
  69. package/lib/module/components/Input/components/input-root.js +45 -0
  70. package/lib/module/components/Input/components/input-root.js.map +1 -0
  71. package/lib/module/components/Input/context.js +12 -0
  72. package/lib/module/components/Input/context.js.map +1 -0
  73. package/lib/module/components/Input/index.js +18 -0
  74. package/lib/module/components/Input/index.js.map +1 -0
  75. package/lib/module/components/Input/styles.js +40 -0
  76. package/lib/module/components/Input/styles.js.map +1 -0
  77. package/lib/module/components/Input/utils.js +24 -0
  78. package/lib/module/components/Input/utils.js.map +1 -0
  79. package/lib/module/components/Margin/index.js +4 -0
  80. package/lib/module/components/Margin/index.js.map +1 -0
  81. package/lib/module/components/Margin/styles.js +15 -0
  82. package/lib/module/components/Margin/styles.js.map +1 -0
  83. package/lib/module/components/OTPInput/index.js +85 -0
  84. package/lib/module/components/OTPInput/index.js.map +1 -0
  85. package/lib/module/components/OTPInput/styles.js +23 -0
  86. package/lib/module/components/OTPInput/styles.js.map +1 -0
  87. package/lib/module/components/OTPInput/utils.js +24 -0
  88. package/lib/module/components/OTPInput/utils.js.map +1 -0
  89. package/lib/module/components/Padding/index.js +4 -0
  90. package/lib/module/components/Padding/index.js.map +1 -0
  91. package/lib/module/components/Padding/styles.js +15 -0
  92. package/lib/module/components/Padding/styles.js.map +1 -0
  93. package/lib/module/components/Radio/components/radio-item.js +52 -0
  94. package/lib/module/components/Radio/components/radio-item.js.map +1 -0
  95. package/lib/module/components/Radio/context.js +5 -0
  96. package/lib/module/components/Radio/context.js.map +1 -0
  97. package/lib/module/components/Radio/index.js +30 -0
  98. package/lib/module/components/Radio/index.js.map +1 -0
  99. package/lib/module/components/Radio/styles.js +33 -0
  100. package/lib/module/components/Radio/styles.js.map +1 -0
  101. package/lib/module/components/Radio/utils.js +15 -0
  102. package/lib/module/components/Radio/utils.js.map +1 -0
  103. package/lib/module/components/Select/components/error-icon.js +8 -0
  104. package/lib/module/components/Select/components/error-icon.js.map +1 -0
  105. package/lib/module/components/Select/components/select-error.js +17 -0
  106. package/lib/module/components/Select/components/select-error.js.map +1 -0
  107. package/lib/module/components/Select/components/select-field.js +67 -0
  108. package/lib/module/components/Select/components/select-field.js.map +1 -0
  109. package/lib/module/components/Select/context.js +12 -0
  110. package/lib/module/components/Select/context.js.map +1 -0
  111. package/lib/module/components/Select/index.js +26 -0
  112. package/lib/module/components/Select/index.js.map +1 -0
  113. package/lib/module/components/Select/styles.js +15 -0
  114. package/lib/module/components/Select/styles.js.map +1 -0
  115. package/lib/module/components/Skeleton/index.js +44 -0
  116. package/lib/module/components/Skeleton/index.js.map +1 -0
  117. package/lib/module/components/Switch/index.js +55 -0
  118. package/lib/module/components/Switch/index.js.map +1 -0
  119. package/lib/module/components/Switch/styles.js +31 -0
  120. package/lib/module/components/Switch/styles.js.map +1 -0
  121. package/lib/module/components/Switch/utils.js +12 -0
  122. package/lib/module/components/Switch/utils.js.map +1 -0
  123. package/lib/module/components/Text/index.js +4 -0
  124. package/lib/module/components/Text/index.js.map +1 -0
  125. package/lib/module/components/Text/styles.js +25 -0
  126. package/lib/module/components/Text/styles.js.map +1 -0
  127. package/lib/module/components.js +23 -0
  128. package/lib/module/components.js.map +1 -0
  129. package/lib/module/form.js +10 -0
  130. package/lib/module/form.js.map +1 -0
  131. package/lib/module/formValidators/ZodTypeValidator.js +38 -0
  132. package/lib/module/formValidators/ZodTypeValidator.js.map +1 -0
  133. package/lib/module/formValidators/index.js +8 -0
  134. package/lib/module/formValidators/index.js.map +1 -0
  135. package/lib/module/formValidators/types.js +4 -0
  136. package/lib/module/formValidators/types.js.map +1 -0
  137. package/lib/module/hooks/useAppIsActive.js +20 -0
  138. package/lib/module/hooks/useAppIsActive.js.map +1 -0
  139. package/lib/module/hooks/useAppSecurity.js +26 -0
  140. package/lib/module/hooks/useAppSecurity.js.map +1 -0
  141. package/lib/module/hooks/useNetworkStatus.js +55 -0
  142. package/lib/module/hooks/useNetworkStatus.js.map +1 -0
  143. package/lib/module/hooks/useStatusBar.js +26 -0
  144. package/lib/module/hooks/useStatusBar.js.map +1 -0
  145. package/lib/module/hooks.js +12 -0
  146. package/lib/module/hooks.js.map +1 -0
  147. package/lib/module/index.js +53 -0
  148. package/lib/module/index.js.map +1 -0
  149. package/lib/module/libs/tanstack-form.js +5 -0
  150. package/lib/module/libs/tanstack-form.js.map +1 -0
  151. package/lib/module/package.json +1 -0
  152. package/lib/module/utils/camelCase.js +7 -0
  153. package/lib/module/utils/camelCase.js.map +1 -0
  154. package/lib/module/utils/camelCaseJSONKeys.js +29 -0
  155. package/lib/module/utils/camelCaseJSONKeys.js.map +1 -0
  156. package/lib/module/utils/capitalizeWord.js +5 -0
  157. package/lib/module/utils/capitalizeWord.js.map +1 -0
  158. package/lib/module/utils/createLinkingPhoneNumberString.js +10 -0
  159. package/lib/module/utils/createLinkingPhoneNumberString.js.map +1 -0
  160. package/lib/module/utils/dateFormatters.js +34 -0
  161. package/lib/module/utils/dateFormatters.js.map +1 -0
  162. package/lib/module/utils/debounce.js +12 -0
  163. package/lib/module/utils/debounce.js.map +1 -0
  164. package/lib/module/utils/deepLinkParser.js +117 -0
  165. package/lib/module/utils/deepLinkParser.js.map +1 -0
  166. package/lib/module/utils/getAge.js +13 -0
  167. package/lib/module/utils/getAge.js.map +1 -0
  168. package/lib/module/utils/getOnlyNumbers.js +4 -0
  169. package/lib/module/utils/getOnlyNumbers.js.map +1 -0
  170. package/lib/module/utils/isArray.js +7 -0
  171. package/lib/module/utils/isArray.js.map +1 -0
  172. package/lib/module/utils/isObject.js +7 -0
  173. package/lib/module/utils/isObject.js.map +1 -0
  174. package/lib/module/utils/masks.js +5 -0
  175. package/lib/module/utils/masks.js.map +1 -0
  176. package/lib/module/utils/priceFormatter.js +9 -0
  177. package/lib/module/utils/priceFormatter.js.map +1 -0
  178. package/lib/module/utils/removeTextAccents.js +5 -0
  179. package/lib/module/utils/removeTextAccents.js.map +1 -0
  180. package/lib/module/utils/shadowStyledIos.js +8 -0
  181. package/lib/module/utils/shadowStyledIos.js.map +1 -0
  182. package/lib/module/utils/sortBy.js +18 -0
  183. package/lib/module/utils/sortBy.js.map +1 -0
  184. package/lib/module/utils/uniqBy.js +15 -0
  185. package/lib/module/utils/uniqBy.js.map +1 -0
  186. package/lib/module/utils/userFullnameInitialsExtractor.js +19 -0
  187. package/lib/module/utils/userFullnameInitialsExtractor.js.map +1 -0
  188. package/lib/module/utils.js +26 -0
  189. package/lib/module/utils.js.map +1 -0
  190. package/lib/typescript/package.json +1 -0
  191. package/lib/typescript/src/api/axios-adapter.d.ts +61 -0
  192. package/lib/typescript/src/api/axios-adapter.d.ts.map +1 -0
  193. package/lib/typescript/src/api/errors.d.ts +63 -0
  194. package/lib/typescript/src/api/errors.d.ts.map +1 -0
  195. package/lib/typescript/src/api/index.d.ts +21 -0
  196. package/lib/typescript/src/api/index.d.ts.map +1 -0
  197. package/lib/typescript/src/api/retry-strategy.d.ts +21 -0
  198. package/lib/typescript/src/api/retry-strategy.d.ts.map +1 -0
  199. package/lib/typescript/src/api/stores/auth-store.d.ts +15 -0
  200. package/lib/typescript/src/api/stores/auth-store.d.ts.map +1 -0
  201. package/lib/typescript/src/api/types.d.ts +68 -0
  202. package/lib/typescript/src/api/types.d.ts.map +1 -0
  203. package/lib/typescript/src/api.d.ts +8 -0
  204. package/lib/typescript/src/api.d.ts.map +1 -0
  205. package/lib/typescript/src/components/Button/index.d.ts +478 -0
  206. package/lib/typescript/src/components/Button/index.d.ts.map +1 -0
  207. package/lib/typescript/src/components/Button/styles.d.ts +318 -0
  208. package/lib/typescript/src/components/Button/styles.d.ts.map +1 -0
  209. package/lib/typescript/src/components/Carousel/components/dot.d.ts +7 -0
  210. package/lib/typescript/src/components/Carousel/components/dot.d.ts.map +1 -0
  211. package/lib/typescript/src/components/Carousel/components/footer.d.ts +6 -0
  212. package/lib/typescript/src/components/Carousel/components/footer.d.ts.map +1 -0
  213. package/lib/typescript/src/components/Carousel/components/list.d.ts +8 -0
  214. package/lib/typescript/src/components/Carousel/components/list.d.ts.map +1 -0
  215. package/lib/typescript/src/components/Carousel/components/pagination.d.ts +2 -0
  216. package/lib/typescript/src/components/Carousel/components/pagination.d.ts.map +1 -0
  217. package/lib/typescript/src/components/Carousel/components/see-all-button.d.ts +7 -0
  218. package/lib/typescript/src/components/Carousel/components/see-all-button.d.ts.map +1 -0
  219. package/lib/typescript/src/components/Carousel/context.d.ts +4 -0
  220. package/lib/typescript/src/components/Carousel/context.d.ts.map +1 -0
  221. package/lib/typescript/src/components/Carousel/index.d.ts +394 -0
  222. package/lib/typescript/src/components/Carousel/index.d.ts.map +1 -0
  223. package/lib/typescript/src/components/Carousel/styles.d.ts +79 -0
  224. package/lib/typescript/src/components/Carousel/styles.d.ts.map +1 -0
  225. package/lib/typescript/src/components/Carousel/types.d.ts +40 -0
  226. package/lib/typescript/src/components/Carousel/types.d.ts.map +1 -0
  227. package/lib/typescript/src/components/Checkbox/index.d.ts +10 -0
  228. package/lib/typescript/src/components/Checkbox/index.d.ts.map +1 -0
  229. package/lib/typescript/src/components/Checkbox/styles.d.ts +154 -0
  230. package/lib/typescript/src/components/Checkbox/styles.d.ts.map +1 -0
  231. package/lib/typescript/src/components/FAB/components/extended-fab.d.ts +3 -0
  232. package/lib/typescript/src/components/FAB/components/extended-fab.d.ts.map +1 -0
  233. package/lib/typescript/src/components/FAB/index.d.ts +8 -0
  234. package/lib/typescript/src/components/FAB/index.d.ts.map +1 -0
  235. package/lib/typescript/src/components/FAB/styles.d.ts +807 -0
  236. package/lib/typescript/src/components/FAB/styles.d.ts.map +1 -0
  237. package/lib/typescript/src/components/FAB/utils.d.ts +19 -0
  238. package/lib/typescript/src/components/FAB/utils.d.ts.map +1 -0
  239. package/lib/typescript/src/components/Flex/index.d.ts +2 -0
  240. package/lib/typescript/src/components/Flex/index.d.ts.map +1 -0
  241. package/lib/typescript/src/components/Flex/styles.d.ts +135 -0
  242. package/lib/typescript/src/components/Flex/styles.d.ts.map +1 -0
  243. package/lib/typescript/src/components/FormLabel/index.d.ts +3 -0
  244. package/lib/typescript/src/components/FormLabel/index.d.ts.map +1 -0
  245. package/lib/typescript/src/components/FormLabel/styles.d.ts +158 -0
  246. package/lib/typescript/src/components/FormLabel/styles.d.ts.map +1 -0
  247. package/lib/typescript/src/components/Input/components/input-control.d.ts +3 -0
  248. package/lib/typescript/src/components/Input/components/input-control.d.ts.map +1 -0
  249. package/lib/typescript/src/components/Input/components/input-error.d.ts +3 -0
  250. package/lib/typescript/src/components/Input/components/input-error.d.ts.map +1 -0
  251. package/lib/typescript/src/components/Input/components/input-field.d.ts +7 -0
  252. package/lib/typescript/src/components/Input/components/input-field.d.ts.map +1 -0
  253. package/lib/typescript/src/components/Input/components/input-icon.d.ts +3 -0
  254. package/lib/typescript/src/components/Input/components/input-icon.d.ts.map +1 -0
  255. package/lib/typescript/src/components/Input/components/input-password-toggle.d.ts +2 -0
  256. package/lib/typescript/src/components/Input/components/input-password-toggle.d.ts.map +1 -0
  257. package/lib/typescript/src/components/Input/components/input-root.d.ts +9 -0
  258. package/lib/typescript/src/components/Input/components/input-root.d.ts.map +1 -0
  259. package/lib/typescript/src/components/Input/context.d.ts +15 -0
  260. package/lib/typescript/src/components/Input/context.d.ts.map +1 -0
  261. package/lib/typescript/src/components/Input/index.d.ts +17 -0
  262. package/lib/typescript/src/components/Input/index.d.ts.map +1 -0
  263. package/lib/typescript/src/components/Input/styles.d.ts +738 -0
  264. package/lib/typescript/src/components/Input/styles.d.ts.map +1 -0
  265. package/lib/typescript/src/components/Input/utils.d.ts +3 -0
  266. package/lib/typescript/src/components/Input/utils.d.ts.map +1 -0
  267. package/lib/typescript/src/components/Margin/index.d.ts +2 -0
  268. package/lib/typescript/src/components/Margin/index.d.ts.map +1 -0
  269. package/lib/typescript/src/components/Margin/styles.d.ts +144 -0
  270. package/lib/typescript/src/components/Margin/styles.d.ts.map +1 -0
  271. package/lib/typescript/src/components/OTPInput/index.d.ts +18 -0
  272. package/lib/typescript/src/components/OTPInput/index.d.ts.map +1 -0
  273. package/lib/typescript/src/components/OTPInput/styles.d.ts +214 -0
  274. package/lib/typescript/src/components/OTPInput/styles.d.ts.map +1 -0
  275. package/lib/typescript/src/components/OTPInput/utils.d.ts +3 -0
  276. package/lib/typescript/src/components/OTPInput/utils.d.ts.map +1 -0
  277. package/lib/typescript/src/components/Padding/index.d.ts +2 -0
  278. package/lib/typescript/src/components/Padding/index.d.ts.map +1 -0
  279. package/lib/typescript/src/components/Padding/styles.d.ts +144 -0
  280. package/lib/typescript/src/components/Padding/styles.d.ts.map +1 -0
  281. package/lib/typescript/src/components/Radio/components/radio-item.d.ts +8 -0
  282. package/lib/typescript/src/components/Radio/components/radio-item.d.ts.map +1 -0
  283. package/lib/typescript/src/components/Radio/context.d.ts +8 -0
  284. package/lib/typescript/src/components/Radio/context.d.ts.map +1 -0
  285. package/lib/typescript/src/components/Radio/index.d.ts +86 -0
  286. package/lib/typescript/src/components/Radio/index.d.ts.map +1 -0
  287. package/lib/typescript/src/components/Radio/styles.d.ts +348 -0
  288. package/lib/typescript/src/components/Radio/styles.d.ts.map +1 -0
  289. package/lib/typescript/src/components/Radio/utils.d.ts +2 -0
  290. package/lib/typescript/src/components/Radio/utils.d.ts.map +1 -0
  291. package/lib/typescript/src/components/Select/components/error-icon.d.ts +2 -0
  292. package/lib/typescript/src/components/Select/components/error-icon.d.ts.map +1 -0
  293. package/lib/typescript/src/components/Select/components/select-error.d.ts +3 -0
  294. package/lib/typescript/src/components/Select/components/select-error.d.ts.map +1 -0
  295. package/lib/typescript/src/components/Select/components/select-field.d.ts +5 -0
  296. package/lib/typescript/src/components/Select/components/select-field.d.ts.map +1 -0
  297. package/lib/typescript/src/components/Select/context.d.ts +7 -0
  298. package/lib/typescript/src/components/Select/context.d.ts.map +1 -0
  299. package/lib/typescript/src/components/Select/index.d.ts +11 -0
  300. package/lib/typescript/src/components/Select/index.d.ts.map +1 -0
  301. package/lib/typescript/src/components/Select/styles.d.ts +315 -0
  302. package/lib/typescript/src/components/Select/styles.d.ts.map +1 -0
  303. package/lib/typescript/src/components/Skeleton/index.d.ts +11 -0
  304. package/lib/typescript/src/components/Skeleton/index.d.ts.map +1 -0
  305. package/lib/typescript/src/components/Switch/index.d.ts +11 -0
  306. package/lib/typescript/src/components/Switch/index.d.ts.map +1 -0
  307. package/lib/typescript/src/components/Switch/styles.d.ts +344 -0
  308. package/lib/typescript/src/components/Switch/styles.d.ts.map +1 -0
  309. package/lib/typescript/src/components/Switch/utils.d.ts +2 -0
  310. package/lib/typescript/src/components/Switch/utils.d.ts.map +1 -0
  311. package/lib/typescript/src/components/Text/index.d.ts +3 -0
  312. package/lib/typescript/src/components/Text/index.d.ts.map +1 -0
  313. package/lib/typescript/src/components/Text/styles.d.ts +169 -0
  314. package/lib/typescript/src/components/Text/styles.d.ts.map +1 -0
  315. package/lib/typescript/src/components.d.ts +20 -0
  316. package/lib/typescript/src/components.d.ts.map +1 -0
  317. package/lib/typescript/src/form.d.ts +7 -0
  318. package/lib/typescript/src/form.d.ts.map +1 -0
  319. package/lib/typescript/src/formValidators/ZodTypeValidator.d.ts +11 -0
  320. package/lib/typescript/src/formValidators/ZodTypeValidator.d.ts.map +1 -0
  321. package/lib/typescript/src/formValidators/index.d.ts +4 -0
  322. package/lib/typescript/src/formValidators/index.d.ts.map +1 -0
  323. package/lib/typescript/src/formValidators/types.d.ts +16 -0
  324. package/lib/typescript/src/formValidators/types.d.ts.map +1 -0
  325. package/lib/typescript/src/hooks/useAppIsActive.d.ts +2 -0
  326. package/lib/typescript/src/hooks/useAppIsActive.d.ts.map +1 -0
  327. package/lib/typescript/src/hooks/useAppSecurity.d.ts +8 -0
  328. package/lib/typescript/src/hooks/useAppSecurity.d.ts.map +1 -0
  329. package/lib/typescript/src/hooks/useNetworkStatus.d.ts +7 -0
  330. package/lib/typescript/src/hooks/useNetworkStatus.d.ts.map +1 -0
  331. package/lib/typescript/src/hooks/useStatusBar.d.ts +7 -0
  332. package/lib/typescript/src/hooks/useStatusBar.d.ts.map +1 -0
  333. package/lib/typescript/src/hooks.d.ts +9 -0
  334. package/lib/typescript/src/hooks.d.ts.map +1 -0
  335. package/lib/typescript/src/index.d.ts +45 -0
  336. package/lib/typescript/src/index.d.ts.map +1 -0
  337. package/lib/typescript/src/libs/tanstack-form.d.ts +3 -0
  338. package/lib/typescript/src/libs/tanstack-form.d.ts.map +1 -0
  339. package/lib/typescript/src/utils/camelCase.d.ts +2 -0
  340. package/lib/typescript/src/utils/camelCase.d.ts.map +1 -0
  341. package/lib/typescript/src/utils/camelCaseJSONKeys.d.ts +3 -0
  342. package/lib/typescript/src/utils/camelCaseJSONKeys.d.ts.map +1 -0
  343. package/lib/typescript/src/utils/capitalizeWord.d.ts +3 -0
  344. package/lib/typescript/src/utils/capitalizeWord.d.ts.map +1 -0
  345. package/lib/typescript/src/utils/createLinkingPhoneNumberString.d.ts +3 -0
  346. package/lib/typescript/src/utils/createLinkingPhoneNumberString.d.ts.map +1 -0
  347. package/lib/typescript/src/utils/dateFormatters.d.ts +7 -0
  348. package/lib/typescript/src/utils/dateFormatters.d.ts.map +1 -0
  349. package/lib/typescript/src/utils/debounce.d.ts +2 -0
  350. package/lib/typescript/src/utils/debounce.d.ts.map +1 -0
  351. package/lib/typescript/src/utils/deepLinkParser.d.ts +7 -0
  352. package/lib/typescript/src/utils/deepLinkParser.d.ts.map +1 -0
  353. package/lib/typescript/src/utils/getAge.d.ts +2 -0
  354. package/lib/typescript/src/utils/getAge.d.ts.map +1 -0
  355. package/lib/typescript/src/utils/getOnlyNumbers.d.ts +2 -0
  356. package/lib/typescript/src/utils/getOnlyNumbers.d.ts.map +1 -0
  357. package/lib/typescript/src/utils/isArray.d.ts +2 -0
  358. package/lib/typescript/src/utils/isArray.d.ts.map +1 -0
  359. package/lib/typescript/src/utils/isObject.d.ts +2 -0
  360. package/lib/typescript/src/utils/isObject.d.ts.map +1 -0
  361. package/lib/typescript/src/utils/masks.d.ts +3 -0
  362. package/lib/typescript/src/utils/masks.d.ts.map +1 -0
  363. package/lib/typescript/src/utils/priceFormatter.d.ts +2 -0
  364. package/lib/typescript/src/utils/priceFormatter.d.ts.map +1 -0
  365. package/lib/typescript/src/utils/removeTextAccents.d.ts +3 -0
  366. package/lib/typescript/src/utils/removeTextAccents.d.ts.map +1 -0
  367. package/lib/typescript/src/utils/shadowStyledIos.d.ts +3 -0
  368. package/lib/typescript/src/utils/shadowStyledIos.d.ts.map +1 -0
  369. package/lib/typescript/src/utils/sortBy.d.ts +2 -0
  370. package/lib/typescript/src/utils/sortBy.d.ts.map +1 -0
  371. package/lib/typescript/src/utils/uniqBy.d.ts +2 -0
  372. package/lib/typescript/src/utils/uniqBy.d.ts.map +1 -0
  373. package/lib/typescript/src/utils/userFullnameInitialsExtractor.d.ts +3 -0
  374. package/lib/typescript/src/utils/userFullnameInitialsExtractor.d.ts.map +1 -0
  375. package/lib/typescript/src/utils.d.ts +23 -0
  376. package/lib/typescript/src/utils.d.ts.map +1 -0
  377. package/package.json +234 -0
  378. package/src/api/axios-adapter.ts +272 -0
  379. package/src/api/errors.ts +113 -0
  380. package/src/api/index.ts +27 -0
  381. package/src/api/retry-strategy.ts +86 -0
  382. package/src/api/stores/auth-store.ts +26 -0
  383. package/src/api/types.ts +91 -0
  384. package/src/api.tsx +17 -0
  385. package/src/components/Button/index.tsx +35 -0
  386. package/src/components/Button/styles.ts +28 -0
  387. package/src/components/Carousel/components/dot.tsx +43 -0
  388. package/src/components/Carousel/components/footer.tsx +21 -0
  389. package/src/components/Carousel/components/list.tsx +81 -0
  390. package/src/components/Carousel/components/pagination.tsx +16 -0
  391. package/src/components/Carousel/components/see-all-button.tsx +25 -0
  392. package/src/components/Carousel/context.tsx +19 -0
  393. package/src/components/Carousel/index.tsx +191 -0
  394. package/src/components/Carousel/styles.ts +8 -0
  395. package/src/components/Carousel/types.ts +45 -0
  396. package/src/components/Checkbox/index.tsx +42 -0
  397. package/src/components/Checkbox/styles.ts +7 -0
  398. package/src/components/FAB/components/extended-fab.tsx +17 -0
  399. package/src/components/FAB/index.tsx +22 -0
  400. package/src/components/FAB/styles.ts +61 -0
  401. package/src/components/FAB/utils.ts +45 -0
  402. package/src/components/Flex/index.tsx +1 -0
  403. package/src/components/Flex/styles.ts +47 -0
  404. package/src/components/FormLabel/index.tsx +6 -0
  405. package/src/components/FormLabel/styles.ts +8 -0
  406. package/src/components/Input/components/input-control.tsx +20 -0
  407. package/src/components/Input/components/input-error.tsx +14 -0
  408. package/src/components/Input/components/input-field.tsx +55 -0
  409. package/src/components/Input/components/input-icon.tsx +7 -0
  410. package/src/components/Input/components/input-password-toggle.tsx +19 -0
  411. package/src/components/Input/components/input-root.tsx +55 -0
  412. package/src/components/Input/context.tsx +26 -0
  413. package/src/components/Input/index.tsx +17 -0
  414. package/src/components/Input/styles.ts +45 -0
  415. package/src/components/Input/utils.ts +27 -0
  416. package/src/components/Margin/index.tsx +1 -0
  417. package/src/components/Margin/styles.ts +23 -0
  418. package/src/components/OTPInput/index.tsx +116 -0
  419. package/src/components/OTPInput/styles.ts +23 -0
  420. package/src/components/OTPInput/utils.ts +31 -0
  421. package/src/components/Padding/index.tsx +1 -0
  422. package/src/components/Padding/styles.ts +23 -0
  423. package/src/components/Radio/components/radio-item.tsx +53 -0
  424. package/src/components/Radio/context.tsx +10 -0
  425. package/src/components/Radio/index.tsx +32 -0
  426. package/src/components/Radio/styles.ts +38 -0
  427. package/src/components/Radio/utils.ts +19 -0
  428. package/src/components/Select/components/error-icon.tsx +3 -0
  429. package/src/components/Select/components/select-error.tsx +14 -0
  430. package/src/components/Select/components/select-field.tsx +72 -0
  431. package/src/components/Select/context.tsx +17 -0
  432. package/src/components/Select/index.tsx +24 -0
  433. package/src/components/Select/styles.ts +15 -0
  434. package/src/components/Skeleton/index.tsx +60 -0
  435. package/src/components/Switch/index.tsx +61 -0
  436. package/src/components/Switch/styles.ts +32 -0
  437. package/src/components/Switch/utils.ts +15 -0
  438. package/src/components/Text/index.tsx +2 -0
  439. package/src/components/Text/styles.ts +44 -0
  440. package/src/components.tsx +20 -0
  441. package/src/form.tsx +7 -0
  442. package/src/formValidators/ZodTypeValidator.ts +58 -0
  443. package/src/formValidators/index.ts +8 -0
  444. package/src/formValidators/types.ts +21 -0
  445. package/src/hooks/useAppIsActive.ts +28 -0
  446. package/src/hooks/useAppSecurity.tsx +35 -0
  447. package/src/hooks/useNetworkStatus.ts +75 -0
  448. package/src/hooks/useStatusBar.ts +34 -0
  449. package/src/hooks.tsx +9 -0
  450. package/src/index.tsx +50 -0
  451. package/src/libs/tanstack-form.tsx +3 -0
  452. package/src/utils/camelCase.ts +6 -0
  453. package/src/utils/camelCaseJSONKeys.ts +31 -0
  454. package/src/utils/capitalizeWord.ts +4 -0
  455. package/src/utils/createLinkingPhoneNumberString.ts +13 -0
  456. package/src/utils/dateFormatters.ts +48 -0
  457. package/src/utils/debounce.ts +15 -0
  458. package/src/utils/deepLinkParser.ts +88 -0
  459. package/src/utils/getAge.ts +12 -0
  460. package/src/utils/getOnlyNumbers.ts +1 -0
  461. package/src/utils/isArray.ts +4 -0
  462. package/src/utils/isObject.ts +4 -0
  463. package/src/utils/masks.ts +3 -0
  464. package/src/utils/priceFormatter.ts +11 -0
  465. package/src/utils/removeTextAccents.ts +4 -0
  466. package/src/utils/shadowStyledIos.ts +6 -0
  467. package/src/utils/sortBy.ts +21 -0
  468. package/src/utils/uniqBy.ts +20 -0
  469. package/src/utils/userFullnameInitialsExtractor.ts +23 -0
  470. package/src/utils.tsx +23 -0
@@ -0,0 +1,478 @@
1
+ import { type ButtonProps } from './styles';
2
+ declare const Button: ((props: ButtonProps) => import("react/jsx-runtime").JSX.Element) & {
3
+ Square: import("@emotion/native").StyledComponent<{
4
+ color?: string;
5
+ paddingVertical?: number;
6
+ paddingHorizontal?: number;
7
+ margin?: import("react-native").DimensionValue;
8
+ } & Readonly<Omit<Readonly<{
9
+ children?: React.ReactNode | undefined;
10
+ delayLongPress?: number | undefined;
11
+ delayPressIn?: number | undefined;
12
+ delayPressOut?: number | undefined;
13
+ disabled?: boolean | undefined;
14
+ focusable?: boolean | undefined;
15
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
16
+ id?: string;
17
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
18
+ nativeID?: string | undefined;
19
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
20
+ onBlur?: ((event: import("react-native").BlurEvent) => unknown) | undefined;
21
+ onFocus?: ((event: import("react-native").FocusEvent) => unknown) | undefined;
22
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
23
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
24
+ onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
25
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
26
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
27
+ pressRetentionOffset?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
28
+ rejectResponderTermination?: boolean | undefined;
29
+ testID?: string | undefined;
30
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
31
+ } & import("react-native/types_generated/Libraries/Components/Touchable/TouchableWithoutFeedback").TouchableWithoutFeedbackPropsAndroid & Readonly<Omit<Readonly<{
32
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
33
+ "aria-labelledby"?: string | undefined;
34
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
35
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
36
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
37
+ screenReaderFocusable?: boolean;
38
+ }>, "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
39
+ accessibilityIgnoresInvertColors?: boolean | undefined;
40
+ accessibilityViewIsModal?: boolean | undefined;
41
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
42
+ accessibilityLargeContentTitle?: string | undefined;
43
+ "aria-modal"?: boolean | undefined;
44
+ accessibilityElementsHidden?: boolean | undefined;
45
+ accessibilityLanguage?: string | undefined;
46
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
47
+ }>, "role" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
48
+ accessible?: boolean | undefined;
49
+ accessibilityLabel?: string | undefined;
50
+ accessibilityHint?: string | undefined;
51
+ "aria-label"?: string | undefined;
52
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
53
+ role?: import("react-native").Role | undefined;
54
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
55
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
56
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
57
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
58
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
59
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
60
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
61
+ "aria-busy"?: boolean | undefined;
62
+ "aria-checked"?: (boolean | undefined) | "mixed";
63
+ "aria-disabled"?: boolean | undefined;
64
+ "aria-expanded"?: boolean | undefined;
65
+ "aria-selected"?: boolean | undefined;
66
+ "aria-hidden"?: boolean | undefined;
67
+ }>>, "style" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
68
+ hasTVPreferredFocus?: boolean | undefined;
69
+ nextFocusDown?: number | undefined;
70
+ nextFocusForward?: number | undefined;
71
+ nextFocusLeft?: number | undefined;
72
+ nextFocusRight?: number | undefined;
73
+ nextFocusUp?: number | undefined;
74
+ }>, "style" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
75
+ activeOpacity?: number | undefined;
76
+ style?: import("react-native/types_generated/Libraries/Animated/createAnimatedComponent").WithAnimatedValue<import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp> | undefined;
77
+ hostRef?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Animated/AnimatedExports").View>> | undefined;
78
+ }>, never>> & {
79
+ theme?: import("@emotion/react").Theme;
80
+ as?: React.ElementType;
81
+ }, {}, {}>;
82
+ Outline: import("@emotion/native").StyledComponent<{
83
+ color?: string;
84
+ paddingVertical?: number;
85
+ paddingHorizontal?: number;
86
+ margin?: import("react-native").DimensionValue;
87
+ } & Readonly<Omit<Readonly<{
88
+ children?: React.ReactNode | undefined;
89
+ delayLongPress?: number | undefined;
90
+ delayPressIn?: number | undefined;
91
+ delayPressOut?: number | undefined;
92
+ disabled?: boolean | undefined;
93
+ focusable?: boolean | undefined;
94
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
95
+ id?: string;
96
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
97
+ nativeID?: string | undefined;
98
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
99
+ onBlur?: ((event: import("react-native").BlurEvent) => unknown) | undefined;
100
+ onFocus?: ((event: import("react-native").FocusEvent) => unknown) | undefined;
101
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
102
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
103
+ onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
104
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
105
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
106
+ pressRetentionOffset?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
107
+ rejectResponderTermination?: boolean | undefined;
108
+ testID?: string | undefined;
109
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
110
+ } & import("react-native/types_generated/Libraries/Components/Touchable/TouchableWithoutFeedback").TouchableWithoutFeedbackPropsAndroid & Readonly<Omit<Readonly<{
111
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
112
+ "aria-labelledby"?: string | undefined;
113
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
114
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
115
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
116
+ screenReaderFocusable?: boolean;
117
+ }>, "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
118
+ accessibilityIgnoresInvertColors?: boolean | undefined;
119
+ accessibilityViewIsModal?: boolean | undefined;
120
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
121
+ accessibilityLargeContentTitle?: string | undefined;
122
+ "aria-modal"?: boolean | undefined;
123
+ accessibilityElementsHidden?: boolean | undefined;
124
+ accessibilityLanguage?: string | undefined;
125
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
126
+ }>, "role" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
127
+ accessible?: boolean | undefined;
128
+ accessibilityLabel?: string | undefined;
129
+ accessibilityHint?: string | undefined;
130
+ "aria-label"?: string | undefined;
131
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
132
+ role?: import("react-native").Role | undefined;
133
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
134
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
135
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
136
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
137
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
138
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
139
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
140
+ "aria-busy"?: boolean | undefined;
141
+ "aria-checked"?: (boolean | undefined) | "mixed";
142
+ "aria-disabled"?: boolean | undefined;
143
+ "aria-expanded"?: boolean | undefined;
144
+ "aria-selected"?: boolean | undefined;
145
+ "aria-hidden"?: boolean | undefined;
146
+ }>>, "style" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
147
+ hasTVPreferredFocus?: boolean | undefined;
148
+ nextFocusDown?: number | undefined;
149
+ nextFocusForward?: number | undefined;
150
+ nextFocusLeft?: number | undefined;
151
+ nextFocusRight?: number | undefined;
152
+ nextFocusUp?: number | undefined;
153
+ }>, "style" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
154
+ activeOpacity?: number | undefined;
155
+ style?: import("react-native/types_generated/Libraries/Animated/createAnimatedComponent").WithAnimatedValue<import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp> | undefined;
156
+ hostRef?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Animated/AnimatedExports").View>> | undefined;
157
+ }>, never>> & {
158
+ theme?: import("@emotion/react").Theme;
159
+ as?: React.ElementType;
160
+ }, {}, {}>;
161
+ Rounded: import("@emotion/native").StyledComponent<{
162
+ color?: string;
163
+ paddingVertical?: number;
164
+ paddingHorizontal?: number;
165
+ margin?: import("react-native").DimensionValue;
166
+ } & Readonly<Omit<Readonly<{
167
+ children?: React.ReactNode | undefined;
168
+ delayLongPress?: number | undefined;
169
+ delayPressIn?: number | undefined;
170
+ delayPressOut?: number | undefined;
171
+ disabled?: boolean | undefined;
172
+ focusable?: boolean | undefined;
173
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
174
+ id?: string;
175
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
176
+ nativeID?: string | undefined;
177
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
178
+ onBlur?: ((event: import("react-native").BlurEvent) => unknown) | undefined;
179
+ onFocus?: ((event: import("react-native").FocusEvent) => unknown) | undefined;
180
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
181
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
182
+ onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
183
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
184
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
185
+ pressRetentionOffset?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
186
+ rejectResponderTermination?: boolean | undefined;
187
+ testID?: string | undefined;
188
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
189
+ } & import("react-native/types_generated/Libraries/Components/Touchable/TouchableWithoutFeedback").TouchableWithoutFeedbackPropsAndroid & Readonly<Omit<Readonly<{
190
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
191
+ "aria-labelledby"?: string | undefined;
192
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
193
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
194
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
195
+ screenReaderFocusable?: boolean;
196
+ }>, "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
197
+ accessibilityIgnoresInvertColors?: boolean | undefined;
198
+ accessibilityViewIsModal?: boolean | undefined;
199
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
200
+ accessibilityLargeContentTitle?: string | undefined;
201
+ "aria-modal"?: boolean | undefined;
202
+ accessibilityElementsHidden?: boolean | undefined;
203
+ accessibilityLanguage?: string | undefined;
204
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
205
+ }>, "role" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
206
+ accessible?: boolean | undefined;
207
+ accessibilityLabel?: string | undefined;
208
+ accessibilityHint?: string | undefined;
209
+ "aria-label"?: string | undefined;
210
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
211
+ role?: import("react-native").Role | undefined;
212
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
213
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
214
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
215
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
216
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
217
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
218
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
219
+ "aria-busy"?: boolean | undefined;
220
+ "aria-checked"?: (boolean | undefined) | "mixed";
221
+ "aria-disabled"?: boolean | undefined;
222
+ "aria-expanded"?: boolean | undefined;
223
+ "aria-selected"?: boolean | undefined;
224
+ "aria-hidden"?: boolean | undefined;
225
+ }>>, "style" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
226
+ hasTVPreferredFocus?: boolean | undefined;
227
+ nextFocusDown?: number | undefined;
228
+ nextFocusForward?: number | undefined;
229
+ nextFocusLeft?: number | undefined;
230
+ nextFocusRight?: number | undefined;
231
+ nextFocusUp?: number | undefined;
232
+ }>, "style" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
233
+ activeOpacity?: number | undefined;
234
+ style?: import("react-native/types_generated/Libraries/Animated/createAnimatedComponent").WithAnimatedValue<import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp> | undefined;
235
+ hostRef?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Animated/AnimatedExports").View>> | undefined;
236
+ }>, never>> & {
237
+ theme?: import("@emotion/react").Theme;
238
+ as?: React.ElementType;
239
+ }, {}, {}>;
240
+ Pill: import("@emotion/native").StyledComponent<{
241
+ color?: string;
242
+ paddingVertical?: number;
243
+ paddingHorizontal?: number;
244
+ margin?: import("react-native").DimensionValue;
245
+ } & Readonly<Omit<Readonly<{
246
+ children?: React.ReactNode | undefined;
247
+ delayLongPress?: number | undefined;
248
+ delayPressIn?: number | undefined;
249
+ delayPressOut?: number | undefined;
250
+ disabled?: boolean | undefined;
251
+ focusable?: boolean | undefined;
252
+ hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
253
+ id?: string;
254
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
255
+ nativeID?: string | undefined;
256
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
257
+ onBlur?: ((event: import("react-native").BlurEvent) => unknown) | undefined;
258
+ onFocus?: ((event: import("react-native").FocusEvent) => unknown) | undefined;
259
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
260
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
261
+ onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
262
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
263
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
264
+ pressRetentionOffset?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
265
+ rejectResponderTermination?: boolean | undefined;
266
+ testID?: string | undefined;
267
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
268
+ } & import("react-native/types_generated/Libraries/Components/Touchable/TouchableWithoutFeedback").TouchableWithoutFeedbackPropsAndroid & Readonly<Omit<Readonly<{
269
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
270
+ "aria-labelledby"?: string | undefined;
271
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
272
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
273
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
274
+ screenReaderFocusable?: boolean;
275
+ }>, "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
276
+ accessibilityIgnoresInvertColors?: boolean | undefined;
277
+ accessibilityViewIsModal?: boolean | undefined;
278
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
279
+ accessibilityLargeContentTitle?: string | undefined;
280
+ "aria-modal"?: boolean | undefined;
281
+ accessibilityElementsHidden?: boolean | undefined;
282
+ accessibilityLanguage?: string | undefined;
283
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
284
+ }>, "role" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
285
+ accessible?: boolean | undefined;
286
+ accessibilityLabel?: string | undefined;
287
+ accessibilityHint?: string | undefined;
288
+ "aria-label"?: string | undefined;
289
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
290
+ role?: import("react-native").Role | undefined;
291
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
292
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
293
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
294
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
295
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
296
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
297
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
298
+ "aria-busy"?: boolean | undefined;
299
+ "aria-checked"?: (boolean | undefined) | "mixed";
300
+ "aria-disabled"?: boolean | undefined;
301
+ "aria-expanded"?: boolean | undefined;
302
+ "aria-selected"?: boolean | undefined;
303
+ "aria-hidden"?: boolean | undefined;
304
+ }>>, "style" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
305
+ hasTVPreferredFocus?: boolean | undefined;
306
+ nextFocusDown?: number | undefined;
307
+ nextFocusForward?: number | undefined;
308
+ nextFocusLeft?: number | undefined;
309
+ nextFocusRight?: number | undefined;
310
+ nextFocusUp?: number | undefined;
311
+ }>, "style" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
312
+ activeOpacity?: number | undefined;
313
+ style?: import("react-native/types_generated/Libraries/Animated/createAnimatedComponent").WithAnimatedValue<import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp> | undefined;
314
+ hostRef?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Animated/AnimatedExports").View>> | undefined;
315
+ }>, never>> & {
316
+ theme?: import("@emotion/react").Theme;
317
+ as?: React.ElementType;
318
+ }, {}, {}>;
319
+ Text: import("@emotion/native").StyledComponent<Omit<Readonly<Omit<Readonly<{
320
+ onPointerEnter?: (event: import("react-native").PointerEvent) => void;
321
+ onPointerLeave?: (event: import("react-native").PointerEvent) => void;
322
+ onPointerMove?: (event: import("react-native").PointerEvent) => void;
323
+ }>, "adjustsFontSizeToFit" | "dynamicTypeRamp" | "suppressHighlighting" | "lineBreakStrategyIOS" | "disabled" | "selectionColor" | "dataDetectorType" | "textBreakStrategy" | "minimumFontScale" | "onAccessibilityAction" | "allowFontScaling" | "android_hyphenationFrequency" | "children" | "ellipsizeMode" | "id" | "maxFontSizeMultiplier" | "nativeID" | "numberOfLines" | "onLayout" | "onLongPress" | "onPress" | "onPressIn" | "onPressOut" | "onResponderGrant" | "onResponderMove" | "onResponderRelease" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onMoveShouldSetResponder" | "onTextLayout" | "pressRetentionOffset" | "role" | "selectable" | "style" | "testID" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable"> & Omit<import("react-native/types_generated/Libraries/Text/TextProps").TextPropsIOS, keyof import("react-native/types_generated/Libraries/Text/TextProps").TextPropsAndroid | "onAccessibilityAction" | "allowFontScaling" | "android_hyphenationFrequency" | "children" | "ellipsizeMode" | "id" | "maxFontSizeMultiplier" | "nativeID" | "numberOfLines" | "onLayout" | "onLongPress" | "onPress" | "onPressIn" | "onPressOut" | "onResponderGrant" | "onResponderMove" | "onResponderRelease" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onMoveShouldSetResponder" | "onTextLayout" | "pressRetentionOffset" | "role" | "selectable" | "style" | "testID" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable"> & Omit<import("react-native/types_generated/Libraries/Text/TextProps").TextPropsAndroid, "onAccessibilityAction" | "allowFontScaling" | "android_hyphenationFrequency" | "children" | "ellipsizeMode" | "id" | "maxFontSizeMultiplier" | "nativeID" | "numberOfLines" | "onLayout" | "onLongPress" | "onPress" | "onPressIn" | "onPressOut" | "onResponderGrant" | "onResponderMove" | "onResponderRelease" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onMoveShouldSetResponder" | "onTextLayout" | "pressRetentionOffset" | "role" | "selectable" | "style" | "testID" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable"> & Omit<Readonly<{
324
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
325
+ allowFontScaling?: boolean | undefined;
326
+ android_hyphenationFrequency?: ("normal" | "none" | "full") | undefined;
327
+ children?: React.ReactNode | undefined;
328
+ ellipsizeMode?: ("clip" | "head" | "middle" | "tail") | undefined;
329
+ id?: string;
330
+ maxFontSizeMultiplier?: number | undefined;
331
+ nativeID?: string | undefined;
332
+ numberOfLines?: number | undefined;
333
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
334
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
335
+ onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
336
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
337
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
338
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
339
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
340
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
341
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
342
+ onResponderTerminationRequest?: (() => boolean) | undefined;
343
+ onStartShouldSetResponder?: (() => boolean) | undefined;
344
+ onMoveShouldSetResponder?: (() => boolean) | undefined;
345
+ onTextLayout?: ((event: import("react-native").TextLayoutEvent) => unknown) | undefined;
346
+ pressRetentionOffset?: import("react-native/types_generated/Libraries/Text/TextProps").PressRetentionOffset | undefined;
347
+ role?: import("react-native").Role | undefined;
348
+ selectable?: boolean | undefined;
349
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").TextStyleProp | undefined;
350
+ testID?: string | undefined;
351
+ }>, "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable"> & Omit<Readonly<Omit<Readonly<{
352
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
353
+ "aria-labelledby"?: string | undefined;
354
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
355
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
356
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
357
+ screenReaderFocusable?: boolean;
358
+ }>, "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
359
+ accessibilityIgnoresInvertColors?: boolean | undefined;
360
+ accessibilityViewIsModal?: boolean | undefined;
361
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
362
+ accessibilityLargeContentTitle?: string | undefined;
363
+ "aria-modal"?: boolean | undefined;
364
+ accessibilityElementsHidden?: boolean | undefined;
365
+ accessibilityLanguage?: string | undefined;
366
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
367
+ }>, "role" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
368
+ accessible?: boolean | undefined;
369
+ accessibilityLabel?: string | undefined;
370
+ accessibilityHint?: string | undefined;
371
+ "aria-label"?: string | undefined;
372
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
373
+ role?: import("react-native").Role | undefined;
374
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
375
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
376
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
377
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
378
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
379
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
380
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
381
+ "aria-busy"?: boolean | undefined;
382
+ "aria-checked"?: (boolean | undefined) | "mixed";
383
+ "aria-disabled"?: boolean | undefined;
384
+ "aria-expanded"?: boolean | undefined;
385
+ "aria-selected"?: boolean | undefined;
386
+ "aria-hidden"?: boolean | undefined;
387
+ }>, never>>, "ref"> & {
388
+ ref?: React.Ref<import("react-native/types_generated/src/private/webapis/dom/nodes/ReactNativeElement").default>;
389
+ } & {
390
+ theme?: import("@emotion/react").Theme;
391
+ as?: React.ElementType;
392
+ } & Readonly<Omit<Readonly<{
393
+ onPointerEnter?: (event: import("react-native").PointerEvent) => void;
394
+ onPointerLeave?: (event: import("react-native").PointerEvent) => void;
395
+ onPointerMove?: (event: import("react-native").PointerEvent) => void;
396
+ }>, "adjustsFontSizeToFit" | "dynamicTypeRamp" | "suppressHighlighting" | "lineBreakStrategyIOS" | "disabled" | "selectionColor" | "dataDetectorType" | "textBreakStrategy" | "minimumFontScale" | "onAccessibilityAction" | "allowFontScaling" | "android_hyphenationFrequency" | "children" | "ellipsizeMode" | "id" | "maxFontSizeMultiplier" | "nativeID" | "numberOfLines" | "onLayout" | "onLongPress" | "onPress" | "onPressIn" | "onPressOut" | "onResponderGrant" | "onResponderMove" | "onResponderRelease" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onMoveShouldSetResponder" | "onTextLayout" | "pressRetentionOffset" | "role" | "selectable" | "style" | "testID" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable"> & Omit<import("react-native/types_generated/Libraries/Text/TextProps").TextPropsIOS, keyof import("react-native/types_generated/Libraries/Text/TextProps").TextPropsAndroid | "onAccessibilityAction" | "allowFontScaling" | "android_hyphenationFrequency" | "children" | "ellipsizeMode" | "id" | "maxFontSizeMultiplier" | "nativeID" | "numberOfLines" | "onLayout" | "onLongPress" | "onPress" | "onPressIn" | "onPressOut" | "onResponderGrant" | "onResponderMove" | "onResponderRelease" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onMoveShouldSetResponder" | "onTextLayout" | "pressRetentionOffset" | "role" | "selectable" | "style" | "testID" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable"> & Omit<import("react-native/types_generated/Libraries/Text/TextProps").TextPropsAndroid, "onAccessibilityAction" | "allowFontScaling" | "android_hyphenationFrequency" | "children" | "ellipsizeMode" | "id" | "maxFontSizeMultiplier" | "nativeID" | "numberOfLines" | "onLayout" | "onLongPress" | "onPress" | "onPressIn" | "onPressOut" | "onResponderGrant" | "onResponderMove" | "onResponderRelease" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onMoveShouldSetResponder" | "onTextLayout" | "pressRetentionOffset" | "role" | "selectable" | "style" | "testID" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable"> & Omit<Readonly<{
397
+ onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
398
+ allowFontScaling?: boolean | undefined;
399
+ android_hyphenationFrequency?: ("normal" | "none" | "full") | undefined;
400
+ children?: React.ReactNode | undefined;
401
+ ellipsizeMode?: ("clip" | "head" | "middle" | "tail") | undefined;
402
+ id?: string;
403
+ maxFontSizeMultiplier?: number | undefined;
404
+ nativeID?: string | undefined;
405
+ numberOfLines?: number | undefined;
406
+ onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
407
+ onLongPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
408
+ onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
409
+ onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
410
+ onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
411
+ onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
412
+ onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
413
+ onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
414
+ onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
415
+ onResponderTerminationRequest?: (() => boolean) | undefined;
416
+ onStartShouldSetResponder?: (() => boolean) | undefined;
417
+ onMoveShouldSetResponder?: (() => boolean) | undefined;
418
+ onTextLayout?: ((event: import("react-native").TextLayoutEvent) => unknown) | undefined;
419
+ pressRetentionOffset?: import("react-native/types_generated/Libraries/Text/TextProps").PressRetentionOffset | undefined;
420
+ role?: import("react-native").Role | undefined;
421
+ selectable?: boolean | undefined;
422
+ style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").TextStyleProp | undefined;
423
+ testID?: string | undefined;
424
+ }>, "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable"> & Omit<Readonly<Omit<Readonly<{
425
+ accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
426
+ "aria-labelledby"?: string | undefined;
427
+ accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
428
+ "aria-live"?: ("polite" | "assertive" | "off") | undefined;
429
+ importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
430
+ screenReaderFocusable?: boolean;
431
+ }>, "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
432
+ accessibilityIgnoresInvertColors?: boolean | undefined;
433
+ accessibilityViewIsModal?: boolean | undefined;
434
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
435
+ accessibilityLargeContentTitle?: string | undefined;
436
+ "aria-modal"?: boolean | undefined;
437
+ accessibilityElementsHidden?: boolean | undefined;
438
+ accessibilityLanguage?: string | undefined;
439
+ accessibilityRespondsToUserInteraction?: boolean | undefined;
440
+ }>, "role" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
441
+ accessible?: boolean | undefined;
442
+ accessibilityLabel?: string | undefined;
443
+ accessibilityHint?: string | undefined;
444
+ "aria-label"?: string | undefined;
445
+ accessibilityRole?: import("react-native").AccessibilityRole | undefined;
446
+ role?: import("react-native").Role | undefined;
447
+ accessibilityState?: import("react-native").AccessibilityState | undefined;
448
+ accessibilityValue?: import("react-native").AccessibilityValue | undefined;
449
+ "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
450
+ "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
451
+ "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
452
+ "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
453
+ accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
454
+ "aria-busy"?: boolean | undefined;
455
+ "aria-checked"?: (boolean | undefined) | "mixed";
456
+ "aria-disabled"?: boolean | undefined;
457
+ "aria-expanded"?: boolean | undefined;
458
+ "aria-selected"?: boolean | undefined;
459
+ "aria-hidden"?: boolean | undefined;
460
+ }>, never>> & {
461
+ flex?: number;
462
+ weight?: "light" | "regular" | "medium" | "bold";
463
+ size?: number;
464
+ margin?: import("react-native").DimensionValue | string;
465
+ width?: string;
466
+ color?: string;
467
+ textAlign?: "left" | "center" | "right" | "justify";
468
+ textTransform?: "none" | "uppercase" | "capitalize" | "lowercase";
469
+ textDecorationLine?: "none" | "underline" | "line-through";
470
+ } & {
471
+ ref?: import("react").Ref<any> | undefined;
472
+ } & {
473
+ theme?: import("@emotion/react").Theme;
474
+ as?: React.ElementType;
475
+ }, {}, {}>;
476
+ };
477
+ export { Button };
478
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/Button/index.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,WAAW,EAAkC,MAAM,UAAU,CAAC;AAwB5E,QAAA,MAAM,MAAM,WAtBkB,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4BvC,CAAC;AAEH,OAAO,EAAE,MAAM,EAAE,CAAC"}