@povio/ui 3.3.0 → 3.4.0-rc.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (316) hide show
  1. package/dist/assets/locales/en/translation.json.d.ts +158 -0
  2. package/dist/assets/locales/sl/translation.json.d.ts +154 -0
  3. package/dist/components/Breadcrumbs/Breadcrumbs.js +7 -7
  4. package/dist/components/Menu/MenuDesktop.js +1 -1
  5. package/dist/components/Menu/MenuItem.js +4 -4
  6. package/dist/components/Menu/MenuMobile.js +5 -5
  7. package/dist/components/Menu/MenuPopover.js +2 -2
  8. package/dist/components/buttons/Button/Button.js +1 -1
  9. package/dist/components/buttons/PillButton/PillButton.js +4 -4
  10. package/dist/components/buttons/PillButton/pillButton.cva.d.ts +1 -1
  11. package/dist/components/buttons/SplitButton/SplitButton.js +3 -3
  12. package/dist/components/buttons/shared/ButtonContent.js +2 -2
  13. package/dist/components/buttons/shared/buttonContent.cva.d.ts +1 -1
  14. package/dist/components/inputs/Checkbox/Checkbox.d.ts +1 -2
  15. package/dist/components/inputs/Checkbox/Checkbox.js +95 -102
  16. package/dist/components/inputs/Checkbox/CheckboxCheckmark.js +2 -3
  17. package/dist/components/inputs/Checkbox/CheckboxGroup.d.ts +1 -2
  18. package/dist/components/inputs/Checkbox/CheckboxGroup.js +111 -115
  19. package/dist/components/inputs/DateTime/DatePicker/DatePicker.d.ts +2 -2
  20. package/dist/components/inputs/DateTime/DatePicker/DatePicker.js +17 -22
  21. package/dist/components/inputs/DateTime/DateRangePicker/DateRangePicker.d.ts +2 -2
  22. package/dist/components/inputs/DateTime/DateRangePicker/DateRangePicker.js +17 -23
  23. package/dist/components/inputs/DateTime/DateTimePicker/DateTimePicker.d.ts +2 -2
  24. package/dist/components/inputs/DateTime/DateTimePicker/DateTimePicker.js +21 -25
  25. package/dist/components/inputs/DateTime/TimePicker/TimePicker.d.ts +2 -2
  26. package/dist/components/inputs/DateTime/TimePicker/TimePicker.js +225 -238
  27. package/dist/components/inputs/DateTime/shared/Calendar.js +1 -1
  28. package/dist/components/inputs/DateTime/shared/CalendarCell.js +1 -1
  29. package/dist/components/inputs/DateTime/shared/CalendarGrid.js +1 -1
  30. package/dist/components/inputs/DateTime/shared/CalendarHeader.js +7 -10
  31. package/dist/components/inputs/DateTime/shared/CalendarSelectHeader.js +8 -12
  32. package/dist/components/inputs/DateTime/shared/DateField.d.ts +2 -1
  33. package/dist/components/inputs/DateTime/shared/DateField.js +4 -4
  34. package/dist/components/inputs/DateTime/shared/DatePickerInput.d.ts +2 -2
  35. package/dist/components/inputs/DateTime/shared/DatePickerInput.js +8 -16
  36. package/dist/components/inputs/DateTime/shared/DateSegmentItem.js +3 -3
  37. package/dist/components/inputs/DateTime/shared/DateTimeDialog.js +2 -2
  38. package/dist/components/inputs/DateTime/shared/DateTimeDialogFooter.js +1 -1
  39. package/dist/components/inputs/DateTime/shared/MonthPicker.js +2 -2
  40. package/dist/components/inputs/DateTime/shared/RangeCalendar.js +2 -2
  41. package/dist/components/inputs/DateTime/shared/TimePickerForm.js +4 -5
  42. package/dist/components/inputs/DateTime/shared/TimePickerInput.d.ts +2 -2
  43. package/dist/components/inputs/DateTime/shared/TimePickerInput.js +10 -11
  44. package/dist/components/inputs/DateTime/shared/YearPicker.js +2 -2
  45. package/dist/components/inputs/DateTime/shared/datePickerTodayIcon.js +46 -1
  46. package/dist/components/inputs/DateTime/shared/useFirefoxDateSegmentSelectionGuard.js +1 -1
  47. package/dist/components/inputs/File/FileUpload.d.ts +1 -1
  48. package/dist/components/inputs/File/FileUpload.js +20 -20
  49. package/dist/components/inputs/File/InputUpload.d.ts +1 -1
  50. package/dist/components/inputs/File/InputUpload.js +19 -19
  51. package/dist/components/inputs/File/fileUpload.types.d.ts +1 -1
  52. package/dist/components/inputs/File/inputUpload.types.d.ts +1 -1
  53. package/dist/components/inputs/File/shared/FileCard.js +1 -1
  54. package/dist/components/inputs/File/shared/FileCardList.js +1 -1
  55. package/dist/components/inputs/File/shared/FileUploadContent.js +1 -1
  56. package/dist/components/inputs/File/shared/FileUploadContentEmpty.js +3 -3
  57. package/dist/components/inputs/File/shared/FileUploadContentError.js +5 -6
  58. package/dist/components/inputs/File/shared/FileUploadContentFilled.js +5 -6
  59. package/dist/components/inputs/File/shared/FileUploadContentLoading.js +4 -5
  60. package/dist/components/inputs/File/shared/InputUploadContent.js +4 -4
  61. package/dist/components/inputs/File/shared/InputUploadFilled.js +3 -3
  62. package/dist/components/inputs/FormField/FormFieldError.js +1 -1
  63. package/dist/components/inputs/FormField/FormFieldHeader.js +4 -4
  64. package/dist/components/inputs/FormField/FormFieldHeaderClose.js +3 -3
  65. package/dist/components/inputs/FormField/FormFieldHelper.js +1 -1
  66. package/dist/components/inputs/FormField/FormFieldLabel.js +2 -2
  67. package/dist/components/inputs/Input/NumberInput/NumberInput.d.ts +1 -1
  68. package/dist/components/inputs/Input/NumberInput/NumberInput.js +109 -107
  69. package/dist/components/inputs/Input/NumberRangeInput/NumberRangeField.d.ts +2 -1
  70. package/dist/components/inputs/Input/NumberRangeInput/NumberRangeField.js +265 -254
  71. package/dist/components/inputs/Input/NumberRangeInput/NumberRangeInput.d.ts +2 -1
  72. package/dist/components/inputs/Input/NumberRangeInput/NumberRangeInput.js +25 -24
  73. package/dist/components/inputs/Input/PasswordInput/PasswordInput.d.ts +1 -1
  74. package/dist/components/inputs/Input/PasswordInput/PasswordInput.js +3 -4
  75. package/dist/components/inputs/Input/TextArea/TextArea.d.ts +2 -1
  76. package/dist/components/inputs/Input/TextArea/TextArea.js +118 -117
  77. package/dist/components/inputs/Input/TextInput/TextInput.d.ts +2 -2
  78. package/dist/components/inputs/Input/TextInput/TextInput.js +129 -129
  79. package/dist/components/inputs/Input/shared/InputContent.d.ts +2 -1
  80. package/dist/components/inputs/Input/shared/InputContent.js +50 -48
  81. package/dist/components/inputs/Inputs/Form.d.ts +4 -4
  82. package/dist/components/inputs/Inputs/Form.js +1 -1
  83. package/dist/components/inputs/Inputs/InputItem.d.ts +22 -22
  84. package/dist/components/inputs/Inputs/InputItem.js +36 -37
  85. package/dist/components/inputs/Inputs/Inputs.d.ts +2 -2
  86. package/dist/components/inputs/RadioGroup/RadioGroup.d.ts +1 -2
  87. package/dist/components/inputs/RadioGroup/RadioGroup.js +109 -113
  88. package/dist/components/inputs/Selection/Autocomplete/Autocomplete.d.ts +1 -1
  89. package/dist/components/inputs/Selection/Autocomplete/Autocomplete.js +16 -16
  90. package/dist/components/inputs/Selection/Autocomplete/QueryAutocomplete.d.ts +1 -1
  91. package/dist/components/inputs/Selection/Autocomplete/QueryAutocomplete.js +20 -20
  92. package/dist/components/inputs/Selection/Autocomplete/queryAutocomplete.types.d.ts +1 -1
  93. package/dist/components/inputs/Selection/Select/QuerySelect.d.ts +1 -1
  94. package/dist/components/inputs/Selection/Select/QuerySelect.js +20 -20
  95. package/dist/components/inputs/Selection/Select/Select.d.ts +1 -1
  96. package/dist/components/inputs/Selection/Select/Select.js +23 -23
  97. package/dist/components/inputs/Selection/shared/SelectBase.d.ts +1 -1
  98. package/dist/components/inputs/Selection/shared/SelectBase.js +34 -37
  99. package/dist/components/inputs/Selection/shared/SelectDesktop.js +58 -56
  100. package/dist/components/inputs/Selection/shared/SelectInput.d.ts +2 -2
  101. package/dist/components/inputs/Selection/shared/SelectInput.js +57 -56
  102. package/dist/components/inputs/Selection/shared/SelectListBox.js +1 -1
  103. package/dist/components/inputs/Selection/shared/SelectListBoxItem.js +2 -2
  104. package/dist/components/inputs/Selection/shared/SelectListBoxItemSelectAll.js +2 -2
  105. package/dist/components/inputs/Selection/shared/SelectListBoxLoadingItem.js +1 -1
  106. package/dist/components/inputs/Selection/shared/SelectListBoxSelectionBar.js +1 -1
  107. package/dist/components/inputs/Selection/shared/SelectMobile.js +5 -4
  108. package/dist/components/inputs/Selection/shared/StaticSelectTrailingContent.js +3 -3
  109. package/dist/components/inputs/Selection/shared/select.context.d.ts +2 -2
  110. package/dist/components/inputs/Selection/shared/select.context.js +5 -9
  111. package/dist/components/inputs/Selection/shared/select.types.d.ts +1 -1
  112. package/dist/components/inputs/Skeleton/InputFrame.d.ts +1 -0
  113. package/dist/components/inputs/Skeleton/InputFrame.js +10 -7
  114. package/dist/components/inputs/Slider/Slider.d.ts +1 -1
  115. package/dist/components/inputs/Slider/Slider.js +20 -20
  116. package/dist/components/inputs/TextEditor/TextEditor.d.ts +1 -1
  117. package/dist/components/inputs/TextEditor/TextEditor.js +20 -20
  118. package/dist/components/inputs/TextEditor/Toolbar/ColorPicker.js +2 -2
  119. package/dist/components/inputs/TextEditor/Toolbar/ColorPickerDropdown.js +4 -4
  120. package/dist/components/inputs/TextEditor/Toolbar/HyperlinkAction.js +4 -4
  121. package/dist/components/inputs/TextEditor/Toolbar/TextAlignSelect.js +5 -8
  122. package/dist/components/inputs/TextEditor/Toolbar/TextColorSelect.js +3 -3
  123. package/dist/components/inputs/TextEditor/Toolbar/TextHighlightSelect.js +4 -5
  124. package/dist/components/inputs/TextEditor/Toolbar/TextListActions.js +4 -5
  125. package/dist/components/inputs/TextEditor/Toolbar/TextMarksActions.js +6 -9
  126. package/dist/components/inputs/Toggle/Toggle.d.ts +1 -2
  127. package/dist/components/inputs/Toggle/Toggle.js +61 -65
  128. package/dist/components/inputs/shared/CheckContent.js +1 -1
  129. package/dist/components/inputs/shared/InputClear.js +45 -28
  130. package/dist/components/inputs/shared/TooltipWrapper.d.ts +1 -1
  131. package/dist/components/inputs/shared/form.binding.d.ts +27 -0
  132. package/dist/components/inputs/shared/form.binding.js +57 -0
  133. package/dist/components/inputs/shared/form.types.d.ts +9 -8
  134. package/dist/components/inputs/shared/form.types.js +8 -0
  135. package/dist/components/inputs/shared/input.cva.js +1 -1
  136. package/dist/components/inputs/shared/useStaticInputHandoff.js +64 -38
  137. package/dist/components/navigation/Accordion/Accordion.js +1 -1
  138. package/dist/components/navigation/Accordion/AccordionItem.js +3 -3
  139. package/dist/components/navigation/Stepper/Stepper.js +2 -2
  140. package/dist/components/navigation/Stepper/StepperItem.js +4 -4
  141. package/dist/components/overlays/ActionModal/ActionModal.js +1 -1
  142. package/dist/components/overlays/BottomSheet/BottomSheet.js +3 -3
  143. package/dist/components/overlays/BottomSheet/BottomSheetHeader.js +4 -4
  144. package/dist/components/overlays/Drawer/Drawer.js +2 -2
  145. package/dist/components/overlays/Modal/Modal.js +3 -3
  146. package/dist/components/overlays/ResponsivePopover/ResponsivePopover.js +1 -1
  147. package/dist/components/overlays/Tooltip/Tooltip.js +15 -8
  148. package/dist/components/overlays/Tooltip/TooltipEllipsis.js +1 -1
  149. package/dist/components/segment/Segment.d.ts +1 -1
  150. package/dist/components/segment/Segment.js +21 -21
  151. package/dist/components/segment/SegmentItem.js +1 -1
  152. package/dist/components/segment/segment.types.d.ts +1 -1
  153. package/dist/components/shared/pagination/Pagination.js +1 -1
  154. package/dist/components/shared/pagination/PaginationList.js +6 -9
  155. package/dist/components/table/ColumnConfig.js +1 -1
  156. package/dist/components/table/InfiniteTable.js +1 -1
  157. package/dist/components/table/Table.js +6 -8
  158. package/dist/components/text/Link/Link.js +1 -1
  159. package/dist/components/text/Pill/Pill.js +3 -3
  160. package/dist/components/text/Tag/Tag.js +3 -3
  161. package/dist/config/confirmation.context.js +1 -1
  162. package/dist/config/link.context.js +1 -1
  163. package/dist/config/router.context.js +1 -1
  164. package/dist/config/theme.context.js +1 -1
  165. package/dist/config/uiConfig.context.d.ts +14 -5
  166. package/dist/config/uiConfig.context.js +9 -11
  167. package/dist/config/uiOverrides.context.js +2 -2
  168. package/dist/helpers/dynamicColumns.d.ts +1 -1
  169. package/dist/helpers/dynamicInputs.d.ts +7 -7
  170. package/dist/hooks/useAutosave.d.ts +4 -4
  171. package/dist/hooks/useAutosave.js +64 -49
  172. package/dist/hooks/useFilters.js +1 -1
  173. package/dist/hooks/useForm.d.ts +39 -15
  174. package/dist/hooks/useForm.js +96 -43
  175. package/dist/hooks/useFormAutosave.d.ts +8 -9
  176. package/dist/hooks/useFormAutosave.js +23 -9
  177. package/dist/hooks/useIntersectionObserver.js +1 -1
  178. package/dist/hooks/useLocalStorage.js +1 -1
  179. package/dist/hooks/usePagination.js +1 -1
  180. package/dist/hooks/useScrollableListBox.js +1 -1
  181. package/dist/hooks/useSorting.js +1 -1
  182. package/dist/hooks/useStateAndRef.js +1 -1
  183. package/dist/hooks/useTableColumnConfig.js +1 -1
  184. package/dist/index.d.ts +1 -263
  185. package/dist/index.js +11 -71
  186. package/dist/rhf/Inputs.d.ts +60 -0
  187. package/dist/rhf/Inputs.js +148 -0
  188. package/dist/rhf/components.d.ts +80 -0
  189. package/dist/rhf/components.js +101 -0
  190. package/dist/rhf/dynamicInputs.d.ts +18 -0
  191. package/dist/rhf/dynamicInputs.js +5 -0
  192. package/dist/rhf/fieldAdapter.d.ts +7 -0
  193. package/dist/rhf/fieldAdapter.js +40 -0
  194. package/dist/rhf/form.types.d.ts +12 -0
  195. package/dist/rhf/useAutosave.d.ts +10 -0
  196. package/dist/rhf/useAutosave.js +71 -0
  197. package/dist/rhf/useForm.d.ts +18 -0
  198. package/dist/rhf/useForm.js +48 -0
  199. package/dist/rhf/useFormAutosave.d.ts +15 -0
  200. package/dist/rhf/useFormAutosave.js +59 -0
  201. package/dist/rhf.d.ts +225 -0
  202. package/dist/tanstack.d.ts +224 -0
  203. package/dist/tanstack.js +141 -0
  204. package/package.json +15 -3
  205. package/dist/assets/icons/Account.d.ts +0 -2
  206. package/dist/assets/icons/AlignCenter.d.ts +0 -2
  207. package/dist/assets/icons/AlignCenter.js +0 -30
  208. package/dist/assets/icons/AlignLeft.d.ts +0 -2
  209. package/dist/assets/icons/AlignLeft.js +0 -30
  210. package/dist/assets/icons/AlignLeftRight.d.ts +0 -2
  211. package/dist/assets/icons/AlignLeftRight.js +0 -30
  212. package/dist/assets/icons/AlignRight.d.ts +0 -2
  213. package/dist/assets/icons/AlignRight.js +0 -30
  214. package/dist/assets/icons/ArrowDropDown.d.ts +0 -2
  215. package/dist/assets/icons/ArrowDropDown.js +0 -30
  216. package/dist/assets/icons/ArrowDropUp.d.ts +0 -2
  217. package/dist/assets/icons/ArrowDropUp.js +0 -30
  218. package/dist/assets/icons/ArrowLeft.d.ts +0 -2
  219. package/dist/assets/icons/ArrowLeft.js +0 -30
  220. package/dist/assets/icons/ArrowRight.d.ts +0 -2
  221. package/dist/assets/icons/ArrowRight.js +0 -30
  222. package/dist/assets/icons/Board.d.ts +0 -2
  223. package/dist/assets/icons/Bold.d.ts +0 -2
  224. package/dist/assets/icons/Bold.js +0 -30
  225. package/dist/assets/icons/BulletedList.d.ts +0 -2
  226. package/dist/assets/icons/BulletedList.js +0 -30
  227. package/dist/assets/icons/Calendar.d.ts +0 -2
  228. package/dist/assets/icons/Calendar.js +0 -32
  229. package/dist/assets/icons/Check.d.ts +0 -2
  230. package/dist/assets/icons/Check.js +0 -32
  231. package/dist/assets/icons/CheckCircle.d.ts +0 -2
  232. package/dist/assets/icons/CheckCircle.js +0 -30
  233. package/dist/assets/icons/CheckboxCheckmark.d.ts +0 -2
  234. package/dist/assets/icons/CheckboxCheckmark.js +0 -33
  235. package/dist/assets/icons/CheckboxIndeterminate.d.ts +0 -2
  236. package/dist/assets/icons/CheckboxIndeterminate.js +0 -33
  237. package/dist/assets/icons/ChevronDown.d.ts +0 -2
  238. package/dist/assets/icons/ChevronDown.js +0 -32
  239. package/dist/assets/icons/ChevronLeft.d.ts +0 -2
  240. package/dist/assets/icons/ChevronLeft.js +0 -32
  241. package/dist/assets/icons/ChevronRight.d.ts +0 -2
  242. package/dist/assets/icons/ChevronRight.js +0 -32
  243. package/dist/assets/icons/ChevronUp.d.ts +0 -2
  244. package/dist/assets/icons/ChevronUp.js +0 -32
  245. package/dist/assets/icons/ChevronsLeft.d.ts +0 -2
  246. package/dist/assets/icons/ChevronsLeft.js +0 -32
  247. package/dist/assets/icons/ChevronsRight.d.ts +0 -2
  248. package/dist/assets/icons/ChevronsRight.js +0 -32
  249. package/dist/assets/icons/Clock.d.ts +0 -2
  250. package/dist/assets/icons/Clock.js +0 -30
  251. package/dist/assets/icons/Close.d.ts +0 -2
  252. package/dist/assets/icons/Close.js +0 -30
  253. package/dist/assets/icons/DateTime.d.ts +0 -2
  254. package/dist/assets/icons/DateTime.js +0 -39
  255. package/dist/assets/icons/DragIndicator.d.ts +0 -2
  256. package/dist/assets/icons/DragIndicator.js +0 -30
  257. package/dist/assets/icons/Edit.d.ts +0 -2
  258. package/dist/assets/icons/Emoji.d.ts +0 -2
  259. package/dist/assets/icons/File.d.ts +0 -2
  260. package/dist/assets/icons/File.js +0 -32
  261. package/dist/assets/icons/Grid.d.ts +0 -2
  262. package/dist/assets/icons/Highlight.d.ts +0 -2
  263. package/dist/assets/icons/Highlight.js +0 -30
  264. package/dist/assets/icons/HighlightOn.d.ts +0 -6
  265. package/dist/assets/icons/HighlightOn.js +0 -55
  266. package/dist/assets/icons/Home.d.ts +0 -2
  267. package/dist/assets/icons/Home.js +0 -30
  268. package/dist/assets/icons/Image.d.ts +0 -2
  269. package/dist/assets/icons/ImageError.d.ts +0 -2
  270. package/dist/assets/icons/Info.d.ts +0 -2
  271. package/dist/assets/icons/Info.js +0 -41
  272. package/dist/assets/icons/Italic.d.ts +0 -2
  273. package/dist/assets/icons/Italic.js +0 -30
  274. package/dist/assets/icons/Link.d.ts +0 -2
  275. package/dist/assets/icons/Link.js +0 -30
  276. package/dist/assets/icons/Loader.d.ts +0 -2
  277. package/dist/assets/icons/MapPin.d.ts +0 -2
  278. package/dist/assets/icons/Menu.d.ts +0 -2
  279. package/dist/assets/icons/Menu.js +0 -30
  280. package/dist/assets/icons/Minus.d.ts +0 -2
  281. package/dist/assets/icons/MoreHoriz.d.ts +0 -2
  282. package/dist/assets/icons/NumberedList.d.ts +0 -2
  283. package/dist/assets/icons/NumberedList.js +0 -30
  284. package/dist/assets/icons/Pause.d.ts +0 -2
  285. package/dist/assets/icons/Plus.d.ts +0 -2
  286. package/dist/assets/icons/PointerHorizontal.d.ts +0 -2
  287. package/dist/assets/icons/PointerHorizontal.js +0 -30
  288. package/dist/assets/icons/PointerVertical.d.ts +0 -2
  289. package/dist/assets/icons/PointerVertical.js +0 -30
  290. package/dist/assets/icons/Retry.d.ts +0 -2
  291. package/dist/assets/icons/Search.d.ts +0 -2
  292. package/dist/assets/icons/Search.js +0 -30
  293. package/dist/assets/icons/Send.d.ts +0 -2
  294. package/dist/assets/icons/Send.js +0 -32
  295. package/dist/assets/icons/Share.d.ts +0 -2
  296. package/dist/assets/icons/Slash.d.ts +0 -2
  297. package/dist/assets/icons/Strikethrough.d.ts +0 -2
  298. package/dist/assets/icons/Strikethrough.js +0 -30
  299. package/dist/assets/icons/TextColor.d.ts +0 -6
  300. package/dist/assets/icons/TextColor.js +0 -52
  301. package/dist/assets/icons/Today.d.ts +0 -2
  302. package/dist/assets/icons/Today.js +0 -30
  303. package/dist/assets/icons/Trash.d.ts +0 -2
  304. package/dist/assets/icons/Underlined.d.ts +0 -2
  305. package/dist/assets/icons/Underlined.js +0 -32
  306. package/dist/assets/icons/Upload.d.ts +0 -2
  307. package/dist/assets/icons/Upload.js +0 -39
  308. package/dist/assets/icons/User.d.ts +0 -2
  309. package/dist/assets/icons/Visibility.d.ts +0 -2
  310. package/dist/assets/icons/Visibility.js +0 -30
  311. package/dist/assets/icons/VisibilityOff.d.ts +0 -2
  312. package/dist/assets/icons/VisibilityOff.js +0 -30
  313. package/dist/assets/icons/WarningFilled.d.ts +0 -2
  314. package/dist/assets/icons/WarningFilled.js +0 -32
  315. package/dist/assets/icons/WarningOutlined.d.ts +0 -2
  316. /package/dist/{hooks/useAutosave.spec.d.ts → rhf/entrypoints.type-test.d.ts} +0 -0
@@ -1,32 +0,0 @@
1
- import { c } from "react/compiler-runtime";
2
- import { jsx } from "react/jsx-runtime";
3
- //#region src/assets/icons/Check.tsx
4
- var CheckIcon = (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: "M20.223 6.27a.91.91 0 0 1 0 1.306L9.834 17.73a.96.96 0 0 1-1.335 0l-4.722-4.616a.91.91 0 0 1 0-1.305.96.96 0 0 1 1.335 0l4.055 3.963 9.72-9.502a.96.96 0 0 1 1.336 0",
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 { CheckIcon };
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const CheckCircleIcon: (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/CheckCircle.tsx
4
- var CheckCircleIcon = (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.74 13.62-1.935-1.935a.85.85 0 0 0-.63-.248.85.85 0 0 0-.63.248.85.85 0 0 0-.247.63q0 .383.247.63l2.565 2.565q.27.27.63.27t.63-.27l5.085-5.085a.85.85 0 0 0 .248-.63.85.85 0 0 0-.248-.63.85.85 0 0 0-.63-.247.85.85 0 0 0-.63.247zM12 21a8.8 8.8 0 0 1-3.51-.709 9.1 9.1 0 0 1-2.857-1.924 9.1 9.1 0 0 1-1.924-2.857A8.8 8.8 0 0 1 3 12q0-1.867.709-3.51a9.1 9.1 0 0 1 1.924-2.857A9.1 9.1 0 0 1 8.49 3.709 8.8 8.8 0 0 1 12 3q1.867 0 3.51.709a9.1 9.1 0 0 1 2.858 1.924A9.1 9.1 0 0 1 20.29 8.49 8.8 8.8 0 0 1 21 12a8.8 8.8 0 0 1-.709 3.51 9.1 9.1 0 0 1-1.924 2.858 9.1 9.1 0 0 1-2.857 1.923A8.8 8.8 0 0 1 12 21"
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 { CheckCircleIcon };
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const CheckboxCheckmarkIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
@@ -1,33 +0,0 @@
1
- import { c } from "react/compiler-runtime";
2
- import { jsx } from "react/jsx-runtime";
3
- //#region src/assets/icons/CheckboxCheckmark.tsx
4
- var CheckboxCheckmarkIcon = (props) => {
5
- const $ = c(3);
6
- let t0;
7
- if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
8
- t0 = /* @__PURE__ */ jsx("path", {
9
- stroke: "currentColor",
10
- strokeLinecap: "round",
11
- strokeLinejoin: "round",
12
- strokeWidth: 2,
13
- d: "M11 1 4.125 8 1 4.818"
14
- });
15
- $[0] = t0;
16
- } else t0 = $[0];
17
- let t1;
18
- if ($[1] !== props) {
19
- t1 = /* @__PURE__ */ jsx("svg", {
20
- xmlns: "http://www.w3.org/2000/svg",
21
- fill: "none",
22
- viewBox: "0 0 12 9",
23
- className: "fill-current",
24
- ...props,
25
- children: t0
26
- });
27
- $[1] = props;
28
- $[2] = t1;
29
- } else t1 = $[2];
30
- return t1;
31
- };
32
- //#endregion
33
- export { CheckboxCheckmarkIcon };
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const CheckboxIndeterminateIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
@@ -1,33 +0,0 @@
1
- import { c } from "react/compiler-runtime";
2
- import { jsx } from "react/jsx-runtime";
3
- //#region src/assets/icons/CheckboxIndeterminate.tsx
4
- var CheckboxIndeterminateIcon = (props) => {
5
- const $ = c(3);
6
- let t0;
7
- if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
8
- t0 = /* @__PURE__ */ jsx("path", {
9
- stroke: "currentColor",
10
- strokeLinecap: "round",
11
- strokeLinejoin: "round",
12
- strokeWidth: 2,
13
- d: "M9 1H1"
14
- });
15
- $[0] = t0;
16
- } else t0 = $[0];
17
- let t1;
18
- if ($[1] !== props) {
19
- t1 = /* @__PURE__ */ jsx("svg", {
20
- xmlns: "http://www.w3.org/2000/svg",
21
- fill: "none",
22
- viewBox: "0 0 10 2",
23
- className: "fill-current",
24
- ...props,
25
- children: t0
26
- });
27
- $[1] = props;
28
- $[2] = t1;
29
- } else t1 = $[2];
30
- return t1;
31
- };
32
- //#endregion
33
- export { CheckboxIndeterminateIcon };
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const ChevronDownIcon: (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/ChevronDown.tsx
4
- var ChevronDownIcon = (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: "M5.251 8.256a.845.845 0 0 1 1.212 0L11 12.888l4.537-4.632a.845.845 0 0 1 1.212 0 .89.89 0 0 1 0 1.238l-5.143 5.25a.845.845 0 0 1-1.212 0L5.25 9.494a.89.89 0 0 1 0-1.238",
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 { ChevronDownIcon };
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const ChevronLeftIcon: (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/ChevronLeft.tsx
4
- var ChevronLeftIcon = (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: "M14.744 6.251a.845.845 0 0 1 0 1.212L10.112 12l4.632 4.537a.845.845 0 0 1 0 1.212.89.89 0 0 1-1.238 0l-5.25-5.143a.845.845 0 0 1 0-1.212l5.25-5.143a.89.89 0 0 1 1.238 0",
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 { ChevronLeftIcon };
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const ChevronRightIcon: (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/ChevronRight.tsx
4
- var ChevronRightIcon = (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: "M9.256 6.251a.89.89 0 0 1 1.238 0l5.25 5.143a.845.845 0 0 1 0 1.212l-5.25 5.143a.89.89 0 0 1-1.238 0 .845.845 0 0 1 0-1.212L13.888 12 9.256 7.463a.845.845 0 0 1 0-1.212",
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 { ChevronRightIcon };
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const ChevronUpIcon: (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/ChevronUp.tsx
4
- var ChevronUpIcon = (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: "M10.394 8.256a.845.845 0 0 1 1.212 0l5.143 5.25a.89.89 0 0 1 0 1.238.845.845 0 0 1-1.212 0L11 10.112l-4.537 4.632a.845.845 0 0 1-1.212 0 .89.89 0 0 1 0-1.238z",
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 { ChevronUpIcon };
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const ChevronsLeftIcon: (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/ChevronsLeft.tsx
4
- var ChevronsLeftIcon = (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: "M11.749 17.749a.857.857 0 0 1-1.212 0l-5.143-5.143a.857.857 0 0 1 0-1.212l5.143-5.143a.857.857 0 0 1 1.212 1.212L7.212 12l4.537 4.537a.857.857 0 0 1 0 1.212M18.749 17.749a.857.857 0 0 1-1.212 0l-5.143-5.143a.857.857 0 0 1 0-1.212l5.143-5.143a.857.857 0 0 1 1.212 1.212L14.212 12l4.537 4.537a.857.857 0 0 1 0 1.212",
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 { ChevronsLeftIcon };
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const ChevronsRightIcon: (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/ChevronsRight.tsx
4
- var ChevronsRightIcon = (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: "M12.251 6.251a.857.857 0 0 1 1.212 0l5.143 5.143a.857.857 0 0 1 0 1.212l-5.143 5.143a.857.857 0 1 1-1.212-1.212L16.788 12 12.25 7.463a.857.857 0 0 1 0-1.212M5.251 6.251a.857.857 0 0 1 1.212 0l5.143 5.143a.857.857 0 0 1 0 1.212L6.463 17.75a.857.857 0 1 1-1.212-1.212L9.788 12 5.25 7.463a.857.857 0 0 1 0-1.212",
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 { ChevronsRightIcon };
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const ClockIcon: (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/Clock.tsx
4
- var ClockIcon = (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: "M12.85 11.66V8.6a.82.82 0 0 0-.244-.606A.82.82 0 0 0 12 7.75a.82.82 0 0 0-.606.244.82.82 0 0 0-.244.606v3.379q0 .17.064.33a.85.85 0 0 0 .191.286L14.21 15.4a.8.8 0 0 0 .595.234q.361 0 .595-.234a.8.8 0 0 0 .234-.595q0-.361-.234-.595zM12 20.5a8.3 8.3 0 0 1-3.315-.67 8.6 8.6 0 0 1-2.699-1.816 8.6 8.6 0 0 1-1.817-2.699A8.3 8.3 0 0 1 3.5 12q0-1.763.67-3.315a8.6 8.6 0 0 1 1.816-2.699A8.6 8.6 0 0 1 8.685 4.17 8.3 8.3 0 0 1 12 3.5q1.763 0 3.315.67a8.6 8.6 0 0 1 2.699 1.816 8.6 8.6 0 0 1 1.817 2.699Q20.5 10.237 20.5 12t-.67 3.315a8.6 8.6 0 0 1-1.816 2.699 8.6 8.6 0 0 1-2.699 1.817A8.3 8.3 0 0 1 12 20.5m0-1.7q2.826 0 4.813-1.987Q18.8 14.827 18.8 12t-1.987-4.813T12 5.2 7.187 7.187Q5.2 9.173 5.2 12t1.987 4.813Q9.173 18.8 12 18.8"
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 { ClockIcon };
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const CloseIcon: (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/Close.tsx
4
- var CloseIcon = (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: "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"
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 { CloseIcon };
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const DateTimeIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
@@ -1,39 +0,0 @@
1
- import { c } from "react/compiler-runtime";
2
- import { jsx, jsxs } from "react/jsx-runtime";
3
- //#region src/assets/icons/DateTime.tsx
4
- var DateTimeIcon = (props) => {
5
- const $ = c(4);
6
- let t0;
7
- let t1;
8
- if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
9
- t0 = /* @__PURE__ */ jsx("path", {
10
- fill: "currentColor",
11
- d: "M14.506 2.948a.806.806 0 0 1 .714.804v.769h1.54c1.303 0 2.36 1.067 2.36 2.383l-.002 4.287c0 .285-.1.502-.25.647a.8.8 0 0 1-.549.221c-.199.001-.4-.07-.55-.215a.8.8 0 0 1-.216-.38l-.029-.167-.005-.106.002-1.13H5.078v7.873l.001.009.014.138.002.007c.07.35.377.615.744.615h4.457l.114.003c.25.02.443.111.578.244.154.15.23.354.23.556a.78.78 0 0 1-.23.558.9.9 0 0 1-.579.248l-.11.005H5.84a2.37 2.37 0 0 1-2.348-2.139l-.012-.244V6.904c0-1.316 1.056-2.383 2.36-2.383h1.54v-.769c0-.445.357-.806.798-.807l.088.003a.806.806 0 0 1 .713.804v.769h4.641v-.769c0-.445.357-.806.798-.807zM5.84 6.135c-.42 0-.76.345-.76.769v1.54h12.44v-1.54a.765.765 0 0 0-.76-.769h-1.54v.769l-.015.153a.8.8 0 0 1-.7.65l-.087.003a.8.8 0 0 1-.794-.723l-.004-.083v-.769H8.98v.769l-.015.153a.8.8 0 0 1-.7.65l-.087.003a.8.8 0 0 1-.793-.723l-.004-.083v-.769z"
12
- });
13
- t1 = /* @__PURE__ */ jsx("path", {
14
- fill: "currentColor",
15
- d: "M16.25 12.484q1.755 0 2.992 1.248t1.238 3.018q0 1.77-1.238 3.018t-2.992 1.248q-1.755 0-2.992-1.248T12.02 16.75q0-1.77 1.238-3.018t2.992-1.248m0 1.675a.43.43 0 0 0-.312.134.43.43 0 0 0-.133.314v1.95q0 .175.065.34.066.165.195.296l1.297 1.306q.133.135.312.135l.086-.009a.44.44 0 0 0 .225-.125.44.44 0 0 0 .125-.227l.01-.087a.44.44 0 0 0-.135-.314l-1.266-1.278-.024-.023v-1.964a.43.43 0 0 0-.134-.313.43.43 0 0 0-.311-.135"
16
- });
17
- $[0] = t0;
18
- $[1] = t1;
19
- } else {
20
- t0 = $[0];
21
- t1 = $[1];
22
- }
23
- let t2;
24
- if ($[2] !== props) {
25
- t2 = /* @__PURE__ */ jsxs("svg", {
26
- xmlns: "http://www.w3.org/2000/svg",
27
- fill: "none",
28
- viewBox: "0 0 24 24",
29
- className: "fill-current",
30
- ...props,
31
- children: [t0, t1]
32
- });
33
- $[2] = props;
34
- $[3] = t2;
35
- } else t2 = $[3];
36
- return t2;
37
- };
38
- //#endregion
39
- export { DateTimeIcon };
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const DragIndicatorIcon: (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/DragIndicator.tsx
4
- var DragIndicatorIcon = (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 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"
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 { DragIndicatorIcon };
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const EditIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const EmojiIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const FileIcon: (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/File.tsx
4
- var FileIcon = (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: "M12.682 3q.111 0 .213.028l.008.002q.056.017.11.042.024.011.049.025a1 1 0 0 1 .13.084l.051.044.017.015 5.727 5.727.013.014.026.03.015.016q.016.022.03.043.021.028.039.056.018.033.033.067a.8.8 0 0 1 .085.352l-.001.015v8.985A2.455 2.455 0 0 1 16.772 21H6.955A2.456 2.456 0 0 1 4.5 18.545V5.455A2.455 2.455 0 0 1 6.955 3zM6.955 4.637a.82.82 0 0 0-.818.818v13.09a.817.817 0 0 0 .818.818h9.817a.82.82 0 0 0 .819-.818v-8.181h-4.909a.82.82 0 0 1-.818-.819V4.637zm6.546 4.09h2.933l-2.933-2.932z",
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 { FileIcon };
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const GridIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
@@ -1,2 +0,0 @@
1
- import { SVGProps } from 'react';
2
- export declare const HighlightIcon: (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/Highlight.tsx
4
- var HighlightIcon = (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: "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"
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 { HighlightIcon };
@@ -1,6 +0,0 @@
1
- import { SVGProps } from 'react';
2
- interface Props extends SVGProps<SVGSVGElement> {
3
- highlightColor?: string;
4
- }
5
- export declare const HighlightOnIcon: ({ highlightColor, ...props }: Props) => import("react/jsx-runtime").JSX.Element;
6
- export {};