@povio/ui 3.3.0 → 3.4.0-rc.10

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 (316) hide show
  1. package/dist/assets/locales/en/translation.json.d.ts +158 -0
  2. package/dist/assets/locales/sl/translation.json.d.ts +154 -0
  3. package/dist/components/Breadcrumbs/Breadcrumbs.js +7 -7
  4. package/dist/components/Menu/MenuDesktop.js +1 -1
  5. package/dist/components/Menu/MenuItem.js +4 -4
  6. package/dist/components/Menu/MenuMobile.js +5 -5
  7. package/dist/components/Menu/MenuPopover.js +2 -2
  8. package/dist/components/buttons/Button/Button.js +1 -1
  9. package/dist/components/buttons/PillButton/PillButton.js +4 -4
  10. package/dist/components/buttons/PillButton/pillButton.cva.d.ts +1 -1
  11. package/dist/components/buttons/SplitButton/SplitButton.js +3 -3
  12. package/dist/components/buttons/shared/ButtonContent.js +2 -2
  13. package/dist/components/buttons/shared/buttonContent.cva.d.ts +1 -1
  14. package/dist/components/inputs/Checkbox/Checkbox.d.ts +1 -2
  15. package/dist/components/inputs/Checkbox/Checkbox.js +95 -102
  16. package/dist/components/inputs/Checkbox/CheckboxCheckmark.js +2 -3
  17. package/dist/components/inputs/Checkbox/CheckboxGroup.d.ts +1 -2
  18. package/dist/components/inputs/Checkbox/CheckboxGroup.js +111 -115
  19. package/dist/components/inputs/DateTime/DatePicker/DatePicker.d.ts +2 -2
  20. package/dist/components/inputs/DateTime/DatePicker/DatePicker.js +17 -22
  21. package/dist/components/inputs/DateTime/DateRangePicker/DateRangePicker.d.ts +2 -2
  22. package/dist/components/inputs/DateTime/DateRangePicker/DateRangePicker.js +17 -23
  23. package/dist/components/inputs/DateTime/DateTimePicker/DateTimePicker.d.ts +2 -2
  24. package/dist/components/inputs/DateTime/DateTimePicker/DateTimePicker.js +21 -25
  25. package/dist/components/inputs/DateTime/TimePicker/TimePicker.d.ts +2 -2
  26. package/dist/components/inputs/DateTime/TimePicker/TimePicker.js +225 -238
  27. package/dist/components/inputs/DateTime/shared/Calendar.js +1 -1
  28. package/dist/components/inputs/DateTime/shared/CalendarCell.js +1 -1
  29. package/dist/components/inputs/DateTime/shared/CalendarGrid.js +1 -1
  30. package/dist/components/inputs/DateTime/shared/CalendarHeader.js +7 -10
  31. package/dist/components/inputs/DateTime/shared/CalendarSelectHeader.js +8 -12
  32. package/dist/components/inputs/DateTime/shared/DateField.d.ts +2 -1
  33. package/dist/components/inputs/DateTime/shared/DateField.js +4 -4
  34. package/dist/components/inputs/DateTime/shared/DatePickerInput.d.ts +2 -2
  35. package/dist/components/inputs/DateTime/shared/DatePickerInput.js +8 -16
  36. package/dist/components/inputs/DateTime/shared/DateSegmentItem.js +3 -3
  37. package/dist/components/inputs/DateTime/shared/DateTimeDialog.js +2 -2
  38. package/dist/components/inputs/DateTime/shared/DateTimeDialogFooter.js +1 -1
  39. package/dist/components/inputs/DateTime/shared/MonthPicker.js +2 -2
  40. package/dist/components/inputs/DateTime/shared/RangeCalendar.js +2 -2
  41. package/dist/components/inputs/DateTime/shared/TimePickerForm.js +4 -5
  42. package/dist/components/inputs/DateTime/shared/TimePickerInput.d.ts +2 -2
  43. package/dist/components/inputs/DateTime/shared/TimePickerInput.js +10 -11
  44. package/dist/components/inputs/DateTime/shared/YearPicker.js +2 -2
  45. package/dist/components/inputs/DateTime/shared/datePickerTodayIcon.js +46 -1
  46. package/dist/components/inputs/DateTime/shared/useFirefoxDateSegmentSelectionGuard.js +1 -1
  47. package/dist/components/inputs/File/FileUpload.d.ts +1 -1
  48. package/dist/components/inputs/File/FileUpload.js +20 -20
  49. package/dist/components/inputs/File/InputUpload.d.ts +1 -1
  50. package/dist/components/inputs/File/InputUpload.js +19 -19
  51. package/dist/components/inputs/File/fileUpload.types.d.ts +1 -1
  52. package/dist/components/inputs/File/inputUpload.types.d.ts +1 -1
  53. package/dist/components/inputs/File/shared/FileCard.js +1 -1
  54. package/dist/components/inputs/File/shared/FileCardList.js +1 -1
  55. package/dist/components/inputs/File/shared/FileUploadContent.js +1 -1
  56. package/dist/components/inputs/File/shared/FileUploadContentEmpty.js +3 -3
  57. package/dist/components/inputs/File/shared/FileUploadContentError.js +5 -6
  58. package/dist/components/inputs/File/shared/FileUploadContentFilled.js +5 -6
  59. package/dist/components/inputs/File/shared/FileUploadContentLoading.js +4 -5
  60. package/dist/components/inputs/File/shared/InputUploadContent.js +4 -4
  61. package/dist/components/inputs/File/shared/InputUploadFilled.js +3 -3
  62. package/dist/components/inputs/FormField/FormFieldError.js +1 -1
  63. package/dist/components/inputs/FormField/FormFieldHeader.js +4 -4
  64. package/dist/components/inputs/FormField/FormFieldHeaderClose.js +3 -3
  65. package/dist/components/inputs/FormField/FormFieldHelper.js +1 -1
  66. package/dist/components/inputs/FormField/FormFieldLabel.js +2 -2
  67. package/dist/components/inputs/Input/NumberInput/NumberInput.d.ts +1 -1
  68. package/dist/components/inputs/Input/NumberInput/NumberInput.js +109 -107
  69. package/dist/components/inputs/Input/NumberRangeInput/NumberRangeField.d.ts +2 -1
  70. package/dist/components/inputs/Input/NumberRangeInput/NumberRangeField.js +265 -254
  71. package/dist/components/inputs/Input/NumberRangeInput/NumberRangeInput.d.ts +2 -1
  72. package/dist/components/inputs/Input/NumberRangeInput/NumberRangeInput.js +25 -24
  73. package/dist/components/inputs/Input/PasswordInput/PasswordInput.d.ts +1 -1
  74. package/dist/components/inputs/Input/PasswordInput/PasswordInput.js +3 -4
  75. package/dist/components/inputs/Input/TextArea/TextArea.d.ts +2 -1
  76. package/dist/components/inputs/Input/TextArea/TextArea.js +118 -117
  77. package/dist/components/inputs/Input/TextInput/TextInput.d.ts +2 -2
  78. package/dist/components/inputs/Input/TextInput/TextInput.js +129 -129
  79. package/dist/components/inputs/Input/shared/InputContent.d.ts +2 -1
  80. package/dist/components/inputs/Input/shared/InputContent.js +50 -48
  81. package/dist/components/inputs/Inputs/Form.d.ts +4 -4
  82. package/dist/components/inputs/Inputs/Form.js +1 -1
  83. package/dist/components/inputs/Inputs/InputItem.d.ts +22 -22
  84. package/dist/components/inputs/Inputs/InputItem.js +36 -37
  85. package/dist/components/inputs/Inputs/Inputs.d.ts +2 -2
  86. package/dist/components/inputs/RadioGroup/RadioGroup.d.ts +1 -2
  87. package/dist/components/inputs/RadioGroup/RadioGroup.js +109 -113
  88. package/dist/components/inputs/Selection/Autocomplete/Autocomplete.d.ts +1 -1
  89. package/dist/components/inputs/Selection/Autocomplete/Autocomplete.js +16 -16
  90. package/dist/components/inputs/Selection/Autocomplete/QueryAutocomplete.d.ts +1 -1
  91. package/dist/components/inputs/Selection/Autocomplete/QueryAutocomplete.js +20 -20
  92. package/dist/components/inputs/Selection/Autocomplete/queryAutocomplete.types.d.ts +1 -1
  93. package/dist/components/inputs/Selection/Select/QuerySelect.d.ts +1 -1
  94. package/dist/components/inputs/Selection/Select/QuerySelect.js +20 -20
  95. package/dist/components/inputs/Selection/Select/Select.d.ts +1 -1
  96. package/dist/components/inputs/Selection/Select/Select.js +23 -23
  97. package/dist/components/inputs/Selection/shared/SelectBase.d.ts +1 -1
  98. package/dist/components/inputs/Selection/shared/SelectBase.js +34 -37
  99. package/dist/components/inputs/Selection/shared/SelectDesktop.js +58 -56
  100. package/dist/components/inputs/Selection/shared/SelectInput.d.ts +2 -2
  101. package/dist/components/inputs/Selection/shared/SelectInput.js +57 -56
  102. package/dist/components/inputs/Selection/shared/SelectListBox.js +1 -1
  103. package/dist/components/inputs/Selection/shared/SelectListBoxItem.js +2 -2
  104. package/dist/components/inputs/Selection/shared/SelectListBoxItemSelectAll.js +2 -2
  105. package/dist/components/inputs/Selection/shared/SelectListBoxLoadingItem.js +1 -1
  106. package/dist/components/inputs/Selection/shared/SelectListBoxSelectionBar.js +1 -1
  107. package/dist/components/inputs/Selection/shared/SelectMobile.js +5 -4
  108. package/dist/components/inputs/Selection/shared/StaticSelectTrailingContent.js +3 -3
  109. package/dist/components/inputs/Selection/shared/select.context.d.ts +2 -2
  110. package/dist/components/inputs/Selection/shared/select.context.js +5 -9
  111. package/dist/components/inputs/Selection/shared/select.types.d.ts +1 -1
  112. package/dist/components/inputs/Skeleton/InputFrame.d.ts +1 -0
  113. package/dist/components/inputs/Skeleton/InputFrame.js +10 -7
  114. package/dist/components/inputs/Slider/Slider.d.ts +1 -1
  115. package/dist/components/inputs/Slider/Slider.js +20 -20
  116. package/dist/components/inputs/TextEditor/TextEditor.d.ts +1 -1
  117. package/dist/components/inputs/TextEditor/TextEditor.js +20 -20
  118. package/dist/components/inputs/TextEditor/Toolbar/ColorPicker.js +2 -2
  119. package/dist/components/inputs/TextEditor/Toolbar/ColorPickerDropdown.js +4 -4
  120. package/dist/components/inputs/TextEditor/Toolbar/HyperlinkAction.js +4 -4
  121. package/dist/components/inputs/TextEditor/Toolbar/TextAlignSelect.js +5 -8
  122. package/dist/components/inputs/TextEditor/Toolbar/TextColorSelect.js +3 -3
  123. package/dist/components/inputs/TextEditor/Toolbar/TextHighlightSelect.js +4 -5
  124. package/dist/components/inputs/TextEditor/Toolbar/TextListActions.js +4 -5
  125. package/dist/components/inputs/TextEditor/Toolbar/TextMarksActions.js +6 -9
  126. package/dist/components/inputs/Toggle/Toggle.d.ts +1 -2
  127. package/dist/components/inputs/Toggle/Toggle.js +61 -65
  128. package/dist/components/inputs/shared/CheckContent.js +1 -1
  129. package/dist/components/inputs/shared/InputClear.js +45 -28
  130. package/dist/components/inputs/shared/TooltipWrapper.d.ts +1 -1
  131. package/dist/components/inputs/shared/form.binding.d.ts +27 -0
  132. package/dist/components/inputs/shared/form.binding.js +57 -0
  133. package/dist/components/inputs/shared/form.types.d.ts +9 -8
  134. package/dist/components/inputs/shared/form.types.js +8 -0
  135. package/dist/components/inputs/shared/input.cva.js +1 -1
  136. package/dist/components/inputs/shared/useStaticInputHandoff.js +64 -38
  137. package/dist/components/navigation/Accordion/Accordion.js +1 -1
  138. package/dist/components/navigation/Accordion/AccordionItem.js +3 -3
  139. package/dist/components/navigation/Stepper/Stepper.js +2 -2
  140. package/dist/components/navigation/Stepper/StepperItem.js +4 -4
  141. package/dist/components/overlays/ActionModal/ActionModal.js +1 -1
  142. package/dist/components/overlays/BottomSheet/BottomSheet.js +3 -3
  143. package/dist/components/overlays/BottomSheet/BottomSheetHeader.js +4 -4
  144. package/dist/components/overlays/Drawer/Drawer.js +2 -2
  145. package/dist/components/overlays/Modal/Modal.js +3 -3
  146. package/dist/components/overlays/ResponsivePopover/ResponsivePopover.js +1 -1
  147. package/dist/components/overlays/Tooltip/Tooltip.js +15 -8
  148. package/dist/components/overlays/Tooltip/TooltipEllipsis.js +1 -1
  149. package/dist/components/segment/Segment.d.ts +1 -1
  150. package/dist/components/segment/Segment.js +21 -21
  151. package/dist/components/segment/SegmentItem.js +1 -1
  152. package/dist/components/segment/segment.types.d.ts +1 -1
  153. package/dist/components/shared/pagination/Pagination.js +1 -1
  154. package/dist/components/shared/pagination/PaginationList.js +6 -9
  155. package/dist/components/table/ColumnConfig.js +1 -1
  156. package/dist/components/table/InfiniteTable.js +1 -1
  157. package/dist/components/table/Table.js +6 -8
  158. package/dist/components/text/Link/Link.js +1 -1
  159. package/dist/components/text/Pill/Pill.js +3 -3
  160. package/dist/components/text/Tag/Tag.js +3 -3
  161. package/dist/config/confirmation.context.js +1 -1
  162. package/dist/config/link.context.js +1 -1
  163. package/dist/config/router.context.js +1 -1
  164. package/dist/config/theme.context.js +1 -1
  165. package/dist/config/uiConfig.context.d.ts +14 -5
  166. package/dist/config/uiConfig.context.js +9 -11
  167. package/dist/config/uiOverrides.context.js +2 -2
  168. package/dist/helpers/dynamicColumns.d.ts +1 -1
  169. package/dist/helpers/dynamicInputs.d.ts +7 -7
  170. package/dist/hooks/useAutosave.d.ts +4 -4
  171. package/dist/hooks/useAutosave.js +64 -49
  172. package/dist/hooks/useFilters.js +1 -1
  173. package/dist/hooks/useForm.d.ts +39 -15
  174. package/dist/hooks/useForm.js +96 -43
  175. package/dist/hooks/useFormAutosave.d.ts +8 -9
  176. package/dist/hooks/useFormAutosave.js +23 -9
  177. package/dist/hooks/useIntersectionObserver.js +1 -1
  178. package/dist/hooks/useLocalStorage.js +1 -1
  179. package/dist/hooks/usePagination.js +1 -1
  180. package/dist/hooks/useScrollableListBox.js +1 -1
  181. package/dist/hooks/useSorting.js +1 -1
  182. package/dist/hooks/useStateAndRef.js +1 -1
  183. package/dist/hooks/useTableColumnConfig.js +1 -1
  184. package/dist/index.d.ts +1 -263
  185. package/dist/index.js +11 -71
  186. package/dist/rhf/Inputs.d.ts +60 -0
  187. package/dist/rhf/Inputs.js +148 -0
  188. package/dist/rhf/components.d.ts +80 -0
  189. package/dist/rhf/components.js +101 -0
  190. package/dist/rhf/dynamicInputs.d.ts +18 -0
  191. package/dist/rhf/dynamicInputs.js +5 -0
  192. package/dist/rhf/fieldAdapter.d.ts +7 -0
  193. package/dist/rhf/fieldAdapter.js +40 -0
  194. package/dist/rhf/form.types.d.ts +12 -0
  195. package/dist/rhf/useAutosave.d.ts +10 -0
  196. package/dist/rhf/useAutosave.js +71 -0
  197. package/dist/rhf/useForm.d.ts +18 -0
  198. package/dist/rhf/useForm.js +48 -0
  199. package/dist/rhf/useFormAutosave.d.ts +15 -0
  200. package/dist/rhf/useFormAutosave.js +59 -0
  201. package/dist/rhf.d.ts +225 -0
  202. package/dist/tanstack.d.ts +224 -0
  203. package/dist/tanstack.js +141 -0
  204. package/package.json +15 -3
  205. package/dist/assets/icons/Account.d.ts +0 -2
  206. package/dist/assets/icons/AlignCenter.d.ts +0 -2
  207. package/dist/assets/icons/AlignCenter.js +0 -30
  208. package/dist/assets/icons/AlignLeft.d.ts +0 -2
  209. package/dist/assets/icons/AlignLeft.js +0 -30
  210. package/dist/assets/icons/AlignLeftRight.d.ts +0 -2
  211. package/dist/assets/icons/AlignLeftRight.js +0 -30
  212. package/dist/assets/icons/AlignRight.d.ts +0 -2
  213. package/dist/assets/icons/AlignRight.js +0 -30
  214. package/dist/assets/icons/ArrowDropDown.d.ts +0 -2
  215. package/dist/assets/icons/ArrowDropDown.js +0 -30
  216. package/dist/assets/icons/ArrowDropUp.d.ts +0 -2
  217. package/dist/assets/icons/ArrowDropUp.js +0 -30
  218. package/dist/assets/icons/ArrowLeft.d.ts +0 -2
  219. package/dist/assets/icons/ArrowLeft.js +0 -30
  220. package/dist/assets/icons/ArrowRight.d.ts +0 -2
  221. package/dist/assets/icons/ArrowRight.js +0 -30
  222. package/dist/assets/icons/Board.d.ts +0 -2
  223. package/dist/assets/icons/Bold.d.ts +0 -2
  224. package/dist/assets/icons/Bold.js +0 -30
  225. package/dist/assets/icons/BulletedList.d.ts +0 -2
  226. package/dist/assets/icons/BulletedList.js +0 -30
  227. package/dist/assets/icons/Calendar.d.ts +0 -2
  228. package/dist/assets/icons/Calendar.js +0 -32
  229. package/dist/assets/icons/Check.d.ts +0 -2
  230. package/dist/assets/icons/Check.js +0 -32
  231. package/dist/assets/icons/CheckCircle.d.ts +0 -2
  232. package/dist/assets/icons/CheckCircle.js +0 -30
  233. package/dist/assets/icons/CheckboxCheckmark.d.ts +0 -2
  234. package/dist/assets/icons/CheckboxCheckmark.js +0 -33
  235. package/dist/assets/icons/CheckboxIndeterminate.d.ts +0 -2
  236. package/dist/assets/icons/CheckboxIndeterminate.js +0 -33
  237. package/dist/assets/icons/ChevronDown.d.ts +0 -2
  238. package/dist/assets/icons/ChevronDown.js +0 -32
  239. package/dist/assets/icons/ChevronLeft.d.ts +0 -2
  240. package/dist/assets/icons/ChevronLeft.js +0 -32
  241. package/dist/assets/icons/ChevronRight.d.ts +0 -2
  242. package/dist/assets/icons/ChevronRight.js +0 -32
  243. package/dist/assets/icons/ChevronUp.d.ts +0 -2
  244. package/dist/assets/icons/ChevronUp.js +0 -32
  245. package/dist/assets/icons/ChevronsLeft.d.ts +0 -2
  246. package/dist/assets/icons/ChevronsLeft.js +0 -32
  247. package/dist/assets/icons/ChevronsRight.d.ts +0 -2
  248. package/dist/assets/icons/ChevronsRight.js +0 -32
  249. package/dist/assets/icons/Clock.d.ts +0 -2
  250. package/dist/assets/icons/Clock.js +0 -30
  251. package/dist/assets/icons/Close.d.ts +0 -2
  252. package/dist/assets/icons/Close.js +0 -30
  253. package/dist/assets/icons/DateTime.d.ts +0 -2
  254. package/dist/assets/icons/DateTime.js +0 -39
  255. package/dist/assets/icons/DragIndicator.d.ts +0 -2
  256. package/dist/assets/icons/DragIndicator.js +0 -30
  257. package/dist/assets/icons/Edit.d.ts +0 -2
  258. package/dist/assets/icons/Emoji.d.ts +0 -2
  259. package/dist/assets/icons/File.d.ts +0 -2
  260. package/dist/assets/icons/File.js +0 -32
  261. package/dist/assets/icons/Grid.d.ts +0 -2
  262. package/dist/assets/icons/Highlight.d.ts +0 -2
  263. package/dist/assets/icons/Highlight.js +0 -30
  264. package/dist/assets/icons/HighlightOn.d.ts +0 -6
  265. package/dist/assets/icons/HighlightOn.js +0 -55
  266. package/dist/assets/icons/Home.d.ts +0 -2
  267. package/dist/assets/icons/Home.js +0 -30
  268. package/dist/assets/icons/Image.d.ts +0 -2
  269. package/dist/assets/icons/ImageError.d.ts +0 -2
  270. package/dist/assets/icons/Info.d.ts +0 -2
  271. package/dist/assets/icons/Info.js +0 -41
  272. package/dist/assets/icons/Italic.d.ts +0 -2
  273. package/dist/assets/icons/Italic.js +0 -30
  274. package/dist/assets/icons/Link.d.ts +0 -2
  275. package/dist/assets/icons/Link.js +0 -30
  276. package/dist/assets/icons/Loader.d.ts +0 -2
  277. package/dist/assets/icons/MapPin.d.ts +0 -2
  278. package/dist/assets/icons/Menu.d.ts +0 -2
  279. package/dist/assets/icons/Menu.js +0 -30
  280. package/dist/assets/icons/Minus.d.ts +0 -2
  281. package/dist/assets/icons/MoreHoriz.d.ts +0 -2
  282. package/dist/assets/icons/NumberedList.d.ts +0 -2
  283. package/dist/assets/icons/NumberedList.js +0 -30
  284. package/dist/assets/icons/Pause.d.ts +0 -2
  285. package/dist/assets/icons/Plus.d.ts +0 -2
  286. package/dist/assets/icons/PointerHorizontal.d.ts +0 -2
  287. package/dist/assets/icons/PointerHorizontal.js +0 -30
  288. package/dist/assets/icons/PointerVertical.d.ts +0 -2
  289. package/dist/assets/icons/PointerVertical.js +0 -30
  290. package/dist/assets/icons/Retry.d.ts +0 -2
  291. package/dist/assets/icons/Search.d.ts +0 -2
  292. package/dist/assets/icons/Search.js +0 -30
  293. package/dist/assets/icons/Send.d.ts +0 -2
  294. package/dist/assets/icons/Send.js +0 -32
  295. package/dist/assets/icons/Share.d.ts +0 -2
  296. package/dist/assets/icons/Slash.d.ts +0 -2
  297. package/dist/assets/icons/Strikethrough.d.ts +0 -2
  298. package/dist/assets/icons/Strikethrough.js +0 -30
  299. package/dist/assets/icons/TextColor.d.ts +0 -6
  300. package/dist/assets/icons/TextColor.js +0 -52
  301. package/dist/assets/icons/Today.d.ts +0 -2
  302. package/dist/assets/icons/Today.js +0 -30
  303. package/dist/assets/icons/Trash.d.ts +0 -2
  304. package/dist/assets/icons/Underlined.d.ts +0 -2
  305. package/dist/assets/icons/Underlined.js +0 -32
  306. package/dist/assets/icons/Upload.d.ts +0 -2
  307. package/dist/assets/icons/Upload.js +0 -39
  308. package/dist/assets/icons/User.d.ts +0 -2
  309. package/dist/assets/icons/Visibility.d.ts +0 -2
  310. package/dist/assets/icons/Visibility.js +0 -30
  311. package/dist/assets/icons/VisibilityOff.d.ts +0 -2
  312. package/dist/assets/icons/VisibilityOff.js +0 -30
  313. package/dist/assets/icons/WarningFilled.d.ts +0 -2
  314. package/dist/assets/icons/WarningFilled.js +0 -32
  315. package/dist/assets/icons/WarningOutlined.d.ts +0 -2
  316. /package/dist/{hooks/useAutosave.spec.d.ts → rhf/entrypoints.type-test.d.ts} +0 -0
@@ -1,26 +1,26 @@
1
1
  import { UIOverrides } from "../../../../config/uiOverrides.context.js";
2
2
  import { UIConfig } from "../../../../config/uiConfig.context.js";
3
+ import { FieldController } from "../../shared/form.binding.js";
3
4
  import { FormField } from "../../FormField/FormField.js";
4
5
  import { inputBaseDefinition } from "../../shared/input.cva.js";
5
6
  import { TooltipWrapper } from "../../shared/TooltipWrapper.js";
6
7
  import { InputFrame } from "../../Skeleton/InputFrame.js";
7
8
  import { useStaticInputHandoff } from "../../shared/useStaticInputHandoff.js";
8
9
  import { InputContent } from "../shared/InputContent.js";
9
- import { c } from "react/compiler-runtime";
10
- import { jsx } from "react/jsx-runtime";
11
10
  import { clsx } from "clsx";
12
11
  import { useEffect, useRef, useState } from "react";
13
12
  import { Input } from "react-aria-components";
13
+ import { c } from "react/compiler-runtime";
14
+ import { jsx } from "react/jsx-runtime";
14
15
  import { useFocusVisible, useTextField } from "react-aria";
15
16
  import { mergeRefs } from "@react-aria/utils";
16
- import { Controller } from "react-hook-form";
17
17
  //#region src/components/inputs/Input/TextInput/TextInput.tsx
18
18
  var TextInputBase = (props) => {
19
- const $ = c(84);
19
+ const $ = c(85);
20
20
  const ui = UIConfig.useConfig();
21
21
  const inputBaseCva = UIOverrides.useCva("input.baseCva", inputBaseDefinition);
22
22
  const inputRef = useRef(null);
23
- const { ref, inputClassName, label, tooltipText, helperText, isRequired, rightContent, isDisabled, isDirty, headerClassName, errorClassName, isHeaderHidden, error, className, unit, isLoading, action, leadingIcon, trailingIcon, value, onChange, onBlur, as: asProp, hideLabel: hideLabelProp, variant: variantProp, size: sizeProp, isClearable: isClearableProp, autoFocusOnMount, ...rest } = props;
23
+ const { ref, inputClassName, label, tooltipText, helperText, isRequired, rightContent, isDisabled, isDirty, headerClassName, errorClassName, isHeaderHidden, error, className, unit, isLoading, action, leadingIcon, trailingIcon, value, onChange, onBlur, as: asProp, hideLabel: hideLabelProp, variant: variantProp, size: sizeProp, isClearable: isClearableProp, isClearableIfDisabled, autoFocusOnMount, ...rest } = props;
24
24
  const as = asProp ?? ui.input.as;
25
25
  const hideLabel = hideLabelProp ?? ui.input.hideLabel;
26
26
  const variant = variantProp ?? ui.input.variant;
@@ -87,7 +87,7 @@ var TextInputBase = (props) => {
87
87
  } else t3 = $[15];
88
88
  const formFieldProps = t3;
89
89
  let t4;
90
- if ($[16] !== action || $[17] !== inputValue || $[18] !== isClearable || $[19] !== isDisabled || $[20] !== isLoading || $[21] !== leadingIcon || $[22] !== onBlur || $[23] !== onChange || $[24] !== trailingIcon || $[25] !== unit) {
90
+ if ($[16] !== action || $[17] !== inputValue || $[18] !== isClearable || $[19] !== isClearableIfDisabled || $[20] !== isDisabled || $[21] !== isLoading || $[22] !== leadingIcon || $[23] !== onBlur || $[24] !== onChange || $[25] !== trailingIcon || $[26] !== unit) {
91
91
  t4 = {
92
92
  unit,
93
93
  isLoading,
@@ -96,6 +96,7 @@ var TextInputBase = (props) => {
96
96
  leadingIcon,
97
97
  trailingIcon,
98
98
  isClearable,
99
+ isClearableIfDisabled,
99
100
  value: inputValue,
100
101
  onChange,
101
102
  onBlur
@@ -103,19 +104,20 @@ var TextInputBase = (props) => {
103
104
  $[16] = action;
104
105
  $[17] = inputValue;
105
106
  $[18] = isClearable;
106
- $[19] = isDisabled;
107
- $[20] = isLoading;
108
- $[21] = leadingIcon;
109
- $[22] = onBlur;
110
- $[23] = onChange;
111
- $[24] = trailingIcon;
112
- $[25] = unit;
113
- $[26] = t4;
114
- } else t4 = $[26];
107
+ $[19] = isClearableIfDisabled;
108
+ $[20] = isDisabled;
109
+ $[21] = isLoading;
110
+ $[22] = leadingIcon;
111
+ $[23] = onBlur;
112
+ $[24] = onChange;
113
+ $[25] = trailingIcon;
114
+ $[26] = unit;
115
+ $[27] = t4;
116
+ } else t4 = $[27];
115
117
  const inputContentProps = t4;
116
118
  const t5 = hideLabel || isHeaderHidden;
117
119
  let t6;
118
- if ($[27] !== headerClassName || $[28] !== helperText || $[29] !== isDisabled || $[30] !== isRequired || $[31] !== label || $[32] !== labelProps || $[33] !== rightContent || $[34] !== t5 || $[35] !== tooltipText) {
120
+ if ($[28] !== headerClassName || $[29] !== helperText || $[30] !== isDisabled || $[31] !== isRequired || $[32] !== label || $[33] !== labelProps || $[34] !== rightContent || $[35] !== t5 || $[36] !== tooltipText) {
119
121
  t6 = {
120
122
  label,
121
123
  tooltipText,
@@ -127,17 +129,17 @@ var TextInputBase = (props) => {
127
129
  className: headerClassName,
128
130
  labelProps
129
131
  };
130
- $[27] = headerClassName;
131
- $[28] = helperText;
132
- $[29] = isDisabled;
133
- $[30] = isRequired;
134
- $[31] = label;
135
- $[32] = labelProps;
136
- $[33] = rightContent;
137
- $[34] = t5;
138
- $[35] = tooltipText;
139
- $[36] = t6;
140
- } else t6 = $[36];
132
+ $[28] = headerClassName;
133
+ $[29] = helperText;
134
+ $[30] = isDisabled;
135
+ $[31] = isRequired;
136
+ $[32] = label;
137
+ $[33] = labelProps;
138
+ $[34] = rightContent;
139
+ $[35] = t5;
140
+ $[36] = tooltipText;
141
+ $[37] = t6;
142
+ } else t6 = $[37];
141
143
  const headerProps = t6;
142
144
  const dataIsDisabled = isDisabled || void 0;
143
145
  const T0 = TooltipWrapper;
@@ -145,12 +147,12 @@ var TextInputBase = (props) => {
145
147
  const T1 = FormField;
146
148
  const t8 = as === "inline" && "h-full";
147
149
  let t9;
148
- if ($[37] !== className || $[38] !== t8) {
150
+ if ($[38] !== className || $[39] !== t8) {
149
151
  t9 = clsx("group w-full", t8, className);
150
- $[37] = className;
151
- $[38] = t8;
152
- $[39] = t9;
153
- } else t9 = $[39];
152
+ $[38] = className;
153
+ $[39] = t8;
154
+ $[40] = t9;
155
+ } else t9 = $[40];
154
156
  const t10 = as === "inline" ? -1 : void 0;
155
157
  const t11 = value === "" || value === null || value === void 0 || void 0;
156
158
  const t12 = isRequired || void 0;
@@ -160,35 +162,35 @@ var TextInputBase = (props) => {
160
162
  ...rest
161
163
  }), inputClassName);
162
164
  let t14;
163
- if ($[40] === Symbol.for("react.memo_cache_sentinel")) {
165
+ if ($[41] === Symbol.for("react.memo_cache_sentinel")) {
164
166
  t14 = () => inputRef.current?.focus();
165
- $[40] = t14;
166
- } else t14 = $[40];
167
+ $[41] = t14;
168
+ } else t14 = $[41];
167
169
  const t15 = value === "" || value === null || value === void 0 || void 0;
168
170
  const t16 = isRequired || void 0;
169
171
  let t17;
170
- if ($[41] !== ref) {
172
+ if ($[42] !== ref) {
171
173
  t17 = mergeRefs(ref, inputRef);
172
- $[41] = ref;
173
- $[42] = t17;
174
- } else t17 = $[42];
174
+ $[42] = ref;
175
+ $[43] = t17;
176
+ } else t17 = $[43];
175
177
  const t18 = value === "" || value === null || value === void 0 || void 0;
176
178
  const t19 = !(value === "" || value === null || value === void 0) || void 0;
177
179
  const t20 = isDirty || void 0;
178
180
  const t21 = isRequired || void 0;
179
181
  const t22 = as === "floating" ? "\xA0" : inputProps.placeholder;
180
182
  let t23;
181
- if ($[43] !== inputProps || $[44] !== isFocusVisible) {
183
+ if ($[44] !== inputProps || $[45] !== isFocusVisible) {
182
184
  t23 = (e) => {
183
185
  inputProps.onFocus?.(e);
184
186
  if (isFocusVisible) e.target.select();
185
187
  };
186
- $[43] = inputProps;
187
- $[44] = isFocusVisible;
188
- $[45] = t23;
189
- } else t23 = $[45];
188
+ $[44] = inputProps;
189
+ $[45] = isFocusVisible;
190
+ $[46] = t23;
191
+ } else t23 = $[46];
190
192
  let t24;
191
- if ($[46] !== dataIsDisabled || $[47] !== inputProps || $[48] !== t17 || $[49] !== t18 || $[50] !== t19 || $[51] !== t20 || $[52] !== t21 || $[53] !== t22 || $[54] !== t23) {
193
+ if ($[47] !== dataIsDisabled || $[48] !== inputProps || $[49] !== t17 || $[50] !== t18 || $[51] !== t19 || $[52] !== t20 || $[53] !== t21 || $[54] !== t22 || $[55] !== t23) {
192
194
  t24 = /* @__PURE__ */ jsx(Input, {
193
195
  ...inputProps,
194
196
  ref: t17,
@@ -201,19 +203,19 @@ var TextInputBase = (props) => {
201
203
  className: "w-full bg-transparent outline-none",
202
204
  onFocus: t23
203
205
  });
204
- $[46] = dataIsDisabled;
205
- $[47] = inputProps;
206
- $[48] = t17;
207
- $[49] = t18;
208
- $[50] = t19;
209
- $[51] = t20;
210
- $[52] = t21;
211
- $[53] = t22;
212
- $[54] = t23;
213
- $[55] = t24;
214
- } else t24 = $[55];
206
+ $[47] = dataIsDisabled;
207
+ $[48] = inputProps;
208
+ $[49] = t17;
209
+ $[50] = t18;
210
+ $[51] = t19;
211
+ $[52] = t20;
212
+ $[53] = t21;
213
+ $[54] = t22;
214
+ $[55] = t23;
215
+ $[56] = t24;
216
+ } else t24 = $[56];
215
217
  let t25;
216
- if ($[56] !== as || $[57] !== headerProps || $[58] !== inputContentProps || $[59] !== size || $[60] !== t24) {
218
+ if ($[57] !== as || $[58] !== headerProps || $[59] !== inputContentProps || $[60] !== size || $[61] !== t24) {
217
219
  t25 = /* @__PURE__ */ jsx(InputContent, {
218
220
  ...inputContentProps,
219
221
  headerProps,
@@ -221,15 +223,15 @@ var TextInputBase = (props) => {
221
223
  size,
222
224
  children: t24
223
225
  });
224
- $[56] = as;
225
- $[57] = headerProps;
226
- $[58] = inputContentProps;
227
- $[59] = size;
228
- $[60] = t24;
229
- $[61] = t25;
230
- } else t25 = $[61];
226
+ $[57] = as;
227
+ $[58] = headerProps;
228
+ $[59] = inputContentProps;
229
+ $[60] = size;
230
+ $[61] = t24;
231
+ $[62] = t25;
232
+ } else t25 = $[62];
231
233
  let t26;
232
- if ($[62] !== dataIsDisabled || $[63] !== t13 || $[64] !== t15 || $[65] !== t16 || $[66] !== t25) {
234
+ if ($[63] !== dataIsDisabled || $[64] !== t13 || $[65] !== t15 || $[66] !== t16 || $[67] !== t25) {
233
235
  t26 = /* @__PURE__ */ jsx("div", {
234
236
  className: t13,
235
237
  onClick: t14,
@@ -238,15 +240,15 @@ var TextInputBase = (props) => {
238
240
  "data-is-disabled": dataIsDisabled,
239
241
  children: t25
240
242
  });
241
- $[62] = dataIsDisabled;
242
- $[63] = t13;
243
- $[64] = t15;
244
- $[65] = t16;
245
- $[66] = t25;
246
- $[67] = t26;
247
- } else t26 = $[67];
243
+ $[63] = dataIsDisabled;
244
+ $[64] = t13;
245
+ $[65] = t15;
246
+ $[66] = t16;
247
+ $[67] = t25;
248
+ $[68] = t26;
249
+ } else t26 = $[68];
248
250
  let t27;
249
- if ($[68] !== T1 || $[69] !== as || $[70] !== formFieldProps || $[71] !== labelProps || $[72] !== t10 || $[73] !== t11 || $[74] !== t12 || $[75] !== t26 || $[76] !== t9) {
251
+ if ($[69] !== T1 || $[70] !== as || $[71] !== formFieldProps || $[72] !== labelProps || $[73] !== t10 || $[74] !== t11 || $[75] !== t12 || $[76] !== t26 || $[77] !== t9) {
250
252
  t27 = /* @__PURE__ */ jsx(T1, {
251
253
  ...formFieldProps,
252
254
  as,
@@ -257,32 +259,32 @@ var TextInputBase = (props) => {
257
259
  "data-is-required": t12,
258
260
  children: t26
259
261
  });
260
- $[68] = T1;
261
- $[69] = as;
262
- $[70] = formFieldProps;
263
- $[71] = labelProps;
264
- $[72] = t10;
265
- $[73] = t11;
266
- $[74] = t12;
267
- $[75] = t26;
268
- $[76] = t9;
269
- $[77] = t27;
270
- } else t27 = $[77];
262
+ $[69] = T1;
263
+ $[70] = as;
264
+ $[71] = formFieldProps;
265
+ $[72] = labelProps;
266
+ $[73] = t10;
267
+ $[74] = t11;
268
+ $[75] = t12;
269
+ $[76] = t26;
270
+ $[77] = t9;
271
+ $[78] = t27;
272
+ } else t27 = $[78];
271
273
  let t28;
272
- if ($[78] !== T0 || $[79] !== as || $[80] !== error || $[81] !== t27 || $[82] !== t7) {
274
+ if ($[79] !== T0 || $[80] !== as || $[81] !== error || $[82] !== t27 || $[83] !== t7) {
273
275
  t28 = /* @__PURE__ */ jsx(T0, {
274
276
  as,
275
277
  error,
276
278
  triggerTabIndex: t7,
277
279
  children: t27
278
280
  });
279
- $[78] = T0;
280
- $[79] = as;
281
- $[80] = error;
282
- $[81] = t27;
283
- $[82] = t7;
284
- $[83] = t28;
285
- } else t28 = $[83];
281
+ $[79] = T0;
282
+ $[80] = as;
283
+ $[81] = error;
284
+ $[82] = t27;
285
+ $[83] = t7;
286
+ $[84] = t28;
287
+ } else t28 = $[84];
286
288
  return t28;
287
289
  };
288
290
  var TextInputInner = (t0) => {
@@ -377,7 +379,7 @@ var TextInputInner = (t0) => {
377
379
  return t3;
378
380
  };
379
381
  var TextInput = (t0) => {
380
- const $ = c(21);
382
+ const $ = c(20);
381
383
  let props;
382
384
  let renderStaticInput;
383
385
  if ($[0] !== t0) {
@@ -389,72 +391,70 @@ var TextInput = (t0) => {
389
391
  props = $[1];
390
392
  renderStaticInput = $[2];
391
393
  }
392
- if ("formControl" in props && props.formControl) {
393
- let formControl;
394
+ if ("field" in props && props.field) {
395
+ let field;
394
396
  let innerProps;
395
397
  let ref;
396
398
  if ($[3] !== props) {
397
- ({formControl, ref, ...innerProps} = props);
399
+ ({field, ref, ...innerProps} = props);
398
400
  $[3] = props;
399
- $[4] = formControl;
401
+ $[4] = field;
400
402
  $[5] = innerProps;
401
403
  $[6] = ref;
402
404
  } else {
403
- formControl = $[4];
405
+ field = $[4];
404
406
  innerProps = $[5];
405
407
  ref = $[6];
406
408
  }
407
- const controlWithOptions = formControl.control;
408
409
  let t1;
409
- if ($[7] !== controlWithOptions._options?.disabled || $[8] !== innerProps || $[9] !== props.error || $[10] !== props.isDisabled || $[11] !== ref || $[12] !== renderStaticInput) {
410
+ if ($[7] !== innerProps || $[8] !== props.error || $[9] !== props.isDisabled || $[10] !== ref || $[11] !== renderStaticInput) {
410
411
  t1 = (t2) => {
411
- const { field, fieldState: t3 } = t2;
412
+ const { field: field_0, fieldState: t3 } = t2;
412
413
  const { error, isDirty } = t3;
413
414
  return /* @__PURE__ */ jsx(TextInputInner, {
414
415
  ...innerProps,
415
- ref: mergeRefs(ref, field.ref),
416
- value: field.value,
417
- onChange: field.onChange,
418
- onBlur: field.onBlur,
416
+ ref: mergeRefs(ref, field_0.ref),
417
+ value: field_0.value,
418
+ onChange: field_0.onChange,
419
+ onBlur: field_0.onBlur,
419
420
  isDirty,
420
- isDisabled: field.disabled || props.isDisabled,
421
- isFormControlDisabled: !!controlWithOptions._options?.disabled,
421
+ isDisabled: field_0.disabled || props.isDisabled,
422
+ isFormControlDisabled: field_0.disabled,
422
423
  error: props.error ?? error?.message,
423
424
  renderStaticInput
424
425
  });
425
426
  };
426
- $[7] = controlWithOptions._options?.disabled;
427
- $[8] = innerProps;
428
- $[9] = props.error;
429
- $[10] = props.isDisabled;
430
- $[11] = ref;
431
- $[12] = renderStaticInput;
432
- $[13] = t1;
433
- } else t1 = $[13];
427
+ $[7] = innerProps;
428
+ $[8] = props.error;
429
+ $[9] = props.isDisabled;
430
+ $[10] = ref;
431
+ $[11] = renderStaticInput;
432
+ $[12] = t1;
433
+ } else t1 = $[12];
434
434
  let t2;
435
- if ($[14] !== formControl.control || $[15] !== formControl.name || $[16] !== t1) {
436
- t2 = /* @__PURE__ */ jsx(Controller, {
437
- control: formControl.control,
438
- name: formControl.name,
435
+ if ($[13] !== field.form || $[14] !== field.name || $[15] !== t1) {
436
+ t2 = /* @__PURE__ */ jsx(FieldController, {
437
+ control: field.form,
438
+ name: field.name,
439
439
  render: t1
440
440
  });
441
- $[14] = formControl.control;
442
- $[15] = formControl.name;
443
- $[16] = t1;
444
- $[17] = t2;
445
- } else t2 = $[17];
441
+ $[13] = field.form;
442
+ $[14] = field.name;
443
+ $[15] = t1;
444
+ $[16] = t2;
445
+ } else t2 = $[16];
446
446
  return t2;
447
447
  }
448
448
  let t1;
449
- if ($[18] !== props || $[19] !== renderStaticInput) {
449
+ if ($[17] !== props || $[18] !== renderStaticInput) {
450
450
  t1 = /* @__PURE__ */ jsx(TextInputInner, {
451
451
  ...props,
452
452
  renderStaticInput
453
453
  });
454
- $[18] = props;
455
- $[19] = renderStaticInput;
456
- $[20] = t1;
457
- } else t1 = $[20];
454
+ $[17] = props;
455
+ $[18] = renderStaticInput;
456
+ $[19] = t1;
457
+ } else t1 = $[19];
458
458
  return t1;
459
459
  };
460
460
  function _temp(input) {
@@ -16,6 +16,7 @@ export interface InputContentProps {
16
16
  leadingIcon?: FC<SVGProps<SVGSVGElement>> | ReactElement;
17
17
  trailingIcon?: FC<SVGProps<SVGSVGElement>> | ReactElement;
18
18
  isClearable?: boolean;
19
+ isClearableIfDisabled?: boolean;
19
20
  value?: string | number | null;
20
21
  onChange?: (value: string) => void;
21
22
  onBlur?: (e: FocusEvent<HTMLInputElement>) => void;
@@ -24,5 +25,5 @@ export interface InputContentProps {
24
25
  interface InputContentComponentProps extends InputContentProps, InputVariantProps {
25
26
  children: ReactNode;
26
27
  }
27
- export declare const InputContent: ({ leadingIcon: LeadingIcon, trailingIcon: TrailingIcon, unit, isLoading, isDisabled, action, isClearable, value, onChange, onBlur, children, headerProps, as, size, }: InputContentComponentProps) => import("react/jsx-runtime").JSX.Element;
28
+ export declare const InputContent: ({ leadingIcon: LeadingIcon, trailingIcon: TrailingIcon, unit, isLoading, isDisabled, action, isClearable, isClearableIfDisabled, value, onChange, onBlur, children, headerProps, as, size, }: InputContentComponentProps) => import("react/jsx-runtime").JSX.Element;
28
29
  export {};
@@ -5,14 +5,14 @@ import { InlineIconButton } from "../../../buttons/InlineIconButton/InlineIconBu
5
5
  import { FormFieldLabel } from "../../FormField/FormFieldLabel.js";
6
6
  import { inputContentWrapperDefinition, inputSizeDefinition } from "../../shared/input.cva.js";
7
7
  import { InputClear } from "../../shared/InputClear.js";
8
- import { c } from "react/compiler-runtime";
9
- import { jsx, jsxs } from "react/jsx-runtime";
10
8
  import { clsx } from "clsx";
11
9
  import { isValidElement } from "react";
10
+ import { c } from "react/compiler-runtime";
11
+ import { jsx, jsxs } from "react/jsx-runtime";
12
12
  //#region src/components/inputs/Input/shared/InputContent.tsx
13
13
  var InputContent = (t0) => {
14
- const $ = c(64);
15
- const { leadingIcon: LeadingIcon, trailingIcon: TrailingIcon, unit, isLoading, isDisabled, action, isClearable, value, onChange, onBlur, children, headerProps, as, size } = t0;
14
+ const $ = c(66);
15
+ const { leadingIcon: LeadingIcon, trailingIcon: TrailingIcon, unit, isLoading, isDisabled, action, isClearable, isClearableIfDisabled, value, onChange, onBlur, children, headerProps, as, size } = t0;
16
16
  const typographyCva = UIOverrides.useCva("typography.cva", typographyDefinition);
17
17
  const inputSizeCva = UIOverrides.useCva("input.sizeCva", inputSizeDefinition);
18
18
  const inputContentWrapperCva = UIOverrides.useCva("input.contentWrapperCva", inputContentWrapperDefinition);
@@ -30,7 +30,7 @@ var InputContent = (t0) => {
30
30
  $[3] = t2;
31
31
  } else t2 = $[3];
32
32
  const isTrailingIconElement = t2;
33
- const showClear = value != null && value !== "" && !isDisabled;
33
+ const showClear = value != null && value !== "" && (!isDisabled || isClearableIfDisabled === true);
34
34
  const t3 = as === "inline" && "h-full";
35
35
  let t4;
36
36
  if ($[4] !== as || $[5] !== inputSizeCva || $[6] !== size || $[7] !== t3) {
@@ -111,8 +111,8 @@ var InputContent = (t0) => {
111
111
  $[34] = t10;
112
112
  } else t10 = $[34];
113
113
  let t11;
114
- if ($[35] !== isClearable || $[36] !== onBlur || $[37] !== onChange || $[38] !== showClear) {
115
- t11 = isClearable && /* @__PURE__ */ jsx(InputClear, {
114
+ if ($[35] !== isClearable || $[36] !== isClearableIfDisabled || $[37] !== isDisabled || $[38] !== onBlur || $[39] !== onChange || $[40] !== showClear) {
115
+ t11 = isClearable && (!isDisabled || isClearableIfDisabled === true) && /* @__PURE__ */ jsx(InputClear, {
116
116
  onClear: () => {
117
117
  onChange?.("");
118
118
  onBlur?.({ target: { value: "" } });
@@ -120,13 +120,15 @@ var InputContent = (t0) => {
120
120
  show: showClear
121
121
  });
122
122
  $[35] = isClearable;
123
- $[36] = onBlur;
124
- $[37] = onChange;
125
- $[38] = showClear;
126
- $[39] = t11;
127
- } else t11 = $[39];
123
+ $[36] = isClearableIfDisabled;
124
+ $[37] = isDisabled;
125
+ $[38] = onBlur;
126
+ $[39] = onChange;
127
+ $[40] = showClear;
128
+ $[41] = t11;
129
+ } else t11 = $[41];
128
130
  let t12;
129
- if ($[40] !== typographyCva || $[41] !== unit) {
131
+ if ($[42] !== typographyCva || $[43] !== unit) {
130
132
  t12 = unit && /* @__PURE__ */ jsx("span", {
131
133
  className: typographyCva({
132
134
  size: "label-2",
@@ -136,21 +138,21 @@ var InputContent = (t0) => {
136
138
  }),
137
139
  children: unit
138
140
  });
139
- $[40] = typographyCva;
140
- $[41] = unit;
141
- $[42] = t12;
142
- } else t12 = $[42];
141
+ $[42] = typographyCva;
142
+ $[43] = unit;
143
+ $[44] = t12;
144
+ } else t12 = $[44];
143
145
  let t13;
144
- if ($[43] !== isLoading) {
146
+ if ($[45] !== isLoading) {
145
147
  t13 = isLoading && /* @__PURE__ */ jsx("div", {
146
148
  className: "inline-flex",
147
149
  children: /* @__PURE__ */ jsx(Loader, {})
148
150
  });
149
- $[43] = isLoading;
150
- $[44] = t13;
151
- } else t13 = $[44];
151
+ $[45] = isLoading;
152
+ $[46] = t13;
153
+ } else t13 = $[46];
152
154
  let t14;
153
- if ($[45] !== action || $[46] !== isDisabled || $[47] !== isLoading) {
155
+ if ($[47] !== action || $[48] !== isDisabled || $[49] !== isLoading) {
154
156
  t14 = !isLoading && action && /* @__PURE__ */ jsx(InlineIconButton, {
155
157
  color: "secondary",
156
158
  icon: action.icon,
@@ -161,22 +163,22 @@ var InputContent = (t0) => {
161
163
  className: clsx("border-0!", action.className),
162
164
  "data-static-press-action": ""
163
165
  });
164
- $[45] = action;
165
- $[46] = isDisabled;
166
- $[47] = isLoading;
167
- $[48] = t14;
168
- } else t14 = $[48];
166
+ $[47] = action;
167
+ $[48] = isDisabled;
168
+ $[49] = isLoading;
169
+ $[50] = t14;
170
+ } else t14 = $[50];
169
171
  let t15;
170
- if ($[49] !== TrailingIcon || $[50] !== action || $[51] !== isLoading || $[52] !== isTrailingIconElement) {
172
+ if ($[51] !== TrailingIcon || $[52] !== action || $[53] !== isLoading || $[54] !== isTrailingIconElement) {
171
173
  t15 = !isLoading && !action && TrailingIcon && (isTrailingIconElement ? TrailingIcon : /* @__PURE__ */ jsx(TrailingIcon, { className: "size-6 text-interactive-text-secondary-idle" }));
172
- $[49] = TrailingIcon;
173
- $[50] = action;
174
- $[51] = isLoading;
175
- $[52] = isTrailingIconElement;
176
- $[53] = t15;
177
- } else t15 = $[53];
174
+ $[51] = TrailingIcon;
175
+ $[52] = action;
176
+ $[53] = isLoading;
177
+ $[54] = isTrailingIconElement;
178
+ $[55] = t15;
179
+ } else t15 = $[55];
178
180
  let t16;
179
- if ($[54] !== t10 || $[55] !== t11 || $[56] !== t12 || $[57] !== t13 || $[58] !== t14 || $[59] !== t15) {
181
+ if ($[56] !== t10 || $[57] !== t11 || $[58] !== t12 || $[59] !== t13 || $[60] !== t14 || $[61] !== t15) {
180
182
  t16 = /* @__PURE__ */ jsxs("div", {
181
183
  className: t10,
182
184
  children: [
@@ -187,24 +189,24 @@ var InputContent = (t0) => {
187
189
  t15
188
190
  ]
189
191
  });
190
- $[54] = t10;
191
- $[55] = t11;
192
- $[56] = t12;
193
- $[57] = t13;
194
- $[58] = t14;
195
- $[59] = t15;
196
- $[60] = t16;
197
- } else t16 = $[60];
192
+ $[56] = t10;
193
+ $[57] = t11;
194
+ $[58] = t12;
195
+ $[59] = t13;
196
+ $[60] = t14;
197
+ $[61] = t15;
198
+ $[62] = t16;
199
+ } else t16 = $[62];
198
200
  let t17;
199
- if ($[61] !== t16 || $[62] !== t9) {
201
+ if ($[63] !== t16 || $[64] !== t9) {
200
202
  t17 = /* @__PURE__ */ jsxs("div", {
201
203
  className: "flex w-full items-center gap-input-gap-input-text-to-elements",
202
204
  children: [t9, t16]
203
205
  });
204
- $[61] = t16;
205
- $[62] = t9;
206
- $[63] = t17;
207
- } else t17 = $[63];
206
+ $[63] = t16;
207
+ $[64] = t9;
208
+ $[65] = t17;
209
+ } else t17 = $[65];
208
210
  return t17;
209
211
  };
210
212
  //#endregion
@@ -1,8 +1,8 @@
1
1
  import { ReactNode } from 'react';
2
- import { SubmitErrorHandler, SubmitHandler, UseFormReturn } from 'react-hook-form';
3
2
  import { z } from 'zod';
4
3
  import { InputComponentProps, InputDefBaseProps } from './InputItem';
5
4
  import { AllowedComponentType, DefaultComponentType } from '../../../helpers/dynamicInputs';
5
+ import { FormSubmitErrorHandler, FormSubmitHandler, UIForm } from '../../../hooks/useForm';
6
6
  type Capitalize<T extends string> = T extends `${infer First}${infer Rest}` ? `${Uppercase<First>}${Rest}` : T;
7
7
  type FieldProps<TProps = {}> = {
8
8
  label: string;
@@ -15,10 +15,10 @@ type FieldComponents<TSchema extends z.ZodObject<any>> = {
15
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
16
  };
17
17
  interface FormProps<TSchema extends z.ZodObject<any>, TSchemaType extends Record<string, any> = z.infer<TSchema>> {
18
- form: UseFormReturn<TSchemaType>;
18
+ form: UIForm<TSchemaType>;
19
19
  schema: TSchema;
20
- onSubmit: SubmitHandler<TSchemaType>;
21
- onError?: SubmitErrorHandler<TSchemaType>;
20
+ onSubmit: FormSubmitHandler<TSchemaType>;
21
+ onError?: FormSubmitErrorHandler<TSchemaType>;
22
22
  className?: string;
23
23
  children: (components: FieldComponents<TSchema>) => ReactNode;
24
24
  }
@@ -1,7 +1,7 @@
1
- import { InputItem } from "./InputItem.js";
2
1
  import { StringUtils } from "../../../utils/string.utils.js";
3
2
  import { ZodUtils } from "../../../utils/zod.utils.js";
4
3
  import { getDefaultInputComponentType } from "../../../helpers/dynamicInputs.js";
4
+ import { InputItem } from "./InputItem.js";
5
5
  import { c } from "react/compiler-runtime";
6
6
  import { jsx } from "react/jsx-runtime";
7
7
  import { z } from "zod";