@edge-zuq/core 1.2.7

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 (702) hide show
  1. package/LICENSE +20 -0
  2. package/README.md +99 -0
  3. package/lib/module/assets/logo.png +0 -0
  4. package/lib/module/data/errors/http-client-error.js +14 -0
  5. package/lib/module/data/errors/http-client-error.js.map +1 -0
  6. package/lib/module/data/errors/index.js +6 -0
  7. package/lib/module/data/errors/index.js.map +1 -0
  8. package/lib/module/data/errors/save-file-error.js +9 -0
  9. package/lib/module/data/errors/save-file-error.js.map +1 -0
  10. package/lib/module/data/errors/unsupported-platform.js +9 -0
  11. package/lib/module/data/errors/unsupported-platform.js.map +1 -0
  12. package/lib/module/data/models/index.js +6 -0
  13. package/lib/module/data/models/index.js.map +1 -0
  14. package/lib/module/data/models/remote-get-comment-list-model.js +2 -0
  15. package/lib/module/data/models/remote-get-comment-list-model.js.map +1 -0
  16. package/lib/module/data/models/remote-get-image-list-model.js +2 -0
  17. package/lib/module/data/models/remote-get-image-list-model.js.map +1 -0
  18. package/lib/module/data/models/remote-user-model.js +2 -0
  19. package/lib/module/data/models/remote-user-model.js.map +1 -0
  20. package/lib/module/data/protocols/cookie-manager.js +2 -0
  21. package/lib/module/data/protocols/cookie-manager.js.map +1 -0
  22. package/lib/module/data/protocols/download-manager.js +4 -0
  23. package/lib/module/data/protocols/download-manager.js.map +1 -0
  24. package/lib/module/data/protocols/http-client.js +26 -0
  25. package/lib/module/data/protocols/http-client.js.map +1 -0
  26. package/lib/module/data/protocols/index.js +9 -0
  27. package/lib/module/data/protocols/index.js.map +1 -0
  28. package/lib/module/data/protocols/notification-manager.js +4 -0
  29. package/lib/module/data/protocols/notification-manager.js.map +1 -0
  30. package/lib/module/data/protocols/permission-manager.js +4 -0
  31. package/lib/module/data/protocols/permission-manager.js.map +1 -0
  32. package/lib/module/data/protocols/storage.js +4 -0
  33. package/lib/module/data/protocols/storage.js.map +1 -0
  34. package/lib/module/data/use-cases/index.js +6 -0
  35. package/lib/module/data/use-cases/index.js.map +1 -0
  36. package/lib/module/data/use-cases/remote-get-comment-list.js +29 -0
  37. package/lib/module/data/use-cases/remote-get-comment-list.js.map +1 -0
  38. package/lib/module/data/use-cases/remote-get-image-list.js +32 -0
  39. package/lib/module/data/use-cases/remote-get-image-list.js.map +1 -0
  40. package/lib/module/data/use-cases/remote-send-diagnostics.js +20 -0
  41. package/lib/module/data/use-cases/remote-send-diagnostics.js.map +1 -0
  42. package/lib/module/domain/errors/authentication-expired-error.js +9 -0
  43. package/lib/module/domain/errors/authentication-expired-error.js.map +1 -0
  44. package/lib/module/domain/errors/index.js +7 -0
  45. package/lib/module/domain/errors/index.js.map +1 -0
  46. package/lib/module/domain/errors/internal-server-error.js +9 -0
  47. package/lib/module/domain/errors/internal-server-error.js.map +1 -0
  48. package/lib/module/domain/errors/invalid-credentials-error.js +9 -0
  49. package/lib/module/domain/errors/invalid-credentials-error.js.map +1 -0
  50. package/lib/module/domain/errors/no-app-permission-error.js +9 -0
  51. package/lib/module/domain/errors/no-app-permission-error.js.map +1 -0
  52. package/lib/module/domain/models/get-comment-list-model.js +2 -0
  53. package/lib/module/domain/models/get-comment-list-model.js.map +1 -0
  54. package/lib/module/domain/models/get-image-list-model.js +2 -0
  55. package/lib/module/domain/models/get-image-list-model.js.map +1 -0
  56. package/lib/module/domain/models/index.js +6 -0
  57. package/lib/module/domain/models/index.js.map +1 -0
  58. package/lib/module/domain/models/user-model.js +2 -0
  59. package/lib/module/domain/models/user-model.js.map +1 -0
  60. package/lib/module/domain/use-cases/get-comment-list.js +4 -0
  61. package/lib/module/domain/use-cases/get-comment-list.js.map +1 -0
  62. package/lib/module/domain/use-cases/get-image-list.js +4 -0
  63. package/lib/module/domain/use-cases/get-image-list.js.map +1 -0
  64. package/lib/module/domain/use-cases/index.js +9 -0
  65. package/lib/module/domain/use-cases/index.js.map +1 -0
  66. package/lib/module/domain/use-cases/record-request.js +4 -0
  67. package/lib/module/domain/use-cases/record-request.js.map +1 -0
  68. package/lib/module/domain/use-cases/send-diagnostics.js +4 -0
  69. package/lib/module/domain/use-cases/send-diagnostics.js.map +1 -0
  70. package/lib/module/domain/use-cases/user-authentication.js +4 -0
  71. package/lib/module/domain/use-cases/user-authentication.js.map +1 -0
  72. package/lib/module/domain/use-cases/user-logout.js +4 -0
  73. package/lib/module/domain/use-cases/user-logout.js.map +1 -0
  74. package/lib/module/index.js +16 -0
  75. package/lib/module/index.js.map +1 -0
  76. package/lib/module/infra/axios-http-client-adapter.js +199 -0
  77. package/lib/module/infra/axios-http-client-adapter.js.map +1 -0
  78. package/lib/module/infra/index.js +10 -0
  79. package/lib/module/infra/index.js.map +1 -0
  80. package/lib/module/infra/isomorphic-id-manager.js +83 -0
  81. package/lib/module/infra/isomorphic-id-manager.js.map +1 -0
  82. package/lib/module/infra/mmkv-storage-adapter.js +62 -0
  83. package/lib/module/infra/mmkv-storage-adapter.js.map +1 -0
  84. package/lib/module/infra/notifee-notification-manager-adapter.js +69 -0
  85. package/lib/module/infra/notifee-notification-manager-adapter.js.map +1 -0
  86. package/lib/module/infra/offline-mutation-queue.js +210 -0
  87. package/lib/module/infra/offline-mutation-queue.js.map +1 -0
  88. package/lib/module/infra/rnbu-download-manager-adapter.js +31 -0
  89. package/lib/module/infra/rnbu-download-manager-adapter.js.map +1 -0
  90. package/lib/module/infra/rnp-permission-manager-adapter.js +117 -0
  91. package/lib/module/infra/rnp-permission-manager-adapter.js.map +1 -0
  92. package/lib/module/infra/storage-cookie-manager-adapter.js +24 -0
  93. package/lib/module/infra/storage-cookie-manager-adapter.js.map +1 -0
  94. package/lib/module/main/components/index.js +7 -0
  95. package/lib/module/main/components/index.js.map +1 -0
  96. package/lib/module/main/components/request-permissions.js +14 -0
  97. package/lib/module/main/components/request-permissions.js.map +1 -0
  98. package/lib/module/main/factories/infra/download-manager-factory.js +7 -0
  99. package/lib/module/main/factories/infra/download-manager-factory.js.map +1 -0
  100. package/lib/module/main/factories/infra/http-client-factory.js +7 -0
  101. package/lib/module/main/factories/infra/http-client-factory.js.map +1 -0
  102. package/lib/module/main/factories/infra/index.js +10 -0
  103. package/lib/module/main/factories/infra/index.js.map +1 -0
  104. package/lib/module/main/factories/infra/isomorphic-id-manager-factory.js +7 -0
  105. package/lib/module/main/factories/infra/isomorphic-id-manager-factory.js.map +1 -0
  106. package/lib/module/main/factories/infra/notification-manager-factory.js +7 -0
  107. package/lib/module/main/factories/infra/notification-manager-factory.js.map +1 -0
  108. package/lib/module/main/factories/infra/offline-mutation-queue-factory.js +7 -0
  109. package/lib/module/main/factories/infra/offline-mutation-queue-factory.js.map +1 -0
  110. package/lib/module/main/factories/infra/permission-manager-factory.js +7 -0
  111. package/lib/module/main/factories/infra/permission-manager-factory.js.map +1 -0
  112. package/lib/module/main/factories/infra/storage-factory.js +10 -0
  113. package/lib/module/main/factories/infra/storage-factory.js.map +1 -0
  114. package/lib/module/main/factories/use-cases/index.js +6 -0
  115. package/lib/module/main/factories/use-cases/index.js.map +1 -0
  116. package/lib/module/main/factories/use-cases/remote-get-comment-list-factory.js +7 -0
  117. package/lib/module/main/factories/use-cases/remote-get-comment-list-factory.js.map +1 -0
  118. package/lib/module/main/factories/use-cases/remote-get-image-list-factory.js +7 -0
  119. package/lib/module/main/factories/use-cases/remote-get-image-list-factory.js.map +1 -0
  120. package/lib/module/main/factories/use-cases/remote-send-diagnostics-factory.js +7 -0
  121. package/lib/module/main/factories/use-cases/remote-send-diagnostics-factory.js.map +1 -0
  122. package/lib/module/package.json +1 -0
  123. package/lib/module/presentation/components/atoms/UIBackdrop.js +31 -0
  124. package/lib/module/presentation/components/atoms/UIBackdrop.js.map +1 -0
  125. package/lib/module/presentation/components/atoms/UICheckbox.js +47 -0
  126. package/lib/module/presentation/components/atoms/UICheckbox.js.map +1 -0
  127. package/lib/module/presentation/components/atoms/UIDot.js +33 -0
  128. package/lib/module/presentation/components/atoms/UIDot.js.map +1 -0
  129. package/lib/module/presentation/components/atoms/UIIcon.js +1072 -0
  130. package/lib/module/presentation/components/atoms/UIIcon.js.map +1 -0
  131. package/lib/module/presentation/components/atoms/UILoading.js +19 -0
  132. package/lib/module/presentation/components/atoms/UILoading.js.map +1 -0
  133. package/lib/module/presentation/components/atoms/UIPage.js +70 -0
  134. package/lib/module/presentation/components/atoms/UIPage.js.map +1 -0
  135. package/lib/module/presentation/components/atoms/UIProgress.js +54 -0
  136. package/lib/module/presentation/components/atoms/UIProgress.js.map +1 -0
  137. package/lib/module/presentation/components/atoms/UIScrollPage.js +72 -0
  138. package/lib/module/presentation/components/atoms/UIScrollPage.js.map +1 -0
  139. package/lib/module/presentation/components/atoms/UISeparator.js +30 -0
  140. package/lib/module/presentation/components/atoms/UISeparator.js.map +1 -0
  141. package/lib/module/presentation/components/atoms/UISpacer.js +19 -0
  142. package/lib/module/presentation/components/atoms/UISpacer.js.map +1 -0
  143. package/lib/module/presentation/components/atoms/UIStack.js +31 -0
  144. package/lib/module/presentation/components/atoms/UIStack.js.map +1 -0
  145. package/lib/module/presentation/components/atoms/UIText.js +48 -0
  146. package/lib/module/presentation/components/atoms/UIText.js.map +1 -0
  147. package/lib/module/presentation/components/atoms/index.js +15 -0
  148. package/lib/module/presentation/components/atoms/index.js.map +1 -0
  149. package/lib/module/presentation/components/index.js +4 -0
  150. package/lib/module/presentation/components/index.js.map +1 -0
  151. package/lib/module/presentation/components/molecules/UIActionSheet.js +199 -0
  152. package/lib/module/presentation/components/molecules/UIActionSheet.js.map +1 -0
  153. package/lib/module/presentation/components/molecules/UIButton.js +173 -0
  154. package/lib/module/presentation/components/molecules/UIButton.js.map +1 -0
  155. package/lib/module/presentation/components/molecules/UIButtonCTA.js +31 -0
  156. package/lib/module/presentation/components/molecules/UIButtonCTA.js.map +1 -0
  157. package/lib/module/presentation/components/molecules/UICheckboxInput.js +84 -0
  158. package/lib/module/presentation/components/molecules/UICheckboxInput.js.map +1 -0
  159. package/lib/module/presentation/components/molecules/UIChip.js +49 -0
  160. package/lib/module/presentation/components/molecules/UIChip.js.map +1 -0
  161. package/lib/module/presentation/components/molecules/UICurrencyInput.js +32 -0
  162. package/lib/module/presentation/components/molecules/UICurrencyInput.js.map +1 -0
  163. package/lib/module/presentation/components/molecules/UIDataList.js +26 -0
  164. package/lib/module/presentation/components/molecules/UIDataList.js.map +1 -0
  165. package/lib/module/presentation/components/molecules/UIDataSectionList.js +26 -0
  166. package/lib/module/presentation/components/molecules/UIDataSectionList.js.map +1 -0
  167. package/lib/module/presentation/components/molecules/UIDatetimeInput.js +202 -0
  168. package/lib/module/presentation/components/molecules/UIDatetimeInput.js.map +1 -0
  169. package/lib/module/presentation/components/molecules/UIError.js +32 -0
  170. package/lib/module/presentation/components/molecules/UIError.js.map +1 -0
  171. package/lib/module/presentation/components/molecules/UIImage.js +87 -0
  172. package/lib/module/presentation/components/molecules/UIImage.js.map +1 -0
  173. package/lib/module/presentation/components/molecules/UIInlineDatePicker.js +245 -0
  174. package/lib/module/presentation/components/molecules/UIInlineDatePicker.js.map +1 -0
  175. package/lib/module/presentation/components/molecules/UIInputIcon.js +38 -0
  176. package/lib/module/presentation/components/molecules/UIInputIcon.js.map +1 -0
  177. package/lib/module/presentation/components/molecules/UIList.js +16 -0
  178. package/lib/module/presentation/components/molecules/UIList.js.map +1 -0
  179. package/lib/module/presentation/components/molecules/UIRadioInput.js +78 -0
  180. package/lib/module/presentation/components/molecules/UIRadioInput.js.map +1 -0
  181. package/lib/module/presentation/components/molecules/UISectionList.js +16 -0
  182. package/lib/module/presentation/components/molecules/UISectionList.js.map +1 -0
  183. package/lib/module/presentation/components/molecules/UISkeleton.js +54 -0
  184. package/lib/module/presentation/components/molecules/UISkeleton.js.map +1 -0
  185. package/lib/module/presentation/components/molecules/UISwitch.js +65 -0
  186. package/lib/module/presentation/components/molecules/UISwitch.js.map +1 -0
  187. package/lib/module/presentation/components/molecules/UITextInput.js +132 -0
  188. package/lib/module/presentation/components/molecules/UITextInput.js.map +1 -0
  189. package/lib/module/presentation/components/molecules/UITextInputMask.js +133 -0
  190. package/lib/module/presentation/components/molecules/UITextInputMask.js.map +1 -0
  191. package/lib/module/presentation/components/molecules/index.js +23 -0
  192. package/lib/module/presentation/components/molecules/index.js.map +1 -0
  193. package/lib/module/presentation/components/organisms/UIAppBar.js +102 -0
  194. package/lib/module/presentation/components/organisms/UIAppBar.js.map +1 -0
  195. package/lib/module/presentation/components/organisms/UIAppBarAction.js +21 -0
  196. package/lib/module/presentation/components/organisms/UIAppBarAction.js.map +1 -0
  197. package/lib/module/presentation/components/organisms/UICard.js +43 -0
  198. package/lib/module/presentation/components/organisms/UICard.js.map +1 -0
  199. package/lib/module/presentation/components/organisms/UIComment.js +73 -0
  200. package/lib/module/presentation/components/organisms/UIComment.js.map +1 -0
  201. package/lib/module/presentation/components/organisms/UIErrorBoundary.js +68 -0
  202. package/lib/module/presentation/components/organisms/UIErrorBoundary.js.map +1 -0
  203. package/lib/module/presentation/components/organisms/UIForm.js +83 -0
  204. package/lib/module/presentation/components/organisms/UIForm.js.map +1 -0
  205. package/lib/module/presentation/components/organisms/UIFormButton.js +43 -0
  206. package/lib/module/presentation/components/organisms/UIFormButton.js.map +1 -0
  207. package/lib/module/presentation/components/organisms/UIFormCheckboxInput.js +39 -0
  208. package/lib/module/presentation/components/organisms/UIFormCheckboxInput.js.map +1 -0
  209. package/lib/module/presentation/components/organisms/UIFormCurrencyInput.js +65 -0
  210. package/lib/module/presentation/components/organisms/UIFormCurrencyInput.js.map +1 -0
  211. package/lib/module/presentation/components/organisms/UIFormDatetimeInput.js +54 -0
  212. package/lib/module/presentation/components/organisms/UIFormDatetimeInput.js.map +1 -0
  213. package/lib/module/presentation/components/organisms/UIFormMultiselectInput.js +212 -0
  214. package/lib/module/presentation/components/organisms/UIFormMultiselectInput.js.map +1 -0
  215. package/lib/module/presentation/components/organisms/UIFormRadioInput.js +36 -0
  216. package/lib/module/presentation/components/organisms/UIFormRadioInput.js.map +1 -0
  217. package/lib/module/presentation/components/organisms/UIFormSelectInput.js +259 -0
  218. package/lib/module/presentation/components/organisms/UIFormSelectInput.js.map +1 -0
  219. package/lib/module/presentation/components/organisms/UIFormTextInput.js +64 -0
  220. package/lib/module/presentation/components/organisms/UIFormTextInput.js.map +1 -0
  221. package/lib/module/presentation/components/organisms/UIFormTextInputMask.js +69 -0
  222. package/lib/module/presentation/components/organisms/UIFormTextInputMask.js.map +1 -0
  223. package/lib/module/presentation/components/organisms/UIRow.js +55 -0
  224. package/lib/module/presentation/components/organisms/UIRow.js.map +1 -0
  225. package/lib/module/presentation/components/organisms/UISearchInput.js +33 -0
  226. package/lib/module/presentation/components/organisms/UISearchInput.js.map +1 -0
  227. package/lib/module/presentation/components/organisms/UISelectChip.js +94 -0
  228. package/lib/module/presentation/components/organisms/UISelectChip.js.map +1 -0
  229. package/lib/module/presentation/components/organisms/UISignature.js +159 -0
  230. package/lib/module/presentation/components/organisms/UISignature.js.map +1 -0
  231. package/lib/module/presentation/components/organisms/UISlideButton.js +90 -0
  232. package/lib/module/presentation/components/organisms/UISlideButton.js.map +1 -0
  233. package/lib/module/presentation/components/organisms/index.js +24 -0
  234. package/lib/module/presentation/components/organisms/index.js.map +1 -0
  235. package/lib/module/presentation/components/permissions/index.js +4 -0
  236. package/lib/module/presentation/components/permissions/index.js.map +1 -0
  237. package/lib/module/presentation/components/permissions/request-permissions.js +96 -0
  238. package/lib/module/presentation/components/permissions/request-permissions.js.map +1 -0
  239. package/lib/module/presentation/domain/metadata/index.js +5 -0
  240. package/lib/module/presentation/domain/metadata/index.js.map +1 -0
  241. package/lib/module/presentation/domain/metadata/use-comments.js +26 -0
  242. package/lib/module/presentation/domain/metadata/use-comments.js.map +1 -0
  243. package/lib/module/presentation/domain/metadata/use-images.js +26 -0
  244. package/lib/module/presentation/domain/metadata/use-images.js.map +1 -0
  245. package/lib/module/presentation/domain/offline/index.js +12 -0
  246. package/lib/module/presentation/domain/offline/index.js.map +1 -0
  247. package/lib/module/presentation/domain/offline/offline-mutation-queue-provider.js +69 -0
  248. package/lib/module/presentation/domain/offline/offline-mutation-queue-provider.js.map +1 -0
  249. package/lib/module/presentation/domain/offline/types.js +4 -0
  250. package/lib/module/presentation/domain/offline/types.js.map +1 -0
  251. package/lib/module/presentation/domain/offline/use-infinite-offline-query.js +69 -0
  252. package/lib/module/presentation/domain/offline/use-infinite-offline-query.js.map +1 -0
  253. package/lib/module/presentation/domain/offline/use-offline-id-v2.js +22 -0
  254. package/lib/module/presentation/domain/offline/use-offline-id-v2.js.map +1 -0
  255. package/lib/module/presentation/domain/offline/use-offline-id.js +11 -0
  256. package/lib/module/presentation/domain/offline/use-offline-id.js.map +1 -0
  257. package/lib/module/presentation/domain/offline/use-offline-mutation.js +115 -0
  258. package/lib/module/presentation/domain/offline/use-offline-mutation.js.map +1 -0
  259. package/lib/module/presentation/domain/offline/use-offline-query.js +33 -0
  260. package/lib/module/presentation/domain/offline/use-offline-query.js.map +1 -0
  261. package/lib/module/presentation/domain/offline/use-offline-queue.js +8 -0
  262. package/lib/module/presentation/domain/offline/use-offline-queue.js.map +1 -0
  263. package/lib/module/presentation/domain/offline/utils.js +110 -0
  264. package/lib/module/presentation/domain/offline/utils.js.map +1 -0
  265. package/lib/module/presentation/domain/provider/index.js +4 -0
  266. package/lib/module/presentation/domain/provider/index.js.map +1 -0
  267. package/lib/module/presentation/domain/provider/zuq-core-provider.js +51 -0
  268. package/lib/module/presentation/domain/provider/zuq-core-provider.js.map +1 -0
  269. package/lib/module/presentation/domain/utils/exists.js +6 -0
  270. package/lib/module/presentation/domain/utils/exists.js.map +1 -0
  271. package/lib/module/presentation/domain/utils/index.js +8 -0
  272. package/lib/module/presentation/domain/utils/index.js.map +1 -0
  273. package/lib/module/presentation/domain/utils/react-query.js +10 -0
  274. package/lib/module/presentation/domain/utils/react-query.js.map +1 -0
  275. package/lib/module/presentation/domain/utils/use-action-sheet.js +20 -0
  276. package/lib/module/presentation/domain/utils/use-action-sheet.js.map +1 -0
  277. package/lib/module/presentation/domain/utils/use-signature-ref.js +8 -0
  278. package/lib/module/presentation/domain/utils/use-signature-ref.js.map +1 -0
  279. package/lib/module/presentation/domain/utils/yup.js +5 -0
  280. package/lib/module/presentation/domain/utils/yup.js.map +1 -0
  281. package/lib/module/theme.js +211 -0
  282. package/lib/module/theme.js.map +1 -0
  283. package/lib/typescript/package.json +1 -0
  284. package/lib/typescript/src/data/errors/http-client-error.d.ts +13 -0
  285. package/lib/typescript/src/data/errors/http-client-error.d.ts.map +1 -0
  286. package/lib/typescript/src/data/errors/index.d.ts +4 -0
  287. package/lib/typescript/src/data/errors/index.d.ts.map +1 -0
  288. package/lib/typescript/src/data/errors/save-file-error.d.ts +4 -0
  289. package/lib/typescript/src/data/errors/save-file-error.d.ts.map +1 -0
  290. package/lib/typescript/src/data/errors/unsupported-platform.d.ts +4 -0
  291. package/lib/typescript/src/data/errors/unsupported-platform.d.ts.map +1 -0
  292. package/lib/typescript/src/data/models/index.d.ts +4 -0
  293. package/lib/typescript/src/data/models/index.d.ts.map +1 -0
  294. package/lib/typescript/src/data/models/remote-get-comment-list-model.d.ts +16 -0
  295. package/lib/typescript/src/data/models/remote-get-comment-list-model.d.ts.map +1 -0
  296. package/lib/typescript/src/data/models/remote-get-image-list-model.d.ts +16 -0
  297. package/lib/typescript/src/data/models/remote-get-image-list-model.d.ts.map +1 -0
  298. package/lib/typescript/src/data/models/remote-user-model.d.ts +14 -0
  299. package/lib/typescript/src/data/models/remote-user-model.d.ts.map +1 -0
  300. package/lib/typescript/src/data/protocols/cookie-manager.d.ts +7 -0
  301. package/lib/typescript/src/data/protocols/cookie-manager.d.ts.map +1 -0
  302. package/lib/typescript/src/data/protocols/download-manager.d.ts +12 -0
  303. package/lib/typescript/src/data/protocols/download-manager.d.ts.map +1 -0
  304. package/lib/typescript/src/data/protocols/http-client.d.ts +52 -0
  305. package/lib/typescript/src/data/protocols/http-client.d.ts.map +1 -0
  306. package/lib/typescript/src/data/protocols/index.d.ts +7 -0
  307. package/lib/typescript/src/data/protocols/index.d.ts.map +1 -0
  308. package/lib/typescript/src/data/protocols/notification-manager.d.ts +17 -0
  309. package/lib/typescript/src/data/protocols/notification-manager.d.ts.map +1 -0
  310. package/lib/typescript/src/data/protocols/permission-manager.d.ts +23 -0
  311. package/lib/typescript/src/data/protocols/permission-manager.d.ts.map +1 -0
  312. package/lib/typescript/src/data/protocols/storage.d.ts +17 -0
  313. package/lib/typescript/src/data/protocols/storage.d.ts.map +1 -0
  314. package/lib/typescript/src/data/use-cases/index.d.ts +4 -0
  315. package/lib/typescript/src/data/use-cases/index.d.ts.map +1 -0
  316. package/lib/typescript/src/data/use-cases/remote-get-comment-list.d.ts +9 -0
  317. package/lib/typescript/src/data/use-cases/remote-get-comment-list.d.ts.map +1 -0
  318. package/lib/typescript/src/data/use-cases/remote-get-image-list.d.ts +10 -0
  319. package/lib/typescript/src/data/use-cases/remote-get-image-list.d.ts.map +1 -0
  320. package/lib/typescript/src/data/use-cases/remote-send-diagnostics.d.ts +11 -0
  321. package/lib/typescript/src/data/use-cases/remote-send-diagnostics.d.ts.map +1 -0
  322. package/lib/typescript/src/domain/errors/authentication-expired-error.d.ts +4 -0
  323. package/lib/typescript/src/domain/errors/authentication-expired-error.d.ts.map +1 -0
  324. package/lib/typescript/src/domain/errors/index.d.ts +5 -0
  325. package/lib/typescript/src/domain/errors/index.d.ts.map +1 -0
  326. package/lib/typescript/src/domain/errors/internal-server-error.d.ts +4 -0
  327. package/lib/typescript/src/domain/errors/internal-server-error.d.ts.map +1 -0
  328. package/lib/typescript/src/domain/errors/invalid-credentials-error.d.ts +4 -0
  329. package/lib/typescript/src/domain/errors/invalid-credentials-error.d.ts.map +1 -0
  330. package/lib/typescript/src/domain/errors/no-app-permission-error.d.ts +4 -0
  331. package/lib/typescript/src/domain/errors/no-app-permission-error.d.ts.map +1 -0
  332. package/lib/typescript/src/domain/models/get-comment-list-model.d.ts +10 -0
  333. package/lib/typescript/src/domain/models/get-comment-list-model.d.ts.map +1 -0
  334. package/lib/typescript/src/domain/models/get-image-list-model.d.ts +8 -0
  335. package/lib/typescript/src/domain/models/get-image-list-model.d.ts.map +1 -0
  336. package/lib/typescript/src/domain/models/index.d.ts +4 -0
  337. package/lib/typescript/src/domain/models/index.d.ts.map +1 -0
  338. package/lib/typescript/src/domain/models/user-model.d.ts +16 -0
  339. package/lib/typescript/src/domain/models/user-model.d.ts.map +1 -0
  340. package/lib/typescript/src/domain/use-cases/get-comment-list.d.ts +12 -0
  341. package/lib/typescript/src/domain/use-cases/get-comment-list.d.ts.map +1 -0
  342. package/lib/typescript/src/domain/use-cases/get-image-list.d.ts +12 -0
  343. package/lib/typescript/src/domain/use-cases/get-image-list.d.ts.map +1 -0
  344. package/lib/typescript/src/domain/use-cases/index.d.ts +7 -0
  345. package/lib/typescript/src/domain/use-cases/index.d.ts.map +1 -0
  346. package/lib/typescript/src/domain/use-cases/record-request.d.ts +14 -0
  347. package/lib/typescript/src/domain/use-cases/record-request.d.ts.map +1 -0
  348. package/lib/typescript/src/domain/use-cases/send-diagnostics.d.ts +15 -0
  349. package/lib/typescript/src/domain/use-cases/send-diagnostics.d.ts.map +1 -0
  350. package/lib/typescript/src/domain/use-cases/user-authentication.d.ts +12 -0
  351. package/lib/typescript/src/domain/use-cases/user-authentication.d.ts.map +1 -0
  352. package/lib/typescript/src/domain/use-cases/user-logout.d.ts +10 -0
  353. package/lib/typescript/src/domain/use-cases/user-logout.d.ts.map +1 -0
  354. package/lib/typescript/src/index.d.ts +15 -0
  355. package/lib/typescript/src/index.d.ts.map +1 -0
  356. package/lib/typescript/src/infra/axios-http-client-adapter.d.ts +33 -0
  357. package/lib/typescript/src/infra/axios-http-client-adapter.d.ts.map +1 -0
  358. package/lib/typescript/src/infra/index.d.ts +8 -0
  359. package/lib/typescript/src/infra/index.d.ts.map +1 -0
  360. package/lib/typescript/src/infra/isomorphic-id-manager.d.ts +29 -0
  361. package/lib/typescript/src/infra/isomorphic-id-manager.d.ts.map +1 -0
  362. package/lib/typescript/src/infra/mmkv-storage-adapter.d.ts +18 -0
  363. package/lib/typescript/src/infra/mmkv-storage-adapter.d.ts.map +1 -0
  364. package/lib/typescript/src/infra/notifee-notification-manager-adapter.d.ts +17 -0
  365. package/lib/typescript/src/infra/notifee-notification-manager-adapter.d.ts.map +1 -0
  366. package/lib/typescript/src/infra/offline-mutation-queue.d.ts +56 -0
  367. package/lib/typescript/src/infra/offline-mutation-queue.d.ts.map +1 -0
  368. package/lib/typescript/src/infra/rnbu-download-manager-adapter.d.ts +7 -0
  369. package/lib/typescript/src/infra/rnbu-download-manager-adapter.d.ts.map +1 -0
  370. package/lib/typescript/src/infra/rnp-permission-manager-adapter.d.ts +20 -0
  371. package/lib/typescript/src/infra/rnp-permission-manager-adapter.d.ts.map +1 -0
  372. package/lib/typescript/src/infra/storage-cookie-manager-adapter.d.ts +12 -0
  373. package/lib/typescript/src/infra/storage-cookie-manager-adapter.d.ts.map +1 -0
  374. package/lib/typescript/src/main/components/index.d.ts +5 -0
  375. package/lib/typescript/src/main/components/index.d.ts.map +1 -0
  376. package/lib/typescript/src/main/components/request-permissions.d.ts +6 -0
  377. package/lib/typescript/src/main/components/request-permissions.d.ts.map +1 -0
  378. package/lib/typescript/src/main/factories/infra/download-manager-factory.d.ts +3 -0
  379. package/lib/typescript/src/main/factories/infra/download-manager-factory.d.ts.map +1 -0
  380. package/lib/typescript/src/main/factories/infra/http-client-factory.d.ts +4 -0
  381. package/lib/typescript/src/main/factories/infra/http-client-factory.d.ts.map +1 -0
  382. package/lib/typescript/src/main/factories/infra/index.d.ts +8 -0
  383. package/lib/typescript/src/main/factories/infra/index.d.ts.map +1 -0
  384. package/lib/typescript/src/main/factories/infra/isomorphic-id-manager-factory.d.ts +4 -0
  385. package/lib/typescript/src/main/factories/infra/isomorphic-id-manager-factory.d.ts.map +1 -0
  386. package/lib/typescript/src/main/factories/infra/notification-manager-factory.d.ts +4 -0
  387. package/lib/typescript/src/main/factories/infra/notification-manager-factory.d.ts.map +1 -0
  388. package/lib/typescript/src/main/factories/infra/offline-mutation-queue-factory.d.ts +5 -0
  389. package/lib/typescript/src/main/factories/infra/offline-mutation-queue-factory.d.ts.map +1 -0
  390. package/lib/typescript/src/main/factories/infra/permission-manager-factory.d.ts +3 -0
  391. package/lib/typescript/src/main/factories/infra/permission-manager-factory.d.ts.map +1 -0
  392. package/lib/typescript/src/main/factories/infra/storage-factory.d.ts +4 -0
  393. package/lib/typescript/src/main/factories/infra/storage-factory.d.ts.map +1 -0
  394. package/lib/typescript/src/main/factories/use-cases/index.d.ts +4 -0
  395. package/lib/typescript/src/main/factories/use-cases/index.d.ts.map +1 -0
  396. package/lib/typescript/src/main/factories/use-cases/remote-get-comment-list-factory.d.ts +4 -0
  397. package/lib/typescript/src/main/factories/use-cases/remote-get-comment-list-factory.d.ts.map +1 -0
  398. package/lib/typescript/src/main/factories/use-cases/remote-get-image-list-factory.d.ts +4 -0
  399. package/lib/typescript/src/main/factories/use-cases/remote-get-image-list-factory.d.ts.map +1 -0
  400. package/lib/typescript/src/main/factories/use-cases/remote-send-diagnostics-factory.d.ts +4 -0
  401. package/lib/typescript/src/main/factories/use-cases/remote-send-diagnostics-factory.d.ts.map +1 -0
  402. package/lib/typescript/src/presentation/components/atoms/UIBackdrop.d.ts +10 -0
  403. package/lib/typescript/src/presentation/components/atoms/UIBackdrop.d.ts.map +1 -0
  404. package/lib/typescript/src/presentation/components/atoms/UICheckbox.d.ts +11 -0
  405. package/lib/typescript/src/presentation/components/atoms/UICheckbox.d.ts.map +1 -0
  406. package/lib/typescript/src/presentation/components/atoms/UIDot.d.ts +10 -0
  407. package/lib/typescript/src/presentation/components/atoms/UIDot.d.ts.map +1 -0
  408. package/lib/typescript/src/presentation/components/atoms/UIIcon.d.ts +133 -0
  409. package/lib/typescript/src/presentation/components/atoms/UIIcon.d.ts.map +1 -0
  410. package/lib/typescript/src/presentation/components/atoms/UILoading.d.ts +9 -0
  411. package/lib/typescript/src/presentation/components/atoms/UILoading.d.ts.map +1 -0
  412. package/lib/typescript/src/presentation/components/atoms/UIPage.d.ts +20 -0
  413. package/lib/typescript/src/presentation/components/atoms/UIPage.d.ts.map +1 -0
  414. package/lib/typescript/src/presentation/components/atoms/UIProgress.d.ts +10 -0
  415. package/lib/typescript/src/presentation/components/atoms/UIProgress.d.ts.map +1 -0
  416. package/lib/typescript/src/presentation/components/atoms/UIScrollPage.d.ts +17 -0
  417. package/lib/typescript/src/presentation/components/atoms/UIScrollPage.d.ts.map +1 -0
  418. package/lib/typescript/src/presentation/components/atoms/UISeparator.d.ts +10 -0
  419. package/lib/typescript/src/presentation/components/atoms/UISeparator.d.ts.map +1 -0
  420. package/lib/typescript/src/presentation/components/atoms/UISpacer.d.ts +9 -0
  421. package/lib/typescript/src/presentation/components/atoms/UISpacer.d.ts.map +1 -0
  422. package/lib/typescript/src/presentation/components/atoms/UIStack.d.ts +14 -0
  423. package/lib/typescript/src/presentation/components/atoms/UIStack.d.ts.map +1 -0
  424. package/lib/typescript/src/presentation/components/atoms/UIText.d.ts +14 -0
  425. package/lib/typescript/src/presentation/components/atoms/UIText.d.ts.map +1 -0
  426. package/lib/typescript/src/presentation/components/atoms/index.d.ts +13 -0
  427. package/lib/typescript/src/presentation/components/atoms/index.d.ts.map +1 -0
  428. package/lib/typescript/src/presentation/components/index.d.ts +2 -0
  429. package/lib/typescript/src/presentation/components/index.d.ts.map +1 -0
  430. package/lib/typescript/src/presentation/components/molecules/UIActionSheet.d.ts +17 -0
  431. package/lib/typescript/src/presentation/components/molecules/UIActionSheet.d.ts.map +1 -0
  432. package/lib/typescript/src/presentation/components/molecules/UIButton.d.ts +18 -0
  433. package/lib/typescript/src/presentation/components/molecules/UIButton.d.ts.map +1 -0
  434. package/lib/typescript/src/presentation/components/molecules/UIButtonCTA.d.ts +8 -0
  435. package/lib/typescript/src/presentation/components/molecules/UIButtonCTA.d.ts.map +1 -0
  436. package/lib/typescript/src/presentation/components/molecules/UICheckboxInput.d.ts +16 -0
  437. package/lib/typescript/src/presentation/components/molecules/UICheckboxInput.d.ts.map +1 -0
  438. package/lib/typescript/src/presentation/components/molecules/UIChip.d.ts +17 -0
  439. package/lib/typescript/src/presentation/components/molecules/UIChip.d.ts.map +1 -0
  440. package/lib/typescript/src/presentation/components/molecules/UICurrencyInput.d.ts +11 -0
  441. package/lib/typescript/src/presentation/components/molecules/UICurrencyInput.d.ts.map +1 -0
  442. package/lib/typescript/src/presentation/components/molecules/UIDataList.d.ts +9 -0
  443. package/lib/typescript/src/presentation/components/molecules/UIDataList.d.ts.map +1 -0
  444. package/lib/typescript/src/presentation/components/molecules/UIDataSectionList.d.ts +9 -0
  445. package/lib/typescript/src/presentation/components/molecules/UIDataSectionList.d.ts.map +1 -0
  446. package/lib/typescript/src/presentation/components/molecules/UIDatetimeInput.d.ts +10 -0
  447. package/lib/typescript/src/presentation/components/molecules/UIDatetimeInput.d.ts.map +1 -0
  448. package/lib/typescript/src/presentation/components/molecules/UIError.d.ts +8 -0
  449. package/lib/typescript/src/presentation/components/molecules/UIError.d.ts.map +1 -0
  450. package/lib/typescript/src/presentation/components/molecules/UIImage.d.ts +11 -0
  451. package/lib/typescript/src/presentation/components/molecules/UIImage.d.ts.map +1 -0
  452. package/lib/typescript/src/presentation/components/molecules/UIInlineDatePicker.d.ts +15 -0
  453. package/lib/typescript/src/presentation/components/molecules/UIInlineDatePicker.d.ts.map +1 -0
  454. package/lib/typescript/src/presentation/components/molecules/UIInputIcon.d.ts +9 -0
  455. package/lib/typescript/src/presentation/components/molecules/UIInputIcon.d.ts.map +1 -0
  456. package/lib/typescript/src/presentation/components/molecules/UIList.d.ts +5 -0
  457. package/lib/typescript/src/presentation/components/molecules/UIList.d.ts.map +1 -0
  458. package/lib/typescript/src/presentation/components/molecules/UIRadioInput.d.ts +12 -0
  459. package/lib/typescript/src/presentation/components/molecules/UIRadioInput.d.ts.map +1 -0
  460. package/lib/typescript/src/presentation/components/molecules/UISectionList.d.ts +5 -0
  461. package/lib/typescript/src/presentation/components/molecules/UISectionList.d.ts.map +1 -0
  462. package/lib/typescript/src/presentation/components/molecules/UISkeleton.d.ts +8 -0
  463. package/lib/typescript/src/presentation/components/molecules/UISkeleton.d.ts.map +1 -0
  464. package/lib/typescript/src/presentation/components/molecules/UISwitch.d.ts +10 -0
  465. package/lib/typescript/src/presentation/components/molecules/UISwitch.d.ts.map +1 -0
  466. package/lib/typescript/src/presentation/components/molecules/UITextInput.d.ts +13 -0
  467. package/lib/typescript/src/presentation/components/molecules/UITextInput.d.ts.map +1 -0
  468. package/lib/typescript/src/presentation/components/molecules/UITextInputMask.d.ts +16 -0
  469. package/lib/typescript/src/presentation/components/molecules/UITextInputMask.d.ts.map +1 -0
  470. package/lib/typescript/src/presentation/components/molecules/index.d.ts +21 -0
  471. package/lib/typescript/src/presentation/components/molecules/index.d.ts.map +1 -0
  472. package/lib/typescript/src/presentation/components/organisms/UIAppBar.d.ts +13 -0
  473. package/lib/typescript/src/presentation/components/organisms/UIAppBar.d.ts.map +1 -0
  474. package/lib/typescript/src/presentation/components/organisms/UIAppBarAction.d.ts +6 -0
  475. package/lib/typescript/src/presentation/components/organisms/UIAppBarAction.d.ts.map +1 -0
  476. package/lib/typescript/src/presentation/components/organisms/UICard.d.ts +9 -0
  477. package/lib/typescript/src/presentation/components/organisms/UICard.d.ts.map +1 -0
  478. package/lib/typescript/src/presentation/components/organisms/UIComment.d.ts +9 -0
  479. package/lib/typescript/src/presentation/components/organisms/UIComment.d.ts.map +1 -0
  480. package/lib/typescript/src/presentation/components/organisms/UIErrorBoundary.d.ts +9 -0
  481. package/lib/typescript/src/presentation/components/organisms/UIErrorBoundary.d.ts.map +1 -0
  482. package/lib/typescript/src/presentation/components/organisms/UIForm.d.ts +13 -0
  483. package/lib/typescript/src/presentation/components/organisms/UIForm.d.ts.map +1 -0
  484. package/lib/typescript/src/presentation/components/organisms/UIFormButton.d.ts +11 -0
  485. package/lib/typescript/src/presentation/components/organisms/UIFormButton.d.ts.map +1 -0
  486. package/lib/typescript/src/presentation/components/organisms/UIFormCheckboxInput.d.ts +9 -0
  487. package/lib/typescript/src/presentation/components/organisms/UIFormCheckboxInput.d.ts.map +1 -0
  488. package/lib/typescript/src/presentation/components/organisms/UIFormCurrencyInput.d.ts +11 -0
  489. package/lib/typescript/src/presentation/components/organisms/UIFormCurrencyInput.d.ts.map +1 -0
  490. package/lib/typescript/src/presentation/components/organisms/UIFormDatetimeInput.d.ts +10 -0
  491. package/lib/typescript/src/presentation/components/organisms/UIFormDatetimeInput.d.ts.map +1 -0
  492. package/lib/typescript/src/presentation/components/organisms/UIFormMultiselectInput.d.ts +30 -0
  493. package/lib/typescript/src/presentation/components/organisms/UIFormMultiselectInput.d.ts.map +1 -0
  494. package/lib/typescript/src/presentation/components/organisms/UIFormRadioInput.d.ts +9 -0
  495. package/lib/typescript/src/presentation/components/organisms/UIFormRadioInput.d.ts.map +1 -0
  496. package/lib/typescript/src/presentation/components/organisms/UIFormSelectInput.d.ts +44 -0
  497. package/lib/typescript/src/presentation/components/organisms/UIFormSelectInput.d.ts.map +1 -0
  498. package/lib/typescript/src/presentation/components/organisms/UIFormTextInput.d.ts +11 -0
  499. package/lib/typescript/src/presentation/components/organisms/UIFormTextInput.d.ts.map +1 -0
  500. package/lib/typescript/src/presentation/components/organisms/UIFormTextInputMask.d.ts +11 -0
  501. package/lib/typescript/src/presentation/components/organisms/UIFormTextInputMask.d.ts.map +1 -0
  502. package/lib/typescript/src/presentation/components/organisms/UIRow.d.ts +14 -0
  503. package/lib/typescript/src/presentation/components/organisms/UIRow.d.ts.map +1 -0
  504. package/lib/typescript/src/presentation/components/organisms/UISearchInput.d.ts +6 -0
  505. package/lib/typescript/src/presentation/components/organisms/UISearchInput.d.ts.map +1 -0
  506. package/lib/typescript/src/presentation/components/organisms/UISelectChip.d.ts +13 -0
  507. package/lib/typescript/src/presentation/components/organisms/UISelectChip.d.ts.map +1 -0
  508. package/lib/typescript/src/presentation/components/organisms/UISignature.d.ts +26 -0
  509. package/lib/typescript/src/presentation/components/organisms/UISignature.d.ts.map +1 -0
  510. package/lib/typescript/src/presentation/components/organisms/UISlideButton.d.ts +8 -0
  511. package/lib/typescript/src/presentation/components/organisms/UISlideButton.d.ts.map +1 -0
  512. package/lib/typescript/src/presentation/components/organisms/index.d.ts +22 -0
  513. package/lib/typescript/src/presentation/components/organisms/index.d.ts.map +1 -0
  514. package/lib/typescript/src/presentation/components/permissions/index.d.ts +2 -0
  515. package/lib/typescript/src/presentation/components/permissions/index.d.ts.map +1 -0
  516. package/lib/typescript/src/presentation/components/permissions/request-permissions.d.ts +15 -0
  517. package/lib/typescript/src/presentation/components/permissions/request-permissions.d.ts.map +1 -0
  518. package/lib/typescript/src/presentation/domain/metadata/index.d.ts +3 -0
  519. package/lib/typescript/src/presentation/domain/metadata/index.d.ts.map +1 -0
  520. package/lib/typescript/src/presentation/domain/metadata/use-comments.d.ts +11 -0
  521. package/lib/typescript/src/presentation/domain/metadata/use-comments.d.ts.map +1 -0
  522. package/lib/typescript/src/presentation/domain/metadata/use-images.d.ts +11 -0
  523. package/lib/typescript/src/presentation/domain/metadata/use-images.d.ts.map +1 -0
  524. package/lib/typescript/src/presentation/domain/offline/index.d.ts +10 -0
  525. package/lib/typescript/src/presentation/domain/offline/index.d.ts.map +1 -0
  526. package/lib/typescript/src/presentation/domain/offline/offline-mutation-queue-provider.d.ts +18 -0
  527. package/lib/typescript/src/presentation/domain/offline/offline-mutation-queue-provider.d.ts.map +1 -0
  528. package/lib/typescript/src/presentation/domain/offline/types.d.ts +18 -0
  529. package/lib/typescript/src/presentation/domain/offline/types.d.ts.map +1 -0
  530. package/lib/typescript/src/presentation/domain/offline/use-infinite-offline-query.d.ts +78 -0
  531. package/lib/typescript/src/presentation/domain/offline/use-infinite-offline-query.d.ts.map +1 -0
  532. package/lib/typescript/src/presentation/domain/offline/use-offline-id-v2.d.ts +9 -0
  533. package/lib/typescript/src/presentation/domain/offline/use-offline-id-v2.d.ts.map +1 -0
  534. package/lib/typescript/src/presentation/domain/offline/use-offline-id.d.ts +3 -0
  535. package/lib/typescript/src/presentation/domain/offline/use-offline-id.d.ts.map +1 -0
  536. package/lib/typescript/src/presentation/domain/offline/use-offline-mutation.d.ts +88 -0
  537. package/lib/typescript/src/presentation/domain/offline/use-offline-mutation.d.ts.map +1 -0
  538. package/lib/typescript/src/presentation/domain/offline/use-offline-query.d.ts +8 -0
  539. package/lib/typescript/src/presentation/domain/offline/use-offline-query.d.ts.map +1 -0
  540. package/lib/typescript/src/presentation/domain/offline/use-offline-queue.d.ts +10 -0
  541. package/lib/typescript/src/presentation/domain/offline/use-offline-queue.d.ts.map +1 -0
  542. package/lib/typescript/src/presentation/domain/offline/utils.d.ts +18 -0
  543. package/lib/typescript/src/presentation/domain/offline/utils.d.ts.map +1 -0
  544. package/lib/typescript/src/presentation/domain/provider/index.d.ts +2 -0
  545. package/lib/typescript/src/presentation/domain/provider/index.d.ts.map +1 -0
  546. package/lib/typescript/src/presentation/domain/provider/zuq-core-provider.d.ts +13 -0
  547. package/lib/typescript/src/presentation/domain/provider/zuq-core-provider.d.ts.map +1 -0
  548. package/lib/typescript/src/presentation/domain/utils/exists.d.ts +2 -0
  549. package/lib/typescript/src/presentation/domain/utils/exists.d.ts.map +1 -0
  550. package/lib/typescript/src/presentation/domain/utils/index.d.ts +6 -0
  551. package/lib/typescript/src/presentation/domain/utils/index.d.ts.map +1 -0
  552. package/lib/typescript/src/presentation/domain/utils/react-query.d.ts +5 -0
  553. package/lib/typescript/src/presentation/domain/utils/react-query.d.ts.map +1 -0
  554. package/lib/typescript/src/presentation/domain/utils/use-action-sheet.d.ts +6 -0
  555. package/lib/typescript/src/presentation/domain/utils/use-action-sheet.d.ts.map +1 -0
  556. package/lib/typescript/src/presentation/domain/utils/use-signature-ref.d.ts +15 -0
  557. package/lib/typescript/src/presentation/domain/utils/use-signature-ref.d.ts.map +1 -0
  558. package/lib/typescript/src/presentation/domain/utils/yup.d.ts +3 -0
  559. package/lib/typescript/src/presentation/domain/utils/yup.d.ts.map +1 -0
  560. package/lib/typescript/src/theme.d.ts +214 -0
  561. package/lib/typescript/src/theme.d.ts.map +1 -0
  562. package/package.json +210 -0
  563. package/src/assets/logo.png +0 -0
  564. package/src/data/errors/http-client-error.ts +23 -0
  565. package/src/data/errors/index.ts +3 -0
  566. package/src/data/errors/save-file-error.ts +6 -0
  567. package/src/data/errors/unsupported-platform.ts +6 -0
  568. package/src/data/models/index.ts +3 -0
  569. package/src/data/models/remote-get-comment-list-model.ts +15 -0
  570. package/src/data/models/remote-get-image-list-model.ts +15 -0
  571. package/src/data/models/remote-user-model.ts +13 -0
  572. package/src/data/protocols/cookie-manager.ts +6 -0
  573. package/src/data/protocols/download-manager.ts +13 -0
  574. package/src/data/protocols/http-client.ts +75 -0
  575. package/src/data/protocols/index.ts +6 -0
  576. package/src/data/protocols/notification-manager.ts +17 -0
  577. package/src/data/protocols/permission-manager.ts +46 -0
  578. package/src/data/protocols/storage.ts +18 -0
  579. package/src/data/use-cases/index.ts +3 -0
  580. package/src/data/use-cases/remote-get-comment-list.ts +34 -0
  581. package/src/data/use-cases/remote-get-image-list.ts +40 -0
  582. package/src/data/use-cases/remote-send-diagnostics.ts +20 -0
  583. package/src/domain/errors/authentication-expired-error.ts +6 -0
  584. package/src/domain/errors/index.ts +4 -0
  585. package/src/domain/errors/internal-server-error.ts +6 -0
  586. package/src/domain/errors/invalid-credentials-error.ts +6 -0
  587. package/src/domain/errors/no-app-permission-error.ts +6 -0
  588. package/src/domain/models/get-comment-list-model.ts +9 -0
  589. package/src/domain/models/get-image-list-model.ts +7 -0
  590. package/src/domain/models/index.ts +3 -0
  591. package/src/domain/models/user-model.ts +15 -0
  592. package/src/domain/use-cases/get-comment-list.ts +14 -0
  593. package/src/domain/use-cases/get-image-list.ts +14 -0
  594. package/src/domain/use-cases/index.ts +6 -0
  595. package/src/domain/use-cases/record-request.ts +15 -0
  596. package/src/domain/use-cases/send-diagnostics.ts +15 -0
  597. package/src/domain/use-cases/user-authentication.ts +16 -0
  598. package/src/domain/use-cases/user-logout.ts +10 -0
  599. package/src/index.tsx +29 -0
  600. package/src/infra/axios-http-client-adapter.ts +271 -0
  601. package/src/infra/index.ts +7 -0
  602. package/src/infra/isomorphic-id-manager.ts +107 -0
  603. package/src/infra/mmkv-storage-adapter.ts +73 -0
  604. package/src/infra/notifee-notification-manager-adapter.ts +87 -0
  605. package/src/infra/offline-mutation-queue.ts +280 -0
  606. package/src/infra/rnbu-download-manager-adapter.ts +29 -0
  607. package/src/infra/rnp-permission-manager-adapter.ts +147 -0
  608. package/src/infra/storage-cookie-manager-adapter.ts +29 -0
  609. package/src/main/components/index.ts +4 -0
  610. package/src/main/components/request-permissions.tsx +17 -0
  611. package/src/main/factories/infra/download-manager-factory.ts +6 -0
  612. package/src/main/factories/infra/http-client-factory.ts +9 -0
  613. package/src/main/factories/infra/index.ts +7 -0
  614. package/src/main/factories/infra/isomorphic-id-manager-factory.ts +6 -0
  615. package/src/main/factories/infra/notification-manager-factory.ts +8 -0
  616. package/src/main/factories/infra/offline-mutation-queue-factory.ts +22 -0
  617. package/src/main/factories/infra/permission-manager-factory.ts +6 -0
  618. package/src/main/factories/infra/storage-factory.ts +11 -0
  619. package/src/main/factories/use-cases/index.ts +3 -0
  620. package/src/main/factories/use-cases/remote-get-comment-list-factory.ts +6 -0
  621. package/src/main/factories/use-cases/remote-get-image-list-factory.ts +6 -0
  622. package/src/main/factories/use-cases/remote-send-diagnostics-factory.ts +10 -0
  623. package/src/presentation/components/atoms/UIBackdrop.tsx +35 -0
  624. package/src/presentation/components/atoms/UICheckbox.tsx +58 -0
  625. package/src/presentation/components/atoms/UIDot.tsx +40 -0
  626. package/src/presentation/components/atoms/UIIcon.tsx +1091 -0
  627. package/src/presentation/components/atoms/UILoading.tsx +17 -0
  628. package/src/presentation/components/atoms/UIPage.tsx +92 -0
  629. package/src/presentation/components/atoms/UIProgress.tsx +60 -0
  630. package/src/presentation/components/atoms/UIScrollPage.tsx +87 -0
  631. package/src/presentation/components/atoms/UISeparator.tsx +41 -0
  632. package/src/presentation/components/atoms/UISpacer.tsx +21 -0
  633. package/src/presentation/components/atoms/UIStack.tsx +44 -0
  634. package/src/presentation/components/atoms/UIText.tsx +59 -0
  635. package/src/presentation/components/atoms/index.ts +12 -0
  636. package/src/presentation/components/index.ts +1 -0
  637. package/src/presentation/components/molecules/UIActionSheet.tsx +230 -0
  638. package/src/presentation/components/molecules/UIButton.tsx +192 -0
  639. package/src/presentation/components/molecules/UIButtonCTA.tsx +38 -0
  640. package/src/presentation/components/molecules/UICheckboxInput.tsx +106 -0
  641. package/src/presentation/components/molecules/UIChip.tsx +69 -0
  642. package/src/presentation/components/molecules/UICurrencyInput.tsx +43 -0
  643. package/src/presentation/components/molecules/UIDataList.tsx +30 -0
  644. package/src/presentation/components/molecules/UIDataSectionList.tsx +30 -0
  645. package/src/presentation/components/molecules/UIDatetimeInput.tsx +205 -0
  646. package/src/presentation/components/molecules/UIError.tsx +24 -0
  647. package/src/presentation/components/molecules/UIImage.tsx +85 -0
  648. package/src/presentation/components/molecules/UIInlineDatePicker.tsx +244 -0
  649. package/src/presentation/components/molecules/UIInputIcon.tsx +39 -0
  650. package/src/presentation/components/molecules/UIList.tsx +17 -0
  651. package/src/presentation/components/molecules/UIRadioInput.tsx +97 -0
  652. package/src/presentation/components/molecules/UISectionList.tsx +17 -0
  653. package/src/presentation/components/molecules/UISkeleton.tsx +66 -0
  654. package/src/presentation/components/molecules/UISwitch.tsx +72 -0
  655. package/src/presentation/components/molecules/UITextInput.tsx +160 -0
  656. package/src/presentation/components/molecules/UITextInputMask.tsx +160 -0
  657. package/src/presentation/components/molecules/index.ts +20 -0
  658. package/src/presentation/components/organisms/UIAppBar.tsx +103 -0
  659. package/src/presentation/components/organisms/UIAppBarAction.tsx +13 -0
  660. package/src/presentation/components/organisms/UICard.tsx +48 -0
  661. package/src/presentation/components/organisms/UIComment.tsx +64 -0
  662. package/src/presentation/components/organisms/UIErrorBoundary.tsx +72 -0
  663. package/src/presentation/components/organisms/UIForm.tsx +81 -0
  664. package/src/presentation/components/organisms/UIFormButton.tsx +38 -0
  665. package/src/presentation/components/organisms/UIFormCheckboxInput.tsx +35 -0
  666. package/src/presentation/components/organisms/UIFormCurrencyInput.tsx +65 -0
  667. package/src/presentation/components/organisms/UIFormDatetimeInput.tsx +51 -0
  668. package/src/presentation/components/organisms/UIFormMultiselectInput.tsx +251 -0
  669. package/src/presentation/components/organisms/UIFormRadioInput.tsx +32 -0
  670. package/src/presentation/components/organisms/UIFormSelectInput.tsx +316 -0
  671. package/src/presentation/components/organisms/UIFormTextInput.tsx +62 -0
  672. package/src/presentation/components/organisms/UIFormTextInputMask.tsx +79 -0
  673. package/src/presentation/components/organisms/UIRow.tsx +61 -0
  674. package/src/presentation/components/organisms/UISearchInput.tsx +40 -0
  675. package/src/presentation/components/organisms/UISelectChip.tsx +104 -0
  676. package/src/presentation/components/organisms/UISignature.tsx +194 -0
  677. package/src/presentation/components/organisms/UISlideButton.tsx +112 -0
  678. package/src/presentation/components/organisms/index.ts +21 -0
  679. package/src/presentation/components/permissions/index.ts +1 -0
  680. package/src/presentation/components/permissions/request-permissions.tsx +115 -0
  681. package/src/presentation/domain/metadata/index.ts +2 -0
  682. package/src/presentation/domain/metadata/use-comments.ts +27 -0
  683. package/src/presentation/domain/metadata/use-images.ts +27 -0
  684. package/src/presentation/domain/offline/index.ts +9 -0
  685. package/src/presentation/domain/offline/offline-mutation-queue-provider.tsx +95 -0
  686. package/src/presentation/domain/offline/types.ts +21 -0
  687. package/src/presentation/domain/offline/use-infinite-offline-query.tsx +89 -0
  688. package/src/presentation/domain/offline/use-offline-id-v2.ts +29 -0
  689. package/src/presentation/domain/offline/use-offline-id.ts +12 -0
  690. package/src/presentation/domain/offline/use-offline-mutation.ts +150 -0
  691. package/src/presentation/domain/offline/use-offline-query.ts +55 -0
  692. package/src/presentation/domain/offline/use-offline-queue.ts +6 -0
  693. package/src/presentation/domain/offline/utils.ts +139 -0
  694. package/src/presentation/domain/provider/index.ts +1 -0
  695. package/src/presentation/domain/provider/zuq-core-provider.tsx +52 -0
  696. package/src/presentation/domain/utils/exists.ts +3 -0
  697. package/src/presentation/domain/utils/index.ts +5 -0
  698. package/src/presentation/domain/utils/react-query.ts +10 -0
  699. package/src/presentation/domain/utils/use-action-sheet.ts +21 -0
  700. package/src/presentation/domain/utils/use-signature-ref.ts +19 -0
  701. package/src/presentation/domain/utils/yup.ts +3 -0
  702. package/src/theme.ts +240 -0
@@ -0,0 +1,69 @@
1
+ "use strict";
2
+
3
+ import React from 'react';
4
+ import { UITextInputMask } from "../molecules/index.js";
5
+ import { useController, useFormContext } from 'react-hook-form';
6
+ import { theme } from "../../../theme.js";
7
+ import { UIIcon, UIText, UIStack } from "../atoms/index.js";
8
+ import { StyleSheet } from 'react-native';
9
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
10
+ export const UIFormTextInputMask = /*#__PURE__*/React.forwardRef(({
11
+ name,
12
+ containerStyle,
13
+ onChangeText: onChangeTextProp,
14
+ formContainerStyle,
15
+ mask,
16
+ ...props
17
+ }, ref) => {
18
+ const [value, setValue] = React.useState('');
19
+ const {
20
+ control,
21
+ formState: {
22
+ errors
23
+ }
24
+ } = useFormContext();
25
+ const {
26
+ field
27
+ } = useController({
28
+ name,
29
+ control
30
+ });
31
+ const hasError = Boolean(errors[name]);
32
+ const onChangeText = React.useCallback((formatted, extracted, obfuscated) => {
33
+ field.onChange(extracted);
34
+ setValue(formatted);
35
+ onChangeTextProp?.(formatted, extracted, obfuscated);
36
+ }, [field, onChangeTextProp]);
37
+ React.useEffect(() => {
38
+ setValue(field.value);
39
+ }, [field.value]);
40
+ return /*#__PURE__*/_jsxs(UIStack, {
41
+ style: [styles.container, formContainerStyle],
42
+ children: [/*#__PURE__*/_jsx(UITextInputMask, {
43
+ ref: ref,
44
+ value: value,
45
+ onChangeText: onChangeText,
46
+ mask: mask,
47
+ containerStyle: [hasError && {
48
+ borderColor: theme.color.feedback.red['500']
49
+ }, containerStyle],
50
+ ...props
51
+ }), hasError && /*#__PURE__*/_jsxs(UIStack, {
52
+ horizontal: true,
53
+ center: true,
54
+ children: [/*#__PURE__*/_jsx(UIText, {
55
+ color: "feedback-red-500",
56
+ children: errors[name]?.message?.toString()
57
+ }), /*#__PURE__*/_jsx(UIIcon, {
58
+ name: "warning",
59
+ color: theme.color.feedback.red['500']
60
+ })]
61
+ })]
62
+ });
63
+ });
64
+ const styles = StyleSheet.create({
65
+ container: {
66
+ flexGrow: 1
67
+ }
68
+ });
69
+ //# sourceMappingURL=UIFormTextInputMask.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","UITextInputMask","useController","useFormContext","theme","UIIcon","UIText","UIStack","StyleSheet","jsx","_jsx","jsxs","_jsxs","UIFormTextInputMask","forwardRef","name","containerStyle","onChangeText","onChangeTextProp","formContainerStyle","mask","props","ref","value","setValue","useState","control","formState","errors","field","hasError","Boolean","useCallback","formatted","extracted","obfuscated","onChange","useEffect","style","styles","container","children","borderColor","color","feedback","red","horizontal","center","message","toString","create","flexGrow"],"sourceRoot":"../../../../../src","sources":["presentation/components/organisms/UIFormTextInputMask.tsx"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,eAAe,QAAQ,uBAAc;AAC9C,SAASC,aAAa,EAAEC,cAAc,QAAQ,iBAAiB;AAC/D,SAASC,KAAK,QAAQ,mBAAgB;AACtC,SAASC,MAAM,EAAEC,MAAM,EAAEC,OAAO,QAAQ,mBAAU;AAClD,SAASC,UAAU,QAAwB,cAAc;AAAC,SAAAC,GAAA,IAAAC,IAAA,EAAAC,IAAA,IAAAC,KAAA;AAO1D,OAAO,MAAMC,mBAAmB,gBAAGb,KAAK,CAACc,UAAU,CACjD,CACE;EACEC,IAAI;EACJC,cAAc;EACdC,YAAY,EAAEC,gBAAgB;EAC9BC,kBAAkB;EAClBC,IAAI;EACJ,GAAGC;AACL,CAAC,EACDC,GAAG,KACA;EACH,MAAM,CAACC,KAAK,EAAEC,QAAQ,CAAC,GAAGxB,KAAK,CAACyB,QAAQ,CAAS,EAAE,CAAC;EACpD,MAAM;IACJC,OAAO;IACPC,SAAS,EAAE;MAAEC;IAAO;EACtB,CAAC,GAAGzB,cAAc,CAAC,CAAC;EACpB,MAAM;IAAE0B;EAAM,CAAC,GAAG3B,aAAa,CAAC;IAAEa,IAAI;IAAEW;EAAQ,CAAC,CAAC;EAElD,MAAMI,QAAQ,GAAGC,OAAO,CAACH,MAAM,CAACb,IAAI,CAAC,CAAC;EAEtC,MAAME,YAAY,GAAGjB,KAAK,CAACgC,WAAW,CACpC,CAACC,SAAiB,EAAEC,SAAiB,EAAEC,UAAkB,KAAK;IAC5DN,KAAK,CAACO,QAAQ,CAACF,SAAS,CAAC;IACzBV,QAAQ,CAACS,SAAS,CAAC;IACnBf,gBAAgB,GAAGe,SAAS,EAAEC,SAAS,EAAEC,UAAU,CAAC;EACtD,CAAC,EACD,CAACN,KAAK,EAAEX,gBAAgB,CAC1B,CAAC;EAEDlB,KAAK,CAACqC,SAAS,CAAC,MAAM;IACpBb,QAAQ,CAACK,KAAK,CAACN,KAAK,CAAC;EACvB,CAAC,EAAE,CAACM,KAAK,CAACN,KAAK,CAAC,CAAC;EAEjB,oBACEX,KAAA,CAACL,OAAO;IAAC+B,KAAK,EAAE,CAACC,MAAM,CAACC,SAAS,EAAErB,kBAAkB,CAAE;IAAAsB,QAAA,gBACrD/B,IAAA,CAACT,eAAe;MACdqB,GAAG,EAAEA,GAAI;MACTC,KAAK,EAAEA,KAAM;MACbN,YAAY,EAAEA,YAAa;MAC3BG,IAAI,EAAEA,IAAK;MACXJ,cAAc,EAAE,CACdc,QAAQ,IAAI;QACVY,WAAW,EAAEtC,KAAK,CAACuC,KAAK,CAACC,QAAQ,CAACC,GAAG,CAAC,KAAK;MAC7C,CAAC,EACD7B,cAAc,CACd;MAAA,GACEK;IAAK,CACV,CAAC,EACDS,QAAQ,iBACPlB,KAAA,CAACL,OAAO;MAACuC,UAAU;MAACC,MAAM;MAAAN,QAAA,gBACxB/B,IAAA,CAACJ,MAAM;QAACqC,KAAK,EAAC,kBAAkB;QAAAF,QAAA,EAC7Bb,MAAM,CAACb,IAAI,CAAC,EAAEiC,OAAO,EAAEC,QAAQ,CAAC;MAAC,CAC5B,CAAC,eACTvC,IAAA,CAACL,MAAM;QAACU,IAAI,EAAC,SAAS;QAAC4B,KAAK,EAAEvC,KAAK,CAACuC,KAAK,CAACC,QAAQ,CAACC,GAAG,CAAC,KAAK;MAAE,CAAE,CAAC;IAAA,CAC1D,CACV;EAAA,CACM,CAAC;AAEd,CACF,CAAC;AAED,MAAMN,MAAM,GAAG/B,UAAU,CAAC0C,MAAM,CAAC;EAC/BV,SAAS,EAAE;IACTW,QAAQ,EAAE;EACZ;AACF,CAAC,CAAC","ignoreList":[]}
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+
3
+ import { StyleSheet } from 'react-native';
4
+ import React from 'react';
5
+ import { UIIcon, UIText, UIStack } from "../atoms/index.js";
6
+ import { UIButton } from "../molecules/index.js";
7
+ import { theme } from "../../../theme.js";
8
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
9
+ export const UIRow = ({
10
+ label,
11
+ icon,
12
+ value,
13
+ pressable,
14
+ disabled,
15
+ style,
16
+ contentStyle,
17
+ ...props
18
+ }) => {
19
+ if (typeof value === 'string' || typeof value === 'number') value = /*#__PURE__*/_jsx(UIText, {
20
+ children: value
21
+ });
22
+ return /*#__PURE__*/_jsx(UIButton, {
23
+ disabled: !pressable || disabled,
24
+ style: [styles.button, style],
25
+ ...props,
26
+ children: /*#__PURE__*/_jsxs(UIStack, {
27
+ horizontal: true,
28
+ center: true,
29
+ style: [styles.container, contentStyle],
30
+ children: [/*#__PURE__*/_jsxs(UIStack, {
31
+ size: "lg",
32
+ horizontal: true,
33
+ center: true,
34
+ children: [icon && /*#__PURE__*/_jsx(UIIcon, {
35
+ name: icon,
36
+ size: 24,
37
+ color: theme.color.neutral.mid['60']
38
+ }), /*#__PURE__*/_jsx(UIText, {
39
+ children: label
40
+ })]
41
+ }), value]
42
+ })
43
+ });
44
+ };
45
+ const styles = StyleSheet.create({
46
+ container: {
47
+ justifyContent: 'space-between',
48
+ paddingHorizontal: 24,
49
+ paddingVertical: 20
50
+ },
51
+ button: {
52
+ padding: 0
53
+ }
54
+ });
55
+ //# sourceMappingURL=UIRow.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["StyleSheet","React","UIIcon","UIText","UIStack","UIButton","theme","jsx","_jsx","jsxs","_jsxs","UIRow","label","icon","value","pressable","disabled","style","contentStyle","props","children","styles","button","horizontal","center","container","size","name","color","neutral","mid","create","justifyContent","paddingHorizontal","paddingVertical","padding"],"sourceRoot":"../../../../../src","sources":["presentation/components/organisms/UIRow.tsx"],"mappings":";;AAAA,SAASA,UAAU,QAAQ,cAAc;AACzC,OAAOC,KAAK,MAAM,OAAO;AACzB,SAASC,MAAM,EAAEC,MAAM,EAAEC,OAAO,QAAQ,mBAAU;AAElD,SAASC,QAAQ,QAAQ,uBAAc;AACvC,SAASC,KAAK,QAAQ,mBAAgB;AAAC,SAAAC,GAAA,IAAAC,IAAA,EAAAC,IAAA,IAAAC,KAAA;AAUvC,OAAO,MAAMC,KAAK,GAAGA,CAAC;EACpBC,KAAK;EACLC,IAAI;EACJC,KAAK;EACLC,SAAS;EACTC,QAAQ;EACRC,KAAK;EACLC,YAAY;EACZ,GAAGC;AACE,CAAC,KAAK;EACX,IAAI,OAAOL,KAAK,KAAK,QAAQ,IAAI,OAAOA,KAAK,KAAK,QAAQ,EACxDA,KAAK,gBAAGN,IAAA,CAACL,MAAM;IAAAiB,QAAA,EAAEN;EAAK,CAAS,CAAC;EAElC,oBACEN,IAAA,CAACH,QAAQ;IACPW,QAAQ,EAAE,CAACD,SAAS,IAAIC,QAAS;IACjCC,KAAK,EAAE,CAACI,MAAM,CAACC,MAAM,EAAEL,KAAK,CAAS;IAAA,GACjCE,KAAK;IAAAC,QAAA,eAETV,KAAA,CAACN,OAAO;MAACmB,UAAU;MAACC,MAAM;MAACP,KAAK,EAAE,CAACI,MAAM,CAACI,SAAS,EAAEP,YAAY,CAAE;MAAAE,QAAA,gBACjEV,KAAA,CAACN,OAAO;QAACsB,IAAI,EAAC,IAAI;QAACH,UAAU;QAACC,MAAM;QAAAJ,QAAA,GACjCP,IAAI,iBACHL,IAAA,CAACN,MAAM;UACLyB,IAAI,EAAEd,IAAK;UACXa,IAAI,EAAE,EAAG;UACTE,KAAK,EAAEtB,KAAK,CAACsB,KAAK,CAACC,OAAO,CAACC,GAAG,CAAC,IAAI;QAAE,CACtC,CACF,eACDtB,IAAA,CAACL,MAAM;UAAAiB,QAAA,EAAER;QAAK,CAAS,CAAC;MAAA,CACjB,CAAC,EACTE,KAAK;IAAA,CACC;EAAC,CACF,CAAC;AAEf,CAAC;AAED,MAAMO,MAAM,GAAGrB,UAAU,CAAC+B,MAAM,CAAC;EAC/BN,SAAS,EAAE;IACTO,cAAc,EAAE,eAAe;IAC/BC,iBAAiB,EAAE,EAAE;IACrBC,eAAe,EAAE;EACnB,CAAC;EACDZ,MAAM,EAAE;IACNa,OAAO,EAAE;EACX;AACF,CAAC,CAAC","ignoreList":[]}
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+
3
+ import { StyleSheet } from 'react-native';
4
+ import { UIInputIcon, UITextInput } from "../molecules/index.js";
5
+ import { theme } from "../../../theme.js";
6
+ import { jsx as _jsx } from "react/jsx-runtime";
7
+ export const UISearchInput = ({
8
+ placeholder,
9
+ startIcon,
10
+ containerStyle,
11
+ ...props
12
+ }) => {
13
+ return /*#__PURE__*/_jsx(UITextInput, {
14
+ variant: "outlined",
15
+ placeholder: placeholder ?? 'Insira o termo da busca...',
16
+ startIcon: startIcon ?? /*#__PURE__*/_jsx(UIInputIcon, {
17
+ name: "search",
18
+ size: 20,
19
+ position: "start",
20
+ color: theme.color.brand.violet['500']
21
+ }),
22
+ containerStyle: [styles.container, containerStyle],
23
+ ...props
24
+ });
25
+ };
26
+ const styles = StyleSheet.create({
27
+ container: {
28
+ backgroundColor: theme.color.neutral.light['20'],
29
+ borderColor: theme.color.neutral.light['20'],
30
+ borderRadius: 28
31
+ }
32
+ });
33
+ //# sourceMappingURL=UISearchInput.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["StyleSheet","UIInputIcon","UITextInput","theme","jsx","_jsx","UISearchInput","placeholder","startIcon","containerStyle","props","variant","name","size","position","color","brand","violet","styles","container","create","backgroundColor","neutral","light","borderColor","borderRadius"],"sourceRoot":"../../../../../src","sources":["presentation/components/organisms/UISearchInput.tsx"],"mappings":";;AAAA,SAASA,UAAU,QAAQ,cAAc;AACzC,SAASC,WAAW,EAAEC,WAAW,QAAQ,uBAAc;AACvD,SAASC,KAAK,QAAQ,mBAAgB;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAKvC,OAAO,MAAMC,aAAa,GAAGA,CAAC;EAC5BC,WAAW;EACXC,SAAS;EACTC,cAAc;EACd,GAAGC;AACE,CAAC,KAAK;EACX,oBACEL,IAAA,CAACH,WAAW;IACVS,OAAO,EAAC,UAAU;IAClBJ,WAAW,EAAEA,WAAW,IAAI,4BAA6B;IACzDC,SAAS,EACPA,SAAS,iBACPH,IAAA,CAACJ,WAAW;MACVW,IAAI,EAAC,QAAQ;MACbC,IAAI,EAAE,EAAG;MACTC,QAAQ,EAAC,OAAO;MAChBC,KAAK,EAAEZ,KAAK,CAACY,KAAK,CAACC,KAAK,CAACC,MAAM,CAAC,KAAK;IAAE,CACxC,CAEJ;IACDR,cAAc,EAAE,CAACS,MAAM,CAACC,SAAS,EAAEV,cAAc,CAAE;IAAA,GAC/CC;EAAK,CACV,CAAC;AAEN,CAAC;AAED,MAAMQ,MAAM,GAAGlB,UAAU,CAACoB,MAAM,CAAC;EAC/BD,SAAS,EAAE;IACTE,eAAe,EAAElB,KAAK,CAACY,KAAK,CAACO,OAAO,CAACC,KAAK,CAAC,IAAI,CAAC;IAChDC,WAAW,EAAErB,KAAK,CAACY,KAAK,CAACO,OAAO,CAACC,KAAK,CAAC,IAAI,CAAC;IAC5CE,YAAY,EAAE;EAChB;AACF,CAAC,CAAC","ignoreList":[]}
@@ -0,0 +1,94 @@
1
+ "use strict";
2
+
3
+ import { StyleSheet } from 'react-native';
4
+ import { UIButton, UIChip, UIList } from "../molecules/index.js";
5
+ import { UIIcon, UISeparator, UISpacer, UIStack, UIText } from "../atoms/index.js";
6
+ import { theme } from "../../../theme.js";
7
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
8
+ export const UISelectChip = ({
9
+ data,
10
+ getItemLabel,
11
+ getItemKey,
12
+ selected,
13
+ onSelect,
14
+ onReset,
15
+ ...props
16
+ }) => {
17
+ return /*#__PURE__*/_jsx(UIList, {
18
+ horizontal: true,
19
+ data: data,
20
+ renderItem: ({
21
+ item
22
+ }) => {
23
+ const isSelected = getItemKey(selected) === getItemKey(item);
24
+ return /*#__PURE__*/_jsx(UIButton, {
25
+ onPress: () => onSelect(item),
26
+ style: styles.button,
27
+ children: /*#__PURE__*/_jsx(UIChip, {
28
+ content: /*#__PURE__*/_jsxs(UIStack, {
29
+ horizontal: true,
30
+ center: true,
31
+ children: [isSelected && /*#__PURE__*/_jsx(UIIcon, {
32
+ name: "check-alt",
33
+ color: theme.color.neutral.light['00']
34
+ }), /*#__PURE__*/_jsx(UIText, {
35
+ weight: "500",
36
+ color: isSelected ? 'neutral-light-00' : 'neutral-mid-60',
37
+ children: getItemLabel(item)
38
+ })]
39
+ }),
40
+ color: isSelected ? 'brand-violet-500' : 'neutral-light-05',
41
+ borderColor: isSelected ? 'brand-violet-500' : 'neutral-light-50',
42
+ style: styles.chip
43
+ })
44
+ });
45
+ },
46
+ ItemSeparatorComponent: () => /*#__PURE__*/_jsx(UISpacer, {
47
+ horizontal: true
48
+ }),
49
+ ListHeaderComponent: () => /*#__PURE__*/_jsxs(UIStack, {
50
+ horizontal: true,
51
+ center: true,
52
+ size: "md",
53
+ style: styles.header,
54
+ children: [/*#__PURE__*/_jsx(UIButton, {
55
+ onPress: () => onReset(),
56
+ style: styles.button,
57
+ children: /*#__PURE__*/_jsx(UIChip, {
58
+ content: /*#__PURE__*/_jsxs(UIStack, {
59
+ horizontal: true,
60
+ center: true,
61
+ children: [!selected && /*#__PURE__*/_jsx(UIIcon, {
62
+ name: "check-alt",
63
+ color: theme.color.neutral.light['00']
64
+ }), /*#__PURE__*/_jsx(UIText, {
65
+ weight: "500",
66
+ color: !selected ? 'neutral-light-00' : 'neutral-mid-60',
67
+ children: "Todos"
68
+ })]
69
+ }),
70
+ color: !selected ? 'brand-violet-500' : 'neutral-light-05',
71
+ borderColor: !selected ? 'brand-violet-500' : 'neutral-light-50',
72
+ style: styles.chip
73
+ })
74
+ }), /*#__PURE__*/_jsx(UISeparator, {
75
+ horizontal: false
76
+ })]
77
+ }),
78
+ ...props
79
+ });
80
+ };
81
+ const styles = StyleSheet.create({
82
+ chip: {
83
+ paddingTop: 6,
84
+ paddingBottom: 6,
85
+ paddingHorizontal: 16
86
+ },
87
+ header: {
88
+ marginRight: 8
89
+ },
90
+ button: {
91
+ padding: 0
92
+ }
93
+ });
94
+ //# sourceMappingURL=UISelectChip.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["StyleSheet","UIButton","UIChip","UIList","UIIcon","UISeparator","UISpacer","UIStack","UIText","theme","jsx","_jsx","jsxs","_jsxs","UISelectChip","data","getItemLabel","getItemKey","selected","onSelect","onReset","props","horizontal","renderItem","item","isSelected","onPress","style","styles","button","children","content","center","name","color","neutral","light","weight","borderColor","chip","ItemSeparatorComponent","ListHeaderComponent","size","header","create","paddingTop","paddingBottom","paddingHorizontal","marginRight","padding"],"sourceRoot":"../../../../../src","sources":["presentation/components/organisms/UISelectChip.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,159 @@
1
+ "use strict";
2
+
3
+ import { Canvas, Path, Skia, notifyChange, useCanvasRef } from '@shopify/react-native-skia';
4
+ import React from 'react';
5
+ import { Dimensions, Image, StyleSheet } from 'react-native';
6
+ import ReactNativeBlobUtil from 'react-native-blob-util';
7
+ import { Gesture, GestureDetector } from 'react-native-gesture-handler';
8
+ import { useSharedValue } from 'react-native-reanimated';
9
+ import { UIIcon, UISeparator, UIStack, UIText } from "../atoms/index.js";
10
+ import { UIButton } from "../molecules/index.js";
11
+ import { theme } from "../../../theme.js";
12
+ import { scheduleOnRN } from 'react-native-worklets';
13
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
14
+ const {
15
+ width
16
+ } = Dimensions.get('window');
17
+ const SNAPSHOT_PARAMS = {
18
+ height: 250,
19
+ width,
20
+ x: 0,
21
+ y: 0
22
+ };
23
+ export const UISignature = ({
24
+ ref,
25
+ initialImage,
26
+ disabled = false,
27
+ label = 'Assinatura',
28
+ onReset,
29
+ onTouchStart,
30
+ testID,
31
+ accessibilityLabel,
32
+ labelSize = 14,
33
+ containerStyle,
34
+ signatureStyle
35
+ }) => {
36
+ const canvasRef = useCanvasRef();
37
+ const currentPath = useSharedValue(Skia.Path.Make().moveTo(0, 0));
38
+ const [isDirty, setIsDirty] = React.useState(false);
39
+ const [image, setImage] = React.useState(initialImage ?? null);
40
+ const resetSignature = () => {
41
+ onReset?.();
42
+ currentPath.value = Skia.Path.Make().moveTo(0, 0);
43
+ setImage(null);
44
+ };
45
+ const onSave = async () => {
46
+ const image = canvasRef.current?.makeImageSnapshot(SNAPSHOT_PARAMS);
47
+ if (!image) return;
48
+ const name = `${Date.now()}.png`;
49
+ const path = ReactNativeBlobUtil.fs.dirs.DCIMDir + `/signatures/${name}`;
50
+ const base64 = image.encodeToBase64();
51
+ await ReactNativeBlobUtil.fs.writeFile(path, base64, 'base64');
52
+ const values = {
53
+ name,
54
+ uri: `file://${path}`,
55
+ type: 'image/png'
56
+ };
57
+ setImage(values);
58
+ return values;
59
+ };
60
+ const pan = Gesture.Pan().enabled(!disabled).averageTouches(true).maxPointers(1).minDistance(1).onStart(e => {
61
+ currentPath.value.moveTo(e.x, e.y);
62
+ currentPath.value.lineTo(e.x, e.y);
63
+ notifyChange(currentPath);
64
+ if (onTouchStart) scheduleOnRN(onTouchStart);
65
+ }).onUpdate(e => {
66
+ scheduleOnRN(setIsDirty, true);
67
+ currentPath.value.lineTo(e.x, e.y);
68
+ notifyChange(currentPath);
69
+ });
70
+ React.useImperativeHandle(ref, () => ({
71
+ isDirty,
72
+ save: onSave,
73
+ reset: resetSignature
74
+ }));
75
+ React.useEffect(() => {
76
+ if (initialImage) {
77
+ setImage(initialImage);
78
+ }
79
+ }, [initialImage]);
80
+ const {
81
+ height,
82
+ width
83
+ } = StyleSheet.flatten(signatureStyle ?? {});
84
+ return /*#__PURE__*/_jsxs(UIStack, {
85
+ style: [styles.signatureContainer, containerStyle],
86
+ children: [image ? /*#__PURE__*/_jsx(Image, {
87
+ source: image,
88
+ style: [styles.image, Boolean(width) && {
89
+ width
90
+ }, Boolean(height) && {
91
+ height
92
+ }]
93
+ }) : /*#__PURE__*/_jsx(GestureDetector, {
94
+ gesture: pan,
95
+ children: /*#__PURE__*/_jsx(Canvas, {
96
+ ref: canvasRef,
97
+ testID: testID,
98
+ accessibilityLabel: accessibilityLabel,
99
+ style: [styles.container, signatureStyle],
100
+ children: /*#__PURE__*/_jsx(Path, {
101
+ path: currentPath,
102
+ strokeWidth: 5,
103
+ style: "stroke",
104
+ color: "#000"
105
+ })
106
+ })
107
+ }), /*#__PURE__*/_jsxs(UIStack, {
108
+ style: styles.underline,
109
+ children: [/*#__PURE__*/_jsx(UISeparator, {
110
+ color: "neutral-light-50",
111
+ style: styles.separator
112
+ }), /*#__PURE__*/_jsx(UIText, {
113
+ size: labelSize,
114
+ children: label
115
+ })]
116
+ }), /*#__PURE__*/_jsx(UIButton, {
117
+ style: styles.clear,
118
+ onPress: resetSignature,
119
+ disabled: disabled,
120
+ children: /*#__PURE__*/_jsx(UIIcon, {
121
+ name: "close"
122
+ })
123
+ })]
124
+ });
125
+ };
126
+ const styles = StyleSheet.create({
127
+ container: {
128
+ flex: 1,
129
+ position: 'relative'
130
+ },
131
+ image: {
132
+ height: 250,
133
+ width: '100%'
134
+ },
135
+ signatureContainer: {
136
+ height: 250,
137
+ borderWidth: 1,
138
+ borderRadius: 10,
139
+ borderColor: theme.color.neutral.light[50],
140
+ overflow: 'hidden',
141
+ position: 'relative'
142
+ },
143
+ clear: {
144
+ position: 'absolute',
145
+ top: 0,
146
+ right: 0
147
+ },
148
+ underline: {
149
+ position: 'absolute',
150
+ width: '100%',
151
+ paddingHorizontal: 20,
152
+ alignItems: 'center',
153
+ bottom: 20
154
+ },
155
+ separator: {
156
+ opacity: 1
157
+ }
158
+ });
159
+ //# sourceMappingURL=UISignature.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["Canvas","Path","Skia","notifyChange","useCanvasRef","React","Dimensions","Image","StyleSheet","ReactNativeBlobUtil","Gesture","GestureDetector","useSharedValue","UIIcon","UISeparator","UIStack","UIText","UIButton","theme","scheduleOnRN","jsx","_jsx","jsxs","_jsxs","width","get","SNAPSHOT_PARAMS","height","x","y","UISignature","ref","initialImage","disabled","label","onReset","onTouchStart","testID","accessibilityLabel","labelSize","containerStyle","signatureStyle","canvasRef","currentPath","Make","moveTo","isDirty","setIsDirty","useState","image","setImage","resetSignature","value","onSave","current","makeImageSnapshot","name","Date","now","path","fs","dirs","DCIMDir","base64","encodeToBase64","writeFile","values","uri","type","pan","Pan","enabled","averageTouches","maxPointers","minDistance","onStart","e","lineTo","onUpdate","useImperativeHandle","save","reset","useEffect","flatten","style","styles","signatureContainer","children","source","Boolean","gesture","container","strokeWidth","color","underline","separator","size","clear","onPress","create","flex","position","borderWidth","borderRadius","borderColor","neutral","light","overflow","top","right","paddingHorizontal","alignItems","bottom","opacity"],"sourceRoot":"../../../../../src","sources":["presentation/components/organisms/UISignature.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,90 @@
1
+ "use strict";
2
+
3
+ import React from 'react';
4
+ import { StyleSheet } from 'react-native';
5
+ import { Gesture, GestureDetector } from 'react-native-gesture-handler';
6
+ import Animated, { Extrapolation, clamp, interpolate, runOnJS, useAnimatedStyle, useSharedValue, withSpring } from 'react-native-reanimated';
7
+ import { UIStack, UIText } from "../atoms/index.js";
8
+ import { UIButton } from "../molecules/index.js";
9
+ import { theme } from "../../../theme.js";
10
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
11
+ export const UISlideButton = ({
12
+ children,
13
+ helperText,
14
+ onPress
15
+ }) => {
16
+ const [containerWidth, setContainerWidth] = React.useState(0);
17
+ const [buttonWidth, setButtonWidth] = React.useState(0);
18
+ const animation = useSharedValue(0);
19
+ const max = containerWidth - buttonWidth;
20
+ const buttonAnimatedStyle = useAnimatedStyle(() => {
21
+ return {
22
+ transform: [{
23
+ translateX: interpolate(animation.value, [0, 1], [0, max])
24
+ }]
25
+ };
26
+ });
27
+ const labelAnimatedStyle = useAnimatedStyle(() => {
28
+ return {
29
+ opacity: interpolate(animation.value, [0, 1], [1, -1.5], Extrapolation.CLAMP)
30
+ };
31
+ });
32
+ const pan = Gesture.Pan().onUpdate(event => {
33
+ animation.value = interpolate(clamp(event.translationX, 0, max), [0, max], [0, 1]);
34
+ }).onEnd(() => {
35
+ if (animation.value > 0.9) {
36
+ if (onPress) {
37
+ runOnJS(onPress)();
38
+ }
39
+ }
40
+ animation.value = withSpring(0, {
41
+ clamp: {
42
+ min: 0
43
+ }
44
+ });
45
+ });
46
+ return /*#__PURE__*/_jsxs(UIStack, {
47
+ style: styles.container,
48
+ onLayout: event => {
49
+ setContainerWidth(event.nativeEvent.layout.width);
50
+ },
51
+ children: [helperText && /*#__PURE__*/_jsx(Animated.View, {
52
+ style: [styles.text, labelAnimatedStyle],
53
+ children: /*#__PURE__*/_jsx(UIText, {
54
+ weight: "600",
55
+ children: helperText
56
+ })
57
+ }), /*#__PURE__*/_jsx(GestureDetector, {
58
+ gesture: pan,
59
+ children: /*#__PURE__*/_jsx(Animated.View, {
60
+ style: buttonAnimatedStyle,
61
+ children: /*#__PURE__*/_jsx(UIButton, {
62
+ variant: "contained",
63
+ style: styles.button,
64
+ onLayout: event => {
65
+ setButtonWidth(event.nativeEvent.layout.width);
66
+ },
67
+ children: children
68
+ })
69
+ })
70
+ })]
71
+ });
72
+ };
73
+ const styles = StyleSheet.create({
74
+ container: {
75
+ backgroundColor: theme.color.neutral.light['20'],
76
+ borderRadius: 16
77
+ },
78
+ button: {
79
+ alignSelf: 'flex-start'
80
+ },
81
+ text: {
82
+ position: 'absolute',
83
+ alignSelf: 'center',
84
+ top: '50%',
85
+ transform: [{
86
+ translateY: -10
87
+ }]
88
+ }
89
+ });
90
+ //# sourceMappingURL=UISlideButton.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","StyleSheet","Gesture","GestureDetector","Animated","Extrapolation","clamp","interpolate","runOnJS","useAnimatedStyle","useSharedValue","withSpring","UIStack","UIText","UIButton","theme","jsx","_jsx","jsxs","_jsxs","UISlideButton","children","helperText","onPress","containerWidth","setContainerWidth","useState","buttonWidth","setButtonWidth","animation","max","buttonAnimatedStyle","transform","translateX","value","labelAnimatedStyle","opacity","CLAMP","pan","Pan","onUpdate","event","translationX","onEnd","min","style","styles","container","onLayout","nativeEvent","layout","width","View","text","weight","gesture","variant","button","create","backgroundColor","color","neutral","light","borderRadius","alignSelf","position","top","translateY"],"sourceRoot":"../../../../../src","sources":["presentation/components/organisms/UISlideButton.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+
3
+ export * from "./UIForm.js";
4
+ export * from "./UIFormTextInput.js";
5
+ export * from "./UICard.js";
6
+ export * from "./UIFormButton.js";
7
+ export * from "./UIRow.js";
8
+ export * from "./UIComment.js";
9
+ export * from "./UIFormRadioInput.js";
10
+ export * from "./UIAppBarAction.js";
11
+ export * from "./UIAppBar.js";
12
+ export * from "./UIFormDatetimeInput.js";
13
+ export * from "./UIFormCheckboxInput.js";
14
+ export * from "./UIFormRadioInput.js";
15
+ export * from "./UIFormMultiselectInput.js";
16
+ export * from "./UIFormSelectInput.js";
17
+ export * from "./UIFormTextInputMask.js";
18
+ export * from "./UIFormCurrencyInput.js";
19
+ export * from "./UISlideButton.js";
20
+ export * from "./UISearchInput.js";
21
+ export * from "./UISelectChip.js";
22
+ export * from "./UIErrorBoundary.js";
23
+ export * from "./UISignature.js";
24
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../../src","sources":["presentation/components/organisms/index.ts"],"mappings":";;AAAA,cAAc,aAAU;AACxB,cAAc,sBAAmB;AACjC,cAAc,aAAU;AACxB,cAAc,mBAAgB;AAC9B,cAAc,YAAS;AACvB,cAAc,gBAAa;AAC3B,cAAc,uBAAoB;AAClC,cAAc,qBAAkB;AAChC,cAAc,eAAY;AAC1B,cAAc,0BAAuB;AACrC,cAAc,0BAAuB;AACrC,cAAc,uBAAoB;AAClC,cAAc,6BAA0B;AACxC,cAAc,wBAAqB;AACnC,cAAc,0BAAuB;AACrC,cAAc,0BAAuB;AACrC,cAAc,oBAAiB;AAC/B,cAAc,oBAAiB;AAC/B,cAAc,mBAAgB;AAC9B,cAAc,sBAAmB;AACjC,cAAc,kBAAe","ignoreList":[]}
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+
3
+ export * from "./request-permissions.js";
4
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../../src","sources":["presentation/components/permissions/index.ts"],"mappings":";;AAAA,cAAc,0BAAuB","ignoreList":[]}