@docyrus/rn-assistant 0.0.1

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 (314) hide show
  1. package/README.md +477 -0
  2. package/dist/commonjs/components/agent-selector/agent-selector.js +300 -0
  3. package/dist/commonjs/components/agent-selector/agent-selector.js.map +1 -0
  4. package/dist/commonjs/components/agent-selector/index.js +17 -0
  5. package/dist/commonjs/components/agent-selector/index.js.map +1 -0
  6. package/dist/commonjs/components/assistant-animations/assistant-animations.js +169 -0
  7. package/dist/commonjs/components/assistant-animations/assistant-animations.js.map +1 -0
  8. package/dist/commonjs/components/assistant-animations/index.js +17 -0
  9. package/dist/commonjs/components/assistant-animations/index.js.map +1 -0
  10. package/dist/commonjs/components/assistant-screen/assistant-screen.js +809 -0
  11. package/dist/commonjs/components/assistant-screen/assistant-screen.js.map +1 -0
  12. package/dist/commonjs/components/assistant-screen/index.js +17 -0
  13. package/dist/commonjs/components/assistant-screen/index.js.map +1 -0
  14. package/dist/commonjs/components/index.js +116 -0
  15. package/dist/commonjs/components/index.js.map +1 -0
  16. package/dist/commonjs/components/message-parts/index.js +13 -0
  17. package/dist/commonjs/components/message-parts/index.js.map +1 -0
  18. package/dist/commonjs/components/message-parts/message-parts.js +209 -0
  19. package/dist/commonjs/components/message-parts/message-parts.js.map +1 -0
  20. package/dist/commonjs/components/new-chat/index.js +17 -0
  21. package/dist/commonjs/components/new-chat/index.js.map +1 -0
  22. package/dist/commonjs/components/new-chat/new-chat.js +100 -0
  23. package/dist/commonjs/components/new-chat/new-chat.js.map +1 -0
  24. package/dist/commonjs/components/prompt-input/attachment-picker.js +341 -0
  25. package/dist/commonjs/components/prompt-input/attachment-picker.js.map +1 -0
  26. package/dist/commonjs/components/prompt-input/attachment-preview.js +229 -0
  27. package/dist/commonjs/components/prompt-input/attachment-preview.js.map +1 -0
  28. package/dist/commonjs/components/prompt-input/index.js +41 -0
  29. package/dist/commonjs/components/prompt-input/index.js.map +1 -0
  30. package/dist/commonjs/components/prompt-input/prompt-input.js +288 -0
  31. package/dist/commonjs/components/prompt-input/prompt-input.js.map +1 -0
  32. package/dist/commonjs/components/prompt-input/provider-selector.js +542 -0
  33. package/dist/commonjs/components/prompt-input/provider-selector.js.map +1 -0
  34. package/dist/commonjs/components/prompt-input/reasoning-level-selector.js +350 -0
  35. package/dist/commonjs/components/prompt-input/reasoning-level-selector.js.map +1 -0
  36. package/dist/commonjs/components/prompt-input/voice-recorder.js +260 -0
  37. package/dist/commonjs/components/prompt-input/voice-recorder.js.map +1 -0
  38. package/dist/commonjs/components/sessions-list/index.js +17 -0
  39. package/dist/commonjs/components/sessions-list/index.js.map +1 -0
  40. package/dist/commonjs/components/sessions-list/sessions-list.js +820 -0
  41. package/dist/commonjs/components/sessions-list/sessions-list.js.map +1 -0
  42. package/dist/commonjs/hooks/index.js +34 -0
  43. package/dist/commonjs/hooks/index.js.map +1 -0
  44. package/dist/commonjs/hooks/use-agent-models.js +104 -0
  45. package/dist/commonjs/hooks/use-agent-models.js.map +1 -0
  46. package/dist/commonjs/hooks/use-assistant.js +402 -0
  47. package/dist/commonjs/hooks/use-assistant.js.map +1 -0
  48. package/dist/commonjs/hooks/use-attachment-picker.js +308 -0
  49. package/dist/commonjs/hooks/use-attachment-picker.js.map +1 -0
  50. package/dist/commonjs/hooks/use-voice-recorder.js +217 -0
  51. package/dist/commonjs/hooks/use-voice-recorder.js.map +1 -0
  52. package/dist/commonjs/index.js +112 -0
  53. package/dist/commonjs/index.js.map +1 -0
  54. package/dist/commonjs/package.json +1 -0
  55. package/dist/commonjs/theme/assistant-theme.js +105 -0
  56. package/dist/commonjs/theme/assistant-theme.js.map +1 -0
  57. package/dist/commonjs/theme/index.js +19 -0
  58. package/dist/commonjs/theme/index.js.map +1 -0
  59. package/dist/commonjs/types/index.js +2 -0
  60. package/dist/commonjs/types/index.js.map +1 -0
  61. package/dist/commonjs/ui/action-sheet.js +348 -0
  62. package/dist/commonjs/ui/action-sheet.js.map +1 -0
  63. package/dist/commonjs/ui/alert-dialog.js +134 -0
  64. package/dist/commonjs/ui/alert-dialog.js.map +1 -0
  65. package/dist/commonjs/ui/docyrus-brand-mark.js +52 -0
  66. package/dist/commonjs/ui/docyrus-brand-mark.js.map +1 -0
  67. package/dist/commonjs/ui/docyrus-icon.js +298 -0
  68. package/dist/commonjs/ui/docyrus-icon.js.map +1 -0
  69. package/dist/commonjs/ui/index.js +34 -0
  70. package/dist/commonjs/ui/index.js.map +1 -0
  71. package/dist/commonjs/utils/api-client.js +99 -0
  72. package/dist/commonjs/utils/api-client.js.map +1 -0
  73. package/dist/commonjs/utils/default-api-config.js +195 -0
  74. package/dist/commonjs/utils/default-api-config.js.map +1 -0
  75. package/dist/commonjs/utils/index.js +39 -0
  76. package/dist/commonjs/utils/index.js.map +1 -0
  77. package/dist/commonjs/utils/resolve-api-headers.js +16 -0
  78. package/dist/commonjs/utils/resolve-api-headers.js.map +1 -0
  79. package/dist/module/components/agent-selector/agent-selector.js +296 -0
  80. package/dist/module/components/agent-selector/agent-selector.js.map +1 -0
  81. package/dist/module/components/agent-selector/index.js +4 -0
  82. package/dist/module/components/agent-selector/index.js.map +1 -0
  83. package/dist/module/components/assistant-animations/assistant-animations.js +164 -0
  84. package/dist/module/components/assistant-animations/assistant-animations.js.map +1 -0
  85. package/dist/module/components/assistant-animations/index.js +4 -0
  86. package/dist/module/components/assistant-animations/index.js.map +1 -0
  87. package/dist/module/components/assistant-screen/assistant-screen.js +801 -0
  88. package/dist/module/components/assistant-screen/assistant-screen.js.map +1 -0
  89. package/dist/module/components/assistant-screen/index.js +4 -0
  90. package/dist/module/components/assistant-screen/index.js.map +1 -0
  91. package/dist/module/components/index.js +23 -0
  92. package/dist/module/components/index.js.map +1 -0
  93. package/dist/module/components/message-parts/index.js +4 -0
  94. package/dist/module/components/message-parts/index.js.map +1 -0
  95. package/dist/module/components/message-parts/message-parts.js +205 -0
  96. package/dist/module/components/message-parts/message-parts.js.map +1 -0
  97. package/dist/module/components/new-chat/index.js +4 -0
  98. package/dist/module/components/new-chat/index.js.map +1 -0
  99. package/dist/module/components/new-chat/new-chat.js +96 -0
  100. package/dist/module/components/new-chat/new-chat.js.map +1 -0
  101. package/dist/module/components/prompt-input/attachment-picker.js +337 -0
  102. package/dist/module/components/prompt-input/attachment-picker.js.map +1 -0
  103. package/dist/module/components/prompt-input/attachment-preview.js +225 -0
  104. package/dist/module/components/prompt-input/attachment-preview.js.map +1 -0
  105. package/dist/module/components/prompt-input/index.js +15 -0
  106. package/dist/module/components/prompt-input/index.js.map +1 -0
  107. package/dist/module/components/prompt-input/prompt-input.js +284 -0
  108. package/dist/module/components/prompt-input/prompt-input.js.map +1 -0
  109. package/dist/module/components/prompt-input/provider-selector.js +538 -0
  110. package/dist/module/components/prompt-input/provider-selector.js.map +1 -0
  111. package/dist/module/components/prompt-input/reasoning-level-selector.js +346 -0
  112. package/dist/module/components/prompt-input/reasoning-level-selector.js.map +1 -0
  113. package/dist/module/components/prompt-input/voice-recorder.js +256 -0
  114. package/dist/module/components/prompt-input/voice-recorder.js.map +1 -0
  115. package/dist/module/components/sessions-list/index.js +4 -0
  116. package/dist/module/components/sessions-list/index.js.map +1 -0
  117. package/dist/module/components/sessions-list/sessions-list.js +816 -0
  118. package/dist/module/components/sessions-list/sessions-list.js.map +1 -0
  119. package/dist/module/hooks/index.js +18 -0
  120. package/dist/module/hooks/index.js.map +1 -0
  121. package/dist/module/hooks/use-agent-models.js +100 -0
  122. package/dist/module/hooks/use-agent-models.js.map +1 -0
  123. package/dist/module/hooks/use-assistant.js +398 -0
  124. package/dist/module/hooks/use-assistant.js.map +1 -0
  125. package/dist/module/hooks/use-attachment-picker.js +303 -0
  126. package/dist/module/hooks/use-attachment-picker.js.map +1 -0
  127. package/dist/module/hooks/use-voice-recorder.js +214 -0
  128. package/dist/module/hooks/use-voice-recorder.js.map +1 -0
  129. package/dist/module/index.js +59 -0
  130. package/dist/module/index.js.map +1 -0
  131. package/dist/module/package.json +1 -0
  132. package/dist/module/theme/assistant-theme.js +100 -0
  133. package/dist/module/theme/assistant-theme.js.map +1 -0
  134. package/dist/module/theme/index.js +4 -0
  135. package/dist/module/theme/index.js.map +1 -0
  136. package/dist/module/types/index.js +2 -0
  137. package/dist/module/types/index.js.map +1 -0
  138. package/dist/module/ui/action-sheet.js +344 -0
  139. package/dist/module/ui/action-sheet.js.map +1 -0
  140. package/dist/module/ui/alert-dialog.js +130 -0
  141. package/dist/module/ui/alert-dialog.js.map +1 -0
  142. package/dist/module/ui/docyrus-brand-mark.js +48 -0
  143. package/dist/module/ui/docyrus-brand-mark.js.map +1 -0
  144. package/dist/module/ui/docyrus-icon.js +294 -0
  145. package/dist/module/ui/docyrus-icon.js.map +1 -0
  146. package/dist/module/ui/index.js +7 -0
  147. package/dist/module/ui/index.js.map +1 -0
  148. package/dist/module/utils/api-client.js +95 -0
  149. package/dist/module/utils/api-client.js.map +1 -0
  150. package/dist/module/utils/default-api-config.js +190 -0
  151. package/dist/module/utils/default-api-config.js.map +1 -0
  152. package/dist/module/utils/index.js +12 -0
  153. package/dist/module/utils/index.js.map +1 -0
  154. package/dist/module/utils/resolve-api-headers.js +12 -0
  155. package/dist/module/utils/resolve-api-headers.js.map +1 -0
  156. package/dist/typescript/commonjs/eslint.config.d.mts +4 -0
  157. package/dist/typescript/commonjs/eslint.config.d.mts.map +1 -0
  158. package/dist/typescript/commonjs/package.json +1 -0
  159. package/dist/typescript/commonjs/src/components/agent-selector/agent-selector.d.ts +49 -0
  160. package/dist/typescript/commonjs/src/components/agent-selector/agent-selector.d.ts.map +1 -0
  161. package/dist/typescript/commonjs/src/components/agent-selector/index.d.ts +2 -0
  162. package/dist/typescript/commonjs/src/components/agent-selector/index.d.ts.map +1 -0
  163. package/dist/typescript/commonjs/src/components/assistant-animations/assistant-animations.d.ts +8 -0
  164. package/dist/typescript/commonjs/src/components/assistant-animations/assistant-animations.d.ts.map +1 -0
  165. package/dist/typescript/commonjs/src/components/assistant-animations/index.d.ts +2 -0
  166. package/dist/typescript/commonjs/src/components/assistant-animations/index.d.ts.map +1 -0
  167. package/dist/typescript/commonjs/src/components/assistant-screen/assistant-screen.d.ts +122 -0
  168. package/dist/typescript/commonjs/src/components/assistant-screen/assistant-screen.d.ts.map +1 -0
  169. package/dist/typescript/commonjs/src/components/assistant-screen/index.d.ts +2 -0
  170. package/dist/typescript/commonjs/src/components/assistant-screen/index.d.ts.map +1 -0
  171. package/dist/typescript/commonjs/src/components/index.d.ts +11 -0
  172. package/dist/typescript/commonjs/src/components/index.d.ts.map +1 -0
  173. package/dist/typescript/commonjs/src/components/message-parts/index.d.ts +2 -0
  174. package/dist/typescript/commonjs/src/components/message-parts/index.d.ts.map +1 -0
  175. package/dist/typescript/commonjs/src/components/message-parts/message-parts.d.ts +22 -0
  176. package/dist/typescript/commonjs/src/components/message-parts/message-parts.d.ts.map +1 -0
  177. package/dist/typescript/commonjs/src/components/new-chat/index.d.ts +2 -0
  178. package/dist/typescript/commonjs/src/components/new-chat/index.d.ts.map +1 -0
  179. package/dist/typescript/commonjs/src/components/new-chat/new-chat.d.ts +34 -0
  180. package/dist/typescript/commonjs/src/components/new-chat/new-chat.d.ts.map +1 -0
  181. package/dist/typescript/commonjs/src/components/prompt-input/attachment-picker.d.ts +53 -0
  182. package/dist/typescript/commonjs/src/components/prompt-input/attachment-picker.d.ts.map +1 -0
  183. package/dist/typescript/commonjs/src/components/prompt-input/attachment-preview.d.ts +42 -0
  184. package/dist/typescript/commonjs/src/components/prompt-input/attachment-preview.d.ts.map +1 -0
  185. package/dist/typescript/commonjs/src/components/prompt-input/index.d.ts +9 -0
  186. package/dist/typescript/commonjs/src/components/prompt-input/index.d.ts.map +1 -0
  187. package/dist/typescript/commonjs/src/components/prompt-input/prompt-input.d.ts +139 -0
  188. package/dist/typescript/commonjs/src/components/prompt-input/prompt-input.d.ts.map +1 -0
  189. package/dist/typescript/commonjs/src/components/prompt-input/provider-selector.d.ts +11 -0
  190. package/dist/typescript/commonjs/src/components/prompt-input/provider-selector.d.ts.map +1 -0
  191. package/dist/typescript/commonjs/src/components/prompt-input/reasoning-level-selector.d.ts +35 -0
  192. package/dist/typescript/commonjs/src/components/prompt-input/reasoning-level-selector.d.ts.map +1 -0
  193. package/dist/typescript/commonjs/src/components/prompt-input/voice-recorder.d.ts +48 -0
  194. package/dist/typescript/commonjs/src/components/prompt-input/voice-recorder.d.ts.map +1 -0
  195. package/dist/typescript/commonjs/src/components/sessions-list/index.d.ts +2 -0
  196. package/dist/typescript/commonjs/src/components/sessions-list/index.d.ts.map +1 -0
  197. package/dist/typescript/commonjs/src/components/sessions-list/sessions-list.d.ts +59 -0
  198. package/dist/typescript/commonjs/src/components/sessions-list/sessions-list.d.ts.map +1 -0
  199. package/dist/typescript/commonjs/src/hooks/index.d.ts +8 -0
  200. package/dist/typescript/commonjs/src/hooks/index.d.ts.map +1 -0
  201. package/dist/typescript/commonjs/src/hooks/use-agent-models.d.ts +68 -0
  202. package/dist/typescript/commonjs/src/hooks/use-agent-models.d.ts.map +1 -0
  203. package/dist/typescript/commonjs/src/hooks/use-assistant.d.ts +55 -0
  204. package/dist/typescript/commonjs/src/hooks/use-assistant.d.ts.map +1 -0
  205. package/dist/typescript/commonjs/src/hooks/use-attachment-picker.d.ts +99 -0
  206. package/dist/typescript/commonjs/src/hooks/use-attachment-picker.d.ts.map +1 -0
  207. package/dist/typescript/commonjs/src/hooks/use-voice-recorder.d.ts +101 -0
  208. package/dist/typescript/commonjs/src/hooks/use-voice-recorder.d.ts.map +1 -0
  209. package/dist/typescript/commonjs/src/index.d.ts +47 -0
  210. package/dist/typescript/commonjs/src/index.d.ts.map +1 -0
  211. package/dist/typescript/commonjs/src/theme/assistant-theme.d.ts +51 -0
  212. package/dist/typescript/commonjs/src/theme/assistant-theme.d.ts.map +1 -0
  213. package/dist/typescript/commonjs/src/theme/index.d.ts +2 -0
  214. package/dist/typescript/commonjs/src/theme/index.d.ts.map +1 -0
  215. package/dist/typescript/commonjs/src/types/index.d.ts +167 -0
  216. package/dist/typescript/commonjs/src/types/index.d.ts.map +1 -0
  217. package/dist/typescript/commonjs/src/ui/action-sheet.d.ts +29 -0
  218. package/dist/typescript/commonjs/src/ui/action-sheet.d.ts.map +1 -0
  219. package/dist/typescript/commonjs/src/ui/alert-dialog.d.ts +12 -0
  220. package/dist/typescript/commonjs/src/ui/alert-dialog.d.ts.map +1 -0
  221. package/dist/typescript/commonjs/src/ui/docyrus-brand-mark.d.ts +5 -0
  222. package/dist/typescript/commonjs/src/ui/docyrus-brand-mark.d.ts.map +1 -0
  223. package/dist/typescript/commonjs/src/ui/docyrus-icon.d.ts +11 -0
  224. package/dist/typescript/commonjs/src/ui/docyrus-icon.d.ts.map +1 -0
  225. package/dist/typescript/commonjs/src/ui/index.d.ts +5 -0
  226. package/dist/typescript/commonjs/src/ui/index.d.ts.map +1 -0
  227. package/dist/typescript/commonjs/src/utils/api-client.d.ts +35 -0
  228. package/dist/typescript/commonjs/src/utils/api-client.d.ts.map +1 -0
  229. package/dist/typescript/commonjs/src/utils/default-api-config.d.ts +38 -0
  230. package/dist/typescript/commonjs/src/utils/default-api-config.d.ts.map +1 -0
  231. package/dist/typescript/commonjs/src/utils/index.d.ts +9 -0
  232. package/dist/typescript/commonjs/src/utils/index.d.ts.map +1 -0
  233. package/dist/typescript/commonjs/src/utils/resolve-api-headers.d.ts +3 -0
  234. package/dist/typescript/commonjs/src/utils/resolve-api-headers.d.ts.map +1 -0
  235. package/dist/typescript/module/eslint.config.d.mts +4 -0
  236. package/dist/typescript/module/eslint.config.d.mts.map +1 -0
  237. package/dist/typescript/module/package.json +1 -0
  238. package/dist/typescript/module/src/components/agent-selector/agent-selector.d.ts +49 -0
  239. package/dist/typescript/module/src/components/agent-selector/agent-selector.d.ts.map +1 -0
  240. package/dist/typescript/module/src/components/agent-selector/index.d.ts +2 -0
  241. package/dist/typescript/module/src/components/agent-selector/index.d.ts.map +1 -0
  242. package/dist/typescript/module/src/components/assistant-animations/assistant-animations.d.ts +8 -0
  243. package/dist/typescript/module/src/components/assistant-animations/assistant-animations.d.ts.map +1 -0
  244. package/dist/typescript/module/src/components/assistant-animations/index.d.ts +2 -0
  245. package/dist/typescript/module/src/components/assistant-animations/index.d.ts.map +1 -0
  246. package/dist/typescript/module/src/components/assistant-screen/assistant-screen.d.ts +122 -0
  247. package/dist/typescript/module/src/components/assistant-screen/assistant-screen.d.ts.map +1 -0
  248. package/dist/typescript/module/src/components/assistant-screen/index.d.ts +2 -0
  249. package/dist/typescript/module/src/components/assistant-screen/index.d.ts.map +1 -0
  250. package/dist/typescript/module/src/components/index.d.ts +11 -0
  251. package/dist/typescript/module/src/components/index.d.ts.map +1 -0
  252. package/dist/typescript/module/src/components/message-parts/index.d.ts +2 -0
  253. package/dist/typescript/module/src/components/message-parts/index.d.ts.map +1 -0
  254. package/dist/typescript/module/src/components/message-parts/message-parts.d.ts +22 -0
  255. package/dist/typescript/module/src/components/message-parts/message-parts.d.ts.map +1 -0
  256. package/dist/typescript/module/src/components/new-chat/index.d.ts +2 -0
  257. package/dist/typescript/module/src/components/new-chat/index.d.ts.map +1 -0
  258. package/dist/typescript/module/src/components/new-chat/new-chat.d.ts +34 -0
  259. package/dist/typescript/module/src/components/new-chat/new-chat.d.ts.map +1 -0
  260. package/dist/typescript/module/src/components/prompt-input/attachment-picker.d.ts +53 -0
  261. package/dist/typescript/module/src/components/prompt-input/attachment-picker.d.ts.map +1 -0
  262. package/dist/typescript/module/src/components/prompt-input/attachment-preview.d.ts +42 -0
  263. package/dist/typescript/module/src/components/prompt-input/attachment-preview.d.ts.map +1 -0
  264. package/dist/typescript/module/src/components/prompt-input/index.d.ts +9 -0
  265. package/dist/typescript/module/src/components/prompt-input/index.d.ts.map +1 -0
  266. package/dist/typescript/module/src/components/prompt-input/prompt-input.d.ts +139 -0
  267. package/dist/typescript/module/src/components/prompt-input/prompt-input.d.ts.map +1 -0
  268. package/dist/typescript/module/src/components/prompt-input/provider-selector.d.ts +11 -0
  269. package/dist/typescript/module/src/components/prompt-input/provider-selector.d.ts.map +1 -0
  270. package/dist/typescript/module/src/components/prompt-input/reasoning-level-selector.d.ts +35 -0
  271. package/dist/typescript/module/src/components/prompt-input/reasoning-level-selector.d.ts.map +1 -0
  272. package/dist/typescript/module/src/components/prompt-input/voice-recorder.d.ts +48 -0
  273. package/dist/typescript/module/src/components/prompt-input/voice-recorder.d.ts.map +1 -0
  274. package/dist/typescript/module/src/components/sessions-list/index.d.ts +2 -0
  275. package/dist/typescript/module/src/components/sessions-list/index.d.ts.map +1 -0
  276. package/dist/typescript/module/src/components/sessions-list/sessions-list.d.ts +59 -0
  277. package/dist/typescript/module/src/components/sessions-list/sessions-list.d.ts.map +1 -0
  278. package/dist/typescript/module/src/hooks/index.d.ts +8 -0
  279. package/dist/typescript/module/src/hooks/index.d.ts.map +1 -0
  280. package/dist/typescript/module/src/hooks/use-agent-models.d.ts +68 -0
  281. package/dist/typescript/module/src/hooks/use-agent-models.d.ts.map +1 -0
  282. package/dist/typescript/module/src/hooks/use-assistant.d.ts +55 -0
  283. package/dist/typescript/module/src/hooks/use-assistant.d.ts.map +1 -0
  284. package/dist/typescript/module/src/hooks/use-attachment-picker.d.ts +99 -0
  285. package/dist/typescript/module/src/hooks/use-attachment-picker.d.ts.map +1 -0
  286. package/dist/typescript/module/src/hooks/use-voice-recorder.d.ts +101 -0
  287. package/dist/typescript/module/src/hooks/use-voice-recorder.d.ts.map +1 -0
  288. package/dist/typescript/module/src/index.d.ts +47 -0
  289. package/dist/typescript/module/src/index.d.ts.map +1 -0
  290. package/dist/typescript/module/src/theme/assistant-theme.d.ts +51 -0
  291. package/dist/typescript/module/src/theme/assistant-theme.d.ts.map +1 -0
  292. package/dist/typescript/module/src/theme/index.d.ts +2 -0
  293. package/dist/typescript/module/src/theme/index.d.ts.map +1 -0
  294. package/dist/typescript/module/src/types/index.d.ts +167 -0
  295. package/dist/typescript/module/src/types/index.d.ts.map +1 -0
  296. package/dist/typescript/module/src/ui/action-sheet.d.ts +29 -0
  297. package/dist/typescript/module/src/ui/action-sheet.d.ts.map +1 -0
  298. package/dist/typescript/module/src/ui/alert-dialog.d.ts +12 -0
  299. package/dist/typescript/module/src/ui/alert-dialog.d.ts.map +1 -0
  300. package/dist/typescript/module/src/ui/docyrus-brand-mark.d.ts +5 -0
  301. package/dist/typescript/module/src/ui/docyrus-brand-mark.d.ts.map +1 -0
  302. package/dist/typescript/module/src/ui/docyrus-icon.d.ts +11 -0
  303. package/dist/typescript/module/src/ui/docyrus-icon.d.ts.map +1 -0
  304. package/dist/typescript/module/src/ui/index.d.ts +5 -0
  305. package/dist/typescript/module/src/ui/index.d.ts.map +1 -0
  306. package/dist/typescript/module/src/utils/api-client.d.ts +35 -0
  307. package/dist/typescript/module/src/utils/api-client.d.ts.map +1 -0
  308. package/dist/typescript/module/src/utils/default-api-config.d.ts +38 -0
  309. package/dist/typescript/module/src/utils/default-api-config.d.ts.map +1 -0
  310. package/dist/typescript/module/src/utils/index.d.ts +9 -0
  311. package/dist/typescript/module/src/utils/index.d.ts.map +1 -0
  312. package/dist/typescript/module/src/utils/resolve-api-headers.d.ts +3 -0
  313. package/dist/typescript/module/src/utils/resolve-api-headers.d.ts.map +1 -0
  314. package/package.json +176 -0
@@ -0,0 +1 @@
1
+ {"type":"commonjs"}
@@ -0,0 +1,105 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.DocyrusRNAssistantProvider = DocyrusRNAssistantProvider;
7
+ exports.useDocyrusRNAssistantTheme = useDocyrusRNAssistantTheme;
8
+ var _react = require("react");
9
+ var _reactNative = require("react-native");
10
+ var _jsxRuntime = require("react/jsx-runtime");
11
+ const ThemeContext = /*#__PURE__*/(0, _react.createContext)(undefined);
12
+ const baseSpacing = {
13
+ 0: 0,
14
+ 0.5: 2,
15
+ 1: 4,
16
+ 1.5: 6,
17
+ 2: 8,
18
+ 2.5: 10,
19
+ 3: 12,
20
+ 3.5: 14,
21
+ 4: 16,
22
+ 5: 20,
23
+ 6: 24,
24
+ 7: 28,
25
+ 8: 32
26
+ };
27
+ const baseRadius = {
28
+ sm: 8,
29
+ md: 12,
30
+ lg: 16,
31
+ xl: 20,
32
+ full: 999
33
+ };
34
+ const lightColors = {
35
+ background: '#ffffff',
36
+ foreground: '#111827',
37
+ card: '#f8fafc',
38
+ cardForeground: '#111827',
39
+ muted: '#eef2f7',
40
+ mutedForeground: '#667085',
41
+ border: '#dbe3ee',
42
+ primary: '#dc2626',
43
+ primaryForeground: '#ffffff',
44
+ destructive: '#dc2626',
45
+ destructiveForeground: '#ffffff',
46
+ success: '#16a34a',
47
+ successForeground: '#ffffff',
48
+ warning: '#d97706',
49
+ warningForeground: '#ffffff'
50
+ };
51
+ const darkColors = {
52
+ background: '#0b1220',
53
+ foreground: '#f8fafc',
54
+ card: '#111827',
55
+ cardForeground: '#f8fafc',
56
+ muted: '#1f2937',
57
+ mutedForeground: '#94a3b8',
58
+ border: '#243041',
59
+ primary: '#ef4444',
60
+ primaryForeground: '#ffffff',
61
+ destructive: '#ef4444',
62
+ destructiveForeground: '#ffffff',
63
+ success: '#22c55e',
64
+ successForeground: '#052e16',
65
+ warning: '#f59e0b',
66
+ warningForeground: '#111827'
67
+ };
68
+ function buildTheme(isDark, overrides) {
69
+ return {
70
+ colors: {
71
+ ...(isDark ? darkColors : lightColors),
72
+ ...overrides?.colors
73
+ },
74
+ spacing: {
75
+ ...baseSpacing,
76
+ ...overrides?.spacing
77
+ },
78
+ borderRadius: {
79
+ ...baseRadius,
80
+ ...overrides?.borderRadius
81
+ },
82
+ isDark
83
+ };
84
+ }
85
+ function DocyrusRNAssistantProvider({
86
+ children,
87
+ mode = 'system',
88
+ theme
89
+ }) {
90
+ const value = (0, _react.useMemo)(() => ({
91
+ mode,
92
+ overrides: theme
93
+ }), [mode, theme]);
94
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(ThemeContext.Provider, {
95
+ value: value,
96
+ children: children
97
+ });
98
+ }
99
+ function useDocyrusRNAssistantTheme() {
100
+ const systemColorScheme = (0, _reactNative.useColorScheme)();
101
+ const context = (0, _react.useContext)(ThemeContext);
102
+ const isDark = context?.mode === 'dark' || context?.mode !== 'light' && systemColorScheme === 'dark';
103
+ return (0, _react.useMemo)(() => buildTheme(isDark, context?.overrides), [context?.overrides, isDark]);
104
+ }
105
+ //# sourceMappingURL=assistant-theme.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","require","_reactNative","_jsxRuntime","ThemeContext","createContext","undefined","baseSpacing","baseRadius","sm","md","lg","xl","full","lightColors","background","foreground","card","cardForeground","muted","mutedForeground","border","primary","primaryForeground","destructive","destructiveForeground","success","successForeground","warning","warningForeground","darkColors","buildTheme","isDark","overrides","colors","spacing","borderRadius","DocyrusRNAssistantProvider","children","mode","theme","value","useMemo","jsx","Provider","useDocyrusRNAssistantTheme","systemColorScheme","useColorScheme","context","useContext"],"sourceRoot":"../../../src","sources":["theme/assistant-theme.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "DocyrusRNAssistantProvider", {
7
+ enumerable: true,
8
+ get: function () {
9
+ return _assistantTheme.DocyrusRNAssistantProvider;
10
+ }
11
+ });
12
+ Object.defineProperty(exports, "useDocyrusRNAssistantTheme", {
13
+ enumerable: true,
14
+ get: function () {
15
+ return _assistantTheme.useDocyrusRNAssistantTheme;
16
+ }
17
+ });
18
+ var _assistantTheme = require("./assistant-theme.js");
19
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_assistantTheme","require"],"sourceRoot":"../../../src","sources":["theme/index.ts"],"mappings":";;;;;;;;;;;;;;;;;AAAA,IAAAA,eAAA,GAAAC,OAAA","ignoreList":[]}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../src","sources":["types/index.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,348 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.ActionSheet = ActionSheet;
7
+ var _react = require("react");
8
+ var _reactNative = require("react-native");
9
+ var _reactNativeSafeAreaContext = require("react-native-safe-area-context");
10
+ var _index = require("../theme/index.js");
11
+ var _docyrusIcon = require("./docyrus-icon.js");
12
+ var _jsxRuntime = require("react/jsx-runtime");
13
+ const ratioMap = {
14
+ small: 0.42,
15
+ medium: 0.72,
16
+ large: 1
17
+ };
18
+ function resolveMaxHeight(detent, topInset) {
19
+ const screenHeight = _reactNative.Dimensions.get('window').height;
20
+ const availableHeight = Math.max(screenHeight - Math.max(topInset - 8, 0), 320);
21
+ if (detent === 'fit') {
22
+ return undefined;
23
+ }
24
+ if (detent === 'large') {
25
+ return availableHeight;
26
+ }
27
+ return Math.round(availableHeight * ratioMap[detent]);
28
+ }
29
+ function ActionSheet({
30
+ actions = [],
31
+ cancelLabel,
32
+ children,
33
+ closeOnBackdrop = true,
34
+ contentContainerStyle,
35
+ detent = 'fit',
36
+ detents,
37
+ fixedContent,
38
+ message,
39
+ onClose,
40
+ scrollable = true,
41
+ showCancel = false,
42
+ title,
43
+ visible
44
+ }) {
45
+ const theme = (0, _index.useDocyrusRNAssistantTheme)();
46
+ const insets = (0, _reactNativeSafeAreaContext.useSafeAreaInsets)();
47
+ const resolvedDetent = (0, _react.useMemo)(() => detents?.[0] ?? detent, [detent, detents]);
48
+ const maxHeight = resolveMaxHeight(resolvedDetent, insets.top);
49
+ const [isMounted, setIsMounted] = (0, _react.useState)(visible);
50
+ const progress = (0, _react.useRef)(new _reactNative.Animated.Value(visible ? 1 : 0)).current;
51
+ const dragY = (0, _react.useRef)(new _reactNative.Animated.Value(0)).current;
52
+ const sheetTravel = maxHeight ?? Math.round(_reactNative.Dimensions.get('window').height * 0.9);
53
+ const closeThreshold = Math.min(140, Math.max(64, sheetTravel * 0.18));
54
+ const finishClose = (0, _react.useCallback)(() => {
55
+ dragY.setValue(0);
56
+ onClose();
57
+ }, [dragY, onClose]);
58
+ (0, _react.useEffect)(() => {
59
+ if (visible) {
60
+ setIsMounted(true);
61
+ dragY.setValue(0);
62
+ _reactNative.Animated.spring(progress, {
63
+ toValue: 1,
64
+ damping: 24,
65
+ stiffness: 260,
66
+ mass: 0.9,
67
+ useNativeDriver: true
68
+ }).start();
69
+ return;
70
+ }
71
+ _reactNative.Animated.timing(progress, {
72
+ toValue: 0,
73
+ duration: 220,
74
+ easing: _reactNative.Easing.out(_reactNative.Easing.cubic),
75
+ useNativeDriver: true
76
+ }).start(({
77
+ finished
78
+ }) => {
79
+ if (finished) {
80
+ setIsMounted(false);
81
+ dragY.setValue(0);
82
+ }
83
+ });
84
+ }, [dragY, progress, visible]);
85
+ const requestClose = (0, _react.useCallback)(() => {
86
+ _reactNative.Animated.parallel([_reactNative.Animated.timing(progress, {
87
+ toValue: 0,
88
+ duration: 180,
89
+ easing: _reactNative.Easing.out(_reactNative.Easing.cubic),
90
+ useNativeDriver: true
91
+ }), _reactNative.Animated.timing(dragY, {
92
+ toValue: Math.min(closeThreshold, 72),
93
+ duration: 180,
94
+ easing: _reactNative.Easing.out(_reactNative.Easing.cubic),
95
+ useNativeDriver: true
96
+ })]).start(({
97
+ finished
98
+ }) => {
99
+ if (finished) {
100
+ finishClose();
101
+ }
102
+ });
103
+ }, [closeThreshold, dragY, finishClose, progress]);
104
+ const panResponder = (0, _react.useMemo)(() => _reactNative.PanResponder.create({
105
+ onMoveShouldSetPanResponder: (_, gestureState) => gestureState.dy > 6 && Math.abs(gestureState.dy) > Math.abs(gestureState.dx),
106
+ onPanResponderGrant: () => {
107
+ dragY.stopAnimation();
108
+ },
109
+ onPanResponderMove: (_, gestureState) => {
110
+ dragY.setValue(Math.max(0, gestureState.dy));
111
+ },
112
+ onPanResponderRelease: (_, gestureState) => {
113
+ if (gestureState.dy > closeThreshold || gestureState.vy > 1.15) {
114
+ requestClose();
115
+ return;
116
+ }
117
+ _reactNative.Animated.spring(dragY, {
118
+ toValue: 0,
119
+ damping: 22,
120
+ stiffness: 240,
121
+ mass: 0.9,
122
+ useNativeDriver: true
123
+ }).start();
124
+ },
125
+ onPanResponderTerminate: () => {
126
+ _reactNative.Animated.spring(dragY, {
127
+ toValue: 0,
128
+ damping: 22,
129
+ stiffness: 240,
130
+ mass: 0.9,
131
+ useNativeDriver: true
132
+ }).start();
133
+ }
134
+ }), [closeThreshold, dragY, requestClose]);
135
+ const backdropOpacity = progress.interpolate({
136
+ inputRange: [0, 1],
137
+ outputRange: [0, 1]
138
+ });
139
+ const translateY = _reactNative.Animated.add(dragY, progress.interpolate({
140
+ inputRange: [0, 1],
141
+ outputRange: [sheetTravel, 0]
142
+ }));
143
+ if (!isMounted) {
144
+ return null;
145
+ }
146
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
147
+ pointerEvents: "box-none",
148
+ style: styles.root,
149
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(AnimatedPressable, {
150
+ onPress: closeOnBackdrop ? requestClose : undefined,
151
+ style: [styles.backdrop, {
152
+ opacity: backdropOpacity
153
+ }],
154
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Animated.View, {
155
+ style: [styles.sheetFrame, {
156
+ transform: [{
157
+ translateY
158
+ }]
159
+ }],
160
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.Pressable, {
161
+ onPress: event => event.stopPropagation(),
162
+ style: [styles.sheet, {
163
+ backgroundColor: theme.colors.card,
164
+ borderColor: theme.colors.border,
165
+ borderTopLeftRadius: theme.borderRadius.xl,
166
+ borderTopRightRadius: theme.borderRadius.xl,
167
+ borderBottomLeftRadius: 0,
168
+ borderBottomRightRadius: 0,
169
+ height: maxHeight,
170
+ maxHeight,
171
+ paddingBottom: insets.bottom
172
+ }],
173
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
174
+ ...panResponder.panHandlers,
175
+ style: styles.handleTouchArea,
176
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
177
+ style: [styles.handle, {
178
+ backgroundColor: theme.colors.border
179
+ }]
180
+ })
181
+ }), (title || message) && /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
182
+ ...panResponder.panHandlers,
183
+ style: styles.header,
184
+ children: [title && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
185
+ style: [styles.title, {
186
+ color: theme.colors.foreground
187
+ }],
188
+ children: title
189
+ }), message && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
190
+ style: [styles.message, {
191
+ color: theme.colors.mutedForeground
192
+ }],
193
+ children: message
194
+ })]
195
+ }), fixedContent, (children || actions.length > 0) && (scrollable ? /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.ScrollView, {
196
+ bounces: false,
197
+ contentContainerStyle: [styles.content, contentContainerStyle],
198
+ showsVerticalScrollIndicator: false,
199
+ children: [children, actions.map(action => /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.TouchableOpacity, {
200
+ activeOpacity: 0.8,
201
+ disabled: action.disabled,
202
+ onPress: () => {
203
+ action.onPress();
204
+ onClose();
205
+ },
206
+ style: [styles.actionRow, {
207
+ backgroundColor: theme.colors.muted,
208
+ borderRadius: theme.borderRadius.lg,
209
+ opacity: action.disabled ? 0.5 : 1
210
+ }],
211
+ children: [action.icon && /*#__PURE__*/(0, _jsxRuntime.jsx)(_docyrusIcon.DocyrusIcon, {
212
+ color: action.destructive ? theme.colors.destructive : theme.colors.primary,
213
+ icon: action.icon,
214
+ size: 18
215
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
216
+ style: [styles.actionLabel, {
217
+ color: action.destructive ? theme.colors.destructive : theme.colors.foreground
218
+ }],
219
+ children: action.label
220
+ })]
221
+ }, action.key))]
222
+ }) : /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
223
+ style: [styles.body, contentContainerStyle],
224
+ children: [children, actions.map(action => /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.TouchableOpacity, {
225
+ activeOpacity: 0.8,
226
+ disabled: action.disabled,
227
+ onPress: () => {
228
+ action.onPress();
229
+ onClose();
230
+ },
231
+ style: [styles.actionRow, {
232
+ backgroundColor: theme.colors.muted,
233
+ borderRadius: theme.borderRadius.lg,
234
+ opacity: action.disabled ? 0.5 : 1
235
+ }],
236
+ children: [action.icon && /*#__PURE__*/(0, _jsxRuntime.jsx)(_docyrusIcon.DocyrusIcon, {
237
+ color: action.destructive ? theme.colors.destructive : theme.colors.primary,
238
+ icon: action.icon,
239
+ size: 18
240
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
241
+ style: [styles.actionLabel, {
242
+ color: action.destructive ? theme.colors.destructive : theme.colors.foreground
243
+ }],
244
+ children: action.label
245
+ })]
246
+ }, action.key))]
247
+ })), showCancel && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
248
+ activeOpacity: 0.8,
249
+ onPress: requestClose,
250
+ style: [styles.cancelButton, {
251
+ backgroundColor: theme.colors.muted,
252
+ borderRadius: theme.borderRadius.lg
253
+ }],
254
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
255
+ style: [styles.cancelText, {
256
+ color: theme.colors.foreground
257
+ }],
258
+ children: cancelLabel ?? 'Cancel'
259
+ })
260
+ })]
261
+ })
262
+ })
263
+ })
264
+ });
265
+ }
266
+ const AnimatedPressable = _reactNative.Animated.createAnimatedComponent(_reactNative.Pressable);
267
+ const styles = _reactNative.StyleSheet.create({
268
+ actionLabel: {
269
+ fontSize: 15,
270
+ fontWeight: '600'
271
+ },
272
+ actionRow: {
273
+ alignItems: 'center',
274
+ flexDirection: 'row',
275
+ gap: 10,
276
+ paddingHorizontal: 16,
277
+ paddingVertical: 14
278
+ },
279
+ root: {
280
+ ..._reactNative.StyleSheet.absoluteFillObject,
281
+ elevation: 1000,
282
+ zIndex: 1000
283
+ },
284
+ backdrop: {
285
+ backgroundColor: 'rgba(15, 23, 42, 0.35)',
286
+ flex: 1,
287
+ justifyContent: 'flex-end',
288
+ paddingHorizontal: 0,
289
+ paddingTop: 0
290
+ },
291
+ sheetFrame: {
292
+ alignSelf: 'stretch'
293
+ },
294
+ body: {
295
+ alignSelf: 'stretch',
296
+ flex: 1,
297
+ gap: 8,
298
+ minHeight: 0
299
+ },
300
+ cancelButton: {
301
+ alignItems: 'center',
302
+ justifyContent: 'center',
303
+ marginTop: 12,
304
+ paddingHorizontal: 16,
305
+ paddingVertical: 14
306
+ },
307
+ cancelText: {
308
+ fontSize: 15,
309
+ fontWeight: '600'
310
+ },
311
+ content: {
312
+ flexGrow: 1,
313
+ gap: 8
314
+ },
315
+ handle: {
316
+ alignSelf: 'center',
317
+ borderRadius: 999,
318
+ height: 5,
319
+ marginBottom: 12,
320
+ width: 40
321
+ },
322
+ handleTouchArea: {
323
+ alignItems: 'center',
324
+ paddingBottom: 6,
325
+ paddingTop: 6
326
+ },
327
+ header: {
328
+ gap: 6,
329
+ marginBottom: 12,
330
+ paddingHorizontal: 16
331
+ },
332
+ message: {
333
+ fontSize: 13,
334
+ lineHeight: 18
335
+ },
336
+ sheet: {
337
+ alignSelf: 'stretch',
338
+ borderWidth: 1,
339
+ flexShrink: 1,
340
+ minHeight: 0,
341
+ overflow: 'hidden'
342
+ },
343
+ title: {
344
+ fontSize: 16,
345
+ fontWeight: '700'
346
+ }
347
+ });
348
+ //# sourceMappingURL=action-sheet.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","require","_reactNative","_reactNativeSafeAreaContext","_index","_docyrusIcon","_jsxRuntime","ratioMap","small","medium","large","resolveMaxHeight","detent","topInset","screenHeight","Dimensions","get","height","availableHeight","Math","max","undefined","round","ActionSheet","actions","cancelLabel","children","closeOnBackdrop","contentContainerStyle","detents","fixedContent","message","onClose","scrollable","showCancel","title","visible","theme","useDocyrusRNAssistantTheme","insets","useSafeAreaInsets","resolvedDetent","useMemo","maxHeight","top","isMounted","setIsMounted","useState","progress","useRef","Animated","Value","current","dragY","sheetTravel","closeThreshold","min","finishClose","useCallback","setValue","useEffect","spring","toValue","damping","stiffness","mass","useNativeDriver","start","timing","duration","easing","Easing","out","cubic","finished","requestClose","parallel","panResponder","PanResponder","create","onMoveShouldSetPanResponder","_","gestureState","dy","abs","dx","onPanResponderGrant","stopAnimation","onPanResponderMove","onPanResponderRelease","vy","onPanResponderTerminate","backdropOpacity","interpolate","inputRange","outputRange","translateY","add","jsx","View","pointerEvents","style","styles","root","AnimatedPressable","onPress","backdrop","opacity","sheetFrame","transform","jsxs","Pressable","event","stopPropagation","sheet","backgroundColor","colors","card","borderColor","border","borderTopLeftRadius","borderRadius","xl","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius","paddingBottom","bottom","panHandlers","handleTouchArea","handle","header","Text","color","foreground","mutedForeground","length","ScrollView","bounces","content","showsVerticalScrollIndicator","map","action","TouchableOpacity","activeOpacity","disabled","actionRow","muted","lg","icon","DocyrusIcon","destructive","primary","size","actionLabel","label","key","body","cancelButton","cancelText","createAnimatedComponent","StyleSheet","fontSize","fontWeight","alignItems","flexDirection","gap","paddingHorizontal","paddingVertical","absoluteFillObject","elevation","zIndex","flex","justifyContent","paddingTop","alignSelf","minHeight","marginTop","flexGrow","marginBottom","width","lineHeight","borderWidth","flexShrink","overflow"],"sourceRoot":"../../../src","sources":["ui/action-sheet.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,134 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.AlertDialog = AlertDialog;
7
+ var _reactNative = require("react-native");
8
+ var _index = require("../theme/index.js");
9
+ var _jsxRuntime = require("react/jsx-runtime");
10
+ function AlertDialog({
11
+ cancelText,
12
+ confirmText,
13
+ description,
14
+ onCancel,
15
+ onConfirm,
16
+ title,
17
+ variant = 'default',
18
+ visible = false
19
+ }) {
20
+ const theme = (0, _index.useDocyrusRNAssistantTheme)();
21
+ const confirmBackground = variant === 'destructive' ? theme.colors.destructive : variant === 'success' ? theme.colors.success : variant === 'warning' ? theme.colors.warning : theme.colors.primary;
22
+ const confirmForeground = variant === 'success' ? theme.colors.successForeground : variant === 'warning' ? theme.colors.warningForeground : theme.colors.primaryForeground;
23
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Modal, {
24
+ animationType: "fade",
25
+ onRequestClose: onCancel,
26
+ statusBarTranslucent: true,
27
+ transparent: true,
28
+ visible: visible,
29
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
30
+ onPress: onCancel,
31
+ style: styles.backdrop,
32
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.Pressable, {
33
+ onPress: event => event.stopPropagation(),
34
+ style: [styles.dialog, {
35
+ backgroundColor: theme.colors.card,
36
+ borderColor: theme.colors.border,
37
+ borderRadius: theme.borderRadius.xl
38
+ }],
39
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
40
+ style: [styles.title, {
41
+ color: theme.colors.foreground
42
+ }],
43
+ children: title ?? 'Are you sure?'
44
+ }), description && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
45
+ style: [styles.description, {
46
+ color: theme.colors.mutedForeground
47
+ }],
48
+ children: description
49
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
50
+ style: styles.footer,
51
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
52
+ activeOpacity: 0.8,
53
+ onPress: onCancel,
54
+ style: [styles.secondaryButton, {
55
+ backgroundColor: theme.colors.muted,
56
+ borderRadius: theme.borderRadius.lg
57
+ }],
58
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
59
+ style: [styles.secondaryText, {
60
+ color: theme.colors.foreground
61
+ }],
62
+ children: cancelText ?? 'Cancel'
63
+ })
64
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
65
+ activeOpacity: 0.8,
66
+ onPress: onConfirm,
67
+ style: [styles.primaryButton, {
68
+ backgroundColor: confirmBackground,
69
+ borderRadius: theme.borderRadius.lg
70
+ }],
71
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
72
+ style: [styles.primaryText, {
73
+ color: confirmForeground
74
+ }],
75
+ children: confirmText ?? 'Confirm'
76
+ })
77
+ })]
78
+ })]
79
+ })
80
+ })
81
+ });
82
+ }
83
+ const styles = _reactNative.StyleSheet.create({
84
+ backdrop: {
85
+ alignItems: 'center',
86
+ backgroundColor: 'rgba(15, 23, 42, 0.45)',
87
+ flex: 1,
88
+ justifyContent: 'center',
89
+ padding: 24
90
+ },
91
+ description: {
92
+ fontSize: 14,
93
+ lineHeight: 20,
94
+ marginTop: 8
95
+ },
96
+ dialog: {
97
+ borderWidth: 1,
98
+ padding: 20,
99
+ width: '100%'
100
+ },
101
+ footer: {
102
+ flexDirection: 'row',
103
+ gap: 12,
104
+ justifyContent: 'flex-end',
105
+ marginTop: 20
106
+ },
107
+ primaryButton: {
108
+ alignItems: 'center',
109
+ justifyContent: 'center',
110
+ minWidth: 96,
111
+ paddingHorizontal: 16,
112
+ paddingVertical: 12
113
+ },
114
+ primaryText: {
115
+ fontSize: 14,
116
+ fontWeight: '700'
117
+ },
118
+ secondaryButton: {
119
+ alignItems: 'center',
120
+ justifyContent: 'center',
121
+ minWidth: 96,
122
+ paddingHorizontal: 16,
123
+ paddingVertical: 12
124
+ },
125
+ secondaryText: {
126
+ fontSize: 14,
127
+ fontWeight: '600'
128
+ },
129
+ title: {
130
+ fontSize: 17,
131
+ fontWeight: '700'
132
+ }
133
+ });
134
+ //# sourceMappingURL=alert-dialog.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_reactNative","require","_index","_jsxRuntime","AlertDialog","cancelText","confirmText","description","onCancel","onConfirm","title","variant","visible","theme","useDocyrusRNAssistantTheme","confirmBackground","colors","destructive","success","warning","primary","confirmForeground","successForeground","warningForeground","primaryForeground","jsx","Modal","animationType","onRequestClose","statusBarTranslucent","transparent","children","Pressable","onPress","style","styles","backdrop","jsxs","event","stopPropagation","dialog","backgroundColor","card","borderColor","border","borderRadius","xl","Text","color","foreground","mutedForeground","View","footer","TouchableOpacity","activeOpacity","secondaryButton","muted","lg","secondaryText","primaryButton","primaryText","StyleSheet","create","alignItems","flex","justifyContent","padding","fontSize","lineHeight","marginTop","borderWidth","width","flexDirection","gap","minWidth","paddingHorizontal","paddingVertical","fontWeight"],"sourceRoot":"../../../src","sources":["ui/alert-dialog.tsx"],"mappings":"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","ignoreList":[]}