@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
@@ -0,0 +1,141 @@
1
+ import { UIOverrides } from "./config/uiOverrides.context.js";
2
+ import { breadcrumbChevronDefinition, breadcrumbIconDefinition, breadcrumbItemDefinition, breadcrumbSegmentDefinition, breadcrumbsDefinition } from "./components/Breadcrumbs/breadcrumbs.cva.js";
3
+ import { menuDefinition, menuItemDefinition, menuPopoverDefinition, menuPopoverWrapperDefinition } from "./components/Menu/menu.cva.js";
4
+ import { MenuItem } from "./components/Menu/MenuItem.js";
5
+ import { MenuPopover } from "./components/Menu/MenuPopover.js";
6
+ import { tooltipDefinition, tooltipPointerHorizontalDefinition, tooltipPointerVerticalDefinition, tooltipTextDefinition } from "./components/overlays/Tooltip/tooltip.cva.js";
7
+ import { typographyDefinition } from "./components/text/Typography/typography.cva.js";
8
+ import { Typography } from "./components/text/Typography/Typography.js";
9
+ import { Tooltip } from "./components/overlays/Tooltip/Tooltip.js";
10
+ import { LinkContext } from "./config/link.context.js";
11
+ import { Breadcrumbs } from "./components/Breadcrumbs/Breadcrumbs.js";
12
+ import { loaderDefinition, loaderWrapperDefinition } from "./components/status/Loader/loader.cva.js";
13
+ import { Loader } from "./components/status/Loader/Loader.js";
14
+ import { ObjectUtils } from "./utils/object.utils.js";
15
+ import { isEqual } from "./utils/isEqual.js";
16
+ import { useDeepCompareEffect, useDeepCompareLayoutEffect, useDeepCompareMemo } from "./hooks/useDeepCompare.js";
17
+ import { UIConfig } from "./config/uiConfig.context.js";
18
+ import { uiOutlineClass } from "./components/outline.clsx.js";
19
+ import { compoundMapper } from "./utils/compoundMapper.js";
20
+ import { buttonContentDefinition, buttonDefinition, buttonIconSizeDefinition, buttonSizeDefinition } from "./components/buttons/Button/button.cva.js";
21
+ import { Button } from "./components/buttons/Button/Button.js";
22
+ import { IconButton } from "./components/buttons/IconButton/IconButton.js";
23
+ import { InlineIconButton } from "./components/buttons/InlineIconButton/InlineIconButton.js";
24
+ import { pillButtonContentDefinition, pillButtonDefinition } from "./components/buttons/PillButton/pillButton.cva.js";
25
+ import { PillButton } from "./components/buttons/PillButton/PillButton.js";
26
+ import { ns, resources } from "./config/i18n.js";
27
+ import { useStateAndRef } from "./hooks/useStateAndRef.js";
28
+ import { DomUtils } from "./utils/dom.utils.js";
29
+ import { BottomSheet } from "./components/overlays/BottomSheet/BottomSheet.js";
30
+ import { useBreakpoint } from "./hooks/useBreakpoint.js";
31
+ import { Menu } from "./components/Menu/Menu.js";
32
+ import { SplitButton } from "./components/buttons/SplitButton/SplitButton.js";
33
+ import { TextButton } from "./components/buttons/TextButton/TextButton.js";
34
+ import { ToggleButton } from "./components/buttons/ToggleButton/ToggleButton.js";
35
+ import { checkboxContentRowDefinition, checkboxContentWrapperDefinition, checkboxDefinition, checkboxGroupLabelDefinition, checkboxIconDefinition } from "./components/inputs/Checkbox/checkbox.cva.js";
36
+ import { formFieldErrorDefinition } from "./components/inputs/FormField/formFieldError.cva.js";
37
+ import { Checkbox } from "./components/inputs/Checkbox/Checkbox.js";
38
+ import { formFieldHeaderDefinition } from "./components/inputs/FormField/formFieldHeader.cva.js";
39
+ import { labelDefinition } from "./components/inputs/shared/label.cva.js";
40
+ import { formFieldHelperDefinition } from "./components/inputs/FormField/formFieldHelper.cva.js";
41
+ import { FormField } from "./components/inputs/FormField/FormField.js";
42
+ import { inputBaseDefinition, inputClearClassDefinition, inputContentWrapperDefinition, inputSideDefinition, inputSizeDefinition } from "./components/inputs/shared/input.cva.js";
43
+ import { CheckboxGroup } from "./components/inputs/Checkbox/CheckboxGroup.js";
44
+ import { useLongPressRepeat } from "./hooks/useLongPressRepeat.js";
45
+ import { useScrollableListBox } from "./hooks/useScrollableListBox.js";
46
+ import { IntlUtils } from "./utils/intl.utils.js";
47
+ import { DateTimeUtils } from "./utils/date-time.utils.js";
48
+ import { datePickerInputContentRowDefinition } from "./components/inputs/DateTime/shared/datePickerInput.cva.js";
49
+ import { popoverDefinition } from "./components/shared/popover.cva.js";
50
+ import { tooltipWrapperTriggerDefinition } from "./components/inputs/shared/tooltipWrapper.cva.js";
51
+ import { DatePicker } from "./components/inputs/DateTime/DatePicker/DatePicker.js";
52
+ import { tagDefinition } from "./components/text/Tag/tag.cva.js";
53
+ import { Tag } from "./components/text/Tag/Tag.js";
54
+ import { useDebounceCallback } from "./hooks/useDebounceCallback.js";
55
+ import { selectInputTagsContentWrapperDefinition } from "./components/inputs/Selection/shared/selectInput.cva.js";
56
+ import { createKeyInteractionsHandler, getKeyInteractionAction, useKeyInteractions } from "./hooks/useKeyInteractions.js";
57
+ import { selectListBoxItemDefinition } from "./components/inputs/Selection/shared/selectItem.cva.js";
58
+ import { useIntersectionObserver } from "./hooks/useIntersectionObserver.js";
59
+ import { selectPopoverDefinition } from "./components/inputs/Selection/shared/selectDesktop.cva.js";
60
+ import { TextInput } from "./components/inputs/Input/TextInput/TextInput.js";
61
+ import { Select } from "./components/inputs/Selection/Select/Select.js";
62
+ import { DateRangePicker } from "./components/inputs/DateTime/DateRangePicker/DateRangePicker.js";
63
+ import { DateTimePicker } from "./components/inputs/DateTime/DateTimePicker/DateTimePicker.js";
64
+ import { TimePicker } from "./components/inputs/DateTime/TimePicker/TimePicker.js";
65
+ import { RestUtils } from "./utils/rest.utils.js";
66
+ import { FileUtils } from "./utils/file.utils.js";
67
+ import { progressBarDefinition, progressBarFillDefinition, progressBarTrackDefinition, progressBarTrackWrapperDefinition, progressBarValueDefinition } from "./components/inputs/File/shared/progressBar.cva.js";
68
+ import { ProgressBar } from "./components/inputs/File/shared/ProgressBar.js";
69
+ import { fileUploadDropZoneDefinition } from "./components/inputs/File/shared/fileUpload.cva.js";
70
+ import { FileUpload } from "./components/inputs/File/FileUpload.js";
71
+ import { inputUploadButtonDefinition, inputUploadDropZoneDefinition } from "./components/inputs/File/shared/inputUploadButton.cva.js";
72
+ import { InputUpload } from "./components/inputs/File/InputUpload.js";
73
+ import { NumberInput } from "./components/inputs/Input/NumberInput/NumberInput.js";
74
+ import { NumberRangeInput } from "./components/inputs/Input/NumberRangeInput/NumberRangeInput.js";
75
+ import { PasswordInput } from "./components/inputs/Input/PasswordInput/PasswordInput.js";
76
+ import { textAreaWrapperDefinition } from "./components/inputs/Input/TextArea/TextArea.cva.js";
77
+ import { TextArea } from "./components/inputs/Input/TextArea/TextArea.js";
78
+ import { radioContentRowDefinition, radioContentWrapperDefinition, radioDefinition } from "./components/inputs/RadioGroup/radio.cva.js";
79
+ import { RadioGroup } from "./components/inputs/RadioGroup/RadioGroup.js";
80
+ import { Autocomplete } from "./components/inputs/Selection/Autocomplete/Autocomplete.js";
81
+ import { QueryAutocomplete } from "./components/inputs/Selection/Autocomplete/QueryAutocomplete.js";
82
+ import { QuerySelect } from "./components/inputs/Selection/Select/QuerySelect.js";
83
+ import { Slider } from "./components/inputs/Slider/Slider.js";
84
+ import { toggleDefinition } from "./components/inputs/Toggle/toggle.cva.js";
85
+ import { Toggle } from "./components/inputs/Toggle/Toggle.js";
86
+ import { ResponsivePopover } from "./components/overlays/ResponsivePopover/ResponsivePopover.js";
87
+ import { segmentDefinition, segmentItemDefinition } from "./components/segment/segment.cva.js";
88
+ import { Segment } from "./components/segment/Segment.js";
89
+ import { FileUploadContainer } from "./components/inputs/File/FileUploadContainer.js";
90
+ import { StringUtils } from "./utils/string.utils.js";
91
+ import { ZodUtils } from "./utils/zod.utils.js";
92
+ import { accordionChevronDefinition, accordionDefinition, accordionHeadingDefinition, accordionHeadingSubtitleDefinition, accordionHeadingTitleDefinition, accordionIconDefinition, accordionItemDefinition, accordionPanelContentDefinition, accordionPanelDefinition, accordionTriggerDefinition } from "./components/navigation/Accordion/accordion.cva.js";
93
+ import { Accordion } from "./components/navigation/Accordion/Accordion.js";
94
+ import { stepperDefinition, stepperIconDefinition, stepperItemDefinition, stepperNumberDefinition, stepperSeparatorDefinition, stepperSubtextDefinition, stepperTitleDefinition } from "./components/navigation/Stepper/stepper.cva.js";
95
+ import { Stepper } from "./components/navigation/Stepper/Stepper.js";
96
+ import { modalContentDefinition, modalMainDefinition, modalOverlayDefinition } from "./components/overlays/Modal/modal.cva.js";
97
+ import { Modal } from "./components/overlays/Modal/Modal.js";
98
+ import { ActionModal } from "./components/overlays/ActionModal/ActionModal.js";
99
+ import { Drawer } from "./components/overlays/Drawer/Drawer.js";
100
+ import { TooltipEllipsis } from "./components/overlays/Tooltip/TooltipEllipsis.js";
101
+ import { PaginationList } from "./components/shared/pagination/PaginationList.js";
102
+ import { Pagination } from "./components/shared/pagination/Pagination.js";
103
+ import { alertDefinition } from "./components/status/Alert/alert.cva.js";
104
+ import { statusIconDefinition, statusSeparatorDefinition } from "./components/status/shared/status.cva.js";
105
+ import { Alert } from "./components/status/Alert/Alert.js";
106
+ import { statusIconDefinition as statusIconDefinition$1, statusSeparatorDefinition as statusSeparatorDefinition$1, toastDefinition } from "./components/status/Toast/toast.cva.js";
107
+ import { Toast, ToastContainer } from "./components/status/Toast/Toast.js";
108
+ import { useToast } from "./components/status/Toast/useToast.js";
109
+ import { tableCellTextDefinition, tableDataDefinition, tableHeadDataDefinition, tableHeadRowDefinition, tableHeaderTextDefinition, tableRowDefinition } from "./components/table/table.cva.js";
110
+ import { CellText } from "./components/table/CellText.js";
111
+ import { HeaderText } from "./components/table/HeaderText.js";
112
+ import { logger } from "./utils/logger.js";
113
+ import { useTableNav } from "./hooks/useTableNav.js";
114
+ import { Table } from "./components/table/Table.js";
115
+ import { useTranslationMemo } from "./hooks/useTranslationMemo.js";
116
+ import { ColumnConfigModal } from "./components/table/ColumnConfig.js";
117
+ import { InfiniteTable } from "./components/table/InfiniteTable.js";
118
+ import { PaginatedTable } from "./components/table/PaginatedTable.js";
119
+ import { linkDefinition } from "./components/text/Link/link.cva.js";
120
+ import { Link } from "./components/text/Link/Link.js";
121
+ import { Pill } from "./components/text/Pill/Pill.js";
122
+ import { Confirmation } from "./config/confirmation.context.js";
123
+ import { UIRouter } from "./config/router.context.js";
124
+ import { useLocalStorage } from "./hooks/useLocalStorage.js";
125
+ import { ThemeContext } from "./config/theme.context.js";
126
+ import { DateUtils } from "./utils/date.utils.js";
127
+ import { dynamicColumns } from "./helpers/dynamicColumns.js";
128
+ import { dynamicInputs } from "./helpers/dynamicInputs.js";
129
+ import { RoutingUtils } from "./utils/routing.utils.js";
130
+ import { useFilters } from "./hooks/useFilters.js";
131
+ import { usePagination } from "./hooks/usePagination.js";
132
+ import { useSorting } from "./hooks/useSorting.js";
133
+ import { useTableColumnConfig } from "./hooks/useTableColumnConfig.js";
134
+ import { ArrayUtils } from "./utils/array.utils.js";
135
+ import { QueriesUtils } from "./utils/queries.utils.js";
136
+ import { Form } from "./components/inputs/Inputs/Form.js";
137
+ import { Inputs } from "./components/inputs/Inputs/Inputs.js";
138
+ import { useAutosave } from "./hooks/useAutosave.js";
139
+ import { useForm, useFormState, useFormValue } from "./hooks/useForm.js";
140
+ import { useFormAutosave } from "./hooks/useFormAutosave.js";
141
+ export { Accordion, ActionModal, Alert, ArrayUtils, Autocomplete, BottomSheet, Breadcrumbs, Button, CellText, Checkbox, CheckboxGroup, ColumnConfigModal, Confirmation, DatePicker, DateRangePicker, DateTimePicker, DateTimeUtils, DateUtils, DomUtils, Drawer, FileUpload, FileUploadContainer, FileUtils, Form, FormField, HeaderText, IconButton, InfiniteTable, InlineIconButton, InputUpload, Inputs, IntlUtils, Link, LinkContext, Loader, Menu, MenuItem, MenuPopover, Modal, NumberInput, NumberRangeInput, ObjectUtils, PaginatedTable, Pagination, PaginationList, PasswordInput, Pill, PillButton, ProgressBar, QueriesUtils, QueryAutocomplete, QuerySelect, RadioGroup, ResponsivePopover, RestUtils, RoutingUtils, Segment, Select, Slider, SplitButton, Stepper, StringUtils, Table, Tag, TextArea, TextButton, TextInput, ThemeContext, TimePicker, Toast, ToastContainer, Toggle, ToggleButton, Tooltip, TooltipEllipsis, Typography, UIConfig, UIOverrides, UIRouter, ZodUtils, accordionChevronDefinition, accordionDefinition, accordionHeadingDefinition, accordionHeadingSubtitleDefinition, accordionHeadingTitleDefinition, accordionIconDefinition, accordionItemDefinition, accordionPanelContentDefinition, accordionPanelDefinition, accordionTriggerDefinition, alertDefinition, breadcrumbChevronDefinition, breadcrumbIconDefinition, breadcrumbItemDefinition, breadcrumbSegmentDefinition, breadcrumbsDefinition, buttonContentDefinition, buttonDefinition, buttonIconSizeDefinition, buttonSizeDefinition, checkboxContentRowDefinition, checkboxContentWrapperDefinition, checkboxDefinition, checkboxGroupLabelDefinition, checkboxIconDefinition, compoundMapper, createKeyInteractionsHandler, datePickerInputContentRowDefinition, dynamicColumns, dynamicInputs, fileUploadDropZoneDefinition, formFieldErrorDefinition, formFieldHeaderDefinition, formFieldHelperDefinition, getKeyInteractionAction, inputBaseDefinition, inputClearClassDefinition, inputContentWrapperDefinition, inputSideDefinition, inputSizeDefinition, inputUploadButtonDefinition, inputUploadDropZoneDefinition, isEqual, labelDefinition, linkDefinition, loaderDefinition, loaderWrapperDefinition, logger, menuDefinition, menuItemDefinition, menuPopoverDefinition, menuPopoverWrapperDefinition, modalContentDefinition, modalMainDefinition, modalOverlayDefinition, ns, pillButtonContentDefinition, pillButtonDefinition, popoverDefinition, progressBarDefinition, progressBarFillDefinition, progressBarTrackDefinition, progressBarTrackWrapperDefinition, progressBarValueDefinition, radioContentRowDefinition, radioContentWrapperDefinition, radioDefinition, resources, segmentDefinition, segmentItemDefinition, selectInputTagsContentWrapperDefinition, selectListBoxItemDefinition, selectPopoverDefinition, statusIconDefinition, statusSeparatorDefinition, stepperDefinition, stepperIconDefinition, stepperItemDefinition, stepperNumberDefinition, stepperSeparatorDefinition, stepperSubtextDefinition, stepperTitleDefinition, tableCellTextDefinition, tableDataDefinition, tableHeadDataDefinition, tableHeadRowDefinition, tableHeaderTextDefinition, tableRowDefinition, tagDefinition, textAreaWrapperDefinition, toastDefinition, statusIconDefinition$1 as toastStatusIconDefinition, statusSeparatorDefinition$1 as toastStatusSeparatorDefinition, toggleDefinition, tooltipDefinition, tooltipPointerHorizontalDefinition, tooltipPointerVerticalDefinition, tooltipTextDefinition, tooltipWrapperTriggerDefinition, typographyDefinition, uiOutlineClass, useAutosave, useBreakpoint, useDebounceCallback, useDeepCompareEffect, useDeepCompareLayoutEffect, useDeepCompareMemo, useFilters, useForm, useFormAutosave, useFormState, useFormValue, useIntersectionObserver, useKeyInteractions, useLocalStorage, useLongPressRepeat, usePagination, useScrollableListBox, useSorting, useStateAndRef, useTableColumnConfig, useTableNav, useToast, useTranslationMemo };
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@povio/ui",
3
- "version": "3.3.0",
3
+ "version": "3.4.0-rc.10",
4
4
  "type": "module",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
8
8
  ".": "./dist/index.js",
9
+ "./tanstack": "./dist/tanstack.js",
9
10
  "./text-editor": "./dist/text-editor.js",
10
11
  "./text-editor/styles": "./dist/styles/editor.css",
11
12
  "./tw-ui-plugin": "./dist/tw-ui-plugin.js"
@@ -20,7 +21,6 @@
20
21
  "@dnd-kit/modifiers": "^9.0.0",
21
22
  "@dnd-kit/sortable": "^10.0.0",
22
23
  "@dnd-kit/utilities": "^3.2.2",
23
- "@hookform/resolvers": "^5.2.2",
24
24
  "@internationalized/date": "^3.11.0",
25
25
  "@react-aria/button": "^3.14.4",
26
26
  "@react-aria/calendar": "^3.9.4",
@@ -36,11 +36,11 @@
36
36
  "clsx": "^2.1.1",
37
37
  "loglevel": "^1.9.2",
38
38
  "loglevel-plugin-prefix": "^0.8.4",
39
+ "lucide-react": "^1.28.0",
39
40
  "luxon": "^3.7.2",
40
41
  "motion": "~12.23.24",
41
42
  "react-aria": "^3.46.0",
42
43
  "react-aria-components": "^1.15.1",
43
- "react-hook-form": "^7.65.0",
44
44
  "react-responsive": "^10.0.1",
45
45
  "react-stately": "^3.44.0",
46
46
  "react-toastify": "^11.0.5",
@@ -51,6 +51,8 @@
51
51
  "peerDependencies": {
52
52
  "@casl/ability": "^6.7.3",
53
53
  "@casl/react": "^5.0.0",
54
+ "@hookform/resolvers": "^5.2.2",
55
+ "@tanstack/react-form": "^1.33.2",
54
56
  "@tanstack/react-query": "^5.89.0",
55
57
  "@tiptap/core": "^3.19.0",
56
58
  "@tiptap/extension-color": "^3.19.0",
@@ -67,9 +69,16 @@
67
69
  "i18next": ">=25",
68
70
  "react": "^19.1.0",
69
71
  "react-dom": "^19.1.0",
72
+ "react-hook-form": "^7.65.0",
70
73
  "react-i18next": ">=16"
71
74
  },
72
75
  "peerDependenciesMeta": {
76
+ "@hookform/resolvers": {
77
+ "optional": true
78
+ },
79
+ "@tanstack/react-form": {
80
+ "optional": true
81
+ },
73
82
  "@tiptap/core": {
74
83
  "optional": true
75
84
  },
@@ -105,6 +114,9 @@
105
114
  },
106
115
  "@tiptap/starter-kit": {
107
116
  "optional": true
117
+ },
118
+ "react-hook-form": {
119
+ "optional": true
108
120
  }
109
121
  }
110
122
  }
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const AccountIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const AlignCenterIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
@@ -1,30 +0,0 @@
1
- import { c } from "react/compiler-runtime";
2
- import { jsx } from "react/jsx-runtime";
3
- //#region src/assets/icons/AlignCenter.tsx
4
- var AlignCenterIcon = (props) => {
5
- const $ = c(3);
6
- let t0;
7
- if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
8
- t0 = /* @__PURE__ */ jsx("path", {
9
- fill: "currentColor",
10
- d: "M4.586 20.5a.73.73 0 0 1-.534-.216.73.73 0 0 1-.216-.534q0-.32.216-.535A.73.73 0 0 1 4.586 19h15.5q.318 0 .534.216a.73.73 0 0 1 .216.534q0 .32-.216.535a.73.73 0 0 1-.534.215zm4-3.875a.73.73 0 0 1-.534-.216.73.73 0 0 1-.216-.534q0-.32.216-.534a.73.73 0 0 1 .534-.216h7.5q.318 0 .534.216a.73.73 0 0 1 .216.534q0 .32-.216.535a.73.73 0 0 1-.534.215zm-4-3.875a.73.73 0 0 1-.534-.216.73.73 0 0 1-.216-.534q0-.32.216-.534a.73.73 0 0 1 .534-.216h15.5q.318 0 .534.216a.73.73 0 0 1 .216.534q0 .32-.216.534a.73.73 0 0 1-.534.216zm4-3.875a.73.73 0 0 1-.534-.216.73.73 0 0 1-.216-.534q0-.32.216-.535a.73.73 0 0 1 .534-.215h7.5q.318 0 .534.216a.73.73 0 0 1 .216.534q0 .32-.216.534a.73.73 0 0 1-.534.216zM4.586 5a.73.73 0 0 1-.534-.216.73.73 0 0 1-.216-.534q0-.32.216-.534a.73.73 0 0 1 .534-.216h15.5q.318 0 .534.216a.73.73 0 0 1 .216.534q0 .32-.216.535a.73.73 0 0 1-.534.215z"
11
- });
12
- $[0] = t0;
13
- } else t0 = $[0];
14
- let t1;
15
- if ($[1] !== props) {
16
- t1 = /* @__PURE__ */ jsx("svg", {
17
- xmlns: "http://www.w3.org/2000/svg",
18
- fill: "none",
19
- viewBox: "0 0 25 24",
20
- className: "fill-current",
21
- ...props,
22
- children: t0
23
- });
24
- $[1] = props;
25
- $[2] = t1;
26
- } else t1 = $[2];
27
- return t1;
28
- };
29
- //#endregion
30
- export { AlignCenterIcon };
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const AlignLeftIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
@@ -1,30 +0,0 @@
1
- import { c } from "react/compiler-runtime";
2
- import { jsx } from "react/jsx-runtime";
3
- //#region src/assets/icons/AlignLeft.tsx
4
- var AlignLeftIcon = (props) => {
5
- const $ = c(3);
6
- let t0;
7
- if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
8
- t0 = /* @__PURE__ */ jsx("path", {
9
- fill: "currentColor",
10
- d: "M4.586 20.5a.73.73 0 0 1-.534-.216.73.73 0 0 1-.216-.534q0-.32.216-.535A.73.73 0 0 1 4.586 19h15.5q.318 0 .534.216a.73.73 0 0 1 .216.534q0 .32-.216.535a.73.73 0 0 1-.534.215zm0-3.875a.73.73 0 0 1-.534-.216.73.73 0 0 1-.216-.534q0-.32.216-.534a.73.73 0 0 1 .534-.216h9.5q.318 0 .534.216a.73.73 0 0 1 .216.534q0 .32-.216.535a.73.73 0 0 1-.534.215zm0-3.875a.73.73 0 0 1-.534-.216.73.73 0 0 1-.216-.534q0-.32.216-.534a.73.73 0 0 1 .534-.216h15.5q.318 0 .534.216a.73.73 0 0 1 .216.534q0 .32-.216.534a.73.73 0 0 1-.534.216zm0-3.875a.73.73 0 0 1-.534-.216.73.73 0 0 1-.216-.534q0-.32.216-.535a.73.73 0 0 1 .534-.215h9.5q.318 0 .534.216a.73.73 0 0 1 .216.534q0 .32-.216.534a.73.73 0 0 1-.534.216zm0-3.875a.73.73 0 0 1-.534-.216.73.73 0 0 1-.216-.534q0-.32.216-.534a.73.73 0 0 1 .534-.216h15.5q.318 0 .534.216a.73.73 0 0 1 .216.534q0 .32-.216.535a.73.73 0 0 1-.534.215z"
11
- });
12
- $[0] = t0;
13
- } else t0 = $[0];
14
- let t1;
15
- if ($[1] !== props) {
16
- t1 = /* @__PURE__ */ jsx("svg", {
17
- xmlns: "http://www.w3.org/2000/svg",
18
- fill: "none",
19
- viewBox: "0 0 25 24",
20
- className: "fill-current",
21
- ...props,
22
- children: t0
23
- });
24
- $[1] = props;
25
- $[2] = t1;
26
- } else t1 = $[2];
27
- return t1;
28
- };
29
- //#endregion
30
- export { AlignLeftIcon };
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const AlignLeftRightIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
@@ -1,30 +0,0 @@
1
- import { c } from "react/compiler-runtime";
2
- import { jsx } from "react/jsx-runtime";
3
- //#region src/assets/icons/AlignLeftRight.tsx
4
- var AlignLeftRightIcon = (props) => {
5
- const $ = c(3);
6
- let t0;
7
- if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
8
- t0 = /* @__PURE__ */ jsx("path", {
9
- fill: "currentColor",
10
- d: "M4.586 20.5a.73.73 0 0 1-.534-.216.73.73 0 0 1-.216-.534q0-.32.216-.535A.73.73 0 0 1 4.586 19h15.5q.318 0 .534.216a.73.73 0 0 1 .216.534q0 .32-.216.535a.73.73 0 0 1-.534.215zm0-3.875a.73.73 0 0 1-.534-.216.73.73 0 0 1-.216-.534q0-.32.216-.534a.73.73 0 0 1 .534-.216h15.5q.318 0 .534.216a.73.73 0 0 1 .216.534q0 .32-.216.535a.73.73 0 0 1-.534.215zm0-3.875a.73.73 0 0 1-.534-.216.73.73 0 0 1-.216-.534q0-.32.216-.534a.73.73 0 0 1 .534-.216h15.5q.318 0 .534.216a.73.73 0 0 1 .216.534q0 .32-.216.534a.73.73 0 0 1-.534.216zm0-3.875a.73.73 0 0 1-.534-.216.73.73 0 0 1-.216-.534q0-.32.216-.535a.73.73 0 0 1 .534-.215h15.5q.318 0 .534.216a.73.73 0 0 1 .216.534q0 .32-.216.534a.73.73 0 0 1-.534.216zm0-3.875a.73.73 0 0 1-.534-.216.73.73 0 0 1-.216-.534q0-.32.216-.534a.73.73 0 0 1 .534-.216h15.5q.318 0 .534.216a.73.73 0 0 1 .216.534q0 .32-.216.535a.73.73 0 0 1-.534.215z"
11
- });
12
- $[0] = t0;
13
- } else t0 = $[0];
14
- let t1;
15
- if ($[1] !== props) {
16
- t1 = /* @__PURE__ */ jsx("svg", {
17
- xmlns: "http://www.w3.org/2000/svg",
18
- fill: "none",
19
- viewBox: "0 0 25 24",
20
- className: "fill-current",
21
- ...props,
22
- children: t0
23
- });
24
- $[1] = props;
25
- $[2] = t1;
26
- } else t1 = $[2];
27
- return t1;
28
- };
29
- //#endregion
30
- export { AlignLeftRightIcon };
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const AlignRightIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
@@ -1,30 +0,0 @@
1
- import { c } from "react/compiler-runtime";
2
- import { jsx } from "react/jsx-runtime";
3
- //#region src/assets/icons/AlignRight.tsx
4
- var AlignRightIcon = (props) => {
5
- const $ = c(3);
6
- let t0;
7
- if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
8
- t0 = /* @__PURE__ */ jsx("path", {
9
- fill: "currentColor",
10
- d: "M4.586 5a.73.73 0 0 1-.534-.216.73.73 0 0 1-.216-.534q0-.32.216-.534a.73.73 0 0 1 .534-.216h15.5q.318 0 .534.216a.73.73 0 0 1 .216.534q0 .32-.216.535a.73.73 0 0 1-.534.215zm6 3.875a.73.73 0 0 1-.534-.216.73.73 0 0 1-.216-.534q0-.32.216-.535a.73.73 0 0 1 .534-.215h9.5q.318 0 .534.216a.73.73 0 0 1 .216.534q0 .32-.216.534a.73.73 0 0 1-.534.216zm-6 3.875a.73.73 0 0 1-.534-.216.73.73 0 0 1-.216-.534q0-.32.216-.534a.73.73 0 0 1 .534-.216h15.5q.318 0 .534.216a.73.73 0 0 1 .216.534q0 .32-.216.534a.73.73 0 0 1-.534.216zm6 3.875a.73.73 0 0 1-.534-.216.73.73 0 0 1-.216-.534q0-.32.216-.534a.73.73 0 0 1 .534-.216h9.5q.318 0 .534.216a.73.73 0 0 1 .216.534q0 .32-.216.535a.73.73 0 0 1-.534.215zm-6 3.875a.73.73 0 0 1-.534-.216.73.73 0 0 1-.216-.534q0-.32.216-.535A.73.73 0 0 1 4.586 19h15.5q.318 0 .534.216a.73.73 0 0 1 .216.534q0 .32-.216.535a.73.73 0 0 1-.534.215z"
11
- });
12
- $[0] = t0;
13
- } else t0 = $[0];
14
- let t1;
15
- if ($[1] !== props) {
16
- t1 = /* @__PURE__ */ jsx("svg", {
17
- xmlns: "http://www.w3.org/2000/svg",
18
- fill: "none",
19
- viewBox: "0 0 25 24",
20
- className: "fill-current",
21
- ...props,
22
- children: t0
23
- });
24
- $[1] = props;
25
- $[2] = t1;
26
- } else t1 = $[2];
27
- return t1;
28
- };
29
- //#endregion
30
- export { AlignRightIcon };
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const ArrowDropDownIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
@@ -1,30 +0,0 @@
1
- import { c } from "react/compiler-runtime";
2
- import { jsx } from "react/jsx-runtime";
3
- //#region src/assets/icons/ArrowDropDown.tsx
4
- var ArrowDropDownIcon = (props) => {
5
- const $ = c(3);
6
- let t0;
7
- if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
8
- t0 = /* @__PURE__ */ jsx("path", {
9
- fill: "currentColor",
10
- d: "M7.7 10.65q0-.2.137-.35.138-.15.363-.15h7.6q.224 0 .363.15.137.15.137.35 0 .05-.15.35l-3.625 3.625a.8.8 0 0 1-.25.175.7.7 0 0 1-.275.05.7.7 0 0 1-.275-.05.8.8 0 0 1-.25-.175L7.85 11a.47.47 0 0 1-.15-.35"
11
- });
12
- $[0] = t0;
13
- } else t0 = $[0];
14
- let t1;
15
- if ($[1] !== props) {
16
- t1 = /* @__PURE__ */ jsx("svg", {
17
- xmlns: "http://www.w3.org/2000/svg",
18
- fill: "none",
19
- viewBox: "0 0 24 24",
20
- className: "fill-current",
21
- ...props,
22
- children: t0
23
- });
24
- $[1] = props;
25
- $[2] = t1;
26
- } else t1 = $[2];
27
- return t1;
28
- };
29
- //#endregion
30
- export { ArrowDropDownIcon };
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const ArrowDropUpIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
@@ -1,30 +0,0 @@
1
- import { c } from "react/compiler-runtime";
2
- import { jsx } from "react/jsx-runtime";
3
- //#region src/assets/icons/ArrowDropUp.tsx
4
- var ArrowDropUpIcon = (props) => {
5
- const $ = c(3);
6
- let t0;
7
- if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
8
- t0 = /* @__PURE__ */ jsx("path", {
9
- fill: "currentColor",
10
- d: "M16.3 13.35q0 .2-.137.35a.47.47 0 0 1-.363.15H8.2q-.224 0-.363-.15a.5.5 0 0 1-.137-.35q0-.05.15-.35l3.625-3.625a.8.8 0 0 1 .25-.175.7.7 0 0 1 .275-.05q.15 0 .275.05a.8.8 0 0 1 .25.175L16.15 13a.47.47 0 0 1 .15.35"
11
- });
12
- $[0] = t0;
13
- } else t0 = $[0];
14
- let t1;
15
- if ($[1] !== props) {
16
- t1 = /* @__PURE__ */ jsx("svg", {
17
- xmlns: "http://www.w3.org/2000/svg",
18
- fill: "none",
19
- viewBox: "0 0 24 24",
20
- className: "fill-current",
21
- ...props,
22
- children: t0
23
- });
24
- $[1] = props;
25
- $[2] = t1;
26
- } else t1 = $[2];
27
- return t1;
28
- };
29
- //#endregion
30
- export { ArrowDropUpIcon };
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const ArrowLeftIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
@@ -1,30 +0,0 @@
1
- import { c } from "react/compiler-runtime";
2
- import { jsx } from "react/jsx-runtime";
3
- //#region src/assets/icons/ArrowLeft.tsx
4
- var ArrowLeftIcon = (props) => {
5
- const $ = c(3);
6
- let t0;
7
- if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
8
- t0 = /* @__PURE__ */ jsx("path", {
9
- fill: "currentColor",
10
- d: "M13.35 7.7q.2 0 .35.138.15.137.15.362v7.6q0 .225-.15.363a.5.5 0 0 1-.35.137q-.05 0-.35-.15l-3.625-3.625a.8.8 0 0 1-.175-.25.7.7 0 0 1-.05-.275q0-.15.05-.275a.8.8 0 0 1 .175-.25L13 7.85a.47.47 0 0 1 .35-.15"
11
- });
12
- $[0] = t0;
13
- } else t0 = $[0];
14
- let t1;
15
- if ($[1] !== props) {
16
- t1 = /* @__PURE__ */ jsx("svg", {
17
- xmlns: "http://www.w3.org/2000/svg",
18
- fill: "none",
19
- viewBox: "0 0 24 24",
20
- className: "fill-current",
21
- ...props,
22
- children: t0
23
- });
24
- $[1] = props;
25
- $[2] = t1;
26
- } else t1 = $[2];
27
- return t1;
28
- };
29
- //#endregion
30
- export { ArrowLeftIcon };
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const ArrowRightIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
@@ -1,30 +0,0 @@
1
- import { c } from "react/compiler-runtime";
2
- import { jsx } from "react/jsx-runtime";
3
- //#region src/assets/icons/ArrowRight.tsx
4
- var ArrowRightIcon = (props) => {
5
- const $ = c(3);
6
- let t0;
7
- if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
8
- t0 = /* @__PURE__ */ jsx("path", {
9
- fill: "currentColor",
10
- d: "M10.65 16.3a.5.5 0 0 1-.35-.137.47.47 0 0 1-.15-.363V8.2q0-.224.15-.362a.5.5 0 0 1 .35-.138q.05 0 .35.15l3.625 3.625a.8.8 0 0 1 .175.25q.05.126.05.275t-.05.275a.8.8 0 0 1-.175.25L11 16.15a.47.47 0 0 1-.35.15"
11
- });
12
- $[0] = t0;
13
- } else t0 = $[0];
14
- let t1;
15
- if ($[1] !== props) {
16
- t1 = /* @__PURE__ */ jsx("svg", {
17
- xmlns: "http://www.w3.org/2000/svg",
18
- fill: "none",
19
- viewBox: "0 0 24 24",
20
- className: "fill-current",
21
- ...props,
22
- children: t0
23
- });
24
- $[1] = props;
25
- $[2] = t1;
26
- } else t1 = $[2];
27
- return t1;
28
- };
29
- //#endregion
30
- export { ArrowRightIcon };
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const BoardIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const BoldIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
@@ -1,30 +0,0 @@
1
- import { c } from "react/compiler-runtime";
2
- import { jsx } from "react/jsx-runtime";
3
- //#region src/assets/icons/Bold.tsx
4
- var BoldIcon = (props) => {
5
- const $ = c(3);
6
- let t0;
7
- if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
8
- t0 = /* @__PURE__ */ jsx("path", {
9
- fill: "currentColor",
10
- d: "M9.016 19q-.669 0-1.137-.468a1.55 1.55 0 0 1-.469-1.137V6.605q0-.667.469-1.137A1.55 1.55 0 0 1 9.016 5h3.531q1.615 0 2.921 1.006 1.305 1.005 1.305 2.708 0 1.185-.572 1.932-.571.746-1.232 1.084.813.28 1.553 1.108t.74 2.23q0 2.026-1.494 2.979-1.495.953-3.01.953zm.666-2.105h2.991q1.248 0 1.764-.693t.516-1.329-.516-1.329-1.813-.693H9.682zm0-6.084h2.741q.963 0 1.527-.55t.564-1.32q0-.816-.596-1.334-.597-.518-1.462-.518H9.682z"
11
- });
12
- $[0] = t0;
13
- } else t0 = $[0];
14
- let t1;
15
- if ($[1] !== props) {
16
- t1 = /* @__PURE__ */ jsx("svg", {
17
- xmlns: "http://www.w3.org/2000/svg",
18
- fill: "none",
19
- viewBox: "0 0 25 24",
20
- className: "fill-current",
21
- ...props,
22
- children: t0
23
- });
24
- $[1] = props;
25
- $[2] = t1;
26
- } else t1 = $[2];
27
- return t1;
28
- };
29
- //#endregion
30
- export { BoldIcon };
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const BulletedListIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
@@ -1,30 +0,0 @@
1
- import { c } from "react/compiler-runtime";
2
- import { jsx } from "react/jsx-runtime";
3
- //#region src/assets/icons/BulletedList.tsx
4
- var BulletedListIcon = (props) => {
5
- const $ = c(3);
6
- let t0;
7
- if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
8
- t0 = /* @__PURE__ */ jsx("path", {
9
- fill: "currentColor",
10
- d: "M10.394 18.75a.73.73 0 0 1-.535-.216.73.73 0 0 1-.215-.534q0-.32.215-.535a.73.73 0 0 1 .535-.215h9.692q.318 0 .534.216a.73.73 0 0 1 .216.534q0 .319-.216.534a.73.73 0 0 1-.534.216zm0-6a.73.73 0 0 1-.535-.216.73.73 0 0 1-.215-.534q0-.32.215-.535a.73.73 0 0 1 .535-.215h9.692q.318 0 .534.216a.73.73 0 0 1 .216.534q0 .319-.216.534a.73.73 0 0 1-.534.216zm0-6a.73.73 0 0 1-.535-.216A.73.73 0 0 1 9.644 6q0-.32.215-.535a.73.73 0 0 1 .535-.215h9.692q.318 0 .534.216a.73.73 0 0 1 .216.534q0 .319-.216.534a.73.73 0 0 1-.534.216zM5.499 19.663q-.686 0-1.174-.488A1.6 1.6 0 0 1 3.835 18q0-.687.49-1.175a1.6 1.6 0 0 1 1.174-.489q.687 0 1.175.49.489.487.489 1.174t-.489 1.175a1.6 1.6 0 0 1-1.175.488m0-6q-.686 0-1.174-.488A1.6 1.6 0 0 1 3.835 12q0-.687.49-1.175a1.6 1.6 0 0 1 1.174-.489q.687 0 1.175.49.489.487.489 1.174t-.489 1.175a1.6 1.6 0 0 1-1.175.488m0-6q-.686 0-1.174-.488A1.6 1.6 0 0 1 3.835 6q0-.687.49-1.175a1.6 1.6 0 0 1 1.174-.489q.687 0 1.175.49.489.487.489 1.174t-.489 1.175a1.6 1.6 0 0 1-1.175.488"
11
- });
12
- $[0] = t0;
13
- } else t0 = $[0];
14
- let t1;
15
- if ($[1] !== props) {
16
- t1 = /* @__PURE__ */ jsx("svg", {
17
- xmlns: "http://www.w3.org/2000/svg",
18
- fill: "none",
19
- viewBox: "0 0 25 24",
20
- className: "fill-current",
21
- ...props,
22
- children: t0
23
- });
24
- $[1] = props;
25
- $[2] = t1;
26
- } else t1 = $[2];
27
- return t1;
28
- };
29
- //#endregion
30
- export { BulletedListIcon };
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const CalendarIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
@@ -1,32 +0,0 @@
1
- import { c } from "react/compiler-runtime";
2
- import { jsx } from "react/jsx-runtime";
3
- //#region src/assets/icons/Calendar.tsx
4
- var CalendarIcon = (props) => {
5
- const $ = c(3);
6
- let t0;
7
- if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
8
- t0 = /* @__PURE__ */ jsx("path", {
9
- fill: "currentColor",
10
- fillRule: "evenodd",
11
- d: "M15.9 4.045c0-.439-.35-.795-.78-.795s-.78.356-.78.795v.796H9.66v-.796c0-.439-.35-.795-.78-.795s-.78.356-.78.795v.796H6.54c-1.292 0-2.34 1.068-2.34 2.386v11.137c0 1.318 1.048 2.386 2.34 2.386h10.92c1.292 0 2.34-1.068 2.34-2.386V7.227c0-1.318-1.048-2.386-2.34-2.386H15.9zm2.34 5.569V7.227c0-.439-.35-.795-.78-.795H15.9v.795c0 .44-.35.796-.78.796a.79.79 0 0 1-.78-.796v-.795H9.66v.795c0 .44-.35.796-.78.796a.79.79 0 0 1-.78-.796v-.795H6.54c-.43 0-.78.356-.78.795v2.387zm-12.48 1.59h12.48v7.16c0 .439-.35.795-.78.795H6.54a.79.79 0 0 1-.78-.795z",
12
- clipRule: "evenodd"
13
- });
14
- $[0] = t0;
15
- } else t0 = $[0];
16
- let t1;
17
- if ($[1] !== props) {
18
- t1 = /* @__PURE__ */ jsx("svg", {
19
- xmlns: "http://www.w3.org/2000/svg",
20
- fill: "none",
21
- viewBox: "0 0 24 24",
22
- className: "fill-current",
23
- ...props,
24
- children: t0
25
- });
26
- $[1] = props;
27
- $[2] = t1;
28
- } else t1 = $[2];
29
- return t1;
30
- };
31
- //#endregion
32
- export { CalendarIcon };
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const CheckIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;