@recursica/adapter-mantine-v8 1.0.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 (362) hide show
  1. package/.storybook/commonArgTypes.ts +148 -0
  2. package/ARCHITECTURE.md +18 -0
  3. package/CHANGELOG.md +688 -0
  4. package/LICENSE +21 -0
  5. package/OVERSTYLING.md +56 -0
  6. package/README.md +70 -0
  7. package/SETUP.md +93 -0
  8. package/USAGE.md +57 -0
  9. package/dist/adapter-mantine-v8.cjs +12 -0
  10. package/dist/adapter-mantine-v8.cjs.map +1 -0
  11. package/dist/adapter-mantine-v8.css +1 -0
  12. package/dist/adapter-mantine-v8.js +5759 -0
  13. package/dist/adapter-mantine-v8.js.map +1 -0
  14. package/dist/index.d.ts +2095 -0
  15. package/dist/test.html +1 -0
  16. package/dist/vite.svg +1 -0
  17. package/docs/PHILOSOPHY.md +39 -0
  18. package/llms.txt +74 -0
  19. package/package.json +131 -0
  20. package/recursica_brand.json +2677 -0
  21. package/recursica_tokens.json +799 -0
  22. package/recursica_ui-kit.json +14981 -0
  23. package/recursica_variables_scoped.css +30489 -0
  24. package/src/GlobalExemptions.modules.css +7 -0
  25. package/src/Introduction.stories.tsx +154 -0
  26. package/src/OverStyling.tsx +79 -0
  27. package/src/Version.tsx +44 -0
  28. package/src/components/Accordion/ACCORDION_IMPLEMENTATION_NOTES.md +72 -0
  29. package/src/components/Accordion/Accordion.module.css +367 -0
  30. package/src/components/Accordion/Accordion.stories.tsx +189 -0
  31. package/src/components/Accordion/Accordion.test.tsx +1 -0
  32. package/src/components/Accordion/Accordion.tsx +220 -0
  33. package/src/components/Accordion/USAGE.md +51 -0
  34. package/src/components/Accordion/index.ts +1 -0
  35. package/src/components/AssistiveElement/ASSISTIVEELEMENT_IMPLEMENTATION_NOTES.md +45 -0
  36. package/src/components/AssistiveElement/AssistiveElement.module.css +111 -0
  37. package/src/components/AssistiveElement/AssistiveElement.stories.tsx +68 -0
  38. package/src/components/AssistiveElement/AssistiveElement.test.tsx +1 -0
  39. package/src/components/AssistiveElement/AssistiveElement.tsx +93 -0
  40. package/src/components/AssistiveElement/USAGE.md +36 -0
  41. package/src/components/AutoComplete/AUTOCOMPLETE_IMPLEMENTATION_NOTES.md +42 -0
  42. package/src/components/AutoComplete/AutoComplete.module.css +430 -0
  43. package/src/components/AutoComplete/AutoComplete.stories.tsx +336 -0
  44. package/src/components/AutoComplete/AutoComplete.test.tsx +1 -0
  45. package/src/components/AutoComplete/AutoComplete.tsx +179 -0
  46. package/src/components/AutoComplete/USAGE.md +80 -0
  47. package/src/components/Avatar/AVATAR_IMPLEMENTATION_NOTES.md +34 -0
  48. package/src/components/Avatar/Avatar.module.css +336 -0
  49. package/src/components/Avatar/Avatar.stories.tsx +92 -0
  50. package/src/components/Avatar/Avatar.test.tsx +1 -0
  51. package/src/components/Avatar/Avatar.tsx +108 -0
  52. package/src/components/Avatar/USAGE.md +38 -0
  53. package/src/components/Avatar/index.ts +1 -0
  54. package/src/components/Badge/BADGE_IMPLEMENTATION_NOTES.md +18 -0
  55. package/src/components/Badge/Badge.module.css +127 -0
  56. package/src/components/Badge/Badge.stories.tsx +78 -0
  57. package/src/components/Badge/Badge.test.tsx +1 -0
  58. package/src/components/Badge/Badge.tsx +64 -0
  59. package/src/components/Badge/USAGE.md +56 -0
  60. package/src/components/Breadcrumb/BREADCRUMB_IMPLEMENTATION_NOTES.md +47 -0
  61. package/src/components/Breadcrumb/Breadcrumb.module.css +48 -0
  62. package/src/components/Breadcrumb/Breadcrumb.stories.tsx +114 -0
  63. package/src/components/Breadcrumb/Breadcrumb.test.tsx +1 -0
  64. package/src/components/Breadcrumb/Breadcrumb.tsx +85 -0
  65. package/src/components/Breadcrumb/USAGE.md +55 -0
  66. package/src/components/Breadcrumb/markCurrentPageItem.test.ts +49 -0
  67. package/src/components/Button/Button.module.css +446 -0
  68. package/src/components/Button/Button.stories.tsx +196 -0
  69. package/src/components/Button/Button.styleIsolation.dom.test.tsx +98 -0
  70. package/src/components/Button/Button.tsx +184 -0
  71. package/src/components/Button/IMPLEMENTATION_NOTES.md +109 -0
  72. package/src/components/Button/USAGE.md +80 -0
  73. package/src/components/Button/index.ts +1 -0
  74. package/src/components/Card/CARD_IMPLEMENTATION_NOTES.md +17 -0
  75. package/src/components/Card/Card.module.css +119 -0
  76. package/src/components/Card/Card.stories.tsx +131 -0
  77. package/src/components/Card/Card.test.tsx +1 -0
  78. package/src/components/Card/Card.tsx +248 -0
  79. package/src/components/Card/USAGE.md +63 -0
  80. package/src/components/Checkbox/CHECKBOX_IMPLEMENTATION_NOTES.md +25 -0
  81. package/src/components/Checkbox/Checkbox.module.css +267 -0
  82. package/src/components/Checkbox/Checkbox.stories.tsx +97 -0
  83. package/src/components/Checkbox/Checkbox.test.tsx +1 -0
  84. package/src/components/Checkbox/Checkbox.tsx +151 -0
  85. package/src/components/Checkbox/CheckboxGroup.stories.tsx +139 -0
  86. package/src/components/Checkbox/CheckboxGroup.tsx +147 -0
  87. package/src/components/Checkbox/USAGE.md +48 -0
  88. package/src/components/Chip/CHIP_IMPLEMENTATION_NOTES.md +110 -0
  89. package/src/components/Chip/Chip.module.css +288 -0
  90. package/src/components/Chip/Chip.stories.tsx +128 -0
  91. package/src/components/Chip/Chip.test.tsx +1 -0
  92. package/src/components/Chip/Chip.tsx +157 -0
  93. package/src/components/Chip/USAGE.md +55 -0
  94. package/src/components/Container/CONTAINER_IMPLEMENTATION_NOTES.md +4 -0
  95. package/src/components/Container/Container.module.css +7 -0
  96. package/src/components/Container/Container.stories.tsx +118 -0
  97. package/src/components/Container/Container.test.tsx +1 -0
  98. package/src/components/Container/Container.tsx +69 -0
  99. package/src/components/Container/USAGE.md +47 -0
  100. package/src/components/DatePicker/DATEPICKER_IMPLEMENTATION_NOTES.md +31 -0
  101. package/src/components/DatePicker/DatePicker.icons.tsx +27 -0
  102. package/src/components/DatePicker/DatePicker.module.css +566 -0
  103. package/src/components/DatePicker/DatePicker.stories.tsx +158 -0
  104. package/src/components/DatePicker/DatePicker.test.tsx +1 -0
  105. package/src/components/DatePicker/DatePicker.tsx +218 -0
  106. package/src/components/DatePicker/USAGE.md +49 -0
  107. package/src/components/Dropdown/BareDropdown.tsx +97 -0
  108. package/src/components/Dropdown/DROPDOWN_IMPLEMENTATION_NOTES.md +12 -0
  109. package/src/components/Dropdown/Dropdown.module.css +477 -0
  110. package/src/components/Dropdown/Dropdown.stories.tsx +252 -0
  111. package/src/components/Dropdown/Dropdown.test.tsx +1 -0
  112. package/src/components/Dropdown/Dropdown.tsx +213 -0
  113. package/src/components/Dropdown/USAGE.md +69 -0
  114. package/src/components/FileInput/FILEINPUT_IMPLEMENTATION_NOTES.md +153 -0
  115. package/src/components/FileInput/FileInput.module.css +280 -0
  116. package/src/components/FileInput/FileInput.stories.tsx +313 -0
  117. package/src/components/FileInput/FileInput.test.tsx +1 -0
  118. package/src/components/FileInput/FileInput.tsx +417 -0
  119. package/src/components/FileInput/USAGE.md +145 -0
  120. package/src/components/FileUpload/FILEUPLOAD_IMPLEMENTATION_NOTES.md +244 -0
  121. package/src/components/FileUpload/FileUpload.module.css +205 -0
  122. package/src/components/FileUpload/FileUpload.stories.tsx +362 -0
  123. package/src/components/FileUpload/FileUpload.test.tsx +1 -0
  124. package/src/components/FileUpload/FileUpload.tsx +354 -0
  125. package/src/components/FileUpload/USAGE.md +199 -0
  126. package/src/components/Flex/FLEX_IMPLEMENTATION_NOTES.md +4 -0
  127. package/src/components/Flex/Flex.module.css +7 -0
  128. package/src/components/Flex/Flex.stories.tsx +128 -0
  129. package/src/components/Flex/Flex.test.tsx +1 -0
  130. package/src/components/Flex/Flex.tsx +75 -0
  131. package/src/components/Flex/USAGE.md +48 -0
  132. package/src/components/FormControlLayout/FormControlLayout.module.css +90 -0
  133. package/src/components/FormControlLayout/FormControlLayout.stories.tsx +118 -0
  134. package/src/components/FormControlLayout/FormControlLayout.test.tsx +1 -0
  135. package/src/components/FormControlLayout/FormControlLayout.tsx +74 -0
  136. package/src/components/FormControlLayout/USAGE.md +40 -0
  137. package/src/components/FormControlWrapper/FORMCONTROLWRAPPER_IMPLEMENTATION_NOTES.md +32 -0
  138. package/src/components/FormControlWrapper/FormControlWrapper.module.css +75 -0
  139. package/src/components/FormControlWrapper/FormControlWrapper.stories.tsx +129 -0
  140. package/src/components/FormControlWrapper/FormControlWrapper.test.tsx +1 -0
  141. package/src/components/FormControlWrapper/FormControlWrapper.tsx +151 -0
  142. package/src/components/FormControlWrapper/USAGE.md +47 -0
  143. package/src/components/Grid/GRID_IMPLEMENTATION_NOTES.md +18 -0
  144. package/src/components/Grid/Grid.module.css +11 -0
  145. package/src/components/Grid/Grid.stories.tsx +206 -0
  146. package/src/components/Grid/Grid.test.tsx +1 -0
  147. package/src/components/Grid/Grid.tsx +140 -0
  148. package/src/components/Grid/USAGE.md +47 -0
  149. package/src/components/Group/GROUP_IMPLEMENTATION_NOTES.md +4 -0
  150. package/src/components/Group/Group.module.css +7 -0
  151. package/src/components/Group/Group.stories.tsx +120 -0
  152. package/src/components/Group/Group.test.tsx +1 -0
  153. package/src/components/Group/Group.tsx +60 -0
  154. package/src/components/Group/USAGE.md +48 -0
  155. package/src/components/Heading/HEADING_IMPLEMENTATION_NOTES.md +18 -0
  156. package/src/components/Heading/Heading.module.css +13 -0
  157. package/src/components/Heading/Heading.stories.tsx +50 -0
  158. package/src/components/Heading/Heading.test.tsx +1 -0
  159. package/src/components/Heading/Heading.tsx +52 -0
  160. package/src/components/Heading/USAGE.md +36 -0
  161. package/src/components/HoverCard/HOVERCARD_IMPLEMENTATION_NOTES.md +77 -0
  162. package/src/components/HoverCard/HoverCard.module.css +90 -0
  163. package/src/components/HoverCard/HoverCard.stories.tsx +172 -0
  164. package/src/components/HoverCard/HoverCard.test.tsx +1 -0
  165. package/src/components/HoverCard/HoverCard.tsx +133 -0
  166. package/src/components/HoverCard/USAGE.md +52 -0
  167. package/src/components/Label/LABEL_IMPLEMENTATION_NOTES.md +48 -0
  168. package/src/components/Label/Label.module.css +141 -0
  169. package/src/components/Label/Label.stories.tsx +131 -0
  170. package/src/components/Label/Label.test.tsx +1 -0
  171. package/src/components/Label/Label.tsx +113 -0
  172. package/src/components/Label/USAGE.md +47 -0
  173. package/src/components/Label/index.ts +1 -0
  174. package/src/components/Layer/USAGE.md +54 -0
  175. package/src/components/Link/IMPLEMENTATION_NOTES.md +19 -0
  176. package/src/components/Link/Link.module.css +110 -0
  177. package/src/components/Link/Link.stories.tsx +58 -0
  178. package/src/components/Link/Link.test.tsx +1 -0
  179. package/src/components/Link/Link.tsx +67 -0
  180. package/src/components/Link/USAGE.md +56 -0
  181. package/src/components/Link/index.ts +1 -0
  182. package/src/components/Loader/LOADER_IMPLEMENTATION_NOTES.md +24 -0
  183. package/src/components/Loader/Loader.animate.dom.test.tsx +82 -0
  184. package/src/components/Loader/Loader.module.css +63 -0
  185. package/src/components/Loader/Loader.stories.tsx +123 -0
  186. package/src/components/Loader/Loader.test.tsx +1 -0
  187. package/src/components/Loader/Loader.tsx +69 -0
  188. package/src/components/Loader/USAGE.md +44 -0
  189. package/src/components/Menu/MENU_IMPLEMENTATION_NOTES.md +88 -0
  190. package/src/components/Menu/Menu.module.css +280 -0
  191. package/src/components/Menu/Menu.stories.tsx +371 -0
  192. package/src/components/Menu/Menu.test.tsx +1 -0
  193. package/src/components/Menu/Menu.tsx +373 -0
  194. package/src/components/Menu/USAGE.md +55 -0
  195. package/src/components/Modal/MODAL_IMPLEMENTATION_NOTES.md +32 -0
  196. package/src/components/Modal/Modal.module.css +302 -0
  197. package/src/components/Modal/Modal.stories.tsx +105 -0
  198. package/src/components/Modal/Modal.test.tsx +1 -0
  199. package/src/components/Modal/Modal.tsx +368 -0
  200. package/src/components/Modal/USAGE.md +58 -0
  201. package/src/components/Modal/index.ts +1 -0
  202. package/src/components/NumberInput/NUMBER_INPUT_IMPLEMENTATION_NOTES.md +24 -0
  203. package/src/components/NumberInput/NumberInput.module.css +302 -0
  204. package/src/components/NumberInput/NumberInput.stories.tsx +96 -0
  205. package/src/components/NumberInput/NumberInput.test.tsx +1 -0
  206. package/src/components/NumberInput/NumberInput.tsx +157 -0
  207. package/src/components/NumberInput/USAGE.md +52 -0
  208. package/src/components/Pagination/IMPLEMENTATION_NOTES.md +16 -0
  209. package/src/components/Pagination/Pagination.icons.tsx +66 -0
  210. package/src/components/Pagination/Pagination.module.css +188 -0
  211. package/src/components/Pagination/Pagination.stories.tsx +48 -0
  212. package/src/components/Pagination/Pagination.test.tsx +1 -0
  213. package/src/components/Pagination/Pagination.tsx +265 -0
  214. package/src/components/Pagination/USAGE.md +36 -0
  215. package/src/components/Pagination/index.ts +5 -0
  216. package/src/components/Panel/PANEL_IMPLEMENTATION_NOTES.md +116 -0
  217. package/src/components/Panel/Panel.module.css +209 -0
  218. package/src/components/Panel/Panel.stories.tsx +227 -0
  219. package/src/components/Panel/Panel.test.tsx +1 -0
  220. package/src/components/Panel/Panel.tsx +269 -0
  221. package/src/components/Panel/USAGE.md +56 -0
  222. package/src/components/Popover/IMPLEMENTATION_NOTES.md +77 -0
  223. package/src/components/Popover/Popover.module.css +86 -0
  224. package/src/components/Popover/Popover.stories.tsx +133 -0
  225. package/src/components/Popover/Popover.test.tsx +1 -0
  226. package/src/components/Popover/Popover.tsx +142 -0
  227. package/src/components/Popover/USAGE.md +61 -0
  228. package/src/components/Popover/index.ts +1 -0
  229. package/src/components/Radio/Radio.module.css +231 -0
  230. package/src/components/Radio/Radio.stories.tsx +93 -0
  231. package/src/components/Radio/Radio.test.tsx +1 -0
  232. package/src/components/Radio/Radio.tsx +168 -0
  233. package/src/components/Radio/RadioGroup.stories.tsx +117 -0
  234. package/src/components/Radio/RadioGroup.tsx +124 -0
  235. package/src/components/Radio/USAGE.md +36 -0
  236. package/src/components/ReadOnlyField/READ_ONLY_FIELD_IMPLEMENTATION_NOTES.md +15 -0
  237. package/src/components/ReadOnlyField/ReadOnlyBooleanField.tsx +21 -0
  238. package/src/components/ReadOnlyField/ReadOnlyField.module.css +54 -0
  239. package/src/components/ReadOnlyField/ReadOnlyField.stories.tsx +163 -0
  240. package/src/components/ReadOnlyField/ReadOnlyField.test.tsx +1 -0
  241. package/src/components/ReadOnlyField/ReadOnlyField.tsx +114 -0
  242. package/src/components/ReadOnlyField/ReadOnlySwitchField.tsx +21 -0
  243. package/src/components/ReadOnlyField/ReadOnlyTextField.tsx +48 -0
  244. package/src/components/ReadOnlyField/USAGE.md +44 -0
  245. package/src/components/ReadOnlyField/WithReadOnlyWrapper.tsx +93 -0
  246. package/src/components/ReadOnlyField/index.ts +5 -0
  247. package/src/components/RecursicaThemeProvider/USAGE.md +60 -0
  248. package/src/components/SegmentedControl/IMPLEMENTATION_NOTES.md +25 -0
  249. package/src/components/SegmentedControl/SegmentedControl.module.css +185 -0
  250. package/src/components/SegmentedControl/SegmentedControl.stories.tsx +106 -0
  251. package/src/components/SegmentedControl/SegmentedControl.test.tsx +1 -0
  252. package/src/components/SegmentedControl/SegmentedControl.tsx +110 -0
  253. package/src/components/SegmentedControl/USAGE.md +55 -0
  254. package/src/components/Slider/IMPLEMENTATION_NOTES.md +92 -0
  255. package/src/components/Slider/Slider.module.css +588 -0
  256. package/src/components/Slider/Slider.stories.tsx +282 -0
  257. package/src/components/Slider/Slider.test.tsx +1 -0
  258. package/src/components/Slider/Slider.tsx +391 -0
  259. package/src/components/Slider/USAGE.md +56 -0
  260. package/src/components/Stack/STACK_IMPLEMENTATION_NOTES.md +4 -0
  261. package/src/components/Stack/Stack.module.css +7 -0
  262. package/src/components/Stack/Stack.stories.tsx +108 -0
  263. package/src/components/Stack/Stack.test.tsx +1 -0
  264. package/src/components/Stack/Stack.tsx +62 -0
  265. package/src/components/Stack/USAGE.md +48 -0
  266. package/src/components/Stepper/IMPLEMENTATION_NOTES.md +28 -0
  267. package/src/components/Stepper/Stepper.module.css +404 -0
  268. package/src/components/Stepper/Stepper.stories.tsx +148 -0
  269. package/src/components/Stepper/Stepper.test.tsx +1 -0
  270. package/src/components/Stepper/Stepper.tsx +93 -0
  271. package/src/components/Stepper/USAGE.md +41 -0
  272. package/src/components/Switch/SWITCH_IMPLEMENTATION_NOTES.md +64 -0
  273. package/src/components/Switch/Switch.module.css +279 -0
  274. package/src/components/Switch/Switch.stories.tsx +114 -0
  275. package/src/components/Switch/Switch.test.tsx +1 -0
  276. package/src/components/Switch/Switch.tsx +177 -0
  277. package/src/components/Switch/SwitchGroup.stories.tsx +132 -0
  278. package/src/components/Switch/SwitchGroup.tsx +127 -0
  279. package/src/components/Switch/USAGE.md +42 -0
  280. package/src/components/Table/TABLE_IMPLEMENTATION_NOTES.md +78 -0
  281. package/src/components/Table/Table.icons.tsx +40 -0
  282. package/src/components/Table/Table.module.css +444 -0
  283. package/src/components/Table/Table.stories.tsx +140 -0
  284. package/src/components/Table/Table.test.tsx +1 -0
  285. package/src/components/Table/Table.tsx +243 -0
  286. package/src/components/Table/USAGE.md +78 -0
  287. package/src/components/Tabs/IMPLEMENTATION_NOTES.md +27 -0
  288. package/src/components/Tabs/Tabs.module.css +591 -0
  289. package/src/components/Tabs/Tabs.stories.tsx +154 -0
  290. package/src/components/Tabs/Tabs.test.tsx +1 -0
  291. package/src/components/Tabs/Tabs.tsx +114 -0
  292. package/src/components/Tabs/USAGE.md +45 -0
  293. package/src/components/Text/TEXT_IMPLEMENTATION_NOTES.md +12 -0
  294. package/src/components/Text/Text.module.css +13 -0
  295. package/src/components/Text/Text.stories.tsx +75 -0
  296. package/src/components/Text/Text.test.tsx +1 -0
  297. package/src/components/Text/Text.tsx +53 -0
  298. package/src/components/Text/USAGE.md +40 -0
  299. package/src/components/TextArea/TEXTAREA_IMPLEMENTATION_NOTES.md +7 -0
  300. package/src/components/TextArea/TextArea.module.css +183 -0
  301. package/src/components/TextArea/TextArea.stories.tsx +94 -0
  302. package/src/components/TextArea/TextArea.test.tsx +1 -0
  303. package/src/components/TextArea/TextArea.tsx +137 -0
  304. package/src/components/TextArea/USAGE.md +48 -0
  305. package/src/components/TextField/TEXTFIELD_IMPLEMENTATION_NOTES.md +19 -0
  306. package/src/components/TextField/TextField.module.css +264 -0
  307. package/src/components/TextField/TextField.stories.tsx +162 -0
  308. package/src/components/TextField/TextField.test.tsx +1 -0
  309. package/src/components/TextField/TextField.tsx +139 -0
  310. package/src/components/TextField/USAGE.md +44 -0
  311. package/src/components/TimePicker/TIMEPICKER_IMPLEMENTATION_NOTES.md +119 -0
  312. package/src/components/TimePicker/TimePicker.module.css +291 -0
  313. package/src/components/TimePicker/TimePicker.stories.tsx +141 -0
  314. package/src/components/TimePicker/TimePicker.test.tsx +1 -0
  315. package/src/components/TimePicker/TimePicker.tsx +304 -0
  316. package/src/components/TimePicker/USAGE.md +57 -0
  317. package/src/components/Timeline/TIMELINE_IMPLEMENTATION_NOTES.md +13 -0
  318. package/src/components/Timeline/Timeline.module.css +373 -0
  319. package/src/components/Timeline/Timeline.stories.tsx +128 -0
  320. package/src/components/Timeline/Timeline.test.tsx +1 -0
  321. package/src/components/Timeline/Timeline.tsx +73 -0
  322. package/src/components/Timeline/TimelineItem.tsx +79 -0
  323. package/src/components/Timeline/USAGE.md +49 -0
  324. package/src/components/Toast/TOAST_IMPLEMENTATION_NOTES.md +39 -0
  325. package/src/components/Toast/Toast.module.css +184 -0
  326. package/src/components/Toast/Toast.stories.tsx +67 -0
  327. package/src/components/Toast/Toast.test.tsx +1 -0
  328. package/src/components/Toast/Toast.tsx +82 -0
  329. package/src/components/Toast/USAGE.md +50 -0
  330. package/src/components/Toast/index.ts +1 -0
  331. package/src/components/Tooltip/TOOLTIP_IMPLEMENTATION_NOTES.md +85 -0
  332. package/src/components/Tooltip/Tooltip.module.css +91 -0
  333. package/src/components/Tooltip/Tooltip.stories.tsx +165 -0
  334. package/src/components/Tooltip/Tooltip.test.tsx +1 -0
  335. package/src/components/Tooltip/Tooltip.tsx +117 -0
  336. package/src/components/Tooltip/USAGE.md +80 -0
  337. package/src/components/TransferList/TRANSFERLIST_IMPLEMENTATION_NOTES.md +111 -0
  338. package/src/components/TransferList/TransferList.module.css +182 -0
  339. package/src/components/TransferList/TransferList.stories.tsx +121 -0
  340. package/src/components/TransferList/TransferList.test.tsx +1 -0
  341. package/src/components/TransferList/TransferList.tsx +419 -0
  342. package/src/components/TransferList/USAGE.md +77 -0
  343. package/src/components/Tree/IMPLEMENTATION_NOTES.md +48 -0
  344. package/src/components/Tree/Tree.module.css +232 -0
  345. package/src/components/Tree/Tree.stories.tsx +104 -0
  346. package/src/components/Tree/Tree.test.tsx +1 -0
  347. package/src/components/Tree/Tree.tsx +220 -0
  348. package/src/components/Tree/USAGE.md +96 -0
  349. package/src/components/Tree/index.ts +1 -0
  350. package/src/components/index.ts +52 -0
  351. package/src/env.d.ts +7 -0
  352. package/src/index.ts +179 -0
  353. package/src/types/index.ts +9 -0
  354. package/src/types/mantine.d.ts +7 -0
  355. package/src/types/scss-modules.d.ts +9 -0
  356. package/src/utils/ColorSchemeWrapper.tsx +27 -0
  357. package/src/utils/RequireAccessibleLabel.ts +1 -0
  358. package/src/utils/copyToClipboard.ts +36 -0
  359. package/src/utils/filterStylingProps.test.ts +85 -0
  360. package/src/utils/filterStylingProps.ts +150 -0
  361. package/src/utils/index.ts +1 -0
  362. package/src/utils/renderRichOption.tsx +65 -0
@@ -0,0 +1,2095 @@
1
+ import { AccordionControlProps } from '@mantine/core';
2
+ import { AccordionItemProps } from '@mantine/core';
3
+ import { AccordionPanelProps } from '@mantine/core';
4
+ import { AccordionProps as AccordionProps_2 } from '@mantine/core';
5
+ import { AnchorProps } from '@mantine/core';
6
+ import { AutocompleteProps } from '@mantine/core';
7
+ import { AvatarProps as AvatarProps_2 } from '@mantine/core';
8
+ import { BadgeProps as BadgeProps_2 } from '@mantine/core';
9
+ import { BreadcrumbsProps } from '@mantine/core';
10
+ import { ButtonProps as ButtonProps_2 } from '@mantine/core';
11
+ import { CardProps as CardProps_2 } from '@mantine/core';
12
+ import { CardSectionProps as CardSectionProps_2 } from '@mantine/core';
13
+ import { CheckboxGroupProps as CheckboxGroupProps_2 } from '@mantine/core';
14
+ import { CheckboxProps } from '@mantine/core';
15
+ import { ChipProps as ChipProps_2 } from '@mantine/core';
16
+ import { ContainerProps as ContainerProps_2 } from '@mantine/core';
17
+ import { DatePickerInputProps } from '@mantine/dates';
18
+ import { default as default_2 } from 'react';
19
+ import { Drawer } from '@mantine/core';
20
+ import { DrawerBodyProps } from '@mantine/core';
21
+ import { DrawerCloseButtonProps } from '@mantine/core';
22
+ import { DrawerContentProps } from '@mantine/core';
23
+ import { DrawerHeaderProps } from '@mantine/core';
24
+ import { DrawerOverlayProps } from '@mantine/core';
25
+ import { DrawerProps } from '@mantine/core';
26
+ import { DrawerRootProps } from '@mantine/core';
27
+ import { DrawerTitleProps } from '@mantine/core';
28
+ import { FlexProps as FlexProps_2 } from '@mantine/core';
29
+ import { ForwardRefExoticComponent } from 'react';
30
+ import { FunctionComponent } from 'react';
31
+ import { GridColProps as GridColProps_2 } from '@mantine/core';
32
+ import { GridProps as GridProps_2 } from '@mantine/core';
33
+ import { GroupProps as GroupProps_2 } from '@mantine/core';
34
+ import { HoverCardDropdownProps as HoverCardDropdownProps_2 } from '@mantine/core';
35
+ import { HoverCardProps as HoverCardProps_2 } from '@mantine/core';
36
+ import { HoverCardTargetProps as HoverCardTargetProps_2 } from '@mantine/core';
37
+ import { InputLabelProps } from '@mantine/core';
38
+ import { InputProps } from '@mantine/core';
39
+ import { InputWrapperProps } from '@mantine/core';
40
+ import { JSX } from 'react';
41
+ import { LoaderProps as LoaderProps_2 } from '@mantine/core';
42
+ import { MenuDividerProps as MenuDividerProps_2 } from '@mantine/core';
43
+ import { MenuDropdownProps as MenuDropdownProps_2 } from '@mantine/core';
44
+ import { MenuItemProps as MenuItemProps_2 } from '@mantine/core';
45
+ import { MenuLabelProps as MenuLabelProps_2 } from '@mantine/core';
46
+ import { MenuProps as MenuProps_2 } from '@mantine/core';
47
+ import { MenuSubDropdownProps as MenuSubDropdownProps_2 } from '@mantine/core';
48
+ import { MenuSubProps as MenuSubProps_2 } from '@mantine/core';
49
+ import { MenuSubTargetProps as MenuSubTargetProps_2 } from '@mantine/core';
50
+ import { MenuTargetProps as MenuTargetProps_2 } from '@mantine/core';
51
+ import { ModalBodyProps as ModalBodyProps_2 } from '@mantine/core';
52
+ import { ModalCloseButtonProps as ModalCloseButtonProps_2 } from '@mantine/core';
53
+ import { ModalContentProps as ModalContentProps_2 } from '@mantine/core';
54
+ import { ModalHeaderProps as ModalHeaderProps_2 } from '@mantine/core';
55
+ import { ModalOverlayProps as ModalOverlayProps_2 } from '@mantine/core';
56
+ import { ModalProps as ModalProps_2 } from '@mantine/core';
57
+ import { ModalRootProps as ModalRootProps_2 } from '@mantine/core';
58
+ import { ModalTitleProps as ModalTitleProps_2 } from '@mantine/core';
59
+ import { NotificationProps } from '@mantine/core';
60
+ import { NumberInputProps } from '@mantine/core';
61
+ import { Pagination as Pagination_3 } from '@mantine/core';
62
+ import { PaginationControlProps as PaginationControlProps_2 } from '@mantine/core';
63
+ import { PaginationDotsProps as PaginationDotsProps_2 } from '@mantine/core';
64
+ import { PaginationEdgeProps as PaginationEdgeProps_2 } from '@mantine/core';
65
+ import { PaginationProps as PaginationProps_2 } from '@mantine/core';
66
+ import { PaginationRootProps as PaginationRootProps_2 } from '@mantine/core';
67
+ import { PolymorphicComponentProps } from '@mantine/core';
68
+ import { PopoverDropdownProps as PopoverDropdownProps_2 } from '@mantine/core';
69
+ import { PopoverProps as PopoverProps_2 } from '@mantine/core';
70
+ import { PopoverTargetProps as PopoverTargetProps_2 } from '@mantine/core';
71
+ import { RadioGroupProps as RadioGroupProps_2 } from '@mantine/core';
72
+ import { RadioProps } from '@mantine/core';
73
+ import { ReadOnlyControlProps } from '@recursica/adapter-common';
74
+ import { ReadOnlyFieldType } from '@recursica/adapter-common';
75
+ import { RecursicaAccordionControlProps } from '@recursica/adapter-common';
76
+ import { RecursicaAccordionItemProps } from '@recursica/adapter-common';
77
+ import { RecursicaAccordionPanelProps } from '@recursica/adapter-common';
78
+ import { RecursicaAccordionProps } from '@recursica/adapter-common';
79
+ import { RecursicaAssistiveElementProps } from '@recursica/adapter-common';
80
+ import { RecursicaAutocompleteProps } from '@recursica/adapter-common';
81
+ import { RecursicaAvatarProps } from '@recursica/adapter-common';
82
+ import { RecursicaBadgeProps } from '@recursica/adapter-common';
83
+ import { RecursicaBreadcrumbProps } from '@recursica/adapter-common';
84
+ import { RecursicaButtonProps } from '@recursica/adapter-common';
85
+ import { RecursicaCardProps } from '@recursica/adapter-common';
86
+ import { RecursicaCardSectionProps } from '@recursica/adapter-common';
87
+ import { RecursicaCheckboxGroupProps as RecursicaCheckboxGroupProps_2 } from '@recursica/adapter-common';
88
+ import { RecursicaCheckboxProps } from '@recursica/adapter-common';
89
+ import { RecursicaChipProps } from '@recursica/adapter-common';
90
+ import { RecursicaContainerProps } from '@recursica/adapter-common';
91
+ import { RecursicaDatePickerProps as RecursicaDatePickerProps_2 } from '@recursica/adapter-common';
92
+ import { RecursicaDropdownProps as RecursicaDropdownProps_2 } from '@recursica/adapter-common';
93
+ import { RecursicaFileInputProps as RecursicaFileInputProps_2 } from '@recursica/adapter-common';
94
+ import { RecursicaFileUploadItem } from '@recursica/adapter-common';
95
+ import { RecursicaFileUploadProps as RecursicaFileUploadProps_2 } from '@recursica/adapter-common';
96
+ import { RecursicaFormControlLayoutProps } from '@recursica/adapter-common';
97
+ import { RecursicaFormControlWrapperProps } from '@recursica/adapter-common';
98
+ import { RecursicaHeadingProps } from '@recursica/adapter-common';
99
+ import { RecursicaHoverCardProps } from '@recursica/adapter-common';
100
+ import { RecursicaLabelProps } from '@recursica/adapter-common';
101
+ import { RecursicaLinkProps } from '@recursica/adapter-common';
102
+ import { RecursicaLoaderProps } from '@recursica/adapter-common';
103
+ import { RecursicaMenuProps } from '@recursica/adapter-common';
104
+ import { RecursicaModalProps } from '@recursica/adapter-common';
105
+ import { RecursicaNumberInputProps as RecursicaNumberInputProps_2 } from '@recursica/adapter-common';
106
+ import { RecursicaOverStyled } from '@recursica/adapter-common';
107
+ import { RecursicaPaginationProps } from '@recursica/adapter-common';
108
+ import { RecursicaPanelProps as RecursicaPanelProps_2 } from '@recursica/adapter-common';
109
+ import { RecursicaPopoverProps } from '@recursica/adapter-common';
110
+ import { RecursicaRadioGroupProps as RecursicaRadioGroupProps_2 } from '@recursica/adapter-common';
111
+ import { RecursicaRadioProps } from '@recursica/adapter-common';
112
+ import { RecursicaReadOnlyFieldProps as RecursicaReadOnlyFieldProps_2 } from '@recursica/adapter-common';
113
+ import { RecursicaSegmentedControlProps } from '@recursica/adapter-common';
114
+ import { RecursicaSliderProps as RecursicaSliderProps_2 } from '@recursica/adapter-common';
115
+ import { RecursicaSpacing } from '@recursica/adapter-common';
116
+ import { RecursicaStepperProps } from '@recursica/adapter-common';
117
+ import { RecursicaSwitchGroupProps as RecursicaSwitchGroupProps_2 } from '@recursica/adapter-common';
118
+ import { RecursicaSwitchProps } from '@recursica/adapter-common';
119
+ import { RecursicaTableCellProps } from '@recursica/adapter-common';
120
+ import { RecursicaTableHeaderCellProps } from '@recursica/adapter-common';
121
+ import { RecursicaTableProps } from '@recursica/adapter-common';
122
+ import { RecursicaTableRowProps } from '@recursica/adapter-common';
123
+ import { RecursicaTabsProps } from '@recursica/adapter-common';
124
+ import { RecursicaTextAreaProps as RecursicaTextAreaProps_2 } from '@recursica/adapter-common';
125
+ import { RecursicaTextFieldProps as RecursicaTextFieldProps_2 } from '@recursica/adapter-common';
126
+ import { RecursicaTextProps } from '@recursica/adapter-common';
127
+ import { RecursicaTimelineItemProps } from '@recursica/adapter-common';
128
+ import { RecursicaTimelineProps } from '@recursica/adapter-common';
129
+ import { RecursicaTimePickerProps as RecursicaTimePickerProps_2 } from '@recursica/adapter-common';
130
+ import { RecursicaToastProps } from '@recursica/adapter-common';
131
+ import { RecursicaTooltipProps } from '@recursica/adapter-common';
132
+ import { RecursicaTransferListData } from '@recursica/adapter-common';
133
+ import { RecursicaTransferListItem } from '@recursica/adapter-common';
134
+ import { RecursicaTransferListProps as RecursicaTransferListProps_2 } from '@recursica/adapter-common';
135
+ import { RecursicaTreeProps } from '@recursica/adapter-common';
136
+ import { RefAttributes } from 'react';
137
+ import { RequireAccessibleLabel } from '@recursica/adapter-common';
138
+ import { SegmentedControlProps as SegmentedControlProps_2 } from '@mantine/core';
139
+ import { SelectProps } from '@mantine/core';
140
+ import { SliderProps } from '@mantine/core';
141
+ import { StackProps as StackProps_2 } from '@mantine/core';
142
+ import { Stepper as Stepper_3 } from '@mantine/core';
143
+ import { StepperProps } from '@mantine/core';
144
+ import { StepperStepProps as StepperStepProps_2 } from '@mantine/core';
145
+ import { SwitchGroupProps as SwitchGroupProps_2 } from '@mantine/core';
146
+ import { SwitchProps } from '@mantine/core';
147
+ import { TableCaptionProps as TableCaptionProps_2 } from '@mantine/core';
148
+ import { TableProps as TableProps_2 } from '@mantine/core';
149
+ import { TableScrollContainerProps as TableScrollContainerProps_2 } from '@mantine/core';
150
+ import { TableTbodyProps as TableTbodyProps_2 } from '@mantine/core';
151
+ import { TableTdProps as TableTdProps_2 } from '@mantine/core';
152
+ import { TableTfootProps as TableTfootProps_2 } from '@mantine/core';
153
+ import { TableTheadProps as TableTheadProps_2 } from '@mantine/core';
154
+ import { TableThProps as TableThProps_2 } from '@mantine/core';
155
+ import { TableTrProps as TableTrProps_2 } from '@mantine/core';
156
+ import { TabsListProps as TabsListProps_2 } from '@mantine/core';
157
+ import { TabsPanelProps as TabsPanelProps_2 } from '@mantine/core';
158
+ import { TabsProps } from '@mantine/core';
159
+ import { TabsTabProps as TabsTabProps_2 } from '@mantine/core';
160
+ import { TextareaProps } from '@mantine/core';
161
+ import { TextProps as TextProps_2 } from '@mantine/core';
162
+ import { TimelineItemProps as TimelineItemProps_2 } from '@mantine/core';
163
+ import { TimelineProps as TimelineProps_2 } from '@mantine/core';
164
+ import { TimePickerProps } from '@mantine/dates';
165
+ import { TitleProps } from '@mantine/core';
166
+ import { Tooltip as Tooltip_3 } from '@mantine/core';
167
+ import { TooltipFloatingProps as TooltipFloatingProps_2 } from '@mantine/core';
168
+ import { TooltipProps as TooltipProps_2 } from '@mantine/core';
169
+ import { WithRecursicaSpacing } from '@recursica/adapter-common';
170
+
171
+ export declare const Accordion: typeof rawComponents.Accordion;
172
+
173
+ declare const Accordion_2: AccordionComponent;
174
+
175
+ declare const AccordionBase: {
176
+ ({ variant, overStyled, ...rest }: AccordionProps): JSX.Element;
177
+ displayName: string;
178
+ };
179
+
180
+ declare type AccordionComponent = typeof AccordionBase & {
181
+ Item: typeof AccordionItem_2;
182
+ Control: typeof AccordionControl_2;
183
+ Panel: typeof AccordionPanel_2;
184
+ };
185
+
186
+ export declare const AccordionControl: typeof rawComponents.AccordionControl;
187
+
188
+ declare const AccordionControl_2: ForwardRefExoticComponent<AccordionControlWrapperProps & RefAttributes<HTMLButtonElement>>;
189
+
190
+ declare type AccordionControlWrapperProps = RecursicaOverStyled<Omit<AccordionControlProps, "icon"> & RecursicaAccordionControlProps>;
191
+
192
+ export declare const AccordionItem: typeof rawComponents.AccordionItem;
193
+
194
+ declare const AccordionItem_2: ForwardRefExoticComponent<AccordionItemWrapperProps & RefAttributes<HTMLDivElement>>;
195
+
196
+ declare type AccordionItemWrapperProps = RecursicaOverStyled<AccordionItemProps & RecursicaAccordionItemProps>;
197
+
198
+ export declare const AccordionPanel: typeof rawComponents.AccordionPanel;
199
+
200
+ declare const AccordionPanel_2: ForwardRefExoticComponent<AccordionPanelWrapperProps & RefAttributes<HTMLDivElement>>;
201
+
202
+ declare type AccordionPanelWrapperProps = RecursicaOverStyled<AccordionPanelProps & RecursicaAccordionPanelProps>;
203
+
204
+ declare type AccordionProps = RecursicaOverStyled<Omit<AccordionProps_2, "value" | "defaultValue" | "multiple" | "variant"> & RecursicaAccordionProps>;
205
+
206
+ export declare const AssistiveElement: typeof rawComponents.AssistiveElement;
207
+
208
+ declare const AssistiveElement_2: default_2.ForwardRefExoticComponent<AssistiveElementProps & default_2.RefAttributes<HTMLDivElement>>;
209
+
210
+ declare type AssistiveElementProps = RecursicaOverStyled<default_2.HTMLAttributes<HTMLDivElement> & RecursicaAssistiveElementProps>;
211
+
212
+ export declare const AutoComplete: typeof rawComponents.AutoComplete;
213
+
214
+ declare const AutoComplete_2: default_2.ForwardRefExoticComponent<AutoCompleteProps & default_2.RefAttributes<HTMLInputElement>>;
215
+
216
+ declare type AutoCompleteProps = RecursicaOverStyled<RecursicaAutoCompleteProps>;
217
+
218
+ export declare const Avatar: typeof rawComponents.Avatar;
219
+
220
+ /**
221
+ * Recursica Avatar component wrapping Mantine's Avatar.
222
+ *
223
+ * Supports polymorphism via the `component` prop or `renderRoot` for custom element rendering.
224
+ */
225
+ declare const Avatar_2: (<C = "div">(props: PolymorphicComponentProps<C, AvatarProps>) => React.ReactElement) & Omit<FunctionComponent<((AvatarProps & {
226
+ component?: any;
227
+ }) & Omit<Omit<any, "ref">, "className" | "classNames" | "style" | "styles" | "vars" | "p" | "px" | "py" | "pt" | "pb" | "pl" | "pr" | "bg" | "c" | "opacity" | "ff" | "fz" | "fw" | "lts" | "ta" | "lh" | "fs" | "tt" | "td" | "bd" | "w" | "miw" | "maw" | "h" | "mih" | "mah" | "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "top" | "left" | "bottom" | "right" | "variant" | "children" | "__vars" | "__size" | "hiddenFrom" | "visibleFrom" | "lightHidden" | "darkHidden" | "mod" | "ms" | "me" | "ps" | "pe" | "bdrs" | "bgsz" | "bgp" | "bgr" | "bga" | "pos" | "inset" | "display" | "flex" | "unstyled" | "attributes" | "spacing" | "overStyled" | "icon" | "name" | "size" | "component" | "alt" | "src" | "gradient" | "imageProps" | "autoContrast" | "allowedInitialsColors"> & {
228
+ ref?: any;
229
+ renderRoot?: (props: any) => any;
230
+ }) | (AvatarProps & {
231
+ component: React.ElementType;
232
+ renderRoot?: (props: Record<string, any>) => any;
233
+ })>, never> & Record<string, never>;
234
+
235
+ declare type AvatarProps = RecursicaOverStyled<Omit<AvatarProps_2, "variant" | "size" | "color" | "radius"> & RecursicaAvatarProps>;
236
+
237
+ export declare const Badge: typeof rawComponents.Badge;
238
+
239
+ /**
240
+ * Recursica Badge component wrapping Mantine's Badge.
241
+ *
242
+ * Supports polymorphism via the `component` prop or `renderRoot` for custom element rendering.
243
+ */
244
+ declare const Badge_2: (<C = "div">(props: PolymorphicComponentProps<C, BadgeProps>) => React.ReactElement) & Omit<FunctionComponent<((BadgeProps & {
245
+ component?: any;
246
+ }) & Omit<Omit<any, "ref">, "className" | "classNames" | "style" | "styles" | "vars" | "p" | "px" | "py" | "pt" | "pb" | "pl" | "pr" | "bg" | "c" | "opacity" | "ff" | "fz" | "fw" | "lts" | "ta" | "lh" | "fs" | "tt" | "td" | "bd" | "w" | "miw" | "maw" | "h" | "mih" | "mah" | "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "top" | "left" | "bottom" | "right" | "variant" | "circle" | "children" | "__vars" | "__size" | "hiddenFrom" | "visibleFrom" | "lightHidden" | "darkHidden" | "mod" | "ms" | "me" | "ps" | "pe" | "bdrs" | "bgsz" | "bgp" | "bgr" | "bga" | "pos" | "inset" | "display" | "flex" | "unstyled" | "attributes" | "spacing" | "overStyled" | "component" | "leftSection" | "rightSection" | "gradient" | "autoContrast" | "fullWidth"> & {
247
+ ref?: any;
248
+ renderRoot?: (props: any) => any;
249
+ }) | (BadgeProps & {
250
+ component: React.ElementType;
251
+ renderRoot?: (props: Record<string, any>) => any;
252
+ })>, never> & Record<string, never>;
253
+
254
+ declare type BadgeProps = RecursicaOverStyled<Omit<BadgeProps_2, "variant" | "size" | "color" | "radius"> & RecursicaBadgeProps>;
255
+
256
+ export declare const Breadcrumb: typeof rawComponents.Breadcrumb;
257
+
258
+ /**
259
+ * The last child should always be plain, non-interactive text (e.g. a `<span>`) — it represents
260
+ * the current page and shouldn't be a link. Breadcrumb tries to correct for a Link/anchor passed
261
+ * there anyway via `markCurrentPageItem` (aria-current, stripped href/onClick, CSS reset in
262
+ * Breadcrumb.module.css), but that's a best-effort safety net, not a guarantee — it can't stop a
263
+ * custom Link component (e.g. a router Link) that navigates from its own internal handler. See
264
+ * BREADCRUMB_IMPLEMENTATION_NOTES.md.
265
+ */
266
+ declare const Breadcrumb_2: ForwardRefExoticComponent<BreadcrumbProps & RefAttributes<HTMLDivElement>>;
267
+
268
+ declare type BreadcrumbProps = RecursicaOverStyled<Omit<BreadcrumbsProps, "variant" | "size"> & RecursicaBreadcrumbProps>;
269
+
270
+ export declare const Button: typeof rawComponents.Button;
271
+
272
+ /**
273
+ * Recursica Button component wrapping Mantine's Button.
274
+ *
275
+ * Supports polymorphism via the `component` prop or `renderRoot` for custom element rendering.
276
+ * This is particularly useful when you need a button that behaves as a hyperlink (rendering an `<a>` tag)
277
+ * or integrates with a routing library (e.g., `react-router-dom` or Next.js), while preserving full visual styling.
278
+ *
279
+ * @example
280
+ * ```tsx
281
+ * // Renders as an <a> tag natively
282
+ * <Button component="a" href="/dashboard" target="_blank">Navigate</Button>
283
+ *
284
+ * // Renders using a custom router link
285
+ * <Button renderRoot={(props) => <Link to="/home" {...props} />}>Home</Button>
286
+ * ```
287
+ */
288
+ declare const Button_2: (<C = "button">(props: PolymorphicComponentProps<C, ButtonProps>) => default_2.ReactElement) & Omit<default_2.FunctionComponent<((ButtonProps & {
289
+ component?: any;
290
+ }) & Omit<Omit<any, "ref">, "className" | "classNames" | "style" | "styles" | "vars" | "p" | "px" | "py" | "pt" | "pb" | "pl" | "pr" | "bg" | "c" | "opacity" | "ff" | "fz" | "fw" | "lts" | "ta" | "lh" | "fs" | "tt" | "td" | "bd" | "w" | "miw" | "maw" | "h" | "mih" | "mah" | "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "top" | "left" | "bottom" | "right" | "variant" | "color" | "children" | "radius" | "__vars" | "__size" | "hiddenFrom" | "visibleFrom" | "lightHidden" | "darkHidden" | "mod" | "ms" | "me" | "ps" | "pe" | "bdrs" | "bgsz" | "bgp" | "bgr" | "bga" | "pos" | "inset" | "display" | "flex" | "unstyled" | "attributes" | "spacing" | "overStyled" | "disabled" | "icon" | "justify" | "data-disabled" | "size" | "component" | "rightSection" | "gradient" | "autoContrast" | "loading" | "loaderProps" | "loaderVariant" | "loaderSize" | "useRecursicaLoader"> & {
291
+ ref?: any;
292
+ renderRoot?: (props: any) => any;
293
+ }) | (ButtonProps & {
294
+ component: default_2.ElementType;
295
+ renderRoot?: (props: Record<string, any>) => any;
296
+ })>, never> & Record<string, never>;
297
+
298
+ declare type ButtonProps = RecursicaOverStyled<Omit<ButtonProps_2, "variant" | "size" | "leftSection" | "fullWidth"> & RecursicaButtonProps>;
299
+
300
+ export declare const Card: typeof rawComponents.Card;
301
+
302
+ declare const Card_2: typeof PolymorphicCard & {
303
+ Section: typeof CardSection;
304
+ Header: typeof CardHeader;
305
+ Footer: typeof CardFooter;
306
+ Content: typeof CardContent;
307
+ };
308
+
309
+ /**
310
+ * Internal container that safely binds typography and structural flex gaps driven by the active UI kit tokens natively, preserving correct padding blocks compared to rigid `Card.Section` edges.
311
+ */
312
+ declare const CardContent: ForwardRefExoticComponent<CardContentProps & RefAttributes<HTMLDivElement>>;
313
+
314
+ declare type CardContentProps = RecursicaOverStyled<React.HTMLAttributes<HTMLDivElement>>;
315
+
316
+ /**
317
+ * Counterpart to `Card.Header`, applying specific footer elevation margins, sizes, and padding natively.
318
+ */
319
+ declare const CardFooter: ForwardRefExoticComponent<CardFooterProps & RefAttributes<HTMLDivElement>>;
320
+
321
+ declare type CardFooterProps = RecursicaOverStyled<RecursicaCardSectionProps>;
322
+
323
+ declare const CardHeader: ForwardRefExoticComponent<CardHeaderProps & RefAttributes<HTMLDivElement>>;
324
+
325
+ declare type CardHeaderProps = RecursicaOverStyled<RecursicaCardSectionProps>;
326
+
327
+ declare type CardProps = RecursicaOverStyled<CardProps_2 & RecursicaCardProps> & {
328
+ flex?: string | number;
329
+ flexGrow?: string | number;
330
+ flexShrink?: string | number;
331
+ flexBasis?: string | number;
332
+ grow?: string | number;
333
+ h?: string | number;
334
+ height?: string | number;
335
+ };
336
+
337
+ /**
338
+ * A generalized edge-to-edge structural wrapper native to Mantine. Strips typical boundary padding via negative margins to allow content (like maps or header images) to touch the border seamlessly.
339
+ */
340
+ declare const CardSection: ForwardRefExoticComponent<CardSectionProps & RefAttributes<HTMLDivElement>>;
341
+
342
+ declare type CardSectionProps = RecursicaOverStyled<CardSectionProps_2 & RecursicaCardSectionProps>;
343
+
344
+ export declare const Checkbox: typeof rawComponents.Checkbox;
345
+
346
+ declare const Checkbox_2: CheckboxComponent;
347
+
348
+ declare type CheckboxComponent = React.ForwardRefExoticComponent<CheckboxProps_2 & React.RefAttributes<HTMLInputElement>> & {
349
+ Group: typeof CheckboxGroup_2;
350
+ };
351
+
352
+ export declare const CheckboxGroup: typeof rawComponents.CheckboxGroup;
353
+
354
+ declare const CheckboxGroup_2: default_2.ForwardRefExoticComponent<CheckboxGroupProps & default_2.RefAttributes<HTMLDivElement>>;
355
+
356
+ declare type CheckboxGroupProps = RecursicaOverStyled<RecursicaCheckboxGroupProps>;
357
+
358
+ declare type CheckboxProps_2 = RecursicaOverStyled<RecursicaCheckboxPropsAlias>;
359
+
360
+ declare type CheckboxWrapperProps = Omit<CheckboxProps, "size" | "color" | "radius" | "iconColor" | "variant"> & RecursicaCheckboxProps & ReadOnlyControlProps & Pick<FormControlLayoutProps, "formLayout" | "labelSize" | "controlMaxWidth" | "controlMinWidth">;
361
+
362
+ export declare const Chip: typeof rawComponents.Chip;
363
+
364
+ declare const Chip_2: default_2.ForwardRefExoticComponent<ChipProps & default_2.RefAttributes<HTMLInputElement>>;
365
+
366
+ declare type ChipProps = RecursicaOverStyled<Omit<ChipProps_2, "variant" | "size" | "color" | "radius"> & RecursicaChipProps>;
367
+
368
+ export declare const Container: ForwardRefExoticComponent<Omit<Omit<ContainerProps_2, "size"> & RecursicaContainerProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
369
+ m?: string | number | RecursicaSpacing;
370
+ mx?: string | number | RecursicaSpacing;
371
+ my?: string | number | RecursicaSpacing;
372
+ mt?: string | number | RecursicaSpacing;
373
+ mb?: string | number | RecursicaSpacing;
374
+ ml?: string | number | RecursicaSpacing;
375
+ mr?: string | number | RecursicaSpacing;
376
+ gap?: string | number | RecursicaSpacing;
377
+ rowGap?: string | number | RecursicaSpacing;
378
+ columnGap?: string | number | RecursicaSpacing;
379
+ gutter?: string | number | RecursicaSpacing;
380
+ spacing?: string | number | RecursicaSpacing;
381
+ } & RefAttributes<HTMLDivElement>>;
382
+
383
+ declare const Container_2: ForwardRefExoticComponent<Omit<Omit<ContainerProps_2, "size"> & RecursicaContainerProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
384
+ m?: string | number | RecursicaSpacing;
385
+ mx?: string | number | RecursicaSpacing;
386
+ my?: string | number | RecursicaSpacing;
387
+ mt?: string | number | RecursicaSpacing;
388
+ mb?: string | number | RecursicaSpacing;
389
+ ml?: string | number | RecursicaSpacing;
390
+ mr?: string | number | RecursicaSpacing;
391
+ gap?: string | number | RecursicaSpacing;
392
+ rowGap?: string | number | RecursicaSpacing;
393
+ columnGap?: string | number | RecursicaSpacing;
394
+ gutter?: string | number | RecursicaSpacing;
395
+ spacing?: string | number | RecursicaSpacing;
396
+ } & RefAttributes<HTMLDivElement>>;
397
+
398
+ /**
399
+ * Container layout wrapper.
400
+ *
401
+ * Note: Unlike complex UI components, primitive layout components (Flex, Stack, Group, Container)
402
+ * DO NOT use the `RecursicaOverStyled` gatekeeper. Developers must be able to freely pass
403
+ * width, height, padding, margins, and flexbox alignment props to construct structural layouts.
404
+ */
405
+ declare type ContainerProps = WithRecursicaSpacing<Omit<ContainerProps_2, "size"> & RecursicaContainerProps>;
406
+
407
+ export declare const DatePicker: typeof rawComponents.DatePicker;
408
+
409
+ declare const DatePicker_2: default_2.ForwardRefExoticComponent<DatePickerProps & default_2.RefAttributes<HTMLButtonElement>>;
410
+
411
+ declare type DatePickerProps = RecursicaOverStyled<RecursicaDatePickerProps>;
412
+
413
+ export declare const Dropdown: typeof rawComponents.Dropdown;
414
+
415
+ declare const Dropdown_2: default_2.ForwardRefExoticComponent<DropdownProps & default_2.RefAttributes<HTMLInputElement>>;
416
+
417
+ declare type DropdownProps = RecursicaOverStyled<RecursicaDropdownProps>;
418
+
419
+ export declare const FileInput: typeof rawComponents.FileInput;
420
+
421
+ /**
422
+ * A single-line, `TextField`-shaped control for choosing one or more files, sharing
423
+ * `FileUpload`'s selection/validation interface (`accept`/`maxSize`/`maxFiles`, `readOnly`)
424
+ * behind a different presentation.
425
+ *
426
+ * @example
427
+ * <FileInput
428
+ * label="Resume"
429
+ * files={files}
430
+ * onFilesAdded={(added) => setFiles(added.map((file) => ({ file })))}
431
+ * onFileRemove={() => setFiles([])}
432
+ * />
433
+ */
434
+ declare const FileInput_2: default_2.ForwardRefExoticComponent<FileInputProps & default_2.RefAttributes<HTMLDivElement>>;
435
+
436
+ declare type FileInputProps = RecursicaOverStyled<RecursicaFileInputProps>;
437
+
438
+ export declare const FileUpload: typeof rawComponents.FileUpload;
439
+
440
+ /**
441
+ * A dropzone for uploading files, with a native browse-button fallback and a
442
+ * removable-chip list of the currently selected files.
443
+ *
444
+ * @example
445
+ * <FileUpload
446
+ * label="Upload Files"
447
+ * assistiveText="Max file size 5MB"
448
+ * files={files}
449
+ * onFilesAdded={(added) => setFiles((f) => [...f, ...added.map((file) => ({ file }))])}
450
+ * onFileRemove={(id) => setFiles((f) => f.filter((item) => (item.id ?? item.file.name) !== id))}
451
+ * />
452
+ */
453
+ declare const FileUpload_2: default_2.ForwardRefExoticComponent<FileUploadProps & default_2.RefAttributes<HTMLDivElement>>;
454
+
455
+ declare type FileUploadProps = RecursicaOverStyled<RecursicaFileUploadProps>;
456
+
457
+ export declare const Flex: (<C = "div">(props: PolymorphicComponentProps<C, rawComponents.FlexProps>) => React.ReactElement) & Omit<FunctionComponent<(Omit<FlexProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
458
+ m?: string | number | RecursicaSpacing;
459
+ mx?: string | number | RecursicaSpacing;
460
+ my?: string | number | RecursicaSpacing;
461
+ mt?: string | number | RecursicaSpacing;
462
+ mb?: string | number | RecursicaSpacing;
463
+ ml?: string | number | RecursicaSpacing;
464
+ mr?: string | number | RecursicaSpacing;
465
+ gap?: string | number | RecursicaSpacing;
466
+ rowGap?: string | number | RecursicaSpacing;
467
+ columnGap?: string | number | RecursicaSpacing;
468
+ gutter?: string | number | RecursicaSpacing;
469
+ spacing?: string | number | RecursicaSpacing;
470
+ } & {
471
+ component?: any;
472
+ } & Omit<Omit<any, "ref">, "className" | "classNames" | "style" | "styles" | "vars" | "p" | "px" | "py" | "pt" | "pb" | "pl" | "pr" | "bg" | "c" | "opacity" | "ff" | "fz" | "fw" | "lts" | "ta" | "lh" | "fs" | "tt" | "td" | "bd" | "w" | "miw" | "maw" | "h" | "mih" | "mah" | "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "top" | "left" | "bottom" | "right" | "key" | "defaultValue" | "variant" | "onChange" | "slot" | "title" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "popover" | "popoverTargetAction" | "popoverTarget" | "inert" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onScrollEnd" | "onScrollEndCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onToggle" | "onBeforeToggle" | "onTransitionCancel" | "onTransitionCancelCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "onTransitionRun" | "onTransitionRunCapture" | "onTransitionStart" | "onTransitionStartCapture" | "__vars" | "__size" | "hiddenFrom" | "visibleFrom" | "lightHidden" | "darkHidden" | "mod" | "ms" | "me" | "ps" | "pe" | "bdrs" | "bgsz" | "bgp" | "bgr" | "bga" | "pos" | "inset" | "display" | "flex" | "unstyled" | "attributes" | "spacing" | "justify" | "component" | "wrap" | "align" | "direction"> & {
473
+ ref?: any;
474
+ renderRoot?: (props: any) => any;
475
+ }) | (Omit<FlexProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
476
+ m?: string | number | RecursicaSpacing;
477
+ mx?: string | number | RecursicaSpacing;
478
+ my?: string | number | RecursicaSpacing;
479
+ mt?: string | number | RecursicaSpacing;
480
+ mb?: string | number | RecursicaSpacing;
481
+ ml?: string | number | RecursicaSpacing;
482
+ mr?: string | number | RecursicaSpacing;
483
+ gap?: string | number | RecursicaSpacing;
484
+ rowGap?: string | number | RecursicaSpacing;
485
+ columnGap?: string | number | RecursicaSpacing;
486
+ gutter?: string | number | RecursicaSpacing;
487
+ spacing?: string | number | RecursicaSpacing;
488
+ } & {
489
+ component: React.ElementType;
490
+ renderRoot?: (props: Record<string, any>) => any;
491
+ })>, never> & Record<string, never>;
492
+
493
+ /**
494
+ * Recursica Flex layout wrapper.
495
+ *
496
+ * Supports polymorphism via the `component` prop or `renderRoot` for custom element rendering.
497
+ * @example
498
+ * ```tsx
499
+ * <Flex component="nav">...</Flex>
500
+ * <Flex component="section">...</Flex>
501
+ * ```
502
+ */
503
+ declare const Flex_2: (<C = "div">(props: PolymorphicComponentProps<C, FlexProps>) => React.ReactElement) & Omit<FunctionComponent<(Omit<FlexProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
504
+ m?: string | number | RecursicaSpacing;
505
+ mx?: string | number | RecursicaSpacing;
506
+ my?: string | number | RecursicaSpacing;
507
+ mt?: string | number | RecursicaSpacing;
508
+ mb?: string | number | RecursicaSpacing;
509
+ ml?: string | number | RecursicaSpacing;
510
+ mr?: string | number | RecursicaSpacing;
511
+ gap?: string | number | RecursicaSpacing;
512
+ rowGap?: string | number | RecursicaSpacing;
513
+ columnGap?: string | number | RecursicaSpacing;
514
+ gutter?: string | number | RecursicaSpacing;
515
+ spacing?: string | number | RecursicaSpacing;
516
+ } & {
517
+ component?: any;
518
+ } & Omit<Omit<any, "ref">, "className" | "classNames" | "style" | "styles" | "vars" | "p" | "px" | "py" | "pt" | "pb" | "pl" | "pr" | "bg" | "c" | "opacity" | "ff" | "fz" | "fw" | "lts" | "ta" | "lh" | "fs" | "tt" | "td" | "bd" | "w" | "miw" | "maw" | "h" | "mih" | "mah" | "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "top" | "left" | "bottom" | "right" | "key" | "defaultValue" | "variant" | "onChange" | "slot" | "title" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "popover" | "popoverTargetAction" | "popoverTarget" | "inert" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onScrollEnd" | "onScrollEndCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onToggle" | "onBeforeToggle" | "onTransitionCancel" | "onTransitionCancelCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "onTransitionRun" | "onTransitionRunCapture" | "onTransitionStart" | "onTransitionStartCapture" | "__vars" | "__size" | "hiddenFrom" | "visibleFrom" | "lightHidden" | "darkHidden" | "mod" | "ms" | "me" | "ps" | "pe" | "bdrs" | "bgsz" | "bgp" | "bgr" | "bga" | "pos" | "inset" | "display" | "flex" | "unstyled" | "attributes" | "spacing" | "justify" | "component" | "wrap" | "align" | "direction"> & {
519
+ ref?: any;
520
+ renderRoot?: (props: any) => any;
521
+ }) | (Omit<FlexProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
522
+ m?: string | number | RecursicaSpacing;
523
+ mx?: string | number | RecursicaSpacing;
524
+ my?: string | number | RecursicaSpacing;
525
+ mt?: string | number | RecursicaSpacing;
526
+ mb?: string | number | RecursicaSpacing;
527
+ ml?: string | number | RecursicaSpacing;
528
+ mr?: string | number | RecursicaSpacing;
529
+ gap?: string | number | RecursicaSpacing;
530
+ rowGap?: string | number | RecursicaSpacing;
531
+ columnGap?: string | number | RecursicaSpacing;
532
+ gutter?: string | number | RecursicaSpacing;
533
+ spacing?: string | number | RecursicaSpacing;
534
+ } & {
535
+ component: React.ElementType;
536
+ renderRoot?: (props: Record<string, any>) => any;
537
+ })>, never> & Record<string, never>;
538
+
539
+ /**
540
+ * Flex layout wrapper.
541
+ *
542
+ * Note: Unlike complex UI components, primitive layout components (Flex, Stack, Group, Container)
543
+ * DO NOT use the `RecursicaOverStyled` gatekeeper. Developers must be able to freely pass
544
+ * width, height, padding, margins, and flexbox alignment props to construct structural layouts.
545
+ *
546
+ * No formal Recursica prop contract here: this simply passes through Mantine's own
547
+ * `FlexProps` (gap/rowGap/columnGap/direction/align/justify/wrap are all native to Mantine),
548
+ * layered only with rec- spacing token support via `WithRecursicaSpacing`.
549
+ */
550
+ declare type FlexProps = WithRecursicaSpacing<FlexProps_2>;
551
+
552
+ export declare const FormControlLayout: typeof rawComponents.FormControlLayout;
553
+
554
+ /**
555
+ * A layout component used to correctly position form inputs alongside their labels.
556
+ *
557
+ * **When to use this:**
558
+ * Typically, you should use `FormControlWrapper` instead, which uses this component
559
+ * under the hood to handle layout automatically.
560
+ *
561
+ * However, this component is useful when you need to align standalone inputs
562
+ * (like a `Switch` or `Checkbox` without a label) so they perfectly match the spacing
563
+ * and alignment of your other form fields in a `side-by-side` layout.
564
+ */
565
+ declare const FormControlLayout_2: default_2.ForwardRefExoticComponent<FormControlLayoutProps & default_2.RefAttributes<HTMLDivElement>>;
566
+
567
+ declare interface FormControlLayoutProps extends default_2.HTMLAttributes<HTMLDivElement>, RecursicaFormControlLayoutProps {
568
+ }
569
+
570
+ declare type FormControlWrapperProps = RecursicaOverStyled<Omit<InputWrapperProps, "labelProps" | "inputWrapperOrder"> & RecursicaFormControlWrapperProps>;
571
+
572
+ export declare const Grid: (<C = "div">(props: PolymorphicComponentProps<C, rawComponents.GridProps>) => React.ReactElement) & Omit<FunctionComponent<(Omit<GridProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
573
+ m?: string | number | RecursicaSpacing;
574
+ mx?: string | number | RecursicaSpacing;
575
+ my?: string | number | RecursicaSpacing;
576
+ mt?: string | number | RecursicaSpacing;
577
+ mb?: string | number | RecursicaSpacing;
578
+ ml?: string | number | RecursicaSpacing;
579
+ mr?: string | number | RecursicaSpacing;
580
+ gap?: string | number | RecursicaSpacing;
581
+ rowGap?: string | number | RecursicaSpacing;
582
+ columnGap?: string | number | RecursicaSpacing;
583
+ gutter?: string | number | RecursicaSpacing;
584
+ spacing?: string | number | RecursicaSpacing;
585
+ } & {
586
+ component?: any;
587
+ } & Omit<Omit<any, "ref">, "className" | "classNames" | "style" | "styles" | "vars" | "p" | "px" | "py" | "pt" | "pb" | "pl" | "pr" | "bg" | "c" | "opacity" | "ff" | "fz" | "fw" | "lts" | "ta" | "lh" | "fs" | "tt" | "td" | "bd" | "w" | "miw" | "maw" | "h" | "mih" | "mah" | "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "top" | "left" | "bottom" | "right" | "key" | "defaultValue" | "variant" | "onChange" | "slot" | "title" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "popover" | "popoverTargetAction" | "popoverTarget" | "inert" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onScrollEnd" | "onScrollEndCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onToggle" | "onBeforeToggle" | "onTransitionCancel" | "onTransitionCancelCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "onTransitionRun" | "onTransitionRunCapture" | "onTransitionStart" | "onTransitionStartCapture" | "__vars" | "__size" | "hiddenFrom" | "visibleFrom" | "lightHidden" | "darkHidden" | "mod" | "ms" | "me" | "ps" | "pe" | "bdrs" | "bgsz" | "bgp" | "bgr" | "bga" | "pos" | "inset" | "display" | "flex" | "unstyled" | "attributes" | "spacing" | "type" | "justify" | "component" | "align" | "overflow" | "grow" | "columns" | "breakpoints"> & {
588
+ ref?: any;
589
+ renderRoot?: (props: any) => any;
590
+ }) | (Omit<GridProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
591
+ m?: string | number | RecursicaSpacing;
592
+ mx?: string | number | RecursicaSpacing;
593
+ my?: string | number | RecursicaSpacing;
594
+ mt?: string | number | RecursicaSpacing;
595
+ mb?: string | number | RecursicaSpacing;
596
+ ml?: string | number | RecursicaSpacing;
597
+ mr?: string | number | RecursicaSpacing;
598
+ gap?: string | number | RecursicaSpacing;
599
+ rowGap?: string | number | RecursicaSpacing;
600
+ columnGap?: string | number | RecursicaSpacing;
601
+ gutter?: string | number | RecursicaSpacing;
602
+ spacing?: string | number | RecursicaSpacing;
603
+ } & {
604
+ component: React.ElementType;
605
+ renderRoot?: (props: Record<string, any>) => any;
606
+ })>, never> & Record<string, never> & {
607
+ Col: typeof rawComponents.GridCol;
608
+ };
609
+
610
+ declare const Grid_2: GridComponent;
611
+
612
+ /**
613
+ * Recursica Grid layout wrapper.
614
+ *
615
+ * Supports polymorphism via the `component` prop for custom element rendering.
616
+ * @example
617
+ * ```tsx
618
+ * <Grid gap="rec-default">
619
+ * <Grid.Col span={6}>Half width</Grid.Col>
620
+ * <Grid.Col span={6}>Half width</Grid.Col>
621
+ * </Grid>
622
+ * ```
623
+ */
624
+ declare const GridBase: (<C = "div">(props: PolymorphicComponentProps<C, GridProps>) => React.ReactElement) & Omit<FunctionComponent<(Omit<GridProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
625
+ m?: string | number | RecursicaSpacing;
626
+ mx?: string | number | RecursicaSpacing;
627
+ my?: string | number | RecursicaSpacing;
628
+ mt?: string | number | RecursicaSpacing;
629
+ mb?: string | number | RecursicaSpacing;
630
+ ml?: string | number | RecursicaSpacing;
631
+ mr?: string | number | RecursicaSpacing;
632
+ gap?: string | number | RecursicaSpacing;
633
+ rowGap?: string | number | RecursicaSpacing;
634
+ columnGap?: string | number | RecursicaSpacing;
635
+ gutter?: string | number | RecursicaSpacing;
636
+ spacing?: string | number | RecursicaSpacing;
637
+ } & {
638
+ component?: any;
639
+ } & Omit<Omit<any, "ref">, "className" | "classNames" | "style" | "styles" | "vars" | "p" | "px" | "py" | "pt" | "pb" | "pl" | "pr" | "bg" | "c" | "opacity" | "ff" | "fz" | "fw" | "lts" | "ta" | "lh" | "fs" | "tt" | "td" | "bd" | "w" | "miw" | "maw" | "h" | "mih" | "mah" | "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "top" | "left" | "bottom" | "right" | "key" | "defaultValue" | "variant" | "onChange" | "slot" | "title" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "popover" | "popoverTargetAction" | "popoverTarget" | "inert" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onScrollEnd" | "onScrollEndCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onToggle" | "onBeforeToggle" | "onTransitionCancel" | "onTransitionCancelCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "onTransitionRun" | "onTransitionRunCapture" | "onTransitionStart" | "onTransitionStartCapture" | "__vars" | "__size" | "hiddenFrom" | "visibleFrom" | "lightHidden" | "darkHidden" | "mod" | "ms" | "me" | "ps" | "pe" | "bdrs" | "bgsz" | "bgp" | "bgr" | "bga" | "pos" | "inset" | "display" | "flex" | "unstyled" | "attributes" | "spacing" | "type" | "justify" | "component" | "align" | "overflow" | "grow" | "columns" | "breakpoints"> & {
640
+ ref?: any;
641
+ renderRoot?: (props: any) => any;
642
+ }) | (Omit<GridProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
643
+ m?: string | number | RecursicaSpacing;
644
+ mx?: string | number | RecursicaSpacing;
645
+ my?: string | number | RecursicaSpacing;
646
+ mt?: string | number | RecursicaSpacing;
647
+ mb?: string | number | RecursicaSpacing;
648
+ ml?: string | number | RecursicaSpacing;
649
+ mr?: string | number | RecursicaSpacing;
650
+ gap?: string | number | RecursicaSpacing;
651
+ rowGap?: string | number | RecursicaSpacing;
652
+ columnGap?: string | number | RecursicaSpacing;
653
+ gutter?: string | number | RecursicaSpacing;
654
+ spacing?: string | number | RecursicaSpacing;
655
+ } & {
656
+ component: React.ElementType;
657
+ renderRoot?: (props: Record<string, any>) => any;
658
+ })>, never> & Record<string, never>;
659
+
660
+ export declare const GridCol: (<C = "div">(props: PolymorphicComponentProps<C, rawComponents.GridColProps>) => React.ReactElement) & Omit<FunctionComponent<(Omit<GridColProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
661
+ m?: string | number | RecursicaSpacing;
662
+ mx?: string | number | RecursicaSpacing;
663
+ my?: string | number | RecursicaSpacing;
664
+ mt?: string | number | RecursicaSpacing;
665
+ mb?: string | number | RecursicaSpacing;
666
+ ml?: string | number | RecursicaSpacing;
667
+ mr?: string | number | RecursicaSpacing;
668
+ gap?: string | number | RecursicaSpacing;
669
+ rowGap?: string | number | RecursicaSpacing;
670
+ columnGap?: string | number | RecursicaSpacing;
671
+ gutter?: string | number | RecursicaSpacing;
672
+ spacing?: string | number | RecursicaSpacing;
673
+ } & {
674
+ component?: any;
675
+ } & Omit<Omit<any, "ref">, "className" | "classNames" | "style" | "styles" | "vars" | "p" | "px" | "py" | "pt" | "pb" | "pl" | "pr" | "bg" | "c" | "opacity" | "ff" | "fz" | "fw" | "lts" | "ta" | "lh" | "fs" | "tt" | "td" | "bd" | "w" | "miw" | "maw" | "h" | "mih" | "mah" | "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "top" | "left" | "bottom" | "right" | "key" | "defaultValue" | "variant" | "onChange" | "slot" | "span" | "title" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "popover" | "popoverTargetAction" | "popoverTarget" | "inert" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onScrollEnd" | "onScrollEndCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onToggle" | "onBeforeToggle" | "onTransitionCancel" | "onTransitionCancelCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "onTransitionRun" | "onTransitionRunCapture" | "onTransitionStart" | "onTransitionStartCapture" | "order" | "__vars" | "__size" | "hiddenFrom" | "visibleFrom" | "lightHidden" | "darkHidden" | "mod" | "ms" | "me" | "ps" | "pe" | "bdrs" | "bgsz" | "bgp" | "bgr" | "bga" | "pos" | "inset" | "display" | "flex" | "spacing" | "component" | "offset"> & {
676
+ ref?: any;
677
+ renderRoot?: (props: any) => any;
678
+ }) | (Omit<GridColProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
679
+ m?: string | number | RecursicaSpacing;
680
+ mx?: string | number | RecursicaSpacing;
681
+ my?: string | number | RecursicaSpacing;
682
+ mt?: string | number | RecursicaSpacing;
683
+ mb?: string | number | RecursicaSpacing;
684
+ ml?: string | number | RecursicaSpacing;
685
+ mr?: string | number | RecursicaSpacing;
686
+ gap?: string | number | RecursicaSpacing;
687
+ rowGap?: string | number | RecursicaSpacing;
688
+ columnGap?: string | number | RecursicaSpacing;
689
+ gutter?: string | number | RecursicaSpacing;
690
+ spacing?: string | number | RecursicaSpacing;
691
+ } & {
692
+ component: React.ElementType;
693
+ renderRoot?: (props: Record<string, any>) => any;
694
+ })>, never> & Record<string, never>;
695
+
696
+ declare const GridCol_2: (<C = "div">(props: PolymorphicComponentProps<C, GridColProps>) => React.ReactElement) & Omit<FunctionComponent<(Omit<GridColProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
697
+ m?: string | number | RecursicaSpacing;
698
+ mx?: string | number | RecursicaSpacing;
699
+ my?: string | number | RecursicaSpacing;
700
+ mt?: string | number | RecursicaSpacing;
701
+ mb?: string | number | RecursicaSpacing;
702
+ ml?: string | number | RecursicaSpacing;
703
+ mr?: string | number | RecursicaSpacing;
704
+ gap?: string | number | RecursicaSpacing;
705
+ rowGap?: string | number | RecursicaSpacing;
706
+ columnGap?: string | number | RecursicaSpacing;
707
+ gutter?: string | number | RecursicaSpacing;
708
+ spacing?: string | number | RecursicaSpacing;
709
+ } & {
710
+ component?: any;
711
+ } & Omit<Omit<any, "ref">, "className" | "classNames" | "style" | "styles" | "vars" | "p" | "px" | "py" | "pt" | "pb" | "pl" | "pr" | "bg" | "c" | "opacity" | "ff" | "fz" | "fw" | "lts" | "ta" | "lh" | "fs" | "tt" | "td" | "bd" | "w" | "miw" | "maw" | "h" | "mih" | "mah" | "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "top" | "left" | "bottom" | "right" | "key" | "defaultValue" | "variant" | "onChange" | "slot" | "span" | "title" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "popover" | "popoverTargetAction" | "popoverTarget" | "inert" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onScrollEnd" | "onScrollEndCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onToggle" | "onBeforeToggle" | "onTransitionCancel" | "onTransitionCancelCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "onTransitionRun" | "onTransitionRunCapture" | "onTransitionStart" | "onTransitionStartCapture" | "order" | "__vars" | "__size" | "hiddenFrom" | "visibleFrom" | "lightHidden" | "darkHidden" | "mod" | "ms" | "me" | "ps" | "pe" | "bdrs" | "bgsz" | "bgp" | "bgr" | "bga" | "pos" | "inset" | "display" | "flex" | "spacing" | "component" | "offset"> & {
712
+ ref?: any;
713
+ renderRoot?: (props: any) => any;
714
+ }) | (Omit<GridColProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
715
+ m?: string | number | RecursicaSpacing;
716
+ mx?: string | number | RecursicaSpacing;
717
+ my?: string | number | RecursicaSpacing;
718
+ mt?: string | number | RecursicaSpacing;
719
+ mb?: string | number | RecursicaSpacing;
720
+ ml?: string | number | RecursicaSpacing;
721
+ mr?: string | number | RecursicaSpacing;
722
+ gap?: string | number | RecursicaSpacing;
723
+ rowGap?: string | number | RecursicaSpacing;
724
+ columnGap?: string | number | RecursicaSpacing;
725
+ gutter?: string | number | RecursicaSpacing;
726
+ spacing?: string | number | RecursicaSpacing;
727
+ } & {
728
+ component: React.ElementType;
729
+ renderRoot?: (props: Record<string, any>) => any;
730
+ })>, never> & Record<string, never>;
731
+
732
+ declare type GridColProps = WithRecursicaSpacing<GridColProps_2>;
733
+
734
+ declare type GridComponent = typeof GridBase & {
735
+ Col: typeof GridCol_2;
736
+ };
737
+
738
+ /**
739
+ * Grid layout wrapper.
740
+ *
741
+ * Note: Unlike complex UI components, primitive layout components (Flex, Stack, Group, Container, Grid)
742
+ * DO NOT use the `RecursicaOverStyled` gatekeeper. Developers must be able to freely pass
743
+ * width, height, padding, margins, and flexbox alignment props to construct structural layouts.
744
+ *
745
+ * No formal Recursica prop contract here: this simply passes through Mantine's own
746
+ * `GridProps` (gutter/grow/columns/justify/align are all native to Mantine), layered only
747
+ * with rec- spacing token support via `WithRecursicaSpacing`.
748
+ */
749
+ declare type GridProps = WithRecursicaSpacing<GridProps_2>;
750
+
751
+ export declare const Group: ForwardRefExoticComponent<Omit<GroupProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
752
+ m?: string | number | RecursicaSpacing;
753
+ mx?: string | number | RecursicaSpacing;
754
+ my?: string | number | RecursicaSpacing;
755
+ mt?: string | number | RecursicaSpacing;
756
+ mb?: string | number | RecursicaSpacing;
757
+ ml?: string | number | RecursicaSpacing;
758
+ mr?: string | number | RecursicaSpacing;
759
+ gap?: string | number | RecursicaSpacing;
760
+ rowGap?: string | number | RecursicaSpacing;
761
+ columnGap?: string | number | RecursicaSpacing;
762
+ gutter?: string | number | RecursicaSpacing;
763
+ spacing?: string | number | RecursicaSpacing;
764
+ } & RefAttributes<HTMLDivElement>>;
765
+
766
+ declare const Group_2: ForwardRefExoticComponent<Omit<GroupProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
767
+ m?: string | number | RecursicaSpacing;
768
+ mx?: string | number | RecursicaSpacing;
769
+ my?: string | number | RecursicaSpacing;
770
+ mt?: string | number | RecursicaSpacing;
771
+ mb?: string | number | RecursicaSpacing;
772
+ ml?: string | number | RecursicaSpacing;
773
+ mr?: string | number | RecursicaSpacing;
774
+ gap?: string | number | RecursicaSpacing;
775
+ rowGap?: string | number | RecursicaSpacing;
776
+ columnGap?: string | number | RecursicaSpacing;
777
+ gutter?: string | number | RecursicaSpacing;
778
+ spacing?: string | number | RecursicaSpacing;
779
+ } & RefAttributes<HTMLDivElement>>;
780
+
781
+ /**
782
+ * Group flex layout wrapper.
783
+ *
784
+ * Note: Unlike complex UI components, primitive layout components (Flex, Stack, Group, Container)
785
+ * DO NOT use the `RecursicaOverStyled` gatekeeper. Developers must be able to freely pass
786
+ * width, height, padding, margins, and flexbox alignment props to construct structural layouts.
787
+ *
788
+ * No formal Recursica prop contract here: this simply passes through Mantine's own
789
+ * `GroupProps` (gap/rowGap/columnGap/justify/align/wrap are all native to Mantine),
790
+ * layered only with rec- spacing token support via `WithRecursicaSpacing`.
791
+ */
792
+ declare type GroupProps = WithRecursicaSpacing<GroupProps_2>;
793
+
794
+ export declare const Heading: typeof rawComponents.Heading;
795
+
796
+ /**
797
+ * Enforces highly accessible structural markup utilizing semantic `<h1>` through `<h6>` tags securely bound directly to Recursica typographic scales.
798
+ */
799
+ declare const Heading_2: ForwardRefExoticComponent<HeadingProps & RefAttributes<HTMLHeadingElement>>;
800
+
801
+ declare type HeadingProps = RecursicaOverStyled<Omit<TitleProps, "size"> & RecursicaHeadingProps>;
802
+
803
+ export declare const HoverCard: typeof rawComponents.HoverCard;
804
+
805
+ declare const HoverCard_2: HoverCardComponent;
806
+
807
+ declare const HoverCardBase: {
808
+ ({ overStyled, withBeak, position, arrowSize, withArrow, ...rest }: HoverCardProps): JSX.Element;
809
+ displayName: string;
810
+ };
811
+
812
+ declare type HoverCardComponent = typeof HoverCardBase & {
813
+ Target: typeof HoverCardTarget;
814
+ Dropdown: typeof HoverCardDropdown;
815
+ };
816
+
817
+ declare const HoverCardDropdown: {
818
+ ({ overStyled, ...rest }: HoverCardDropdownProps): JSX.Element;
819
+ displayName: string;
820
+ };
821
+
822
+ /** The dropdown panel displayed when hovering over the target. */
823
+ declare type HoverCardDropdownProps = RecursicaOverStyled<HoverCardDropdownProps_2>;
824
+
825
+ /**
826
+ * Recursica HoverCard component wrapping Mantine's composable HoverCard.
827
+ *
828
+ * Displays a dropdown panel when the user hovers over a target element.
829
+ * Uses the composable dot-notation pattern:
830
+ * ```tsx
831
+ * <HoverCard withBeak>
832
+ * <HoverCard.Target>
833
+ * <Button>Hover me</Button>
834
+ * </HoverCard.Target>
835
+ * <HoverCard.Dropdown>
836
+ * Content displayed on hover
837
+ * </HoverCard.Dropdown>
838
+ * </HoverCard>
839
+ * ```
840
+ */
841
+ declare type HoverCardProps = RecursicaOverStyled<HoverCardProps_2 & RecursicaHoverCardProps>;
842
+
843
+ declare const HoverCardTarget: {
844
+ (props: HoverCardTargetProps): JSX.Element;
845
+ displayName: string;
846
+ };
847
+
848
+ /**
849
+ * Wrapper for the element that triggers the hover card.
850
+ * Requires a single child element that supports ref forwarding.
851
+ */
852
+ declare type HoverCardTargetProps = HoverCardTargetProps_2;
853
+
854
+ export declare const Label: typeof rawComponents.Label;
855
+
856
+ declare const Label_2: default_2.ForwardRefExoticComponent<LabelProps & default_2.RefAttributes<HTMLLabelElement>>;
857
+
858
+ declare type LabelProps = RecursicaOverStyled<Omit<InputLabelProps, "size"> & RecursicaLabelProps>;
859
+
860
+ export declare const Link: (<C = "a">(props: PolymorphicComponentProps<C, rawComponents.LinkProps>) => React.ReactElement) & Omit<FunctionComponent<((rawComponents.LinkProps & {
861
+ component?: any;
862
+ }) & Omit<Omit<any, "ref">, "className" | "classNames" | "style" | "styles" | "vars" | "p" | "px" | "py" | "pt" | "pb" | "pl" | "pr" | "bg" | "c" | "opacity" | "ff" | "fz" | "fw" | "lts" | "ta" | "lh" | "fs" | "tt" | "td" | "bd" | "w" | "miw" | "maw" | "h" | "mih" | "mah" | "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "top" | "left" | "bottom" | "right" | "variant" | "color" | "children" | "__vars" | "__size" | "hiddenFrom" | "visibleFrom" | "lightHidden" | "darkHidden" | "mod" | "ms" | "me" | "ps" | "pe" | "bdrs" | "bgsz" | "bgp" | "bgr" | "bga" | "pos" | "inset" | "display" | "flex" | "unstyled" | "attributes" | "spacing" | "overStyled" | "icon" | "inherit" | "inline" | "size" | "__staticSelector" | "component" | "gradient" | "lineClamp" | "truncate"> & {
863
+ ref?: any;
864
+ renderRoot?: (props: any) => any;
865
+ }) | (rawComponents.LinkProps & {
866
+ component: React.ElementType;
867
+ renderRoot?: (props: Record<string, any>) => any;
868
+ })>, never> & Record<string, never>;
869
+
870
+ /**
871
+ * Recursica Link component wrapping Mantine's Anchor.
872
+ *
873
+ * Supports polymorphism via the `component` prop or `renderRoot` for custom element rendering (e.g. react-router Link).
874
+ * @example
875
+ * ```tsx
876
+ * <Link component="a" href="https://example.com">External Link</Link>
877
+ * <Link renderRoot={(props) => <RouterLink to="/home" {...props} />}>Home</Link>
878
+ * ```
879
+ */
880
+ declare const Link_2: (<C = "a">(props: PolymorphicComponentProps<C, LinkProps>) => React.ReactElement) & Omit<FunctionComponent<((LinkProps & {
881
+ component?: any;
882
+ }) & Omit<Omit<any, "ref">, "className" | "classNames" | "style" | "styles" | "vars" | "p" | "px" | "py" | "pt" | "pb" | "pl" | "pr" | "bg" | "c" | "opacity" | "ff" | "fz" | "fw" | "lts" | "ta" | "lh" | "fs" | "tt" | "td" | "bd" | "w" | "miw" | "maw" | "h" | "mih" | "mah" | "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "top" | "left" | "bottom" | "right" | "variant" | "color" | "children" | "__vars" | "__size" | "hiddenFrom" | "visibleFrom" | "lightHidden" | "darkHidden" | "mod" | "ms" | "me" | "ps" | "pe" | "bdrs" | "bgsz" | "bgp" | "bgr" | "bga" | "pos" | "inset" | "display" | "flex" | "unstyled" | "attributes" | "spacing" | "overStyled" | "icon" | "inherit" | "inline" | "size" | "__staticSelector" | "component" | "gradient" | "lineClamp" | "truncate"> & {
883
+ ref?: any;
884
+ renderRoot?: (props: any) => any;
885
+ }) | (LinkProps & {
886
+ component: React.ElementType;
887
+ renderRoot?: (props: Record<string, any>) => any;
888
+ })>, never> & Record<string, never>;
889
+
890
+ declare type LinkProps = RecursicaOverStyled<Omit<AnchorProps, "underline"> & Omit<RecursicaLinkProps, "component">>;
891
+
892
+ export declare const Loader: typeof rawComponents.Loader;
893
+
894
+ declare const Loader_2: ForwardRefExoticComponent<LoaderProps & RefAttributes<HTMLSpanElement>>;
895
+
896
+ declare type LoaderProps = RecursicaOverStyled<Omit<LoaderProps_2, "variant" | "size" | "type"> & RecursicaLoaderProps>;
897
+
898
+ export declare const Menu: typeof rawComponents.Menu;
899
+
900
+ declare const Menu_2: MenuComponent;
901
+
902
+ declare const MenuBase: {
903
+ ({ overStyled, ...rest }: MenuProps): JSX.Element;
904
+ displayName: string;
905
+ };
906
+
907
+ declare type MenuComponent = typeof MenuBase & {
908
+ Target: typeof MenuTarget;
909
+ Dropdown: typeof MenuDropdown;
910
+ Item: typeof MenuItem;
911
+ Divider: typeof MenuDivider;
912
+ Label: typeof MenuLabel;
913
+ Sub: MenuSubComponent;
914
+ };
915
+
916
+ declare const MenuDivider: ForwardRefExoticComponent<MenuDividerProps & RefAttributes<HTMLHRElement>>;
917
+
918
+ /** A visual separator between groups of menu items. */
919
+ declare type MenuDividerProps = RecursicaOverStyled<MenuDividerProps_2>;
920
+
921
+ declare const MenuDropdown: ForwardRefExoticComponent<MenuDropdownProps & RefAttributes<HTMLDivElement>>;
922
+
923
+ /** The dropdown panel containing menu items, dividers, and labels. */
924
+ declare type MenuDropdownProps = RecursicaOverStyled<MenuDropdownProps_2>;
925
+
926
+ /**
927
+ * An individual actionable item within the menu dropdown.
928
+ *
929
+ * Supports polymorphism via the `component` prop for link-style items.
930
+ * @example
931
+ * ```tsx
932
+ * <Menu.Item component="a" href="/settings">Settings</Menu.Item>
933
+ * ```
934
+ */
935
+ declare const MenuItem: (<C = "button">(props: PolymorphicComponentProps<C, MenuItemProps>) => React.ReactElement) & Omit<FunctionComponent<((MenuItemProps & {
936
+ component?: any;
937
+ }) & Omit<Omit<any, "ref">, "className" | "classNames" | "style" | "styles" | "vars" | "p" | "px" | "py" | "pt" | "pb" | "pl" | "pr" | "bg" | "c" | "opacity" | "ff" | "fz" | "fw" | "lts" | "ta" | "lh" | "fs" | "tt" | "td" | "bd" | "w" | "miw" | "maw" | "h" | "mih" | "mah" | "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "top" | "left" | "bottom" | "right" | "variant" | "children" | "__vars" | "__size" | "hiddenFrom" | "visibleFrom" | "lightHidden" | "darkHidden" | "mod" | "ms" | "me" | "ps" | "pe" | "bdrs" | "bgsz" | "bgp" | "bgr" | "bga" | "pos" | "inset" | "display" | "flex" | "spacing" | "overStyled" | "disabled" | "data-disabled" | "component" | "leftSection" | "rightSection" | "closeMenuOnClick"> & {
938
+ ref?: any;
939
+ renderRoot?: (props: any) => any;
940
+ }) | (MenuItemProps & {
941
+ component: React.ElementType;
942
+ renderRoot?: (props: Record<string, any>) => any;
943
+ })>, never> & Record<string, never>;
944
+
945
+ /**
946
+ * An individual actionable item within the menu dropdown.
947
+ *
948
+ * **Note:** Mantine's `color` prop is stripped to enforce design token adherence.
949
+ */
950
+ declare type MenuItemProps = RecursicaOverStyled<Omit<MenuItemProps_2, "color">>;
951
+
952
+ declare const MenuLabel: ForwardRefExoticComponent<MenuLabelProps & RefAttributes<HTMLDivElement>>;
953
+
954
+ /** A non-interactive section label used to categorize groups of menu items. */
955
+ declare type MenuLabelProps = RecursicaOverStyled<MenuLabelProps_2>;
956
+
957
+ /**
958
+ * Recursica Menu component wrapping Mantine's composable Menu.
959
+ *
960
+ * Usage follows the composable dot-notation pattern:
961
+ * ```tsx
962
+ * <Menu>
963
+ * <Menu.Target><Button>Open</Button></Menu.Target>
964
+ * <Menu.Dropdown>
965
+ * <Menu.Label>Section</Menu.Label>
966
+ * <Menu.Item>Action</Menu.Item>
967
+ * <Menu.Divider />
968
+ * <Menu.Item>Another action</Menu.Item>
969
+ * </Menu.Dropdown>
970
+ * </Menu>
971
+ * ```
972
+ */
973
+ declare type MenuProps = RecursicaOverStyled<MenuProps_2 & RecursicaMenuProps>;
974
+
975
+ declare const MenuSubBase: {
976
+ (props: MenuSubProps): JSX.Element;
977
+ displayName: string;
978
+ };
979
+
980
+ declare type MenuSubComponent = typeof MenuSubBase & {
981
+ Target: typeof MenuSubTarget;
982
+ Item: typeof MenuSubItem;
983
+ Dropdown: typeof MenuSubDropdown;
984
+ };
985
+
986
+ declare const MenuSubDropdown: ForwardRefExoticComponent<MenuSubDropdownProps & RefAttributes<HTMLDivElement>>;
987
+
988
+ /** The dropdown panel for a submenu. */
989
+ declare type MenuSubDropdownProps = RecursicaOverStyled<MenuSubDropdownProps_2>;
990
+
991
+ /**
992
+ * A menu item that acts as a submenu trigger.
993
+ *
994
+ * Supports polymorphism via the `component` prop.
995
+ */
996
+ declare const MenuSubItem: (<C = "button">(props: PolymorphicComponentProps<C, MenuSubItemProps>) => React.ReactElement) & Omit<FunctionComponent<((MenuSubItemProps & {
997
+ component?: any;
998
+ }) & Omit<Omit<any, "ref">, "className" | "classNames" | "style" | "styles" | "vars" | "p" | "px" | "py" | "pt" | "pb" | "pl" | "pr" | "bg" | "c" | "opacity" | "ff" | "fz" | "fw" | "lts" | "ta" | "lh" | "fs" | "tt" | "td" | "bd" | "w" | "miw" | "maw" | "h" | "mih" | "mah" | "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "top" | "left" | "bottom" | "right" | "variant" | "children" | "__vars" | "__size" | "hiddenFrom" | "visibleFrom" | "lightHidden" | "darkHidden" | "mod" | "ms" | "me" | "ps" | "pe" | "bdrs" | "bgsz" | "bgp" | "bgr" | "bga" | "pos" | "inset" | "display" | "flex" | "spacing" | "overStyled" | "disabled" | "data-disabled" | "component" | "leftSection" | "rightSection" | "closeMenuOnClick"> & {
999
+ ref?: any;
1000
+ renderRoot?: (props: any) => any;
1001
+ }) | (MenuSubItemProps & {
1002
+ component: React.ElementType;
1003
+ renderRoot?: (props: Record<string, any>) => any;
1004
+ })>, never> & Record<string, never>;
1005
+
1006
+ /**
1007
+ * A menu item that acts as a submenu trigger.
1008
+ * Renders within Menu.Sub.Target and displays a chevron indicator.
1009
+ */
1010
+ declare type MenuSubItemProps = RecursicaOverStyled<Omit<MenuItemProps_2, "color">>;
1011
+
1012
+ /** Container for a submenu, wrapping Menu.Sub.Target and Menu.Sub.Dropdown. */
1013
+ declare type MenuSubProps = MenuSubProps_2;
1014
+
1015
+ declare const MenuSubTarget: {
1016
+ (props: MenuSubTargetProps): JSX.Element;
1017
+ displayName: string;
1018
+ };
1019
+
1020
+ /** Wrapper for the element that triggers the submenu. */
1021
+ declare type MenuSubTargetProps = MenuSubTargetProps_2;
1022
+
1023
+ declare const MenuTarget: {
1024
+ ({ overStyled, ...rest }: MenuTargetProps): JSX.Element;
1025
+ displayName: string;
1026
+ };
1027
+
1028
+ /**
1029
+ * Wrapper for the element that triggers the menu.
1030
+ * Requires a single child element that supports ref forwarding.
1031
+ */
1032
+ declare type MenuTargetProps = RecursicaOverStyled<MenuTargetProps_2>;
1033
+
1034
+ export declare const Modal: typeof rawComponents.Modal;
1035
+
1036
+ declare const Modal_2: ModalComponent & {
1037
+ Footer: typeof ModalFooter;
1038
+ };
1039
+
1040
+ declare const ModalBody: default_2.ForwardRefExoticComponent<ModalBodyProps & default_2.RefAttributes<HTMLDivElement>>;
1041
+
1042
+ declare type ModalBodyProps = RecursicaOverStyled<ModalBodyProps_2>;
1043
+
1044
+ declare const ModalCloseButton: default_2.ForwardRefExoticComponent<ModalCloseButtonProps & default_2.RefAttributes<HTMLButtonElement>>;
1045
+
1046
+ declare type ModalCloseButtonProps = RecursicaOverStyled<ModalCloseButtonProps_2>;
1047
+
1048
+ declare interface ModalComponent extends default_2.ForwardRefExoticComponent<ModalProps & default_2.RefAttributes<HTMLDivElement>> {
1049
+ Root: typeof ModalRoot;
1050
+ Overlay: typeof ModalOverlay;
1051
+ Content: typeof ModalContent;
1052
+ Header: typeof ModalHeader;
1053
+ Title: typeof ModalTitle;
1054
+ CloseButton: typeof ModalCloseButton;
1055
+ Body: typeof ModalBody;
1056
+ Footer: typeof ModalFooter;
1057
+ }
1058
+
1059
+ declare const ModalContent: default_2.ForwardRefExoticComponent<ModalContentProps & default_2.RefAttributes<HTMLDivElement>>;
1060
+
1061
+ declare type ModalContentProps = RecursicaOverStyled<ModalContentProps_2>;
1062
+
1063
+ declare const ModalFooter: default_2.ForwardRefExoticComponent<ModalFooterProps & default_2.RefAttributes<HTMLDivElement>>;
1064
+
1065
+ /**
1066
+ * The `Modal.Footer` provides a perfectly padded container for modal actions.
1067
+ *
1068
+ * **Recursica Abstract:**
1069
+ * By default, this container aligns its children to the right (`justify-content: flex-end`)
1070
+ * and applies the standard Figma button-gap spacing.
1071
+ *
1072
+ * > [!IMPORTANT]
1073
+ * > **Button Hierarchy:** Recursica design language explicitly requires that the
1074
+ * > primary action button MUST be the right-most element, with the secondary
1075
+ * > (outline variant) action placed immediately to the left of it.
1076
+ */
1077
+ declare type ModalFooterProps = RecursicaOverStyled<default_2.ComponentPropsWithoutRef<"div">>;
1078
+
1079
+ declare const ModalHeader: default_2.ForwardRefExoticComponent<ModalHeaderProps & default_2.RefAttributes<HTMLElement>>;
1080
+
1081
+ declare type ModalHeaderProps = RecursicaOverStyled<ModalHeaderProps_2>;
1082
+
1083
+ declare const ModalOverlay: default_2.ForwardRefExoticComponent<ModalOverlayProps & default_2.RefAttributes<HTMLDivElement>>;
1084
+
1085
+ declare type ModalOverlayProps = RecursicaOverStyled<ModalOverlayProps_2>;
1086
+
1087
+ /**
1088
+ * Properties for the strictly-tokenized Modal component.
1089
+ * Native Mantine abstract properties like `size`, `radius`, and `shadow` have been stripped out
1090
+ * because they directly conflict with the non-negotiable pixel boundaries defined in the Recursica UI Kit.
1091
+ */
1092
+ declare type ModalProps = RecursicaOverStyled<Omit<ModalProps_2, "size" | "radius" | "shadow"> & RecursicaModalProps>;
1093
+
1094
+ declare const ModalRoot: default_2.ForwardRefExoticComponent<ModalRootProps & default_2.RefAttributes<HTMLDivElement>>;
1095
+
1096
+ declare type ModalRootProps = RecursicaOverStyled<ModalRootProps_2>;
1097
+
1098
+ declare const ModalTitle: default_2.ForwardRefExoticComponent<ModalTitleProps & default_2.RefAttributes<HTMLHeadingElement>>;
1099
+
1100
+ declare type ModalTitleProps = RecursicaOverStyled<ModalTitleProps_2>;
1101
+
1102
+ export declare const NumberInput: typeof rawComponents.NumberInput;
1103
+
1104
+ declare const NumberInput_2: default_2.ForwardRefExoticComponent<NumberInputProps_2 & default_2.RefAttributes<HTMLInputElement>>;
1105
+
1106
+ declare type NumberInputProps_2 = RecursicaOverStyled<RecursicaNumberInputProps>;
1107
+
1108
+ export declare const Pagination: typeof rawComponents.Pagination;
1109
+
1110
+ declare const _Pagination: default_2.ForwardRefExoticComponent<PaginationProps & default_2.RefAttributes<HTMLDivElement>>;
1111
+
1112
+ /**
1113
+ * Recursica Pagination component wrapping Mantine's Pagination.
1114
+ */
1115
+ declare const Pagination_2: typeof _Pagination & {
1116
+ Root: typeof _PaginationRoot;
1117
+ Items: typeof Pagination_3.Items;
1118
+ Control: typeof _PaginationControl;
1119
+ Dots: typeof _PaginationDots;
1120
+ Next: typeof _PaginationNext;
1121
+ Previous: typeof _PaginationPrevious;
1122
+ First: typeof _PaginationFirst;
1123
+ Last: typeof _PaginationLast;
1124
+ Icon: typeof PaginationIcon;
1125
+ };
1126
+
1127
+ declare const _PaginationControl: default_2.ForwardRefExoticComponent<PaginationControlProps & default_2.RefAttributes<HTMLButtonElement>>;
1128
+
1129
+ declare type PaginationControlProps = RecursicaOverStyled<PaginationControlProps_2>;
1130
+
1131
+ declare const _PaginationDots: default_2.ForwardRefExoticComponent<PaginationDotsProps & default_2.RefAttributes<HTMLDivElement>>;
1132
+
1133
+ declare type PaginationDotsProps = RecursicaOverStyled<PaginationDotsProps_2>;
1134
+
1135
+ declare type PaginationEdgeProps<T extends default_2.ElementType> = RecursicaOverStyled<default_2.ComponentProps<T> & {
1136
+ /** If set to true, displays text labels alongside the icon. */
1137
+ withLabel?: boolean;
1138
+ icon?: any;
1139
+ }>;
1140
+
1141
+ declare const _PaginationFirst: default_2.ForwardRefExoticComponent<PaginationEdgeProps<(<C = "button">(props: PolymorphicComponentProps<C, PaginationEdgeProps_2>) => default_2.ReactElement) & Omit<default_2.FunctionComponent<(PaginationEdgeProps_2 & {
1142
+ component?: any;
1143
+ } & Omit<Omit<any, "ref">, "component" | keyof PaginationEdgeProps_2> & {
1144
+ ref?: any;
1145
+ renderRoot?: (props: any) => any;
1146
+ }) | (PaginationEdgeProps_2 & {
1147
+ component: default_2.ElementType;
1148
+ renderRoot?: (props: Record<string, any>) => any;
1149
+ })>, never> & Record<string, never>> & default_2.RefAttributes<HTMLButtonElement>>;
1150
+
1151
+ declare const PaginationIcon: ({ type, className, ...props }: React.ComponentProps<"svg"> & {
1152
+ type: PaginationIconType;
1153
+ }) => JSX.Element;
1154
+
1155
+ declare type PaginationIconType = "next" | "prev" | "first" | "last";
1156
+
1157
+ declare const _PaginationLast: default_2.ForwardRefExoticComponent<PaginationEdgeProps<(<C = "button">(props: PolymorphicComponentProps<C, PaginationEdgeProps_2>) => default_2.ReactElement) & Omit<default_2.FunctionComponent<(PaginationEdgeProps_2 & {
1158
+ component?: any;
1159
+ } & Omit<Omit<any, "ref">, "component" | keyof PaginationEdgeProps_2> & {
1160
+ ref?: any;
1161
+ renderRoot?: (props: any) => any;
1162
+ }) | (PaginationEdgeProps_2 & {
1163
+ component: default_2.ElementType;
1164
+ renderRoot?: (props: Record<string, any>) => any;
1165
+ })>, never> & Record<string, never>> & default_2.RefAttributes<HTMLButtonElement>>;
1166
+
1167
+ declare const _PaginationNext: default_2.ForwardRefExoticComponent<PaginationEdgeProps<(<C = "button">(props: PolymorphicComponentProps<C, PaginationEdgeProps_2>) => default_2.ReactElement) & Omit<default_2.FunctionComponent<(PaginationEdgeProps_2 & {
1168
+ component?: any;
1169
+ } & Omit<Omit<any, "ref">, "component" | keyof PaginationEdgeProps_2> & {
1170
+ ref?: any;
1171
+ renderRoot?: (props: any) => any;
1172
+ }) | (PaginationEdgeProps_2 & {
1173
+ component: default_2.ElementType;
1174
+ renderRoot?: (props: Record<string, any>) => any;
1175
+ })>, never> & Record<string, never>> & default_2.RefAttributes<HTMLButtonElement>>;
1176
+
1177
+ declare const _PaginationPrevious: default_2.ForwardRefExoticComponent<PaginationEdgeProps<(<C = "button">(props: PolymorphicComponentProps<C, PaginationEdgeProps_2>) => default_2.ReactElement) & Omit<default_2.FunctionComponent<(PaginationEdgeProps_2 & {
1178
+ component?: any;
1179
+ } & Omit<Omit<any, "ref">, "component" | keyof PaginationEdgeProps_2> & {
1180
+ ref?: any;
1181
+ renderRoot?: (props: any) => any;
1182
+ }) | (PaginationEdgeProps_2 & {
1183
+ component: default_2.ElementType;
1184
+ renderRoot?: (props: Record<string, any>) => any;
1185
+ })>, never> & Record<string, never>> & default_2.RefAttributes<HTMLButtonElement>>;
1186
+
1187
+ declare type PaginationProps = RecursicaOverStyled<PaginationProps_2 & RecursicaPaginationProps>;
1188
+
1189
+ declare const _PaginationRoot: default_2.ForwardRefExoticComponent<PaginationRootProps & default_2.RefAttributes<HTMLDivElement>>;
1190
+
1191
+ declare type PaginationRootProps = RecursicaOverStyled<PaginationRootProps_2>;
1192
+
1193
+ export declare const Panel: typeof rawComponents.Panel;
1194
+
1195
+ declare const Panel_2: PanelComponent;
1196
+
1197
+ /**
1198
+ * Recursica Panel component wrapping Mantine's Drawer.
1199
+ *
1200
+ * Panels slide in or expand from the edge of the screen to reveal
1201
+ * additional content or functionality. They are commonly used to provide
1202
+ * supplementary information, navigation options, or toolsets without
1203
+ * cluttering the main interface.
1204
+ *
1205
+ * ```tsx
1206
+ * <Panel opened={opened} onClose={close} title="Panel Title" placement="right">
1207
+ * <Panel.Body>
1208
+ * Content goes here
1209
+ * </Panel.Body>
1210
+ * </Panel>
1211
+ * ```
1212
+ *
1213
+ * Mantine Drawer sub-components available via dot-notation:
1214
+ * - `Panel.Header` — Top section with title and close button
1215
+ * - `Panel.Title` — Title text within the header
1216
+ * - `Panel.CloseButton` — Close button within the header
1217
+ * - `Panel.Body` — Scrollable body content area
1218
+ * - `Panel.Content` — Outer content container
1219
+ * - `Panel.Overlay` — Background overlay
1220
+ * - `Panel.Root` — Root element for advanced composition
1221
+ * - `Panel.Stack` — Stacked drawer context
1222
+ */
1223
+ declare const PanelBase: {
1224
+ ({ overStyled, placement, keepMounted, wrapHeaderText, ...rest }: PanelProps): JSX.Element;
1225
+ displayName: string;
1226
+ };
1227
+
1228
+ declare const PanelBody: ForwardRefExoticComponent<PanelBodyProps & RefAttributes<HTMLDivElement>>;
1229
+
1230
+ declare type PanelBodyProps = RecursicaOverStyled<DrawerBodyProps>;
1231
+
1232
+ declare const PanelCloseButton: ForwardRefExoticComponent<PanelCloseButtonProps & RefAttributes<HTMLButtonElement>>;
1233
+
1234
+ declare type PanelCloseButtonProps = RecursicaOverStyled<DrawerCloseButtonProps>;
1235
+
1236
+ declare type PanelComponent = typeof PanelBase & {
1237
+ Root: typeof PanelRoot;
1238
+ Overlay: typeof PanelOverlay;
1239
+ Content: typeof PanelContent;
1240
+ Header: typeof PanelHeader;
1241
+ Title: typeof PanelTitle;
1242
+ CloseButton: typeof PanelCloseButton;
1243
+ Body: typeof PanelBody;
1244
+ Stack: typeof Drawer.Stack;
1245
+ Footer: typeof PanelFooter_2;
1246
+ };
1247
+
1248
+ declare const PanelContent: ForwardRefExoticComponent<PanelContentProps & RefAttributes<HTMLDivElement>>;
1249
+
1250
+ declare type PanelContentProps = RecursicaOverStyled<DrawerContentProps>;
1251
+
1252
+ export declare const PanelFooter: typeof rawComponents.PanelFooter;
1253
+
1254
+ /**
1255
+ * Panel footer section with action buttons.
1256
+ * Separated from the body by a divider. Remains fixed at the bottom.
1257
+ * This is a Recursica-specific sub-component; Mantine Drawer does not
1258
+ * natively provide a footer.
1259
+ */
1260
+ declare const PanelFooter_2: ForwardRefExoticComponent<PanelFooterProps & RefAttributes<HTMLDivElement>>;
1261
+
1262
+ declare type PanelFooterProps = RecursicaOverStyled<React.HTMLAttributes<HTMLDivElement>>;
1263
+
1264
+ declare const PanelHeader: ForwardRefExoticComponent<PanelHeaderProps & RefAttributes<HTMLElement>>;
1265
+
1266
+ declare type PanelHeaderProps = RecursicaOverStyled<DrawerHeaderProps>;
1267
+
1268
+ declare const PanelOverlay: ForwardRefExoticComponent<PanelOverlayProps & RefAttributes<HTMLDivElement>>;
1269
+
1270
+ declare type PanelOverlayProps = RecursicaOverStyled<DrawerOverlayProps>;
1271
+
1272
+ declare type PanelProps = RecursicaOverStyled<RecursicaPanelProps>;
1273
+
1274
+ declare const PanelRoot: ForwardRefExoticComponent<PanelRootProps & RefAttributes<HTMLDivElement>>;
1275
+
1276
+ declare type PanelRootProps = RecursicaOverStyled<DrawerRootProps>;
1277
+
1278
+ declare const PanelTitle: ForwardRefExoticComponent<PanelTitleProps & RefAttributes<HTMLHeadingElement>>;
1279
+
1280
+ declare type PanelTitleProps = RecursicaOverStyled<DrawerTitleProps>;
1281
+
1282
+ /**
1283
+ * Recursica Card component wrapping Mantine's Card (Paper).
1284
+ *
1285
+ * Supports polymorphism via the `component` prop or `renderRoot` for custom element rendering.
1286
+ * Use dot-notation sub-components for structured card layouts.
1287
+ */
1288
+ declare const PolymorphicCard: (<C = "div">(props: PolymorphicComponentProps<C, CardProps>) => React.ReactElement) & Omit<FunctionComponent<((CardProps & {
1289
+ component?: any;
1290
+ }) & Omit<Omit<any, "ref">, "className" | "classNames" | "style" | "styles" | "vars" | "p" | "px" | "py" | "pt" | "pb" | "pl" | "pr" | "bg" | "c" | "opacity" | "ff" | "fz" | "fw" | "lts" | "ta" | "lh" | "fs" | "tt" | "td" | "bd" | "shadow" | "w" | "miw" | "maw" | "h" | "mih" | "mah" | "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "top" | "left" | "bottom" | "right" | "variant" | "children" | "radius" | "__vars" | "__size" | "hiddenFrom" | "visibleFrom" | "lightHidden" | "darkHidden" | "mod" | "ms" | "me" | "ps" | "pe" | "bdrs" | "bgsz" | "bgp" | "bgr" | "bga" | "pos" | "inset" | "display" | "flex" | "unstyled" | "attributes" | "spacing" | "overStyled" | "height" | "component" | "padding" | "withBorder" | "flexGrow" | "flexShrink" | "flexBasis" | "grow"> & {
1291
+ ref?: any;
1292
+ renderRoot?: (props: any) => any;
1293
+ }) | (CardProps & {
1294
+ component: React.ElementType;
1295
+ renderRoot?: (props: Record<string, any>) => any;
1296
+ })>, never> & {
1297
+ Section: typeof CardSection;
1298
+ Header: typeof CardHeader;
1299
+ Footer: typeof CardFooter;
1300
+ Content: typeof CardContent;
1301
+ };
1302
+
1303
+ export declare const Popover: typeof rawComponents.Popover;
1304
+
1305
+ declare const Popover_2: PopoverComponent;
1306
+
1307
+ declare const PopoverBase: {
1308
+ ({ overStyled, withBeak, position, ...rest }: PopoverProps): JSX.Element;
1309
+ displayName: string;
1310
+ };
1311
+
1312
+ declare type PopoverComponent = typeof PopoverBase & {
1313
+ Target: typeof PopoverTarget;
1314
+ Dropdown: typeof PopoverDropdown;
1315
+ };
1316
+
1317
+ declare const PopoverDropdown: {
1318
+ ({ overStyled, ...rest }: PopoverDropdownProps): JSX.Element;
1319
+ displayName: string;
1320
+ };
1321
+
1322
+ /** The dropdown panel displayed from the popover. */
1323
+ declare type PopoverDropdownProps = RecursicaOverStyled<PopoverDropdownProps_2>;
1324
+
1325
+ /**
1326
+ * Recursica Popover component wrapping Mantine's composable Popover.
1327
+ *
1328
+ * Displays a dropdown panel when the user clicks or interacts with a target element.
1329
+ * Uses the composable dot-notation pattern:
1330
+ * ```tsx
1331
+ * <Popover withBeak>
1332
+ * <Popover.Target>
1333
+ * <Button>Click me</Button>
1334
+ * </Popover.Target>
1335
+ * <Popover.Dropdown>
1336
+ * Content displayed in popover
1337
+ * </Popover.Dropdown>
1338
+ * </Popover>
1339
+ * ```
1340
+ */
1341
+ declare type PopoverProps = Omit<RecursicaOverStyled<Omit<PopoverProps_2, "position"> & RecursicaPopoverProps>, "position"> & {
1342
+ position?: PopoverProps_2["position"];
1343
+ };
1344
+
1345
+ declare const PopoverTarget: {
1346
+ (props: PopoverTargetProps): JSX.Element;
1347
+ displayName: string;
1348
+ };
1349
+
1350
+ /**
1351
+ * Wrapper for the element that triggers the popover.
1352
+ * Requires a single child element that supports ref forwarding.
1353
+ */
1354
+ declare type PopoverTargetProps = PopoverTargetProps_2;
1355
+
1356
+ export declare const Radio: typeof rawComponents.Radio;
1357
+
1358
+ declare const Radio_2: RadioComponent;
1359
+
1360
+ declare type RadioComponent = React.ForwardRefExoticComponent<RadioProps_2 & React.RefAttributes<HTMLInputElement>> & {
1361
+ Group: typeof RadioGroup_2;
1362
+ };
1363
+
1364
+ export declare const RadioGroup: typeof rawComponents.RadioGroup;
1365
+
1366
+ declare const RadioGroup_2: default_2.ForwardRefExoticComponent<RadioGroupProps & default_2.RefAttributes<HTMLDivElement>>;
1367
+
1368
+ declare type RadioGroupProps = RecursicaOverStyled<RecursicaRadioGroupProps>;
1369
+
1370
+ declare type RadioProps_2 = RecursicaOverStyled<RecursicaRadioPropsAlias>;
1371
+
1372
+ declare type RadioWrapperProps = Omit<RadioProps, "size" | "color" | "radius" | "iconColor" | "variant"> & RecursicaRadioProps & ReadOnlyControlProps & Pick<FormControlLayoutProps, "formLayout" | "labelSize" | "controlMaxWidth" | "controlMinWidth">;
1373
+
1374
+ declare namespace rawComponents {
1375
+ export {
1376
+ AccordionProps,
1377
+ AccordionItemWrapperProps,
1378
+ AccordionItem_2 as AccordionItem,
1379
+ AccordionControlWrapperProps,
1380
+ AccordionControl_2 as AccordionControl,
1381
+ AccordionPanelWrapperProps,
1382
+ AccordionPanel_2 as AccordionPanel,
1383
+ Accordion_2 as Accordion,
1384
+ AssistiveElementProps,
1385
+ AssistiveElement_2 as AssistiveElement,
1386
+ RecursicaAutoCompleteProps,
1387
+ AutoCompleteProps,
1388
+ AutoComplete_2 as AutoComplete,
1389
+ AvatarProps,
1390
+ Avatar_2 as Avatar,
1391
+ BadgeProps,
1392
+ Badge_2 as Badge,
1393
+ BreadcrumbProps,
1394
+ Breadcrumb_2 as Breadcrumb,
1395
+ ButtonProps,
1396
+ Button_2 as Button,
1397
+ CardProps,
1398
+ CardSectionProps,
1399
+ CardSection,
1400
+ CardHeaderProps,
1401
+ CardHeader,
1402
+ CardFooterProps,
1403
+ CardFooter,
1404
+ CardContentProps,
1405
+ CardContent,
1406
+ Card_2 as Card,
1407
+ CheckboxWrapperProps,
1408
+ RecursicaCheckboxPropsAlias,
1409
+ CheckboxProps_2 as CheckboxProps,
1410
+ Checkbox_2 as Checkbox,
1411
+ RecursicaCheckboxGroupProps,
1412
+ CheckboxGroupProps,
1413
+ CheckboxGroup_2 as CheckboxGroup,
1414
+ ChipProps,
1415
+ Chip_2 as Chip,
1416
+ ContainerProps,
1417
+ Container_2 as Container,
1418
+ RecursicaDatePickerProps,
1419
+ DatePickerProps,
1420
+ DatePicker_2 as DatePicker,
1421
+ RecursicaDropdownProps,
1422
+ DropdownProps,
1423
+ Dropdown_2 as Dropdown,
1424
+ RecursicaFileUploadItem,
1425
+ RecursicaFileInputProps,
1426
+ FileInputProps,
1427
+ FileInput_2 as FileInput,
1428
+ RecursicaFileUploadProps,
1429
+ FileUploadProps,
1430
+ FileUpload_2 as FileUpload,
1431
+ FlexProps,
1432
+ Flex_2 as Flex,
1433
+ FormControlLayoutProps,
1434
+ FormControlLayout_2 as FormControlLayout,
1435
+ GridProps,
1436
+ GridColProps,
1437
+ GridCol_2 as GridCol,
1438
+ Grid_2 as Grid,
1439
+ GroupProps,
1440
+ Group_2 as Group,
1441
+ HeadingProps,
1442
+ Heading_2 as Heading,
1443
+ HoverCardProps,
1444
+ HoverCardTargetProps,
1445
+ HoverCardDropdownProps,
1446
+ HoverCard_2 as HoverCard,
1447
+ LinkProps,
1448
+ Link_2 as Link,
1449
+ LoaderProps,
1450
+ Loader_2 as Loader,
1451
+ LabelProps,
1452
+ Label_2 as Label,
1453
+ MenuProps,
1454
+ MenuTargetProps,
1455
+ MenuDropdownProps,
1456
+ MenuItemProps,
1457
+ MenuDividerProps,
1458
+ MenuLabelProps,
1459
+ MenuSubProps,
1460
+ MenuSubTargetProps,
1461
+ MenuSubItemProps,
1462
+ MenuSubDropdownProps,
1463
+ Menu_2 as Menu,
1464
+ ModalProps,
1465
+ ModalFooterProps,
1466
+ ModalBodyProps,
1467
+ ModalRootProps,
1468
+ ModalOverlayProps,
1469
+ ModalContentProps,
1470
+ ModalHeaderProps,
1471
+ ModalTitleProps,
1472
+ ModalCloseButtonProps,
1473
+ Modal_2 as Modal,
1474
+ RecursicaNumberInputProps,
1475
+ NumberInputProps_2 as NumberInputProps,
1476
+ NumberInput_2 as NumberInput,
1477
+ PaginationProps,
1478
+ PaginationRootProps,
1479
+ PaginationEdgeProps,
1480
+ PaginationControlProps,
1481
+ PaginationDotsProps,
1482
+ Pagination_2 as Pagination,
1483
+ RecursicaPanelProps,
1484
+ PanelProps,
1485
+ PanelFooterProps,
1486
+ PanelFooter_2 as PanelFooter,
1487
+ PanelRootProps,
1488
+ PanelRoot,
1489
+ PanelOverlayProps,
1490
+ PanelOverlay,
1491
+ PanelContentProps,
1492
+ PanelContent,
1493
+ PanelHeaderProps,
1494
+ PanelHeader,
1495
+ PanelTitleProps,
1496
+ PanelTitle,
1497
+ PanelCloseButtonProps,
1498
+ PanelCloseButton,
1499
+ PanelBodyProps,
1500
+ PanelBody,
1501
+ Panel_2 as Panel,
1502
+ PopoverProps,
1503
+ PopoverTargetProps,
1504
+ PopoverDropdownProps,
1505
+ Popover_2 as Popover,
1506
+ RadioWrapperProps,
1507
+ RecursicaRadioPropsAlias,
1508
+ RadioProps_2 as RadioProps,
1509
+ Radio_2 as Radio,
1510
+ RecursicaRadioGroupProps,
1511
+ RadioGroupProps,
1512
+ RadioGroup_2 as RadioGroup,
1513
+ RecursicaReadOnlyFieldProps,
1514
+ ReadOnlyFieldProps,
1515
+ ReadOnlyField_2 as ReadOnlyField,
1516
+ WithReadOnlyWrapperProps,
1517
+ WithReadOnlyWrapper,
1518
+ RecursicaReadOnlyTextFieldProps,
1519
+ ReadOnlyTextFieldProps,
1520
+ ReadOnlyTextField,
1521
+ ReadOnlySwitchField,
1522
+ ReadOnlyBooleanField,
1523
+ SegmentedControlProps,
1524
+ SegmentedControl_2 as SegmentedControl,
1525
+ RecursicaSliderProps,
1526
+ SliderProps_2 as SliderProps,
1527
+ Slider_2 as Slider,
1528
+ StackProps,
1529
+ Stack_2 as Stack,
1530
+ RecursicaStepperPropsExtended,
1531
+ StepperProps_2 as StepperProps,
1532
+ StepperStepProps,
1533
+ Stepper_2 as Stepper,
1534
+ SwitchWrapperProps,
1535
+ RecursicaSwitchPropsAlias,
1536
+ SwitchProps_2 as SwitchProps,
1537
+ Switch_2 as Switch,
1538
+ RecursicaSwitchGroupProps,
1539
+ SwitchGroupProps,
1540
+ SwitchGroup_2 as SwitchGroup,
1541
+ TableProps,
1542
+ TableTheadProps,
1543
+ TableThead,
1544
+ TableTbodyProps,
1545
+ TableTbody,
1546
+ TableTrProps,
1547
+ TableTr,
1548
+ TableThProps,
1549
+ TableTh,
1550
+ TableTdProps,
1551
+ TableTd,
1552
+ TableTfootProps,
1553
+ TableTfoot,
1554
+ TableCaptionProps,
1555
+ TableCaption,
1556
+ TableScrollContainerProps,
1557
+ TableScrollContainer,
1558
+ Table_2 as Table,
1559
+ RecursicaTabsPropsExtended,
1560
+ TabsProps_2 as TabsProps,
1561
+ TabsListProps,
1562
+ TabsTabProps,
1563
+ TabsPanelProps,
1564
+ Tabs_2 as Tabs,
1565
+ TextProps,
1566
+ Text_3 as Text,
1567
+ RecursicaTextAreaProps,
1568
+ TextAreaProps,
1569
+ TextArea_2 as TextArea,
1570
+ RecursicaTextFieldProps,
1571
+ TextFieldProps,
1572
+ TextField_2 as TextField,
1573
+ RecursicaTimePickerProps,
1574
+ TimePickerProps_2 as TimePickerProps,
1575
+ TimePicker_2 as TimePicker,
1576
+ TimelineProps,
1577
+ Timeline_2 as Timeline,
1578
+ TimelineItemProps,
1579
+ TimelineItem_2 as TimelineItem,
1580
+ ToastProps,
1581
+ Toast_2 as Toast,
1582
+ TooltipProps,
1583
+ TooltipFloatingProps,
1584
+ TooltipFloating,
1585
+ Tooltip_2 as Tooltip,
1586
+ RecursicaTransferListItem,
1587
+ RecursicaTransferListData,
1588
+ RecursicaTransferListProps,
1589
+ TransferListProps,
1590
+ TransferList_2 as TransferList,
1591
+ TreeProps,
1592
+ Tree_2 as Tree
1593
+ }
1594
+ }
1595
+
1596
+ declare const ReadOnlyBooleanField: default_2.FC<{
1597
+ checked: boolean;
1598
+ label?: default_2.ReactNode;
1599
+ }>;
1600
+
1601
+ export declare const ReadOnlyField: typeof rawComponents.ReadOnlyField;
1602
+
1603
+ /**
1604
+ * A native generic form control wrapper exclusively responsible for displaying fixed data.
1605
+ * Internally maps to structural ReadOnly primitive blocks bridging standard `FormControlWrapper` layouts natively.
1606
+ */
1607
+ declare const ReadOnlyField_2: default_2.ForwardRefExoticComponent<ReadOnlyFieldProps & default_2.RefAttributes<HTMLDivElement>>;
1608
+
1609
+ declare type ReadOnlyFieldProps = RecursicaOverStyled<RecursicaReadOnlyFieldProps>;
1610
+
1611
+ declare const ReadOnlySwitchField: default_2.FC<{
1612
+ checked: boolean;
1613
+ label?: default_2.ReactNode;
1614
+ }>;
1615
+
1616
+ declare const ReadOnlyTextField: default_2.FC<ReadOnlyTextFieldProps>;
1617
+
1618
+ declare type ReadOnlyTextFieldProps = RecursicaOverStyled<RecursicaReadOnlyTextFieldProps>;
1619
+
1620
+ declare interface RecursicaAutoCompleteProps extends Omit<AutocompleteProps, "size" | "variant" | "radius" | "wrapperProps" | "data" | "defaultValue" | "value">, Pick<InputWrapperProps, "label" | "error" | "required" | "withAsterisk" | "id">, Omit<RecursicaFormControlWrapperProps, "controlMaxWidth" | "controlMinWidth">, ReadOnlyControlProps, RecursicaAutocompleteProps {
1621
+ /** Current input value */
1622
+ value?: string;
1623
+ }
1624
+
1625
+ export declare interface RecursicaCheckboxGroupProps extends Omit<CheckboxGroupProps_2, "size" | "labelProps" | "defaultValue" | "value">, Omit<RecursicaFormControlWrapperProps, "controlMaxWidth" | "controlMinWidth">, ReadOnlyControlProps, RecursicaCheckboxGroupProps_2 {
1626
+ }
1627
+
1628
+ declare type RecursicaCheckboxPropsAlias = RequireAccessibleLabel<CheckboxWrapperProps>;
1629
+
1630
+ export declare interface RecursicaDatePickerProps extends Omit<DatePickerInputProps, "size" | "variant" | "radius" | "wrapperProps" | "label" | "error" | "required" | "withAsterisk" | "id" | "description">, Pick<DatePickerInputProps, "label" | "error" | "required" | "withAsterisk" | "id">, Omit<RecursicaFormControlWrapperProps, "controlMaxWidth" | "controlMinWidth">, ReadOnlyControlProps, RecursicaDatePickerProps_2 {
1631
+ }
1632
+
1633
+ export declare interface RecursicaDropdownProps extends Omit<SelectProps, "size" | "variant" | "radius" | "wrapperProps" | "data" | "searchable">, Omit<RecursicaFormControlWrapperProps, "controlMaxWidth" | "controlMinWidth">, ReadOnlyControlProps, RecursicaDropdownProps_2 {
1634
+ }
1635
+
1636
+ declare interface RecursicaFileInputProps extends Omit<default_2.HTMLAttributes<HTMLDivElement>, "children" | "onDrop" | "onChange">, Pick<InputWrapperProps, "label" | "error" | "required" | "withAsterisk" | "id">, Omit<RecursicaFormControlWrapperProps, "controlMaxWidth" | "controlMinWidth">, RecursicaFileInputProps_2 {
1637
+ }
1638
+
1639
+ declare interface RecursicaFileUploadProps extends Omit<default_2.HTMLAttributes<HTMLDivElement>, "children" | "onDrop" | "onChange">, Pick<InputWrapperProps, "label" | "error" | "required" | "withAsterisk" | "id">, Omit<RecursicaFormControlWrapperProps, "controlMaxWidth" | "controlMinWidth">, RecursicaFileUploadProps_2 {
1640
+ }
1641
+
1642
+ export declare interface RecursicaNumberInputProps extends Omit<NumberInputProps, "size" | "variant" | "radius" | "wrapperProps" | "classNames" | "styles">, Pick<RecursicaFormControlWrapperProps, "assistiveText" | "assistiveWithIcon" | "formLayout" | "labelSize" | "labelAlignment" | "labelOptionalText" | "labelWithEditIcon" | "onLabelEditClick">, ReadOnlyControlProps, RecursicaNumberInputProps_2 {
1643
+ }
1644
+
1645
+ /**
1646
+ * Recursica Panel root props. Extends Mantine Drawer.
1647
+ */
1648
+ declare interface RecursicaPanelProps extends Omit<DrawerProps, "size" | "styles" | "classNames" | "style" | "position" | "opened">, RecursicaPanelProps_2 {
1649
+ }
1650
+
1651
+ export declare interface RecursicaRadioGroupProps extends Omit<RadioGroupProps_2, "size" | "labelProps" | "defaultValue" | "value">, Omit<RecursicaFormControlWrapperProps, "controlMaxWidth" | "controlMinWidth">, ReadOnlyControlProps, RecursicaRadioGroupProps_2 {
1652
+ }
1653
+
1654
+ declare type RecursicaRadioPropsAlias = RequireAccessibleLabel<RadioWrapperProps>;
1655
+
1656
+ export declare interface RecursicaReadOnlyFieldProps extends Omit<FormControlWrapperProps, "children" | "overStyled" | "controlMaxWidth" | "controlMinWidth">, Pick<ReadOnlyControlProps, "emptyValueComponent">, RecursicaReadOnlyFieldProps_2 {
1657
+ }
1658
+
1659
+ export declare interface RecursicaReadOnlyTextFieldProps {
1660
+ /** The value strictly rendered as text output */
1661
+ value?: any;
1662
+ }
1663
+
1664
+ export declare interface RecursicaSliderProps extends Omit<SliderProps, "size" | "variant" | "radius" | "wrapperProps" | "classNames" | "styles" | "label" | "value" | "defaultValue" | "onChange" | "onChangeEnd">, Omit<RecursicaFormControlWrapperProps, "controlMaxWidth" | "controlMinWidth">, Pick<InputWrapperProps, "error" | "required" | "withAsterisk">, ReadOnlyControlProps, RecursicaSliderProps_2 {
1665
+ }
1666
+
1667
+ declare interface RecursicaStepperPropsExtended extends Omit<StepperProps, "size">, RecursicaStepperProps {
1668
+ }
1669
+
1670
+ export declare interface RecursicaSwitchGroupProps extends Omit<SwitchGroupProps_2, "size" | "labelProps" | "defaultValue" | "value">, Omit<RecursicaFormControlWrapperProps, "controlMaxWidth" | "controlMinWidth">, ReadOnlyControlProps, RecursicaSwitchGroupProps_2 {
1671
+ }
1672
+
1673
+ declare type RecursicaSwitchPropsAlias = RequireAccessibleLabel<SwitchWrapperProps>;
1674
+
1675
+ declare interface RecursicaTabsPropsExtended extends Omit<TabsProps, "variant">, RecursicaTabsProps {
1676
+ }
1677
+
1678
+ export declare interface RecursicaTextAreaProps extends Omit<TextareaProps, "size" | "variant" | "radius" | "wrapperProps">, Omit<RecursicaFormControlWrapperProps, "controlMaxWidth" | "controlMinWidth">, ReadOnlyControlProps, RecursicaTextAreaProps_2 {
1679
+ }
1680
+
1681
+ export declare interface RecursicaTextFieldProps extends Omit<InputProps, "size" | "variant" | "radius" | "wrapperProps">, Pick<InputWrapperProps, "label" | "error" | "required" | "withAsterisk" | "id">, Omit<default_2.ComponentPropsWithoutRef<"input">, "size" | "style" | "className" | "id">, Omit<RecursicaFormControlWrapperProps, "controlMaxWidth" | "controlMinWidth">, ReadOnlyControlProps, RecursicaTextFieldProps_2 {
1682
+ }
1683
+
1684
+ export declare interface RecursicaTimePickerProps extends Omit<TimePickerProps, "size" | "variant" | "radius" | "wrapperProps" | "format" | "min" | "max" | "amPmInputLabel" | "amPmLabels" | "amPmSelectProps" | "amPmRef" | "withDropdown" | "presets" | "maxDropdownContentHeight" | "scrollAreaProps" | "reverseTimeControlsList" | "popoverProps">, Pick<InputWrapperProps, "label" | "error" | "required" | "withAsterisk" | "id">, Omit<RecursicaFormControlWrapperProps, "controlMaxWidth" | "controlMinWidth">, ReadOnlyControlProps, RecursicaTimePickerProps_2 {
1685
+ }
1686
+
1687
+ declare interface RecursicaTransferListProps extends Omit<FormControlWrapperProps, "children" | "overStyled" | "controlMaxWidth" | "controlMinWidth" | "onChange">, ReadOnlyControlProps, RecursicaTransferListProps_2 {
1688
+ /** Disables the whole control */
1689
+ disabled?: boolean;
1690
+ }
1691
+
1692
+ export declare const SegmentedControl: typeof rawComponents.SegmentedControl;
1693
+
1694
+ /**
1695
+ * Recursica SegmentedControl component wrapping Mantine's SegmentedControl.
1696
+ */
1697
+ declare const SegmentedControl_2: ForwardRefExoticComponent<SegmentedControlProps & RefAttributes<HTMLDivElement>>;
1698
+
1699
+ declare type SegmentedControlProps = RecursicaOverStyled<Omit<SegmentedControlProps_2, "variant" | "size" | "radius" | "color" | "classNames" | "className" | "data"> & {
1700
+ className?: string;
1701
+ classNames?: Partial<Record<string, string>>;
1702
+ } & RecursicaSegmentedControlProps>;
1703
+
1704
+ export declare const Slider: typeof rawComponents.Slider;
1705
+
1706
+ /**
1707
+ * Recursica Slider component wrapping Mantine's Slider (or, when `value`/`defaultValue` is a
1708
+ * `[number, number]` tuple, Mantine's two-thumb RangeSlider).
1709
+ *
1710
+ * Implements a bidirectional text input field next to the slider track, responsive layouts,
1711
+ * custom typography-bound min/max labels (optionally overridden via `minLabel`/`maxLabel`),
1712
+ * optional leading/trailing icons, and an explicit read-only layout.
1713
+ */
1714
+ declare const Slider_2: default_2.ForwardRefExoticComponent<SliderProps_2 & default_2.RefAttributes<HTMLDivElement>>;
1715
+
1716
+ declare type SliderProps_2 = RecursicaOverStyled<RecursicaSliderProps>;
1717
+
1718
+ export declare const Stack: (<C = "div">(props: PolymorphicComponentProps<C, rawComponents.StackProps>) => React.ReactElement) & Omit<FunctionComponent<(Omit<StackProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
1719
+ m?: string | number | RecursicaSpacing;
1720
+ mx?: string | number | RecursicaSpacing;
1721
+ my?: string | number | RecursicaSpacing;
1722
+ mt?: string | number | RecursicaSpacing;
1723
+ mb?: string | number | RecursicaSpacing;
1724
+ ml?: string | number | RecursicaSpacing;
1725
+ mr?: string | number | RecursicaSpacing;
1726
+ gap?: string | number | RecursicaSpacing;
1727
+ rowGap?: string | number | RecursicaSpacing;
1728
+ columnGap?: string | number | RecursicaSpacing;
1729
+ gutter?: string | number | RecursicaSpacing;
1730
+ spacing?: string | number | RecursicaSpacing;
1731
+ } & {
1732
+ component?: any;
1733
+ } & Omit<Omit<any, "ref">, "className" | "classNames" | "style" | "styles" | "vars" | "p" | "px" | "py" | "pt" | "pb" | "pl" | "pr" | "bg" | "c" | "opacity" | "ff" | "fz" | "fw" | "lts" | "ta" | "lh" | "fs" | "tt" | "td" | "bd" | "w" | "miw" | "maw" | "h" | "mih" | "mah" | "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "top" | "left" | "bottom" | "right" | "key" | "defaultValue" | "variant" | "onChange" | "slot" | "title" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "popover" | "popoverTargetAction" | "popoverTarget" | "inert" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onScrollEnd" | "onScrollEndCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onToggle" | "onBeforeToggle" | "onTransitionCancel" | "onTransitionCancelCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "onTransitionRun" | "onTransitionRunCapture" | "onTransitionStart" | "onTransitionStartCapture" | "__vars" | "__size" | "hiddenFrom" | "visibleFrom" | "lightHidden" | "darkHidden" | "mod" | "ms" | "me" | "ps" | "pe" | "bdrs" | "bgsz" | "bgp" | "bgr" | "bga" | "pos" | "inset" | "display" | "flex" | "unstyled" | "attributes" | "spacing" | "justify" | "component" | "align"> & {
1734
+ ref?: any;
1735
+ renderRoot?: (props: any) => any;
1736
+ }) | (Omit<StackProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
1737
+ m?: string | number | RecursicaSpacing;
1738
+ mx?: string | number | RecursicaSpacing;
1739
+ my?: string | number | RecursicaSpacing;
1740
+ mt?: string | number | RecursicaSpacing;
1741
+ mb?: string | number | RecursicaSpacing;
1742
+ ml?: string | number | RecursicaSpacing;
1743
+ mr?: string | number | RecursicaSpacing;
1744
+ gap?: string | number | RecursicaSpacing;
1745
+ rowGap?: string | number | RecursicaSpacing;
1746
+ columnGap?: string | number | RecursicaSpacing;
1747
+ gutter?: string | number | RecursicaSpacing;
1748
+ spacing?: string | number | RecursicaSpacing;
1749
+ } & {
1750
+ component: React.ElementType;
1751
+ renderRoot?: (props: Record<string, any>) => any;
1752
+ })>, never> & Record<string, never>;
1753
+
1754
+ declare const Stack_2: (<C = "div">(props: PolymorphicComponentProps<C, StackProps>) => React.ReactElement) & Omit<FunctionComponent<(Omit<StackProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
1755
+ m?: string | number | RecursicaSpacing;
1756
+ mx?: string | number | RecursicaSpacing;
1757
+ my?: string | number | RecursicaSpacing;
1758
+ mt?: string | number | RecursicaSpacing;
1759
+ mb?: string | number | RecursicaSpacing;
1760
+ ml?: string | number | RecursicaSpacing;
1761
+ mr?: string | number | RecursicaSpacing;
1762
+ gap?: string | number | RecursicaSpacing;
1763
+ rowGap?: string | number | RecursicaSpacing;
1764
+ columnGap?: string | number | RecursicaSpacing;
1765
+ gutter?: string | number | RecursicaSpacing;
1766
+ spacing?: string | number | RecursicaSpacing;
1767
+ } & {
1768
+ component?: any;
1769
+ } & Omit<Omit<any, "ref">, "className" | "classNames" | "style" | "styles" | "vars" | "p" | "px" | "py" | "pt" | "pb" | "pl" | "pr" | "bg" | "c" | "opacity" | "ff" | "fz" | "fw" | "lts" | "ta" | "lh" | "fs" | "tt" | "td" | "bd" | "w" | "miw" | "maw" | "h" | "mih" | "mah" | "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "top" | "left" | "bottom" | "right" | "key" | "defaultValue" | "variant" | "onChange" | "slot" | "title" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "popover" | "popoverTargetAction" | "popoverTarget" | "inert" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onScrollEnd" | "onScrollEndCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onToggle" | "onBeforeToggle" | "onTransitionCancel" | "onTransitionCancelCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "onTransitionRun" | "onTransitionRunCapture" | "onTransitionStart" | "onTransitionStartCapture" | "__vars" | "__size" | "hiddenFrom" | "visibleFrom" | "lightHidden" | "darkHidden" | "mod" | "ms" | "me" | "ps" | "pe" | "bdrs" | "bgsz" | "bgp" | "bgr" | "bga" | "pos" | "inset" | "display" | "flex" | "unstyled" | "attributes" | "spacing" | "justify" | "component" | "align"> & {
1770
+ ref?: any;
1771
+ renderRoot?: (props: any) => any;
1772
+ }) | (Omit<StackProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
1773
+ m?: string | number | RecursicaSpacing;
1774
+ mx?: string | number | RecursicaSpacing;
1775
+ my?: string | number | RecursicaSpacing;
1776
+ mt?: string | number | RecursicaSpacing;
1777
+ mb?: string | number | RecursicaSpacing;
1778
+ ml?: string | number | RecursicaSpacing;
1779
+ mr?: string | number | RecursicaSpacing;
1780
+ gap?: string | number | RecursicaSpacing;
1781
+ rowGap?: string | number | RecursicaSpacing;
1782
+ columnGap?: string | number | RecursicaSpacing;
1783
+ gutter?: string | number | RecursicaSpacing;
1784
+ spacing?: string | number | RecursicaSpacing;
1785
+ } & {
1786
+ component: React.ElementType;
1787
+ renderRoot?: (props: Record<string, any>) => any;
1788
+ })>, never> & Record<string, never>;
1789
+
1790
+ /**
1791
+ * Stack flex layout wrapper.
1792
+ *
1793
+ * Note: Unlike complex UI components, primitive layout components (Flex, Stack, Group, Container)
1794
+ * DO NOT use the `RecursicaOverStyled` gatekeeper. Developers must be able to freely pass
1795
+ * width, height, padding, margins, and flexbox alignment props to construct structural layouts.
1796
+ *
1797
+ * No formal Recursica prop contract here: this simply passes through Mantine's own
1798
+ * `StackProps` (gap/align/justify are all native to Mantine), layered only with rec-
1799
+ * spacing token support via `WithRecursicaSpacing`.
1800
+ */
1801
+ declare type StackProps = WithRecursicaSpacing<StackProps_2>;
1802
+
1803
+ export declare const Stepper: typeof rawComponents.Stepper;
1804
+
1805
+ declare const _Stepper: default_2.ForwardRefExoticComponent<StepperProps_2 & default_2.RefAttributes<HTMLDivElement>>;
1806
+
1807
+ declare const Stepper_2: typeof _Stepper & {
1808
+ Step: typeof _StepperStep;
1809
+ Completed: typeof Stepper_3.Completed;
1810
+ };
1811
+
1812
+ declare type StepperProps_2 = RecursicaOverStyled<RecursicaStepperPropsExtended>;
1813
+
1814
+ declare const _StepperStep: default_2.ForwardRefExoticComponent<StepperStepProps & default_2.RefAttributes<HTMLButtonElement>>;
1815
+
1816
+ declare type StepperStepProps = RecursicaOverStyled<StepperStepProps_2>;
1817
+
1818
+ export declare const Switch: typeof rawComponents.Switch;
1819
+
1820
+ declare const Switch_2: SwitchComponent;
1821
+
1822
+ declare type SwitchComponent = React.ForwardRefExoticComponent<SwitchProps_2 & React.RefAttributes<HTMLInputElement>> & {
1823
+ Group: typeof SwitchGroup_2;
1824
+ };
1825
+
1826
+ export declare const SwitchGroup: typeof rawComponents.SwitchGroup;
1827
+
1828
+ declare const SwitchGroup_2: default_2.ForwardRefExoticComponent<SwitchGroupProps & default_2.RefAttributes<HTMLDivElement>>;
1829
+
1830
+ declare type SwitchGroupProps = RecursicaOverStyled<RecursicaSwitchGroupProps>;
1831
+
1832
+ declare type SwitchProps_2 = RecursicaOverStyled<RecursicaSwitchPropsAlias>;
1833
+
1834
+ declare type SwitchWrapperProps = Omit<SwitchProps, "size" | "color" | "radius" | "variant"> & RecursicaSwitchProps & ReadOnlyControlProps & Pick<FormControlLayoutProps, "formLayout" | "labelSize" | "controlMaxWidth" | "controlMinWidth">;
1835
+
1836
+ export declare const Table: typeof rawComponents.Table;
1837
+
1838
+ declare const Table_2: TableComponent;
1839
+
1840
+ declare const TableBase: ForwardRefExoticComponent<TableProps & RefAttributes<HTMLTableElement>>;
1841
+
1842
+ declare const TableCaption: ForwardRefExoticComponent<TableCaptionProps & RefAttributes<HTMLTableCaptionElement>>;
1843
+
1844
+ declare type TableCaptionProps = RecursicaOverStyled<TableCaptionProps_2>;
1845
+
1846
+ declare type TableComponent = typeof TableBase & {
1847
+ Thead: typeof TableThead;
1848
+ Tbody: typeof TableTbody;
1849
+ Tr: typeof TableTr;
1850
+ Th: typeof TableTh;
1851
+ Td: typeof TableTd;
1852
+ Tfoot: typeof TableTfoot;
1853
+ Caption: typeof TableCaption;
1854
+ ScrollContainer: typeof TableScrollContainer;
1855
+ };
1856
+
1857
+ declare type TableProps = RecursicaOverStyled<TableProps_2 & RecursicaTableProps>;
1858
+
1859
+ declare const TableScrollContainer: ForwardRefExoticComponent<TableScrollContainerProps & RefAttributes<HTMLDivElement>>;
1860
+
1861
+ declare type TableScrollContainerProps = RecursicaOverStyled<TableScrollContainerProps_2>;
1862
+
1863
+ declare const TableTbody: ForwardRefExoticComponent<TableTbodyProps & RefAttributes<HTMLTableSectionElement>>;
1864
+
1865
+ declare type TableTbodyProps = RecursicaOverStyled<TableTbodyProps_2>;
1866
+
1867
+ declare const TableTd: ForwardRefExoticComponent<TableTdProps & RefAttributes<HTMLTableCellElement>>;
1868
+
1869
+ declare type TableTdProps = RecursicaOverStyled<Omit<TableTdProps_2, "children"> & RecursicaTableCellProps>;
1870
+
1871
+ declare const TableTfoot: ForwardRefExoticComponent<TableTfootProps & RefAttributes<HTMLTableSectionElement>>;
1872
+
1873
+ declare type TableTfootProps = RecursicaOverStyled<TableTfootProps_2>;
1874
+
1875
+ declare const TableTh: ForwardRefExoticComponent<TableThProps & RefAttributes<HTMLTableCellElement>>;
1876
+
1877
+ declare const TableThead: ForwardRefExoticComponent<TableTheadProps & RefAttributes<HTMLTableSectionElement>>;
1878
+
1879
+ declare type TableTheadProps = RecursicaOverStyled<TableTheadProps_2>;
1880
+
1881
+ declare type TableThProps = RecursicaOverStyled<Omit<TableThProps_2, "children"> & RecursicaTableHeaderCellProps>;
1882
+
1883
+ declare const TableTr: ForwardRefExoticComponent<TableTrProps & RefAttributes<HTMLTableRowElement>>;
1884
+
1885
+ declare type TableTrProps = RecursicaOverStyled<Omit<TableTrProps_2, "children"> & RecursicaTableRowProps>;
1886
+
1887
+ export declare const Tabs: typeof rawComponents.Tabs;
1888
+
1889
+ declare const _Tabs: ForwardRefExoticComponent<TabsProps_2 & RefAttributes<HTMLDivElement>>;
1890
+
1891
+ declare const Tabs_2: typeof _Tabs & {
1892
+ List: typeof _TabsList;
1893
+ Tab: typeof _TabsTab;
1894
+ Panel: typeof _TabsPanel;
1895
+ };
1896
+
1897
+ declare const _TabsList: ForwardRefExoticComponent<TabsListProps & RefAttributes<HTMLDivElement>>;
1898
+
1899
+ declare type TabsListProps = RecursicaOverStyled<TabsListProps_2>;
1900
+
1901
+ declare const _TabsPanel: ForwardRefExoticComponent<TabsPanelProps & RefAttributes<HTMLDivElement>>;
1902
+
1903
+ declare type TabsPanelProps = RecursicaOverStyled<TabsPanelProps_2>;
1904
+
1905
+ declare type TabsProps_2 = RecursicaOverStyled<RecursicaTabsPropsExtended>;
1906
+
1907
+ declare const _TabsTab: ForwardRefExoticComponent<TabsTabProps & RefAttributes<HTMLButtonElement>>;
1908
+
1909
+ declare type TabsTabProps = RecursicaOverStyled<TabsTabProps_2>;
1910
+
1911
+ declare const Text_2: (<C = "p">(props: PolymorphicComponentProps<C, rawComponents.TextProps>) => React.ReactElement) & Omit<FunctionComponent<((rawComponents.TextProps & {
1912
+ component?: any;
1913
+ }) & Omit<Omit<any, "ref">, "className" | "classNames" | "style" | "styles" | "vars" | "p" | "px" | "py" | "pt" | "pb" | "pl" | "pr" | "bg" | "c" | "opacity" | "ff" | "fz" | "fw" | "lts" | "ta" | "lh" | "fs" | "tt" | "td" | "bd" | "w" | "miw" | "maw" | "h" | "mih" | "mah" | "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "top" | "left" | "bottom" | "right" | "variant" | "span" | "color" | "children" | "__vars" | "__size" | "hiddenFrom" | "visibleFrom" | "lightHidden" | "darkHidden" | "mod" | "ms" | "me" | "ps" | "pe" | "bdrs" | "bgsz" | "bgp" | "bgr" | "bga" | "pos" | "inset" | "display" | "flex" | "unstyled" | "attributes" | "spacing" | "overStyled" | "inherit" | "inline" | "size" | "__staticSelector" | "component" | "gradient" | "lineClamp" | "truncate"> & {
1914
+ ref?: any;
1915
+ renderRoot?: (props: any) => any;
1916
+ }) | (rawComponents.TextProps & {
1917
+ component: React.ElementType;
1918
+ renderRoot?: (props: Record<string, any>) => any;
1919
+ })>, never> & Record<string, never>;
1920
+ export { Text_2 as Text }
1921
+
1922
+ /**
1923
+ * A generalized typographical wrapper limiting text properties to bounded Recursica UI-kit tokens inherently.
1924
+ * Do not use for semantic headings; use the explicit `<Heading>` component for `<h1>` - `<h6>`.
1925
+ *
1926
+ * Supports polymorphism via the `component` prop or `renderRoot` for custom element rendering.
1927
+ * @example
1928
+ * ```tsx
1929
+ * <Text component="span">Inline text</Text>
1930
+ * <Text component="label" htmlFor="input-id">Label text</Text>
1931
+ * ```
1932
+ */
1933
+ declare const Text_3: (<C = "p">(props: PolymorphicComponentProps<C, TextProps>) => React.ReactElement) & Omit<FunctionComponent<((TextProps & {
1934
+ component?: any;
1935
+ }) & Omit<Omit<any, "ref">, "className" | "classNames" | "style" | "styles" | "vars" | "p" | "px" | "py" | "pt" | "pb" | "pl" | "pr" | "bg" | "c" | "opacity" | "ff" | "fz" | "fw" | "lts" | "ta" | "lh" | "fs" | "tt" | "td" | "bd" | "w" | "miw" | "maw" | "h" | "mih" | "mah" | "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "top" | "left" | "bottom" | "right" | "variant" | "span" | "color" | "children" | "__vars" | "__size" | "hiddenFrom" | "visibleFrom" | "lightHidden" | "darkHidden" | "mod" | "ms" | "me" | "ps" | "pe" | "bdrs" | "bgsz" | "bgp" | "bgr" | "bga" | "pos" | "inset" | "display" | "flex" | "unstyled" | "attributes" | "spacing" | "overStyled" | "inherit" | "inline" | "size" | "__staticSelector" | "component" | "gradient" | "lineClamp" | "truncate"> & {
1936
+ ref?: any;
1937
+ renderRoot?: (props: any) => any;
1938
+ }) | (TextProps & {
1939
+ component: React.ElementType;
1940
+ renderRoot?: (props: Record<string, any>) => any;
1941
+ })>, never> & Record<string, never>;
1942
+
1943
+ export declare const TextArea: typeof rawComponents.TextArea;
1944
+
1945
+ declare const TextArea_2: default_2.ForwardRefExoticComponent<TextAreaProps & default_2.RefAttributes<HTMLTextAreaElement>>;
1946
+
1947
+ declare type TextAreaProps = RecursicaOverStyled<RecursicaTextAreaProps>;
1948
+
1949
+ export declare const TextField: typeof rawComponents.TextField;
1950
+
1951
+ declare const TextField_2: default_2.ForwardRefExoticComponent<TextFieldProps & default_2.RefAttributes<HTMLInputElement>>;
1952
+
1953
+ declare type TextFieldProps = RecursicaOverStyled<RecursicaTextFieldProps>;
1954
+
1955
+ declare type TextProps = RecursicaOverStyled<Omit<TextProps_2, "variant"> & RecursicaTextProps>;
1956
+
1957
+ export declare const Timeline: typeof rawComponents.Timeline;
1958
+
1959
+ declare const Timeline_2: TimelineComponent;
1960
+
1961
+ declare interface TimelineComponent extends default_2.ForwardRefExoticComponent<TimelineProps & default_2.RefAttributes<HTMLDivElement>> {
1962
+ Item: typeof TimelineItem_2;
1963
+ }
1964
+
1965
+ export declare const TimelineItem: typeof rawComponents.TimelineItem;
1966
+
1967
+ /**
1968
+ * The individual item component for the Timeline.
1969
+ *
1970
+ * **Recursica Abstract:**
1971
+ * The `Timeline.Item` has been extended to support a `timestamp` string natively,
1972
+ * rendering it below the body content. It also accepts a `bulletVariant` to morph
1973
+ * the structural dimensions of the node circle automatically.
1974
+ */
1975
+ declare const TimelineItem_2: default_2.ForwardRefExoticComponent<TimelineItemProps & default_2.RefAttributes<HTMLDivElement>>;
1976
+
1977
+ declare type TimelineItemProps = RecursicaOverStyled<Omit<TimelineItemProps_2, "radius" | "color" | "lineVariant"> & RecursicaTimelineItemProps>;
1978
+
1979
+ /**
1980
+ * Properties for the strictly-tokenized Timeline component.
1981
+ * Native Mantine abstract properties like `color`, `radius`, `bulletSize`, and `lineWidth`
1982
+ * have been stripped out to strictly enforce the structural mappings of the Recursica UI Kit.
1983
+ */
1984
+ declare type TimelineProps = RecursicaOverStyled<Omit<TimelineProps_2, "color" | "radius" | "bulletSize" | "lineWidth"> & RecursicaTimelineProps>;
1985
+
1986
+ export declare const TimePicker: typeof rawComponents.TimePicker;
1987
+
1988
+ declare const TimePicker_2: default_2.ForwardRefExoticComponent<TimePickerProps_2 & default_2.RefAttributes<HTMLDivElement>>;
1989
+
1990
+ declare type TimePickerProps_2 = RecursicaOverStyled<RecursicaTimePickerProps>;
1991
+
1992
+ export declare const Toast: typeof rawComponents.Toast;
1993
+
1994
+ declare const Toast_2: default_2.ForwardRefExoticComponent<ToastProps & default_2.RefAttributes<HTMLDivElement>>;
1995
+
1996
+ /**
1997
+ * Toast component wrapping Mantine's Notification.
1998
+ *
1999
+ * Can be used as a standalone visual component to display a notification or message.
2000
+ */
2001
+ declare type ToastProps = RecursicaOverStyled<Omit<NotificationProps, "color" | "radius" | "variant" | "loading"> & RecursicaToastProps>;
2002
+
2003
+ export declare const Tooltip: typeof rawComponents.Tooltip;
2004
+
2005
+ declare const Tooltip_2: TooltipComponent;
2006
+
2007
+ declare const TooltipBase: {
2008
+ ({ overStyled, withBeak, position, arrowSize, ...rest }: TooltipProps): JSX.Element;
2009
+ displayName: string;
2010
+ };
2011
+
2012
+ declare type TooltipComponent = typeof TooltipBase & {
2013
+ Floating: typeof TooltipFloating;
2014
+ Group: typeof Tooltip_3.Group;
2015
+ };
2016
+
2017
+ declare const TooltipFloating: ForwardRefExoticComponent<TooltipFloatingProps & RefAttributes<HTMLDivElement>>;
2018
+
2019
+ declare type TooltipFloatingProps = RecursicaOverStyled<TooltipFloatingProps_2>;
2020
+
2021
+ /**
2022
+ * Recursica Tooltip component wrapping Mantine's Tooltip.
2023
+ *
2024
+ * Displays a floating label when the user hovers over or focuses a target element.
2025
+ * Unlike HoverCard, Tooltip is a single component (not composable) — content is
2026
+ * passed via the `label` prop, and the trigger is passed as `children`.
2027
+ *
2028
+ * ```tsx
2029
+ * <Tooltip label="Helpful information" withBeak>
2030
+ * <Button>Hover me</Button>
2031
+ * </Tooltip>
2032
+ * ```
2033
+ *
2034
+ * Static sub-components available via dot-notation:
2035
+ * - `Tooltip.Floating` — Tooltip that follows the cursor
2036
+ * - `Tooltip.Group` — Shared hover delay group for multiple tooltips
2037
+ */
2038
+ declare type TooltipProps = RecursicaOverStyled<TooltipProps_2 & RecursicaTooltipProps>;
2039
+
2040
+ export declare const TransferList: typeof rawComponents.TransferList;
2041
+
2042
+ declare const TransferList_2: ForwardRefExoticComponent<TransferListProps & RefAttributes<HTMLDivElement>>;
2043
+
2044
+ declare type TransferListProps = RecursicaOverStyled<RecursicaTransferListProps>;
2045
+
2046
+ export declare const Tree: typeof rawComponents.Tree;
2047
+
2048
+ /**
2049
+ * Recursively renders hierarchical `data` as an expandable/selectable tree.
2050
+ *
2051
+ * **Recursica Abstract:**
2052
+ * Wraps Mantine's `Tree` with a fully custom node renderer so every visual aspect (row box
2053
+ * model, selected/unselected colors and typography, indent, item spacing) comes from
2054
+ * Recursica's `tree` design tokens rather than Mantine's defaults.
2055
+ *
2056
+ * **Interaction pattern (fixed, not prop-configurable):** expand/collapse and select are
2057
+ * independent — the chevron button toggles a node's subtree only, clicking the rest of a row
2058
+ * (or pressing `Enter`/`Space`) selects it only, and `ArrowLeft`/`ArrowRight` toggle expansion
2059
+ * only. See `RecursicaTreeProps` for the full breakdown.
2060
+ */
2061
+ declare const Tree_2: default_2.ForwardRefExoticComponent<TreeProps & default_2.RefAttributes<HTMLUListElement>>;
2062
+
2063
+ declare type TreeProps = RecursicaOverStyled<RecursicaTreeProps & Omit<default_2.ComponentPropsWithoutRef<"ul">, "children">>;
2064
+
2065
+ /**
2066
+ * Universal execution barrier trapping readOnly states globally.
2067
+ * Natively delegates active logic down avoiding duplicative internal component bindings dynamically.
2068
+ */
2069
+ declare const WithReadOnlyWrapper: default_2.ForwardRefExoticComponent<WithReadOnlyWrapperProps & default_2.RefAttributes<HTMLDivElement>>;
2070
+
2071
+ declare interface WithReadOnlyWrapperProps extends Omit<FormControlWrapperProps, "children" | "overStyled"> {
2072
+ /** Injects whether the field defaults to reading mode natively */
2073
+ readOnly?: boolean;
2074
+ /** Explicit React component directly overtaking the baseline text renderer when read-only mode is active */
2075
+ readOnlyComponent?: default_2.ElementType<any>;
2076
+ /** Custom renderer explicitly responsible for formatting missing/empty value mappings (overriding default 'N/A') */
2077
+ emptyValueComponent?: default_2.ElementType<{
2078
+ value?: any;
2079
+ }>;
2080
+ /** The full native props dictionary securely forwarded into the custom readOnlyComponent if active */
2081
+ readOnlyNativeProps?: any;
2082
+ /** Instructs the underlying generic ReadOnlyField which raw visual structure to bridge automatically */
2083
+ readOnlyType?: ReadOnlyFieldType;
2084
+ /** The isolated raw data value intercepted explicitly into the ReadOnly formatters */
2085
+ readOnlyValue?: any;
2086
+ /** Safely enables deep Mantine overrides transparently bypassing block filters */
2087
+ overStyled?: boolean;
2088
+ /** The nested active node dynamically exposed exclusively when read-only bounds are disabled */
2089
+ activeComponent: default_2.ReactNode;
2090
+ }
2091
+
2092
+
2093
+ export * from "@recursica/adapter-common";
2094
+
2095
+ export { }