react-native-mantine 0.1.15 → 0.3.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 (776) hide show
  1. package/README.md +603 -7
  2. package/lib/commonjs/components/Accordion/index.js +250 -0
  3. package/lib/commonjs/components/Accordion/index.js.map +1 -0
  4. package/lib/commonjs/components/ActionIcon/ActionIcon.js +23 -28
  5. package/lib/commonjs/components/ActionIcon/ActionIcon.js.map +1 -1
  6. package/lib/commonjs/components/Anchor/index.js +107 -0
  7. package/lib/commonjs/components/Anchor/index.js.map +1 -0
  8. package/lib/commonjs/components/AspectRatio/index.js +65 -0
  9. package/lib/commonjs/components/AspectRatio/index.js.map +1 -0
  10. package/lib/commonjs/components/Avatar/index.js +128 -0
  11. package/lib/commonjs/components/Avatar/index.js.map +1 -0
  12. package/lib/commonjs/components/BackgroundImage/index.js +55 -0
  13. package/lib/commonjs/components/BackgroundImage/index.js.map +1 -0
  14. package/lib/commonjs/components/Badge/index.js +189 -0
  15. package/lib/commonjs/components/Badge/index.js.map +1 -0
  16. package/lib/commonjs/components/Blockquote/index.js +97 -0
  17. package/lib/commonjs/components/Blockquote/index.js.map +1 -0
  18. package/lib/commonjs/components/BoxView/index.js +66 -2
  19. package/lib/commonjs/components/BoxView/index.js.map +1 -1
  20. package/lib/commonjs/components/Breadcrumbs/index.js +57 -0
  21. package/lib/commonjs/components/Breadcrumbs/index.js.map +1 -0
  22. package/lib/commonjs/components/Burger/index.js +183 -0
  23. package/lib/commonjs/components/Burger/index.js.map +1 -0
  24. package/lib/commonjs/components/Button/Button.styles.js +35 -18
  25. package/lib/commonjs/components/Button/Button.styles.js.map +1 -1
  26. package/lib/commonjs/components/Button/index.js +3 -3
  27. package/lib/commonjs/components/Button/index.js.map +1 -1
  28. package/lib/commonjs/components/Card/index.js +135 -0
  29. package/lib/commonjs/components/Card/index.js.map +1 -0
  30. package/lib/commonjs/components/Center/index.js +35 -0
  31. package/lib/commonjs/components/Center/index.js.map +1 -0
  32. package/lib/commonjs/components/Checkbox/index.js +139 -0
  33. package/lib/commonjs/components/Checkbox/index.js.map +1 -0
  34. package/lib/commonjs/components/Chip/index.js +268 -0
  35. package/lib/commonjs/components/Chip/index.js.map +1 -0
  36. package/lib/commonjs/components/CloseButton/index.js +136 -0
  37. package/lib/commonjs/components/CloseButton/index.js.map +1 -0
  38. package/lib/commonjs/components/Code/index.js +67 -0
  39. package/lib/commonjs/components/Code/index.js.map +1 -0
  40. package/lib/commonjs/components/Collapse/index.js +82 -0
  41. package/lib/commonjs/components/Collapse/index.js.map +1 -0
  42. package/lib/commonjs/components/ColorSwatch/index.js +95 -0
  43. package/lib/commonjs/components/ColorSwatch/index.js.map +1 -0
  44. package/lib/commonjs/components/Container/index.js +70 -0
  45. package/lib/commonjs/components/Container/index.js.map +1 -0
  46. package/lib/commonjs/components/CopyButton/index.js +54 -0
  47. package/lib/commonjs/components/CopyButton/index.js.map +1 -0
  48. package/lib/commonjs/components/Dialog/index.js +139 -0
  49. package/lib/commonjs/components/Dialog/index.js.map +1 -0
  50. package/lib/commonjs/components/Divider/index.js +147 -0
  51. package/lib/commonjs/components/Divider/index.js.map +1 -0
  52. package/lib/commonjs/components/Drawer/index.js +251 -0
  53. package/lib/commonjs/components/Drawer/index.js.map +1 -0
  54. package/lib/commonjs/components/Flex/index.js +62 -0
  55. package/lib/commonjs/components/Flex/index.js.map +1 -0
  56. package/lib/commonjs/components/Grid/index.js +144 -0
  57. package/lib/commonjs/components/Grid/index.js.map +1 -0
  58. package/lib/commonjs/components/Group/index.js +22 -1
  59. package/lib/commonjs/components/Group/index.js.map +1 -1
  60. package/lib/commonjs/components/Highlight/index.js +74 -0
  61. package/lib/commonjs/components/Highlight/index.js.map +1 -0
  62. package/lib/commonjs/components/Image/index.js +132 -0
  63. package/lib/commonjs/components/Image/index.js.map +1 -0
  64. package/lib/commonjs/components/Indicator/index.js +198 -0
  65. package/lib/commonjs/components/Indicator/index.js.map +1 -0
  66. package/lib/commonjs/components/Kbd/index.js +95 -0
  67. package/lib/commonjs/components/Kbd/index.js.map +1 -0
  68. package/lib/commonjs/components/List/index.js +216 -0
  69. package/lib/commonjs/components/List/index.js.map +1 -0
  70. package/lib/commonjs/components/Loader/Loader.js +25 -18
  71. package/lib/commonjs/components/Loader/Loader.js.map +1 -1
  72. package/lib/commonjs/components/LoadingOverlay/index.js +84 -0
  73. package/lib/commonjs/components/LoadingOverlay/index.js.map +1 -0
  74. package/lib/commonjs/components/Mark/index.js +46 -0
  75. package/lib/commonjs/components/Mark/index.js.map +1 -0
  76. package/lib/commonjs/components/MediaQuery/index.js +88 -0
  77. package/lib/commonjs/components/MediaQuery/index.js.map +1 -0
  78. package/lib/commonjs/components/Menu/index.js +305 -0
  79. package/lib/commonjs/components/Menu/index.js.map +1 -0
  80. package/lib/commonjs/components/Modal/index.js +235 -0
  81. package/lib/commonjs/components/Modal/index.js.map +1 -0
  82. package/lib/commonjs/components/MultiSelect/index.js +299 -0
  83. package/lib/commonjs/components/MultiSelect/index.js.map +1 -0
  84. package/lib/commonjs/components/NativeSelect/index.js +294 -0
  85. package/lib/commonjs/components/NativeSelect/index.js.map +1 -0
  86. package/lib/commonjs/components/NavLink/index.js +163 -0
  87. package/lib/commonjs/components/NavLink/index.js.map +1 -0
  88. package/lib/commonjs/components/Notification/index.js +142 -0
  89. package/lib/commonjs/components/Notification/index.js.map +1 -0
  90. package/lib/commonjs/components/NumberInput/index.js +267 -0
  91. package/lib/commonjs/components/NumberInput/index.js.map +1 -0
  92. package/lib/commonjs/components/Overlay/index.js +77 -0
  93. package/lib/commonjs/components/Overlay/index.js.map +1 -0
  94. package/lib/commonjs/components/Pagination/index.js +253 -0
  95. package/lib/commonjs/components/Pagination/index.js.map +1 -0
  96. package/lib/commonjs/components/Paper/index.js +155 -0
  97. package/lib/commonjs/components/Paper/index.js.map +1 -0
  98. package/lib/commonjs/components/PasswordInput/index.js +67 -0
  99. package/lib/commonjs/components/PasswordInput/index.js.map +1 -0
  100. package/lib/commonjs/components/PinInput/index.js +186 -0
  101. package/lib/commonjs/components/PinInput/index.js.map +1 -0
  102. package/lib/commonjs/components/Popover/index.js +162 -0
  103. package/lib/commonjs/components/Popover/index.js.map +1 -0
  104. package/lib/commonjs/components/Portal/index.js +69 -0
  105. package/lib/commonjs/components/Portal/index.js.map +1 -0
  106. package/lib/commonjs/components/Progress/index.js +124 -0
  107. package/lib/commonjs/components/Progress/index.js.map +1 -0
  108. package/lib/commonjs/components/Radio/index.js +135 -0
  109. package/lib/commonjs/components/Radio/index.js.map +1 -0
  110. package/lib/commonjs/components/Rating/index.js +151 -0
  111. package/lib/commonjs/components/Rating/index.js.map +1 -0
  112. package/lib/commonjs/components/RingProgress/index.js +174 -0
  113. package/lib/commonjs/components/RingProgress/index.js.map +1 -0
  114. package/lib/commonjs/components/SegmentedControl/index.js +225 -0
  115. package/lib/commonjs/components/SegmentedControl/index.js.map +1 -0
  116. package/lib/commonjs/components/Select/index.js +244 -0
  117. package/lib/commonjs/components/Select/index.js.map +1 -0
  118. package/lib/commonjs/components/SimpleGrid/index.js +101 -0
  119. package/lib/commonjs/components/SimpleGrid/index.js.map +1 -0
  120. package/lib/commonjs/components/Skeleton/index.js +111 -0
  121. package/lib/commonjs/components/Skeleton/index.js.map +1 -0
  122. package/lib/commonjs/components/Slider/index.js +275 -0
  123. package/lib/commonjs/components/Slider/index.js.map +1 -0
  124. package/lib/commonjs/components/Space/index.js +45 -0
  125. package/lib/commonjs/components/Space/index.js.map +1 -0
  126. package/lib/commonjs/components/Spoiler/index.js +109 -0
  127. package/lib/commonjs/components/Spoiler/index.js.map +1 -0
  128. package/lib/commonjs/components/Stepper/index.js +275 -0
  129. package/lib/commonjs/components/Stepper/index.js.map +1 -0
  130. package/lib/commonjs/components/Switch/index.js +118 -0
  131. package/lib/commonjs/components/Switch/index.js.map +1 -0
  132. package/lib/commonjs/components/Table/index.js +313 -0
  133. package/lib/commonjs/components/Table/index.js.map +1 -0
  134. package/lib/commonjs/components/Text/index.js +7 -2
  135. package/lib/commonjs/components/Text/index.js.map +1 -1
  136. package/lib/commonjs/components/TextInput/index.js +184 -0
  137. package/lib/commonjs/components/TextInput/index.js.map +1 -0
  138. package/lib/commonjs/components/Textarea/index.js +54 -0
  139. package/lib/commonjs/components/Textarea/index.js.map +1 -0
  140. package/lib/commonjs/components/ThemeIcon/index.js +144 -0
  141. package/lib/commonjs/components/ThemeIcon/index.js.map +1 -0
  142. package/lib/commonjs/components/Timeline/index.js +241 -0
  143. package/lib/commonjs/components/Timeline/index.js.map +1 -0
  144. package/lib/commonjs/components/Title/index.js +44 -0
  145. package/lib/commonjs/components/Title/index.js.map +1 -0
  146. package/lib/commonjs/components/Tooltip/index.js +186 -0
  147. package/lib/commonjs/components/Tooltip/index.js.map +1 -0
  148. package/lib/commonjs/components/TransferList/index.js +292 -0
  149. package/lib/commonjs/components/TransferList/index.js.map +1 -0
  150. package/lib/commonjs/components/Transition/index.js +174 -0
  151. package/lib/commonjs/components/Transition/index.js.map +1 -0
  152. package/lib/commonjs/components/UnstyledButton/UnstyledButton.js +1 -2
  153. package/lib/commonjs/components/UnstyledButton/UnstyledButton.js.map +1 -1
  154. package/lib/commonjs/components/index.js +759 -0
  155. package/lib/commonjs/components/index.js.map +1 -1
  156. package/lib/commonjs/hooks/useCachedResources.js +1 -2
  157. package/lib/commonjs/hooks/useCachedResources.js.map +1 -1
  158. package/lib/commonjs/package.json +1 -0
  159. package/lib/commonjs/theme/create-theme.js +4 -1
  160. package/lib/commonjs/theme/create-theme.js.map +1 -1
  161. package/lib/commonjs/theme/default-theme.js +2 -0
  162. package/lib/commonjs/theme/default-theme.js.map +1 -1
  163. package/lib/commonjs/theme/functions/attach-functions.js +12 -2
  164. package/lib/commonjs/theme/functions/attach-functions.js.map +1 -1
  165. package/lib/commonjs/theme/functions/fns/helpers.js +44 -0
  166. package/lib/commonjs/theme/functions/fns/helpers.js.map +1 -0
  167. package/lib/commonjs/theme/functions/fns/index.js +4 -1
  168. package/lib/commonjs/theme/functions/fns/index.js.map +1 -1
  169. package/lib/commonjs/theme/functions/fns/theme-color/theme-color.js +26 -4
  170. package/lib/commonjs/theme/functions/fns/theme-color/theme-color.js.map +1 -1
  171. package/lib/commonjs/theme/functions/fns/variant.js +89 -2
  172. package/lib/commonjs/theme/functions/fns/variant.js.map +1 -1
  173. package/lib/commonjs/theme/get-size/index.js +2 -2
  174. package/lib/commonjs/theme/get-size/index.js.map +1 -1
  175. package/lib/commonjs/theme/theme-provider.js +10 -9
  176. package/lib/commonjs/theme/theme-provider.js.map +1 -1
  177. package/lib/commonjs/theme/utils/rem.js +8 -6
  178. package/lib/commonjs/theme/utils/rem.js.map +1 -1
  179. package/lib/module/components/Accordion/index.js +246 -0
  180. package/lib/module/components/Accordion/index.js.map +1 -0
  181. package/lib/module/components/ActionIcon/ActionIcon.js +25 -29
  182. package/lib/module/components/ActionIcon/ActionIcon.js.map +1 -1
  183. package/lib/module/components/Anchor/index.js +102 -0
  184. package/lib/module/components/Anchor/index.js.map +1 -0
  185. package/lib/module/components/AspectRatio/index.js +60 -0
  186. package/lib/module/components/AspectRatio/index.js.map +1 -0
  187. package/lib/module/components/Avatar/index.js +123 -0
  188. package/lib/module/components/Avatar/index.js.map +1 -0
  189. package/lib/module/components/BackgroundImage/index.js +50 -0
  190. package/lib/module/components/BackgroundImage/index.js.map +1 -0
  191. package/lib/module/components/Badge/index.js +184 -0
  192. package/lib/module/components/Badge/index.js.map +1 -0
  193. package/lib/module/components/Blockquote/index.js +92 -0
  194. package/lib/module/components/Blockquote/index.js.map +1 -0
  195. package/lib/module/components/BoxView/index.js +66 -2
  196. package/lib/module/components/BoxView/index.js.map +1 -1
  197. package/lib/module/components/Breadcrumbs/index.js +52 -0
  198. package/lib/module/components/Breadcrumbs/index.js.map +1 -0
  199. package/lib/module/components/Burger/index.js +180 -0
  200. package/lib/module/components/Burger/index.js.map +1 -0
  201. package/lib/module/components/Button/Button.styles.js +35 -18
  202. package/lib/module/components/Button/Button.styles.js.map +1 -1
  203. package/lib/module/components/Button/index.js +1 -0
  204. package/lib/module/components/Button/index.js.map +1 -1
  205. package/lib/module/components/Card/index.js +130 -0
  206. package/lib/module/components/Card/index.js.map +1 -0
  207. package/lib/module/components/Center/index.js +30 -0
  208. package/lib/module/components/Center/index.js.map +1 -0
  209. package/lib/module/components/Checkbox/index.js +134 -0
  210. package/lib/module/components/Checkbox/index.js.map +1 -0
  211. package/lib/module/components/Chip/index.js +263 -0
  212. package/lib/module/components/Chip/index.js.map +1 -0
  213. package/lib/module/components/CloseButton/index.js +132 -0
  214. package/lib/module/components/CloseButton/index.js.map +1 -0
  215. package/lib/module/components/Code/index.js +62 -0
  216. package/lib/module/components/Code/index.js.map +1 -0
  217. package/lib/module/components/Collapse/index.js +77 -0
  218. package/lib/module/components/Collapse/index.js.map +1 -0
  219. package/lib/module/components/ColorSwatch/index.js +90 -0
  220. package/lib/module/components/ColorSwatch/index.js.map +1 -0
  221. package/lib/module/components/Container/index.js +65 -0
  222. package/lib/module/components/Container/index.js.map +1 -0
  223. package/lib/module/components/CopyButton/index.js +48 -0
  224. package/lib/module/components/CopyButton/index.js.map +1 -0
  225. package/lib/module/components/Dialog/index.js +134 -0
  226. package/lib/module/components/Dialog/index.js.map +1 -0
  227. package/lib/module/components/Divider/index.js +142 -0
  228. package/lib/module/components/Divider/index.js.map +1 -0
  229. package/lib/module/components/Drawer/index.js +246 -0
  230. package/lib/module/components/Drawer/index.js.map +1 -0
  231. package/lib/module/components/Flex/index.js +57 -0
  232. package/lib/module/components/Flex/index.js.map +1 -0
  233. package/lib/module/components/Grid/index.js +139 -0
  234. package/lib/module/components/Grid/index.js.map +1 -0
  235. package/lib/module/components/Group/index.js +22 -1
  236. package/lib/module/components/Group/index.js.map +1 -1
  237. package/lib/module/components/Highlight/index.js +70 -0
  238. package/lib/module/components/Highlight/index.js.map +1 -0
  239. package/lib/module/components/Image/index.js +127 -0
  240. package/lib/module/components/Image/index.js.map +1 -0
  241. package/lib/module/components/Indicator/index.js +193 -0
  242. package/lib/module/components/Indicator/index.js.map +1 -0
  243. package/lib/module/components/Kbd/index.js +90 -0
  244. package/lib/module/components/Kbd/index.js.map +1 -0
  245. package/lib/module/components/List/index.js +211 -0
  246. package/lib/module/components/List/index.js.map +1 -0
  247. package/lib/module/components/Loader/Loader.js +26 -19
  248. package/lib/module/components/Loader/Loader.js.map +1 -1
  249. package/lib/module/components/LoadingOverlay/index.js +80 -0
  250. package/lib/module/components/LoadingOverlay/index.js.map +1 -0
  251. package/lib/module/components/Mark/index.js +41 -0
  252. package/lib/module/components/Mark/index.js.map +1 -0
  253. package/lib/module/components/MediaQuery/index.js +82 -0
  254. package/lib/module/components/MediaQuery/index.js.map +1 -0
  255. package/lib/module/components/Menu/index.js +300 -0
  256. package/lib/module/components/Menu/index.js.map +1 -0
  257. package/lib/module/components/Modal/index.js +230 -0
  258. package/lib/module/components/Modal/index.js.map +1 -0
  259. package/lib/module/components/MultiSelect/index.js +294 -0
  260. package/lib/module/components/MultiSelect/index.js.map +1 -0
  261. package/lib/module/components/NativeSelect/index.js +289 -0
  262. package/lib/module/components/NativeSelect/index.js.map +1 -0
  263. package/lib/module/components/NavLink/index.js +158 -0
  264. package/lib/module/components/NavLink/index.js.map +1 -0
  265. package/lib/module/components/Notification/index.js +137 -0
  266. package/lib/module/components/Notification/index.js.map +1 -0
  267. package/lib/module/components/NumberInput/index.js +262 -0
  268. package/lib/module/components/NumberInput/index.js.map +1 -0
  269. package/lib/module/components/Overlay/index.js +72 -0
  270. package/lib/module/components/Overlay/index.js.map +1 -0
  271. package/lib/module/components/Pagination/index.js +248 -0
  272. package/lib/module/components/Pagination/index.js.map +1 -0
  273. package/lib/module/components/Paper/index.js +150 -0
  274. package/lib/module/components/Paper/index.js.map +1 -0
  275. package/lib/module/components/PasswordInput/index.js +62 -0
  276. package/lib/module/components/PasswordInput/index.js.map +1 -0
  277. package/lib/module/components/PinInput/index.js +182 -0
  278. package/lib/module/components/PinInput/index.js.map +1 -0
  279. package/lib/module/components/Popover/index.js +157 -0
  280. package/lib/module/components/Popover/index.js.map +1 -0
  281. package/lib/module/components/Portal/index.js +62 -0
  282. package/lib/module/components/Portal/index.js.map +1 -0
  283. package/lib/module/components/Progress/index.js +120 -0
  284. package/lib/module/components/Progress/index.js.map +1 -0
  285. package/lib/module/components/Radio/index.js +130 -0
  286. package/lib/module/components/Radio/index.js.map +1 -0
  287. package/lib/module/components/Rating/index.js +146 -0
  288. package/lib/module/components/Rating/index.js.map +1 -0
  289. package/lib/module/components/RingProgress/index.js +169 -0
  290. package/lib/module/components/RingProgress/index.js.map +1 -0
  291. package/lib/module/components/SegmentedControl/index.js +220 -0
  292. package/lib/module/components/SegmentedControl/index.js.map +1 -0
  293. package/lib/module/components/Select/index.js +239 -0
  294. package/lib/module/components/Select/index.js.map +1 -0
  295. package/lib/module/components/SimpleGrid/index.js +96 -0
  296. package/lib/module/components/SimpleGrid/index.js.map +1 -0
  297. package/lib/module/components/Skeleton/index.js +106 -0
  298. package/lib/module/components/Skeleton/index.js.map +1 -0
  299. package/lib/module/components/Slider/index.js +270 -0
  300. package/lib/module/components/Slider/index.js.map +1 -0
  301. package/lib/module/components/Space/index.js +41 -0
  302. package/lib/module/components/Space/index.js.map +1 -0
  303. package/lib/module/components/Spoiler/index.js +104 -0
  304. package/lib/module/components/Spoiler/index.js.map +1 -0
  305. package/lib/module/components/Stepper/index.js +270 -0
  306. package/lib/module/components/Stepper/index.js.map +1 -0
  307. package/lib/module/components/Switch/index.js +113 -0
  308. package/lib/module/components/Switch/index.js.map +1 -0
  309. package/lib/module/components/Table/index.js +308 -0
  310. package/lib/module/components/Table/index.js.map +1 -0
  311. package/lib/module/components/Text/index.js +7 -2
  312. package/lib/module/components/Text/index.js.map +1 -1
  313. package/lib/module/components/TextInput/index.js +179 -0
  314. package/lib/module/components/TextInput/index.js.map +1 -0
  315. package/lib/module/components/Textarea/index.js +50 -0
  316. package/lib/module/components/Textarea/index.js.map +1 -0
  317. package/lib/module/components/ThemeIcon/index.js +140 -0
  318. package/lib/module/components/ThemeIcon/index.js.map +1 -0
  319. package/lib/module/components/Timeline/index.js +236 -0
  320. package/lib/module/components/Timeline/index.js.map +1 -0
  321. package/lib/module/components/Title/index.js +39 -0
  322. package/lib/module/components/Title/index.js.map +1 -0
  323. package/lib/module/components/Tooltip/index.js +181 -0
  324. package/lib/module/components/Tooltip/index.js.map +1 -0
  325. package/lib/module/components/TransferList/index.js +287 -0
  326. package/lib/module/components/TransferList/index.js.map +1 -0
  327. package/lib/module/components/Transition/index.js +169 -0
  328. package/lib/module/components/Transition/index.js.map +1 -0
  329. package/lib/module/components/index.js +101 -0
  330. package/lib/module/components/index.js.map +1 -1
  331. package/lib/module/package.json +1 -0
  332. package/lib/module/theme/create-theme.js +4 -1
  333. package/lib/module/theme/create-theme.js.map +1 -1
  334. package/lib/module/theme/default-theme.js +2 -0
  335. package/lib/module/theme/default-theme.js.map +1 -1
  336. package/lib/module/theme/functions/attach-functions.js +12 -2
  337. package/lib/module/theme/functions/attach-functions.js.map +1 -1
  338. package/lib/module/theme/functions/fns/helpers.js +34 -0
  339. package/lib/module/theme/functions/fns/helpers.js.map +1 -0
  340. package/lib/module/theme/functions/fns/index.js +3 -1
  341. package/lib/module/theme/functions/fns/index.js.map +1 -1
  342. package/lib/module/theme/functions/fns/theme-color/theme-color.js +26 -4
  343. package/lib/module/theme/functions/fns/theme-color/theme-color.js.map +1 -1
  344. package/lib/module/theme/functions/fns/variant.js +89 -2
  345. package/lib/module/theme/functions/fns/variant.js.map +1 -1
  346. package/lib/module/theme/get-size/index.js +2 -2
  347. package/lib/module/theme/get-size/index.js.map +1 -1
  348. package/lib/module/theme/theme-provider.js +9 -7
  349. package/lib/module/theme/theme-provider.js.map +1 -1
  350. package/lib/module/theme/utils/rem.js +8 -6
  351. package/lib/module/theme/utils/rem.js.map +1 -1
  352. package/lib/typescript/commonjs/src/components/Accordion/index.d.ts +54 -0
  353. package/lib/typescript/commonjs/src/components/Accordion/index.d.ts.map +1 -0
  354. package/lib/typescript/commonjs/src/components/ActionIcon/ActionIcon.d.ts +4 -4
  355. package/lib/typescript/commonjs/src/components/ActionIcon/ActionIcon.d.ts.map +1 -1
  356. package/lib/typescript/commonjs/src/components/Anchor/index.d.ts +25 -0
  357. package/lib/typescript/commonjs/src/components/Anchor/index.d.ts.map +1 -0
  358. package/lib/typescript/commonjs/src/components/AspectRatio/index.d.ts +12 -0
  359. package/lib/typescript/commonjs/src/components/AspectRatio/index.d.ts.map +1 -0
  360. package/lib/typescript/commonjs/src/components/Avatar/index.d.ts +23 -0
  361. package/lib/typescript/commonjs/src/components/Avatar/index.d.ts.map +1 -0
  362. package/lib/typescript/commonjs/src/components/BackgroundImage/index.d.ts +15 -0
  363. package/lib/typescript/commonjs/src/components/BackgroundImage/index.d.ts.map +1 -0
  364. package/lib/typescript/commonjs/src/components/Badge/index.d.ts +24 -0
  365. package/lib/typescript/commonjs/src/components/Badge/index.d.ts.map +1 -0
  366. package/lib/typescript/commonjs/src/components/Blockquote/index.d.ts +18 -0
  367. package/lib/typescript/commonjs/src/components/Blockquote/index.d.ts.map +1 -0
  368. package/lib/typescript/commonjs/src/components/BoxView/index.d.ts +28 -0
  369. package/lib/typescript/commonjs/src/components/BoxView/index.d.ts.map +1 -1
  370. package/lib/typescript/commonjs/src/components/Breadcrumbs/index.d.ts +12 -0
  371. package/lib/typescript/commonjs/src/components/Breadcrumbs/index.d.ts.map +1 -0
  372. package/lib/typescript/commonjs/src/components/Burger/index.d.ts +21 -0
  373. package/lib/typescript/commonjs/src/components/Burger/index.d.ts.map +1 -0
  374. package/lib/typescript/commonjs/src/components/Button/Button.styles.d.ts +5 -0
  375. package/lib/typescript/commonjs/src/components/Button/Button.styles.d.ts.map +1 -1
  376. package/lib/typescript/commonjs/src/components/Button/index.d.ts +1 -0
  377. package/lib/typescript/commonjs/src/components/Button/index.d.ts.map +1 -1
  378. package/lib/typescript/commonjs/src/components/Card/index.d.ts +24 -0
  379. package/lib/typescript/commonjs/src/components/Card/index.d.ts.map +1 -0
  380. package/lib/typescript/commonjs/src/components/Center/index.d.ts +15 -0
  381. package/lib/typescript/commonjs/src/components/Center/index.d.ts.map +1 -0
  382. package/lib/typescript/commonjs/src/components/Checkbox/index.d.ts +24 -0
  383. package/lib/typescript/commonjs/src/components/Checkbox/index.d.ts.map +1 -0
  384. package/lib/typescript/commonjs/src/components/Chip/index.d.ts +51 -0
  385. package/lib/typescript/commonjs/src/components/Chip/index.d.ts.map +1 -0
  386. package/lib/typescript/commonjs/src/components/CloseButton/index.d.ts +22 -0
  387. package/lib/typescript/commonjs/src/components/CloseButton/index.d.ts.map +1 -0
  388. package/lib/typescript/commonjs/src/components/Code/index.d.ts +15 -0
  389. package/lib/typescript/commonjs/src/components/Code/index.d.ts.map +1 -0
  390. package/lib/typescript/commonjs/src/components/Collapse/index.d.ts +20 -0
  391. package/lib/typescript/commonjs/src/components/Collapse/index.d.ts.map +1 -0
  392. package/lib/typescript/commonjs/src/components/ColorSwatch/index.d.ts +20 -0
  393. package/lib/typescript/commonjs/src/components/ColorSwatch/index.d.ts.map +1 -0
  394. package/lib/typescript/commonjs/src/components/Container/index.d.ts +20 -0
  395. package/lib/typescript/commonjs/src/components/Container/index.d.ts.map +1 -0
  396. package/lib/typescript/commonjs/src/components/CopyButton/index.d.ts +15 -0
  397. package/lib/typescript/commonjs/src/components/CopyButton/index.d.ts.map +1 -0
  398. package/lib/typescript/commonjs/src/components/Dialog/index.d.ts +31 -0
  399. package/lib/typescript/commonjs/src/components/Dialog/index.d.ts.map +1 -0
  400. package/lib/typescript/commonjs/src/components/Divider/index.d.ts +20 -0
  401. package/lib/typescript/commonjs/src/components/Divider/index.d.ts.map +1 -0
  402. package/lib/typescript/commonjs/src/components/Drawer/index.d.ts +36 -0
  403. package/lib/typescript/commonjs/src/components/Drawer/index.d.ts.map +1 -0
  404. package/lib/typescript/commonjs/src/components/Flex/index.d.ts +27 -0
  405. package/lib/typescript/commonjs/src/components/Flex/index.d.ts.map +1 -0
  406. package/lib/typescript/commonjs/src/components/Grid/index.d.ts +38 -0
  407. package/lib/typescript/commonjs/src/components/Grid/index.d.ts.map +1 -0
  408. package/lib/typescript/commonjs/src/components/Group/index.d.ts +2 -1
  409. package/lib/typescript/commonjs/src/components/Group/index.d.ts.map +1 -1
  410. package/lib/typescript/commonjs/src/components/Highlight/index.d.ts +19 -0
  411. package/lib/typescript/commonjs/src/components/Highlight/index.d.ts.map +1 -0
  412. package/lib/typescript/commonjs/src/components/Image/index.d.ts +31 -0
  413. package/lib/typescript/commonjs/src/components/Image/index.d.ts.map +1 -0
  414. package/lib/typescript/commonjs/src/components/Indicator/index.d.ts +32 -0
  415. package/lib/typescript/commonjs/src/components/Indicator/index.d.ts.map +1 -0
  416. package/lib/typescript/commonjs/src/components/Input/Input.styles.d.ts +5 -5
  417. package/lib/typescript/commonjs/src/components/Kbd/index.d.ts +12 -0
  418. package/lib/typescript/commonjs/src/components/Kbd/index.d.ts.map +1 -0
  419. package/lib/typescript/commonjs/src/components/List/index.d.ts +42 -0
  420. package/lib/typescript/commonjs/src/components/List/index.d.ts.map +1 -0
  421. package/lib/typescript/commonjs/src/components/Loader/Loader.d.ts.map +1 -1
  422. package/lib/typescript/commonjs/src/components/LoadingOverlay/index.d.ts +23 -0
  423. package/lib/typescript/commonjs/src/components/LoadingOverlay/index.d.ts.map +1 -0
  424. package/lib/typescript/commonjs/src/components/Mark/index.d.ts +14 -0
  425. package/lib/typescript/commonjs/src/components/Mark/index.d.ts.map +1 -0
  426. package/lib/typescript/commonjs/src/components/MediaQuery/index.d.ts +24 -0
  427. package/lib/typescript/commonjs/src/components/MediaQuery/index.d.ts.map +1 -0
  428. package/lib/typescript/commonjs/src/components/Menu/index.d.ts +64 -0
  429. package/lib/typescript/commonjs/src/components/Menu/index.d.ts.map +1 -0
  430. package/lib/typescript/commonjs/src/components/Modal/index.d.ts +40 -0
  431. package/lib/typescript/commonjs/src/components/Modal/index.d.ts.map +1 -0
  432. package/lib/typescript/commonjs/src/components/MultiSelect/index.d.ts +53 -0
  433. package/lib/typescript/commonjs/src/components/MultiSelect/index.d.ts.map +1 -0
  434. package/lib/typescript/commonjs/src/components/NativeSelect/index.d.ts +45 -0
  435. package/lib/typescript/commonjs/src/components/NativeSelect/index.d.ts.map +1 -0
  436. package/lib/typescript/commonjs/src/components/NavLink/index.d.ts +30 -0
  437. package/lib/typescript/commonjs/src/components/NavLink/index.d.ts.map +1 -0
  438. package/lib/typescript/commonjs/src/components/Notification/index.d.ts +28 -0
  439. package/lib/typescript/commonjs/src/components/Notification/index.d.ts.map +1 -0
  440. package/lib/typescript/commonjs/src/components/NumberInput/index.d.ts +47 -0
  441. package/lib/typescript/commonjs/src/components/NumberInput/index.d.ts.map +1 -0
  442. package/lib/typescript/commonjs/src/components/Overlay/index.d.ts +24 -0
  443. package/lib/typescript/commonjs/src/components/Overlay/index.d.ts.map +1 -0
  444. package/lib/typescript/commonjs/src/components/Pagination/index.d.ts +37 -0
  445. package/lib/typescript/commonjs/src/components/Pagination/index.d.ts.map +1 -0
  446. package/lib/typescript/commonjs/src/components/Paper/index.d.ts +18 -0
  447. package/lib/typescript/commonjs/src/components/Paper/index.d.ts.map +1 -0
  448. package/lib/typescript/commonjs/src/components/PasswordInput/index.d.ts +15 -0
  449. package/lib/typescript/commonjs/src/components/PasswordInput/index.d.ts.map +1 -0
  450. package/lib/typescript/commonjs/src/components/PinInput/index.d.ts +33 -0
  451. package/lib/typescript/commonjs/src/components/PinInput/index.d.ts.map +1 -0
  452. package/lib/typescript/commonjs/src/components/Popover/index.d.ts +44 -0
  453. package/lib/typescript/commonjs/src/components/Popover/index.d.ts.map +1 -0
  454. package/lib/typescript/commonjs/src/components/Portal/index.d.ts +10 -0
  455. package/lib/typescript/commonjs/src/components/Portal/index.d.ts.map +1 -0
  456. package/lib/typescript/commonjs/src/components/Progress/index.d.ts +29 -0
  457. package/lib/typescript/commonjs/src/components/Progress/index.d.ts.map +1 -0
  458. package/lib/typescript/commonjs/src/components/Radio/index.d.ts +24 -0
  459. package/lib/typescript/commonjs/src/components/Radio/index.d.ts.map +1 -0
  460. package/lib/typescript/commonjs/src/components/Rating/index.d.ts +32 -0
  461. package/lib/typescript/commonjs/src/components/Rating/index.d.ts.map +1 -0
  462. package/lib/typescript/commonjs/src/components/RingProgress/index.d.ts +61 -0
  463. package/lib/typescript/commonjs/src/components/RingProgress/index.d.ts.map +1 -0
  464. package/lib/typescript/commonjs/src/components/SegmentedControl/index.d.ts +35 -0
  465. package/lib/typescript/commonjs/src/components/SegmentedControl/index.d.ts.map +1 -0
  466. package/lib/typescript/commonjs/src/components/Select/index.d.ts +53 -0
  467. package/lib/typescript/commonjs/src/components/Select/index.d.ts.map +1 -0
  468. package/lib/typescript/commonjs/src/components/SimpleGrid/index.d.ts +22 -0
  469. package/lib/typescript/commonjs/src/components/SimpleGrid/index.d.ts.map +1 -0
  470. package/lib/typescript/commonjs/src/components/Skeleton/index.d.ts +22 -0
  471. package/lib/typescript/commonjs/src/components/Skeleton/index.d.ts.map +1 -0
  472. package/lib/typescript/commonjs/src/components/Slider/index.d.ts +43 -0
  473. package/lib/typescript/commonjs/src/components/Slider/index.d.ts.map +1 -0
  474. package/lib/typescript/commonjs/src/components/Space/index.d.ts +13 -0
  475. package/lib/typescript/commonjs/src/components/Space/index.d.ts.map +1 -0
  476. package/lib/typescript/commonjs/src/components/Spoiler/index.d.ts +22 -0
  477. package/lib/typescript/commonjs/src/components/Spoiler/index.d.ts.map +1 -0
  478. package/lib/typescript/commonjs/src/components/Stack/index.d.ts.map +1 -1
  479. package/lib/typescript/commonjs/src/components/Stepper/index.d.ts +55 -0
  480. package/lib/typescript/commonjs/src/components/Stepper/index.d.ts.map +1 -0
  481. package/lib/typescript/commonjs/src/components/Switch/index.d.ts +24 -0
  482. package/lib/typescript/commonjs/src/components/Switch/index.d.ts.map +1 -0
  483. package/lib/typescript/commonjs/src/components/Table/index.d.ts +72 -0
  484. package/lib/typescript/commonjs/src/components/Table/index.d.ts.map +1 -0
  485. package/lib/typescript/commonjs/src/components/Text/index.d.ts +4 -0
  486. package/lib/typescript/commonjs/src/components/Text/index.d.ts.map +1 -1
  487. package/lib/typescript/commonjs/src/components/TextInput/index.d.ts +31 -0
  488. package/lib/typescript/commonjs/src/components/TextInput/index.d.ts.map +1 -0
  489. package/lib/typescript/commonjs/src/components/Textarea/index.d.ts +12 -0
  490. package/lib/typescript/commonjs/src/components/Textarea/index.d.ts.map +1 -0
  491. package/lib/typescript/commonjs/src/components/ThemeIcon/index.d.ts +21 -0
  492. package/lib/typescript/commonjs/src/components/ThemeIcon/index.d.ts.map +1 -0
  493. package/lib/typescript/commonjs/src/components/Timeline/index.d.ts +52 -0
  494. package/lib/typescript/commonjs/src/components/Timeline/index.d.ts.map +1 -0
  495. package/lib/typescript/commonjs/src/components/Title/index.d.ts +14 -0
  496. package/lib/typescript/commonjs/src/components/Title/index.d.ts.map +1 -0
  497. package/lib/typescript/commonjs/src/components/Tooltip/index.d.ts +36 -0
  498. package/lib/typescript/commonjs/src/components/Tooltip/index.d.ts.map +1 -0
  499. package/lib/typescript/commonjs/src/components/TransferList/index.d.ts +42 -0
  500. package/lib/typescript/commonjs/src/components/TransferList/index.d.ts.map +1 -0
  501. package/lib/typescript/commonjs/src/components/Transition/index.d.ts +25 -0
  502. package/lib/typescript/commonjs/src/components/Transition/index.d.ts.map +1 -0
  503. package/lib/typescript/commonjs/src/components/index.d.ts +69 -0
  504. package/lib/typescript/commonjs/src/components/index.d.ts.map +1 -1
  505. package/lib/typescript/commonjs/src/theme/create-theme.d.ts.map +1 -1
  506. package/lib/typescript/commonjs/src/theme/default-theme.d.ts +20 -0
  507. package/lib/typescript/commonjs/src/theme/default-theme.d.ts.map +1 -1
  508. package/lib/typescript/commonjs/src/theme/functions/attach-functions.d.ts.map +1 -1
  509. package/lib/typescript/commonjs/src/theme/functions/fns/helpers.d.ts +23 -0
  510. package/lib/typescript/commonjs/src/theme/functions/fns/helpers.d.ts.map +1 -0
  511. package/lib/typescript/commonjs/src/theme/functions/fns/index.d.ts +22 -1
  512. package/lib/typescript/commonjs/src/theme/functions/fns/index.d.ts.map +1 -1
  513. package/lib/typescript/commonjs/src/theme/functions/fns/radius.d.ts.map +1 -1
  514. package/lib/typescript/commonjs/src/theme/functions/fns/theme-color/theme-color.d.ts +8 -1
  515. package/lib/typescript/commonjs/src/theme/functions/fns/theme-color/theme-color.d.ts.map +1 -1
  516. package/lib/typescript/commonjs/src/theme/functions/fns/variant.d.ts +19 -1
  517. package/lib/typescript/commonjs/src/theme/functions/fns/variant.d.ts.map +1 -1
  518. package/lib/typescript/commonjs/src/theme/theme-provider.d.ts.map +1 -1
  519. package/lib/typescript/commonjs/src/theme/utils/rem.d.ts +2 -2
  520. package/lib/typescript/commonjs/src/theme/utils/rem.d.ts.map +1 -1
  521. package/lib/typescript/module/src/components/Accordion/index.d.ts +54 -0
  522. package/lib/typescript/module/src/components/Accordion/index.d.ts.map +1 -0
  523. package/lib/typescript/module/src/components/ActionIcon/ActionIcon.d.ts +4 -4
  524. package/lib/typescript/module/src/components/ActionIcon/ActionIcon.d.ts.map +1 -1
  525. package/lib/typescript/module/src/components/Anchor/index.d.ts +25 -0
  526. package/lib/typescript/module/src/components/Anchor/index.d.ts.map +1 -0
  527. package/lib/typescript/module/src/components/AspectRatio/index.d.ts +12 -0
  528. package/lib/typescript/module/src/components/AspectRatio/index.d.ts.map +1 -0
  529. package/lib/typescript/module/src/components/Avatar/index.d.ts +23 -0
  530. package/lib/typescript/module/src/components/Avatar/index.d.ts.map +1 -0
  531. package/lib/typescript/module/src/components/BackgroundImage/index.d.ts +15 -0
  532. package/lib/typescript/module/src/components/BackgroundImage/index.d.ts.map +1 -0
  533. package/lib/typescript/module/src/components/Badge/index.d.ts +24 -0
  534. package/lib/typescript/module/src/components/Badge/index.d.ts.map +1 -0
  535. package/lib/typescript/module/src/components/Blockquote/index.d.ts +18 -0
  536. package/lib/typescript/module/src/components/Blockquote/index.d.ts.map +1 -0
  537. package/lib/typescript/module/src/components/BoxView/index.d.ts +28 -0
  538. package/lib/typescript/module/src/components/BoxView/index.d.ts.map +1 -1
  539. package/lib/typescript/module/src/components/Breadcrumbs/index.d.ts +12 -0
  540. package/lib/typescript/module/src/components/Breadcrumbs/index.d.ts.map +1 -0
  541. package/lib/typescript/module/src/components/Burger/index.d.ts +21 -0
  542. package/lib/typescript/module/src/components/Burger/index.d.ts.map +1 -0
  543. package/lib/typescript/module/src/components/Button/Button.styles.d.ts +5 -0
  544. package/lib/typescript/module/src/components/Button/Button.styles.d.ts.map +1 -1
  545. package/lib/typescript/module/src/components/Button/index.d.ts +1 -0
  546. package/lib/typescript/module/src/components/Button/index.d.ts.map +1 -1
  547. package/lib/typescript/module/src/components/Card/index.d.ts +24 -0
  548. package/lib/typescript/module/src/components/Card/index.d.ts.map +1 -0
  549. package/lib/typescript/module/src/components/Center/index.d.ts +15 -0
  550. package/lib/typescript/module/src/components/Center/index.d.ts.map +1 -0
  551. package/lib/typescript/module/src/components/Checkbox/index.d.ts +24 -0
  552. package/lib/typescript/module/src/components/Checkbox/index.d.ts.map +1 -0
  553. package/lib/typescript/module/src/components/Chip/index.d.ts +51 -0
  554. package/lib/typescript/module/src/components/Chip/index.d.ts.map +1 -0
  555. package/lib/typescript/module/src/components/CloseButton/index.d.ts +22 -0
  556. package/lib/typescript/module/src/components/CloseButton/index.d.ts.map +1 -0
  557. package/lib/typescript/module/src/components/Code/index.d.ts +15 -0
  558. package/lib/typescript/module/src/components/Code/index.d.ts.map +1 -0
  559. package/lib/typescript/module/src/components/Collapse/index.d.ts +20 -0
  560. package/lib/typescript/module/src/components/Collapse/index.d.ts.map +1 -0
  561. package/lib/typescript/module/src/components/ColorSwatch/index.d.ts +20 -0
  562. package/lib/typescript/module/src/components/ColorSwatch/index.d.ts.map +1 -0
  563. package/lib/typescript/module/src/components/Container/index.d.ts +20 -0
  564. package/lib/typescript/module/src/components/Container/index.d.ts.map +1 -0
  565. package/lib/typescript/module/src/components/CopyButton/index.d.ts +15 -0
  566. package/lib/typescript/module/src/components/CopyButton/index.d.ts.map +1 -0
  567. package/lib/typescript/module/src/components/Dialog/index.d.ts +31 -0
  568. package/lib/typescript/module/src/components/Dialog/index.d.ts.map +1 -0
  569. package/lib/typescript/module/src/components/Divider/index.d.ts +20 -0
  570. package/lib/typescript/module/src/components/Divider/index.d.ts.map +1 -0
  571. package/lib/typescript/module/src/components/Drawer/index.d.ts +36 -0
  572. package/lib/typescript/module/src/components/Drawer/index.d.ts.map +1 -0
  573. package/lib/typescript/module/src/components/Flex/index.d.ts +27 -0
  574. package/lib/typescript/module/src/components/Flex/index.d.ts.map +1 -0
  575. package/lib/typescript/module/src/components/Grid/index.d.ts +38 -0
  576. package/lib/typescript/module/src/components/Grid/index.d.ts.map +1 -0
  577. package/lib/typescript/module/src/components/Group/index.d.ts +2 -1
  578. package/lib/typescript/module/src/components/Group/index.d.ts.map +1 -1
  579. package/lib/typescript/module/src/components/Highlight/index.d.ts +19 -0
  580. package/lib/typescript/module/src/components/Highlight/index.d.ts.map +1 -0
  581. package/lib/typescript/module/src/components/Image/index.d.ts +31 -0
  582. package/lib/typescript/module/src/components/Image/index.d.ts.map +1 -0
  583. package/lib/typescript/module/src/components/Indicator/index.d.ts +32 -0
  584. package/lib/typescript/module/src/components/Indicator/index.d.ts.map +1 -0
  585. package/lib/typescript/module/src/components/Input/Input.styles.d.ts +5 -5
  586. package/lib/typescript/module/src/components/Kbd/index.d.ts +12 -0
  587. package/lib/typescript/module/src/components/Kbd/index.d.ts.map +1 -0
  588. package/lib/typescript/module/src/components/List/index.d.ts +42 -0
  589. package/lib/typescript/module/src/components/List/index.d.ts.map +1 -0
  590. package/lib/typescript/module/src/components/Loader/Loader.d.ts.map +1 -1
  591. package/lib/typescript/module/src/components/LoadingOverlay/index.d.ts +23 -0
  592. package/lib/typescript/module/src/components/LoadingOverlay/index.d.ts.map +1 -0
  593. package/lib/typescript/module/src/components/Mark/index.d.ts +14 -0
  594. package/lib/typescript/module/src/components/Mark/index.d.ts.map +1 -0
  595. package/lib/typescript/module/src/components/MediaQuery/index.d.ts +24 -0
  596. package/lib/typescript/module/src/components/MediaQuery/index.d.ts.map +1 -0
  597. package/lib/typescript/module/src/components/Menu/index.d.ts +64 -0
  598. package/lib/typescript/module/src/components/Menu/index.d.ts.map +1 -0
  599. package/lib/typescript/module/src/components/Modal/index.d.ts +40 -0
  600. package/lib/typescript/module/src/components/Modal/index.d.ts.map +1 -0
  601. package/lib/typescript/module/src/components/MultiSelect/index.d.ts +53 -0
  602. package/lib/typescript/module/src/components/MultiSelect/index.d.ts.map +1 -0
  603. package/lib/typescript/module/src/components/NativeSelect/index.d.ts +45 -0
  604. package/lib/typescript/module/src/components/NativeSelect/index.d.ts.map +1 -0
  605. package/lib/typescript/module/src/components/NavLink/index.d.ts +30 -0
  606. package/lib/typescript/module/src/components/NavLink/index.d.ts.map +1 -0
  607. package/lib/typescript/module/src/components/Notification/index.d.ts +28 -0
  608. package/lib/typescript/module/src/components/Notification/index.d.ts.map +1 -0
  609. package/lib/typescript/module/src/components/NumberInput/index.d.ts +47 -0
  610. package/lib/typescript/module/src/components/NumberInput/index.d.ts.map +1 -0
  611. package/lib/typescript/module/src/components/Overlay/index.d.ts +24 -0
  612. package/lib/typescript/module/src/components/Overlay/index.d.ts.map +1 -0
  613. package/lib/typescript/module/src/components/Pagination/index.d.ts +37 -0
  614. package/lib/typescript/module/src/components/Pagination/index.d.ts.map +1 -0
  615. package/lib/typescript/module/src/components/Paper/index.d.ts +18 -0
  616. package/lib/typescript/module/src/components/Paper/index.d.ts.map +1 -0
  617. package/lib/typescript/module/src/components/PasswordInput/index.d.ts +15 -0
  618. package/lib/typescript/module/src/components/PasswordInput/index.d.ts.map +1 -0
  619. package/lib/typescript/module/src/components/PinInput/index.d.ts +33 -0
  620. package/lib/typescript/module/src/components/PinInput/index.d.ts.map +1 -0
  621. package/lib/typescript/module/src/components/Popover/index.d.ts +44 -0
  622. package/lib/typescript/module/src/components/Popover/index.d.ts.map +1 -0
  623. package/lib/typescript/module/src/components/Portal/index.d.ts +10 -0
  624. package/lib/typescript/module/src/components/Portal/index.d.ts.map +1 -0
  625. package/lib/typescript/module/src/components/Progress/index.d.ts +29 -0
  626. package/lib/typescript/module/src/components/Progress/index.d.ts.map +1 -0
  627. package/lib/typescript/module/src/components/Radio/index.d.ts +24 -0
  628. package/lib/typescript/module/src/components/Radio/index.d.ts.map +1 -0
  629. package/lib/typescript/module/src/components/Rating/index.d.ts +32 -0
  630. package/lib/typescript/module/src/components/Rating/index.d.ts.map +1 -0
  631. package/lib/typescript/module/src/components/RingProgress/index.d.ts +61 -0
  632. package/lib/typescript/module/src/components/RingProgress/index.d.ts.map +1 -0
  633. package/lib/typescript/module/src/components/SegmentedControl/index.d.ts +35 -0
  634. package/lib/typescript/module/src/components/SegmentedControl/index.d.ts.map +1 -0
  635. package/lib/typescript/module/src/components/Select/index.d.ts +53 -0
  636. package/lib/typescript/module/src/components/Select/index.d.ts.map +1 -0
  637. package/lib/typescript/module/src/components/SimpleGrid/index.d.ts +22 -0
  638. package/lib/typescript/module/src/components/SimpleGrid/index.d.ts.map +1 -0
  639. package/lib/typescript/module/src/components/Skeleton/index.d.ts +22 -0
  640. package/lib/typescript/module/src/components/Skeleton/index.d.ts.map +1 -0
  641. package/lib/typescript/module/src/components/Slider/index.d.ts +43 -0
  642. package/lib/typescript/module/src/components/Slider/index.d.ts.map +1 -0
  643. package/lib/typescript/module/src/components/Space/index.d.ts +13 -0
  644. package/lib/typescript/module/src/components/Space/index.d.ts.map +1 -0
  645. package/lib/typescript/module/src/components/Spoiler/index.d.ts +22 -0
  646. package/lib/typescript/module/src/components/Spoiler/index.d.ts.map +1 -0
  647. package/lib/typescript/module/src/components/Stack/index.d.ts.map +1 -1
  648. package/lib/typescript/module/src/components/Stepper/index.d.ts +55 -0
  649. package/lib/typescript/module/src/components/Stepper/index.d.ts.map +1 -0
  650. package/lib/typescript/module/src/components/Switch/index.d.ts +24 -0
  651. package/lib/typescript/module/src/components/Switch/index.d.ts.map +1 -0
  652. package/lib/typescript/module/src/components/Table/index.d.ts +72 -0
  653. package/lib/typescript/module/src/components/Table/index.d.ts.map +1 -0
  654. package/lib/typescript/module/src/components/Text/index.d.ts +4 -0
  655. package/lib/typescript/module/src/components/Text/index.d.ts.map +1 -1
  656. package/lib/typescript/module/src/components/TextInput/index.d.ts +31 -0
  657. package/lib/typescript/module/src/components/TextInput/index.d.ts.map +1 -0
  658. package/lib/typescript/module/src/components/Textarea/index.d.ts +12 -0
  659. package/lib/typescript/module/src/components/Textarea/index.d.ts.map +1 -0
  660. package/lib/typescript/module/src/components/ThemeIcon/index.d.ts +21 -0
  661. package/lib/typescript/module/src/components/ThemeIcon/index.d.ts.map +1 -0
  662. package/lib/typescript/module/src/components/Timeline/index.d.ts +52 -0
  663. package/lib/typescript/module/src/components/Timeline/index.d.ts.map +1 -0
  664. package/lib/typescript/module/src/components/Title/index.d.ts +14 -0
  665. package/lib/typescript/module/src/components/Title/index.d.ts.map +1 -0
  666. package/lib/typescript/module/src/components/Tooltip/index.d.ts +36 -0
  667. package/lib/typescript/module/src/components/Tooltip/index.d.ts.map +1 -0
  668. package/lib/typescript/module/src/components/TransferList/index.d.ts +42 -0
  669. package/lib/typescript/module/src/components/TransferList/index.d.ts.map +1 -0
  670. package/lib/typescript/module/src/components/Transition/index.d.ts +25 -0
  671. package/lib/typescript/module/src/components/Transition/index.d.ts.map +1 -0
  672. package/lib/typescript/module/src/components/index.d.ts +69 -0
  673. package/lib/typescript/module/src/components/index.d.ts.map +1 -1
  674. package/lib/typescript/module/src/theme/create-theme.d.ts.map +1 -1
  675. package/lib/typescript/module/src/theme/default-theme.d.ts +20 -0
  676. package/lib/typescript/module/src/theme/default-theme.d.ts.map +1 -1
  677. package/lib/typescript/module/src/theme/functions/attach-functions.d.ts.map +1 -1
  678. package/lib/typescript/module/src/theme/functions/fns/helpers.d.ts +23 -0
  679. package/lib/typescript/module/src/theme/functions/fns/helpers.d.ts.map +1 -0
  680. package/lib/typescript/module/src/theme/functions/fns/index.d.ts +22 -1
  681. package/lib/typescript/module/src/theme/functions/fns/index.d.ts.map +1 -1
  682. package/lib/typescript/module/src/theme/functions/fns/radius.d.ts.map +1 -1
  683. package/lib/typescript/module/src/theme/functions/fns/theme-color/theme-color.d.ts +8 -1
  684. package/lib/typescript/module/src/theme/functions/fns/theme-color/theme-color.d.ts.map +1 -1
  685. package/lib/typescript/module/src/theme/functions/fns/variant.d.ts +19 -1
  686. package/lib/typescript/module/src/theme/functions/fns/variant.d.ts.map +1 -1
  687. package/lib/typescript/module/src/theme/theme-provider.d.ts.map +1 -1
  688. package/lib/typescript/module/src/theme/utils/rem.d.ts +2 -2
  689. package/lib/typescript/module/src/theme/utils/rem.d.ts.map +1 -1
  690. package/package.json +11 -8
  691. package/src/components/Accordion/index.tsx +297 -0
  692. package/src/components/ActionIcon/ActionIcon.tsx +61 -44
  693. package/src/components/Anchor/index.tsx +139 -0
  694. package/src/components/AspectRatio/index.tsx +68 -0
  695. package/src/components/Avatar/index.tsx +164 -0
  696. package/src/components/BackgroundImage/index.tsx +77 -0
  697. package/src/components/Badge/index.tsx +193 -0
  698. package/src/components/Blockquote/index.tsx +104 -0
  699. package/src/components/BoxView/index.tsx +90 -2
  700. package/src/components/Breadcrumbs/index.tsx +64 -0
  701. package/src/components/Burger/index.tsx +230 -0
  702. package/src/components/Button/Button.styles.ts +36 -16
  703. package/src/components/Button/index.tsx +3 -1
  704. package/src/components/Card/index.tsx +166 -0
  705. package/src/components/Center/index.tsx +40 -0
  706. package/src/components/Checkbox/index.tsx +168 -0
  707. package/src/components/Chip/index.tsx +350 -0
  708. package/src/components/CloseButton/index.tsx +154 -0
  709. package/src/components/Code/index.tsx +83 -0
  710. package/src/components/Collapse/index.tsx +108 -0
  711. package/src/components/ColorSwatch/index.tsx +106 -0
  712. package/src/components/Container/index.tsx +92 -0
  713. package/src/components/CopyButton/index.tsx +60 -0
  714. package/src/components/Dialog/index.tsx +189 -0
  715. package/src/components/Divider/index.tsx +161 -0
  716. package/src/components/Drawer/index.tsx +315 -0
  717. package/src/components/Flex/index.tsx +87 -0
  718. package/src/components/Grid/index.tsx +167 -0
  719. package/src/components/Group/index.tsx +24 -5
  720. package/src/components/Highlight/index.tsx +93 -0
  721. package/src/components/Image/index.tsx +180 -0
  722. package/src/components/Indicator/index.tsx +240 -0
  723. package/src/components/Kbd/index.tsx +84 -0
  724. package/src/components/List/index.tsx +294 -0
  725. package/src/components/Loader/Loader.tsx +27 -17
  726. package/src/components/LoadingOverlay/index.tsx +103 -0
  727. package/src/components/Mark/index.tsx +51 -0
  728. package/src/components/MediaQuery/index.tsx +133 -0
  729. package/src/components/Menu/index.tsx +395 -0
  730. package/src/components/Modal/index.tsx +318 -0
  731. package/src/components/MultiSelect/index.tsx +458 -0
  732. package/src/components/NativeSelect/index.tsx +387 -0
  733. package/src/components/NavLink/index.tsx +205 -0
  734. package/src/components/Notification/index.tsx +175 -0
  735. package/src/components/NumberInput/index.tsx +356 -0
  736. package/src/components/Overlay/index.tsx +100 -0
  737. package/src/components/Pagination/index.tsx +336 -0
  738. package/src/components/Paper/index.tsx +155 -0
  739. package/src/components/PasswordInput/index.tsx +78 -0
  740. package/src/components/PinInput/index.tsx +251 -0
  741. package/src/components/Popover/index.tsx +244 -0
  742. package/src/components/Portal/index.tsx +75 -0
  743. package/src/components/Progress/index.tsx +182 -0
  744. package/src/components/Radio/index.tsx +169 -0
  745. package/src/components/Rating/index.tsx +214 -0
  746. package/src/components/RingProgress/index.tsx +206 -0
  747. package/src/components/SegmentedControl/index.tsx +259 -0
  748. package/src/components/Select/index.tsx +377 -0
  749. package/src/components/SimpleGrid/index.tsx +119 -0
  750. package/src/components/Skeleton/index.tsx +149 -0
  751. package/src/components/Slider/index.tsx +338 -0
  752. package/src/components/Space/index.tsx +48 -0
  753. package/src/components/Spoiler/index.tsx +123 -0
  754. package/src/components/Stepper/index.tsx +388 -0
  755. package/src/components/Switch/index.tsx +146 -0
  756. package/src/components/Table/index.tsx +402 -0
  757. package/src/components/Text/index.tsx +6 -1
  758. package/src/components/TextInput/index.tsx +232 -0
  759. package/src/components/Textarea/index.tsx +61 -0
  760. package/src/components/ThemeIcon/index.tsx +167 -0
  761. package/src/components/Timeline/index.tsx +331 -0
  762. package/src/components/Title/index.tsx +53 -0
  763. package/src/components/Tooltip/index.tsx +259 -0
  764. package/src/components/TransferList/index.tsx +399 -0
  765. package/src/components/Transition/index.tsx +225 -0
  766. package/src/components/index.tsx +101 -0
  767. package/src/theme/create-theme.ts +3 -1
  768. package/src/theme/default-theme.ts +24 -0
  769. package/src/theme/functions/attach-functions.ts +8 -1
  770. package/src/theme/functions/fns/helpers.ts +36 -0
  771. package/src/theme/functions/fns/index.ts +2 -0
  772. package/src/theme/functions/fns/theme-color/theme-color.ts +34 -3
  773. package/src/theme/functions/fns/variant.ts +110 -2
  774. package/src/theme/get-size/index.ts +2 -2
  775. package/src/theme/theme-provider.tsx +7 -7
  776. package/src/theme/utils/rem.ts +9 -7
@@ -0,0 +1,287 @@
1
+ "use strict";
2
+
3
+ import React, { forwardRef, useState } from 'react';
4
+ import { ScrollView, TouchableOpacity } from 'react-native';
5
+ import { BoxView } from "../BoxView/index.js";
6
+ import { Text } from "../Text/index.js";
7
+ import { Checkbox } from "../Checkbox/index.js";
8
+ import { _Button as Button } from "../Button/index.js";
9
+ import { TextInput } from "../TextInput/index.js";
10
+ import { useComponentDefaultProps } from "../../theme/theme-provider.js";
11
+ import { createStyles } from "../../theme/index.js";
12
+ import { rem } from "../../theme/utils/rem.js";
13
+ import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
14
+ const useStyles = createStyles((theme, {
15
+ color,
16
+ radius,
17
+ listHeight
18
+ }) => {
19
+ const colors = theme.colors[color] || theme.colors[theme.primaryColor];
20
+ return {
21
+ root: {
22
+ flexDirection: 'column'
23
+ },
24
+ container: {
25
+ flexDirection: 'row',
26
+ justifyContent: 'space-between',
27
+ alignItems: 'stretch'
28
+ },
29
+ list: {
30
+ flex: 1,
31
+ borderWidth: 1,
32
+ borderColor: theme.colorScheme === 'dark' ? (theme.colors.dark || [])[4] : (theme.colors.gray || [])[3],
33
+ borderRadius: theme.fn.radius(radius),
34
+ overflow: 'hidden'
35
+ },
36
+ listHeader: {
37
+ padding: theme.spacing.sm,
38
+ borderBottomWidth: 1,
39
+ borderBottomColor: theme.colorScheme === 'dark' ? (theme.colors.dark || [])[4] : (theme.colors.gray || [])[3],
40
+ backgroundColor: theme.colorScheme === 'dark' ? (theme.colors.dark || [])[6] : (theme.colors.gray || [])[0]
41
+ },
42
+ title: {
43
+ fontSize: rem(14),
44
+ fontWeight: '600',
45
+ color: theme.colorScheme === 'dark' ? (theme.colors.dark || [])[0] : theme.black
46
+ },
47
+ searchContainer: {
48
+ padding: theme.spacing.xs,
49
+ borderBottomWidth: 1,
50
+ borderBottomColor: theme.colorScheme === 'dark' ? (theme.colors.dark || [])[4] : (theme.colors.gray || [])[3]
51
+ },
52
+ itemsContainer: {
53
+ height: listHeight
54
+ },
55
+ item: {
56
+ flexDirection: 'row',
57
+ alignItems: 'center',
58
+ paddingVertical: rem(10),
59
+ paddingHorizontal: theme.spacing.sm,
60
+ borderBottomWidth: 1,
61
+ borderBottomColor: theme.colorScheme === 'dark' ? (theme.colors.dark || [])[5] : (theme.colors.gray || [])[1]
62
+ },
63
+ itemSelected: {
64
+ backgroundColor: theme.colorScheme === 'dark' ? (theme.colors.dark || [])[5] : colors?.[0] || (theme.colors.gray || [])[0]
65
+ },
66
+ itemText: {
67
+ marginLeft: theme.spacing.sm,
68
+ fontSize: rem(14),
69
+ color: theme.colorScheme === 'dark' ? (theme.colors.dark || [])[0] : theme.black
70
+ },
71
+ controls: {
72
+ width: rem(80),
73
+ justifyContent: 'center',
74
+ alignItems: 'center',
75
+ paddingHorizontal: theme.spacing.xs
76
+ },
77
+ button: {
78
+ marginVertical: theme.spacing.xs
79
+ },
80
+ emptyState: {
81
+ padding: theme.spacing.xl,
82
+ alignItems: 'center'
83
+ },
84
+ emptyText: {
85
+ color: theme.colorScheme === 'dark' ? (theme.colors.dark || [])[2] : (theme.colors.gray || [])[6],
86
+ fontSize: rem(12)
87
+ }
88
+ };
89
+ });
90
+ const defaultProps = {
91
+ titles: ['', ''],
92
+ searchPlaceholder: 'Search...',
93
+ searchable: false,
94
+ color: 'blue',
95
+ size: 'md',
96
+ radius: 'sm',
97
+ listHeight: 300,
98
+ transferAllMatchingFilter: false
99
+ };
100
+ const DefaultItem = ({
101
+ data,
102
+ selected
103
+ }) => {
104
+ return /*#__PURE__*/_jsxs(_Fragment, {
105
+ children: [/*#__PURE__*/_jsx(Checkbox, {
106
+ checked: selected,
107
+ onChange: () => {}
108
+ }), /*#__PURE__*/_jsx(Text, {
109
+ children: data.label
110
+ })]
111
+ });
112
+ };
113
+ export const TransferList = /*#__PURE__*/forwardRef((props, ref) => {
114
+ const {
115
+ value,
116
+ onChange,
117
+ titles,
118
+ searchPlaceholder,
119
+ searchable,
120
+ color,
121
+ size,
122
+ radius,
123
+ listHeight,
124
+ transferAllMatchingFilter,
125
+ itemComponent: ItemComponent = DefaultItem,
126
+ style,
127
+ ...others
128
+ } = useComponentDefaultProps('TransferList', defaultProps, props);
129
+ const [leftSearch, setLeftSearch] = useState('');
130
+ const [rightSearch, setRightSearch] = useState('');
131
+ const {
132
+ styles,
133
+ sx
134
+ } = useStyles({
135
+ color,
136
+ radius,
137
+ listHeight
138
+ }, {
139
+ name: 'TransferList',
140
+ size
141
+ });
142
+ const [leftData, rightData] = value;
143
+ const filterItems = (items, search) => {
144
+ if (!search) return items;
145
+ return items.filter(item => item.label.toLowerCase().includes(search.toLowerCase()));
146
+ };
147
+ const filteredLeftItems = filterItems(leftData.items, leftSearch);
148
+ const filteredRightItems = filterItems(rightData.items, rightSearch);
149
+ const toggleSelection = (side, itemValue) => {
150
+ const data = side === 'left' ? leftData : rightData;
151
+ const selectedValues = data.selectedValues.includes(itemValue) ? data.selectedValues.filter(v => v !== itemValue) : [...data.selectedValues, itemValue];
152
+ const newValue = side === 'left' ? [{
153
+ ...leftData,
154
+ selectedValues
155
+ }, rightData] : [leftData, {
156
+ ...rightData,
157
+ selectedValues
158
+ }];
159
+ onChange(newValue);
160
+ };
161
+ const transferToRight = () => {
162
+ const itemsToTransfer = leftData.items.filter(item => leftData.selectedValues.includes(item.value));
163
+ const remainingItems = leftData.items.filter(item => !leftData.selectedValues.includes(item.value));
164
+ onChange([{
165
+ items: remainingItems,
166
+ selectedValues: []
167
+ }, {
168
+ items: [...rightData.items, ...itemsToTransfer],
169
+ selectedValues: []
170
+ }]);
171
+ };
172
+ const transferToLeft = () => {
173
+ const itemsToTransfer = rightData.items.filter(item => rightData.selectedValues.includes(item.value));
174
+ const remainingItems = rightData.items.filter(item => !rightData.selectedValues.includes(item.value));
175
+ onChange([{
176
+ items: [...leftData.items, ...itemsToTransfer],
177
+ selectedValues: []
178
+ }, {
179
+ items: remainingItems,
180
+ selectedValues: []
181
+ }]);
182
+ };
183
+ const transferAllToRight = () => {
184
+ onChange([{
185
+ items: [],
186
+ selectedValues: []
187
+ }, {
188
+ items: [...rightData.items, ...leftData.items],
189
+ selectedValues: []
190
+ }]);
191
+ };
192
+ const transferAllToLeft = () => {
193
+ onChange([{
194
+ items: [...leftData.items, ...rightData.items],
195
+ selectedValues: []
196
+ }, {
197
+ items: [],
198
+ selectedValues: []
199
+ }]);
200
+ };
201
+ const renderList = (data, filteredItems, side, searchValue, setSearchValue, title) => /*#__PURE__*/_jsxs(BoxView, {
202
+ style: styles.list,
203
+ children: [title && /*#__PURE__*/_jsx(BoxView, {
204
+ style: styles.listHeader,
205
+ children: /*#__PURE__*/_jsx(Text, {
206
+ style: styles.title,
207
+ children: title
208
+ })
209
+ }), searchable && /*#__PURE__*/_jsx(BoxView, {
210
+ style: styles.searchContainer,
211
+ children: /*#__PURE__*/_jsx(TextInput, {
212
+ placeholder: searchPlaceholder,
213
+ value: searchValue,
214
+ onChange: e => setSearchValue(e.nativeEvent.text),
215
+ size: "sm"
216
+ })
217
+ }), /*#__PURE__*/_jsx(ScrollView, {
218
+ style: styles.itemsContainer,
219
+ children: filteredItems.length === 0 ? /*#__PURE__*/_jsx(BoxView, {
220
+ style: styles.emptyState,
221
+ children: /*#__PURE__*/_jsx(Text, {
222
+ style: styles.emptyText,
223
+ children: "No items"
224
+ })
225
+ }) : filteredItems.map(item => {
226
+ const isSelected = data.selectedValues.includes(item.value);
227
+ return /*#__PURE__*/_jsxs(TouchableOpacity, {
228
+ style: [styles.item, isSelected && styles.itemSelected],
229
+ onPress: () => toggleSelection(side, item.value),
230
+ children: [/*#__PURE__*/_jsx(ItemComponent, {
231
+ data: item,
232
+ selected: isSelected
233
+ }), /*#__PURE__*/_jsx(Text, {
234
+ style: styles.itemText,
235
+ children: item.label
236
+ })]
237
+ }, item.value);
238
+ })
239
+ })]
240
+ });
241
+ return /*#__PURE__*/_jsx(BoxView, {
242
+ ref: ref,
243
+ style: sx(styles.root, style),
244
+ ...others,
245
+ children: /*#__PURE__*/_jsxs(BoxView, {
246
+ style: styles.container,
247
+ children: [renderList(leftData, filteredLeftItems, 'left', leftSearch, setLeftSearch, titles?.[0] || ''), /*#__PURE__*/_jsxs(BoxView, {
248
+ style: styles.controls,
249
+ children: [/*#__PURE__*/_jsx(Button, {
250
+ style: styles.button,
251
+ onPress: transferAllToRight,
252
+ disabled: leftData.items.length === 0,
253
+ size: "sm",
254
+ children: /*#__PURE__*/_jsx(Text, {
255
+ children: '»'
256
+ })
257
+ }), /*#__PURE__*/_jsx(Button, {
258
+ style: styles.button,
259
+ onPress: transferToRight,
260
+ disabled: leftData.selectedValues.length === 0,
261
+ size: "sm",
262
+ children: /*#__PURE__*/_jsx(Text, {
263
+ children: '›'
264
+ })
265
+ }), /*#__PURE__*/_jsx(Button, {
266
+ style: styles.button,
267
+ onPress: transferToLeft,
268
+ disabled: rightData.selectedValues.length === 0,
269
+ size: "sm",
270
+ children: /*#__PURE__*/_jsx(Text, {
271
+ children: '‹'
272
+ })
273
+ }), /*#__PURE__*/_jsx(Button, {
274
+ style: styles.button,
275
+ onPress: transferAllToLeft,
276
+ disabled: rightData.items.length === 0,
277
+ size: "sm",
278
+ children: /*#__PURE__*/_jsx(Text, {
279
+ children: '«'
280
+ })
281
+ })]
282
+ }), renderList(rightData, filteredRightItems, 'right', rightSearch, setRightSearch, titles?.[1] || '')]
283
+ })
284
+ });
285
+ });
286
+ TransferList.displayName = 'TransferList';
287
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","forwardRef","useState","ScrollView","TouchableOpacity","BoxView","Text","Checkbox","_Button","Button","TextInput","useComponentDefaultProps","createStyles","rem","jsx","_jsx","Fragment","_Fragment","jsxs","_jsxs","useStyles","theme","color","radius","listHeight","colors","primaryColor","root","flexDirection","container","justifyContent","alignItems","list","flex","borderWidth","borderColor","colorScheme","dark","gray","borderRadius","fn","overflow","listHeader","padding","spacing","sm","borderBottomWidth","borderBottomColor","backgroundColor","title","fontSize","fontWeight","black","searchContainer","xs","itemsContainer","height","item","paddingVertical","paddingHorizontal","itemSelected","itemText","marginLeft","controls","width","button","marginVertical","emptyState","xl","emptyText","defaultProps","titles","searchPlaceholder","searchable","size","transferAllMatchingFilter","DefaultItem","data","selected","children","checked","onChange","label","TransferList","props","ref","value","itemComponent","ItemComponent","style","others","leftSearch","setLeftSearch","rightSearch","setRightSearch","styles","sx","name","leftData","rightData","filterItems","items","search","filter","toLowerCase","includes","filteredLeftItems","filteredRightItems","toggleSelection","side","itemValue","selectedValues","v","newValue","transferToRight","itemsToTransfer","remainingItems","transferToLeft","transferAllToRight","transferAllToLeft","renderList","filteredItems","searchValue","setSearchValue","placeholder","e","nativeEvent","text","length","map","isSelected","onPress","disabled","displayName"],"sourceRoot":"../../../../src","sources":["components/TransferList/index.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,169 @@
1
+ "use strict";
2
+
3
+ import React, { forwardRef, useEffect, useRef } from 'react';
4
+ import { Animated, Easing } from 'react-native';
5
+ import { useComponentDefaultProps } from "../../theme/theme-provider.js";
6
+ import { jsx as _jsx } from "react/jsx-runtime";
7
+ const getEasing = timingFunction => {
8
+ switch (timingFunction) {
9
+ case 'linear':
10
+ return Easing.linear;
11
+ case 'ease':
12
+ return Easing.ease;
13
+ case 'ease-in':
14
+ return Easing.in(Easing.ease);
15
+ case 'ease-out':
16
+ return Easing.out(Easing.ease);
17
+ case 'ease-in-out':
18
+ return Easing.inOut(Easing.ease);
19
+ default:
20
+ return Easing.ease;
21
+ }
22
+ };
23
+ const defaultProps = {
24
+ transition: 'fade',
25
+ duration: 250,
26
+ timingFunction: 'ease'
27
+ };
28
+ export const Transition = /*#__PURE__*/forwardRef((props, ref) => {
29
+ const {
30
+ mounted,
31
+ transition,
32
+ duration,
33
+ exitDuration,
34
+ timingFunction,
35
+ children,
36
+ onExited,
37
+ onEntered,
38
+ style,
39
+ ...others
40
+ } = useComponentDefaultProps('Transition', defaultProps, props);
41
+ const animation = useRef(new Animated.Value(mounted ? 1 : 0)).current;
42
+ const shouldRender = useRef(mounted);
43
+ useEffect(() => {
44
+ if (mounted) {
45
+ shouldRender.current = true;
46
+ Animated.timing(animation, {
47
+ toValue: 1,
48
+ duration: duration || 250,
49
+ easing: getEasing(timingFunction || 'ease'),
50
+ useNativeDriver: true
51
+ }).start(({
52
+ finished
53
+ }) => {
54
+ if (finished && onEntered) {
55
+ onEntered();
56
+ }
57
+ });
58
+ } else {
59
+ Animated.timing(animation, {
60
+ toValue: 0,
61
+ duration: exitDuration || duration || 250,
62
+ easing: getEasing(timingFunction || 'ease'),
63
+ useNativeDriver: true
64
+ }).start(({
65
+ finished
66
+ }) => {
67
+ if (finished) {
68
+ shouldRender.current = false;
69
+ if (onExited) {
70
+ onExited();
71
+ }
72
+ }
73
+ });
74
+ }
75
+ }, [mounted, duration, exitDuration, timingFunction, onEntered, onExited, animation]);
76
+ const getTransformStyle = () => {
77
+ switch (transition) {
78
+ case 'fade':
79
+ return {
80
+ opacity: animation
81
+ };
82
+ case 'scale':
83
+ return {
84
+ opacity: animation,
85
+ transform: [{
86
+ scale: animation.interpolate({
87
+ inputRange: [0, 1],
88
+ outputRange: [0.75, 1]
89
+ })
90
+ }]
91
+ };
92
+ case 'slide-down':
93
+ return {
94
+ opacity: animation,
95
+ transform: [{
96
+ translateY: animation.interpolate({
97
+ inputRange: [0, 1],
98
+ outputRange: [-20, 0]
99
+ })
100
+ }]
101
+ };
102
+ case 'slide-up':
103
+ return {
104
+ opacity: animation,
105
+ transform: [{
106
+ translateY: animation.interpolate({
107
+ inputRange: [0, 1],
108
+ outputRange: [20, 0]
109
+ })
110
+ }]
111
+ };
112
+ case 'slide-left':
113
+ return {
114
+ opacity: animation,
115
+ transform: [{
116
+ translateX: animation.interpolate({
117
+ inputRange: [0, 1],
118
+ outputRange: [20, 0]
119
+ })
120
+ }]
121
+ };
122
+ case 'slide-right':
123
+ return {
124
+ opacity: animation,
125
+ transform: [{
126
+ translateX: animation.interpolate({
127
+ inputRange: [0, 1],
128
+ outputRange: [-20, 0]
129
+ })
130
+ }]
131
+ };
132
+ case 'pop':
133
+ return {
134
+ opacity: animation,
135
+ transform: [{
136
+ scale: animation.interpolate({
137
+ inputRange: [0, 1],
138
+ outputRange: [0, 1]
139
+ })
140
+ }]
141
+ };
142
+ case 'rotate':
143
+ return {
144
+ opacity: animation,
145
+ transform: [{
146
+ rotate: animation.interpolate({
147
+ inputRange: [0, 1],
148
+ outputRange: ['-180deg', '0deg']
149
+ })
150
+ }]
151
+ };
152
+ default:
153
+ return {
154
+ opacity: animation
155
+ };
156
+ }
157
+ };
158
+ if (!shouldRender.current && !mounted) {
159
+ return null;
160
+ }
161
+ return /*#__PURE__*/_jsx(Animated.View, {
162
+ ref: ref,
163
+ style: [getTransformStyle(), style],
164
+ ...others,
165
+ children: children
166
+ });
167
+ });
168
+ Transition.displayName = 'Transition';
169
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","forwardRef","useEffect","useRef","Animated","Easing","useComponentDefaultProps","jsx","_jsx","getEasing","timingFunction","linear","ease","in","out","inOut","defaultProps","transition","duration","Transition","props","ref","mounted","exitDuration","children","onExited","onEntered","style","others","animation","Value","current","shouldRender","timing","toValue","easing","useNativeDriver","start","finished","getTransformStyle","opacity","transform","scale","interpolate","inputRange","outputRange","translateY","translateX","rotate","View","displayName"],"sourceRoot":"../../../../src","sources":["components/Transition/index.tsx"],"mappings":"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","ignoreList":[]}
@@ -7,4 +7,105 @@ export * from "./Text/index.js";
7
7
  export * from "./Button/index.js";
8
8
  export * from "./UnstyledButton/index.js";
9
9
  export * from "./ActionIcon/index.js";
10
+ export * from "./Loader/index.js";
11
+
12
+ // Phase 1 components
13
+ export * from "./Center/index.js";
14
+ export * from "./Container/index.js";
15
+ export * from "./Flex/index.js";
16
+ export * from "./Space/index.js";
17
+ export * from "./Title/index.js";
18
+ export * from "./Highlight/index.js";
19
+ export * from "./Mark/index.js";
20
+ export * from "./Code/index.js";
21
+
22
+ // Phase 2 components - Visual Feedback
23
+ export * from "./Badge/index.js";
24
+ export * from "./Avatar/index.js";
25
+ export * from "./Paper/index.js";
26
+ export * from "./Divider/index.js";
27
+ export * from "./Progress/index.js";
28
+ export * from "./Skeleton/index.js";
29
+
30
+ // Phase 2 components - Input Components
31
+ export * from "./TextInput/index.js";
32
+ export * from "./Textarea/index.js";
33
+ export * from "./PasswordInput/index.js";
34
+ export * from "./Switch/index.js";
35
+ export * from "./Checkbox/index.js";
36
+ export * from "./Radio/index.js";
37
+
38
+ // Phase 3 components - Foundation & Utilities
39
+ export * from "./Overlay/index.js";
40
+ export * from "./Portal/index.js";
41
+
42
+ // Phase 3 components - Interactive Components
43
+ export * from "./Modal/index.js";
44
+ export * from "./Drawer/index.js";
45
+ export * from "./Dialog/index.js";
46
+ export * from "./Collapse/index.js";
47
+ export * from "./Accordion/index.js";
48
+ export * from "./Spoiler/index.js";
49
+ export * from "./Notification/index.js";
50
+
51
+ // Phase 3 components - Form Components
52
+ export * from "./NumberInput/index.js";
53
+ export * from "./PinInput/index.js";
54
+ export * from "./Chip/index.js";
55
+ export * from "./NativeSelect/index.js";
56
+
57
+ // Phase 4 components - Advanced Interactions
58
+ export * from "./Slider/index.js";
59
+ export * from "./Rating/index.js";
60
+ export * from "./Stepper/index.js";
61
+ export * from "./SegmentedControl/index.js";
62
+ export * from "./Pagination/index.js";
63
+
64
+ // Phase 4 components - Data Display
65
+ export * from "./Card/index.js";
66
+ export * from "./Timeline/index.js";
67
+ export * from "./Table/index.js";
68
+ export * from "./List/index.js";
69
+
70
+ // Phase 5 components - Images & Media
71
+ export * from "./Image/index.js";
72
+ export * from "./BackgroundImage/index.js";
73
+ export * from "./ThemeIcon/index.js";
74
+ export * from "./ColorSwatch/index.js";
75
+
76
+ // Phase 5 components - Utility Components
77
+ export * from "./Transition/index.js";
78
+ export * from "./CloseButton/index.js";
79
+ export * from "./CopyButton/index.js";
80
+ export * from "./Burger/index.js";
81
+
82
+ // Phase 6 components - Foundation
83
+ export * from "./Anchor/index.js";
84
+ export * from "./Kbd/index.js";
85
+ export * from "./Indicator/index.js";
86
+
87
+ // Phase 6 components - Layout
88
+ export * from "./Grid/index.js";
89
+ export * from "./SimpleGrid/index.js";
90
+ export * from "./AspectRatio/index.js";
91
+ export * from "./MediaQuery/index.js";
92
+
93
+ // Phase 6 components - Display
94
+ export * from "./Blockquote/index.js";
95
+ export * from "./Breadcrumbs/index.js";
96
+ export * from "./NavLink/index.js";
97
+
98
+ // Phase 6 components - Complex Overlays
99
+ export * from "./LoadingOverlay/index.js";
100
+ export * from "./Tooltip/index.js";
101
+ export * from "./Popover/index.js";
102
+ export * from "./Menu/index.js";
103
+
104
+ // Phase 6 components - Advanced Form
105
+ export * from "./Select/index.js";
106
+ export * from "./MultiSelect/index.js";
107
+
108
+ // Phase 6 components - Specialized
109
+ export * from "./RingProgress/index.js";
110
+ export * from "./TransferList/index.js";
10
111
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"names":[],"sourceRoot":"../../../src","sources":["components/index.tsx"],"mappings":";;AAAA,cAAc,oBAAW;AACzB,cAAc,kBAAS;AACvB,cAAc,kBAAS;AACvB,cAAc,iBAAQ;AACtB,cAAc,mBAAU;AACxB,cAAc,2BAAkB;AAChC,cAAc,uBAAc","ignoreList":[]}
1
+ {"version":3,"names":[],"sourceRoot":"../../../src","sources":["components/index.tsx"],"mappings":";;AAAA,cAAc,oBAAW;AACzB,cAAc,kBAAS;AACvB,cAAc,kBAAS;AACvB,cAAc,iBAAQ;AACtB,cAAc,mBAAU;AACxB,cAAc,2BAAkB;AAChC,cAAc,uBAAc;AAC5B,cAAc,mBAAU;;AAExB;AACA,cAAc,mBAAU;AACxB,cAAc,sBAAa;AAC3B,cAAc,iBAAQ;AACtB,cAAc,kBAAS;AACvB,cAAc,kBAAS;AACvB,cAAc,sBAAa;AAC3B,cAAc,iBAAQ;AACtB,cAAc,iBAAQ;;AAEtB;AACA,cAAc,kBAAS;AACvB,cAAc,mBAAU;AACxB,cAAc,kBAAS;AACvB,cAAc,oBAAW;AACzB,cAAc,qBAAY;AAC1B,cAAc,qBAAY;;AAE1B;AACA,cAAc,sBAAa;AAC3B,cAAc,qBAAY;AAC1B,cAAc,0BAAiB;AAC/B,cAAc,mBAAU;AACxB,cAAc,qBAAY;AAC1B,cAAc,kBAAS;;AAEvB;AACA,cAAc,oBAAW;AACzB,cAAc,mBAAU;;AAExB;AACA,cAAc,kBAAS;AACvB,cAAc,mBAAU;AACxB,cAAc,mBAAU;AACxB,cAAc,qBAAY;AAC1B,cAAc,sBAAa;AAC3B,cAAc,oBAAW;AACzB,cAAc,yBAAgB;;AAE9B;AACA,cAAc,wBAAe;AAC7B,cAAc,qBAAY;AAC1B,cAAc,iBAAQ;AACtB,cAAc,yBAAgB;;AAE9B;AACA,cAAc,mBAAU;AACxB,cAAc,mBAAU;AACxB,cAAc,oBAAW;AACzB,cAAc,6BAAoB;AAClC,cAAc,uBAAc;;AAE5B;AACA,cAAc,iBAAQ;AACtB,cAAc,qBAAY;AAC1B,cAAc,kBAAS;AACvB,cAAc,iBAAQ;;AAEtB;AACA,cAAc,kBAAS;AACvB,cAAc,4BAAmB;AACjC,cAAc,sBAAa;AAC3B,cAAc,wBAAe;;AAE7B;AACA,cAAc,uBAAc;AAC5B,cAAc,wBAAe;AAC7B,cAAc,uBAAc;AAC5B,cAAc,mBAAU;;AAExB;AACA,cAAc,mBAAU;AACxB,cAAc,gBAAO;AACrB,cAAc,sBAAa;;AAE3B;AACA,cAAc,iBAAQ;AACtB,cAAc,uBAAc;AAC5B,cAAc,wBAAe;AAC7B,cAAc,uBAAc;;AAE5B;AACA,cAAc,uBAAc;AAC5B,cAAc,wBAAe;AAC7B,cAAc,oBAAW;;AAEzB;AACA,cAAc,2BAAkB;AAChC,cAAc,oBAAW;AACzB,cAAc,oBAAW;AACzB,cAAc,iBAAQ;;AAEtB;AACA,cAAc,mBAAU;AACxB,cAAc,wBAAe;;AAE7B;AACA,cAAc,yBAAgB;AAC9B,cAAc,yBAAgB","ignoreList":[]}
@@ -0,0 +1 @@
1
+ {"type":"module"}
@@ -4,12 +4,14 @@ import { DEFAULT_COLORS, DEFAULT_THEME } from "./default-theme.js";
4
4
  export const createTheme = theme => {
5
5
  const {
6
6
  primaryShade = 7,
7
- other = {}
7
+ other = {},
8
+ components = {}
8
9
  } = theme || {};
9
10
  return {
10
11
  ...DEFAULT_THEME,
11
12
  primaryShade: primaryShade,
12
13
  other: other,
14
+ components: components,
13
15
  fontFamily: 'Nunito',
14
16
  fontFamilyBold: 'Nunito Bold',
15
17
  fontFamilySemiBold: 'Nunito SemiBold',
@@ -17,6 +19,7 @@ export const createTheme = theme => {
17
19
  primaryColor: 'blue',
18
20
  secondaryColor: 'cyan',
19
21
  headings: {
22
+ ...DEFAULT_THEME.headings,
20
23
  fontFamily: 'Nunito'
21
24
  },
22
25
  colors: DEFAULT_COLORS
@@ -1 +1 @@
1
- {"version":3,"names":["DEFAULT_COLORS","DEFAULT_THEME","createTheme","theme","primaryShade","other","fontFamily","fontFamilyBold","fontFamilySemiBold","fontFamilyInput","primaryColor","secondaryColor","headings","colors"],"sourceRoot":"../../../src","sources":["theme/create-theme.ts"],"mappings":";;AAAA,SAASA,cAAc,EAAEC,aAAa,QAAQ,oBAAiB;AAG/D,OAAO,MAAMC,WAAW,GAAIC,KAA6B,IAAmB;EAC1E,MAAM;IAAEC,YAAY,GAAG,CAAC;IAAEC,KAAK,GAAG,CAAC;EAAE,CAAC,GAAGF,KAAK,IAAI,CAAC,CAAC;EACpD,OAAO;IACL,GAAGF,aAAa;IAChBG,YAAY,EAAEA,YAAY;IAC1BC,KAAK,EAAEA,KAAK;IACZC,UAAU,EAAE,QAAQ;IACpBC,cAAc,EAAE,aAAa;IAC7BC,kBAAkB,EAAE,iBAAiB;IACrCC,eAAe,EAAE,QAAQ;IACzBC,YAAY,EAAE,MAAM;IACpBC,cAAc,EAAE,MAAM;IACtBC,QAAQ,EAAE;MACRN,UAAU,EAAE;IACd,CAAC;IACDO,MAAM,EAAEb;EACV,CAAC;AACH,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["DEFAULT_COLORS","DEFAULT_THEME","createTheme","theme","primaryShade","other","components","fontFamily","fontFamilyBold","fontFamilySemiBold","fontFamilyInput","primaryColor","secondaryColor","headings","colors"],"sourceRoot":"../../../src","sources":["theme/create-theme.ts"],"mappings":";;AAAA,SAASA,cAAc,EAAEC,aAAa,QAAQ,oBAAiB;AAG/D,OAAO,MAAMC,WAAW,GAAIC,KAA6B,IAAmB;EAC1E,MAAM;IAAEC,YAAY,GAAG,CAAC;IAAEC,KAAK,GAAG,CAAC,CAAC;IAAEC,UAAU,GAAG,CAAC;EAAE,CAAC,GAAGH,KAAK,IAAI,CAAC,CAAC;EACrE,OAAO;IACL,GAAGF,aAAa;IAChBG,YAAY,EAAEA,YAAY;IAC1BC,KAAK,EAAEA,KAAK;IACZC,UAAU,EAAEA,UAAU;IACtBC,UAAU,EAAE,QAAQ;IACpBC,cAAc,EAAE,aAAa;IAC7BC,kBAAkB,EAAE,iBAAiB;IACrCC,eAAe,EAAE,QAAQ;IACzBC,YAAY,EAAE,MAAM;IACpBC,cAAc,EAAE,MAAM;IACtBC,QAAQ,EAAE;MACR,GAAGZ,aAAa,CAACY,QAAQ;MACzBN,UAAU,EAAE;IACd,CAAC;IACDO,MAAM,EAAEd;EACV,CAAC;AACH,CAAC","ignoreList":[]}
@@ -32,6 +32,8 @@ export const _DEFAULT_THEME = {
32
32
  primaryColor: 'blue',
33
33
  secondaryColor: 'black',
34
34
  secondaryBgColor: 'white',
35
+ white: '#ffffff',
36
+ black: '#000000',
35
37
  light: {
36
38
  text: '#000',
37
39
  background: '#fdfdfd',