@povio/ui 0.0.1 → 0.0.3

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 (484) hide show
  1. package/package.json +67 -10
  2. package/src/assets/icons/AlignCenter.tsx +16 -0
  3. package/src/assets/icons/AlignLeft.tsx +16 -0
  4. package/src/assets/icons/AlignLeftRight.tsx +16 -0
  5. package/src/assets/icons/AlignRight.tsx +16 -0
  6. package/src/assets/icons/ArrowDropDown.tsx +16 -0
  7. package/src/assets/icons/ArrowDropUp.tsx +16 -0
  8. package/src/assets/icons/ArrowLeft.tsx +16 -0
  9. package/src/assets/icons/ArrowRight.tsx +16 -0
  10. package/src/assets/icons/Bold.tsx +16 -0
  11. package/src/assets/icons/BulletedList.tsx +16 -0
  12. package/src/assets/icons/Calendar.tsx +18 -0
  13. package/src/assets/icons/Check.tsx +18 -0
  14. package/src/assets/icons/CheckCircle.tsx +16 -0
  15. package/src/assets/icons/CheckboxCheckmark.tsx +19 -0
  16. package/src/assets/icons/CheckboxIndeterminate.tsx +19 -0
  17. package/src/assets/icons/ChevronDown.tsx +18 -0
  18. package/src/assets/icons/ChevronLeft.tsx +18 -0
  19. package/src/assets/icons/ChevronRight.tsx +18 -0
  20. package/src/assets/icons/ChevronUp.tsx +18 -0
  21. package/src/assets/icons/ChevronsLeft.tsx +24 -0
  22. package/src/assets/icons/ChevronsRight.tsx +24 -0
  23. package/src/assets/icons/Clock.tsx +16 -0
  24. package/src/assets/icons/Close.tsx +16 -0
  25. package/src/assets/icons/DateTime.tsx +20 -0
  26. package/src/assets/icons/Drag.tsx +16 -0
  27. package/src/assets/icons/File.tsx +18 -0
  28. package/src/assets/icons/Highlight.tsx +16 -0
  29. package/src/assets/icons/HighlightOn.tsx +26 -0
  30. package/src/assets/icons/Info.tsx +24 -0
  31. package/src/assets/icons/Italic.tsx +16 -0
  32. package/src/assets/icons/Link.tsx +16 -0
  33. package/src/assets/icons/Menu.tsx +18 -0
  34. package/src/assets/icons/NumberedList.tsx +16 -0
  35. package/src/assets/icons/PointerHorizontal.tsx +16 -0
  36. package/src/assets/icons/PointerVertical.tsx +16 -0
  37. package/src/assets/icons/Send.tsx +18 -0
  38. package/src/assets/icons/Strikethrough.tsx +16 -0
  39. package/src/assets/icons/TextColor.tsx +24 -0
  40. package/src/assets/icons/Today.tsx +16 -0
  41. package/src/assets/icons/Underlined.tsx +18 -0
  42. package/src/assets/icons/Upload.tsx +20 -0
  43. package/src/assets/icons/View.tsx +16 -0
  44. package/src/assets/icons/ViewOff.tsx +16 -0
  45. package/src/assets/icons/Warningfilled.tsx +18 -0
  46. package/src/assets/locales/en/translation.json +156 -0
  47. package/src/assets/locales/sl/translation.json +152 -0
  48. package/src/components/Menu/Menu.tsx +29 -0
  49. package/src/components/Menu/MenuDesktop.tsx +68 -0
  50. package/src/components/Menu/MenuItem.tsx +33 -0
  51. package/src/components/Menu/MenuMobile.tsx +81 -0
  52. package/src/components/Menu/MenuPopover.tsx +45 -0
  53. package/src/components/buttons/Button/Button.tsx +108 -0
  54. package/src/components/buttons/Button/button.cva.ts +678 -0
  55. package/src/components/buttons/IconButton/IconButton.tsx +25 -0
  56. package/src/components/buttons/InlineIconButton/InlineIconButton.tsx +27 -0
  57. package/src/components/buttons/PillButton/PillButton.tsx +70 -0
  58. package/src/components/buttons/PillButton/pillButton.cva.ts +88 -0
  59. package/src/components/buttons/SplitButton/SplitButton.tsx +61 -0
  60. package/src/components/buttons/TextButton/TextButton.tsx +29 -0
  61. package/src/components/buttons/ToggleButton/ToggleButton.tsx +28 -0
  62. package/src/components/buttons/shared/ButtonContent.tsx +61 -0
  63. package/src/components/buttons/shared/buttonContent.cva.ts +18 -0
  64. package/src/components/inputs/Checkbox/Checkbox.tsx +101 -0
  65. package/src/components/inputs/Checkbox/CheckboxCheckmark.tsx +47 -0
  66. package/src/components/inputs/Checkbox/checkbox.cva.ts +51 -0
  67. package/src/components/inputs/DateTime/DatePicker/DatePicker.tsx +269 -0
  68. package/src/components/inputs/DateTime/DateRangePicker/DateRangePicker.tsx +808 -0
  69. package/src/components/inputs/DateTime/DateTimePicker/DateTimePicker.tsx +291 -0
  70. package/src/components/inputs/DateTime/TimePicker/TimePicker.tsx +255 -0
  71. package/src/components/inputs/DateTime/shared/Calendar.tsx +104 -0
  72. package/src/components/inputs/DateTime/shared/CalendarCell.tsx +247 -0
  73. package/src/components/inputs/DateTime/shared/CalendarGrid.tsx +102 -0
  74. package/src/components/inputs/DateTime/shared/CalendarHeader.tsx +110 -0
  75. package/src/components/inputs/DateTime/shared/CalendarSelectHeader.tsx +228 -0
  76. package/src/components/inputs/DateTime/shared/DateField.tsx +83 -0
  77. package/src/components/inputs/DateTime/shared/DatePickerInput.tsx +170 -0
  78. package/src/components/inputs/DateTime/shared/DateSegmentItem.tsx +65 -0
  79. package/src/components/inputs/DateTime/shared/DateTimeDialog.tsx +87 -0
  80. package/src/components/inputs/DateTime/shared/DateTimeDialogFooter.tsx +42 -0
  81. package/src/components/inputs/DateTime/shared/MonthPicker.tsx +91 -0
  82. package/src/components/inputs/DateTime/shared/RangeCalendar.tsx +160 -0
  83. package/src/components/inputs/DateTime/shared/TimeField.tsx +36 -0
  84. package/src/components/inputs/DateTime/shared/TimePickerForm.tsx +222 -0
  85. package/src/components/inputs/DateTime/shared/TimePickerInput.tsx +114 -0
  86. package/src/components/inputs/DateTime/shared/YearPicker.tsx +100 -0
  87. package/src/components/inputs/File/FileUpload.tsx +285 -0
  88. package/src/components/inputs/File/FileUploadContainer.tsx +16 -0
  89. package/src/components/inputs/File/InputUpload.tsx +196 -0
  90. package/src/components/inputs/File/fileUpload.types.ts +100 -0
  91. package/src/components/inputs/File/index.ts +15 -0
  92. package/src/components/inputs/File/inputUpload.types.ts +41 -0
  93. package/src/components/inputs/File/shared/FileCard.tsx +72 -0
  94. package/src/components/inputs/File/shared/FileCardList.tsx +30 -0
  95. package/src/components/inputs/File/shared/FileProgressBar.tsx +25 -0
  96. package/src/components/inputs/File/shared/FileUploadContent.tsx +99 -0
  97. package/src/components/inputs/File/shared/FileUploadContentEmpty.tsx +94 -0
  98. package/src/components/inputs/File/shared/FileUploadContentError.tsx +170 -0
  99. package/src/components/inputs/File/shared/FileUploadContentFilled.tsx +179 -0
  100. package/src/components/inputs/File/shared/FileUploadContentLoading.tsx +115 -0
  101. package/src/components/inputs/File/shared/InputUploadContent.tsx +68 -0
  102. package/src/components/inputs/File/shared/InputUploadFilled.tsx +32 -0
  103. package/src/components/inputs/File/shared/fileUpload.cva.ts +59 -0
  104. package/src/components/inputs/File/shared/inputUploadButton.cva.ts +48 -0
  105. package/src/components/inputs/FormField/FormField.tsx +69 -0
  106. package/src/components/inputs/FormField/FormFieldError.tsx +21 -0
  107. package/src/components/inputs/FormField/FormFieldHeader.tsx +75 -0
  108. package/src/components/inputs/FormField/FormFieldHeaderClose.tsx +23 -0
  109. package/src/components/inputs/FormField/FormFieldLabel.tsx +41 -0
  110. package/src/components/inputs/Input/NumberInput/NumberInput.tsx +180 -0
  111. package/src/components/inputs/Input/PasswordInput/PasswordInput.tsx +34 -0
  112. package/src/components/inputs/Input/TextArea/TextArea.tsx +166 -0
  113. package/src/components/inputs/Input/TextInput/TextInput.tsx +181 -0
  114. package/src/components/inputs/Input/shared/InputContent.tsx +154 -0
  115. package/src/components/inputs/Inputs/Form.tsx +129 -0
  116. package/src/components/inputs/Inputs/InputItem.tsx +127 -0
  117. package/src/components/inputs/Inputs/Inputs.tsx +43 -0
  118. package/src/components/inputs/RadioGroup/RadioGroup.tsx +139 -0
  119. package/src/components/inputs/RadioGroup/radio.cva.ts +51 -0
  120. package/src/components/inputs/Selection/Autocomplete/Autocomplete.tsx +61 -0
  121. package/src/components/inputs/Selection/Autocomplete/QueryAutocomplete.tsx +58 -0
  122. package/src/components/inputs/Selection/Select/Select.tsx +59 -0
  123. package/src/components/inputs/Selection/shared/SelectBase.tsx +69 -0
  124. package/src/components/inputs/Selection/shared/SelectDesktop.tsx +236 -0
  125. package/src/components/inputs/Selection/shared/SelectInput.tsx +278 -0
  126. package/src/components/inputs/Selection/shared/SelectListBox.tsx +121 -0
  127. package/src/components/inputs/Selection/shared/SelectListBoxItem.tsx +79 -0
  128. package/src/components/inputs/Selection/shared/SelectListBoxItemSelectAll.tsx +40 -0
  129. package/src/components/inputs/Selection/shared/SelectListBoxLoadingItem.tsx +52 -0
  130. package/src/components/inputs/Selection/shared/SelectListBoxSelectionBar.tsx +39 -0
  131. package/src/components/inputs/Selection/shared/SelectMobile.tsx +169 -0
  132. package/src/components/inputs/Selection/shared/select.context.tsx +316 -0
  133. package/src/components/inputs/Selection/shared/select.types.ts +75 -0
  134. package/src/components/inputs/Selection/shared/useSelectItems.tsx +127 -0
  135. package/src/components/inputs/Slider/Slider.tsx +174 -0
  136. package/src/components/inputs/TextEditor/TextEditor.tsx +239 -0
  137. package/src/components/inputs/TextEditor/Toolbar/ColorPicker.tsx +34 -0
  138. package/src/components/inputs/TextEditor/Toolbar/ColorPickerDropdown.tsx +74 -0
  139. package/src/components/inputs/TextEditor/Toolbar/HyperlinkAction.tsx +87 -0
  140. package/src/components/inputs/TextEditor/Toolbar/TextAlignSelect.tsx +64 -0
  141. package/src/components/inputs/TextEditor/Toolbar/TextColorSelect.tsx +30 -0
  142. package/src/components/inputs/TextEditor/Toolbar/TextEditorToolbar.tsx +40 -0
  143. package/src/components/inputs/TextEditor/Toolbar/TextHighlightSelect.tsx +39 -0
  144. package/src/components/inputs/TextEditor/Toolbar/TextListActions.tsx +57 -0
  145. package/src/components/inputs/TextEditor/Toolbar/TextMarksActions.tsx +79 -0
  146. package/src/components/inputs/TextEditor/Toolbar/TextStyleSelect.tsx +73 -0
  147. package/src/components/inputs/TextEditor/textEditor.types.ts +43 -0
  148. package/src/components/inputs/Toggle/Toggle.tsx +80 -0
  149. package/src/components/inputs/Toggle/toggle.cva.ts +48 -0
  150. package/src/components/inputs/shared/CheckContent.tsx +26 -0
  151. package/src/components/inputs/shared/InputClear.tsx +29 -0
  152. package/src/components/inputs/shared/form.types.ts +28 -0
  153. package/src/components/inputs/shared/input.cva.ts +182 -0
  154. package/src/components/inputs/shared/label.cva.ts +146 -0
  155. package/src/components/outline.clsx.ts +9 -0
  156. package/src/components/overlays/ActionModal/ActionModal.tsx +93 -0
  157. package/src/components/overlays/BottomSheet/BottomSheet.tsx +270 -0
  158. package/src/components/overlays/Drawer/Drawer.tsx +93 -0
  159. package/src/components/overlays/Modal/Modal.tsx +63 -0
  160. package/src/components/overlays/Modal/modal.cva.ts +55 -0
  161. package/src/components/overlays/ResponsivePopover/ResponsivePopover.tsx +77 -0
  162. package/src/components/overlays/Tooltip/Tooltip.tsx +47 -0
  163. package/src/components/overlays/Tooltip/TooltipEllipsis.tsx +35 -0
  164. package/src/components/segment/Segment.tsx +121 -0
  165. package/src/components/segment/SegmentItem.tsx +41 -0
  166. package/src/components/segment/segment.types.ts +44 -0
  167. package/src/components/shared/pagination/Pagination.tsx +75 -0
  168. package/src/components/shared/pagination/PaginationList.tsx +174 -0
  169. package/src/components/shared/pagination/minWidth.cva.ts +13 -0
  170. package/src/components/status/Alert/Alert.tsx +58 -0
  171. package/src/components/status/Alert/alert.cva.ts +66 -0
  172. package/src/components/status/Loader/Loader.tsx +32 -0
  173. package/src/components/status/Loader/loader.cva.ts +29 -0
  174. package/src/components/status/Toast/Toast.tsx +86 -0
  175. package/src/components/status/Toast/toast.cva.ts +154 -0
  176. package/src/components/status/Toast/useToast.tsx +77 -0
  177. package/src/components/status/shared/status.cva.ts +60 -0
  178. package/src/components/table/CellText.tsx +23 -0
  179. package/src/components/table/ColumnConfig.tsx +145 -0
  180. package/src/components/table/HeaderText.tsx +18 -0
  181. package/src/components/table/InfiniteTable.tsx +51 -0
  182. package/src/components/table/PaginatedTable.tsx +38 -0
  183. package/src/components/table/Table.tsx +456 -0
  184. package/src/components/table/table.cva.ts +47 -0
  185. package/src/components/text/Link/Link.tsx +21 -0
  186. package/src/components/text/Link/link.cva.ts +21 -0
  187. package/src/components/text/Tag/Tag.tsx +59 -0
  188. package/src/components/text/Tag/tag.cva.ts +62 -0
  189. package/src/components/text/Typography/Typography.tsx +33 -0
  190. package/src/components/text/Typography/typography.cva.ts +102 -0
  191. package/src/config/confirmation.context.tsx +133 -0
  192. package/src/config/i18n.ts +12 -0
  193. package/src/config/router.context.tsx +66 -0
  194. package/src/config/uiConfig.context.tsx +89 -0
  195. package/src/config/uiStyle.context.tsx +100 -0
  196. package/src/helpers/dynamicColumns.ts +567 -0
  197. package/src/helpers/dynamicInputs.ts +392 -0
  198. package/src/hooks/useAutosave.ts +109 -0
  199. package/src/hooks/useBreakpoint.ts +26 -0
  200. package/src/hooks/useDebounceCallback.ts +35 -0
  201. package/src/hooks/useDeepCompare.ts +27 -0
  202. package/src/hooks/useFilters.ts +154 -0
  203. package/src/hooks/useForm.ts +54 -0
  204. package/src/hooks/useFormAutosave.ts +100 -0
  205. package/src/hooks/useIntersectionObserver.ts +33 -0
  206. package/src/hooks/useLocalStorage.ts +81 -0
  207. package/src/hooks/useLongPressRepeat.ts +40 -0
  208. package/src/hooks/usePagination.ts +41 -0
  209. package/src/hooks/useScrollableListBox.ts +35 -0
  210. package/src/hooks/useSingletonMutation.ts +30 -0
  211. package/src/hooks/useSorting.ts +39 -0
  212. package/src/hooks/useStateAndRef.ts +20 -0
  213. package/src/hooks/useTableColumnConfig.ts +86 -0
  214. package/src/hooks/useTableNav.ts +615 -0
  215. package/src/hooks/useTranslationMemo.ts +17 -0
  216. package/src/index.ts +252 -0
  217. package/src/types/{common.d.ts → common.ts} +15 -4
  218. package/src/types/i18next.d.ts +11 -0
  219. package/src/types/react-query.ts +48 -0
  220. package/src/types/table.d.ts +17 -0
  221. package/src/utils/array.utils.spec.ts +16 -0
  222. package/src/utils/array.utils.ts +9 -0
  223. package/src/utils/compoundMapper.spec.ts +91 -0
  224. package/src/utils/compoundMapper.ts +42 -0
  225. package/src/utils/date-time.utils.spec.ts +48 -0
  226. package/src/utils/date-time.utils.ts +85 -0
  227. package/src/utils/date.utils.spec.ts +12 -0
  228. package/src/utils/date.utils.ts +9 -0
  229. package/src/utils/dom.utils.ts +16 -0
  230. package/src/utils/file.utils.ts +73 -0
  231. package/src/utils/isEqual.ts +153 -0
  232. package/src/utils/logger.ts +19 -0
  233. package/src/utils/object.utils.ts +62 -0
  234. package/src/utils/queries.utils.ts +10 -0
  235. package/src/utils/rest/interceptors/logging.interceptor.ts +16 -0
  236. package/src/utils/rest/interceptors/response.interceptor.ts +27 -0
  237. package/src/utils/rest/interceptors/rest-interceptor.ts +22 -0
  238. package/src/utils/rest/rest-client.ts +125 -0
  239. package/src/utils/rest/rest.utils.ts +65 -0
  240. package/src/utils/routing.utils.ts +12 -0
  241. package/src/utils/string.utils.ts +9 -0
  242. package/src/utils/vendor/error-handling.ts +170 -0
  243. package/src/utils/zod.utils.ts +95 -0
  244. package/povio-ui-0.0.1.tgz +0 -0
  245. package/src/assets/icons/AlignCenter.d.ts +0 -2
  246. package/src/assets/icons/AlignLeft.d.ts +0 -2
  247. package/src/assets/icons/AlignLeftRight.d.ts +0 -2
  248. package/src/assets/icons/AlignRight.d.ts +0 -2
  249. package/src/assets/icons/ArrowDropDown.d.ts +0 -2
  250. package/src/assets/icons/ArrowDropUp.d.ts +0 -2
  251. package/src/assets/icons/ArrowLeft.d.ts +0 -2
  252. package/src/assets/icons/ArrowRight.d.ts +0 -2
  253. package/src/assets/icons/Bold.d.ts +0 -2
  254. package/src/assets/icons/BulletedList.d.ts +0 -2
  255. package/src/assets/icons/Calendar.d.ts +0 -2
  256. package/src/assets/icons/Check.d.ts +0 -2
  257. package/src/assets/icons/CheckCircle.d.ts +0 -2
  258. package/src/assets/icons/CheckboxCheckmark.d.ts +0 -2
  259. package/src/assets/icons/CheckboxIndeterminate.d.ts +0 -2
  260. package/src/assets/icons/ChevronDown.d.ts +0 -2
  261. package/src/assets/icons/ChevronLeft.d.ts +0 -2
  262. package/src/assets/icons/ChevronRight.d.ts +0 -2
  263. package/src/assets/icons/ChevronUp.d.ts +0 -2
  264. package/src/assets/icons/ChevronsLeft.d.ts +0 -2
  265. package/src/assets/icons/ChevronsRight.d.ts +0 -2
  266. package/src/assets/icons/Clock.d.ts +0 -2
  267. package/src/assets/icons/Close.d.ts +0 -2
  268. package/src/assets/icons/DateTime.d.ts +0 -2
  269. package/src/assets/icons/Drag.d.ts +0 -2
  270. package/src/assets/icons/File.d.ts +0 -2
  271. package/src/assets/icons/Highlight.d.ts +0 -2
  272. package/src/assets/icons/HighlightOn.d.ts +0 -6
  273. package/src/assets/icons/Info.d.ts +0 -2
  274. package/src/assets/icons/Italic.d.ts +0 -2
  275. package/src/assets/icons/Link.d.ts +0 -2
  276. package/src/assets/icons/Menu.d.ts +0 -2
  277. package/src/assets/icons/NumberedList.d.ts +0 -2
  278. package/src/assets/icons/PointerHorizontal.d.ts +0 -2
  279. package/src/assets/icons/PointerVertical.d.ts +0 -2
  280. package/src/assets/icons/Send.d.ts +0 -2
  281. package/src/assets/icons/Strikethrough.d.ts +0 -2
  282. package/src/assets/icons/TextColor.d.ts +0 -6
  283. package/src/assets/icons/Today.d.ts +0 -2
  284. package/src/assets/icons/Underlined.d.ts +0 -2
  285. package/src/assets/icons/Upload.d.ts +0 -2
  286. package/src/assets/icons/View.d.ts +0 -2
  287. package/src/assets/icons/ViewOff.d.ts +0 -2
  288. package/src/assets/icons/Warningfilled.d.ts +0 -2
  289. package/src/components/Menu/Menu.d.ts +0 -14
  290. package/src/components/Menu/MenuDesktop.d.ts +0 -2
  291. package/src/components/Menu/MenuItem.d.ts +0 -5
  292. package/src/components/Menu/MenuMobile.d.ts +0 -2
  293. package/src/components/Menu/MenuPopover.d.ts +0 -5
  294. package/src/components/buttons/Button/Button.d.ts +0 -27
  295. package/src/components/buttons/Button/button.cva.d.ts +0 -30
  296. package/src/components/buttons/IconButton/IconButton.d.ts +0 -10
  297. package/src/components/buttons/InlineIconButton/InlineIconButton.d.ts +0 -11
  298. package/src/components/buttons/PillButton/PillButton.d.ts +0 -11
  299. package/src/components/buttons/PillButton/pillButton.cva.d.ts +0 -14
  300. package/src/components/buttons/SplitButton/SplitButton.d.ts +0 -10
  301. package/src/components/buttons/TextButton/TextButton.d.ts +0 -11
  302. package/src/components/buttons/ToggleButton/ToggleButton.d.ts +0 -9
  303. package/src/components/buttons/shared/ButtonContent.d.ts +0 -16
  304. package/src/components/buttons/shared/buttonContent.cva.d.ts +0 -6
  305. package/src/components/inputs/Checkbox/Checkbox.d.ts +0 -17
  306. package/src/components/inputs/Checkbox/CheckboxCheckmark.d.ts +0 -9
  307. package/src/components/inputs/Checkbox/checkbox.cva.d.ts +0 -11
  308. package/src/components/inputs/DateTime/DatePicker/DatePicker.d.ts +0 -24
  309. package/src/components/inputs/DateTime/DateRangePicker/DateRangePicker.d.ts +0 -32
  310. package/src/components/inputs/DateTime/DateTimePicker/DateTimePicker.d.ts +0 -22
  311. package/src/components/inputs/DateTime/TimePicker/TimePicker.d.ts +0 -20
  312. package/src/components/inputs/DateTime/shared/Calendar.d.ts +0 -20
  313. package/src/components/inputs/DateTime/shared/CalendarCell.d.ts +0 -20
  314. package/src/components/inputs/DateTime/shared/CalendarGrid.d.ts +0 -25
  315. package/src/components/inputs/DateTime/shared/CalendarHeader.d.ts +0 -16
  316. package/src/components/inputs/DateTime/shared/CalendarSelectHeader.d.ts +0 -17
  317. package/src/components/inputs/DateTime/shared/DateField.d.ts +0 -12
  318. package/src/components/inputs/DateTime/shared/DatePickerInput.d.ts +0 -20
  319. package/src/components/inputs/DateTime/shared/DateSegmentItem.d.ts +0 -11
  320. package/src/components/inputs/DateTime/shared/DateTimeDialog.d.ts +0 -15
  321. package/src/components/inputs/DateTime/shared/DateTimeDialogFooter.d.ts +0 -7
  322. package/src/components/inputs/DateTime/shared/MonthPicker.d.ts +0 -7
  323. package/src/components/inputs/DateTime/shared/RangeCalendar.d.ts +0 -26
  324. package/src/components/inputs/DateTime/shared/TimeField.d.ts +0 -12
  325. package/src/components/inputs/DateTime/shared/TimePickerForm.d.ts +0 -10
  326. package/src/components/inputs/DateTime/shared/TimePickerInput.d.ts +0 -18
  327. package/src/components/inputs/DateTime/shared/YearPicker.d.ts +0 -8
  328. package/src/components/inputs/File/FileUpload.d.ts +0 -4
  329. package/src/components/inputs/File/FileUploadContainer.d.ts +0 -3
  330. package/src/components/inputs/File/InputUpload.d.ts +0 -4
  331. package/src/components/inputs/File/fileUpload.types.d.ts +0 -79
  332. package/src/components/inputs/File/index.d.ts +0 -9
  333. package/src/components/inputs/File/inputUpload.types.d.ts +0 -30
  334. package/src/components/inputs/File/shared/FileCard.d.ts +0 -9
  335. package/src/components/inputs/File/shared/FileCardList.d.ts +0 -9
  336. package/src/components/inputs/File/shared/FileProgressBar.d.ts +0 -3
  337. package/src/components/inputs/File/shared/FileUploadContent.d.ts +0 -10
  338. package/src/components/inputs/File/shared/FileUploadContentEmpty.d.ts +0 -9
  339. package/src/components/inputs/File/shared/FileUploadContentError.d.ts +0 -11
  340. package/src/components/inputs/File/shared/FileUploadContentFilled.d.ts +0 -11
  341. package/src/components/inputs/File/shared/FileUploadContentLoading.d.ts +0 -9
  342. package/src/components/inputs/File/shared/InputUploadContent.d.ts +0 -8
  343. package/src/components/inputs/File/shared/InputUploadFilled.d.ts +0 -7
  344. package/src/components/inputs/File/shared/fileUpload.cva.d.ts +0 -11
  345. package/src/components/inputs/File/shared/inputUploadButton.cva.d.ts +0 -10
  346. package/src/components/inputs/FormField/FormField.d.ts +0 -17
  347. package/src/components/inputs/FormField/FormFieldError.d.ts +0 -7
  348. package/src/components/inputs/FormField/FormFieldHeader.d.ts +0 -14
  349. package/src/components/inputs/FormField/FormFieldHeaderClose.d.ts +0 -5
  350. package/src/components/inputs/FormField/FormFieldLabel.d.ts +0 -11
  351. package/src/components/inputs/Input/NumberInput/NumberInput.d.ts +0 -18
  352. package/src/components/inputs/Input/PasswordInput/PasswordInput.d.ts +0 -7
  353. package/src/components/inputs/Input/TextArea/TextArea.d.ts +0 -17
  354. package/src/components/inputs/Input/TextInput/TextInput.d.ts +0 -19
  355. package/src/components/inputs/Input/shared/InputContent.d.ts +0 -27
  356. package/src/components/inputs/Inputs/Form.d.ts +0 -26
  357. package/src/components/inputs/Inputs/InputItem.d.ts +0 -73
  358. package/src/components/inputs/Inputs/Inputs.d.ts +0 -10
  359. package/src/components/inputs/RadioGroup/RadioGroup.d.ts +0 -18
  360. package/src/components/inputs/RadioGroup/radio.cva.d.ts +0 -11
  361. package/src/components/inputs/Selection/Autocomplete/Autocomplete.d.ts +0 -8
  362. package/src/components/inputs/Selection/Autocomplete/QueryAutocomplete.d.ts +0 -19
  363. package/src/components/inputs/Selection/Select/Select.d.ts +0 -8
  364. package/src/components/inputs/Selection/shared/SelectBase.d.ts +0 -24
  365. package/src/components/inputs/Selection/shared/SelectDesktop.d.ts +0 -5
  366. package/src/components/inputs/Selection/shared/SelectInput.d.ts +0 -15
  367. package/src/components/inputs/Selection/shared/SelectListBox.d.ts +0 -9
  368. package/src/components/inputs/Selection/shared/SelectListBoxItem.d.ts +0 -8
  369. package/src/components/inputs/Selection/shared/SelectListBoxItemSelectAll.d.ts +0 -4
  370. package/src/components/inputs/Selection/shared/SelectListBoxLoadingItem.d.ts +0 -6
  371. package/src/components/inputs/Selection/shared/SelectListBoxSelectionBar.d.ts +0 -5
  372. package/src/components/inputs/Selection/shared/SelectMobile.d.ts +0 -5
  373. package/src/components/inputs/Selection/shared/select.context.d.ts +0 -30
  374. package/src/components/inputs/Selection/shared/select.types.d.ts +0 -55
  375. package/src/components/inputs/Selection/shared/useSelectItems.d.ts +0 -23
  376. package/src/components/inputs/Slider/Slider.d.ts +0 -18
  377. package/src/components/inputs/TextEditor/TextEditor.d.ts +0 -20
  378. package/src/components/inputs/TextEditor/Toolbar/ColorPicker.d.ts +0 -7
  379. package/src/components/inputs/TextEditor/Toolbar/ColorPickerDropdown.d.ts +0 -10
  380. package/src/components/inputs/TextEditor/Toolbar/HyperlinkAction.d.ts +0 -2
  381. package/src/components/inputs/TextEditor/Toolbar/TextAlignSelect.d.ts +0 -2
  382. package/src/components/inputs/TextEditor/Toolbar/TextColorSelect.d.ts +0 -2
  383. package/src/components/inputs/TextEditor/Toolbar/TextEditorToolbar.d.ts +0 -6
  384. package/src/components/inputs/TextEditor/Toolbar/TextHighlightSelect.d.ts +0 -2
  385. package/src/components/inputs/TextEditor/Toolbar/TextListActions.d.ts +0 -2
  386. package/src/components/inputs/TextEditor/Toolbar/TextMarksActions.d.ts +0 -2
  387. package/src/components/inputs/TextEditor/Toolbar/TextStyleSelect.d.ts +0 -2
  388. package/src/components/inputs/TextEditor/textEditor.types.d.ts +0 -5
  389. package/src/components/inputs/Toggle/Toggle.d.ts +0 -14
  390. package/src/components/inputs/Toggle/toggle.cva.d.ts +0 -10
  391. package/src/components/inputs/shared/CheckContent.d.ts +0 -7
  392. package/src/components/inputs/shared/InputClear.d.ts +0 -6
  393. package/src/components/inputs/shared/form.types.d.ts +0 -12
  394. package/src/components/inputs/shared/input.cva.d.ts +0 -22
  395. package/src/components/inputs/shared/label.cva.d.ts +0 -10
  396. package/src/components/outline.clsx.d.ts +0 -2
  397. package/src/components/overlays/ActionModal/ActionModal.d.ts +0 -19
  398. package/src/components/overlays/BottomSheet/BottomSheet.d.ts +0 -21
  399. package/src/components/overlays/Drawer/Drawer.d.ts +0 -13
  400. package/src/components/overlays/Modal/Modal.d.ts +0 -11
  401. package/src/components/overlays/Modal/modal.cva.d.ts +0 -12
  402. package/src/components/overlays/ResponsivePopover/ResponsivePopover.d.ts +0 -10
  403. package/src/components/overlays/Tooltip/Tooltip.d.ts +0 -9
  404. package/src/components/overlays/Tooltip/TooltipEllipsis.d.ts +0 -7
  405. package/src/components/segment/Segment.d.ts +0 -4
  406. package/src/components/segment/SegmentItem.d.ts +0 -2
  407. package/src/components/segment/segment.types.d.ts +0 -34
  408. package/src/components/shared/pagination/Pagination.d.ts +0 -9
  409. package/src/components/shared/pagination/PaginationList.d.ts +0 -15
  410. package/src/components/shared/pagination/minWidth.cva.d.ts +0 -3
  411. package/src/components/status/Alert/Alert.d.ts +0 -11
  412. package/src/components/status/Alert/alert.cva.d.ts +0 -7
  413. package/src/components/status/Loader/Loader.d.ts +0 -5
  414. package/src/components/status/Loader/loader.cva.d.ts +0 -9
  415. package/src/components/status/Toast/Toast.d.ts +0 -14
  416. package/src/components/status/Toast/toast.cva.d.ts +0 -18
  417. package/src/components/status/Toast/useToast.d.ts +0 -12
  418. package/src/components/status/shared/status.cva.d.ts +0 -8
  419. package/src/components/table/CellText.d.ts +0 -7
  420. package/src/components/table/ColumnConfig.d.ts +0 -10
  421. package/src/components/table/HeaderText.d.ts +0 -5
  422. package/src/components/table/InfiniteTable.d.ts +0 -9
  423. package/src/components/table/PaginatedTable.d.ts +0 -11
  424. package/src/components/table/Table.d.ts +0 -37
  425. package/src/components/table/table.cva.d.ts +0 -15
  426. package/src/components/text/Link/Link.d.ts +0 -7
  427. package/src/components/text/Link/link.cva.d.ts +0 -6
  428. package/src/components/text/Tag/Tag.d.ts +0 -10
  429. package/src/components/text/Tag/tag.cva.d.ts +0 -6
  430. package/src/components/text/Typography/Typography.d.ts +0 -11
  431. package/src/components/text/Typography/typography.cva.d.ts +0 -8
  432. package/src/config/confirmation.context.d.ts +0 -20
  433. package/src/config/i18n.d.ts +0 -315
  434. package/src/config/router.context.d.ts +0 -20
  435. package/src/config/uiConfig.context.d.ts +0 -28
  436. package/src/config/uiStyle.context.d.ts +0 -84
  437. package/src/helpers/dynamicColumns.d.ts +0 -44
  438. package/src/helpers/dynamicInputs.d.ts +0 -83
  439. package/src/hooks/useAutosave.d.ts +0 -9
  440. package/src/hooks/useBreakpoint.d.ts +0 -3
  441. package/src/hooks/useDebounceCallback.d.ts +0 -6
  442. package/src/hooks/useDeepCompare.d.ts +0 -4
  443. package/src/hooks/useFilters.d.ts +0 -7
  444. package/src/hooks/useForm.d.ts +0 -18
  445. package/src/hooks/useFormAutosave.d.ts +0 -13
  446. package/src/hooks/useIntersectionObserver.d.ts +0 -7
  447. package/src/hooks/useLocalStorage.d.ts +0 -13
  448. package/src/hooks/useLongPressRepeat.d.ts +0 -9
  449. package/src/hooks/usePagination.d.ts +0 -7
  450. package/src/hooks/useScrollableListBox.d.ts +0 -3
  451. package/src/hooks/useSingletonMutation.d.ts +0 -2
  452. package/src/hooks/useSorting.d.ts +0 -6
  453. package/src/hooks/useStateAndRef.d.ts +0 -4
  454. package/src/hooks/useTableColumnConfig.d.ts +0 -16
  455. package/src/hooks/useTableNav.d.ts +0 -84
  456. package/src/hooks/useTranslationMemo.d.ts +0 -4
  457. package/src/index.d.ts +0 -205
  458. package/src/types/react-query.d.ts +0 -6
  459. package/src/utils/array.utils.d.ts +0 -3
  460. package/src/utils/array.utils.spec.d.ts +0 -1
  461. package/src/utils/compoundMapper.d.ts +0 -19
  462. package/src/utils/compoundMapper.spec.d.ts +0 -1
  463. package/src/utils/date-time.utils.d.ts +0 -14
  464. package/src/utils/date-time.utils.spec.d.ts +0 -1
  465. package/src/utils/date.utils.d.ts +0 -3
  466. package/src/utils/date.utils.spec.d.ts +0 -1
  467. package/src/utils/dom.utils.d.ts +0 -5
  468. package/src/utils/file.utils.d.ts +0 -9
  469. package/src/utils/isEqual.d.ts +0 -1
  470. package/src/utils/logger.d.ts +0 -7
  471. package/src/utils/object.utils.d.ts +0 -10
  472. package/src/utils/queries.utils.d.ts +0 -4
  473. package/src/utils/rest/interceptors/logging.interceptor.d.ts +0 -2
  474. package/src/utils/rest/interceptors/response.interceptor.d.ts +0 -2
  475. package/src/utils/rest/interceptors/rest-interceptor.d.ts +0 -8
  476. package/src/utils/rest/rest-client.d.ts +0 -29
  477. package/src/utils/rest/rest.utils.d.ts +0 -10
  478. package/src/utils/routing.utils.d.ts +0 -3
  479. package/src/utils/string.utils.d.ts +0 -4
  480. package/src/utils/vendor/error-handling.d.ts +0 -21
  481. package/src/utils/zod.utils.d.ts +0 -19
  482. package/vite.config.d.ts +0 -2
  483. /package/{styles → src/styles}/editor.css +0 -0
  484. /package/{styles → src/styles}/index.css +0 -0
@@ -1,79 +0,0 @@
1
- import { ReactNode, Ref } from 'react';
2
- import { DropZoneProps, FileTriggerProps } from 'react-aria-components';
3
- import { FieldValues } from 'react-hook-form';
4
- import { FormFieldProps } from '#ui/components/inputs/FormField/FormField';
5
- import { ControlProps } from '#ui/components/inputs/shared/form.types';
6
- import { ApplicationException, GeneralErrorCodes } from '#ui/utils/vendor/error-handling';
7
- export interface FileUploadVariant {
8
- variant?: "vertical" | "horizontal";
9
- }
10
- export interface SingleFileUploadProps {
11
- allowsMultiple?: false;
12
- value?: FileUploadState | null;
13
- onChange?: (file: File | null) => void;
14
- defaultValue?: File | null;
15
- }
16
- export interface MultipleFileUploadProps {
17
- allowsMultiple: true;
18
- value?: FileUploadState[];
19
- onChange?: (files: File[]) => void;
20
- defaultValue?: File[];
21
- }
22
- export type GroupedFileUploadProps = MultipleFileUploadProps | SingleFileUploadProps;
23
- export type GroupedFileUploadControlProps<TFieldValues extends FieldValues> = ({
24
- allowsMultiple: true;
25
- } & ControlProps<MultipleFileUploadProps, TFieldValues>) | ({
26
- allowsMultiple?: false;
27
- } & ControlProps<SingleFileUploadProps, TFieldValues>);
28
- export interface FileUploadResponse {
29
- id: string;
30
- }
31
- export interface FileUploadRequest {
32
- data: {
33
- resourceName: string;
34
- fileName: string;
35
- fileSize: number;
36
- method: string;
37
- };
38
- }
39
- export interface FileUploadCallbacks {
40
- fileUpload?: (request: FileUploadRequest, file: File, options?: {
41
- abortController?: AbortController;
42
- onUploadProgress?: ({ loaded, total }: {
43
- loaded: number;
44
- total: number;
45
- }) => void;
46
- }) => Promise<FileUploadResponse>;
47
- fileRemove?: ({ id }: {
48
- id: string;
49
- }) => Promise<void>;
50
- }
51
- export type FileUploadError = ApplicationException<GeneralErrorCodes>;
52
- export interface FileUploadState {
53
- state: "idle" | "uploading" | "uploaded" | "error";
54
- file: File;
55
- src?: string;
56
- id?: string;
57
- progress?: number;
58
- error?: FileUploadError;
59
- abortController?: AbortController;
60
- }
61
- export interface FileUploadContainerChildrenProps {
62
- files: FileUploadState[];
63
- onRemove: (id: string) => void;
64
- onCancel: (index: number) => void;
65
- }
66
- export type FileUploadBaseProps = {
67
- as?: "button" | "link";
68
- ref?: Ref<HTMLElement>;
69
- label?: string;
70
- className?: string;
71
- emptyText?: string;
72
- uploadText?: string;
73
- browseText?: string;
74
- value?: FileUploadState[];
75
- children?: (props: FileUploadContainerChildrenProps) => ReactNode;
76
- listRenderer?: (props: FileUploadContainerChildrenProps) => ReactNode;
77
- } & FormFieldProps & FileUploadVariant & Omit<FileTriggerProps, "children" | "onSelect" | "allowsMultiple" | "value"> & Omit<DropZoneProps, "children" | "onDrop" | "value"> & GroupedFileUploadProps & FileUploadCallbacks;
78
- export type FileUploadProps<TFieldValues extends FieldValues = FieldValues> = FileUploadBaseProps & GroupedFileUploadControlProps<TFieldValues>;
79
- export type FileUploadContainerProps = (Omit<FileUploadBaseProps, "label" | "hideLabel" | "variant" | "as"> & SingleFileUploadProps) | (Omit<FileUploadBaseProps, "label" | "hideLabel" | "variant" | "as"> & MultipleFileUploadProps);
@@ -1,9 +0,0 @@
1
- export type { FileUploadBaseProps, FileUploadProps } from './FileUpload';
2
- export { FileUpload } from './FileUpload';
3
- export type { FileUploadContainerProps } from './FileUploadContainer';
4
- export { FileUploadContainer } from './FileUploadContainer';
5
- export type { InputUploadBaseProps, InputUploadProps } from './InputUpload';
6
- export { InputUpload } from './InputUpload';
7
- export { FileCard } from './shared/FileCard';
8
- export type { FileUploadDropZoneProps } from './shared/fileUpload.cva';
9
- export { fileUploadDropZone } from './shared/fileUpload.cva';
@@ -1,30 +0,0 @@
1
- import { Ref } from 'react';
2
- import { DropZoneProps, FileTriggerProps } from 'react-aria-components';
3
- import { FieldValues } from 'react-hook-form';
4
- import { FormFieldProps } from '#ui/components/inputs/FormField/FormField';
5
- import { ControlProps } from '#ui/components/inputs/shared/form.types';
6
- import { InputUploadButtonProps } from './shared/inputUploadButton.cva';
7
- export interface SingleFileUploadProps {
8
- allowsMultiple?: false;
9
- value?: File | null;
10
- onChange?: (file: File | null) => void;
11
- defaultValue?: File | null;
12
- }
13
- export interface MultipleFileUploadProps {
14
- allowsMultiple: true;
15
- value?: File[];
16
- onChange?: (files: File[]) => void;
17
- defaultValue?: File[];
18
- }
19
- export type GroupedFileUploadProps = MultipleFileUploadProps | SingleFileUploadProps;
20
- export type GroupedFileUploadControlProps<TFieldValues extends FieldValues> = ({
21
- allowsMultiple: true;
22
- } & ControlProps<MultipleFileUploadProps, TFieldValues>) | ({
23
- allowsMultiple?: false;
24
- } & ControlProps<SingleFileUploadProps, TFieldValues>);
25
- export type InputUploadBaseProps = {
26
- ref?: Ref<HTMLElement>;
27
- label?: string;
28
- className?: string;
29
- } & FormFieldProps & InputUploadButtonProps & Omit<FileTriggerProps, "children" | "onSelect" | "allowsMultiple"> & Omit<DropZoneProps, "children" | "onDrop"> & GroupedFileUploadProps;
30
- export type InputUploadProps<TFieldValues extends FieldValues = FieldValues> = InputUploadBaseProps & GroupedFileUploadControlProps<TFieldValues>;
@@ -1,9 +0,0 @@
1
- import { FileUploadProps, FileUploadState } from '#ui/components/inputs/File/FileUpload';
2
- interface FileCardProps extends Pick<FileUploadProps, "as" | "isDisabled"> {
3
- index: number;
4
- state: FileUploadState;
5
- onRemove?: (id: string) => void;
6
- onCancel?: (index: number) => void;
7
- }
8
- export declare const FileCard: ({ index, as, state, onRemove, isDisabled, onCancel }: FileCardProps) => import("react/jsx-runtime").JSX.Element;
9
- export {};
@@ -1,9 +0,0 @@
1
- import { FileUploadProps, FileUploadState } from '#ui/components/inputs/File/FileUpload';
2
- interface FileCardListProps extends Pick<FileUploadProps, "isDisabled" | "as"> {
3
- uploadState: FileUploadState[];
4
- className?: string;
5
- onRemove?: (id: string) => void;
6
- onCancel?: (index: number) => void;
7
- }
8
- export declare const FileCardList: ({ uploadState, as, isDisabled, className, onRemove, onCancel }: FileCardListProps) => import("react/jsx-runtime").JSX.Element;
9
- export {};
@@ -1,3 +0,0 @@
1
- export declare const FileProgressBar: ({ progress }: {
2
- progress?: number;
3
- }) => import("react/jsx-runtime").JSX.Element;
@@ -1,10 +0,0 @@
1
- import { FileUploadBaseProps, FileUploadState } from '#ui/components/inputs/File/fileUpload.types';
2
- type FileUploadContentProps = Omit<FileUploadBaseProps, "ref" | "children" | "emptyText" | "label"> & {
3
- emptyText: string;
4
- uploadState: FileUploadState[];
5
- handleSelect: (inputFiles: FileList | null) => void;
6
- handleCancelUpload: (index: number) => void;
7
- handleRemove: (id: string) => void;
8
- };
9
- export declare const FileUploadContent: ({ variant, as, isDisabled, browseText, uploadText, emptyText, uploadState, handleCancelUpload, handleRemove, acceptedFileTypes, allowsMultiple, handleSelect, ...rest }: FileUploadContentProps) => import("react/jsx-runtime").JSX.Element;
10
- export {};
@@ -1,9 +0,0 @@
1
- import { FileUploadBaseProps } from '#ui/components/inputs/File/fileUpload.types';
2
- type FileUploadContentEmptyProps = Pick<FileUploadBaseProps, "variant" | "as" | "isDisabled" | "emptyText" | "browseText" | "uploadText"> & {
3
- title: string;
4
- singleFile?: boolean;
5
- hideButton?: boolean;
6
- className?: string;
7
- };
8
- export declare const FileUploadContentEmpty: ({ variant, as, isDisabled, title, browseText, uploadText, singleFile, hideButton, className, }: FileUploadContentEmptyProps) => import("react/jsx-runtime").JSX.Element;
9
- export {};
@@ -1,11 +0,0 @@
1
- import { FileTriggerProps } from 'react-aria-components';
2
- import { FileUploadBaseProps, FileUploadState } from '#ui/components/inputs/File/fileUpload.types';
3
- type FileUploadContentErrorProps = Pick<FileUploadBaseProps, "variant" | "as" | "isDisabled" | "emptyText" | "browseText"> & {
4
- state: FileUploadState;
5
- fileTriggerProps?: FileTriggerProps;
6
- removeWithIcon?: boolean;
7
- singleFile?: boolean;
8
- onRemove: (id: string) => void;
9
- };
10
- export declare const FileUploadContentError: ({ variant, as, isDisabled, state, browseText, fileTriggerProps, removeWithIcon, singleFile, onRemove, }: FileUploadContentErrorProps) => import("react/jsx-runtime").JSX.Element;
11
- export {};
@@ -1,11 +0,0 @@
1
- import { FileTriggerProps } from 'react-aria-components';
2
- import { FileUploadBaseProps, FileUploadState } from '#ui/components/inputs/File/fileUpload.types';
3
- type FileUploadContentFilledProps = Pick<FileUploadBaseProps, "variant" | "as" | "isDisabled" | "emptyText" | "browseText"> & {
4
- state: FileUploadState;
5
- fileTriggerProps?: FileTriggerProps;
6
- removeWithIcon?: boolean;
7
- singleFile?: boolean;
8
- onRemove: (id: string) => void;
9
- };
10
- export declare const FileUploadContentFilled: ({ variant, as, isDisabled, state, browseText, fileTriggerProps, removeWithIcon, singleFile, onRemove, }: FileUploadContentFilledProps) => import("react/jsx-runtime").JSX.Element;
11
- export {};
@@ -1,9 +0,0 @@
1
- import { FileUploadBaseProps, FileUploadState } from '#ui/components/inputs/File/fileUpload.types';
2
- type FileUploadContentLoadingProps = Pick<FileUploadBaseProps, "variant" | "as" | "isDisabled" | "emptyText" | "browseText"> & {
3
- index: number;
4
- state: FileUploadState;
5
- singleFile?: boolean;
6
- onCancel: (index: number) => void;
7
- };
8
- export declare const FileUploadContentLoading: ({ index, variant, as, state, isDisabled, singleFile, onCancel, }: FileUploadContentLoadingProps) => import("react/jsx-runtime").JSX.Element;
9
- export {};
@@ -1,8 +0,0 @@
1
- import { DropZoneProps, FileTriggerProps } from 'react-aria-components';
2
- import { InputUploadBaseProps } from '#ui/components/inputs/File/inputUpload.types';
3
- interface InputUploadContentProps extends Omit<InputUploadBaseProps, "ref"> {
4
- onSelect: FileTriggerProps["onSelect"];
5
- onDrop: DropZoneProps["onDrop"];
6
- }
7
- export declare const InputUploadContent: (props: InputUploadContentProps) => import("react/jsx-runtime").JSX.Element;
8
- export {};
@@ -1,7 +0,0 @@
1
- interface InputUploadFilledProps {
2
- files: File[];
3
- onRemove: () => void;
4
- isDisabled?: boolean;
5
- }
6
- export declare const InputUploadFilled: ({ files, onRemove, isDisabled }: InputUploadFilledProps) => import("react/jsx-runtime").JSX.Element;
7
- export {};
@@ -1,11 +0,0 @@
1
- import { VariantProps } from 'class-variance-authority';
2
- import { ClassProp } from 'class-variance-authority/types';
3
- export declare const fileUploadDropZoneBase: (props?: ({
4
- variant?: "horizontal" | "vertical" | null | undefined;
5
- isContainer?: boolean | null | undefined;
6
- } & ClassProp) | undefined) => string;
7
- export type FileUploadDropZoneProps = VariantProps<typeof fileUploadDropZoneBase>;
8
- export declare const fileUploadDropZone: (props: FileUploadDropZoneProps & ClassProp) => string;
9
- export declare const fileCardList: (props?: ({
10
- variant?: "horizontal" | "vertical" | null | undefined;
11
- } & ClassProp) | undefined) => string;
@@ -1,10 +0,0 @@
1
- import { VariantProps } from 'class-variance-authority';
2
- import { ClassProp } from 'class-variance-authority/types';
3
- export declare const inputUploadButtonBase: (props?: ({
4
- variant?: "default" | "nested" | null | undefined;
5
- } & ClassProp) | undefined) => string;
6
- export type InputUploadButtonProps = VariantProps<typeof inputUploadButtonBase>;
7
- export declare const inputUploadButton: (props: InputUploadButtonProps & ClassProp) => string;
8
- export declare const inputUploadDropZone: (props?: ({
9
- variant?: "default" | "nested" | null | undefined;
10
- } & ClassProp) | undefined) => string;
@@ -1,17 +0,0 @@
1
- import { PropsWithChildren, Ref } from 'react';
2
- import { FormFieldErrorProps } from '#ui/components/inputs/FormField/FormFieldError';
3
- import { FormFieldHeaderProps } from '#ui/components/inputs/FormField/FormFieldHeader';
4
- import { TextInputProps } from '#ui/components/inputs/Input/TextInput/TextInput';
5
- export interface FormFieldProps extends Omit<FormFieldHeaderProps, "className" | "labelProps">, Omit<FormFieldErrorProps, "className"> {
6
- hideLabel?: boolean;
7
- headerClassName?: string;
8
- errorClassName?: string;
9
- className?: string;
10
- }
11
- interface FormFieldComponentProps extends PropsWithChildren<FormFieldProps> {
12
- ref?: Ref<HTMLDivElement>;
13
- labelProps?: FormFieldHeaderProps["labelProps"];
14
- as?: TextInputProps["as"];
15
- }
16
- export declare const FormField: ({ ref, as, label, tooltipText, helperText, isRequired, rightContent, isDisabled, error, hideLabel, headerClassName, errorClassName, children, className, labelProps, isHeaderHidden, }: FormFieldComponentProps) => import("react/jsx-runtime").JSX.Element;
17
- export {};
@@ -1,7 +0,0 @@
1
- export interface FormFieldErrorProps {
2
- error?: string;
3
- isDisabled?: boolean;
4
- isHidden?: boolean;
5
- className?: string;
6
- }
7
- export declare const FormFieldError: ({ error, isDisabled, isHidden, className }: FormFieldErrorProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,14 +0,0 @@
1
- import { DOMAttributes } from '@react-types/shared';
2
- import { ReactNode } from 'react';
3
- export interface FormFieldHeaderProps {
4
- label: string;
5
- tooltipText?: string;
6
- helperText?: string;
7
- isRequired?: boolean;
8
- rightContent?: ReactNode;
9
- isHeaderHidden?: boolean;
10
- isDisabled?: boolean;
11
- className?: string;
12
- labelProps?: DOMAttributes<HTMLLabelElement>;
13
- }
14
- export declare const FormFieldHeader: ({ label, tooltipText, helperText, isRequired, rightContent, isHeaderHidden, isDisabled, className, labelProps, }: FormFieldHeaderProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,5 +0,0 @@
1
- interface FormFieldHeaderCloseProps {
2
- onClose: () => void;
3
- }
4
- export declare const FormFieldHeaderClose: ({ onClose }: FormFieldHeaderCloseProps) => import("react/jsx-runtime").JSX.Element;
5
- export {};
@@ -1,11 +0,0 @@
1
- import { DOMAttributes } from '@react-types/shared';
2
- import { RefCallback } from 'react';
3
- import { LabelBaseProps } from '#ui/components/inputs/shared/label.cva';
4
- export interface FormFieldLabelProps extends LabelBaseProps {
5
- label: string;
6
- isRequired?: boolean;
7
- isDisabled?: boolean;
8
- ref?: RefCallback<HTMLOrSVGElement>;
9
- labelProps?: DOMAttributes<HTMLLabelElement>;
10
- }
11
- export declare const FormFieldLabel: ({ ref, as, label, isRequired, isDisabled, labelProps }: FormFieldLabelProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,18 +0,0 @@
1
- import { Ref } from 'react';
2
- import { NumberFieldProps as AriaNumberFieldProps } from 'react-aria-components';
3
- import { FieldValues } from 'react-hook-form';
4
- import { FormFieldProps } from '#ui/components/inputs/FormField/FormField';
5
- import { InputContentProps } from '#ui/components/inputs/Input/shared/InputContent';
6
- import { ControlProps } from '#ui/components/inputs/shared/form.types';
7
- import { InputVariantProps } from '#ui/components/inputs/shared/input.cva';
8
- interface NumberInputBaseProps extends FormFieldProps, InputVariantProps, Omit<InputContentProps, "ref" | "value" | "onChange">, Omit<AriaNumberFieldProps, "value" | "onChange" | "className"> {
9
- ref?: Ref<HTMLInputElement>;
10
- placeholder?: string;
11
- inputClassName?: string;
12
- value?: number | null;
13
- onChange?: (value: number | null) => void;
14
- }
15
- export type NumberInputProps = NumberInputBaseProps;
16
- export type ControlledNumberInputProps<TFieldValues extends FieldValues> = ControlProps<NumberInputProps, TFieldValues>;
17
- export declare const NumberInput: <TFieldValues extends FieldValues>(props: ControlledNumberInputProps<TFieldValues>) => import("react/jsx-runtime").JSX.Element;
18
- export {};
@@ -1,7 +0,0 @@
1
- import { FieldValues } from 'react-hook-form';
2
- import { TextInputProps } from '#ui/components/inputs/Input/TextInput/TextInput';
3
- import { ControlProps } from '#ui/components/inputs/shared/form.types';
4
- export interface PasswordInputProps extends Omit<TextInputProps, "type" | "action" | "trailingIcon" | "unit"> {
5
- }
6
- export type ControlledPasswordInputProps<TFieldValues extends FieldValues> = ControlProps<PasswordInputProps, TFieldValues>;
7
- export declare const PasswordInput: <TFieldValues extends FieldValues>(props: ControlledPasswordInputProps<TFieldValues>) => import("react/jsx-runtime").JSX.Element;
@@ -1,17 +0,0 @@
1
- import { Ref } from 'react';
2
- import { AriaTextFieldProps } from 'react-aria';
3
- import { TextAreaProps as AriaTextAreaProps } from 'react-aria-components';
4
- import { FieldValues } from 'react-hook-form';
5
- import { FormFieldProps } from '#ui/components/inputs/FormField/FormField';
6
- import { ControlProps } from '#ui/components/inputs/shared/form.types';
7
- import { InputVariantProps } from '#ui/components/inputs/shared/input.cva';
8
- interface TextAreaBaseProps extends FormFieldProps, InputVariantProps, Omit<AriaTextAreaProps, "value" | "defaultValue" | "onChange" | "disabled" | "required" | "className" | keyof AriaTextFieldProps>, Omit<AriaTextFieldProps<HTMLTextAreaElement>, "label"> {
9
- ref?: Ref<HTMLTextAreaElement>;
10
- isClearable?: boolean;
11
- inputClassName?: string;
12
- }
13
- export interface TextAreaProps extends TextAreaBaseProps {
14
- }
15
- export type ControlledTextAreaProps<TFieldValues extends FieldValues> = ControlProps<TextAreaProps, TFieldValues>;
16
- export declare const TextArea: <TFieldValues extends FieldValues>(props: ControlledTextAreaProps<TFieldValues>) => import("react/jsx-runtime").JSX.Element;
17
- export {};
@@ -1,19 +0,0 @@
1
- import { Ref } from 'react';
2
- import { AriaTextFieldProps } from 'react-aria';
3
- import { InputProps as AriaInputProps } from 'react-aria-components';
4
- import { FieldValues } from 'react-hook-form';
5
- import { FormFieldProps } from '#ui/components/inputs/FormField/FormField';
6
- import { InputContentProps } from '#ui/components/inputs/Input/shared/InputContent';
7
- import { ControlProps } from '#ui/components/inputs/shared/form.types';
8
- import { InputVariantProps } from '#ui/components/inputs/shared/input.cva';
9
- type AllowedHTMLInputTypeAttribute = "email" | "hidden" | "tel" | "text" | "url";
10
- interface TextInputBaseProps extends FormFieldProps, InputVariantProps, Omit<InputContentProps, "ref" | "value" | "onChange">, Omit<AriaInputProps, "value" | "defaultValue" | "onChange" | "disabled" | "required" | "type" | "size" | "className" | keyof AriaTextFieldProps>, Omit<AriaTextFieldProps<HTMLInputElement>, "label"> {
11
- ref?: Ref<HTMLInputElement>;
12
- inputClassName?: string;
13
- type?: AllowedHTMLInputTypeAttribute;
14
- }
15
- export interface TextInputProps extends TextInputBaseProps {
16
- }
17
- export type ControlledTextInputProps<TFieldValues extends FieldValues> = ControlProps<TextInputProps, TFieldValues>;
18
- export declare const TextInput: <TFieldValues extends FieldValues>(props: ControlledTextInputProps<TFieldValues>) => import("react/jsx-runtime").JSX.Element;
19
- export {};
@@ -1,27 +0,0 @@
1
- import { CSSProperties, FC, ReactElement, ReactNode, SVGProps } from 'react';
2
- import { InlineIconButtonProps } from '#ui/components/buttons/InlineIconButton/InlineIconButton';
3
- import { FormFieldHeaderProps } from '#ui/components/inputs/FormField/FormFieldHeader';
4
- import { InputVariantProps } from '#ui/components/inputs/shared/input.cva';
5
- export interface InputContentProps {
6
- className?: string;
7
- unit?: string;
8
- isLoading?: boolean;
9
- isDisabled?: boolean;
10
- action?: {
11
- icon: InlineIconButtonProps["icon"];
12
- onClick: () => void;
13
- altText: string;
14
- className?: string;
15
- };
16
- leadingIcon?: FC<SVGProps<SVGSVGElement>> | ReactElement;
17
- trailingIcon?: FC<SVGProps<SVGSVGElement>> | ReactElement;
18
- isClearable?: boolean;
19
- value?: string;
20
- onChange?: (value: string) => void;
21
- headerProps?: FormFieldHeaderProps;
22
- }
23
- interface InputContentComponentProps extends InputContentProps, InputVariantProps {
24
- children: (style: CSSProperties) => ReactNode;
25
- }
26
- export declare const InputContent: ({ leadingIcon: LeadingIcon, trailingIcon: TrailingIcon, unit, isLoading, isDisabled, action, isClearable, value, onChange, children, headerProps, as, size, }: InputContentComponentProps) => import("react/jsx-runtime").JSX.Element;
27
- export {};
@@ -1,26 +0,0 @@
1
- import { ReactNode } from 'react';
2
- import { SubmitErrorHandler, SubmitHandler, UseFormReturn } from 'react-hook-form';
3
- import { z } from 'zod';
4
- import { InputComponentProps, InputDefBaseProps } from '#ui/components/inputs/Inputs/InputItem';
5
- import { AllowedComponentType, DefaultComponentType } from '#ui/helpers/dynamicInputs';
6
- type Capitalize<T extends string> = T extends `${infer First}${infer Rest}` ? `${Uppercase<First>}${Rest}` : T;
7
- type FieldProps<TProps = {}> = {
8
- label: string;
9
- placeholder?: string;
10
- } & TProps;
11
- type FieldComponentProps<TSchema extends z.ZodObject<any>, K extends keyof z.infer<TSchema>, T extends AllowedComponentType<TSchema["shape"][K]> | undefined = undefined> = FieldProps<InputDefBaseProps<InputComponentProps<T extends AllowedComponentType<TSchema["shape"][K]> ? T : DefaultComponentType<TSchema["shape"][K]>>>> & {
12
- inputType?: T extends AllowedComponentType<TSchema["shape"][K]> ? T : never;
13
- };
14
- type FieldComponents<TSchema extends z.ZodObject<any>> = {
15
- [K in keyof Required<z.infer<TSchema>> as Capitalize<K & string>]: <T extends AllowedComponentType<TSchema["shape"][K]> | undefined = undefined>(props: FieldComponentProps<TSchema, K, T>) => ReactNode;
16
- };
17
- interface FormProps<TSchema extends z.ZodObject<any>, TSchemaType extends Record<string, any> = z.infer<TSchema>> {
18
- form: UseFormReturn<TSchemaType>;
19
- schema: TSchema;
20
- onSubmit: SubmitHandler<TSchemaType>;
21
- onError?: SubmitErrorHandler<TSchemaType>;
22
- className?: string;
23
- children: (components: FieldComponents<TSchema>) => ReactNode;
24
- }
25
- export declare function Form<TSchema extends z.ZodObject<any>>({ form, schema, onSubmit, onError, className, children, }: FormProps<TSchema>): import("react/jsx-runtime").JSX.Element;
26
- export {};
@@ -1,73 +0,0 @@
1
- import { ComponentProps, JSXElementConstructor, ReactElement, ReactNode } from 'react';
2
- import { Control, UseFormReturn } from 'react-hook-form';
3
- import { z } from 'zod';
4
- import { HasRequiredProperty } from '#ui/types/common';
5
- declare const componentRegistry: {
6
- readonly toggle: <TFieldValues extends import('react-hook-form').FieldValues>(props: import('#ui/components/inputs/Toggle/Toggle').ControlledToggleProps<TFieldValues>) => import("react/jsx-runtime").JSX.Element;
7
- readonly checkbox: <TFieldValues extends import('react-hook-form').FieldValues>(props: import('#ui/components/inputs/Checkbox/Checkbox').ControlledCheckboxProps<TFieldValues>) => import("react/jsx-runtime").JSX.Element;
8
- readonly numberInput: <TFieldValues extends import('react-hook-form').FieldValues>(props: import('#ui/components/inputs/Input/NumberInput/NumberInput').ControlledNumberInputProps<TFieldValues>) => import("react/jsx-runtime").JSX.Element;
9
- readonly slider: <TFieldValues extends import('react-hook-form').FieldValues, IsRange extends boolean = false>(props: import('#ui/components/inputs/Slider/Slider').ControlledSliderProps<TFieldValues, IsRange>) => import("react/jsx-runtime").JSX.Element;
10
- readonly textInput: <TFieldValues extends import('react-hook-form').FieldValues>(props: import('#ui/components/inputs/Input/TextInput/TextInput').ControlledTextInputProps<TFieldValues>) => import("react/jsx-runtime").JSX.Element;
11
- readonly passwordInput: <TFieldValues extends import('react-hook-form').FieldValues>(props: import('#ui/components/inputs/Input/PasswordInput/PasswordInput').ControlledPasswordInputProps<TFieldValues>) => import("react/jsx-runtime").JSX.Element;
12
- readonly textArea: <TFieldValues extends import('react-hook-form').FieldValues>(props: import('#ui/components/inputs/Input/TextArea/TextArea').ControlledTextAreaProps<TFieldValues>) => import("react/jsx-runtime").JSX.Element;
13
- readonly select: <TFieldValues extends import('react-hook-form').FieldValues, TKey extends import('react-aria').Key = import('react-aria').Key, TInitialSelectItem = import('../Selection/shared/select.types').DefaultInitialSelectItem<TKey>>(props: import('#ui/components/inputs/Selection/Select/Select').ControlledSelectProps<TFieldValues, TKey, TInitialSelectItem>) => import("react/jsx-runtime").JSX.Element;
14
- readonly autocomplete: <TFieldValues extends import('react-hook-form').FieldValues, TKey extends import('react-aria').Key = import('react-aria').Key, TInitialSelectItem = import('../Selection/shared/select.types').DefaultInitialSelectItem<TKey>>(props: import('#ui/components/inputs/Selection/Autocomplete/Autocomplete').ControlledAutocompleteProps<TFieldValues, TKey, TInitialSelectItem>) => import("react/jsx-runtime").JSX.Element;
15
- readonly queryAutocomplete: <TFieldValues extends import('react-hook-form').FieldValues, TSelectItem extends import('../Selection/shared/select.types').SelectItem<any>, TQueryFn extends (...args: any) => import('@tanstack/react-query').UseQueryResult<TSelectItem[]>>({ query, queryParams, queryOptions, ...props }: import('#ui/types/common').OmitDiscriminatedUnion<import('#ui/components/inputs/Selection/Autocomplete/Autocomplete').AutocompleteProps<Exclude<ReturnType<TQueryFn>["data"], undefined>[0] extends {
16
- id: infer InferredKey extends import('react-aria').Key;
17
- } ? InferredKey : never>, "onChange" | "value" | "isLoading" | "items" | "selectionMode" | "showSelectionBar" | "showSelectAllOption" | "initialSelection" | "showSelectionContent" | "onSearchChange"> & (import('../Selection/shared/select.types').GroupedSelectControlProps<TFieldValues, Exclude<ReturnType<TQueryFn>["data"], undefined>[0] extends {
18
- id: infer InferredKey extends import('react-aria').Key;
19
- } ? InferredKey : never> & {
20
- query: Parameters<TQueryFn>[0] extends {
21
- search?: string;
22
- } ? TQueryFn : never;
23
- queryParams?: Omit<Parameters<TQueryFn>[0], "search"> | undefined;
24
- queryOptions?: Parameters<TQueryFn>[1] | undefined;
25
- })) => import("react/jsx-runtime").JSX.Element;
26
- readonly segment: <TFieldValues extends import('react-hook-form').FieldValues, TKey extends import('react-aria').Key = import('react-aria').Key>(props: import('../../..').ControlledSegmentProps<TFieldValues, TKey>) => import("react/jsx-runtime").JSX.Element;
27
- readonly datePicker: <TFieldValues extends import('react-hook-form').FieldValues>({ fullIso, minValue, maxValue, ...props }: import('#ui/components/inputs/DateTime/DatePicker/DatePicker').ControlledDatePickerProps<TFieldValues>) => import("react/jsx-runtime").JSX.Element;
28
- readonly dateTimePicker: <TFieldValues extends import('react-hook-form').FieldValues>({ fullIso, ...props }: import('#ui/components/inputs/DateTime/DateTimePicker/DateTimePicker').ControlledDateTimePickerProps<TFieldValues>) => import("react/jsx-runtime").JSX.Element;
29
- readonly timePicker: <TFieldValues extends import('react-hook-form').FieldValues>(props: import('#ui/components/inputs/DateTime/TimePicker/TimePicker').ControlledTimePickerProps<TFieldValues>) => import("react/jsx-runtime").JSX.Element;
30
- readonly dateRangePicker: <TFieldValues extends import('react-hook-form').FieldValues>({ fullIso, minValue, maxValue, ...props }: import('#ui/components/inputs/DateTime/DateRangePicker/DateRangePicker').ControlledDateRangePickerProps<TFieldValues>) => import("react/jsx-runtime").JSX.Element;
31
- readonly textEditor: <TFieldValues extends import('react-hook-form').FieldValues>(props: import('#ui/components/inputs/TextEditor/TextEditor').ControlledTextEditorProps<TFieldValues>) => import("react/jsx-runtime").JSX.Element;
32
- readonly unknown: null;
33
- };
34
- export type InputComponentRegistry = typeof componentRegistry;
35
- export type InputComponentType = keyof InputComponentRegistry;
36
- interface InputItemProps<TSchema extends z.ZodObject<any>, TSchemaType extends Record<string, any> = z.infer<TSchema>> {
37
- form: UseFormReturn<TSchemaType>;
38
- inputDef: InputDef<TSchemaType>;
39
- }
40
- export type InputDef<TSchemaType extends Record<string, any>> = {
41
- [T in InputComponentType]: T extends "unknown" ? never : {
42
- [K in keyof TSchemaType]: TypeBasedInputDef<TSchemaType, T, K> | RenderBasedInputDef<TSchemaType, K>;
43
- }[keyof TSchemaType];
44
- }[InputComponentType];
45
- type TypeBasedInputDef<TSchemaType extends Record<string, any>, T extends InputComponentType, K extends keyof TSchemaType> = {
46
- type: T;
47
- name: K;
48
- label: string;
49
- placeholder?: string;
50
- inputWrapper?: InputWrapperType;
51
- render?: never;
52
- } & (HasRequiredProperty<InputDefBaseProps<InputComponentProps<T>>> extends true ? {
53
- props?: InputDefBaseProps<InputComponentProps<T>>;
54
- } : {
55
- props: InputDefBaseProps<InputComponentProps<T>>;
56
- });
57
- interface RenderBasedInputDef<TSchemaType extends Record<string, any>, K extends keyof TSchemaType> {
58
- type?: never;
59
- name: K;
60
- label?: never;
61
- placeholder?: never;
62
- props?: never;
63
- inputWrapper?: never;
64
- render: (formControl: {
65
- control: Control<TSchemaType>;
66
- name: K;
67
- }, form: UseFormReturn<TSchemaType>) => ReactElement;
68
- }
69
- export type InputWrapperType = (children: ReactNode, label: string) => ReactElement;
70
- export type InputComponentProps<T extends InputComponentType> = InputComponentRegistry[T] extends keyof React.JSX.IntrinsicElements | JSXElementConstructor<any> ? ComponentProps<InputComponentRegistry[T]> : null;
71
- export type InputDefBaseProps<TProps> = Omit<TProps, "formControl" | "label" | "placeholder" | "children">;
72
- export declare function InputItem<TSchema extends z.ZodObject<any>, TSchemaType extends Record<string, any> = z.infer<TSchema>>({ form, inputDef }: InputItemProps<TSchema, TSchemaType>): import("react/jsx-runtime").JSX.Element | null;
73
- export {};
@@ -1,10 +0,0 @@
1
- import { ReactNode } from 'react';
2
- import { UseFormReturn } from 'react-hook-form';
3
- import { z } from 'zod';
4
- import { InputDef } from './InputItem';
5
- export interface InputsProps<TSchema extends z.ZodObject<any>, TSchemaType extends Record<string, any> = z.infer<TSchema>> {
6
- form: UseFormReturn<TSchemaType>;
7
- inputDefs: Array<InputDef<TSchemaType>>;
8
- children?: (inputs: Record<keyof TSchemaType, ReactNode>) => ReactNode;
9
- }
10
- export declare function Inputs<TSchema extends z.ZodObject<any>, TSchemaType extends Record<string, any> = z.infer<TSchema>>({ form, inputDefs, children, }: InputsProps<TSchema, TSchemaType>): string | number | bigint | boolean | import('react').ReactElement<unknown, string | import('react').JSXElementConstructor<any>> | Iterable<ReactNode> | Promise<string | number | bigint | boolean | import('react').ReactPortal | import('react').ReactElement<unknown, string | import('react').JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | import("react/jsx-runtime").JSX.Element[] | null | undefined;
@@ -1,18 +0,0 @@
1
- import { ReactElement, Ref } from 'react';
2
- import { RadioGroupProps as AriaRadioGroupProps } from 'react-aria-components';
3
- import { FieldValues } from 'react-hook-form';
4
- import { FormFieldProps } from '#ui/components/inputs/FormField/FormField';
5
- import { RadioVariantProps } from '#ui/components/inputs/RadioGroup/radio.cva';
6
- import { ControlProps } from '#ui/components/inputs/shared/form.types';
7
- interface RadioGroupBaseProps extends Omit<FormFieldProps, "variant">, RadioVariantProps, Omit<AriaRadioGroupProps, "className"> {
8
- ref?: Ref<HTMLDivElement>;
9
- options: {
10
- label: string | ReactElement;
11
- value: string;
12
- }[];
13
- }
14
- export interface RadioGroupProps extends RadioGroupBaseProps {
15
- }
16
- export type ControlledRadioGroupProps<TFieldValues extends FieldValues> = ControlProps<RadioGroupProps, TFieldValues>;
17
- export declare const RadioGroup: <TFieldValues extends FieldValues>(props: ControlledRadioGroupProps<TFieldValues>) => import("react/jsx-runtime").JSX.Element;
18
- export {};
@@ -1,11 +0,0 @@
1
- import { VariantProps } from 'class-variance-authority';
2
- import { TypographyVariantProps } from '#ui/components/text/Typography/typography.cva';
3
- export declare const radio: (props?: ({
4
- variant?: "default" | null | undefined;
5
- } & import('class-variance-authority/types').ClassProp) | undefined) => string;
6
- export interface RadioVariantProps extends VariantProps<typeof radio> {
7
- }
8
- export declare const radioIndicatorClass = "group flex items-center gap-2";
9
- export declare const radioTypography: (props: {
10
- variant?: "default" | null | undefined;
11
- }) => TypographyVariantProps | undefined;
@@ -1,8 +0,0 @@
1
- import { Key } from 'react-aria-components';
2
- import { FieldValues } from 'react-hook-form';
3
- import { SelectBaseProps } from '#ui/components/inputs/Selection/shared/SelectBase';
4
- import { DefaultInitialSelectItem, GroupedSelectControlProps, GroupedSelectProps } from '#ui/components/inputs/Selection/shared/select.types';
5
- import { OmitDiscriminatedUnion } from '#ui/types/common';
6
- export type AutocompleteProps<TKey extends Key = Key, TInitialSelectItem = DefaultInitialSelectItem<TKey>> = OmitDiscriminatedUnion<SelectBaseProps<TKey, TInitialSelectItem>, "isSearchable">;
7
- export type ControlledAutocompleteProps<TFieldValues extends FieldValues, TKey extends Key = Key, TInitialSelectItem = DefaultInitialSelectItem<TKey>> = Omit<AutocompleteProps<TKey, TInitialSelectItem>, keyof GroupedSelectProps> & GroupedSelectControlProps<TFieldValues, TKey, TInitialSelectItem>;
8
- export declare const Autocomplete: <TFieldValues extends FieldValues, TKey extends Key = Key, TInitialSelectItem = DefaultInitialSelectItem<TKey>>(props: ControlledAutocompleteProps<TFieldValues, TKey, TInitialSelectItem>) => import("react/jsx-runtime").JSX.Element;
@@ -1,19 +0,0 @@
1
- import { UseQueryResult } from '@tanstack/react-query';
2
- import { Key } from 'react-aria-components';
3
- import { FieldValues } from 'react-hook-form';
4
- import { AutocompleteProps } from '#ui/components/inputs/Selection/Autocomplete/Autocomplete';
5
- import { GroupedSelectControlProps, GroupedSelectProps, SelectItem } from '#ui/components/inputs/Selection/shared/select.types';
6
- import { OmitDiscriminatedUnion } from '#ui/types/common';
7
- type QueryFn<TSelectItem extends SelectItem = SelectItem> = (...args: any) => UseQueryResult<Array<TSelectItem>>;
8
- type TKey<TQueryFn extends QueryFn> = Exclude<ReturnType<TQueryFn>["data"], undefined>[0] extends {
9
- id: infer InferredKey extends Key;
10
- } ? InferredKey : never;
11
- type QueryAutocompleteProps<TFieldValues extends FieldValues, TSelectItem extends SelectItem<any>, TQueryFn extends QueryFn<TSelectItem>> = OmitDiscriminatedUnion<AutocompleteProps<TKey<TQueryFn>>, "items" | "onSearchChange" | "isLoading" | keyof GroupedSelectProps> & GroupedSelectControlProps<TFieldValues, TKey<TQueryFn>> & {
12
- query: Parameters<TQueryFn>[0] extends {
13
- search?: string;
14
- } ? TQueryFn : never;
15
- queryParams?: Omit<Parameters<TQueryFn>[0], "search">;
16
- queryOptions?: Parameters<TQueryFn>[1];
17
- };
18
- export declare const QueryAutocomplete: <TFieldValues extends FieldValues, TSelectItem extends SelectItem<any>, TQueryFn extends QueryFn<TSelectItem>>({ query, queryParams, queryOptions, ...props }: QueryAutocompleteProps<TFieldValues, TSelectItem, TQueryFn>) => import("react/jsx-runtime").JSX.Element;
19
- export {};
@@ -1,8 +0,0 @@
1
- import { Key } from 'react-aria-components';
2
- import { FieldValues } from 'react-hook-form';
3
- import { SelectBaseProps } from '#ui/components/inputs/Selection/shared/SelectBase';
4
- import { DefaultInitialSelectItem, GroupedSelectControlProps, GroupedSelectProps, SelectAsyncProps } from '#ui/components/inputs/Selection/shared/select.types';
5
- import { OmitDiscriminatedUnion } from '#ui/types/common';
6
- export type SelectProps<TKey extends Key = Key, TInitialSelectItem = DefaultInitialSelectItem<TKey>> = OmitDiscriminatedUnion<SelectBaseProps<TKey, TInitialSelectItem>, "initialSelection" | "mapInitialToSelectItem" | keyof SelectAsyncProps>;
7
- export type ControlledSelectProps<TFieldValues extends FieldValues, TKey extends Key = Key, TInitialSelectItem = DefaultInitialSelectItem<TKey>> = Omit<SelectProps<TKey, TInitialSelectItem>, keyof GroupedSelectProps> & GroupedSelectControlProps<TFieldValues, TKey>;
8
- export declare const Select: <TFieldValues extends FieldValues, TKey extends Key = Key, TInitialSelectItem = DefaultInitialSelectItem<TKey>>(props: ControlledSelectProps<TFieldValues, TKey, TInitialSelectItem>) => import("react/jsx-runtime").JSX.Element;