@kukkim/react-native-ui 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (321) hide show
  1. package/LICENSE +20 -0
  2. package/README.md +33 -0
  3. package/lib/module/assets/icons/arrow-down-to-line.svg +1 -0
  4. package/lib/module/assets/icons/arrow-down-wide-narrow.svg +1 -0
  5. package/lib/module/assets/icons/arrow-left.svg +1 -0
  6. package/lib/module/assets/icons/check.svg +1 -0
  7. package/lib/module/assets/icons/chevron-down.svg +1 -0
  8. package/lib/module/assets/icons/copy.svg +1 -0
  9. package/lib/module/assets/icons/rotate-cw.svg +1 -0
  10. package/lib/module/assets/icons/square-arrow-out-up-right.svg +1 -0
  11. package/lib/module/assets/icons/star-empty.svg +1 -0
  12. package/lib/module/assets/icons/star-full.svg +1 -0
  13. package/lib/module/assets/icons/star-half.svg +25 -0
  14. package/lib/module/assets/icons/x.svg +1 -0
  15. package/lib/module/assets/images/defaultImage.png +0 -0
  16. package/lib/module/components/avatar/index.js +45 -0
  17. package/lib/module/components/avatar/index.js.map +1 -0
  18. package/lib/module/components/avatar/types.js +49 -0
  19. package/lib/module/components/avatar/types.js.map +1 -0
  20. package/lib/module/components/badge/commonBadge.js +44 -0
  21. package/lib/module/components/badge/commonBadge.js.map +1 -0
  22. package/lib/module/components/badge/index.js +5 -0
  23. package/lib/module/components/badge/index.js.map +1 -0
  24. package/lib/module/components/badge/types.js +48 -0
  25. package/lib/module/components/badge/types.js.map +1 -0
  26. package/lib/module/components/button/commonButton.js +43 -0
  27. package/lib/module/components/button/commonButton.js.map +1 -0
  28. package/lib/module/components/button/index.js +5 -0
  29. package/lib/module/components/button/index.js.map +1 -0
  30. package/lib/module/components/button/types.js +28 -0
  31. package/lib/module/components/button/types.js.map +1 -0
  32. package/lib/module/components/card/commonCard.js +57 -0
  33. package/lib/module/components/card/commonCard.js.map +1 -0
  34. package/lib/module/components/card/foldableCard.js +76 -0
  35. package/lib/module/components/card/foldableCard.js.map +1 -0
  36. package/lib/module/components/card/index.js +6 -0
  37. package/lib/module/components/card/index.js.map +1 -0
  38. package/lib/module/components/card/types.js +4 -0
  39. package/lib/module/components/card/types.js.map +1 -0
  40. package/lib/module/components/checkBox/index.js +38 -0
  41. package/lib/module/components/checkBox/index.js.map +1 -0
  42. package/lib/module/components/checkBox/types.js +17 -0
  43. package/lib/module/components/checkBox/types.js.map +1 -0
  44. package/lib/module/components/header/commonHeader.js +72 -0
  45. package/lib/module/components/header/commonHeader.js.map +1 -0
  46. package/lib/module/components/header/index.js +5 -0
  47. package/lib/module/components/header/index.js.map +1 -0
  48. package/lib/module/components/header/types.js +28 -0
  49. package/lib/module/components/header/types.js.map +1 -0
  50. package/lib/module/components/icon/ArrowDownToLine.js +25 -0
  51. package/lib/module/components/icon/ArrowDownToLine.js.map +1 -0
  52. package/lib/module/components/icon/ArrowDownWideNarrow.js +25 -0
  53. package/lib/module/components/icon/ArrowDownWideNarrow.js.map +1 -0
  54. package/lib/module/components/icon/ArrowLeft.js +25 -0
  55. package/lib/module/components/icon/ArrowLeft.js.map +1 -0
  56. package/lib/module/components/icon/Check.js +25 -0
  57. package/lib/module/components/icon/Check.js.map +1 -0
  58. package/lib/module/components/icon/ChevronDown.js +25 -0
  59. package/lib/module/components/icon/ChevronDown.js.map +1 -0
  60. package/lib/module/components/icon/Copy.js +32 -0
  61. package/lib/module/components/icon/Copy.js.map +1 -0
  62. package/lib/module/components/icon/RotateCw.js +27 -0
  63. package/lib/module/components/icon/RotateCw.js.map +1 -0
  64. package/lib/module/components/icon/SquareArrowOutUpRight.js +25 -0
  65. package/lib/module/components/icon/SquareArrowOutUpRight.js.map +1 -0
  66. package/lib/module/components/icon/StarEmpty.js +25 -0
  67. package/lib/module/components/icon/StarEmpty.js.map +1 -0
  68. package/lib/module/components/icon/StarFull.js +25 -0
  69. package/lib/module/components/icon/StarFull.js.map +1 -0
  70. package/lib/module/components/icon/StarHalf.js +34 -0
  71. package/lib/module/components/icon/StarHalf.js.map +1 -0
  72. package/lib/module/components/icon/X.js +25 -0
  73. package/lib/module/components/icon/X.js.map +1 -0
  74. package/lib/module/components/icon/index.js +54 -0
  75. package/lib/module/components/icon/index.js.map +1 -0
  76. package/lib/module/components/icon/types.js +8 -0
  77. package/lib/module/components/icon/types.js.map +1 -0
  78. package/lib/module/components/image/index.js +25 -0
  79. package/lib/module/components/image/index.js.map +1 -0
  80. package/lib/module/components/image/types.js +39 -0
  81. package/lib/module/components/image/types.js.map +1 -0
  82. package/lib/module/components/index.js +15 -0
  83. package/lib/module/components/index.js.map +1 -0
  84. package/lib/module/components/progressBar/circularProgressBar.js +59 -0
  85. package/lib/module/components/progressBar/circularProgressBar.js.map +1 -0
  86. package/lib/module/components/progressBar/index.js +7 -0
  87. package/lib/module/components/progressBar/index.js.map +1 -0
  88. package/lib/module/components/progressBar/linearProgressBar.js +42 -0
  89. package/lib/module/components/progressBar/linearProgressBar.js.map +1 -0
  90. package/lib/module/components/progressBar/types.js +13 -0
  91. package/lib/module/components/progressBar/types.js.map +1 -0
  92. package/lib/module/components/rating/index.js +84 -0
  93. package/lib/module/components/rating/index.js.map +1 -0
  94. package/lib/module/components/rating/types.js +8 -0
  95. package/lib/module/components/rating/types.js.map +1 -0
  96. package/lib/module/components/screenContainer/SafeAreaContainer.js +26 -0
  97. package/lib/module/components/screenContainer/SafeAreaContainer.js.map +1 -0
  98. package/lib/module/components/screenContainer/ScrollViewContainer.js +24 -0
  99. package/lib/module/components/screenContainer/ScrollViewContainer.js.map +1 -0
  100. package/lib/module/components/screenContainer/index.js +6 -0
  101. package/lib/module/components/screenContainer/index.js.map +1 -0
  102. package/lib/module/components/skeleton/index.js +3 -0
  103. package/lib/module/components/skeleton/index.js.map +1 -0
  104. package/lib/module/components/skeleton/types.js +2 -0
  105. package/lib/module/components/skeleton/types.js.map +1 -0
  106. package/lib/module/components/slider/index.js +3 -0
  107. package/lib/module/components/slider/index.js.map +1 -0
  108. package/lib/module/components/slider/types.js +2 -0
  109. package/lib/module/components/slider/types.js.map +1 -0
  110. package/lib/module/components/switch/index.js +3 -0
  111. package/lib/module/components/switch/index.js.map +1 -0
  112. package/lib/module/components/switch/types.js +2 -0
  113. package/lib/module/components/switch/types.js.map +1 -0
  114. package/lib/module/components/text/commonText.js +28 -0
  115. package/lib/module/components/text/commonText.js.map +1 -0
  116. package/lib/module/components/text/index.js +5 -0
  117. package/lib/module/components/text/index.js.map +1 -0
  118. package/lib/module/components/text/types.js +17 -0
  119. package/lib/module/components/text/types.js.map +1 -0
  120. package/lib/module/hooks/useTheme.js +12 -0
  121. package/lib/module/hooks/useTheme.js.map +1 -0
  122. package/lib/module/index.js +5 -0
  123. package/lib/module/index.js.map +1 -0
  124. package/lib/module/package.json +1 -0
  125. package/lib/module/theme/color.js +10 -0
  126. package/lib/module/theme/color.js.map +1 -0
  127. package/lib/module/theme/style.js +17 -0
  128. package/lib/module/theme/style.js.map +1 -0
  129. package/lib/module/theme/themeProvider.js +22 -0
  130. package/lib/module/theme/themeProvider.js.map +1 -0
  131. package/lib/module/theme/themes.js +41 -0
  132. package/lib/module/theme/themes.js.map +1 -0
  133. package/lib/typescript/package.json +1 -0
  134. package/lib/typescript/src/components/avatar/index.d.ts +3 -0
  135. package/lib/typescript/src/components/avatar/index.d.ts.map +1 -0
  136. package/lib/typescript/src/components/avatar/types.d.ts +16 -0
  137. package/lib/typescript/src/components/avatar/types.d.ts.map +1 -0
  138. package/lib/typescript/src/components/badge/commonBadge.d.ts +4 -0
  139. package/lib/typescript/src/components/badge/commonBadge.d.ts.map +1 -0
  140. package/lib/typescript/src/components/badge/index.d.ts +3 -0
  141. package/lib/typescript/src/components/badge/index.d.ts.map +1 -0
  142. package/lib/typescript/src/components/badge/types.d.ts +19 -0
  143. package/lib/typescript/src/components/badge/types.d.ts.map +1 -0
  144. package/lib/typescript/src/components/button/commonButton.d.ts +4 -0
  145. package/lib/typescript/src/components/button/commonButton.d.ts.map +1 -0
  146. package/lib/typescript/src/components/button/index.d.ts +3 -0
  147. package/lib/typescript/src/components/button/index.d.ts.map +1 -0
  148. package/lib/typescript/src/components/button/types.d.ts +14 -0
  149. package/lib/typescript/src/components/button/types.d.ts.map +1 -0
  150. package/lib/typescript/src/components/card/commonCard.d.ts +4 -0
  151. package/lib/typescript/src/components/card/commonCard.d.ts.map +1 -0
  152. package/lib/typescript/src/components/card/foldableCard.d.ts +4 -0
  153. package/lib/typescript/src/components/card/foldableCard.d.ts.map +1 -0
  154. package/lib/typescript/src/components/card/index.d.ts +4 -0
  155. package/lib/typescript/src/components/card/index.d.ts.map +1 -0
  156. package/lib/typescript/src/components/card/types.d.ts +16 -0
  157. package/lib/typescript/src/components/card/types.d.ts.map +1 -0
  158. package/lib/typescript/src/components/checkBox/index.d.ts +3 -0
  159. package/lib/typescript/src/components/checkBox/index.d.ts.map +1 -0
  160. package/lib/typescript/src/components/checkBox/types.d.ts +11 -0
  161. package/lib/typescript/src/components/checkBox/types.d.ts.map +1 -0
  162. package/lib/typescript/src/components/header/commonHeader.d.ts +4 -0
  163. package/lib/typescript/src/components/header/commonHeader.d.ts.map +1 -0
  164. package/lib/typescript/src/components/header/index.d.ts +3 -0
  165. package/lib/typescript/src/components/header/index.d.ts.map +1 -0
  166. package/lib/typescript/src/components/header/types.d.ts +19 -0
  167. package/lib/typescript/src/components/header/types.d.ts.map +1 -0
  168. package/lib/typescript/src/components/icon/ArrowDownToLine.d.ts +4 -0
  169. package/lib/typescript/src/components/icon/ArrowDownToLine.d.ts.map +1 -0
  170. package/lib/typescript/src/components/icon/ArrowDownWideNarrow.d.ts +4 -0
  171. package/lib/typescript/src/components/icon/ArrowDownWideNarrow.d.ts.map +1 -0
  172. package/lib/typescript/src/components/icon/ArrowLeft.d.ts +4 -0
  173. package/lib/typescript/src/components/icon/ArrowLeft.d.ts.map +1 -0
  174. package/lib/typescript/src/components/icon/Check.d.ts +4 -0
  175. package/lib/typescript/src/components/icon/Check.d.ts.map +1 -0
  176. package/lib/typescript/src/components/icon/ChevronDown.d.ts +4 -0
  177. package/lib/typescript/src/components/icon/ChevronDown.d.ts.map +1 -0
  178. package/lib/typescript/src/components/icon/Copy.d.ts +4 -0
  179. package/lib/typescript/src/components/icon/Copy.d.ts.map +1 -0
  180. package/lib/typescript/src/components/icon/RotateCw.d.ts +4 -0
  181. package/lib/typescript/src/components/icon/RotateCw.d.ts.map +1 -0
  182. package/lib/typescript/src/components/icon/SquareArrowOutUpRight.d.ts +4 -0
  183. package/lib/typescript/src/components/icon/SquareArrowOutUpRight.d.ts.map +1 -0
  184. package/lib/typescript/src/components/icon/StarEmpty.d.ts +4 -0
  185. package/lib/typescript/src/components/icon/StarEmpty.d.ts.map +1 -0
  186. package/lib/typescript/src/components/icon/StarFull.d.ts +4 -0
  187. package/lib/typescript/src/components/icon/StarFull.d.ts.map +1 -0
  188. package/lib/typescript/src/components/icon/StarHalf.d.ts +4 -0
  189. package/lib/typescript/src/components/icon/StarHalf.d.ts.map +1 -0
  190. package/lib/typescript/src/components/icon/X.d.ts +4 -0
  191. package/lib/typescript/src/components/icon/X.d.ts.map +1 -0
  192. package/lib/typescript/src/components/icon/index.d.ts +3 -0
  193. package/lib/typescript/src/components/icon/index.d.ts.map +1 -0
  194. package/lib/typescript/src/components/icon/types.d.ts +12 -0
  195. package/lib/typescript/src/components/icon/types.d.ts.map +1 -0
  196. package/lib/typescript/src/components/image/index.d.ts +3 -0
  197. package/lib/typescript/src/components/image/index.d.ts.map +1 -0
  198. package/lib/typescript/src/components/image/types.d.ts +9 -0
  199. package/lib/typescript/src/components/image/types.d.ts.map +1 -0
  200. package/lib/typescript/src/components/index.d.ts +13 -0
  201. package/lib/typescript/src/components/index.d.ts.map +1 -0
  202. package/lib/typescript/src/components/progressBar/circularProgressBar.d.ts +4 -0
  203. package/lib/typescript/src/components/progressBar/circularProgressBar.d.ts.map +1 -0
  204. package/lib/typescript/src/components/progressBar/index.d.ts +4 -0
  205. package/lib/typescript/src/components/progressBar/index.d.ts.map +1 -0
  206. package/lib/typescript/src/components/progressBar/linearProgressBar.d.ts +4 -0
  207. package/lib/typescript/src/components/progressBar/linearProgressBar.d.ts.map +1 -0
  208. package/lib/typescript/src/components/progressBar/types.d.ts +12 -0
  209. package/lib/typescript/src/components/progressBar/types.d.ts.map +1 -0
  210. package/lib/typescript/src/components/rating/index.d.ts +3 -0
  211. package/lib/typescript/src/components/rating/index.d.ts.map +1 -0
  212. package/lib/typescript/src/components/rating/types.d.ts +13 -0
  213. package/lib/typescript/src/components/rating/types.d.ts.map +1 -0
  214. package/lib/typescript/src/components/screenContainer/SafeAreaContainer.d.ts +4 -0
  215. package/lib/typescript/src/components/screenContainer/SafeAreaContainer.d.ts.map +1 -0
  216. package/lib/typescript/src/components/screenContainer/ScrollViewContainer.d.ts +4 -0
  217. package/lib/typescript/src/components/screenContainer/ScrollViewContainer.d.ts.map +1 -0
  218. package/lib/typescript/src/components/screenContainer/index.d.ts +4 -0
  219. package/lib/typescript/src/components/screenContainer/index.d.ts.map +1 -0
  220. package/lib/typescript/src/components/skeleton/index.d.ts +1 -0
  221. package/lib/typescript/src/components/skeleton/index.d.ts.map +1 -0
  222. package/lib/typescript/src/components/skeleton/types.d.ts +1 -0
  223. package/lib/typescript/src/components/skeleton/types.d.ts.map +1 -0
  224. package/lib/typescript/src/components/slider/index.d.ts +1 -0
  225. package/lib/typescript/src/components/slider/index.d.ts.map +1 -0
  226. package/lib/typescript/src/components/slider/types.d.ts +1 -0
  227. package/lib/typescript/src/components/slider/types.d.ts.map +1 -0
  228. package/lib/typescript/src/components/switch/index.d.ts +1 -0
  229. package/lib/typescript/src/components/switch/index.d.ts.map +1 -0
  230. package/lib/typescript/src/components/switch/types.d.ts +1 -0
  231. package/lib/typescript/src/components/switch/types.d.ts.map +1 -0
  232. package/lib/typescript/src/components/text/commonText.d.ts +4 -0
  233. package/lib/typescript/src/components/text/commonText.d.ts.map +1 -0
  234. package/lib/typescript/src/components/text/index.d.ts +3 -0
  235. package/lib/typescript/src/components/text/index.d.ts.map +1 -0
  236. package/lib/typescript/src/components/text/types.d.ts +11 -0
  237. package/lib/typescript/src/components/text/types.d.ts.map +1 -0
  238. package/lib/typescript/src/hooks/useTheme.d.ts +5 -0
  239. package/lib/typescript/src/hooks/useTheme.d.ts.map +1 -0
  240. package/lib/typescript/src/index.d.ts +3 -0
  241. package/lib/typescript/src/index.d.ts.map +1 -0
  242. package/lib/typescript/src/theme/color.d.ts +8 -0
  243. package/lib/typescript/src/theme/color.d.ts.map +1 -0
  244. package/lib/typescript/src/theme/style.d.ts +15 -0
  245. package/lib/typescript/src/theme/style.d.ts.map +1 -0
  246. package/lib/typescript/src/theme/themeProvider.d.ts +13 -0
  247. package/lib/typescript/src/theme/themeProvider.d.ts.map +1 -0
  248. package/lib/typescript/src/theme/themes.d.ts +25 -0
  249. package/lib/typescript/src/theme/themes.d.ts.map +1 -0
  250. package/package.json +170 -0
  251. package/src/assets/icons/arrow-down-to-line.svg +1 -0
  252. package/src/assets/icons/arrow-down-wide-narrow.svg +1 -0
  253. package/src/assets/icons/arrow-left.svg +1 -0
  254. package/src/assets/icons/check.svg +1 -0
  255. package/src/assets/icons/chevron-down.svg +1 -0
  256. package/src/assets/icons/copy.svg +1 -0
  257. package/src/assets/icons/rotate-cw.svg +1 -0
  258. package/src/assets/icons/square-arrow-out-up-right.svg +1 -0
  259. package/src/assets/icons/star-empty.svg +1 -0
  260. package/src/assets/icons/star-full.svg +1 -0
  261. package/src/assets/icons/star-half.svg +25 -0
  262. package/src/assets/icons/x.svg +1 -0
  263. package/src/assets/images/defaultImage.png +0 -0
  264. package/src/components/avatar/index.tsx +58 -0
  265. package/src/components/avatar/types.ts +38 -0
  266. package/src/components/badge/commonBadge.tsx +50 -0
  267. package/src/components/badge/index.ts +3 -0
  268. package/src/components/badge/types.ts +36 -0
  269. package/src/components/button/commonButton.tsx +43 -0
  270. package/src/components/button/index.ts +3 -0
  271. package/src/components/button/types.ts +29 -0
  272. package/src/components/card/commonCard.tsx +67 -0
  273. package/src/components/card/foldableCard.tsx +88 -0
  274. package/src/components/card/index.ts +4 -0
  275. package/src/components/card/types.ts +18 -0
  276. package/src/components/checkBox/index.tsx +41 -0
  277. package/src/components/checkBox/types.ts +16 -0
  278. package/src/components/header/commonHeader.tsx +55 -0
  279. package/src/components/header/index.ts +3 -0
  280. package/src/components/header/types.ts +30 -0
  281. package/src/components/icon/ArrowDownToLine.tsx +21 -0
  282. package/src/components/icon/ArrowDownWideNarrow.tsx +21 -0
  283. package/src/components/icon/ArrowLeft.tsx +21 -0
  284. package/src/components/icon/Check.tsx +21 -0
  285. package/src/components/icon/ChevronDown.tsx +21 -0
  286. package/src/components/icon/Copy.tsx +22 -0
  287. package/src/components/icon/RotateCw.tsx +22 -0
  288. package/src/components/icon/SquareArrowOutUpRight.tsx +21 -0
  289. package/src/components/icon/StarEmpty.tsx +21 -0
  290. package/src/components/icon/StarFull.tsx +21 -0
  291. package/src/components/icon/StarHalf.tsx +32 -0
  292. package/src/components/icon/X.tsx +21 -0
  293. package/src/components/icon/index.tsx +54 -0
  294. package/src/components/icon/types.ts +30 -0
  295. package/src/components/image/index.tsx +21 -0
  296. package/src/components/image/types.ts +20 -0
  297. package/src/components/index.ts +12 -0
  298. package/src/components/progressBar/circularProgressBar.tsx +64 -0
  299. package/src/components/progressBar/index.ts +5 -0
  300. package/src/components/progressBar/linearProgressBar.tsx +51 -0
  301. package/src/components/progressBar/types.ts +22 -0
  302. package/src/components/rating/index.tsx +106 -0
  303. package/src/components/rating/types.ts +17 -0
  304. package/src/components/screenContainer/SafeAreaContainer.tsx +22 -0
  305. package/src/components/screenContainer/ScrollViewContainer.tsx +19 -0
  306. package/src/components/screenContainer/index.ts +4 -0
  307. package/src/components/skeleton/index.tsx +1 -0
  308. package/src/components/skeleton/types.ts +0 -0
  309. package/src/components/slider/index.tsx +1 -0
  310. package/src/components/slider/types.ts +0 -0
  311. package/src/components/switch/index.tsx +1 -0
  312. package/src/components/switch/types.ts +0 -0
  313. package/src/components/text/commonText.tsx +27 -0
  314. package/src/components/text/index.ts +3 -0
  315. package/src/components/text/types.ts +16 -0
  316. package/src/hooks/useTheme.ts +12 -0
  317. package/src/index.tsx +18 -0
  318. package/src/theme/color.ts +7 -0
  319. package/src/theme/style.ts +15 -0
  320. package/src/theme/themeProvider.tsx +25 -0
  321. package/src/theme/themes.ts +71 -0
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+
3
+ // theme/themes.ts
4
+
5
+ import { palette } from "./color.js";
6
+ import { spacing, radius } from "./style.js";
7
+ export const lightTheme = {
8
+ mode: 'light',
9
+ colors: {
10
+ background: '#FFFFFF',
11
+ surface: palette.gray100,
12
+ text: palette.gray900,
13
+ white: '#FFFFFF',
14
+ primary: palette.blue500,
15
+ secondary: '#8E8E93',
16
+ warning: palette.yellow500,
17
+ danger: palette.red500,
18
+ border: '#E5E5EA',
19
+ disabled: '#C7C7CC'
20
+ },
21
+ spacing,
22
+ radius
23
+ };
24
+ export const darkTheme = {
25
+ mode: 'dark',
26
+ colors: {
27
+ background: '#000000',
28
+ surface: '#1C1C1E',
29
+ text: '#FFFFFF',
30
+ white: '#FFFFFF',
31
+ primary: palette.blue500,
32
+ secondary: '#AEAEB2',
33
+ warning: palette.yellow500,
34
+ danger: palette.red500,
35
+ border: '#38383A',
36
+ disabled: '#48484A'
37
+ },
38
+ spacing,
39
+ radius
40
+ };
41
+ //# sourceMappingURL=themes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["palette","spacing","radius","lightTheme","mode","colors","background","surface","gray100","text","gray900","white","primary","blue500","secondary","warning","yellow500","danger","red500","border","disabled","darkTheme"],"sourceRoot":"../../../src","sources":["theme/themes.ts"],"mappings":";;AAAA;;AAEA,SAASA,OAAO,QAAQ,YAAS;AACjC,SAASC,OAAO,EAAEC,MAAM,QAAQ,YAAS;AA6BzC,OAAO,MAAMC,UAAoB,GAAG;EAClCC,IAAI,EAAE,OAAO;EACbC,MAAM,EAAE;IACNC,UAAU,EAAE,SAAS;IACrBC,OAAO,EAAEP,OAAO,CAACQ,OAAO;IACxBC,IAAI,EAAET,OAAO,CAACU,OAAO;IAErBC,KAAK,EAAE,SAAS;IAChBC,OAAO,EAAEZ,OAAO,CAACa,OAAO;IACxBC,SAAS,EAAE,SAAS;IACpBC,OAAO,EAAEf,OAAO,CAACgB,SAAS;IAC1BC,MAAM,EAAEjB,OAAO,CAACkB,MAAM;IAEtBC,MAAM,EAAE,SAAS;IACjBC,QAAQ,EAAE;EACZ,CAAC;EACDnB,OAAO;EACPC;AACF,CAAC;AAED,OAAO,MAAMmB,SAAmB,GAAG;EACjCjB,IAAI,EAAE,MAAM;EACZC,MAAM,EAAE;IACNC,UAAU,EAAE,SAAS;IACrBC,OAAO,EAAE,SAAS;IAClBE,IAAI,EAAE,SAAS;IAEfE,KAAK,EAAE,SAAS;IAChBC,OAAO,EAAEZ,OAAO,CAACa,OAAO;IACxBC,SAAS,EAAE,SAAS;IACpBC,OAAO,EAAEf,OAAO,CAACgB,SAAS;IAC1BC,MAAM,EAAEjB,OAAO,CAACkB,MAAM;IAEtBC,MAAM,EAAE,SAAS;IACjBC,QAAQ,EAAE;EACZ,CAAC;EACDnB,OAAO;EACPC;AACF,CAAC","ignoreList":[]}
@@ -0,0 +1 @@
1
+ {"type":"module"}
@@ -0,0 +1,3 @@
1
+ import { type CommonAvatarProps } from './types.js';
2
+ export declare const CommonAvatar: ({ type, size, title, source, ...props }: CommonAvatarProps) => import("react").JSX.Element;
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/avatar/index.tsx"],"names":[],"mappings":"AAGA,OAAO,EACL,KAAK,iBAAiB,EAIvB,MAAM,YAAS,CAAC;AAGjB,eAAO,MAAM,YAAY,GAAI,yCAM1B,iBAAiB,gCA6BnB,CAAC"}
@@ -0,0 +1,16 @@
1
+ import { type TextStyle, type ViewProps, type ViewStyle, type ImageStyle, type ImageSource } from 'react-native';
2
+ type Variant = 'primary' | 'secondary';
3
+ type SizeVariant = 's' | 'm' | 'l';
4
+ export declare const sizeType: Record<SizeVariant, ViewStyle>;
5
+ export declare const imageSizeType: Record<SizeVariant, ImageStyle>;
6
+ export declare const fontSizeType: Record<SizeVariant, TextStyle>;
7
+ export interface AvatarProps extends ViewProps {
8
+ type?: Variant;
9
+ size?: SizeVariant;
10
+ }
11
+ export interface CommonAvatarProps extends AvatarProps {
12
+ title?: string;
13
+ source?: ImageSource;
14
+ }
15
+ export {};
16
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/components/avatar/types.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,SAAS,EACd,KAAK,SAAS,EACd,KAAK,SAAS,EACd,KAAK,UAAU,EACf,KAAK,WAAW,EACjB,MAAM,cAAc,CAAC;AAEtB,KAAK,OAAO,GAAG,SAAS,GAAG,WAAW,CAAC;AACvC,KAAK,WAAW,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,CAAC;AAEnC,eAAO,MAAM,QAAQ,EAAE,MAAM,CAAC,WAAW,EAAE,SAAS,CAInD,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,MAAM,CAAC,WAAW,EAAE,UAAU,CAIzD,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,WAAW,EAAE,SAAS,CAIvD,CAAC;AAEF,MAAM,WAAW,WAAY,SAAQ,SAAS;IAC5C,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,IAAI,CAAC,EAAE,WAAW,CAAC;CACpB;AAED,MAAM,WAAW,iBAAkB,SAAQ,WAAW;IACpD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,WAAW,CAAC;CACtB"}
@@ -0,0 +1,4 @@
1
+ import { type CommonBadgeProps } from './types.js';
2
+ declare const CommonBadge: ({ type, size, typeText, ...props }: CommonBadgeProps) => import("react").JSX.Element;
3
+ export default CommonBadge;
4
+ //# sourceMappingURL=commonBadge.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"commonBadge.d.ts","sourceRoot":"","sources":["../../../../../src/components/badge/commonBadge.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,gBAAgB,EAA0B,MAAM,YAAS,CAAC;AAIxE,QAAA,MAAM,WAAW,GAAI,oCAKlB,gBAAgB,gCAwBlB,CAAC;AAcF,eAAe,WAAW,CAAC"}
@@ -0,0 +1,3 @@
1
+ import CommonBadge from './commonBadge.js';
2
+ export { CommonBadge };
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/badge/index.ts"],"names":[],"mappings":"AAAA,OAAO,WAAW,MAAM,kBAAe,CAAC;AAExC,OAAO,EAAE,WAAW,EAAE,CAAC"}
@@ -0,0 +1,19 @@
1
+ import { type TextStyle, type ViewProps, type ViewStyle } from 'react-native';
2
+ type Variant = 'primary' | 'secondary';
3
+ type SizeVariant = 's' | 'm' | 'l';
4
+ export declare const sizeType: Record<SizeVariant, ViewStyle>;
5
+ export declare const expandedSizeType: Record<SizeVariant, ViewStyle>;
6
+ export declare const fontSizeType: Record<SizeVariant, TextStyle>;
7
+ export interface BadgeProps extends ViewProps {
8
+ type?: Variant;
9
+ size?: SizeVariant;
10
+ }
11
+ export interface CommonBadgeProps extends BadgeProps {
12
+ typeText?: string;
13
+ }
14
+ export interface NumberBadgeProps extends BadgeProps {
15
+ number: number;
16
+ maxNumber?: number;
17
+ }
18
+ export {};
19
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/components/badge/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAE,KAAK,SAAS,EAAE,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAE9E,KAAK,OAAO,GAAG,SAAS,GAAG,WAAW,CAAC;AACvC,KAAK,WAAW,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,CAAC;AAEnC,eAAO,MAAM,QAAQ,EAAE,MAAM,CAAC,WAAW,EAAE,SAAS,CAInD,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,MAAM,CAAC,WAAW,EAAE,SAAS,CAI3D,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,WAAW,EAAE,SAAS,CAIvD,CAAC;AAEF,MAAM,WAAW,UAAW,SAAQ,SAAS;IAC3C,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,IAAI,CAAC,EAAE,WAAW,CAAC;CACpB;AAED,MAAM,WAAW,gBAAiB,SAAQ,UAAU;IAClD,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,gBAAiB,SAAQ,UAAU;IAClD,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB"}
@@ -0,0 +1,4 @@
1
+ import { type CommonButtonProps } from './types.js';
2
+ declare const CommonButton: ({ title, type, size, disabled, ...props }: CommonButtonProps) => import("react").JSX.Element;
3
+ export default CommonButton;
4
+ //# sourceMappingURL=commonButton.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"commonButton.d.ts","sourceRoot":"","sources":["../../../../../src/components/button/commonButton.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,iBAAiB,EAAgB,MAAM,YAAS,CAAC;AAG/D,QAAA,MAAM,YAAY,GAAI,2CAMnB,iBAAiB,gCAoBnB,CAAC;AAWF,eAAe,YAAY,CAAC"}
@@ -0,0 +1,3 @@
1
+ import CommonButton from './commonButton.js';
2
+ export { CommonButton };
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/button/index.ts"],"names":[],"mappings":"AAAA,OAAO,YAAY,MAAM,mBAAgB,CAAC;AAE1C,OAAO,EAAE,YAAY,EAAE,CAAC"}
@@ -0,0 +1,14 @@
1
+ import { type PressableProps, type TextStyle, type ViewStyle } from 'react-native';
2
+ type Variant = 'primary' | 'secondary';
3
+ type SizeVariant = 's' | 'm' | 'l';
4
+ export declare const sizeType: Record<SizeVariant, ViewStyle>;
5
+ export declare const fontSizeType: Record<SizeVariant, TextStyle>;
6
+ export interface ButtonProps extends PressableProps {
7
+ type?: Variant;
8
+ size?: SizeVariant;
9
+ }
10
+ export interface CommonButtonProps extends ButtonProps {
11
+ title?: string;
12
+ }
13
+ export {};
14
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/components/button/types.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,cAAc,EACnB,KAAK,SAAS,EACd,KAAK,SAAS,EACf,MAAM,cAAc,CAAC;AAEtB,KAAK,OAAO,GAAG,SAAS,GAAG,WAAW,CAAC;AACvC,KAAK,WAAW,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,CAAC;AAEnC,eAAO,MAAM,QAAQ,EAAE,MAAM,CAAC,WAAW,EAAE,SAAS,CAInD,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,WAAW,EAAE,SAAS,CAIvD,CAAC;AAEF,MAAM,WAAW,WAAY,SAAQ,cAAc;IACjD,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,IAAI,CAAC,EAAE,WAAW,CAAC;CACpB;AAED,MAAM,WAAW,iBAAkB,SAAQ,WAAW;IACpD,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB"}
@@ -0,0 +1,4 @@
1
+ import { type CommonCardProps } from './types.js';
2
+ declare const CommonCard: ({ children, type, title }: CommonCardProps) => import("react").JSX.Element;
3
+ export default CommonCard;
4
+ //# sourceMappingURL=commonCard.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"commonCard.d.ts","sourceRoot":"","sources":["../../../../../src/components/card/commonCard.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,eAAe,EAAE,MAAM,YAAS,CAAC;AAG/C,QAAA,MAAM,UAAU,GAAI,2BAAuC,eAAe,gCAqCzE,CAAC;AAwBF,eAAe,UAAU,CAAC"}
@@ -0,0 +1,4 @@
1
+ import { type FoldableCardProps } from './types.js';
2
+ declare const FoldableCard: ({ children, type, title, value, onPress, }: FoldableCardProps) => import("react").JSX.Element;
3
+ export default FoldableCard;
4
+ //# sourceMappingURL=foldableCard.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"foldableCard.d.ts","sourceRoot":"","sources":["../../../../../src/components/card/foldableCard.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,iBAAiB,EAAE,MAAM,YAAS,CAAC;AAUjD,QAAA,MAAM,YAAY,GAAI,4CAMnB,iBAAiB,gCA6CnB,CAAC;AAwBF,eAAe,YAAY,CAAC"}
@@ -0,0 +1,4 @@
1
+ import CommonCard from './commonCard.js';
2
+ import FoldableCard from './foldableCard.js';
3
+ export { CommonCard, FoldableCard };
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/card/index.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,MAAM,iBAAc,CAAC;AACtC,OAAO,YAAY,MAAM,mBAAgB,CAAC;AAE1C,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,CAAC"}
@@ -0,0 +1,16 @@
1
+ import { type ViewProps, type ViewStyle } from 'react-native';
2
+ type Variant = 'primary' | 'secondary';
3
+ export interface CardProps extends ViewProps {
4
+ type?: Variant;
5
+ }
6
+ export interface CommonCardProps extends CardProps {
7
+ title?: string;
8
+ }
9
+ export interface FoldableCardProps extends CardProps {
10
+ title: string;
11
+ titleStyle?: ViewStyle;
12
+ value: boolean;
13
+ onPress?: () => void;
14
+ }
15
+ export {};
16
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/components/card/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAE,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAE9D,KAAK,OAAO,GAAG,SAAS,GAAG,WAAW,CAAC;AAEvC,MAAM,WAAW,SAAU,SAAQ,SAAS;IAC1C,IAAI,CAAC,EAAE,OAAO,CAAC;CAChB;AAED,MAAM,WAAW,eAAgB,SAAQ,SAAS;IAChD,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,iBAAkB,SAAQ,SAAS;IAClD,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,SAAS,CAAC;IACvB,KAAK,EAAE,OAAO,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB"}
@@ -0,0 +1,3 @@
1
+ import { type CheckBoxProps } from './types.js';
2
+ export declare const CheckBox: ({ size, disabled, value, onPress, ...props }: CheckBoxProps) => import("react").JSX.Element;
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/checkBox/index.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,aAAa,EAAY,MAAM,YAAS,CAAC;AAIvD,eAAO,MAAM,QAAQ,GAAI,8CAMtB,aAAa,gCAuBf,CAAC"}
@@ -0,0 +1,11 @@
1
+ import { type PressableProps, type ViewStyle } from 'react-native';
2
+ type Variant = 'primary' | 'secondary';
3
+ type SizeVariant = 's' | 'm' | 'l';
4
+ export declare const sizeType: Record<SizeVariant, ViewStyle>;
5
+ export interface CheckBoxProps extends PressableProps {
6
+ type?: Variant;
7
+ size?: SizeVariant;
8
+ value: Boolean;
9
+ }
10
+ export {};
11
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/components/checkBox/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,cAAc,EAAE,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAEnE,KAAK,OAAO,GAAG,SAAS,GAAG,WAAW,CAAC;AACvC,KAAK,WAAW,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,CAAC;AAEnC,eAAO,MAAM,QAAQ,EAAE,MAAM,CAAC,WAAW,EAAE,SAAS,CAInD,CAAC;AAEF,MAAM,WAAW,aAAc,SAAQ,cAAc;IACnD,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,IAAI,CAAC,EAAE,WAAW,CAAC;IACnB,KAAK,EAAE,OAAO,CAAC;CAChB"}
@@ -0,0 +1,4 @@
1
+ import { type HeaderProps } from './types.js';
2
+ declare const CommonHeader: ({ title, left, right, style, ...props }: HeaderProps) => import("react").JSX.Element;
3
+ export default CommonHeader;
4
+ //# sourceMappingURL=commonHeader.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"commonHeader.d.ts","sourceRoot":"","sources":["../../../../../src/components/header/commonHeader.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,WAAW,EAAE,MAAM,YAAS,CAAC;AAG3C,QAAA,MAAM,YAAY,GAAI,yCAAyC,WAAW,gCAqBzE,CAAC;AA4BF,eAAe,YAAY,CAAC"}
@@ -0,0 +1,3 @@
1
+ import CommonHeader from './commonHeader.js';
2
+ export { CommonHeader };
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/header/index.ts"],"names":[],"mappings":"AAAA,OAAO,YAAY,MAAM,mBAAgB,CAAC;AAE1C,OAAO,EAAE,YAAY,EAAE,CAAC"}
@@ -0,0 +1,19 @@
1
+ import { type TextStyle, type ViewProps, type ViewStyle } from 'react-native';
2
+ type Variant = 'primary' | 'secondary';
3
+ type SizeVariant = 's' | 'm' | 'l';
4
+ export declare const sizeType: Record<SizeVariant, ViewStyle>;
5
+ export declare const fontSizeType: Record<SizeVariant, TextStyle>;
6
+ interface HeaderAction {
7
+ icon?: 'back' | 'close';
8
+ title?: string;
9
+ onPress?: () => void;
10
+ }
11
+ export interface HeaderProps extends ViewProps {
12
+ type?: Variant;
13
+ size?: SizeVariant;
14
+ title?: string;
15
+ left?: HeaderAction;
16
+ right?: HeaderAction;
17
+ }
18
+ export {};
19
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/components/header/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAE,KAAK,SAAS,EAAE,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAE9E,KAAK,OAAO,GAAG,SAAS,GAAG,WAAW,CAAC;AACvC,KAAK,WAAW,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,CAAC;AAEnC,eAAO,MAAM,QAAQ,EAAE,MAAM,CAAC,WAAW,EAAE,SAAS,CAInD,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,WAAW,EAAE,SAAS,CAIvD,CAAC;AAEF,UAAU,YAAY;IACpB,IAAI,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,MAAM,WAAW,WAAY,SAAQ,SAAS;IAC5C,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,IAAI,CAAC,EAAE,WAAW,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,YAAY,CAAC;IACpB,KAAK,CAAC,EAAE,YAAY,CAAC;CACtB"}
@@ -0,0 +1,4 @@
1
+ import type { SvgProps } from 'react-native-svg';
2
+ declare const SvgArrowDownToLine: (props: SvgProps) => import("react").JSX.Element;
3
+ export default SvgArrowDownToLine;
4
+ //# sourceMappingURL=ArrowDownToLine.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ArrowDownToLine.d.ts","sourceRoot":"","sources":["../../../../../src/components/icon/ArrowDownToLine.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACjD,QAAA,MAAM,kBAAkB,GAAI,OAAO,QAAQ,gCAgB1C,CAAC;AACF,eAAe,kBAAkB,CAAC"}
@@ -0,0 +1,4 @@
1
+ import type { SvgProps } from 'react-native-svg';
2
+ declare const SvgArrowDownWideNarrow: (props: SvgProps) => import("react").JSX.Element;
3
+ export default SvgArrowDownWideNarrow;
4
+ //# sourceMappingURL=ArrowDownWideNarrow.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ArrowDownWideNarrow.d.ts","sourceRoot":"","sources":["../../../../../src/components/icon/ArrowDownWideNarrow.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACjD,QAAA,MAAM,sBAAsB,GAAI,OAAO,QAAQ,gCAgB9C,CAAC;AACF,eAAe,sBAAsB,CAAC"}
@@ -0,0 +1,4 @@
1
+ import type { SvgProps } from 'react-native-svg';
2
+ declare const SvgArrowLeft: (props: SvgProps) => import("react").JSX.Element;
3
+ export default SvgArrowLeft;
4
+ //# sourceMappingURL=ArrowLeft.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ArrowLeft.d.ts","sourceRoot":"","sources":["../../../../../src/components/icon/ArrowLeft.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACjD,QAAA,MAAM,YAAY,GAAI,OAAO,QAAQ,gCAgBpC,CAAC;AACF,eAAe,YAAY,CAAC"}
@@ -0,0 +1,4 @@
1
+ import type { SvgProps } from 'react-native-svg';
2
+ declare const SvgCheck: (props: SvgProps) => import("react").JSX.Element;
3
+ export default SvgCheck;
4
+ //# sourceMappingURL=Check.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Check.d.ts","sourceRoot":"","sources":["../../../../../src/components/icon/Check.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACjD,QAAA,MAAM,QAAQ,GAAI,OAAO,QAAQ,gCAgBhC,CAAC;AACF,eAAe,QAAQ,CAAC"}
@@ -0,0 +1,4 @@
1
+ import type { SvgProps } from 'react-native-svg';
2
+ declare const SvgChevronDown: (props: SvgProps) => import("react").JSX.Element;
3
+ export default SvgChevronDown;
4
+ //# sourceMappingURL=ChevronDown.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ChevronDown.d.ts","sourceRoot":"","sources":["../../../../../src/components/icon/ChevronDown.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACjD,QAAA,MAAM,cAAc,GAAI,OAAO,QAAQ,gCAgBtC,CAAC;AACF,eAAe,cAAc,CAAC"}
@@ -0,0 +1,4 @@
1
+ import type { SvgProps } from 'react-native-svg';
2
+ declare const SvgCopy: (props: SvgProps) => import("react").JSX.Element;
3
+ export default SvgCopy;
4
+ //# sourceMappingURL=Copy.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Copy.d.ts","sourceRoot":"","sources":["../../../../../src/components/icon/Copy.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACjD,QAAA,MAAM,OAAO,GAAI,OAAO,QAAQ,gCAiB/B,CAAC;AACF,eAAe,OAAO,CAAC"}
@@ -0,0 +1,4 @@
1
+ import type { SvgProps } from 'react-native-svg';
2
+ declare const SvgRotateCw: (props: SvgProps) => import("react").JSX.Element;
3
+ export default SvgRotateCw;
4
+ //# sourceMappingURL=RotateCw.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RotateCw.d.ts","sourceRoot":"","sources":["../../../../../src/components/icon/RotateCw.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACjD,QAAA,MAAM,WAAW,GAAI,OAAO,QAAQ,gCAiBnC,CAAC;AACF,eAAe,WAAW,CAAC"}
@@ -0,0 +1,4 @@
1
+ import type { SvgProps } from 'react-native-svg';
2
+ declare const SvgSquareArrowOutUpRight: (props: SvgProps) => import("react").JSX.Element;
3
+ export default SvgSquareArrowOutUpRight;
4
+ //# sourceMappingURL=SquareArrowOutUpRight.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SquareArrowOutUpRight.d.ts","sourceRoot":"","sources":["../../../../../src/components/icon/SquareArrowOutUpRight.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACjD,QAAA,MAAM,wBAAwB,GAAI,OAAO,QAAQ,gCAgBhD,CAAC;AACF,eAAe,wBAAwB,CAAC"}
@@ -0,0 +1,4 @@
1
+ import type { SvgProps } from 'react-native-svg';
2
+ declare const SvgStarEmpty: (props: SvgProps) => import("react").JSX.Element;
3
+ export default SvgStarEmpty;
4
+ //# sourceMappingURL=StarEmpty.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"StarEmpty.d.ts","sourceRoot":"","sources":["../../../../../src/components/icon/StarEmpty.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACjD,QAAA,MAAM,YAAY,GAAI,OAAO,QAAQ,gCAgBpC,CAAC;AACF,eAAe,YAAY,CAAC"}
@@ -0,0 +1,4 @@
1
+ import type { SvgProps } from 'react-native-svg';
2
+ declare const SvgStarFull: (props: SvgProps) => import("react").JSX.Element;
3
+ export default SvgStarFull;
4
+ //# sourceMappingURL=StarFull.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"StarFull.d.ts","sourceRoot":"","sources":["../../../../../src/components/icon/StarFull.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACjD,QAAA,MAAM,WAAW,GAAI,OAAO,QAAQ,gCAgBnC,CAAC;AACF,eAAe,WAAW,CAAC"}
@@ -0,0 +1,4 @@
1
+ import type { SvgProps } from 'react-native-svg';
2
+ declare const SvgStarHalf: (props: SvgProps) => import("react").JSX.Element;
3
+ export default SvgStarHalf;
4
+ //# sourceMappingURL=StarHalf.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"StarHalf.d.ts","sourceRoot":"","sources":["../../../../../src/components/icon/StarHalf.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACjD,QAAA,MAAM,WAAW,GAAI,OAAO,QAAQ,gCA2BnC,CAAC;AACF,eAAe,WAAW,CAAC"}
@@ -0,0 +1,4 @@
1
+ import type { SvgProps } from 'react-native-svg';
2
+ declare const SvgX: (props: SvgProps) => import("react").JSX.Element;
3
+ export default SvgX;
4
+ //# sourceMappingURL=X.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"X.d.ts","sourceRoot":"","sources":["../../../../../src/components/icon/X.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACjD,QAAA,MAAM,IAAI,GAAI,OAAO,QAAQ,gCAgB5B,CAAC;AACF,eAAe,IAAI,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { type IconProps } from './types.js';
2
+ export declare const CommonIcon: ({ iconType, size, color, ...props }: IconProps) => import("react").JSX.Element | null;
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/icon/index.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,SAAS,EAAY,MAAM,YAAS,CAAC;AAuBnD,eAAO,MAAM,UAAU,GAAI,qCAKxB,SAAS,uCAiBX,CAAC"}
@@ -0,0 +1,12 @@
1
+ import { type ViewProps } from 'react-native';
2
+ type Variant = 'primary' | 'secondary';
3
+ type SizeVariant = 's' | 'm' | 'l';
4
+ export declare const sizeType: Record<SizeVariant, number>;
5
+ export interface IconProps extends ViewProps {
6
+ iconType: 'check' | 'back' | 'close' | 'star_empty' | 'star_half' | 'star_full';
7
+ type?: Variant;
8
+ size?: SizeVariant;
9
+ color?: string;
10
+ }
11
+ export {};
12
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/components/icon/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAE9C,KAAK,OAAO,GAAG,SAAS,GAAG,WAAW,CAAC;AACvC,KAAK,WAAW,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,CAAC;AAEnC,eAAO,MAAM,QAAQ,EAAE,MAAM,CAAC,WAAW,EAAE,MAAM,CAIhD,CAAC;AAEF,MAAM,WAAW,SAAU,SAAQ,SAAS;IAC1C,QAAQ,EAGJ,OAAO,GACP,MAAM,GACN,OAAO,GAMP,YAAY,GACZ,WAAW,GACX,WAAW,CAAC;IAChB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,IAAI,CAAC,EAAE,WAAW,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB"}
@@ -0,0 +1,3 @@
1
+ import { type CommonImageProps } from './types.js';
2
+ export declare const CommonImage: ({ size, ...props }: CommonImageProps) => import("react").JSX.Element;
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/image/index.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,gBAAgB,EAAY,MAAM,YAAS,CAAC;AAE1D,eAAO,MAAM,WAAW,GAAI,oBAA0B,gBAAgB,gCAYrE,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { type ImageProps, type ImageStyle } from 'react-native';
2
+ type SizeVariant = 's' | 'm' | 'l';
3
+ export declare const sizeType: Record<SizeVariant, ImageStyle>;
4
+ export declare const avatarSizeType: Record<SizeVariant, ImageStyle>;
5
+ export interface CommonImageProps extends ImageProps {
6
+ size?: SizeVariant;
7
+ }
8
+ export {};
9
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/components/image/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,UAAU,EAAE,KAAK,UAAU,EAAE,MAAM,cAAc,CAAC;AAGhE,KAAK,WAAW,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,CAAC;AAEnC,eAAO,MAAM,QAAQ,EAAE,MAAM,CAAC,WAAW,EAAE,UAAU,CAIpD,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,MAAM,CAAC,WAAW,EAAE,UAAU,CAI1D,CAAC;AAEF,MAAM,WAAW,gBAAiB,SAAQ,UAAU;IAClD,IAAI,CAAC,EAAE,WAAW,CAAC;CACpB"}
@@ -0,0 +1,13 @@
1
+ export { CommonText } from './text/index.js';
2
+ export { CommonButton } from './button/index.js';
3
+ export { CommonBadge } from './badge/index.js';
4
+ export { SafeAreaContainer, ScrollViewContainer } from './screenContainer/index.js';
5
+ export { CommonIcon } from './icon/index.js';
6
+ export { CommonRating } from './rating/index.js';
7
+ export { CommonAvatar } from './avatar/index.js';
8
+ export { CommonImage } from './image/index.js';
9
+ export { CheckBox } from './checkBox/index.js';
10
+ export { CommonHeader } from './header/index.js';
11
+ export { CommonCard, FoldableCard } from './card/index.js';
12
+ export { LinearProgressBar, CircularProgressBar } from './progressBar/index.js';
13
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAQ,CAAC;AACpC,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAU,CAAC;AACxC,OAAO,EAAE,WAAW,EAAE,MAAM,kBAAS,CAAC;AACtC,OAAO,EAAE,iBAAiB,EAAE,mBAAmB,EAAE,MAAM,4BAAmB,CAAC;AAC3E,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAQ,CAAC;AACpC,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAU,CAAC;AACxC,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAU,CAAC;AACxC,OAAO,EAAE,WAAW,EAAE,MAAM,kBAAS,CAAC;AACtC,OAAO,EAAE,QAAQ,EAAE,MAAM,qBAAY,CAAC;AACtC,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAU,CAAC;AACxC,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,iBAAQ,CAAC;AAClD,OAAO,EAAE,iBAAiB,EAAE,mBAAmB,EAAE,MAAM,wBAAe,CAAC"}
@@ -0,0 +1,4 @@
1
+ import { type ProgressBarProps } from './types.js';
2
+ declare const CircularProgressBar: ({ type, size, value, style, ...props }: ProgressBarProps) => import("react").JSX.Element;
3
+ export default CircularProgressBar;
4
+ //# sourceMappingURL=circularProgressBar.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"circularProgressBar.d.ts","sourceRoot":"","sources":["../../../../../src/components/progressBar/circularProgressBar.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,gBAAgB,EAA6B,MAAM,YAAS,CAAC;AAG3E,QAAA,MAAM,mBAAmB,GAAI,wCAM1B,gBAAgB,gCA8ClB,CAAC;AAMF,eAAe,mBAAmB,CAAC"}
@@ -0,0 +1,4 @@
1
+ import LinearProgressBar from './linearProgressBar.js';
2
+ import CircularProgressBar from './circularProgressBar.js';
3
+ export { LinearProgressBar, CircularProgressBar };
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/progressBar/index.ts"],"names":[],"mappings":"AACA,OAAO,iBAAiB,MAAM,wBAAqB,CAAC;AACpD,OAAO,mBAAmB,MAAM,0BAAuB,CAAC;AAExD,OAAO,EAAE,iBAAiB,EAAE,mBAAmB,EAAE,CAAC"}
@@ -0,0 +1,4 @@
1
+ import { type ProgressBarProps } from './types.js';
2
+ declare const LinearProgressBar: ({ type, value, style, ...props }: ProgressBarProps) => import("react").JSX.Element;
3
+ export default LinearProgressBar;
4
+ //# sourceMappingURL=linearProgressBar.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"linearProgressBar.d.ts","sourceRoot":"","sources":["../../../../../src/components/progressBar/linearProgressBar.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,YAAS,CAAC;AAGhD,QAAA,MAAM,iBAAiB,GAAI,kCAKxB,gBAAgB,gCA0BlB,CAAC;AAeF,eAAe,iBAAiB,CAAC"}
@@ -0,0 +1,12 @@
1
+ import { type ViewProps } from 'react-native';
2
+ type Variant = 'primary' | 'secondary';
3
+ type SizeVariant = 's' | 'm' | 'l';
4
+ export declare const sizeType: Record<SizeVariant, number>;
5
+ export declare const strokeWidthType: Record<SizeVariant, number>;
6
+ export interface ProgressBarProps extends ViewProps {
7
+ type?: Variant;
8
+ size?: SizeVariant;
9
+ value: number;
10
+ }
11
+ export {};
12
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/components/progressBar/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAE9C,KAAK,OAAO,GAAG,SAAS,GAAG,WAAW,CAAC;AACvC,KAAK,WAAW,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,CAAC;AAEnC,eAAO,MAAM,QAAQ,EAAE,MAAM,CAAC,WAAW,EAAE,MAAM,CAIhD,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,MAAM,CAAC,WAAW,EAAE,MAAM,CAIvD,CAAC;AAEF,MAAM,WAAW,gBAAiB,SAAQ,SAAS;IACjD,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,IAAI,CAAC,EAAE,WAAW,CAAC;IACnB,KAAK,EAAE,MAAM,CAAC;CACf"}
@@ -0,0 +1,3 @@
1
+ import { type RatingProps } from './types.js';
2
+ export declare const CommonRating: ({ type, value, onChange, editable, size, maxRating, }: RatingProps) => import("react").JSX.Element;
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/rating/index.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,KAAK,WAAW,EAAY,MAAM,YAAS,CAAC;AAErD,eAAO,MAAM,YAAY,GAAI,uDAO1B,WAAW,gCA8Eb,CAAC"}
@@ -0,0 +1,13 @@
1
+ type Variant = 'primary' | 'secondary';
2
+ type SizeVariant = 's' | 'm' | 'l';
3
+ export declare const sizeType: Record<SizeVariant, number>;
4
+ export interface RatingProps {
5
+ type?: Variant;
6
+ value: number;
7
+ onChange?: (rating: number) => void;
8
+ editable?: boolean;
9
+ size?: SizeVariant;
10
+ maxRating?: number;
11
+ }
12
+ export {};
13
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/components/rating/types.ts"],"names":[],"mappings":"AAAA,KAAK,OAAO,GAAG,SAAS,GAAG,WAAW,CAAC;AACvC,KAAK,WAAW,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,CAAC;AAEnC,eAAO,MAAM,QAAQ,EAAE,MAAM,CAAC,WAAW,EAAE,MAAM,CAIhD,CAAC;AAEF,MAAM,WAAW,WAAW;IAC1B,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;IACpC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,IAAI,CAAC,EAAE,WAAW,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB"}
@@ -0,0 +1,4 @@
1
+ import { type ViewProps } from 'react-native';
2
+ declare const SafeAreaContainer: ({ children }: ViewProps) => import("react").JSX.Element;
3
+ export default SafeAreaContainer;
4
+ //# sourceMappingURL=SafeAreaContainer.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SafeAreaContainer.d.ts","sourceRoot":"","sources":["../../../../../src/components/screenContainer/SafeAreaContainer.tsx"],"names":[],"mappings":"AACA,OAAO,EAAc,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAG1D,QAAA,MAAM,iBAAiB,GAAI,cAAc,SAAS,gCASjD,CAAC;AAQF,eAAe,iBAAiB,CAAC"}
@@ -0,0 +1,4 @@
1
+ import { type ViewProps } from 'react-native';
2
+ declare const ScrollViewContainer: ({ children }: ViewProps) => import("react").JSX.Element;
3
+ export default ScrollViewContainer;
4
+ //# sourceMappingURL=ScrollViewContainer.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ScrollViewContainer.d.ts","sourceRoot":"","sources":["../../../../../src/components/screenContainer/ScrollViewContainer.tsx"],"names":[],"mappings":"AAAA,OAAO,EAA0B,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAItE,QAAA,MAAM,mBAAmB,GAAI,cAAc,SAAS,gCAMnD,CAAC;AAQF,eAAe,mBAAmB,CAAC"}
@@ -0,0 +1,4 @@
1
+ import SafeAreaContainer from './SafeAreaContainer.js';
2
+ import ScrollViewContainer from './ScrollViewContainer.js';
3
+ export { SafeAreaContainer, ScrollViewContainer };
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/screenContainer/index.ts"],"names":[],"mappings":"AAAA,OAAO,iBAAiB,MAAM,wBAAqB,CAAC;AACpD,OAAO,mBAAmB,MAAM,0BAAuB,CAAC;AAExD,OAAO,EAAE,iBAAiB,EAAE,mBAAmB,EAAE,CAAC"}
@@ -0,0 +1 @@
1
+ //# sourceMappingURL=index.d.ts.map