@povio/ui 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (485) hide show
  1. package/package.json +67 -10
  2. package/src/assets/icons/AlignCenter.tsx +16 -0
  3. package/src/assets/icons/AlignLeft.tsx +16 -0
  4. package/src/assets/icons/AlignLeftRight.tsx +16 -0
  5. package/src/assets/icons/AlignRight.tsx +16 -0
  6. package/src/assets/icons/ArrowDropDown.tsx +16 -0
  7. package/src/assets/icons/ArrowDropUp.tsx +16 -0
  8. package/src/assets/icons/ArrowLeft.tsx +16 -0
  9. package/src/assets/icons/ArrowRight.tsx +16 -0
  10. package/src/assets/icons/Bold.tsx +16 -0
  11. package/src/assets/icons/BulletedList.tsx +16 -0
  12. package/src/assets/icons/Calendar.tsx +18 -0
  13. package/src/assets/icons/Check.tsx +18 -0
  14. package/src/assets/icons/CheckCircle.tsx +16 -0
  15. package/src/assets/icons/CheckboxCheckmark.tsx +19 -0
  16. package/src/assets/icons/CheckboxIndeterminate.tsx +19 -0
  17. package/src/assets/icons/ChevronDown.tsx +18 -0
  18. package/src/assets/icons/ChevronLeft.tsx +18 -0
  19. package/src/assets/icons/ChevronRight.tsx +18 -0
  20. package/src/assets/icons/ChevronUp.tsx +18 -0
  21. package/src/assets/icons/ChevronsLeft.tsx +24 -0
  22. package/src/assets/icons/ChevronsRight.tsx +24 -0
  23. package/src/assets/icons/Clock.tsx +16 -0
  24. package/src/assets/icons/Close.tsx +16 -0
  25. package/src/assets/icons/DateTime.tsx +20 -0
  26. package/src/assets/icons/Drag.tsx +16 -0
  27. package/src/assets/icons/File.tsx +18 -0
  28. package/src/assets/icons/Highlight.tsx +16 -0
  29. package/src/assets/icons/HighlightOn.tsx +26 -0
  30. package/src/assets/icons/Info.tsx +24 -0
  31. package/src/assets/icons/Italic.tsx +16 -0
  32. package/src/assets/icons/Link.tsx +16 -0
  33. package/src/assets/icons/Menu.tsx +18 -0
  34. package/src/assets/icons/NumberedList.tsx +16 -0
  35. package/src/assets/icons/PointerHorizontal.tsx +16 -0
  36. package/src/assets/icons/PointerVertical.tsx +16 -0
  37. package/src/assets/icons/Send.tsx +18 -0
  38. package/src/assets/icons/Strikethrough.tsx +16 -0
  39. package/src/assets/icons/TextColor.tsx +24 -0
  40. package/src/assets/icons/Today.tsx +16 -0
  41. package/src/assets/icons/Underlined.tsx +18 -0
  42. package/src/assets/icons/Upload.tsx +20 -0
  43. package/src/assets/icons/View.tsx +16 -0
  44. package/src/assets/icons/ViewOff.tsx +16 -0
  45. package/src/assets/icons/Warningfilled.tsx +18 -0
  46. package/src/assets/locales/en/translation.json +156 -0
  47. package/src/assets/locales/sl/translation.json +152 -0
  48. package/src/components/Menu/Menu.tsx +29 -0
  49. package/src/components/Menu/MenuDesktop.tsx +68 -0
  50. package/src/components/Menu/MenuItem.tsx +33 -0
  51. package/src/components/Menu/MenuMobile.tsx +81 -0
  52. package/src/components/Menu/MenuPopover.tsx +45 -0
  53. package/src/components/buttons/Button/Button.tsx +108 -0
  54. package/src/components/buttons/Button/button.cva.ts +678 -0
  55. package/src/components/buttons/IconButton/IconButton.tsx +25 -0
  56. package/src/components/buttons/InlineIconButton/InlineIconButton.tsx +27 -0
  57. package/src/components/buttons/PillButton/PillButton.tsx +70 -0
  58. package/src/components/buttons/PillButton/pillButton.cva.ts +88 -0
  59. package/src/components/buttons/SplitButton/SplitButton.tsx +61 -0
  60. package/src/components/buttons/TextButton/TextButton.tsx +29 -0
  61. package/src/components/buttons/ToggleButton/ToggleButton.tsx +28 -0
  62. package/src/components/buttons/shared/ButtonContent.tsx +61 -0
  63. package/src/components/buttons/shared/buttonContent.cva.ts +18 -0
  64. package/src/components/inputs/Checkbox/Checkbox.tsx +101 -0
  65. package/src/components/inputs/Checkbox/CheckboxCheckmark.tsx +47 -0
  66. package/src/components/inputs/Checkbox/checkbox.cva.ts +51 -0
  67. package/src/components/inputs/DateTime/DatePicker/DatePicker.tsx +269 -0
  68. package/src/components/inputs/DateTime/DateRangePicker/DateRangePicker.tsx +808 -0
  69. package/src/components/inputs/DateTime/DateTimePicker/DateTimePicker.tsx +291 -0
  70. package/src/components/inputs/DateTime/TimePicker/TimePicker.tsx +255 -0
  71. package/src/components/inputs/DateTime/shared/Calendar.tsx +104 -0
  72. package/src/components/inputs/DateTime/shared/CalendarCell.tsx +247 -0
  73. package/src/components/inputs/DateTime/shared/CalendarGrid.tsx +102 -0
  74. package/src/components/inputs/DateTime/shared/CalendarHeader.tsx +110 -0
  75. package/src/components/inputs/DateTime/shared/CalendarSelectHeader.tsx +228 -0
  76. package/src/components/inputs/DateTime/shared/DateField.tsx +83 -0
  77. package/src/components/inputs/DateTime/shared/DatePickerInput.tsx +170 -0
  78. package/src/components/inputs/DateTime/shared/DateSegmentItem.tsx +65 -0
  79. package/src/components/inputs/DateTime/shared/DateTimeDialog.tsx +87 -0
  80. package/src/components/inputs/DateTime/shared/DateTimeDialogFooter.tsx +42 -0
  81. package/src/components/inputs/DateTime/shared/MonthPicker.tsx +91 -0
  82. package/src/components/inputs/DateTime/shared/RangeCalendar.tsx +160 -0
  83. package/src/components/inputs/DateTime/shared/TimeField.tsx +36 -0
  84. package/src/components/inputs/DateTime/shared/TimePickerForm.tsx +222 -0
  85. package/src/components/inputs/DateTime/shared/TimePickerInput.tsx +114 -0
  86. package/src/components/inputs/DateTime/shared/YearPicker.tsx +100 -0
  87. package/src/components/inputs/File/FileUpload.tsx +285 -0
  88. package/src/components/inputs/File/FileUploadContainer.tsx +16 -0
  89. package/src/components/inputs/File/InputUpload.tsx +196 -0
  90. package/src/components/inputs/File/fileUpload.types.ts +100 -0
  91. package/src/components/inputs/File/index.ts +15 -0
  92. package/src/components/inputs/File/inputUpload.types.ts +41 -0
  93. package/src/components/inputs/File/shared/FileCard.tsx +72 -0
  94. package/src/components/inputs/File/shared/FileCardList.tsx +30 -0
  95. package/src/components/inputs/File/shared/FileProgressBar.tsx +25 -0
  96. package/src/components/inputs/File/shared/FileUploadContent.tsx +99 -0
  97. package/src/components/inputs/File/shared/FileUploadContentEmpty.tsx +94 -0
  98. package/src/components/inputs/File/shared/FileUploadContentError.tsx +170 -0
  99. package/src/components/inputs/File/shared/FileUploadContentFilled.tsx +179 -0
  100. package/src/components/inputs/File/shared/FileUploadContentLoading.tsx +115 -0
  101. package/src/components/inputs/File/shared/InputUploadContent.tsx +68 -0
  102. package/src/components/inputs/File/shared/InputUploadFilled.tsx +32 -0
  103. package/src/components/inputs/File/shared/fileUpload.cva.ts +59 -0
  104. package/src/components/inputs/File/shared/inputUploadButton.cva.ts +48 -0
  105. package/src/components/inputs/FormField/FormField.tsx +69 -0
  106. package/src/components/inputs/FormField/FormFieldError.tsx +21 -0
  107. package/src/components/inputs/FormField/FormFieldHeader.tsx +75 -0
  108. package/src/components/inputs/FormField/FormFieldHeaderClose.tsx +23 -0
  109. package/src/components/inputs/FormField/FormFieldLabel.tsx +41 -0
  110. package/src/components/inputs/Input/NumberInput/NumberInput.tsx +180 -0
  111. package/src/components/inputs/Input/PasswordInput/PasswordInput.tsx +34 -0
  112. package/src/components/inputs/Input/TextArea/TextArea.tsx +166 -0
  113. package/src/components/inputs/Input/TextInput/TextInput.tsx +181 -0
  114. package/src/components/inputs/Input/shared/InputContent.tsx +154 -0
  115. package/src/components/inputs/Inputs/Form.tsx +129 -0
  116. package/src/components/inputs/Inputs/InputItem.tsx +127 -0
  117. package/src/components/inputs/Inputs/Inputs.tsx +43 -0
  118. package/src/components/inputs/RadioGroup/RadioGroup.tsx +139 -0
  119. package/src/components/inputs/RadioGroup/radio.cva.ts +51 -0
  120. package/src/components/inputs/Selection/Autocomplete/Autocomplete.tsx +61 -0
  121. package/src/components/inputs/Selection/Autocomplete/QueryAutocomplete.tsx +58 -0
  122. package/src/components/inputs/Selection/Select/Select.tsx +59 -0
  123. package/src/components/inputs/Selection/shared/SelectBase.tsx +69 -0
  124. package/src/components/inputs/Selection/shared/SelectDesktop.tsx +236 -0
  125. package/src/components/inputs/Selection/shared/SelectInput.tsx +278 -0
  126. package/src/components/inputs/Selection/shared/SelectListBox.tsx +121 -0
  127. package/src/components/inputs/Selection/shared/SelectListBoxItem.tsx +79 -0
  128. package/src/components/inputs/Selection/shared/SelectListBoxItemSelectAll.tsx +40 -0
  129. package/src/components/inputs/Selection/shared/SelectListBoxLoadingItem.tsx +52 -0
  130. package/src/components/inputs/Selection/shared/SelectListBoxSelectionBar.tsx +39 -0
  131. package/src/components/inputs/Selection/shared/SelectMobile.tsx +169 -0
  132. package/src/components/inputs/Selection/shared/select.context.tsx +316 -0
  133. package/src/components/inputs/Selection/shared/select.types.ts +75 -0
  134. package/src/components/inputs/Selection/shared/useSelectItems.tsx +127 -0
  135. package/src/components/inputs/Slider/Slider.tsx +174 -0
  136. package/src/components/inputs/TextEditor/TextEditor.tsx +239 -0
  137. package/src/components/inputs/TextEditor/Toolbar/ColorPicker.tsx +34 -0
  138. package/src/components/inputs/TextEditor/Toolbar/ColorPickerDropdown.tsx +74 -0
  139. package/src/components/inputs/TextEditor/Toolbar/HyperlinkAction.tsx +87 -0
  140. package/src/components/inputs/TextEditor/Toolbar/TextAlignSelect.tsx +64 -0
  141. package/src/components/inputs/TextEditor/Toolbar/TextColorSelect.tsx +30 -0
  142. package/src/components/inputs/TextEditor/Toolbar/TextEditorToolbar.tsx +40 -0
  143. package/src/components/inputs/TextEditor/Toolbar/TextHighlightSelect.tsx +39 -0
  144. package/src/components/inputs/TextEditor/Toolbar/TextListActions.tsx +57 -0
  145. package/src/components/inputs/TextEditor/Toolbar/TextMarksActions.tsx +79 -0
  146. package/src/components/inputs/TextEditor/Toolbar/TextStyleSelect.tsx +73 -0
  147. package/src/components/inputs/TextEditor/textEditor.types.ts +43 -0
  148. package/src/components/inputs/Toggle/Toggle.tsx +80 -0
  149. package/src/components/inputs/Toggle/toggle.cva.ts +48 -0
  150. package/src/components/inputs/shared/CheckContent.tsx +26 -0
  151. package/src/components/inputs/shared/InputClear.tsx +29 -0
  152. package/src/components/inputs/shared/form.types.ts +28 -0
  153. package/src/components/inputs/shared/input.cva.ts +182 -0
  154. package/src/components/inputs/shared/label.cva.ts +146 -0
  155. package/src/components/outline.clsx.ts +9 -0
  156. package/src/components/overlays/ActionModal/ActionModal.tsx +93 -0
  157. package/src/components/overlays/BottomSheet/BottomSheet.tsx +270 -0
  158. package/src/components/overlays/Drawer/Drawer.tsx +93 -0
  159. package/src/components/overlays/Modal/Modal.tsx +63 -0
  160. package/src/components/overlays/Modal/modal.cva.ts +55 -0
  161. package/src/components/overlays/ResponsivePopover/ResponsivePopover.tsx +77 -0
  162. package/src/components/overlays/Tooltip/Tooltip.tsx +47 -0
  163. package/src/components/overlays/Tooltip/TooltipEllipsis.tsx +35 -0
  164. package/src/components/segment/Segment.tsx +121 -0
  165. package/src/components/segment/SegmentItem.tsx +41 -0
  166. package/src/components/segment/segment.types.ts +44 -0
  167. package/src/components/shared/pagination/Pagination.tsx +75 -0
  168. package/src/components/shared/pagination/PaginationList.tsx +174 -0
  169. package/src/components/shared/pagination/minWidth.cva.ts +13 -0
  170. package/src/components/status/Alert/Alert.tsx +58 -0
  171. package/src/components/status/Alert/alert.cva.ts +66 -0
  172. package/src/components/status/Loader/Loader.tsx +32 -0
  173. package/src/components/status/Loader/loader.cva.ts +29 -0
  174. package/src/components/status/Toast/Toast.tsx +86 -0
  175. package/src/components/status/Toast/toast.cva.ts +154 -0
  176. package/src/components/status/Toast/useToast.tsx +77 -0
  177. package/src/components/status/shared/status.cva.ts +60 -0
  178. package/src/components/table/CellText.tsx +23 -0
  179. package/src/components/table/ColumnConfig.tsx +145 -0
  180. package/src/components/table/HeaderText.tsx +18 -0
  181. package/src/components/table/InfiniteTable.tsx +51 -0
  182. package/src/components/table/PaginatedTable.tsx +38 -0
  183. package/src/components/table/Table.tsx +456 -0
  184. package/src/components/table/table.cva.ts +47 -0
  185. package/src/components/text/Link/Link.tsx +21 -0
  186. package/src/components/text/Link/link.cva.ts +21 -0
  187. package/src/components/text/Tag/Tag.tsx +59 -0
  188. package/src/components/text/Tag/tag.cva.ts +62 -0
  189. package/src/components/text/Typography/Typography.tsx +33 -0
  190. package/src/components/text/Typography/typography.cva.ts +102 -0
  191. package/src/config/confirmation.context.tsx +133 -0
  192. package/src/config/i18n.ts +12 -0
  193. package/src/config/router.context.tsx +66 -0
  194. package/src/config/uiConfig.context.tsx +89 -0
  195. package/src/config/uiStyle.context.tsx +100 -0
  196. package/src/helpers/dynamicColumns.ts +567 -0
  197. package/src/helpers/dynamicInputs.ts +392 -0
  198. package/src/hooks/useAutosave.ts +109 -0
  199. package/src/hooks/useBreakpoint.ts +26 -0
  200. package/src/hooks/useDebounceCallback.ts +35 -0
  201. package/src/hooks/useDeepCompare.ts +27 -0
  202. package/src/hooks/useFilters.ts +154 -0
  203. package/src/hooks/useForm.ts +54 -0
  204. package/src/hooks/useFormAutosave.ts +100 -0
  205. package/src/hooks/useIntersectionObserver.ts +33 -0
  206. package/src/hooks/useLocalStorage.ts +81 -0
  207. package/src/hooks/useLongPressRepeat.ts +40 -0
  208. package/src/hooks/usePagination.ts +41 -0
  209. package/src/hooks/useScrollableListBox.ts +35 -0
  210. package/src/hooks/useSingletonMutation.ts +30 -0
  211. package/src/hooks/useSorting.ts +39 -0
  212. package/src/hooks/useStateAndRef.ts +20 -0
  213. package/src/hooks/useTableColumnConfig.ts +86 -0
  214. package/src/hooks/useTableNav.ts +615 -0
  215. package/src/hooks/useTranslationMemo.ts +17 -0
  216. package/src/index.ts +252 -0
  217. package/src/types/{common.d.ts → common.ts} +15 -4
  218. package/src/types/i18next.d.ts +11 -0
  219. package/src/types/react-query.ts +48 -0
  220. package/src/types/table.d.ts +17 -0
  221. package/src/utils/array.utils.spec.ts +16 -0
  222. package/src/utils/array.utils.ts +9 -0
  223. package/src/utils/compoundMapper.spec.ts +91 -0
  224. package/src/utils/compoundMapper.ts +42 -0
  225. package/src/utils/date-time.utils.spec.ts +48 -0
  226. package/src/utils/date-time.utils.ts +85 -0
  227. package/src/utils/date.utils.spec.ts +12 -0
  228. package/src/utils/date.utils.ts +9 -0
  229. package/src/utils/dom.utils.ts +16 -0
  230. package/src/utils/file.utils.ts +73 -0
  231. package/src/utils/isEqual.ts +153 -0
  232. package/src/utils/logger.ts +19 -0
  233. package/src/utils/object.utils.ts +62 -0
  234. package/src/utils/queries.utils.ts +10 -0
  235. package/src/utils/rest/interceptors/logging.interceptor.ts +16 -0
  236. package/src/utils/rest/interceptors/response.interceptor.ts +27 -0
  237. package/src/utils/rest/interceptors/rest-interceptor.ts +22 -0
  238. package/src/utils/rest/rest-client.ts +125 -0
  239. package/src/utils/rest/rest.utils.ts +65 -0
  240. package/src/utils/routing.utils.ts +12 -0
  241. package/src/utils/string.utils.ts +9 -0
  242. package/src/utils/vendor/error-handling.ts +170 -0
  243. package/src/utils/zod.utils.ts +95 -0
  244. package/index.js +0 -61206
  245. package/povio-ui-0.0.2.tgz +0 -0
  246. package/src/assets/icons/AlignCenter.d.ts +0 -2
  247. package/src/assets/icons/AlignLeft.d.ts +0 -2
  248. package/src/assets/icons/AlignLeftRight.d.ts +0 -2
  249. package/src/assets/icons/AlignRight.d.ts +0 -2
  250. package/src/assets/icons/ArrowDropDown.d.ts +0 -2
  251. package/src/assets/icons/ArrowDropUp.d.ts +0 -2
  252. package/src/assets/icons/ArrowLeft.d.ts +0 -2
  253. package/src/assets/icons/ArrowRight.d.ts +0 -2
  254. package/src/assets/icons/Bold.d.ts +0 -2
  255. package/src/assets/icons/BulletedList.d.ts +0 -2
  256. package/src/assets/icons/Calendar.d.ts +0 -2
  257. package/src/assets/icons/Check.d.ts +0 -2
  258. package/src/assets/icons/CheckCircle.d.ts +0 -2
  259. package/src/assets/icons/CheckboxCheckmark.d.ts +0 -2
  260. package/src/assets/icons/CheckboxIndeterminate.d.ts +0 -2
  261. package/src/assets/icons/ChevronDown.d.ts +0 -2
  262. package/src/assets/icons/ChevronLeft.d.ts +0 -2
  263. package/src/assets/icons/ChevronRight.d.ts +0 -2
  264. package/src/assets/icons/ChevronUp.d.ts +0 -2
  265. package/src/assets/icons/ChevronsLeft.d.ts +0 -2
  266. package/src/assets/icons/ChevronsRight.d.ts +0 -2
  267. package/src/assets/icons/Clock.d.ts +0 -2
  268. package/src/assets/icons/Close.d.ts +0 -2
  269. package/src/assets/icons/DateTime.d.ts +0 -2
  270. package/src/assets/icons/Drag.d.ts +0 -2
  271. package/src/assets/icons/File.d.ts +0 -2
  272. package/src/assets/icons/Highlight.d.ts +0 -2
  273. package/src/assets/icons/HighlightOn.d.ts +0 -6
  274. package/src/assets/icons/Info.d.ts +0 -2
  275. package/src/assets/icons/Italic.d.ts +0 -2
  276. package/src/assets/icons/Link.d.ts +0 -2
  277. package/src/assets/icons/Menu.d.ts +0 -2
  278. package/src/assets/icons/NumberedList.d.ts +0 -2
  279. package/src/assets/icons/PointerHorizontal.d.ts +0 -2
  280. package/src/assets/icons/PointerVertical.d.ts +0 -2
  281. package/src/assets/icons/Send.d.ts +0 -2
  282. package/src/assets/icons/Strikethrough.d.ts +0 -2
  283. package/src/assets/icons/TextColor.d.ts +0 -6
  284. package/src/assets/icons/Today.d.ts +0 -2
  285. package/src/assets/icons/Underlined.d.ts +0 -2
  286. package/src/assets/icons/Upload.d.ts +0 -2
  287. package/src/assets/icons/View.d.ts +0 -2
  288. package/src/assets/icons/ViewOff.d.ts +0 -2
  289. package/src/assets/icons/Warningfilled.d.ts +0 -2
  290. package/src/components/Menu/Menu.d.ts +0 -14
  291. package/src/components/Menu/MenuDesktop.d.ts +0 -2
  292. package/src/components/Menu/MenuItem.d.ts +0 -5
  293. package/src/components/Menu/MenuMobile.d.ts +0 -2
  294. package/src/components/Menu/MenuPopover.d.ts +0 -5
  295. package/src/components/buttons/Button/Button.d.ts +0 -27
  296. package/src/components/buttons/Button/button.cva.d.ts +0 -30
  297. package/src/components/buttons/IconButton/IconButton.d.ts +0 -10
  298. package/src/components/buttons/InlineIconButton/InlineIconButton.d.ts +0 -11
  299. package/src/components/buttons/PillButton/PillButton.d.ts +0 -11
  300. package/src/components/buttons/PillButton/pillButton.cva.d.ts +0 -14
  301. package/src/components/buttons/SplitButton/SplitButton.d.ts +0 -10
  302. package/src/components/buttons/TextButton/TextButton.d.ts +0 -11
  303. package/src/components/buttons/ToggleButton/ToggleButton.d.ts +0 -9
  304. package/src/components/buttons/shared/ButtonContent.d.ts +0 -16
  305. package/src/components/buttons/shared/buttonContent.cva.d.ts +0 -6
  306. package/src/components/inputs/Checkbox/Checkbox.d.ts +0 -17
  307. package/src/components/inputs/Checkbox/CheckboxCheckmark.d.ts +0 -9
  308. package/src/components/inputs/Checkbox/checkbox.cva.d.ts +0 -11
  309. package/src/components/inputs/DateTime/DatePicker/DatePicker.d.ts +0 -24
  310. package/src/components/inputs/DateTime/DateRangePicker/DateRangePicker.d.ts +0 -32
  311. package/src/components/inputs/DateTime/DateTimePicker/DateTimePicker.d.ts +0 -22
  312. package/src/components/inputs/DateTime/TimePicker/TimePicker.d.ts +0 -20
  313. package/src/components/inputs/DateTime/shared/Calendar.d.ts +0 -20
  314. package/src/components/inputs/DateTime/shared/CalendarCell.d.ts +0 -20
  315. package/src/components/inputs/DateTime/shared/CalendarGrid.d.ts +0 -25
  316. package/src/components/inputs/DateTime/shared/CalendarHeader.d.ts +0 -16
  317. package/src/components/inputs/DateTime/shared/CalendarSelectHeader.d.ts +0 -17
  318. package/src/components/inputs/DateTime/shared/DateField.d.ts +0 -12
  319. package/src/components/inputs/DateTime/shared/DatePickerInput.d.ts +0 -20
  320. package/src/components/inputs/DateTime/shared/DateSegmentItem.d.ts +0 -11
  321. package/src/components/inputs/DateTime/shared/DateTimeDialog.d.ts +0 -15
  322. package/src/components/inputs/DateTime/shared/DateTimeDialogFooter.d.ts +0 -7
  323. package/src/components/inputs/DateTime/shared/MonthPicker.d.ts +0 -7
  324. package/src/components/inputs/DateTime/shared/RangeCalendar.d.ts +0 -26
  325. package/src/components/inputs/DateTime/shared/TimeField.d.ts +0 -12
  326. package/src/components/inputs/DateTime/shared/TimePickerForm.d.ts +0 -10
  327. package/src/components/inputs/DateTime/shared/TimePickerInput.d.ts +0 -18
  328. package/src/components/inputs/DateTime/shared/YearPicker.d.ts +0 -8
  329. package/src/components/inputs/File/FileUpload.d.ts +0 -4
  330. package/src/components/inputs/File/FileUploadContainer.d.ts +0 -3
  331. package/src/components/inputs/File/InputUpload.d.ts +0 -4
  332. package/src/components/inputs/File/fileUpload.types.d.ts +0 -79
  333. package/src/components/inputs/File/index.d.ts +0 -9
  334. package/src/components/inputs/File/inputUpload.types.d.ts +0 -30
  335. package/src/components/inputs/File/shared/FileCard.d.ts +0 -9
  336. package/src/components/inputs/File/shared/FileCardList.d.ts +0 -9
  337. package/src/components/inputs/File/shared/FileProgressBar.d.ts +0 -3
  338. package/src/components/inputs/File/shared/FileUploadContent.d.ts +0 -10
  339. package/src/components/inputs/File/shared/FileUploadContentEmpty.d.ts +0 -9
  340. package/src/components/inputs/File/shared/FileUploadContentError.d.ts +0 -11
  341. package/src/components/inputs/File/shared/FileUploadContentFilled.d.ts +0 -11
  342. package/src/components/inputs/File/shared/FileUploadContentLoading.d.ts +0 -9
  343. package/src/components/inputs/File/shared/InputUploadContent.d.ts +0 -8
  344. package/src/components/inputs/File/shared/InputUploadFilled.d.ts +0 -7
  345. package/src/components/inputs/File/shared/fileUpload.cva.d.ts +0 -11
  346. package/src/components/inputs/File/shared/inputUploadButton.cva.d.ts +0 -10
  347. package/src/components/inputs/FormField/FormField.d.ts +0 -17
  348. package/src/components/inputs/FormField/FormFieldError.d.ts +0 -7
  349. package/src/components/inputs/FormField/FormFieldHeader.d.ts +0 -14
  350. package/src/components/inputs/FormField/FormFieldHeaderClose.d.ts +0 -5
  351. package/src/components/inputs/FormField/FormFieldLabel.d.ts +0 -11
  352. package/src/components/inputs/Input/NumberInput/NumberInput.d.ts +0 -18
  353. package/src/components/inputs/Input/PasswordInput/PasswordInput.d.ts +0 -7
  354. package/src/components/inputs/Input/TextArea/TextArea.d.ts +0 -17
  355. package/src/components/inputs/Input/TextInput/TextInput.d.ts +0 -19
  356. package/src/components/inputs/Input/shared/InputContent.d.ts +0 -27
  357. package/src/components/inputs/Inputs/Form.d.ts +0 -26
  358. package/src/components/inputs/Inputs/InputItem.d.ts +0 -73
  359. package/src/components/inputs/Inputs/Inputs.d.ts +0 -10
  360. package/src/components/inputs/RadioGroup/RadioGroup.d.ts +0 -18
  361. package/src/components/inputs/RadioGroup/radio.cva.d.ts +0 -11
  362. package/src/components/inputs/Selection/Autocomplete/Autocomplete.d.ts +0 -8
  363. package/src/components/inputs/Selection/Autocomplete/QueryAutocomplete.d.ts +0 -19
  364. package/src/components/inputs/Selection/Select/Select.d.ts +0 -8
  365. package/src/components/inputs/Selection/shared/SelectBase.d.ts +0 -24
  366. package/src/components/inputs/Selection/shared/SelectDesktop.d.ts +0 -5
  367. package/src/components/inputs/Selection/shared/SelectInput.d.ts +0 -15
  368. package/src/components/inputs/Selection/shared/SelectListBox.d.ts +0 -9
  369. package/src/components/inputs/Selection/shared/SelectListBoxItem.d.ts +0 -8
  370. package/src/components/inputs/Selection/shared/SelectListBoxItemSelectAll.d.ts +0 -4
  371. package/src/components/inputs/Selection/shared/SelectListBoxLoadingItem.d.ts +0 -6
  372. package/src/components/inputs/Selection/shared/SelectListBoxSelectionBar.d.ts +0 -5
  373. package/src/components/inputs/Selection/shared/SelectMobile.d.ts +0 -5
  374. package/src/components/inputs/Selection/shared/select.context.d.ts +0 -30
  375. package/src/components/inputs/Selection/shared/select.types.d.ts +0 -55
  376. package/src/components/inputs/Selection/shared/useSelectItems.d.ts +0 -23
  377. package/src/components/inputs/Slider/Slider.d.ts +0 -18
  378. package/src/components/inputs/TextEditor/TextEditor.d.ts +0 -20
  379. package/src/components/inputs/TextEditor/Toolbar/ColorPicker.d.ts +0 -7
  380. package/src/components/inputs/TextEditor/Toolbar/ColorPickerDropdown.d.ts +0 -10
  381. package/src/components/inputs/TextEditor/Toolbar/HyperlinkAction.d.ts +0 -2
  382. package/src/components/inputs/TextEditor/Toolbar/TextAlignSelect.d.ts +0 -2
  383. package/src/components/inputs/TextEditor/Toolbar/TextColorSelect.d.ts +0 -2
  384. package/src/components/inputs/TextEditor/Toolbar/TextEditorToolbar.d.ts +0 -6
  385. package/src/components/inputs/TextEditor/Toolbar/TextHighlightSelect.d.ts +0 -2
  386. package/src/components/inputs/TextEditor/Toolbar/TextListActions.d.ts +0 -2
  387. package/src/components/inputs/TextEditor/Toolbar/TextMarksActions.d.ts +0 -2
  388. package/src/components/inputs/TextEditor/Toolbar/TextStyleSelect.d.ts +0 -2
  389. package/src/components/inputs/TextEditor/textEditor.types.d.ts +0 -5
  390. package/src/components/inputs/Toggle/Toggle.d.ts +0 -14
  391. package/src/components/inputs/Toggle/toggle.cva.d.ts +0 -10
  392. package/src/components/inputs/shared/CheckContent.d.ts +0 -7
  393. package/src/components/inputs/shared/InputClear.d.ts +0 -6
  394. package/src/components/inputs/shared/form.types.d.ts +0 -12
  395. package/src/components/inputs/shared/input.cva.d.ts +0 -22
  396. package/src/components/inputs/shared/label.cva.d.ts +0 -10
  397. package/src/components/outline.clsx.d.ts +0 -2
  398. package/src/components/overlays/ActionModal/ActionModal.d.ts +0 -19
  399. package/src/components/overlays/BottomSheet/BottomSheet.d.ts +0 -21
  400. package/src/components/overlays/Drawer/Drawer.d.ts +0 -13
  401. package/src/components/overlays/Modal/Modal.d.ts +0 -11
  402. package/src/components/overlays/Modal/modal.cva.d.ts +0 -12
  403. package/src/components/overlays/ResponsivePopover/ResponsivePopover.d.ts +0 -10
  404. package/src/components/overlays/Tooltip/Tooltip.d.ts +0 -9
  405. package/src/components/overlays/Tooltip/TooltipEllipsis.d.ts +0 -7
  406. package/src/components/segment/Segment.d.ts +0 -4
  407. package/src/components/segment/SegmentItem.d.ts +0 -2
  408. package/src/components/segment/segment.types.d.ts +0 -34
  409. package/src/components/shared/pagination/Pagination.d.ts +0 -9
  410. package/src/components/shared/pagination/PaginationList.d.ts +0 -15
  411. package/src/components/shared/pagination/minWidth.cva.d.ts +0 -3
  412. package/src/components/status/Alert/Alert.d.ts +0 -11
  413. package/src/components/status/Alert/alert.cva.d.ts +0 -7
  414. package/src/components/status/Loader/Loader.d.ts +0 -5
  415. package/src/components/status/Loader/loader.cva.d.ts +0 -9
  416. package/src/components/status/Toast/Toast.d.ts +0 -14
  417. package/src/components/status/Toast/toast.cva.d.ts +0 -18
  418. package/src/components/status/Toast/useToast.d.ts +0 -12
  419. package/src/components/status/shared/status.cva.d.ts +0 -8
  420. package/src/components/table/CellText.d.ts +0 -7
  421. package/src/components/table/ColumnConfig.d.ts +0 -10
  422. package/src/components/table/HeaderText.d.ts +0 -5
  423. package/src/components/table/InfiniteTable.d.ts +0 -9
  424. package/src/components/table/PaginatedTable.d.ts +0 -11
  425. package/src/components/table/Table.d.ts +0 -37
  426. package/src/components/table/table.cva.d.ts +0 -15
  427. package/src/components/text/Link/Link.d.ts +0 -7
  428. package/src/components/text/Link/link.cva.d.ts +0 -6
  429. package/src/components/text/Tag/Tag.d.ts +0 -10
  430. package/src/components/text/Tag/tag.cva.d.ts +0 -6
  431. package/src/components/text/Typography/Typography.d.ts +0 -11
  432. package/src/components/text/Typography/typography.cva.d.ts +0 -8
  433. package/src/config/confirmation.context.d.ts +0 -20
  434. package/src/config/i18n.d.ts +0 -315
  435. package/src/config/router.context.d.ts +0 -20
  436. package/src/config/uiConfig.context.d.ts +0 -28
  437. package/src/config/uiStyle.context.d.ts +0 -84
  438. package/src/helpers/dynamicColumns.d.ts +0 -44
  439. package/src/helpers/dynamicInputs.d.ts +0 -83
  440. package/src/hooks/useAutosave.d.ts +0 -9
  441. package/src/hooks/useBreakpoint.d.ts +0 -3
  442. package/src/hooks/useDebounceCallback.d.ts +0 -6
  443. package/src/hooks/useDeepCompare.d.ts +0 -4
  444. package/src/hooks/useFilters.d.ts +0 -7
  445. package/src/hooks/useForm.d.ts +0 -18
  446. package/src/hooks/useFormAutosave.d.ts +0 -13
  447. package/src/hooks/useIntersectionObserver.d.ts +0 -7
  448. package/src/hooks/useLocalStorage.d.ts +0 -13
  449. package/src/hooks/useLongPressRepeat.d.ts +0 -9
  450. package/src/hooks/usePagination.d.ts +0 -7
  451. package/src/hooks/useScrollableListBox.d.ts +0 -3
  452. package/src/hooks/useSingletonMutation.d.ts +0 -2
  453. package/src/hooks/useSorting.d.ts +0 -6
  454. package/src/hooks/useStateAndRef.d.ts +0 -4
  455. package/src/hooks/useTableColumnConfig.d.ts +0 -16
  456. package/src/hooks/useTableNav.d.ts +0 -84
  457. package/src/hooks/useTranslationMemo.d.ts +0 -4
  458. package/src/index.d.ts +0 -205
  459. package/src/types/react-query.d.ts +0 -6
  460. package/src/utils/array.utils.d.ts +0 -3
  461. package/src/utils/array.utils.spec.d.ts +0 -1
  462. package/src/utils/compoundMapper.d.ts +0 -19
  463. package/src/utils/compoundMapper.spec.d.ts +0 -1
  464. package/src/utils/date-time.utils.d.ts +0 -14
  465. package/src/utils/date-time.utils.spec.d.ts +0 -1
  466. package/src/utils/date.utils.d.ts +0 -3
  467. package/src/utils/date.utils.spec.d.ts +0 -1
  468. package/src/utils/dom.utils.d.ts +0 -5
  469. package/src/utils/file.utils.d.ts +0 -9
  470. package/src/utils/isEqual.d.ts +0 -1
  471. package/src/utils/logger.d.ts +0 -7
  472. package/src/utils/object.utils.d.ts +0 -10
  473. package/src/utils/queries.utils.d.ts +0 -4
  474. package/src/utils/rest/interceptors/logging.interceptor.d.ts +0 -2
  475. package/src/utils/rest/interceptors/response.interceptor.d.ts +0 -2
  476. package/src/utils/rest/interceptors/rest-interceptor.d.ts +0 -8
  477. package/src/utils/rest/rest-client.d.ts +0 -29
  478. package/src/utils/rest/rest.utils.d.ts +0 -10
  479. package/src/utils/routing.utils.d.ts +0 -3
  480. package/src/utils/string.utils.d.ts +0 -4
  481. package/src/utils/vendor/error-handling.d.ts +0 -21
  482. package/src/utils/zod.utils.d.ts +0 -19
  483. package/vite.config.d.ts +0 -2
  484. /package/{styles → src/styles}/editor.css +0 -0
  485. /package/{styles → src/styles}/index.css +0 -0
package/package.json CHANGED
@@ -1,17 +1,74 @@
1
1
  {
2
2
  "name": "@povio/ui",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "type": "module",
5
- "main": "index.js",
6
- "exports": {
7
- ".": "./index.ts",
8
- "./styles": "./index.css"
9
- },
10
- "types": "./index.d.ts",
5
+ "module": "src/index.ts",
6
+ "types": "src/index.ts",
7
+ "files": [
8
+ "src"
9
+ ],
10
+ "imports": {
11
+ "#ui/*": [
12
+ "./src/*",
13
+ "./src/*.tsx",
14
+ "./src/*/index.ts",
15
+ "./src/*/index.tsx",
16
+ "./src/*.ts",
17
+ "./src/*.d.ts"
18
+ ]
19
+ },
11
20
  "homepage": "https://povio.com",
12
21
  "license": "UNLICENSED",
13
22
  "peerDependencies": {
14
- "react": "^19.1.0",
15
- "react-dom": "^19.1.0"
16
- }
23
+ "react": "^19.1.0",
24
+ "react-dom": "^19.1.0"
25
+ },
26
+ "dependencies": {
27
+ "@dnd-kit/core": "^6.3.1",
28
+ "@dnd-kit/modifiers": "^9.0.0",
29
+ "@dnd-kit/sortable": "^10.0.0",
30
+ "@dnd-kit/utilities": "^3.2.2",
31
+ "@hookform/resolvers": "^5.2.2",
32
+ "@internationalized/date": "^3.10.0",
33
+ "@react-aria/button": "^3.14.2",
34
+ "@react-aria/calendar": "^3.9.2",
35
+ "@react-aria/focus": "^3.21.2",
36
+ "@react-aria/i18n": "^3.12.13",
37
+ "@react-aria/utils": "^3.31.0",
38
+ "@react-stately/calendar": "^3.9.0",
39
+ "@react-stately/datepicker": "^3.15.2",
40
+ "@react-types/shared": "^3.32.1",
41
+ "@tanstack/react-query": "~5.85.9",
42
+ "@tanstack/react-table": "^8.21.3",
43
+ "@tiptap/core": "^2.26.3",
44
+ "@tiptap/extension-color": "^2.26.3",
45
+ "@tiptap/extension-heading": "^2.26.3",
46
+ "@tiptap/extension-highlight": "^2.26.3",
47
+ "@tiptap/extension-link": "^2.26.3",
48
+ "@tiptap/extension-placeholder": "^2.26.3",
49
+ "@tiptap/extension-text-align": "^2.26.3",
50
+ "@tiptap/extension-text-style": "^2.26.3",
51
+ "@tiptap/extension-underline": "^2.26.3",
52
+ "@tiptap/pm": "^2.26.3",
53
+ "@tiptap/react": "^2.26.3",
54
+ "@tiptap/starter-kit": "^2.26.3",
55
+ "class-variance-authority": "^0.7.1",
56
+ "clsx": "^2.1.1",
57
+ "i18next": "^25.6.0",
58
+ "loglevel": "^1.9.2",
59
+ "loglevel-plugin-prefix": "^0.8.4",
60
+ "luxon": "^3.7.2",
61
+ "motion": "~12.23.24",
62
+ "react-aria": "^3.44.0",
63
+ "react-aria-components": "^1.13.0",
64
+ "react-hook-form": "^7.65.0",
65
+ "react-i18next": "^15.7.4",
66
+ "react-responsive": "^10.0.1",
67
+ "react-stately": "^3.42.0",
68
+ "react-toastify": "^11.0.5",
69
+ "react-use-measure": "^2.1.7",
70
+ "tailwindcss": "^4.1.15",
71
+ "tailwindcss-react-aria-components": "^2.0.1",
72
+ "zod": "^4.1.12"
73
+ }
17
74
  }
@@ -0,0 +1,16 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ export const AlignCenterIcon = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ fill="none"
7
+ viewBox="0 0 25 24"
8
+ className="fill-current"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="currentColor"
13
+ 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"
14
+ />
15
+ </svg>
16
+ );
@@ -0,0 +1,16 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ export const AlignLeftIcon = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ fill="none"
7
+ viewBox="0 0 25 24"
8
+ className="fill-current"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="currentColor"
13
+ 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"
14
+ />
15
+ </svg>
16
+ );
@@ -0,0 +1,16 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ export const AlignLeftRightIcon = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ fill="none"
7
+ viewBox="0 0 25 24"
8
+ className="fill-current"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="currentColor"
13
+ 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"
14
+ />
15
+ </svg>
16
+ );
@@ -0,0 +1,16 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ export const AlignRightIcon = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ fill="none"
7
+ viewBox="0 0 25 24"
8
+ className="fill-current"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="currentColor"
13
+ 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"
14
+ />
15
+ </svg>
16
+ );
@@ -0,0 +1,16 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ export const ArrowDropDownIcon = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className="fill-current"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="currentColor"
13
+ d="m12 15-5-5h10z"
14
+ />
15
+ </svg>
16
+ );
@@ -0,0 +1,16 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ export const ArrowDropUpIcon = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className="fill-current"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="currentColor"
13
+ d="m7 14 5-5 5 5z"
14
+ />
15
+ </svg>
16
+ );
@@ -0,0 +1,16 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ export const ArrowLeftIcon = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className="fill-current"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="currentColor"
13
+ d="m14 17-5-5 5-5z"
14
+ />
15
+ </svg>
16
+ );
@@ -0,0 +1,16 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ export const ArrowRightIcon = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className="fill-current"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="currentColor"
13
+ d="M10 17V7l5 5z"
14
+ />
15
+ </svg>
16
+ );
@@ -0,0 +1,16 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ export const BoldIcon = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ fill="none"
7
+ viewBox="0 0 25 24"
8
+ className="fill-current"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="currentColor"
13
+ 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"
14
+ />
15
+ </svg>
16
+ );
@@ -0,0 +1,16 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ export const BulletedListIcon = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ fill="none"
7
+ viewBox="0 0 25 24"
8
+ className="fill-current"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="currentColor"
13
+ 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"
14
+ />
15
+ </svg>
16
+ );
@@ -0,0 +1,18 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ export const CalendarIcon = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className="fill-current"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="currentColor"
13
+ fillRule="evenodd"
14
+ d="M17 2a1 1 0 1 0-2 0v1H9V2a1 1 0 0 0-2 0v1H5a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3h-2zm3 7V6a1 1 0 0 0-1-1h-2v1a1 1 0 1 1-2 0V5H9v1a1 1 0 0 1-2 0V5H5a1 1 0 0 0-1 1v3zM4 11h16v9a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1z"
15
+ clipRule="evenodd"
16
+ />
17
+ </svg>
18
+ );
@@ -0,0 +1,18 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ export const CheckIcon = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className="fill-current"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="currentColor"
13
+ fillRule="evenodd"
14
+ d="M20.707 5.293a1 1 0 0 1 0 1.414l-11 11a1 1 0 0 1-1.414 0l-5-5a1 1 0 1 1 1.414-1.414L9 15.586 19.293 5.293a1 1 0 0 1 1.414 0"
15
+ clipRule="evenodd"
16
+ />
17
+ </svg>
18
+ );
@@ -0,0 +1,16 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ export const CheckCircleIcon = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ fill="none"
7
+ viewBox="0 0 25 24"
8
+ className="fill-current"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="#16A34A"
13
+ d="m11.245 14.146-2.323-2.323a.73.73 0 0 0-.522-.213.7.7 0 0 0-.532.213.72.72 0 0 0-.217.527q0 .31.217.527l2.744 2.744q.27.27.633.271.36 0 .633-.27l5.563-5.564a.73.73 0 0 0 .213-.522.7.7 0 0 0-.213-.532.72.72 0 0 0-.527-.217.72.72 0 0 0-.527.217zm1.42 7.354q-1.97 0-3.704-.748a9.6 9.6 0 0 1-3.017-2.03 9.6 9.6 0 0 1-2.032-3.016 9.25 9.25 0 0 1-.748-3.704q0-1.972.748-3.706a9.6 9.6 0 0 1 2.03-3.016 9.6 9.6 0 0 1 3.016-2.032 9.25 9.25 0 0 1 3.704-.748q1.971 0 3.706.748a9.6 9.6 0 0 1 3.017 2.03 9.6 9.6 0 0 1 2.03 3.016 9.25 9.25 0 0 1 .75 3.704q0 1.972-.749 3.706a9.6 9.6 0 0 1-2.03 3.017 9.6 9.6 0 0 1-3.016 2.03 9.25 9.25 0 0 1-3.704.749"
14
+ />
15
+ </svg>
16
+ );
@@ -0,0 +1,19 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ export const CheckboxCheckmarkIcon = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ fill="none"
7
+ viewBox="0 0 12 9"
8
+ className="fill-current"
9
+ {...props}
10
+ >
11
+ <path
12
+ stroke="#F8F8FA"
13
+ strokeLinecap="round"
14
+ strokeLinejoin="round"
15
+ strokeWidth={2}
16
+ d="M11 1 4.125 8 1 4.818"
17
+ />
18
+ </svg>
19
+ );
@@ -0,0 +1,19 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ export const CheckboxIndeterminateIcon = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ fill="none"
7
+ viewBox="0 0 10 2"
8
+ className="fill-current"
9
+ {...props}
10
+ >
11
+ <path
12
+ stroke="#F8F8FA"
13
+ strokeLinecap="round"
14
+ strokeLinejoin="round"
15
+ strokeWidth={2}
16
+ d="M9 1H1"
17
+ />
18
+ </svg>
19
+ );
@@ -0,0 +1,18 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ export const ChevronDownIcon = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className="fill-current"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="currentColor"
13
+ fillRule="evenodd"
14
+ d="M5.293 8.293a1 1 0 0 1 1.414 0L12 13.586l5.293-5.293a1 1 0 1 1 1.414 1.414l-6 6a1 1 0 0 1-1.414 0l-6-6a1 1 0 0 1 0-1.414"
15
+ clipRule="evenodd"
16
+ />
17
+ </svg>
18
+ );
@@ -0,0 +1,18 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ export const ChevronLeftIcon = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className="fill-current"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="currentColor"
13
+ fillRule="evenodd"
14
+ d="M15.707 5.293a1 1 0 0 1 0 1.414L10.414 12l5.293 5.293a1 1 0 0 1-1.414 1.414l-6-6a1 1 0 0 1 0-1.414l6-6a1 1 0 0 1 1.414 0"
15
+ clipRule="evenodd"
16
+ />
17
+ </svg>
18
+ );
@@ -0,0 +1,18 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ export const ChevronRightIcon = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className="fill-current"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="currentColor"
13
+ fillRule="evenodd"
14
+ d="M8.293 5.293a1 1 0 0 1 1.414 0l6 6a1 1 0 0 1 0 1.414l-6 6a1 1 0 0 1-1.414-1.414L13.586 12 8.293 6.707a1 1 0 0 1 0-1.414"
15
+ clipRule="evenodd"
16
+ />
17
+ </svg>
18
+ );
@@ -0,0 +1,18 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ export const ChevronUpIcon = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className="fill-current"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="currentColor"
13
+ fillRule="evenodd"
14
+ d="M11.293 8.293a1 1 0 0 1 1.414 0l6 6a1 1 0 0 1-1.414 1.414L12 10.414l-5.293 5.293a1 1 0 0 1-1.414-1.414z"
15
+ clipRule="evenodd"
16
+ />
17
+ </svg>
18
+ );
@@ -0,0 +1,24 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ export const ChevronsLeftIcon = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className="fill-current"
9
+ {...props}
10
+ >
11
+ <path
12
+ fillRule="evenodd"
13
+ clipRule="evenodd"
14
+ d="M11.451 6.24896C11.783 6.5809 11.783 7.1191 11.451 7.45104L7.05208 11.85L11.451 16.249C11.783 16.5809 11.783 17.1191 11.451 17.451C11.1191 17.783 10.5809 17.783 10.249 17.451L5.24896 12.451C4.91701 12.1191 4.91701 11.5809 5.24896 11.249L10.249 6.24896C10.5809 5.91701 11.1191 5.91701 11.451 6.24896Z"
15
+ fill="currentColor"
16
+ />
17
+ <path
18
+ fillRule="evenodd"
19
+ clipRule="evenodd"
20
+ d="M18.451 6.24896C18.783 6.5809 18.783 7.1191 18.451 7.45104L14.0521 11.85L18.451 16.249C18.783 16.5809 18.783 17.1191 18.451 17.451C18.1191 17.783 17.5809 17.783 17.249 17.451L12.249 12.451C11.917 12.1191 11.917 11.5809 12.249 11.249L17.249 6.24896C17.5809 5.91701 18.1191 5.91701 18.451 6.24896Z"
21
+ fill="currentColor"
22
+ />
23
+ </svg>
24
+ );
@@ -0,0 +1,24 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ export const ChevronsRightIcon = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className="fill-current"
9
+ {...props}
10
+ >
11
+ <path
12
+ fillRule="evenodd"
13
+ clipRule="evenodd"
14
+ d="M12.249 6.24896C12.5809 5.91701 13.1191 5.91701 13.451 6.24896L18.451 11.249C18.783 11.5809 18.783 12.1191 18.451 12.451L13.451 17.451C13.1191 17.783 12.5809 17.783 12.249 17.451C11.917 17.1191 11.917 16.5809 12.249 16.249L16.6479 11.85L12.249 7.45104C11.917 7.1191 11.917 6.5809 12.249 6.24896Z"
15
+ fill="currentColor"
16
+ />
17
+ <path
18
+ fillRule="evenodd"
19
+ clipRule="evenodd"
20
+ d="M5.24896 6.24896C5.5809 5.91701 6.1191 5.91701 6.45104 6.24896L11.451 11.249C11.783 11.5809 11.783 12.1191 11.451 12.451L6.45104 17.451C6.1191 17.783 5.5809 17.783 5.24896 17.451C4.91701 17.1191 4.91701 16.5809 5.24896 16.249L9.64792 11.85L5.24896 7.45104C4.91701 7.1191 4.91701 6.5809 5.24896 6.24896Z"
21
+ fill="currentColor"
22
+ />
23
+ </svg>
24
+ );
@@ -0,0 +1,16 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ export const ClockIcon = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className="fill-current"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="currentColor"
13
+ d="m14.75 15.917 1.167-1.167-3.083-3.083V7.834h-1.667v4.5zM12 20.334a8.1 8.1 0 0 1-3.25-.657 8.4 8.4 0 0 1-2.646-1.78 8.4 8.4 0 0 1-1.78-2.647A8.1 8.1 0 0 1 3.666 12q0-1.729.656-3.25a8.4 8.4 0 0 1 1.781-2.646 8.4 8.4 0 0 1 2.646-1.78A8.1 8.1 0 0 1 12 3.666q1.73 0 3.25.656a8.4 8.4 0 0 1 2.646 1.781 8.4 8.4 0 0 1 1.781 2.646 8.1 8.1 0 0 1 .657 3.25 8.1 8.1 0 0 1-.657 3.25 8.4 8.4 0 0 1-1.78 2.646 8.4 8.4 0 0 1-2.647 1.781 8.1 8.1 0 0 1-3.25.657m0-1.667q2.771 0 4.72-1.948 1.947-1.948 1.947-4.719 0-2.77-1.948-4.718T12 5.334 7.282 7.282 5.334 12t1.948 4.72Q9.229 18.666 12 18.666"
14
+ />
15
+ </svg>
16
+ );
@@ -0,0 +1,16 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ export const CloseIcon = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className="fill-current"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="currentColor"
13
+ d="M17.749 7.463a.857.857 0 1 0-1.212-1.212L12 10.788 7.463 6.25a.857.857 0 0 0-1.212 1.212L10.788 12 6.25 16.537a.857.857 0 1 0 1.212 1.212L12 13.212l4.537 4.537a.857.857 0 1 0 1.212-1.212L13.212 12z"
14
+ />
15
+ </svg>
16
+ );
@@ -0,0 +1,20 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ export const DateTimeIcon = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className="fill-current"
9
+ {...props}
10
+ >
11
+ <g fill="currentColor">
12
+ <path d="m18.308 18.852.567-.573-1.518-1.533v-2.291h-.81v2.618zM16.973 21q-1.7 0-2.884-1.186-1.184-1.187-1.184-2.905t1.184-2.904 2.884-1.187q1.68 0 2.853 1.197Q21 15.21 21 16.909t-1.174 2.894T16.973 21" />
13
+ <path
14
+ fillRule="evenodd"
15
+ d="M14.2 3c.402 0 .729.333.729.744v.744h1.457c1.207 0 2.185.999 2.185 2.231v4.7a5.6 5.6 0 0 0-1.457-.235v-.746H5.457v6.694c0 .411.326.744.729.744h5.18c.088.523.247 1.023.465 1.488H6.186c-1.207 0-2.186-1-2.186-2.232V6.72c0-1.232.979-2.231 2.186-2.231h1.457v-.744c0-.411.326-.744.728-.744.403 0 .729.333.729.744v.744h4.371v-.744c0-.411.327-.744.729-.744m2.914 3.719V8.95H5.457V6.72c0-.41.326-.744.729-.744h1.457v.744c0 .41.326.744.728.744a.736.736 0 0 0 .729-.744v-.744h4.371v.744c0 .41.327.744.729.744a.736.736 0 0 0 .729-.744v-.744h1.457c.402 0 .728.333.728.744"
16
+ clipRule="evenodd"
17
+ />
18
+ </g>
19
+ </svg>
20
+ );
@@ -0,0 +1,16 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ export const DragIcon = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className="fill-current"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="currentColor"
13
+ d="M9 19.615q-.666 0-1.14-.474A1.56 1.56 0 0 1 7.384 18q0-.666.474-1.14A1.56 1.56 0 0 1 9 16.384q.666 0 1.14.474.475.475.475 1.141t-.474 1.14A1.56 1.56 0 0 1 9 19.616m6 0q-.666 0-1.14-.474A1.56 1.56 0 0 1 13.384 18q0-.666.474-1.14A1.56 1.56 0 0 1 15 16.384q.666 0 1.14.474.475.475.475 1.141t-.474 1.14a1.56 1.56 0 0 1-1.141.475m-6-6q-.666 0-1.14-.474A1.56 1.56 0 0 1 7.384 12q0-.666.474-1.14A1.56 1.56 0 0 1 9 10.384q.666 0 1.14.474.475.475.475 1.141t-.474 1.14A1.56 1.56 0 0 1 9 13.616m6 0q-.666 0-1.14-.474A1.56 1.56 0 0 1 13.384 12q0-.666.474-1.14A1.56 1.56 0 0 1 15 10.384q.666 0 1.14.474.475.475.475 1.141t-.474 1.14a1.56 1.56 0 0 1-1.141.475m-6-6q-.666 0-1.14-.474A1.56 1.56 0 0 1 7.384 6q0-.666.474-1.14A1.56 1.56 0 0 1 9 4.384q.666 0 1.14.474.475.475.475 1.141t-.474 1.14A1.56 1.56 0 0 1 9 7.616m6 0q-.666 0-1.14-.474A1.56 1.56 0 0 1 13.384 6q0-.666.474-1.14A1.56 1.56 0 0 1 15 4.384q.666 0 1.14.474.475.475.475 1.141t-.474 1.14A1.56 1.56 0 0 1 15 7.616"
14
+ />
15
+ </svg>
16
+ );
@@ -0,0 +1,18 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ export const FileIcon = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className="fill-current"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="currentColor"
13
+ fillRule="evenodd"
14
+ d="M12.9 2.1a1 1 0 0 1 .233.03l.009.003a1 1 0 0 1 .12.046q.03.013.054.027a1 1 0 0 1 .143.093q.03.023.058.049l.018.015 6.3 6.301.014.015q.015.014.029.032l.017.018q.017.025.033.048.022.03.042.062.02.035.037.073a.9.9 0 0 1 .093.388l-.001.016V19.2a2.7 2.7 0 0 1-2.7 2.7h-10.8a2.7 2.7 0 0 1-2.7-2.7V4.8a2.7 2.7 0 0 1 2.7-2.7zM6.598 3.9a.9.9 0 0 0-.9.9v14.4a.9.9 0 0 0 .9.9h10.8a.9.9 0 0 0 .9-.9v-9h-5.4a.9.9 0 0 1-.9-.9V3.9zm7.2 4.5h3.227L13.8 5.174z"
15
+ clipRule="evenodd"
16
+ />
17
+ </svg>
18
+ );
@@ -0,0 +1,16 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ export const HighlightIcon = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className="fill-current"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="currentColor"
13
+ d="m14.302 12.145-2.6-2.6-3.942 3.942a.29.29 0 0 0-.087.211q0 .125.087.212l2.161 2.177a.29.29 0 0 0 .212.086.29.29 0 0 0 .211-.086zm-1.53-3.654 2.584 2.584 4.27-4.254a.3.3 0 0 0 .086-.22.3.3 0 0 0-.087-.222l-2.158-2.158a.3.3 0 0 0-.22-.086.3.3 0 0 0-.222.086zm-1.582-.543 4.708 4.708-4.484 4.5q-.543.542-1.274.542-.73 0-1.273-.542l-.096-.096-.404.388q-.246.216-.556.34a1.7 1.7 0 0 1-.642.126H5.071q-.31 0-.43-.276-.117-.276.103-.497l2.07-2.054-.077-.077a1.82 1.82 0 0 1-.558-1.288q-.016-.747.527-1.289zm0 0 4.79-4.79q.543-.542 1.274-.542.73 0 1.273.542l2.177 2.161q.542.543.542 1.273 0 .732-.542 1.273l-4.806 4.791z"
14
+ />
15
+ </svg>
16
+ );
@@ -0,0 +1,26 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ interface Props extends SVGProps<SVGSVGElement> {
4
+ highlightColor?: string;
5
+ }
6
+
7
+ export const HighlightOnIcon = ({ highlightColor, ...props }: Props) => (
8
+ <svg
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ fill="none"
11
+ viewBox="0 0 24 24"
12
+ className="fill-current"
13
+ {...props}
14
+ >
15
+ <g fill="currentColor">
16
+ <path
17
+ d="M14.3021 12.1445L11.7021 9.54447L7.75955 13.4867C7.70188 13.5444 7.67305 13.6149 7.67305 13.6982C7.67305 13.7816 7.70188 13.8521 7.75955 13.91L9.92105 16.0867C9.97888 16.1444 10.0495 16.1732 10.1328 16.1732C10.2161 16.1732 10.2866 16.1444 10.3443 16.0867L14.3021 12.1445ZM12.7711 8.49072L15.3558 11.0752L19.6251 6.82147C19.6827 6.76381 19.7116 6.69006 19.7116 6.60022C19.7116 6.51039 19.6827 6.43664 19.6251 6.37897L17.4673 4.22147C17.4096 4.16381 17.336 4.13497 17.2463 4.13497C17.1565 4.13497 17.0827 4.16381 17.0251 4.22147L12.7711 8.49072ZM11.1903 7.94847L15.8981 12.656L11.4136 17.156C11.0519 17.5175 10.6275 17.6982 10.1403 17.6982C9.65313 17.6982 9.2288 17.5175 8.8673 17.156L8.77105 17.0597L8.3673 17.4482C8.20313 17.5919 8.01755 17.7054 7.81055 17.7887C7.60355 17.8721 7.3898 17.9137 7.1693 17.9137H5.0713C4.86363 17.9137 4.72038 17.8217 4.64155 17.6377C4.56255 17.4537 4.5968 17.2881 4.7443 17.1407L6.81355 15.0867L6.73655 15.01C6.37505 14.6483 6.18913 14.2188 6.1788 13.7215C6.16863 13.224 6.3443 12.7945 6.7058 12.433L11.1903 7.94847ZM11.1903 7.94847L15.9808 3.15797C16.3423 2.79647 16.7666 2.61572 17.2538 2.61572C17.741 2.61572 18.1654 2.79647 18.5271 3.15797L20.7038 5.31947C21.0653 5.68097 21.2461 6.10531 21.2461 6.59247C21.2461 7.07964 21.0653 7.50397 20.7038 7.86547L15.8981 12.656L11.1903 7.94847Z"
18
+ fill="currentColor"
19
+ />
20
+ <path
21
+ d="M2.84872 23.741C3.02105 23.9135 3.23613 23.9998 3.49397 23.9998H20.686C20.9438 23.9998 21.1589 23.9135 21.3312 23.741C21.5037 23.5687 21.59 23.3537 21.59 23.096V21.1728C21.59 20.9151 21.5037 20.7001 21.3312 20.5278C21.1589 20.3553 20.9438 20.269 20.686 20.269H3.49397C3.23613 20.269 3.02105 20.3553 2.84872 20.5278C2.67622 20.7001 2.58997 20.9151 2.58997 21.1728V23.096C2.58997 23.3537 2.67622 23.5687 2.84872 23.741Z"
22
+ fill={highlightColor || "black"}
23
+ />
24
+ </g>
25
+ </svg>
26
+ );