@alif-ui-test/core 1.11.0 → 2.0.0-alpha.5

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 (1547) hide show
  1. package/dist/components/Accordion/Accordion.context.js +5 -0
  2. package/dist/components/Accordion/Accordion.js +33 -32
  3. package/dist/components/Accordion/Accordion.module.js +12 -0
  4. package/dist/components/Accordion/Accordion.utils.js +8 -10
  5. package/dist/components/Accordion/AccordionContent/AccordionContent.js +24 -0
  6. package/dist/components/Accordion/AccordionItem/AccordionItem.js +27 -0
  7. package/dist/components/Accordion/AccordionTrigger/AccordionTrigger.js +28 -0
  8. package/dist/components/Alert/Alert.js +57 -41
  9. package/dist/components/Alert/Alert.module.js +8 -0
  10. package/dist/components/Alert/Alert.utils.js +11 -8
  11. package/dist/components/AppLayout/AppLayout.js +20 -12
  12. package/dist/components/AppLayout/AppLayout.module.js +8 -0
  13. package/dist/components/Avatar/Avatar.js +23 -41
  14. package/dist/components/Avatar/Avatar.module.js +7 -0
  15. package/dist/components/Avatar/Avatar.utils.js +24 -129
  16. package/dist/components/Avatar/AvatarGroup/AvatarGroup.js +11 -12
  17. package/dist/components/Avatar/AvatarGroup/AvatarGroup.module.js +3 -0
  18. package/dist/components/Backdrop/Backdrop.js +46 -58
  19. package/dist/components/Backdrop/Backdrop.module.js +6 -0
  20. package/dist/components/Backdrop/BackdropOverlay.js +15 -7
  21. package/dist/components/Backdrop/useZIndexStack.js +23 -25
  22. package/dist/components/Badge/Badge.js +20 -30
  23. package/dist/components/Badge/Badge.module.js +7 -0
  24. package/dist/components/Badge/Badge.utils.js +31 -39
  25. package/dist/components/Breadcrumbs/Breadcrumb/Breadcrumb.js +13 -18
  26. package/dist/components/Breadcrumbs/Breadcrumb/Breadcrumb.module.js +6 -0
  27. package/dist/components/Breadcrumbs/Breadcrumbs.js +44 -57
  28. package/dist/components/Breadcrumbs/Breadcrumbs.module.js +7 -0
  29. package/dist/components/Breadcrumbs/Breadcrumbs.utils.js +12 -18
  30. package/dist/components/Breadcrumbs/BreadcrumbsMenu/BreadcrumbsMenu.js +23 -45
  31. package/dist/components/Button/Button.js +25 -46
  32. package/dist/components/Button/Button.module.js +8 -0
  33. package/dist/components/Button/Button.utils.js +37 -69
  34. package/dist/components/Checkbox/Checkbox.js +57 -53
  35. package/dist/components/Checkbox/Checkbox.module.js +8 -0
  36. package/dist/components/Checkbox/Checkbox.utils.js +10 -44
  37. package/dist/components/Checkbox/CheckboxGroup/CheckboxGroup.context.js +5 -0
  38. package/dist/components/Checkbox/CheckboxGroup/CheckboxGroup.js +29 -0
  39. package/dist/components/Checkbox/CheckboxGroup/CheckboxGroup.module.js +7 -0
  40. package/dist/components/Collapse/Collapse.js +16 -11
  41. package/dist/components/Dates/Dates.module.js +37 -0
  42. package/dist/components/Dates/Dates.utils.js +49 -65
  43. package/dist/components/Dates/InputDatePicker/DatePicker/DatePicker.constants.js +31 -7
  44. package/dist/components/Dates/InputDatePicker/DatePicker/DatePicker.js +140 -237
  45. package/dist/components/Dates/InputDatePicker/DatePicker/DatePicker.utils.js +44 -47
  46. package/dist/components/Dates/InputDatePicker/DatePicker/DayView/DayView.js +35 -0
  47. package/dist/components/Dates/InputDatePicker/DatePicker/MonthView/MonthView.js +28 -0
  48. package/dist/components/Dates/InputDatePicker/DatePicker/YearView/YearView.js +26 -0
  49. package/dist/components/Dates/InputDatePicker/InputDatePicker.constants.js +20 -0
  50. package/dist/components/Dates/InputDatePicker/InputDatePicker.js +95 -118
  51. package/dist/components/Dates/InputDatePicker/InputDatePicker.utils.js +68 -69
  52. package/dist/components/Dates/InputMonthPicker/InputMonthPicker.constants.js +7 -0
  53. package/dist/components/Dates/InputMonthPicker/InputMonthPicker.js +96 -109
  54. package/dist/components/Dates/InputMonthPicker/InputMonthPicker.utils.js +16 -23
  55. package/dist/components/Dates/InputMonthPicker/MonthPicker/MonthPicker.constants.js +46 -46
  56. package/dist/components/Dates/InputMonthPicker/MonthPicker/MonthPicker.js +57 -58
  57. package/dist/components/Dates/InputMonthPicker/MonthPicker/MonthPicker.utils.js +4 -0
  58. package/dist/components/Dates/InputMonthYearPicker/InputMonthYearPicker.constants.js +15 -0
  59. package/dist/components/Dates/InputMonthYearPicker/InputMonthYearPicker.js +94 -109
  60. package/dist/components/Dates/InputMonthYearPicker/InputMonthYearPicker.utils.js +41 -43
  61. package/dist/components/Dates/InputMonthYearPicker/MonthYearPicker/MonthView/MonthView.js +34 -0
  62. package/dist/components/Dates/InputMonthYearPicker/MonthYearPicker/MonthYearPicker.js +97 -133
  63. package/dist/components/Dates/InputMonthYearPicker/MonthYearPicker/MonthYearPicker.utils.js +17 -19
  64. package/dist/components/Dates/InputMonthYearPicker/MonthYearPicker/YearView/YearView.js +29 -0
  65. package/dist/components/Dates/InputTimePicker/InputTimePicker.js +61 -87
  66. package/dist/components/Dates/InputTimePicker/InputTimePicker.utils.js +13 -16
  67. package/dist/components/Dates/InputTimePicker/TimePicker/TimeColumn.js +26 -30
  68. package/dist/components/Dates/InputTimePicker/TimePicker/TimePicker.constants.js +12 -0
  69. package/dist/components/Dates/InputTimePicker/TimePicker/TimePicker.js +78 -101
  70. package/dist/components/Dates/InputTimePicker/TimePicker/TimePicker.utils.js +32 -38
  71. package/dist/components/Dates/InputTimePicker/TimePicker/useScrollSync.js +36 -26
  72. package/dist/components/Dates/InputYearPicker/InputYearPicker.js +76 -99
  73. package/dist/components/Dates/InputYearPicker/InputYearPicker.utils.js +18 -21
  74. package/dist/components/Dates/InputYearPicker/YearPicker/YearPicker.js +58 -60
  75. package/dist/components/Dates/InputYearPicker/YearPicker/YearPicker.utils.js +4 -0
  76. package/dist/components/Dates/PickerHeader/PickerHeader.js +39 -59
  77. package/dist/components/Dates/PickerInput/PickerInput.js +46 -0
  78. package/dist/components/Dates/PickerInput/PickerInput.module.js +6 -0
  79. package/dist/components/Dates/PickerOptions/PickerOptions.js +29 -35
  80. package/dist/components/Dates/PickerOptions/PickerOptions.utils.js +5 -0
  81. package/dist/components/Divider/Divider.js +12 -17
  82. package/dist/components/Divider/Divider.module.js +6 -0
  83. package/dist/components/Divider/Divider.utils.js +9 -8
  84. package/dist/components/Drawer/Drawer.js +46 -73
  85. package/dist/components/Drawer/Drawer.module.js +17 -0
  86. package/dist/components/Drawer/Drawer.utils.js +21 -13
  87. package/dist/components/Drawer/DrawerActions/DrawerActions.js +5 -0
  88. package/dist/components/Drawer/DrawerContent/DrawerContent.js +10 -0
  89. package/dist/components/Drawer/DrawerHeader/DrawerHeader.js +27 -0
  90. package/dist/components/Field/Field.js +42 -68
  91. package/dist/components/Field/InputBase/InputBase.js +23 -51
  92. package/dist/components/Field/InputBase/InputBase.module.js +3 -0
  93. package/dist/components/Field/InputBaseWrapper/InputBaseWrapper.constants.js +8 -0
  94. package/dist/components/Field/InputBaseWrapper/InputBaseWrapper.js +60 -85
  95. package/dist/components/Field/InputBaseWrapper/InputBaseWrapper.module.js +21 -0
  96. package/dist/components/Field/InputBaseWrapper/InputBaseWrapper.utils.js +34 -63
  97. package/dist/components/FileUploader/FileUploader.js +90 -130
  98. package/dist/components/FileUploader/FileUploader.module.js +12 -0
  99. package/dist/components/FileUploader/FileUploader.utils.js +30 -28
  100. package/dist/components/FileView/FileView.js +25 -75
  101. package/dist/components/FileView/FileView.module.js +7 -0
  102. package/dist/components/Hinter/Hinter.js +17 -53
  103. package/dist/components/Hinter/Hinter.module.js +6 -0
  104. package/dist/components/Indicator/Indicator.js +23 -0
  105. package/dist/components/Indicator/Indicator.module.js +11 -0
  106. package/dist/components/Indicator/Indicator.utils.js +38 -0
  107. package/dist/components/InlineInput/InlineInput.js +31 -0
  108. package/dist/components/InlineInput/InlineInput.module.js +8 -0
  109. package/dist/components/InlineInput/InlineInput.utils.js +9 -0
  110. package/dist/components/Input/Input.js +15 -43
  111. package/dist/components/Input/Input.module.js +3 -0
  112. package/dist/components/InputOtp/InputOtp.js +51 -69
  113. package/dist/components/InputOtp/InputOtp.module.js +8 -0
  114. package/dist/components/InputOtp/InputOtp.utils.js +29 -38
  115. package/dist/components/List/List.constants.js +17 -0
  116. package/dist/components/List/List.context.js +5 -0
  117. package/dist/components/List/List.js +33 -0
  118. package/dist/components/List/List.module.js +7 -0
  119. package/dist/components/List/List.utils.js +14 -0
  120. package/dist/components/List/ListGroup/ListGroup.js +29 -0
  121. package/dist/components/List/ListGroup/ListGroup.module.js +9 -0
  122. package/dist/components/List/ListItem/ListItem.js +55 -0
  123. package/dist/components/List/ListItem/ListItem.module.js +13 -0
  124. package/dist/components/List/ListItem/ListItem.utils.js +15 -0
  125. package/dist/components/List/ListSkeleton/ListSkeleton.js +20 -0
  126. package/dist/components/List/ListSkeleton/ListSkeleton.module.js +6 -0
  127. package/dist/components/Loader/Loader.js +28 -7
  128. package/dist/components/Loader/Loader.module.js +7 -0
  129. package/dist/components/Loader/Loader.utils.js +15 -13
  130. package/dist/components/Menu/Menu.js +27 -38
  131. package/dist/components/Menu/Menu.module.js +6 -0
  132. package/dist/components/Menu/MenuItem/MenuItem.js +27 -46
  133. package/dist/components/Menu/MenuItem/MenuItem.module.js +7 -0
  134. package/dist/components/Menu/MenuSub/MenuSub.js +26 -0
  135. package/dist/components/Modal/Modal.js +36 -47
  136. package/dist/components/Modal/Modal.module.js +13 -0
  137. package/dist/components/Modal/Modal.utils.js +11 -7
  138. package/dist/components/Modal/ModalActions/ModalActions.js +5 -5
  139. package/dist/components/Modal/ModalContent/ModalContent.js +10 -7
  140. package/dist/components/Modal/ModalHeader/ModalHeader.js +21 -42
  141. package/dist/components/Navbar/Navbar.js +15 -23
  142. package/dist/components/Navbar/Navbar.module.js +8 -0
  143. package/dist/components/Pagination/Pagination.constants.js +23 -0
  144. package/dist/components/Pagination/Pagination.hook.js +31 -27
  145. package/dist/components/Pagination/Pagination.js +95 -181
  146. package/dist/components/Pagination/Pagination.module.js +8 -0
  147. package/dist/components/Pagination/Pagination.utils.js +11 -36
  148. package/dist/components/Paper/Paper.js +10 -0
  149. package/dist/components/Paper/Paper.utils.js +45 -14
  150. package/dist/components/Popover/Popover.context.js +5 -8
  151. package/dist/components/Popover/Popover.js +64 -72
  152. package/dist/components/Popover/Popover.module.js +6 -0
  153. package/dist/components/Popover/PopoverDropdown/PopoverArrow.js +15 -24
  154. package/dist/components/Popover/PopoverDropdown/PopoverDropdown.js +41 -70
  155. package/dist/components/Popover/PopoverTrigger/PopoverTrigger.js +30 -29
  156. package/dist/components/Popover/useFloatingPosition/getScrollableAncestors.js +10 -11
  157. package/dist/components/Popover/useFloatingPosition/useFloating.util.js +68 -54
  158. package/dist/components/Popover/useFloatingPosition/useFloatingPosition.js +45 -42
  159. package/dist/components/Portal/Portal.js +13 -22
  160. package/dist/components/ProgressBar/ProgressBar.js +21 -23
  161. package/dist/components/ProgressBar/ProgressBar.module.js +3 -0
  162. package/dist/components/ProgressBar/ProgressBar.utils.js +8 -7
  163. package/dist/components/Radio/Radio.js +41 -43
  164. package/dist/components/Radio/Radio.module.js +6 -0
  165. package/dist/components/Radio/Radio.utils.js +9 -59
  166. package/dist/components/Radio/RadioGroup/RadioGroup.context.js +5 -0
  167. package/dist/components/Radio/RadioGroup/RadioGroup.js +26 -40
  168. package/dist/components/Radio/RadioGroup/RadioGroup.module.js +7 -0
  169. package/dist/components/Rating/Rating.js +34 -42
  170. package/dist/components/Rating/Rating.module.js +10 -0
  171. package/dist/components/Rating/Rating.utils.js +6 -8
  172. package/dist/components/Rating/RatingItem/RatingItem.js +58 -0
  173. package/dist/components/Rating/RatingItem/RatingItem.utils.js +4 -0
  174. package/dist/components/RemoveScroll/RemoveScroll.js +12 -15
  175. package/dist/components/SegmentedControl/SegmentedControl.js +31 -39
  176. package/dist/components/SegmentedControl/SegmentedControl.module.js +6 -0
  177. package/dist/components/SegmentedControl/SegmentedControl.utils.js +9 -21
  178. package/dist/components/Select/Select.js +106 -139
  179. package/dist/components/Select/Select.module.js +8 -0
  180. package/dist/components/Select/Select.utils.js +4 -6
  181. package/dist/components/Select/SelectMultiple/SelectMultiple.js +145 -0
  182. package/dist/components/Select/SelectMultiple/SelectMultiple.module.js +12 -0
  183. package/dist/components/SelectorInput/SelectorInput.js +49 -80
  184. package/dist/components/SelectorInput/SelectorInput.module.js +10 -0
  185. package/dist/components/SelectorInput/SelectorInput.utils.js +23 -48
  186. package/dist/components/Sidebar/Sidebar.context.js +4 -5
  187. package/dist/components/Sidebar/Sidebar.js +55 -81
  188. package/dist/components/Sidebar/Sidebar.module.js +13 -0
  189. package/dist/components/Sidebar/Sidebar.utils.js +49 -66
  190. package/dist/components/Sidebar/SidebarCollapse/SidebarCollapse.js +46 -64
  191. package/dist/components/Sidebar/SidebarCollapse/SidebarCollapse.module.js +7 -0
  192. package/dist/components/Sidebar/SidebarElement/SidebarElement.js +18 -9
  193. package/dist/components/Sidebar/SidebarElement/SidebarElement.module.js +7 -0
  194. package/dist/components/Sidebar/SidebarFooter/SidebarFooter.js +22 -0
  195. package/dist/components/Sidebar/SidebarFooter/SidebarFooter.module.js +3 -0
  196. package/dist/components/Sidebar/SidebarGroup/SidebarGroup.js +21 -0
  197. package/dist/components/Sidebar/SidebarGroup/SidebarGroup.module.js +3 -0
  198. package/dist/components/Sidebar/SidebarHeader/SidebarHeader.js +27 -16
  199. package/dist/components/Sidebar/SidebarHeader/SidebarHeader.module.js +11 -0
  200. package/dist/components/Sidebar/SidebarItem/SidebarItem.js +52 -35
  201. package/dist/components/Sidebar/SidebarItem/SidebarItem.module.js +10 -0
  202. package/dist/components/Sidebar/SidebarItems/SidebarItems.js +18 -24
  203. package/dist/components/Sidebar/SidebarProfile/SidebarProfile.js +37 -0
  204. package/dist/components/Sidebar/SidebarProfile/SidebarProfile.module.js +12 -0
  205. package/dist/components/Skeleton/Skeleton.js +12 -23
  206. package/dist/components/Skeleton/Skeleton.module.js +6 -0
  207. package/dist/components/Skeleton/Skeleton.utils.js +9 -8
  208. package/dist/components/Slider/Marks/Marks.js +24 -32
  209. package/dist/components/Slider/RangeSlider/RangeSlider.js +57 -77
  210. package/dist/components/Slider/RangeSlider/RangeSlider.utils.js +10 -10
  211. package/dist/components/Slider/Slider/Slider.js +31 -47
  212. package/dist/components/Slider/Slider/Slider.utils.js +7 -7
  213. package/dist/components/Slider/Slider.module.js +17 -0
  214. package/dist/components/Slider/Slider.utils.js +13 -15
  215. package/dist/components/Slider/SliderBase/SliderBase.js +25 -38
  216. package/dist/components/Slider/Thumb/Thumb.js +58 -69
  217. package/dist/components/Slider/Track/Track.js +15 -15
  218. package/dist/components/Snackbar/Snackbar.js +25 -104
  219. package/dist/components/Snackbar/Snackbar.module.js +20 -0
  220. package/dist/components/Snackbar/Snackbar.utils.js +151 -51
  221. package/dist/components/Snackbar/SnackbarCard/SnackbarCard.js +75 -0
  222. package/dist/components/Snackbar/SnackbarSlot/SnackbarSlot.js +37 -0
  223. package/dist/components/Snackbar/SnackbarSlot/SnackbarSlot.utils.js +4 -0
  224. package/dist/components/Snackbar/SnackbarTimer/SnackbarTimer.js +68 -30
  225. package/dist/components/Switch/Switch.js +33 -27
  226. package/dist/components/Switch/Switch.module.js +7 -0
  227. package/dist/components/Switch/Switch.utils.js +11 -39
  228. package/dist/components/Tab/Tab.js +48 -60
  229. package/dist/components/Tab/Tab.module.js +9 -0
  230. package/dist/components/Tab/Tab.utils.js +42 -128
  231. package/dist/components/Tab/TabGroup/TabGroup.context.js +5 -0
  232. package/dist/components/Tab/TabGroup/TabGroup.js +32 -60
  233. package/dist/components/Tab/TabGroup/TabGroup.module.js +3 -0
  234. package/dist/components/Table/Table.js +48 -114
  235. package/dist/components/Table/Table.module.js +23 -0
  236. package/dist/components/Table/Table.utils.js +16 -35
  237. package/dist/components/Tabs/Tabs.context.js +5 -0
  238. package/dist/components/Tabs/Tabs.js +17 -0
  239. package/dist/components/Tabs/Tabs.module.js +7 -0
  240. package/dist/components/Tabs/TabsMenu/TabsMenu.js +21 -0
  241. package/dist/components/Tabs/TabsMenu/TabsMenu.utils.js +10 -0
  242. package/dist/components/Tabs/TabsPanel/TabsPanel.js +18 -0
  243. package/dist/components/Tabs/TabsTab/TabsTab.js +21 -0
  244. package/dist/components/Textarea/Textarea.constants.js +8 -0
  245. package/dist/components/Textarea/Textarea.js +56 -0
  246. package/dist/components/Textarea/Textarea.module.js +13 -0
  247. package/dist/components/Textarea/Textarea.utils.js +37 -0
  248. package/dist/components/Timeline/Timeline.context.js +4 -7
  249. package/dist/components/Timeline/Timeline.js +31 -42
  250. package/dist/components/Timeline/Timeline.module.js +6 -0
  251. package/dist/components/Timeline/Timeline.utils.js +4 -5
  252. package/dist/components/Timeline/TimelineBullet/TimelineBullet.js +17 -11
  253. package/dist/components/Timeline/TimelineBullet/TimelineBullet.module.js +12 -0
  254. package/dist/components/Timeline/TimelineContent/TimelineContent.js +18 -13
  255. package/dist/components/Timeline/TimelineContent/TimelineContent.module.js +6 -0
  256. package/dist/components/Timeline/TimelineItem/TimelineItem.js +45 -53
  257. package/dist/components/Timeline/TimelineItem/TimelineItem.module.js +13 -0
  258. package/dist/components/Timeline/TimelineItem/TimelineItem.utils.js +17 -21
  259. package/dist/components/Timeline/TimelineOppositeContent/TimelineOppositeContent.js +18 -22
  260. package/dist/components/Timeline/TimelineOppositeContent/TimelineOppositeContent.module.js +6 -0
  261. package/dist/components/Tooltip/Tooltip.js +25 -57
  262. package/dist/components/Tooltip/Tooltip.module.js +8 -0
  263. package/dist/components/Transition/Transition.hook.js +56 -63
  264. package/dist/components/Transition/Transition.js +33 -39
  265. package/dist/components/Transition/Transition.utils.js +177 -150
  266. package/dist/components/Typography/Typography.js +27 -22
  267. package/dist/components/Typography/Typography.module.js +3 -0
  268. package/dist/components/UnstyledButton/UnstyledButton.js +11 -0
  269. package/dist/components/UnstyledButton/UnstyledButton.module.js +3 -0
  270. package/dist/core/src/components/Accordion/Accordion.context.d.ts +26 -0
  271. package/dist/core/src/components/Accordion/Accordion.context.d.ts.map +1 -0
  272. package/dist/core/src/components/Accordion/Accordion.d.ts +9 -0
  273. package/dist/core/src/components/Accordion/Accordion.d.ts.map +1 -0
  274. package/dist/core/src/components/Accordion/Accordion.types.d.ts +72 -0
  275. package/dist/core/src/components/Accordion/Accordion.types.d.ts.map +1 -0
  276. package/dist/core/src/components/Accordion/Accordion.utils.d.ts +7 -0
  277. package/dist/core/src/components/Accordion/Accordion.utils.d.ts.map +1 -0
  278. package/dist/core/src/components/Accordion/AccordionContent/AccordionContent.d.ts +4 -0
  279. package/dist/core/src/components/Accordion/AccordionContent/AccordionContent.d.ts.map +1 -0
  280. package/dist/core/src/components/Accordion/AccordionContent/AccordionContent.types.d.ts +21 -0
  281. package/dist/core/src/components/Accordion/AccordionContent/AccordionContent.types.d.ts.map +1 -0
  282. package/dist/core/src/components/Accordion/AccordionItem/AccordionItem.d.ts +4 -0
  283. package/dist/core/src/components/Accordion/AccordionItem/AccordionItem.d.ts.map +1 -0
  284. package/dist/core/src/components/Accordion/AccordionItem/AccordionItem.types.d.ts +29 -0
  285. package/dist/core/src/components/Accordion/AccordionItem/AccordionItem.types.d.ts.map +1 -0
  286. package/dist/core/src/components/Accordion/AccordionTrigger/AccordionTrigger.d.ts +4 -0
  287. package/dist/core/src/components/Accordion/AccordionTrigger/AccordionTrigger.d.ts.map +1 -0
  288. package/dist/core/src/components/Accordion/AccordionTrigger/AccordionTrigger.types.d.ts +25 -0
  289. package/dist/core/src/components/Accordion/AccordionTrigger/AccordionTrigger.types.d.ts.map +1 -0
  290. package/dist/core/src/components/Accordion/index.d.ts +6 -0
  291. package/dist/core/src/components/Accordion/index.d.ts.map +1 -0
  292. package/dist/core/src/components/Alert/Alert.d.ts +4 -0
  293. package/dist/core/src/components/Alert/Alert.d.ts.map +1 -0
  294. package/dist/core/src/components/Alert/Alert.types.d.ts +35 -0
  295. package/dist/core/src/components/Alert/Alert.types.d.ts.map +1 -0
  296. package/dist/core/src/components/Alert/Alert.utils.d.ts +10 -0
  297. package/dist/core/src/components/Alert/Alert.utils.d.ts.map +1 -0
  298. package/dist/core/src/components/Alert/index.d.ts +3 -0
  299. package/dist/core/src/components/Alert/index.d.ts.map +1 -0
  300. package/dist/core/src/components/AppLayout/AppLayout.d.ts +4 -0
  301. package/dist/core/src/components/AppLayout/AppLayout.d.ts.map +1 -0
  302. package/dist/core/src/components/AppLayout/AppLayout.types.d.ts +15 -0
  303. package/dist/core/src/components/AppLayout/AppLayout.types.d.ts.map +1 -0
  304. package/dist/core/src/components/AppLayout/index.d.ts +3 -0
  305. package/dist/core/src/components/AppLayout/index.d.ts.map +1 -0
  306. package/dist/core/src/components/Avatar/Avatar.d.ts +7 -0
  307. package/dist/core/src/components/Avatar/Avatar.d.ts.map +1 -0
  308. package/dist/core/src/components/Avatar/Avatar.types.d.ts +43 -0
  309. package/dist/core/src/components/Avatar/Avatar.types.d.ts.map +1 -0
  310. package/dist/core/src/components/Avatar/Avatar.utils.d.ts +6 -0
  311. package/dist/core/src/components/Avatar/Avatar.utils.d.ts.map +1 -0
  312. package/dist/core/src/components/Avatar/AvatarGroup/AvatarGroup.d.ts +4 -0
  313. package/dist/core/src/components/Avatar/AvatarGroup/AvatarGroup.d.ts.map +1 -0
  314. package/dist/core/src/components/Avatar/AvatarGroup/AvatarGroup.types.d.ts +13 -0
  315. package/dist/core/src/components/Avatar/AvatarGroup/AvatarGroup.types.d.ts.map +1 -0
  316. package/dist/core/src/components/Avatar/index.d.ts +4 -0
  317. package/dist/core/src/components/Avatar/index.d.ts.map +1 -0
  318. package/dist/core/src/components/Backdrop/Backdrop.d.ts +4 -0
  319. package/dist/core/src/components/Backdrop/Backdrop.d.ts.map +1 -0
  320. package/dist/core/src/components/Backdrop/Backdrop.types.d.ts +34 -0
  321. package/dist/core/src/components/Backdrop/Backdrop.types.d.ts.map +1 -0
  322. package/dist/core/src/components/Backdrop/BackdropOverlay.d.ts +6 -0
  323. package/dist/core/src/components/Backdrop/BackdropOverlay.d.ts.map +1 -0
  324. package/dist/core/src/components/Backdrop/index.d.ts +3 -0
  325. package/dist/core/src/components/Backdrop/index.d.ts.map +1 -0
  326. package/dist/core/src/components/Backdrop/useZIndexStack.d.ts +2 -0
  327. package/dist/core/src/components/Backdrop/useZIndexStack.d.ts.map +1 -0
  328. package/dist/core/src/components/Badge/Badge.d.ts +4 -0
  329. package/dist/core/src/components/Badge/Badge.d.ts.map +1 -0
  330. package/dist/core/src/components/Badge/Badge.types.d.ts +29 -0
  331. package/dist/core/src/components/Badge/Badge.types.d.ts.map +1 -0
  332. package/dist/core/src/components/Badge/Badge.utils.d.ts +5 -0
  333. package/dist/core/src/components/Badge/Badge.utils.d.ts.map +1 -0
  334. package/dist/core/src/components/Badge/index.d.ts +3 -0
  335. package/dist/core/src/components/Badge/index.d.ts.map +1 -0
  336. package/dist/core/src/components/Breadcrumbs/Breadcrumb/Breadcrumb.d.ts +4 -0
  337. package/dist/core/src/components/Breadcrumbs/Breadcrumb/Breadcrumb.d.ts.map +1 -0
  338. package/dist/core/src/components/Breadcrumbs/Breadcrumb/Breadcrumb.types.d.ts +9 -0
  339. package/dist/core/src/components/Breadcrumbs/Breadcrumb/Breadcrumb.types.d.ts.map +1 -0
  340. package/dist/core/src/components/Breadcrumbs/Breadcrumbs.d.ts +4 -0
  341. package/dist/core/src/components/Breadcrumbs/Breadcrumbs.d.ts.map +1 -0
  342. package/dist/core/src/components/Breadcrumbs/Breadcrumbs.types.d.ts +54 -0
  343. package/dist/core/src/components/Breadcrumbs/Breadcrumbs.types.d.ts.map +1 -0
  344. package/dist/core/src/components/Breadcrumbs/Breadcrumbs.utils.d.ts +5 -0
  345. package/dist/core/src/components/Breadcrumbs/Breadcrumbs.utils.d.ts.map +1 -0
  346. package/dist/core/src/components/Breadcrumbs/BreadcrumbsMenu/BreadcrumbsMenu.d.ts +4 -0
  347. package/dist/core/src/components/Breadcrumbs/BreadcrumbsMenu/BreadcrumbsMenu.d.ts.map +1 -0
  348. package/dist/core/src/components/Breadcrumbs/BreadcrumbsMenu/BreadcrumbsMenu.types.d.ts +5 -0
  349. package/dist/core/src/components/Breadcrumbs/BreadcrumbsMenu/BreadcrumbsMenu.types.d.ts.map +1 -0
  350. package/dist/core/src/components/Breadcrumbs/index.d.ts +3 -0
  351. package/dist/core/src/components/Breadcrumbs/index.d.ts.map +1 -0
  352. package/dist/core/src/components/Button/Button.d.ts +4 -0
  353. package/dist/core/src/components/Button/Button.d.ts.map +1 -0
  354. package/dist/core/src/components/Button/Button.types.d.ts +32 -0
  355. package/dist/core/src/components/Button/Button.types.d.ts.map +1 -0
  356. package/dist/core/src/components/Button/Button.utils.d.ts +5 -0
  357. package/dist/core/src/components/Button/Button.utils.d.ts.map +1 -0
  358. package/dist/core/src/components/Button/index.d.ts +3 -0
  359. package/dist/core/src/components/Button/index.d.ts.map +1 -0
  360. package/dist/core/src/components/Checkbox/Checkbox.d.ts +7 -0
  361. package/dist/core/src/components/Checkbox/Checkbox.d.ts.map +1 -0
  362. package/dist/core/src/components/Checkbox/Checkbox.types.d.ts +19 -0
  363. package/dist/core/src/components/Checkbox/Checkbox.types.d.ts.map +1 -0
  364. package/dist/core/src/components/Checkbox/Checkbox.utils.d.ts +5 -0
  365. package/dist/core/src/components/Checkbox/Checkbox.utils.d.ts.map +1 -0
  366. package/dist/core/src/components/Checkbox/CheckboxGroup/CheckboxGroup.context.d.ts +12 -0
  367. package/dist/core/src/components/Checkbox/CheckboxGroup/CheckboxGroup.context.d.ts.map +1 -0
  368. package/dist/core/src/components/Checkbox/CheckboxGroup/CheckboxGroup.d.ts +4 -0
  369. package/dist/core/src/components/Checkbox/CheckboxGroup/CheckboxGroup.d.ts.map +1 -0
  370. package/dist/core/src/components/Checkbox/CheckboxGroup/CheckboxGroup.types.d.ts +44 -0
  371. package/dist/core/src/components/Checkbox/CheckboxGroup/CheckboxGroup.types.d.ts.map +1 -0
  372. package/dist/core/src/components/Checkbox/index.d.ts +4 -0
  373. package/dist/core/src/components/Checkbox/index.d.ts.map +1 -0
  374. package/dist/core/src/components/Collapse/Collapse.d.ts +4 -0
  375. package/dist/core/src/components/Collapse/Collapse.d.ts.map +1 -0
  376. package/dist/core/src/components/Collapse/Collapse.types.d.ts +21 -0
  377. package/dist/core/src/components/Collapse/Collapse.types.d.ts.map +1 -0
  378. package/dist/core/src/components/Collapse/index.d.ts +3 -0
  379. package/dist/core/src/components/Collapse/index.d.ts.map +1 -0
  380. package/dist/core/src/components/Dates/Dates.types.d.ts +2 -0
  381. package/dist/core/src/components/Dates/Dates.types.d.ts.map +1 -0
  382. package/dist/core/src/components/Dates/Dates.utils.d.ts +16 -0
  383. package/dist/core/src/components/Dates/Dates.utils.d.ts.map +1 -0
  384. package/dist/core/src/components/Dates/InputDatePicker/DatePicker/DatePicker.constants.d.ts +6 -0
  385. package/dist/core/src/components/Dates/InputDatePicker/DatePicker/DatePicker.constants.d.ts.map +1 -0
  386. package/dist/core/src/components/Dates/InputDatePicker/DatePicker/DatePicker.d.ts +4 -0
  387. package/dist/core/src/components/Dates/InputDatePicker/DatePicker/DatePicker.d.ts.map +1 -0
  388. package/dist/core/src/components/Dates/InputDatePicker/DatePicker/DatePicker.types.d.ts +80 -0
  389. package/dist/core/src/components/Dates/InputDatePicker/DatePicker/DatePicker.types.d.ts.map +1 -0
  390. package/dist/core/src/components/Dates/InputDatePicker/DatePicker/DatePicker.utils.d.ts +24 -0
  391. package/dist/core/src/components/Dates/InputDatePicker/DatePicker/DatePicker.utils.d.ts.map +1 -0
  392. package/dist/core/src/components/Dates/InputDatePicker/DatePicker/DayView/DayView.d.ts +17 -0
  393. package/dist/core/src/components/Dates/InputDatePicker/DatePicker/DayView/DayView.d.ts.map +1 -0
  394. package/dist/core/src/components/Dates/InputDatePicker/DatePicker/MonthView/MonthView.d.ts +16 -0
  395. package/dist/core/src/components/Dates/InputDatePicker/DatePicker/MonthView/MonthView.d.ts.map +1 -0
  396. package/dist/core/src/components/Dates/InputDatePicker/DatePicker/YearView/YearView.d.ts +18 -0
  397. package/dist/core/src/components/Dates/InputDatePicker/DatePicker/YearView/YearView.d.ts.map +1 -0
  398. package/dist/core/src/components/Dates/InputDatePicker/DatePicker/index.d.ts +3 -0
  399. package/dist/core/src/components/Dates/InputDatePicker/DatePicker/index.d.ts.map +1 -0
  400. package/dist/core/src/components/Dates/InputDatePicker/InputDatePicker.constants.d.ts +18 -0
  401. package/dist/core/src/components/Dates/InputDatePicker/InputDatePicker.constants.d.ts.map +1 -0
  402. package/dist/core/src/components/Dates/InputDatePicker/InputDatePicker.d.ts +4 -0
  403. package/dist/core/src/components/Dates/InputDatePicker/InputDatePicker.d.ts.map +1 -0
  404. package/dist/core/src/components/Dates/InputDatePicker/InputDatePicker.types.d.ts +6 -0
  405. package/dist/core/src/components/Dates/InputDatePicker/InputDatePicker.types.d.ts.map +1 -0
  406. package/dist/core/src/components/Dates/InputDatePicker/InputDatePicker.utils.d.ts +19 -0
  407. package/dist/core/src/components/Dates/InputDatePicker/InputDatePicker.utils.d.ts.map +1 -0
  408. package/dist/core/src/components/Dates/InputDatePicker/index.d.ts +5 -0
  409. package/dist/core/src/components/Dates/InputDatePicker/index.d.ts.map +1 -0
  410. package/dist/core/src/components/Dates/InputMonthPicker/InputMonthPicker.constants.d.ts +5 -0
  411. package/dist/core/src/components/Dates/InputMonthPicker/InputMonthPicker.constants.d.ts.map +1 -0
  412. package/dist/core/src/components/Dates/InputMonthPicker/InputMonthPicker.d.ts +4 -0
  413. package/dist/core/src/components/Dates/InputMonthPicker/InputMonthPicker.d.ts.map +1 -0
  414. package/dist/core/src/components/Dates/InputMonthPicker/InputMonthPicker.types.d.ts +6 -0
  415. package/dist/core/src/components/Dates/InputMonthPicker/InputMonthPicker.types.d.ts.map +1 -0
  416. package/dist/core/src/components/Dates/InputMonthPicker/InputMonthPicker.utils.d.ts +6 -0
  417. package/dist/core/src/components/Dates/InputMonthPicker/InputMonthPicker.utils.d.ts.map +1 -0
  418. package/dist/core/src/components/Dates/InputMonthPicker/MonthPicker/MonthPicker.constants.d.ts +7 -0
  419. package/dist/core/src/components/Dates/InputMonthPicker/MonthPicker/MonthPicker.constants.d.ts.map +1 -0
  420. package/dist/core/src/components/Dates/InputMonthPicker/MonthPicker/MonthPicker.d.ts +4 -0
  421. package/dist/core/src/components/Dates/InputMonthPicker/MonthPicker/MonthPicker.d.ts.map +1 -0
  422. package/dist/core/src/components/Dates/InputMonthPicker/MonthPicker/MonthPicker.types.d.ts +49 -0
  423. package/dist/core/src/components/Dates/InputMonthPicker/MonthPicker/MonthPicker.types.d.ts.map +1 -0
  424. package/dist/core/src/components/Dates/InputMonthPicker/MonthPicker/MonthPicker.utils.d.ts +2 -0
  425. package/dist/core/src/components/Dates/InputMonthPicker/MonthPicker/MonthPicker.utils.d.ts.map +1 -0
  426. package/dist/core/src/components/Dates/InputMonthPicker/MonthPicker/index.d.ts +3 -0
  427. package/dist/core/src/components/Dates/InputMonthPicker/MonthPicker/index.d.ts.map +1 -0
  428. package/dist/core/src/components/Dates/InputMonthPicker/index.d.ts +4 -0
  429. package/dist/core/src/components/Dates/InputMonthPicker/index.d.ts.map +1 -0
  430. package/dist/core/src/components/Dates/InputMonthYearPicker/InputMonthYearPicker.constants.d.ts +13 -0
  431. package/dist/core/src/components/Dates/InputMonthYearPicker/InputMonthYearPicker.constants.d.ts.map +1 -0
  432. package/dist/core/src/components/Dates/InputMonthYearPicker/InputMonthYearPicker.d.ts +4 -0
  433. package/dist/core/src/components/Dates/InputMonthYearPicker/InputMonthYearPicker.d.ts.map +1 -0
  434. package/dist/core/src/components/Dates/InputMonthYearPicker/InputMonthYearPicker.types.d.ts +6 -0
  435. package/dist/core/src/components/Dates/InputMonthYearPicker/InputMonthYearPicker.types.d.ts.map +1 -0
  436. package/dist/core/src/components/Dates/InputMonthYearPicker/InputMonthYearPicker.utils.d.ts +17 -0
  437. package/dist/core/src/components/Dates/InputMonthYearPicker/InputMonthYearPicker.utils.d.ts.map +1 -0
  438. package/dist/core/src/components/Dates/InputMonthYearPicker/MonthYearPicker/MonthView/MonthView.d.ts +18 -0
  439. package/dist/core/src/components/Dates/InputMonthYearPicker/MonthYearPicker/MonthView/MonthView.d.ts.map +1 -0
  440. package/dist/core/src/components/Dates/InputMonthYearPicker/MonthYearPicker/MonthYearPicker.d.ts +4 -0
  441. package/dist/core/src/components/Dates/InputMonthYearPicker/MonthYearPicker/MonthYearPicker.d.ts.map +1 -0
  442. package/dist/core/src/components/Dates/InputMonthYearPicker/MonthYearPicker/MonthYearPicker.types.d.ts +63 -0
  443. package/dist/core/src/components/Dates/InputMonthYearPicker/MonthYearPicker/MonthYearPicker.types.d.ts.map +1 -0
  444. package/dist/core/src/components/Dates/InputMonthYearPicker/MonthYearPicker/MonthYearPicker.utils.d.ts +8 -0
  445. package/dist/core/src/components/Dates/InputMonthYearPicker/MonthYearPicker/MonthYearPicker.utils.d.ts.map +1 -0
  446. package/dist/core/src/components/Dates/InputMonthYearPicker/MonthYearPicker/YearView/YearView.d.ts +18 -0
  447. package/dist/core/src/components/Dates/InputMonthYearPicker/MonthYearPicker/YearView/YearView.d.ts.map +1 -0
  448. package/dist/core/src/components/Dates/InputMonthYearPicker/MonthYearPicker/index.d.ts +3 -0
  449. package/dist/core/src/components/Dates/InputMonthYearPicker/MonthYearPicker/index.d.ts.map +1 -0
  450. package/dist/core/src/components/Dates/InputMonthYearPicker/index.d.ts +4 -0
  451. package/dist/core/src/components/Dates/InputMonthYearPicker/index.d.ts.map +1 -0
  452. package/dist/core/src/components/Dates/InputTimePicker/InputTimePicker.d.ts +4 -0
  453. package/dist/core/src/components/Dates/InputTimePicker/InputTimePicker.d.ts.map +1 -0
  454. package/dist/core/src/components/Dates/InputTimePicker/InputTimePicker.types.d.ts +6 -0
  455. package/dist/core/src/components/Dates/InputTimePicker/InputTimePicker.types.d.ts.map +1 -0
  456. package/dist/core/src/components/Dates/InputTimePicker/InputTimePicker.utils.d.ts +7 -0
  457. package/dist/core/src/components/Dates/InputTimePicker/InputTimePicker.utils.d.ts.map +1 -0
  458. package/dist/core/src/components/Dates/InputTimePicker/TimePicker/TimeColumn.d.ts +11 -0
  459. package/dist/core/src/components/Dates/InputTimePicker/TimePicker/TimeColumn.d.ts.map +1 -0
  460. package/dist/core/src/components/Dates/InputTimePicker/TimePicker/TimePicker.constants.d.ts +12 -0
  461. package/dist/core/src/components/Dates/InputTimePicker/TimePicker/TimePicker.constants.d.ts.map +1 -0
  462. package/dist/core/src/components/Dates/InputTimePicker/TimePicker/TimePicker.d.ts +6 -0
  463. package/dist/core/src/components/Dates/InputTimePicker/TimePicker/TimePicker.d.ts.map +1 -0
  464. package/dist/core/src/components/Dates/InputTimePicker/TimePicker/TimePicker.types.d.ts +61 -0
  465. package/dist/core/src/components/Dates/InputTimePicker/TimePicker/TimePicker.types.d.ts.map +1 -0
  466. package/dist/core/src/components/Dates/InputTimePicker/TimePicker/TimePicker.utils.d.ts +9 -0
  467. package/dist/core/src/components/Dates/InputTimePicker/TimePicker/TimePicker.utils.d.ts.map +1 -0
  468. package/dist/core/src/components/Dates/InputTimePicker/TimePicker/index.d.ts +3 -0
  469. package/dist/core/src/components/Dates/InputTimePicker/TimePicker/index.d.ts.map +1 -0
  470. package/dist/core/src/components/Dates/InputTimePicker/TimePicker/useScrollSync.d.ts +4 -0
  471. package/dist/core/src/components/Dates/InputTimePicker/TimePicker/useScrollSync.d.ts.map +1 -0
  472. package/dist/core/src/components/Dates/InputTimePicker/index.d.ts +4 -0
  473. package/dist/core/src/components/Dates/InputTimePicker/index.d.ts.map +1 -0
  474. package/dist/core/src/components/Dates/InputYearPicker/InputYearPicker.d.ts +4 -0
  475. package/dist/core/src/components/Dates/InputYearPicker/InputYearPicker.d.ts.map +1 -0
  476. package/dist/core/src/components/Dates/InputYearPicker/InputYearPicker.types.d.ts +6 -0
  477. package/dist/core/src/components/Dates/InputYearPicker/InputYearPicker.types.d.ts.map +1 -0
  478. package/dist/core/src/components/Dates/InputYearPicker/InputYearPicker.utils.d.ts +8 -0
  479. package/dist/core/src/components/Dates/InputYearPicker/InputYearPicker.utils.d.ts.map +1 -0
  480. package/dist/core/src/components/Dates/InputYearPicker/YearPicker/YearPicker.d.ts +4 -0
  481. package/dist/core/src/components/Dates/InputYearPicker/YearPicker/YearPicker.d.ts.map +1 -0
  482. package/dist/core/src/components/Dates/InputYearPicker/YearPicker/YearPicker.types.d.ts +59 -0
  483. package/dist/core/src/components/Dates/InputYearPicker/YearPicker/YearPicker.types.d.ts.map +1 -0
  484. package/dist/core/src/components/Dates/InputYearPicker/YearPicker/YearPicker.utils.d.ts +3 -0
  485. package/dist/core/src/components/Dates/InputYearPicker/YearPicker/YearPicker.utils.d.ts.map +1 -0
  486. package/dist/core/src/components/Dates/InputYearPicker/YearPicker/index.d.ts +3 -0
  487. package/dist/core/src/components/Dates/InputYearPicker/YearPicker/index.d.ts.map +1 -0
  488. package/dist/core/src/components/Dates/InputYearPicker/index.d.ts +4 -0
  489. package/dist/core/src/components/Dates/InputYearPicker/index.d.ts.map +1 -0
  490. package/dist/core/src/components/Dates/PickerHeader/PickerHeader.d.ts +4 -0
  491. package/dist/core/src/components/Dates/PickerHeader/PickerHeader.d.ts.map +1 -0
  492. package/dist/core/src/components/Dates/PickerHeader/PickerHeader.types.d.ts +12 -0
  493. package/dist/core/src/components/Dates/PickerHeader/PickerHeader.types.d.ts.map +1 -0
  494. package/dist/core/src/components/Dates/PickerInput/PickerInput.d.ts +6 -0
  495. package/dist/core/src/components/Dates/PickerInput/PickerInput.d.ts.map +1 -0
  496. package/dist/core/src/components/Dates/PickerInput/PickerInput.types.d.ts +5 -0
  497. package/dist/core/src/components/Dates/PickerInput/PickerInput.types.d.ts.map +1 -0
  498. package/dist/core/src/components/Dates/PickerOptions/PickerOptions.d.ts +4 -0
  499. package/dist/core/src/components/Dates/PickerOptions/PickerOptions.d.ts.map +1 -0
  500. package/dist/core/src/components/Dates/PickerOptions/PickerOptions.types.d.ts +12 -0
  501. package/dist/core/src/components/Dates/PickerOptions/PickerOptions.types.d.ts.map +1 -0
  502. package/dist/core/src/components/Dates/PickerOptions/PickerOptions.utils.d.ts +6 -0
  503. package/dist/core/src/components/Dates/PickerOptions/PickerOptions.utils.d.ts.map +1 -0
  504. package/dist/core/src/components/Dates/index.d.ts +6 -0
  505. package/dist/core/src/components/Dates/index.d.ts.map +1 -0
  506. package/dist/core/src/components/Divider/Divider.d.ts +4 -0
  507. package/dist/core/src/components/Divider/Divider.d.ts.map +1 -0
  508. package/dist/core/src/components/Divider/Divider.types.d.ts +28 -0
  509. package/dist/core/src/components/Divider/Divider.types.d.ts.map +1 -0
  510. package/dist/core/src/components/Divider/Divider.utils.d.ts +5 -0
  511. package/dist/core/src/components/Divider/Divider.utils.d.ts.map +1 -0
  512. package/dist/core/src/components/Divider/index.d.ts +3 -0
  513. package/dist/core/src/components/Divider/index.d.ts.map +1 -0
  514. package/dist/core/src/components/Drawer/Drawer.d.ts +9 -0
  515. package/dist/core/src/components/Drawer/Drawer.d.ts.map +1 -0
  516. package/dist/core/src/components/Drawer/Drawer.types.d.ts +40 -0
  517. package/dist/core/src/components/Drawer/Drawer.types.d.ts.map +1 -0
  518. package/dist/core/src/components/Drawer/Drawer.utils.d.ts +12 -0
  519. package/dist/core/src/components/Drawer/Drawer.utils.d.ts.map +1 -0
  520. package/dist/core/src/components/Drawer/DrawerActions/DrawerActions.d.ts +4 -0
  521. package/dist/core/src/components/Drawer/DrawerActions/DrawerActions.d.ts.map +1 -0
  522. package/dist/core/src/components/Drawer/DrawerContent/DrawerContent.d.ts +4 -0
  523. package/dist/core/src/components/Drawer/DrawerContent/DrawerContent.d.ts.map +1 -0
  524. package/dist/core/src/components/Drawer/DrawerHeader/DrawerHeader.d.ts +14 -0
  525. package/dist/core/src/components/Drawer/DrawerHeader/DrawerHeader.d.ts.map +1 -0
  526. package/dist/core/src/components/Drawer/index.d.ts +3 -0
  527. package/dist/core/src/components/Drawer/index.d.ts.map +1 -0
  528. package/dist/core/src/components/Field/Field.d.ts +4 -0
  529. package/dist/core/src/components/Field/Field.d.ts.map +1 -0
  530. package/dist/core/src/components/Field/Field.types.d.ts +6 -0
  531. package/dist/core/src/components/Field/Field.types.d.ts.map +1 -0
  532. package/dist/core/src/components/Field/InputBase/InputBase.d.ts +4 -0
  533. package/dist/core/src/components/Field/InputBase/InputBase.d.ts.map +1 -0
  534. package/dist/core/src/components/Field/InputBase/InputBase.types.d.ts +23 -0
  535. package/dist/core/src/components/Field/InputBase/InputBase.types.d.ts.map +1 -0
  536. package/dist/core/src/components/Field/InputBaseWrapper/InputBaseWrapper.constants.d.ts +12 -0
  537. package/dist/core/src/components/Field/InputBaseWrapper/InputBaseWrapper.constants.d.ts.map +1 -0
  538. package/dist/core/src/components/Field/InputBaseWrapper/InputBaseWrapper.d.ts +4 -0
  539. package/dist/core/src/components/Field/InputBaseWrapper/InputBaseWrapper.d.ts.map +1 -0
  540. package/dist/core/src/components/Field/InputBaseWrapper/InputBaseWrapper.types.d.ts +94 -0
  541. package/dist/core/src/components/Field/InputBaseWrapper/InputBaseWrapper.types.d.ts.map +1 -0
  542. package/dist/core/src/components/Field/InputBaseWrapper/InputBaseWrapper.utils.d.ts +5 -0
  543. package/dist/core/src/components/Field/InputBaseWrapper/InputBaseWrapper.utils.d.ts.map +1 -0
  544. package/dist/core/src/components/Field/index.d.ts +3 -0
  545. package/dist/core/src/components/Field/index.d.ts.map +1 -0
  546. package/dist/core/src/components/FileUploader/FileUploader.d.ts +4 -0
  547. package/dist/core/src/components/FileUploader/FileUploader.d.ts.map +1 -0
  548. package/dist/core/src/components/FileUploader/FileUploader.types.d.ts +81 -0
  549. package/dist/core/src/components/FileUploader/FileUploader.types.d.ts.map +1 -0
  550. package/dist/core/src/components/FileUploader/FileUploader.utils.d.ts +29 -0
  551. package/dist/core/src/components/FileUploader/FileUploader.utils.d.ts.map +1 -0
  552. package/dist/core/src/components/FileUploader/index.d.ts +3 -0
  553. package/dist/core/src/components/FileUploader/index.d.ts.map +1 -0
  554. package/dist/core/src/components/FileView/FileView.d.ts +4 -0
  555. package/dist/core/src/components/FileView/FileView.d.ts.map +1 -0
  556. package/dist/core/src/components/FileView/FileView.types.d.ts +38 -0
  557. package/dist/core/src/components/FileView/FileView.types.d.ts.map +1 -0
  558. package/dist/core/src/components/FileView/index.d.ts +3 -0
  559. package/dist/core/src/components/FileView/index.d.ts.map +1 -0
  560. package/dist/core/src/components/Hinter/Hinter.d.ts +4 -0
  561. package/dist/core/src/components/Hinter/Hinter.d.ts.map +1 -0
  562. package/dist/core/src/components/Hinter/Hinter.types.d.ts +25 -0
  563. package/dist/core/src/components/Hinter/Hinter.types.d.ts.map +1 -0
  564. package/dist/core/src/components/Hinter/index.d.ts +3 -0
  565. package/dist/core/src/components/Hinter/index.d.ts.map +1 -0
  566. package/dist/core/src/components/Indicator/Indicator.d.ts +4 -0
  567. package/dist/core/src/components/Indicator/Indicator.d.ts.map +1 -0
  568. package/dist/core/src/components/Indicator/Indicator.types.d.ts +40 -0
  569. package/dist/core/src/components/Indicator/Indicator.types.d.ts.map +1 -0
  570. package/dist/core/src/components/Indicator/Indicator.utils.d.ts +11 -0
  571. package/dist/core/src/components/Indicator/Indicator.utils.d.ts.map +1 -0
  572. package/dist/core/src/components/Indicator/index.d.ts +3 -0
  573. package/dist/core/src/components/Indicator/index.d.ts.map +1 -0
  574. package/dist/core/src/components/InlineInput/InlineInput.d.ts +4 -0
  575. package/dist/core/src/components/InlineInput/InlineInput.d.ts.map +1 -0
  576. package/dist/core/src/components/InlineInput/InlineInput.types.d.ts +37 -0
  577. package/dist/core/src/components/InlineInput/InlineInput.types.d.ts.map +1 -0
  578. package/dist/core/src/components/InlineInput/InlineInput.utils.d.ts +6 -0
  579. package/dist/core/src/components/InlineInput/InlineInput.utils.d.ts.map +1 -0
  580. package/dist/core/src/components/InlineInput/index.d.ts +3 -0
  581. package/dist/core/src/components/InlineInput/index.d.ts.map +1 -0
  582. package/dist/core/src/components/Input/Input.d.ts +4 -0
  583. package/dist/core/src/components/Input/Input.d.ts.map +1 -0
  584. package/dist/core/src/components/Input/Input.types.d.ts +5 -0
  585. package/dist/core/src/components/Input/Input.types.d.ts.map +1 -0
  586. package/dist/core/src/components/Input/index.d.ts +3 -0
  587. package/dist/core/src/components/Input/index.d.ts.map +1 -0
  588. package/dist/core/src/components/InputOtp/InputOtp.d.ts +4 -0
  589. package/dist/core/src/components/InputOtp/InputOtp.d.ts.map +1 -0
  590. package/dist/core/src/components/InputOtp/InputOtp.types.d.ts +79 -0
  591. package/dist/core/src/components/InputOtp/InputOtp.types.d.ts.map +1 -0
  592. package/dist/core/src/components/InputOtp/InputOtp.utils.d.ts +8 -0
  593. package/dist/core/src/components/InputOtp/InputOtp.utils.d.ts.map +1 -0
  594. package/dist/core/src/components/InputOtp/index.d.ts +3 -0
  595. package/dist/core/src/components/InputOtp/index.d.ts.map +1 -0
  596. package/dist/core/src/components/List/List.constants.d.ts +15 -0
  597. package/dist/core/src/components/List/List.constants.d.ts.map +1 -0
  598. package/dist/core/src/components/List/List.context.d.ts +11 -0
  599. package/dist/core/src/components/List/List.context.d.ts.map +1 -0
  600. package/dist/core/src/components/List/List.d.ts +8 -0
  601. package/dist/core/src/components/List/List.d.ts.map +1 -0
  602. package/dist/core/src/components/List/List.types.d.ts +38 -0
  603. package/dist/core/src/components/List/List.types.d.ts.map +1 -0
  604. package/dist/core/src/components/List/List.utils.d.ts +5 -0
  605. package/dist/core/src/components/List/List.utils.d.ts.map +1 -0
  606. package/dist/core/src/components/List/ListGroup/ListGroup.d.ts +4 -0
  607. package/dist/core/src/components/List/ListGroup/ListGroup.d.ts.map +1 -0
  608. package/dist/core/src/components/List/ListGroup/ListGroup.types.d.ts +25 -0
  609. package/dist/core/src/components/List/ListGroup/ListGroup.types.d.ts.map +1 -0
  610. package/dist/core/src/components/List/ListItem/ListItem.d.ts +4 -0
  611. package/dist/core/src/components/List/ListItem/ListItem.d.ts.map +1 -0
  612. package/dist/core/src/components/List/ListItem/ListItem.types.d.ts +58 -0
  613. package/dist/core/src/components/List/ListItem/ListItem.types.d.ts.map +1 -0
  614. package/dist/core/src/components/List/ListItem/ListItem.utils.d.ts +17 -0
  615. package/dist/core/src/components/List/ListItem/ListItem.utils.d.ts.map +1 -0
  616. package/dist/core/src/components/List/ListSkeleton/ListSkeleton.d.ts +4 -0
  617. package/dist/core/src/components/List/ListSkeleton/ListSkeleton.d.ts.map +1 -0
  618. package/dist/core/src/components/List/index.d.ts +7 -0
  619. package/dist/core/src/components/List/index.d.ts.map +1 -0
  620. package/dist/core/src/components/Loader/Loader.d.ts +4 -0
  621. package/dist/core/src/components/Loader/Loader.d.ts.map +1 -0
  622. package/dist/core/src/components/Loader/Loader.types.d.ts +14 -0
  623. package/dist/core/src/components/Loader/Loader.types.d.ts.map +1 -0
  624. package/dist/core/src/components/Loader/Loader.utils.d.ts +5 -0
  625. package/dist/core/src/components/Loader/Loader.utils.d.ts.map +1 -0
  626. package/dist/core/src/components/Loader/index.d.ts +3 -0
  627. package/dist/core/src/components/Loader/index.d.ts.map +1 -0
  628. package/dist/core/src/components/Menu/Menu.d.ts +8 -0
  629. package/dist/core/src/components/Menu/Menu.d.ts.map +1 -0
  630. package/dist/core/src/components/Menu/Menu.types.d.ts +30 -0
  631. package/dist/core/src/components/Menu/Menu.types.d.ts.map +1 -0
  632. package/dist/core/src/components/Menu/MenuItem/MenuItem.d.ts +4 -0
  633. package/dist/core/src/components/Menu/MenuItem/MenuItem.d.ts.map +1 -0
  634. package/dist/core/src/components/Menu/MenuItem/MenuItem.types.d.ts +29 -0
  635. package/dist/core/src/components/Menu/MenuItem/MenuItem.types.d.ts.map +1 -0
  636. package/dist/core/src/components/Menu/MenuSub/MenuSub.d.ts +4 -0
  637. package/dist/core/src/components/Menu/MenuSub/MenuSub.d.ts.map +1 -0
  638. package/dist/core/src/components/Menu/MenuSub/MenuSub.types.d.ts +12 -0
  639. package/dist/core/src/components/Menu/MenuSub/MenuSub.types.d.ts.map +1 -0
  640. package/dist/core/src/components/Menu/index.d.ts +3 -0
  641. package/dist/core/src/components/Menu/index.d.ts.map +1 -0
  642. package/dist/core/src/components/Modal/Modal.d.ts +9 -0
  643. package/dist/core/src/components/Modal/Modal.d.ts.map +1 -0
  644. package/dist/core/src/components/Modal/Modal.types.d.ts +22 -0
  645. package/dist/core/src/components/Modal/Modal.types.d.ts.map +1 -0
  646. package/dist/core/src/components/Modal/Modal.utils.d.ts +5 -0
  647. package/dist/core/src/components/Modal/Modal.utils.d.ts.map +1 -0
  648. package/dist/core/src/components/Modal/ModalActions/ModalActions.d.ts +4 -0
  649. package/dist/core/src/components/Modal/ModalActions/ModalActions.d.ts.map +1 -0
  650. package/dist/core/src/components/Modal/ModalContent/ModalContent.d.ts +4 -0
  651. package/dist/core/src/components/Modal/ModalContent/ModalContent.d.ts.map +1 -0
  652. package/dist/core/src/components/Modal/ModalHeader/ModalHeader.d.ts +18 -0
  653. package/dist/core/src/components/Modal/ModalHeader/ModalHeader.d.ts.map +1 -0
  654. package/dist/core/src/components/Modal/index.d.ts +3 -0
  655. package/dist/core/src/components/Modal/index.d.ts.map +1 -0
  656. package/dist/core/src/components/Navbar/Navbar.d.ts +4 -0
  657. package/dist/core/src/components/Navbar/Navbar.d.ts.map +1 -0
  658. package/dist/core/src/components/Navbar/Navbar.types.d.ts +14 -0
  659. package/dist/core/src/components/Navbar/Navbar.types.d.ts.map +1 -0
  660. package/dist/core/src/components/Navbar/index.d.ts +3 -0
  661. package/dist/core/src/components/Navbar/index.d.ts.map +1 -0
  662. package/dist/core/src/components/Pagination/Pagination.constants.d.ts +22 -0
  663. package/dist/core/src/components/Pagination/Pagination.constants.d.ts.map +1 -0
  664. package/dist/core/src/components/Pagination/Pagination.d.ts +4 -0
  665. package/dist/core/src/components/Pagination/Pagination.d.ts.map +1 -0
  666. package/dist/core/src/components/Pagination/Pagination.hook.d.ts +8 -0
  667. package/dist/core/src/components/Pagination/Pagination.hook.d.ts.map +1 -0
  668. package/dist/core/src/components/Pagination/Pagination.types.d.ts +81 -0
  669. package/dist/core/src/components/Pagination/Pagination.types.d.ts.map +1 -0
  670. package/dist/core/src/components/Pagination/Pagination.utils.d.ts +6 -0
  671. package/dist/core/src/components/Pagination/Pagination.utils.d.ts.map +1 -0
  672. package/dist/core/src/components/Pagination/index.d.ts +3 -0
  673. package/dist/core/src/components/Pagination/index.d.ts.map +1 -0
  674. package/dist/core/src/components/Paper/Paper.d.ts +4 -0
  675. package/dist/core/src/components/Paper/Paper.d.ts.map +1 -0
  676. package/dist/core/src/components/Paper/Paper.types.d.ts +29 -0
  677. package/dist/core/src/components/Paper/Paper.types.d.ts.map +1 -0
  678. package/dist/core/src/components/Paper/Paper.utils.d.ts +5 -0
  679. package/dist/core/src/components/Paper/Paper.utils.d.ts.map +1 -0
  680. package/dist/core/src/components/Paper/index.d.ts +3 -0
  681. package/dist/core/src/components/Paper/index.d.ts.map +1 -0
  682. package/dist/core/src/components/Popover/Popover.context.d.ts +33 -0
  683. package/dist/core/src/components/Popover/Popover.context.d.ts.map +1 -0
  684. package/dist/core/src/components/Popover/Popover.d.ts +8 -0
  685. package/dist/core/src/components/Popover/Popover.d.ts.map +1 -0
  686. package/dist/core/src/components/Popover/Popover.types.d.ts +64 -0
  687. package/dist/core/src/components/Popover/Popover.types.d.ts.map +1 -0
  688. package/dist/core/src/components/Popover/PopoverDropdown/PopoverArrow.d.ts +4 -0
  689. package/dist/core/src/components/Popover/PopoverDropdown/PopoverArrow.d.ts.map +1 -0
  690. package/dist/core/src/components/Popover/PopoverDropdown/PopoverDropdown.d.ts +4 -0
  691. package/dist/core/src/components/Popover/PopoverDropdown/PopoverDropdown.d.ts.map +1 -0
  692. package/dist/core/src/components/Popover/PopoverDropdown/PopoverDropdown.types.d.ts +17 -0
  693. package/dist/core/src/components/Popover/PopoverDropdown/PopoverDropdown.types.d.ts.map +1 -0
  694. package/dist/core/src/components/Popover/PopoverTrigger/PopoverTrigger.d.ts +4 -0
  695. package/dist/core/src/components/Popover/PopoverTrigger/PopoverTrigger.d.ts.map +1 -0
  696. package/dist/core/src/components/Popover/PopoverTrigger/PopoverTrigger.types.d.ts +17 -0
  697. package/dist/core/src/components/Popover/PopoverTrigger/PopoverTrigger.types.d.ts.map +1 -0
  698. package/dist/core/src/components/Popover/index.d.ts +4 -0
  699. package/dist/core/src/components/Popover/index.d.ts.map +1 -0
  700. package/dist/core/src/components/Popover/useFloatingPosition/getScrollableAncestors.d.ts +2 -0
  701. package/dist/core/src/components/Popover/useFloatingPosition/getScrollableAncestors.d.ts.map +1 -0
  702. package/dist/core/src/components/Popover/useFloatingPosition/useFloating.types.d.ts +13 -0
  703. package/dist/core/src/components/Popover/useFloatingPosition/useFloating.types.d.ts.map +1 -0
  704. package/dist/core/src/components/Popover/useFloatingPosition/useFloating.util.d.ts +17 -0
  705. package/dist/core/src/components/Popover/useFloatingPosition/useFloating.util.d.ts.map +1 -0
  706. package/dist/core/src/components/Popover/useFloatingPosition/useFloatingPosition.d.ts +9 -0
  707. package/dist/core/src/components/Popover/useFloatingPosition/useFloatingPosition.d.ts.map +1 -0
  708. package/dist/core/src/components/Portal/Portal.d.ts +5 -0
  709. package/dist/core/src/components/Portal/Portal.d.ts.map +1 -0
  710. package/dist/core/src/components/Portal/Portal.types.d.ts +30 -0
  711. package/dist/core/src/components/Portal/Portal.types.d.ts.map +1 -0
  712. package/dist/core/src/components/Portal/index.d.ts +3 -0
  713. package/dist/core/src/components/Portal/index.d.ts.map +1 -0
  714. package/dist/core/src/components/ProgressBar/ProgressBar.d.ts +4 -0
  715. package/dist/core/src/components/ProgressBar/ProgressBar.d.ts.map +1 -0
  716. package/dist/core/src/components/ProgressBar/ProgressBar.types.d.ts +28 -0
  717. package/dist/core/src/components/ProgressBar/ProgressBar.types.d.ts.map +1 -0
  718. package/dist/core/src/components/ProgressBar/ProgressBar.utils.d.ts +5 -0
  719. package/dist/core/src/components/ProgressBar/ProgressBar.utils.d.ts.map +1 -0
  720. package/dist/core/src/components/ProgressBar/index.d.ts +3 -0
  721. package/dist/core/src/components/ProgressBar/index.d.ts.map +1 -0
  722. package/dist/core/src/components/Radio/Radio.d.ts +7 -0
  723. package/dist/core/src/components/Radio/Radio.d.ts.map +1 -0
  724. package/dist/core/src/components/Radio/Radio.types.d.ts +16 -0
  725. package/dist/core/src/components/Radio/Radio.types.d.ts.map +1 -0
  726. package/dist/core/src/components/Radio/Radio.utils.d.ts +5 -0
  727. package/dist/core/src/components/Radio/Radio.utils.d.ts.map +1 -0
  728. package/dist/core/src/components/Radio/RadioGroup/RadioGroup.context.d.ts +15 -0
  729. package/dist/core/src/components/Radio/RadioGroup/RadioGroup.context.d.ts.map +1 -0
  730. package/dist/core/src/components/Radio/RadioGroup/RadioGroup.d.ts +4 -0
  731. package/dist/core/src/components/Radio/RadioGroup/RadioGroup.d.ts.map +1 -0
  732. package/dist/core/src/components/Radio/RadioGroup/RadioGroup.types.d.ts +43 -0
  733. package/dist/core/src/components/Radio/RadioGroup/RadioGroup.types.d.ts.map +1 -0
  734. package/dist/core/src/components/Radio/RadioGroup/index.d.ts +3 -0
  735. package/dist/core/src/components/Radio/RadioGroup/index.d.ts.map +1 -0
  736. package/dist/core/src/components/Radio/index.d.ts +5 -0
  737. package/dist/core/src/components/Radio/index.d.ts.map +1 -0
  738. package/dist/core/src/components/Rating/Rating.d.ts +4 -0
  739. package/dist/core/src/components/Rating/Rating.d.ts.map +1 -0
  740. package/dist/core/src/components/Rating/Rating.types.d.ts +51 -0
  741. package/dist/core/src/components/Rating/Rating.types.d.ts.map +1 -0
  742. package/dist/core/src/components/Rating/Rating.utils.d.ts +5 -0
  743. package/dist/core/src/components/Rating/Rating.utils.d.ts.map +1 -0
  744. package/dist/core/src/components/Rating/RatingItem/RatingItem.d.ts +12 -0
  745. package/dist/core/src/components/Rating/RatingItem/RatingItem.d.ts.map +1 -0
  746. package/dist/core/src/components/Rating/RatingItem/RatingItem.utils.d.ts +5 -0
  747. package/dist/core/src/components/Rating/RatingItem/RatingItem.utils.d.ts.map +1 -0
  748. package/dist/core/src/components/Rating/index.d.ts +3 -0
  749. package/dist/core/src/components/Rating/index.d.ts.map +1 -0
  750. package/dist/core/src/components/RemoveScroll/RemoveScroll.d.ts +9 -0
  751. package/dist/core/src/components/RemoveScroll/RemoveScroll.d.ts.map +1 -0
  752. package/dist/core/src/components/SegmentedControl/SegmentedControl.d.ts +4 -0
  753. package/dist/core/src/components/SegmentedControl/SegmentedControl.d.ts.map +1 -0
  754. package/dist/core/src/components/SegmentedControl/SegmentedControl.types.d.ts +49 -0
  755. package/dist/core/src/components/SegmentedControl/SegmentedControl.types.d.ts.map +1 -0
  756. package/dist/core/src/components/SegmentedControl/SegmentedControl.utils.d.ts +5 -0
  757. package/dist/core/src/components/SegmentedControl/SegmentedControl.utils.d.ts.map +1 -0
  758. package/dist/core/src/components/SegmentedControl/index.d.ts +3 -0
  759. package/dist/core/src/components/SegmentedControl/index.d.ts.map +1 -0
  760. package/dist/core/src/components/Select/Select.d.ts +4 -0
  761. package/dist/core/src/components/Select/Select.d.ts.map +1 -0
  762. package/dist/core/src/components/Select/Select.types.d.ts +63 -0
  763. package/dist/core/src/components/Select/Select.types.d.ts.map +1 -0
  764. package/dist/core/src/components/Select/Select.utils.d.ts +10 -0
  765. package/dist/core/src/components/Select/Select.utils.d.ts.map +1 -0
  766. package/dist/core/src/components/Select/SelectMultiple/SelectMultiple.d.ts +4 -0
  767. package/dist/core/src/components/Select/SelectMultiple/SelectMultiple.d.ts.map +1 -0
  768. package/dist/core/src/components/Select/SelectMultiple/SelectMultiple.types.d.ts +34 -0
  769. package/dist/core/src/components/Select/SelectMultiple/SelectMultiple.types.d.ts.map +1 -0
  770. package/dist/core/src/components/Select/index.d.ts +5 -0
  771. package/dist/core/src/components/Select/index.d.ts.map +1 -0
  772. package/dist/core/src/components/SelectorInput/SelectorInput.d.ts +4 -0
  773. package/dist/core/src/components/SelectorInput/SelectorInput.d.ts.map +1 -0
  774. package/dist/core/src/components/SelectorInput/SelectorInput.types.d.ts +53 -0
  775. package/dist/core/src/components/SelectorInput/SelectorInput.types.d.ts.map +1 -0
  776. package/dist/core/src/components/SelectorInput/SelectorInput.utils.d.ts +12 -0
  777. package/dist/core/src/components/SelectorInput/SelectorInput.utils.d.ts.map +1 -0
  778. package/dist/core/src/components/SelectorInput/index.d.ts +3 -0
  779. package/dist/core/src/components/SelectorInput/index.d.ts.map +1 -0
  780. package/dist/core/src/components/Sidebar/Sidebar.context.d.ts +18 -0
  781. package/dist/core/src/components/Sidebar/Sidebar.context.d.ts.map +1 -0
  782. package/dist/core/src/components/Sidebar/Sidebar.d.ts +14 -0
  783. package/dist/core/src/components/Sidebar/Sidebar.d.ts.map +1 -0
  784. package/dist/core/src/components/Sidebar/Sidebar.types.d.ts +47 -0
  785. package/dist/core/src/components/Sidebar/Sidebar.types.d.ts.map +1 -0
  786. package/dist/core/src/components/Sidebar/Sidebar.utils.d.ts +6 -0
  787. package/dist/core/src/components/Sidebar/Sidebar.utils.d.ts.map +1 -0
  788. package/dist/core/src/components/Sidebar/SidebarCollapse/SidebarCollapse.d.ts +4 -0
  789. package/dist/core/src/components/Sidebar/SidebarCollapse/SidebarCollapse.d.ts.map +1 -0
  790. package/dist/core/src/components/Sidebar/SidebarCollapse/SidebarCollapse.types.d.ts +29 -0
  791. package/dist/core/src/components/Sidebar/SidebarCollapse/SidebarCollapse.types.d.ts.map +1 -0
  792. package/dist/core/src/components/Sidebar/SidebarElement/SidebarElement.d.ts +4 -0
  793. package/dist/core/src/components/Sidebar/SidebarElement/SidebarElement.d.ts.map +1 -0
  794. package/dist/core/src/components/Sidebar/SidebarElement/SidebarElement.types.d.ts +21 -0
  795. package/dist/core/src/components/Sidebar/SidebarElement/SidebarElement.types.d.ts.map +1 -0
  796. package/dist/core/src/components/Sidebar/SidebarFooter/SidebarFooter.d.ts +4 -0
  797. package/dist/core/src/components/Sidebar/SidebarFooter/SidebarFooter.d.ts.map +1 -0
  798. package/dist/core/src/components/Sidebar/SidebarFooter/SidebarFooter.types.d.ts +21 -0
  799. package/dist/core/src/components/Sidebar/SidebarFooter/SidebarFooter.types.d.ts.map +1 -0
  800. package/dist/core/src/components/Sidebar/SidebarGroup/SidebarGroup.d.ts +4 -0
  801. package/dist/core/src/components/Sidebar/SidebarGroup/SidebarGroup.d.ts.map +1 -0
  802. package/dist/core/src/components/Sidebar/SidebarGroup/SidebarGroup.types.d.ts +21 -0
  803. package/dist/core/src/components/Sidebar/SidebarGroup/SidebarGroup.types.d.ts.map +1 -0
  804. package/dist/core/src/components/Sidebar/SidebarHeader/SidebarHeader.d.ts +4 -0
  805. package/dist/core/src/components/Sidebar/SidebarHeader/SidebarHeader.d.ts.map +1 -0
  806. package/dist/core/src/components/Sidebar/SidebarHeader/SidebarHeader.types.d.ts +26 -0
  807. package/dist/core/src/components/Sidebar/SidebarHeader/SidebarHeader.types.d.ts.map +1 -0
  808. package/dist/core/src/components/Sidebar/SidebarItem/SidebarItem.d.ts +4 -0
  809. package/dist/core/src/components/Sidebar/SidebarItem/SidebarItem.d.ts.map +1 -0
  810. package/dist/core/src/components/Sidebar/SidebarItem/SidebarItem.types.d.ts +50 -0
  811. package/dist/core/src/components/Sidebar/SidebarItem/SidebarItem.types.d.ts.map +1 -0
  812. package/dist/core/src/components/Sidebar/SidebarItems/SidebarItems.d.ts +4 -0
  813. package/dist/core/src/components/Sidebar/SidebarItems/SidebarItems.d.ts.map +1 -0
  814. package/dist/core/src/components/Sidebar/SidebarProfile/SidebarProfile.d.ts +4 -0
  815. package/dist/core/src/components/Sidebar/SidebarProfile/SidebarProfile.d.ts.map +1 -0
  816. package/dist/core/src/components/Sidebar/SidebarProfile/SidebarProfile.types.d.ts +29 -0
  817. package/dist/core/src/components/Sidebar/SidebarProfile/SidebarProfile.types.d.ts.map +1 -0
  818. package/dist/core/src/components/Sidebar/index.d.ts +3 -0
  819. package/dist/core/src/components/Sidebar/index.d.ts.map +1 -0
  820. package/dist/core/src/components/Skeleton/Skeleton.d.ts +4 -0
  821. package/dist/core/src/components/Skeleton/Skeleton.d.ts.map +1 -0
  822. package/dist/core/src/components/Skeleton/Skeleton.types.d.ts +21 -0
  823. package/dist/core/src/components/Skeleton/Skeleton.types.d.ts.map +1 -0
  824. package/dist/core/src/components/Skeleton/Skeleton.utils.d.ts +4 -0
  825. package/dist/core/src/components/Skeleton/Skeleton.utils.d.ts.map +1 -0
  826. package/dist/core/src/components/Skeleton/index.d.ts +3 -0
  827. package/dist/core/src/components/Skeleton/index.d.ts.map +1 -0
  828. package/dist/core/src/components/Slider/Marks/Marks.d.ts +4 -0
  829. package/dist/core/src/components/Slider/Marks/Marks.d.ts.map +1 -0
  830. package/dist/core/src/components/Slider/Marks/Marks.types.d.ts +29 -0
  831. package/dist/core/src/components/Slider/Marks/Marks.types.d.ts.map +1 -0
  832. package/dist/core/src/components/Slider/RangeSlider/RangeSlider.d.ts +4 -0
  833. package/dist/core/src/components/Slider/RangeSlider/RangeSlider.d.ts.map +1 -0
  834. package/dist/core/src/components/Slider/RangeSlider/RangeSlider.types.d.ts +19 -0
  835. package/dist/core/src/components/Slider/RangeSlider/RangeSlider.types.d.ts.map +1 -0
  836. package/dist/core/src/components/Slider/RangeSlider/RangeSlider.utils.d.ts +5 -0
  837. package/dist/core/src/components/Slider/RangeSlider/RangeSlider.utils.d.ts.map +1 -0
  838. package/dist/core/src/components/Slider/Slider/Slider.d.ts +4 -0
  839. package/dist/core/src/components/Slider/Slider/Slider.d.ts.map +1 -0
  840. package/dist/core/src/components/Slider/Slider/Slider.types.d.ts +13 -0
  841. package/dist/core/src/components/Slider/Slider/Slider.types.d.ts.map +1 -0
  842. package/dist/core/src/components/Slider/Slider/Slider.utils.d.ts +5 -0
  843. package/dist/core/src/components/Slider/Slider/Slider.utils.d.ts.map +1 -0
  844. package/dist/core/src/components/Slider/Slider.types.d.ts +15 -0
  845. package/dist/core/src/components/Slider/Slider.types.d.ts.map +1 -0
  846. package/dist/core/src/components/Slider/Slider.utils.d.ts +6 -0
  847. package/dist/core/src/components/Slider/Slider.utils.d.ts.map +1 -0
  848. package/dist/core/src/components/Slider/SliderBase/SliderBase.d.ts +4 -0
  849. package/dist/core/src/components/Slider/SliderBase/SliderBase.d.ts.map +1 -0
  850. package/dist/core/src/components/Slider/SliderBase/SliderBase.types.d.ts +47 -0
  851. package/dist/core/src/components/Slider/SliderBase/SliderBase.types.d.ts.map +1 -0
  852. package/dist/core/src/components/Slider/Thumb/Thumb.d.ts +4 -0
  853. package/dist/core/src/components/Slider/Thumb/Thumb.d.ts.map +1 -0
  854. package/dist/core/src/components/Slider/Thumb/Thumb.types.d.ts +37 -0
  855. package/dist/core/src/components/Slider/Thumb/Thumb.types.d.ts.map +1 -0
  856. package/dist/core/src/components/Slider/Track/Track.d.ts +4 -0
  857. package/dist/core/src/components/Slider/Track/Track.d.ts.map +1 -0
  858. package/dist/core/src/components/Slider/Track/Track.types.d.ts +13 -0
  859. package/dist/core/src/components/Slider/Track/Track.types.d.ts.map +1 -0
  860. package/dist/core/src/components/Slider/index.d.ts +5 -0
  861. package/dist/core/src/components/Slider/index.d.ts.map +1 -0
  862. package/dist/core/src/components/Snackbar/Snackbar.d.ts +4 -0
  863. package/dist/core/src/components/Snackbar/Snackbar.d.ts.map +1 -0
  864. package/dist/core/src/components/Snackbar/Snackbar.types.d.ts +93 -0
  865. package/dist/core/src/components/Snackbar/Snackbar.types.d.ts.map +1 -0
  866. package/dist/core/src/components/Snackbar/Snackbar.utils.d.ts +40 -0
  867. package/dist/core/src/components/Snackbar/Snackbar.utils.d.ts.map +1 -0
  868. package/dist/core/src/components/Snackbar/SnackbarCard/SnackbarCard.d.ts +4 -0
  869. package/dist/core/src/components/Snackbar/SnackbarCard/SnackbarCard.d.ts.map +1 -0
  870. package/dist/core/src/components/Snackbar/SnackbarCard/SnackbarCard.types.d.ts +7 -0
  871. package/dist/core/src/components/Snackbar/SnackbarCard/SnackbarCard.types.d.ts.map +1 -0
  872. package/dist/core/src/components/Snackbar/SnackbarSlot/SnackbarSlot.d.ts +4 -0
  873. package/dist/core/src/components/Snackbar/SnackbarSlot/SnackbarSlot.d.ts.map +1 -0
  874. package/dist/core/src/components/Snackbar/SnackbarSlot/SnackbarSlot.types.d.ts +7 -0
  875. package/dist/core/src/components/Snackbar/SnackbarSlot/SnackbarSlot.types.d.ts.map +1 -0
  876. package/dist/core/src/components/Snackbar/SnackbarSlot/SnackbarSlot.utils.d.ts +2 -0
  877. package/dist/core/src/components/Snackbar/SnackbarSlot/SnackbarSlot.utils.d.ts.map +1 -0
  878. package/dist/core/src/components/Snackbar/SnackbarTimer/SnackbarTimer.d.ts +4 -0
  879. package/dist/core/src/components/Snackbar/SnackbarTimer/SnackbarTimer.d.ts.map +1 -0
  880. package/dist/core/src/components/Snackbar/index.d.ts +4 -0
  881. package/dist/core/src/components/Snackbar/index.d.ts.map +1 -0
  882. package/dist/core/src/components/Switch/Switch.d.ts +4 -0
  883. package/dist/core/src/components/Switch/Switch.d.ts.map +1 -0
  884. package/dist/core/src/components/Switch/Switch.types.d.ts +15 -0
  885. package/dist/core/src/components/Switch/Switch.types.d.ts.map +1 -0
  886. package/dist/core/src/components/Switch/Switch.utils.d.ts +5 -0
  887. package/dist/core/src/components/Switch/Switch.utils.d.ts.map +1 -0
  888. package/dist/core/src/components/Switch/index.d.ts +3 -0
  889. package/dist/core/src/components/Switch/index.d.ts.map +1 -0
  890. package/dist/core/src/components/Tab/Tab.d.ts +7 -0
  891. package/dist/core/src/components/Tab/Tab.d.ts.map +1 -0
  892. package/dist/core/src/components/Tab/Tab.types.d.ts +39 -0
  893. package/dist/core/src/components/Tab/Tab.types.d.ts.map +1 -0
  894. package/dist/core/src/components/Tab/Tab.utils.d.ts +5 -0
  895. package/dist/core/src/components/Tab/Tab.utils.d.ts.map +1 -0
  896. package/dist/core/src/components/Tab/TabGroup/TabGroup.context.d.ts +16 -0
  897. package/dist/core/src/components/Tab/TabGroup/TabGroup.context.d.ts.map +1 -0
  898. package/dist/core/src/components/Tab/TabGroup/TabGroup.d.ts +4 -0
  899. package/dist/core/src/components/Tab/TabGroup/TabGroup.d.ts.map +1 -0
  900. package/dist/core/src/components/Tab/TabGroup/TabGroup.types.d.ts +54 -0
  901. package/dist/core/src/components/Tab/TabGroup/TabGroup.types.d.ts.map +1 -0
  902. package/dist/core/src/components/Tab/index.d.ts +4 -0
  903. package/dist/core/src/components/Tab/index.d.ts.map +1 -0
  904. package/dist/core/src/components/Table/Table.d.ts +14 -0
  905. package/dist/core/src/components/Table/Table.d.ts.map +1 -0
  906. package/dist/core/src/components/Table/Table.types.d.ts +75 -0
  907. package/dist/core/src/components/Table/Table.types.d.ts.map +1 -0
  908. package/dist/core/src/components/Table/Table.utils.d.ts +5 -0
  909. package/dist/core/src/components/Table/Table.utils.d.ts.map +1 -0
  910. package/dist/core/src/components/Table/index.d.ts +3 -0
  911. package/dist/core/src/components/Table/index.d.ts.map +1 -0
  912. package/dist/core/src/components/Tabs/Tabs.context.d.ts +9 -0
  913. package/dist/core/src/components/Tabs/Tabs.context.d.ts.map +1 -0
  914. package/dist/core/src/components/Tabs/Tabs.d.ts +9 -0
  915. package/dist/core/src/components/Tabs/Tabs.d.ts.map +1 -0
  916. package/dist/core/src/components/Tabs/Tabs.types.d.ts +25 -0
  917. package/dist/core/src/components/Tabs/Tabs.types.d.ts.map +1 -0
  918. package/dist/core/src/components/Tabs/TabsMenu/TabsMenu.d.ts +4 -0
  919. package/dist/core/src/components/Tabs/TabsMenu/TabsMenu.d.ts.map +1 -0
  920. package/dist/core/src/components/Tabs/TabsMenu/TabsMenu.types.d.ts +33 -0
  921. package/dist/core/src/components/Tabs/TabsMenu/TabsMenu.types.d.ts.map +1 -0
  922. package/dist/core/src/components/Tabs/TabsMenu/TabsMenu.utils.d.ts +5 -0
  923. package/dist/core/src/components/Tabs/TabsMenu/TabsMenu.utils.d.ts.map +1 -0
  924. package/dist/core/src/components/Tabs/TabsPanel/TabsPanel.d.ts +4 -0
  925. package/dist/core/src/components/Tabs/TabsPanel/TabsPanel.d.ts.map +1 -0
  926. package/dist/core/src/components/Tabs/TabsPanel/TabsPanel.types.d.ts +29 -0
  927. package/dist/core/src/components/Tabs/TabsPanel/TabsPanel.types.d.ts.map +1 -0
  928. package/dist/core/src/components/Tabs/TabsTab/TabsTab.d.ts +4 -0
  929. package/dist/core/src/components/Tabs/TabsTab/TabsTab.d.ts.map +1 -0
  930. package/dist/core/src/components/Tabs/TabsTab/TabsTab.types.d.ts +6 -0
  931. package/dist/core/src/components/Tabs/TabsTab/TabsTab.types.d.ts.map +1 -0
  932. package/dist/core/src/components/Tabs/index.d.ts +6 -0
  933. package/dist/core/src/components/Tabs/index.d.ts.map +1 -0
  934. package/dist/core/src/components/Textarea/Textarea.constants.d.ts +12 -0
  935. package/dist/core/src/components/Textarea/Textarea.constants.d.ts.map +1 -0
  936. package/dist/core/src/components/Textarea/Textarea.d.ts +4 -0
  937. package/dist/core/src/components/Textarea/Textarea.d.ts.map +1 -0
  938. package/dist/core/src/components/Textarea/Textarea.types.d.ts +38 -0
  939. package/dist/core/src/components/Textarea/Textarea.types.d.ts.map +1 -0
  940. package/dist/core/src/components/Textarea/Textarea.utils.d.ts +5 -0
  941. package/dist/core/src/components/Textarea/Textarea.utils.d.ts.map +1 -0
  942. package/dist/core/src/components/Textarea/index.d.ts +3 -0
  943. package/dist/core/src/components/Textarea/index.d.ts.map +1 -0
  944. package/dist/core/src/components/Timeline/Timeline.context.d.ts +14 -0
  945. package/dist/core/src/components/Timeline/Timeline.context.d.ts.map +1 -0
  946. package/dist/core/src/components/Timeline/Timeline.d.ts +9 -0
  947. package/dist/core/src/components/Timeline/Timeline.d.ts.map +1 -0
  948. package/dist/core/src/components/Timeline/Timeline.types.d.ts +39 -0
  949. package/dist/core/src/components/Timeline/Timeline.types.d.ts.map +1 -0
  950. package/dist/core/src/components/Timeline/Timeline.utils.d.ts +3 -0
  951. package/dist/core/src/components/Timeline/Timeline.utils.d.ts.map +1 -0
  952. package/dist/core/src/components/Timeline/TimelineBullet/TimelineBullet.d.ts +4 -0
  953. package/dist/core/src/components/Timeline/TimelineBullet/TimelineBullet.d.ts.map +1 -0
  954. package/dist/core/src/components/Timeline/TimelineBullet/TimelineBullet.types.d.ts +8 -0
  955. package/dist/core/src/components/Timeline/TimelineBullet/TimelineBullet.types.d.ts.map +1 -0
  956. package/dist/core/src/components/Timeline/TimelineContent/TimelineContent.d.ts +4 -0
  957. package/dist/core/src/components/Timeline/TimelineContent/TimelineContent.d.ts.map +1 -0
  958. package/dist/core/src/components/Timeline/TimelineContent/TimelineContent.types.d.ts +23 -0
  959. package/dist/core/src/components/Timeline/TimelineContent/TimelineContent.types.d.ts.map +1 -0
  960. package/dist/core/src/components/Timeline/TimelineItem/TimelineItem.d.ts +4 -0
  961. package/dist/core/src/components/Timeline/TimelineItem/TimelineItem.d.ts.map +1 -0
  962. package/dist/core/src/components/Timeline/TimelineItem/TimelineItem.types.d.ts +28 -0
  963. package/dist/core/src/components/Timeline/TimelineItem/TimelineItem.types.d.ts.map +1 -0
  964. package/dist/core/src/components/Timeline/TimelineItem/TimelineItem.utils.d.ts +6 -0
  965. package/dist/core/src/components/Timeline/TimelineItem/TimelineItem.utils.d.ts.map +1 -0
  966. package/dist/core/src/components/Timeline/TimelineOppositeContent/TimelineOppositeContent.d.ts +4 -0
  967. package/dist/core/src/components/Timeline/TimelineOppositeContent/TimelineOppositeContent.d.ts.map +1 -0
  968. package/dist/core/src/components/Timeline/TimelineOppositeContent/TimelineOppositeContent.types.d.ts +21 -0
  969. package/dist/core/src/components/Timeline/TimelineOppositeContent/TimelineOppositeContent.types.d.ts.map +1 -0
  970. package/dist/core/src/components/Timeline/index.d.ts +6 -0
  971. package/dist/core/src/components/Timeline/index.d.ts.map +1 -0
  972. package/dist/core/src/components/Tooltip/Tooltip.d.ts +4 -0
  973. package/dist/core/src/components/Tooltip/Tooltip.d.ts.map +1 -0
  974. package/dist/core/src/components/Tooltip/Tooltip.types.d.ts +14 -0
  975. package/dist/core/src/components/Tooltip/Tooltip.types.d.ts.map +1 -0
  976. package/dist/core/src/components/Tooltip/index.d.ts +3 -0
  977. package/dist/core/src/components/Tooltip/index.d.ts.map +1 -0
  978. package/dist/core/src/components/Transition/Transition.constants.d.ts +2 -0
  979. package/dist/core/src/components/Transition/Transition.constants.d.ts.map +1 -0
  980. package/dist/core/src/components/Transition/Transition.d.ts +4 -0
  981. package/dist/core/src/components/Transition/Transition.d.ts.map +1 -0
  982. package/dist/core/src/components/Transition/Transition.hook.d.ts +8 -0
  983. package/dist/core/src/components/Transition/Transition.hook.d.ts.map +1 -0
  984. package/dist/core/src/components/Transition/Transition.types.d.ts +68 -0
  985. package/dist/core/src/components/Transition/Transition.types.d.ts.map +1 -0
  986. package/dist/core/src/components/Transition/Transition.utils.d.ts +20 -0
  987. package/dist/core/src/components/Transition/Transition.utils.d.ts.map +1 -0
  988. package/dist/core/src/components/Transition/index.d.ts +2 -0
  989. package/dist/core/src/components/Transition/index.d.ts.map +1 -0
  990. package/dist/core/src/components/Typography/Typography.d.ts +5 -0
  991. package/dist/core/src/components/Typography/Typography.d.ts.map +1 -0
  992. package/dist/core/src/components/Typography/Typography.types.d.ts +14 -0
  993. package/dist/core/src/components/Typography/Typography.types.d.ts.map +1 -0
  994. package/dist/core/src/components/Typography/index.d.ts +3 -0
  995. package/dist/core/src/components/Typography/index.d.ts.map +1 -0
  996. package/dist/core/src/components/UnstyledButton/UnstyledButton.d.ts +4 -0
  997. package/dist/core/src/components/UnstyledButton/UnstyledButton.d.ts.map +1 -0
  998. package/dist/core/src/components/UnstyledButton/UnstyledButton.types.d.ts +6 -0
  999. package/dist/core/src/components/UnstyledButton/UnstyledButton.types.d.ts.map +1 -0
  1000. package/dist/core/src/components/UnstyledButton/index.d.ts +3 -0
  1001. package/dist/core/src/components/UnstyledButton/index.d.ts.map +1 -0
  1002. package/dist/core/src/components/index.d.ts +50 -0
  1003. package/dist/core/src/components/index.d.ts.map +1 -0
  1004. package/dist/core/src/hooks/index.d.ts +3 -0
  1005. package/dist/core/src/hooks/index.d.ts.map +1 -0
  1006. package/dist/core/src/hooks/useComponentId/useComponentId.d.ts +2 -0
  1007. package/dist/core/src/hooks/useComponentId/useComponentId.d.ts.map +1 -0
  1008. package/dist/core/src/hooks/useFocusTrapAndRestore/useFocusTrapAndRestore.d.ts +8 -0
  1009. package/dist/core/src/hooks/useFocusTrapAndRestore/useFocusTrapAndRestore.d.ts.map +1 -0
  1010. package/dist/core/src/hooks/useMediaQuery/useMediaQuery.d.ts +7 -0
  1011. package/dist/core/src/hooks/useMediaQuery/useMediaQuery.d.ts.map +1 -0
  1012. package/dist/core/src/hooks/useOutsideClick/useOutsideClick.d.ts +4 -0
  1013. package/dist/core/src/hooks/useOutsideClick/useOutsideClick.d.ts.map +1 -0
  1014. package/dist/core/src/index.d.ts +5 -0
  1015. package/dist/core/src/index.d.ts.map +1 -0
  1016. package/dist/core/src/main.d.ts +4 -0
  1017. package/dist/core/src/main.d.ts.map +1 -0
  1018. package/dist/core/src/providers/AlifProvider/AlifProvider.context.d.ts +18 -0
  1019. package/dist/core/src/providers/AlifProvider/AlifProvider.context.d.ts.map +1 -0
  1020. package/dist/core/src/providers/AlifProvider/AlifProvider.d.ts +4 -0
  1021. package/dist/core/src/providers/AlifProvider/AlifProvider.d.ts.map +1 -0
  1022. package/dist/core/src/providers/AlifProvider/AlifProvider.types.d.ts +23 -0
  1023. package/dist/core/src/providers/AlifProvider/AlifProvider.types.d.ts.map +1 -0
  1024. package/dist/core/src/providers/AlifProvider/AlifProvider.utils.d.ts +7 -0
  1025. package/dist/core/src/providers/AlifProvider/AlifProvider.utils.d.ts.map +1 -0
  1026. package/dist/core/src/providers/AlifProvider/index.d.ts +2 -0
  1027. package/dist/core/src/providers/AlifProvider/index.d.ts.map +1 -0
  1028. package/dist/core/src/providers/Localization/index.d.ts +3 -0
  1029. package/dist/core/src/providers/Localization/index.d.ts.map +1 -0
  1030. package/dist/core/src/providers/Localization/localization.d.ts +13 -0
  1031. package/dist/core/src/providers/Localization/localization.d.ts.map +1 -0
  1032. package/dist/core/src/providers/Localization/useTranslation/useTranslation.d.ts +8 -0
  1033. package/dist/core/src/providers/Localization/useTranslation/useTranslation.d.ts.map +1 -0
  1034. package/dist/core/src/providers/hooks/index.d.ts +3 -0
  1035. package/dist/core/src/providers/hooks/index.d.ts.map +1 -0
  1036. package/dist/core/src/providers/hooks/useLocale/useLocale.d.ts +5 -0
  1037. package/dist/core/src/providers/hooks/useLocale/useLocale.d.ts.map +1 -0
  1038. package/dist/core/src/providers/hooks/useMode/useMode.d.ts +5 -0
  1039. package/dist/core/src/providers/hooks/useMode/useMode.d.ts.map +1 -0
  1040. package/dist/core/src/providers/index.d.ts +4 -0
  1041. package/dist/core/src/providers/index.d.ts.map +1 -0
  1042. package/dist/core/src/types/icon.d.ts +9 -0
  1043. package/dist/core/src/types/icon.d.ts.map +1 -0
  1044. package/dist/core/src/types/index.d.ts +2 -0
  1045. package/dist/core/src/types/index.d.ts.map +1 -0
  1046. package/dist/core/src/utils/class-names.d.ts +2 -0
  1047. package/dist/core/src/utils/class-names.d.ts.map +1 -0
  1048. package/dist/core/src/utils/close-escape.d.ts +4 -0
  1049. package/dist/core/src/utils/close-escape.d.ts.map +1 -0
  1050. package/dist/core/src/utils/create-safe-context/create-safe-context.d.ts +7 -0
  1051. package/dist/core/src/utils/create-safe-context/create-safe-context.d.ts.map +1 -0
  1052. package/dist/core/src/utils/create-safe-context/create-safe-context.tests.d.ts +2 -0
  1053. package/dist/core/src/utils/create-safe-context/create-safe-context.tests.d.ts.map +1 -0
  1054. package/dist/core/src/utils/create-safe-context/create-safe-context.utils.d.ts +5 -0
  1055. package/dist/core/src/utils/create-safe-context/create-safe-context.utils.d.ts.map +1 -0
  1056. package/dist/core/src/utils/create-safe-context/index.d.ts +2 -0
  1057. package/dist/core/src/utils/create-safe-context/index.d.ts.map +1 -0
  1058. package/dist/core/src/utils/generate-color-from-hex.d.ts +15 -0
  1059. package/dist/core/src/utils/generate-color-from-hex.d.ts.map +1 -0
  1060. package/dist/core/src/utils/get-default-z-index.d.ts +9 -0
  1061. package/dist/core/src/utils/get-default-z-index.d.ts.map +1 -0
  1062. package/dist/core/src/utils/get-size.d.ts +2 -0
  1063. package/dist/core/src/utils/get-size.d.ts.map +1 -0
  1064. package/dist/core/src/utils/index.d.ts +10 -0
  1065. package/dist/core/src/utils/index.d.ts.map +1 -0
  1066. package/dist/core/src/utils/keyboard-activation.d.ts +16 -0
  1067. package/dist/core/src/utils/keyboard-activation.d.ts.map +1 -0
  1068. package/dist/core/src/utils/sync-refs.d.ts +4 -0
  1069. package/dist/core/src/utils/sync-refs.d.ts.map +1 -0
  1070. package/dist/core/src/utils/typography.d.ts +19 -0
  1071. package/dist/core/src/utils/typography.d.ts.map +1 -0
  1072. package/dist/core/src/utils/unit-resolver.d.ts +2 -0
  1073. package/dist/core/src/utils/unit-resolver.d.ts.map +1 -0
  1074. package/dist/core.css +2 -1
  1075. package/dist/hooks/useComponentId/useComponentId.js +8 -0
  1076. package/dist/hooks/useFocusTrapAndRestore/useFocusTrapAndRestore.js +53 -0
  1077. package/dist/hooks/useMediaQuery/useMediaQuery.js +13 -0
  1078. package/dist/hooks/useOutsideClick/useOutsideClick.js +22 -0
  1079. package/dist/main.d.ts +1 -3885
  1080. package/dist/main.js +71 -653
  1081. package/dist/providers/AlifProvider/AlifProvider.context.js +4 -5
  1082. package/dist/providers/AlifProvider/AlifProvider.js +35 -30
  1083. package/dist/providers/AlifProvider/AlifProvider.utils.js +12 -0
  1084. package/dist/providers/Localization/localization.js +44 -48
  1085. package/dist/providers/Localization/useTranslation/useTranslation.js +15 -11
  1086. package/dist/providers/hooks/useLocale/useLocale.js +10 -10
  1087. package/dist/providers/hooks/useMode/useMode.js +10 -7
  1088. package/dist/utils/class-names.js +4 -4
  1089. package/dist/utils/close-escape.js +5 -5
  1090. package/dist/utils/create-safe-context/create-safe-context.js +18 -15
  1091. package/dist/utils/generate-color-from-hex.js +48 -0
  1092. package/dist/utils/get-default-z-index.js +10 -10
  1093. package/dist/utils/get-size.js +5 -23
  1094. package/dist/utils/keyboard-activation.js +6 -0
  1095. package/dist/utils/sync-refs.js +6 -0
  1096. package/dist/utils/typography.js +103 -200
  1097. package/dist/utils/unit-resolver.js +4 -0
  1098. package/package.json +17 -66
  1099. package/dist/assets/fonts/ALS_Hauss_VF_1.1.ttf +0 -0
  1100. package/dist/assets/fonts/als_hauss_bold.woff2 +0 -0
  1101. package/dist/assets/fonts/als_hauss_medium.woff2 +0 -0
  1102. package/dist/assets/fonts/als_hauss_regular.woff2 +0 -0
  1103. package/dist/components/Accordion/Accordion.module.css.js +0 -21
  1104. package/dist/components/Accordion/Accordion.types.js +0 -1
  1105. package/dist/components/Accordion/AccordionDetails/AccordionDetails.js +0 -11
  1106. package/dist/components/Accordion/AccordionSummary/AccordionSummary.js +0 -53
  1107. package/dist/components/ActionButton/ActionButton.js +0 -50
  1108. package/dist/components/ActionButton/ActionButton.module.css.js +0 -9
  1109. package/dist/components/ActionButton/ActionButton.types.js +0 -1
  1110. package/dist/components/ActionButton/ActionButton.utils.js +0 -48
  1111. package/dist/components/Alert/Alert.module.css.js +0 -11
  1112. package/dist/components/Alert/Alert.types.js +0 -1
  1113. package/dist/components/AppLayout/AppLayout.module.css.js +0 -13
  1114. package/dist/components/AppLayout/AppLayout.types.js +0 -1
  1115. package/dist/components/Avatar/Avatar.module.css.js +0 -19
  1116. package/dist/components/Avatar/Avatar.types.js +0 -1
  1117. package/dist/components/Avatar/AvatarGroup/AvatarGroup.module.css.js +0 -7
  1118. package/dist/components/Backdrop/Backdrop.module.css.js +0 -9
  1119. package/dist/components/Backdrop/Backdrop.types.js +0 -1
  1120. package/dist/components/Badge/Badge.module.css.js +0 -9
  1121. package/dist/components/Badge/Badge.types.js +0 -1
  1122. package/dist/components/Breadcrumbs/Breadcrumb/Breadcrumb.module.css.js +0 -9
  1123. package/dist/components/Breadcrumbs/Breadcrumbs.module.css.js +0 -9
  1124. package/dist/components/Breadcrumbs/Breadcrumbs.types.js +0 -1
  1125. package/dist/components/Breadcrumbs/BreadcrumbsMenu/BreadcrumbsMenu.module.css.js +0 -11
  1126. package/dist/components/Button/Button.module.css.js +0 -11
  1127. package/dist/components/Button/Button.types.js +0 -1
  1128. package/dist/components/Checkbox/Checkbox.module.css.js +0 -21
  1129. package/dist/components/Checkbox/Checkbox.types.js +0 -1
  1130. package/dist/components/Collapse/Collapse.types.js +0 -1
  1131. package/dist/components/DatePicker/DatePicker.js +0 -134
  1132. package/dist/components/DatePicker/DatePicker.module.css.js +0 -13
  1133. package/dist/components/DatePicker/DatePicker.types.js +0 -1
  1134. package/dist/components/DatePicker/DatePicker.utils.js +0 -86
  1135. package/dist/components/DatePicker/Picker/Picker.js +0 -944
  1136. package/dist/components/DatePicker/Picker/Picker.module.css.js +0 -55
  1137. package/dist/components/DatePicker/Picker/Picker.types.js +0 -1
  1138. package/dist/components/DatePicker/Picker/Picker.utils.js +0 -62
  1139. package/dist/components/Dates/Dates.module.css.js +0 -73
  1140. package/dist/components/Dates/InputDatePicker/DatePicker/DatePicker.types.js +0 -1
  1141. package/dist/components/Dates/InputDatePicker/InputDatePicker.types.js +0 -1
  1142. package/dist/components/Dates/InputMonthPicker/InputMonthPicker.types.js +0 -1
  1143. package/dist/components/Dates/InputMonthPicker/MonthPicker/MonthPicker.types.js +0 -1
  1144. package/dist/components/Dates/InputMonthYearPicker/InputYearMonthPicker.types.js +0 -1
  1145. package/dist/components/Dates/InputMonthYearPicker/MonthYearPicker/MonthYearPicker.types.js +0 -1
  1146. package/dist/components/Dates/InputTimePicker/InputTimePicker.types.js +0 -1
  1147. package/dist/components/Dates/InputTimePicker/TimePicker/TimePicker.types.js +0 -1
  1148. package/dist/components/Dates/InputYearPicker/InputYearPicker.types.js +0 -1
  1149. package/dist/components/Dates/InputYearPicker/YearPicker/YearPicker.types.js +0 -1
  1150. package/dist/components/Dates/PickerContent/PickerContent.js +0 -64
  1151. package/dist/components/Dates/PickerContent/PickerContent.types.js +0 -1
  1152. package/dist/components/Dates/PickerContent/PickerContent.utils.js +0 -20
  1153. package/dist/components/Dates/PickerHeader/PickerHeader.types.js +0 -1
  1154. package/dist/components/Dates/PickerOptions/PickerOptions.types.js +0 -1
  1155. package/dist/components/Divider/Divider.module.css.js +0 -7
  1156. package/dist/components/Divider/Divider.types.js +0 -1
  1157. package/dist/components/Drawer/Drawer.module.css.js +0 -33
  1158. package/dist/components/Drawer/Drawer.types.js +0 -1
  1159. package/dist/components/Field/Field.types.js +0 -1
  1160. package/dist/components/Field/InputBase/InputBase.module.css.js +0 -11
  1161. package/dist/components/Field/InputBase/InputBase.utils.js +0 -24
  1162. package/dist/components/Field/InputBaseWrapper/InputBaseWrapper.module.css.js +0 -35
  1163. package/dist/components/FileUploader/FileUploader.module.css.js +0 -23
  1164. package/dist/components/FileUploader/FileUploader.types.js +0 -1
  1165. package/dist/components/FileView/FileView.module.css.js +0 -27
  1166. package/dist/components/FileView/FileView.types.js +0 -1
  1167. package/dist/components/FileView/FileView.utils.js +0 -4
  1168. package/dist/components/FunctionButton/FunctionButton.js +0 -28
  1169. package/dist/components/FunctionButton/FunctionButton.module.css.js +0 -7
  1170. package/dist/components/FunctionButton/FunctionButton.types.js +0 -1
  1171. package/dist/components/FunctionButton/FunctionButton.utils.js +0 -36
  1172. package/dist/components/Hinter/Hinter.module.css.js +0 -15
  1173. package/dist/components/Hinter/Hinter.types.js +0 -1
  1174. package/dist/components/Input/Input.module.css.js +0 -9
  1175. package/dist/components/Input/Input.types.js +0 -1
  1176. package/dist/components/InputOtp/InputOtp.module.css.js +0 -13
  1177. package/dist/components/InputOtp/InputOtp.types.js +0 -1
  1178. package/dist/components/ListItem/ListItem.js +0 -119
  1179. package/dist/components/ListItem/ListItem.module.css.js +0 -31
  1180. package/dist/components/ListItem/ListItem.types.js +0 -1
  1181. package/dist/components/ListItem/ListItem.utils.js +0 -50
  1182. package/dist/components/Loader/Loader.module.css.js +0 -7
  1183. package/dist/components/Loader/Loader.types.js +0 -1
  1184. package/dist/components/Menu/Menu.context.js +0 -6
  1185. package/dist/components/Menu/Menu.module.css.js +0 -9
  1186. package/dist/components/Menu/Menu.types.js +0 -1
  1187. package/dist/components/Menu/Menu.utils.js +0 -12
  1188. package/dist/components/Menu/MenuItem/MenuItem.module.css.js +0 -13
  1189. package/dist/components/Menu/MenuItem/MenuItem.utils.js +0 -34
  1190. package/dist/components/Modal/Modal.module.css.js +0 -23
  1191. package/dist/components/Modal/Modal.types.js +0 -1
  1192. package/dist/components/Navbar/Navbar.module.css.js +0 -12
  1193. package/dist/components/Navbar/Navbar.types.js +0 -1
  1194. package/dist/components/Pagination/Pagination.module.css.js +0 -27
  1195. package/dist/components/Pagination/Pagination.types.js +0 -1
  1196. package/dist/components/Paper/Elevated/Elevated.js +0 -39
  1197. package/dist/components/Paper/Elevated/Elevated.module.css.js +0 -7
  1198. package/dist/components/Paper/Elevated/Elevated.types.js +0 -1
  1199. package/dist/components/Paper/Elevated/Elevated.utils.js +0 -8
  1200. package/dist/components/Paper/Paper.module.css.js +0 -15
  1201. package/dist/components/Paper/Paper.type.js +0 -1
  1202. package/dist/components/Paper/Surface/Surface.js +0 -39
  1203. package/dist/components/Paper/Surface/Surface.module.css.js +0 -7
  1204. package/dist/components/Paper/Surface/Surface.types.js +0 -1
  1205. package/dist/components/Paper/Surface/Surface.utils.js +0 -6
  1206. package/dist/components/Popover/Popover.module.css.js +0 -9
  1207. package/dist/components/Popover/Popover.types.js +0 -1
  1208. package/dist/components/Popover/useFloatingPosition/useFloating.types.js +0 -1
  1209. package/dist/components/Portal/Portal.types.js +0 -1
  1210. package/dist/components/ProgressBar/ProgressBar.module.css.js +0 -7
  1211. package/dist/components/ProgressBar/ProgressBar.types.js +0 -1
  1212. package/dist/components/Radio/Radio.module.css.js +0 -15
  1213. package/dist/components/Radio/Radio.types.js +0 -1
  1214. package/dist/components/Radio/RadioGroup/RadioGroup.module.css.js +0 -11
  1215. package/dist/components/Radio/RadioGroup/RadioGroup.types.js +0 -1
  1216. package/dist/components/Rating/Rating.module.css.js +0 -13
  1217. package/dist/components/Rating/Rating.types.js +0 -1
  1218. package/dist/components/Search/Search.js +0 -44
  1219. package/dist/components/Search/Search.module.css.js +0 -15
  1220. package/dist/components/Search/Search.types.js +0 -1
  1221. package/dist/components/Search/Search.utils.js +0 -14
  1222. package/dist/components/SearchAccent/SearchAccent.js +0 -61
  1223. package/dist/components/SearchAccent/SearchAccent.module.css.js +0 -11
  1224. package/dist/components/SearchAccent/SearchAccent.types.js +0 -1
  1225. package/dist/components/SearchAccent/SearchAccent.utils.js +0 -11
  1226. package/dist/components/SegmentedControl/SegmentedControl.module.css.js +0 -9
  1227. package/dist/components/SegmentedControl/SegmentedControl.types.js +0 -1
  1228. package/dist/components/Select/Select.module.css.js +0 -15
  1229. package/dist/components/Select/Select.types.js +0 -1
  1230. package/dist/components/SelectMultiple/SelectMultiple.js +0 -182
  1231. package/dist/components/SelectMultiple/SelectMultiple.module.css.js +0 -25
  1232. package/dist/components/SelectMultiple/SelectMultiple.types.js +0 -1
  1233. package/dist/components/SelectorInput/SelectorInput.module.css.js +0 -21
  1234. package/dist/components/SelectorInput/SelectorInput.types.js +0 -1
  1235. package/dist/components/Sidebar/Sidebar.module.css.js +0 -21
  1236. package/dist/components/Sidebar/Sidebar.types.js +0 -1
  1237. package/dist/components/Sidebar/SidebarBottom/SidebarBottom.js +0 -20
  1238. package/dist/components/Sidebar/SidebarBottom/SidebarBottom.module.css.js +0 -7
  1239. package/dist/components/Sidebar/SidebarCollapse/SidebarCollapse.module.css.js +0 -19
  1240. package/dist/components/Sidebar/SidebarControlButton/SidebarControlButton.js +0 -16
  1241. package/dist/components/Sidebar/SidebarControlButton/SidebarControlButton.module.css.js +0 -9
  1242. package/dist/components/Sidebar/SidebarElement/SidebarElement.module.css.js +0 -8
  1243. package/dist/components/Sidebar/SidebarHeader/SidebarHeader.module.css.js +0 -9
  1244. package/dist/components/Sidebar/SidebarItem/SidebarItem.module.css.js +0 -21
  1245. package/dist/components/Skeleton/Skeleton.module.css.js +0 -7
  1246. package/dist/components/Skeleton/Skeleton.types.js +0 -1
  1247. package/dist/components/Slider/Label/Label.js +0 -35
  1248. package/dist/components/Slider/Label/Label.types.js +0 -1
  1249. package/dist/components/Slider/Marks/Marks.types.js +0 -1
  1250. package/dist/components/Slider/RangeSlider/RangeSlider.types.js +0 -1
  1251. package/dist/components/Slider/Slider/Slider.types.js +0 -1
  1252. package/dist/components/Slider/Slider.module.css.js +0 -33
  1253. package/dist/components/Slider/Slider.types.js +0 -1
  1254. package/dist/components/Slider/SliderBase/SliderBase.types.js +0 -1
  1255. package/dist/components/Slider/Thumb/Thumb.types.js +0 -1
  1256. package/dist/components/Slider/Track/Track.types.js +0 -1
  1257. package/dist/components/Snackbar/Snackbar.module.css.js +0 -19
  1258. package/dist/components/Snackbar/Snackbar.types.js +0 -1
  1259. package/dist/components/Snackbar/SnackbarTimer/SnackbarTimer.module.css.js +0 -11
  1260. package/dist/components/Switch/Switch.module.css.js +0 -17
  1261. package/dist/components/Switch/Switch.types.js +0 -1
  1262. package/dist/components/Tab/Tab.module.css.js +0 -19
  1263. package/dist/components/Tab/Tab.types.js +0 -1
  1264. package/dist/components/Tab/TabGroup/TabGroup.module.css.js +0 -9
  1265. package/dist/components/Tab/TabGroup/TabGroup.types.js +0 -1
  1266. package/dist/components/Tab/TabMenu/TabMenu.js +0 -11
  1267. package/dist/components/Tab/TabMenu/TabMenu.types.js +0 -1
  1268. package/dist/components/Tab/TabMenu/TabMenu.utils.js +0 -13
  1269. package/dist/components/TabMenuNew/TabMenuNew.js +0 -49
  1270. package/dist/components/TabMenuNew/TabMenuNew.module.css.js +0 -11
  1271. package/dist/components/TabMenuNew/TabMenuNew.types.js +0 -1
  1272. package/dist/components/TabMenuNew/TabMenuNew.utils.js +0 -8
  1273. package/dist/components/Table/Table.module.css.js +0 -45
  1274. package/dist/components/Table/Table.types.js +0 -1
  1275. package/dist/components/Table/TableHeader/TableHeader.js +0 -88
  1276. package/dist/components/Table/TableHeader/TableHeader.types.js +0 -1
  1277. package/dist/components/Table/TableRow/TableRow.js +0 -94
  1278. package/dist/components/Table/TableRow/TableRow.types.js +0 -1
  1279. package/dist/components/Tag/Tag.js +0 -40
  1280. package/dist/components/Tag/Tag.module.css.js +0 -17
  1281. package/dist/components/Tag/Tag.types.js +0 -1
  1282. package/dist/components/Tag/Tag.utils.js +0 -95
  1283. package/dist/components/TextArea/TextArea.js +0 -85
  1284. package/dist/components/TextArea/TextArea.module.css.js +0 -21
  1285. package/dist/components/TextArea/TextArea.types.js +0 -1
  1286. package/dist/components/TextArea/TextArea.utils.js +0 -55
  1287. package/dist/components/Timeline/Timeline.module.css.js +0 -9
  1288. package/dist/components/Timeline/Timeline.types.js +0 -1
  1289. package/dist/components/Timeline/TimelineContent/TimelineContent.module.css.js +0 -9
  1290. package/dist/components/Timeline/TimelineItem/TimelineItem.module.css.js +0 -19
  1291. package/dist/components/Timeline/TimelineOppositeContent/TimelineOppositeContent.module.css.js +0 -9
  1292. package/dist/components/Tooltip/Tooltip.module.css.js +0 -11
  1293. package/dist/components/Tooltip/Tooltip.types.js +0 -1
  1294. package/dist/components/Transition/Transition.constants.js +0 -23
  1295. package/dist/components/Transition/Transition.types.js +0 -1
  1296. package/dist/components/Typography/Typography.types.js +0 -1
  1297. package/dist/hooks/use-click-outside.js +0 -15
  1298. package/dist/icons/components/AlifBusinessLogo.js +0 -81
  1299. package/dist/icons/components/AlifIcon.js +0 -34
  1300. package/dist/icons/components/ArrowIcon.js +0 -16
  1301. package/dist/icons/components/OutlineFinanceAccounts.js +0 -29
  1302. package/dist/icons/components/OutlineFinanceAnalytics.js +0 -29
  1303. package/dist/icons/components/OutlineFinanceBank.js +0 -29
  1304. package/dist/icons/components/OutlineFinanceBill.js +0 -52
  1305. package/dist/icons/components/OutlineFinanceCardAdd.js +0 -45
  1306. package/dist/icons/components/OutlineFinanceCardSalom.js +0 -29
  1307. package/dist/icons/components/OutlineFinanceCardWebCheckout.js +0 -47
  1308. package/dist/icons/components/OutlineFinanceCash.js +0 -29
  1309. package/dist/icons/components/OutlineFinanceCashDollar.js +0 -29
  1310. package/dist/icons/components/OutlineFinanceCoins.js +0 -29
  1311. package/dist/icons/components/OutlineFinanceCreditCard.js +0 -29
  1312. package/dist/icons/components/OutlineFinanceCurrencyDollar.js +0 -29
  1313. package/dist/icons/components/OutlineFinanceCurrencyLira.js +0 -29
  1314. package/dist/icons/components/OutlineFinanceCurrencyRuble.js +0 -29
  1315. package/dist/icons/components/OutlineFinanceDeposit.js +0 -29
  1316. package/dist/icons/components/OutlineFinanceDollar.js +0 -29
  1317. package/dist/icons/components/OutlineFinanceDollarCoin.js +0 -38
  1318. package/dist/icons/components/OutlineFinanceEuroCoin.js +0 -38
  1319. package/dist/icons/components/OutlineFinanceLimits.js +0 -52
  1320. package/dist/icons/components/OutlineFinanceMerch.js +0 -29
  1321. package/dist/icons/components/OutlineFinanceMoney.js +0 -29
  1322. package/dist/icons/components/OutlineFinanceOnline.js +0 -29
  1323. package/dist/icons/components/OutlineFinancePercent.js +0 -29
  1324. package/dist/icons/components/OutlineFinancePosTerminal.js +0 -82
  1325. package/dist/icons/components/OutlineFinanceRubleCoin.js +0 -40
  1326. package/dist/icons/components/OutlineFinanceSendCard.js +0 -29
  1327. package/dist/icons/components/OutlineFinanceSendDoc.js +0 -29
  1328. package/dist/icons/components/OutlineFinanceSomoniTjsCoin.js +0 -38
  1329. package/dist/icons/components/OutlineFinanceStock.js +0 -57
  1330. package/dist/icons/components/OutlineFinanceTerminal.js +0 -29
  1331. package/dist/icons/components/OutlineFinanceTransfer.js +0 -29
  1332. package/dist/icons/components/OutlineFinanceVisa.js +0 -29
  1333. package/dist/icons/components/OutlineFinanceWallet.js +0 -29
  1334. package/dist/icons/components/OutlineFinanceWalletPlus.js +0 -29
  1335. package/dist/icons/components/OutlineFinanceWalletTransfer.js +0 -29
  1336. package/dist/icons/components/OutlineFinanceYenYuanCoin.js +0 -38
  1337. package/dist/icons/components/OutlineFinanceZP.js +0 -29
  1338. package/dist/icons/components/OutlineNavigationArrowBack.js +0 -29
  1339. package/dist/icons/components/OutlineNavigationArrowDown.js +0 -29
  1340. package/dist/icons/components/OutlineNavigationArrowReturn.js +0 -29
  1341. package/dist/icons/components/OutlineNavigationArrowUp.js +0 -29
  1342. package/dist/icons/components/OutlineNavigationChevronDownSmall.js +0 -29
  1343. package/dist/icons/components/OutlineNavigationChevronLeftSmall.js +0 -29
  1344. package/dist/icons/components/OutlineNavigationChevronRightSmall.js +0 -29
  1345. package/dist/icons/components/OutlineNavigationChevronUpSmall.js +0 -29
  1346. package/dist/icons/components/OutlineNavigationDoubleLeft.js +0 -29
  1347. package/dist/icons/components/OutlineNavigationDoubleRight.js +0 -29
  1348. package/dist/icons/components/OutlineNavigationLeftArrow.js +0 -29
  1349. package/dist/icons/components/OutlineNavigationLeftDown.js +0 -29
  1350. package/dist/icons/components/OutlineNavigationRightArrow.js +0 -29
  1351. package/dist/icons/components/OutlineNavigationRightIcon.js +0 -24
  1352. package/dist/icons/components/OutlineNavigationRightTop.js +0 -29
  1353. package/dist/icons/components/OutlineNavigationTrendingDown.js +0 -29
  1354. package/dist/icons/components/OutlineNavigationTrendingUp.js +0 -29
  1355. package/dist/icons/components/OutlineNavigationZoomOut.js +0 -29
  1356. package/dist/icons/components/OutlineSystemAdd.js +0 -29
  1357. package/dist/icons/components/OutlineSystemAdd2.js +0 -29
  1358. package/dist/icons/components/OutlineSystemAlertCircle.js +0 -29
  1359. package/dist/icons/components/OutlineSystemAll.js +0 -43
  1360. package/dist/icons/components/OutlineSystemArticle.js +0 -40
  1361. package/dist/icons/components/OutlineSystemBell.js +0 -29
  1362. package/dist/icons/components/OutlineSystemBellOff.js +0 -29
  1363. package/dist/icons/components/OutlineSystemBill.js +0 -29
  1364. package/dist/icons/components/OutlineSystemBookOpen.js +0 -29
  1365. package/dist/icons/components/OutlineSystemCalendar.js +0 -29
  1366. package/dist/icons/components/OutlineSystemCalling.js +0 -29
  1367. package/dist/icons/components/OutlineSystemCamera.js +0 -40
  1368. package/dist/icons/components/OutlineSystemChat.js +0 -27
  1369. package/dist/icons/components/OutlineSystemCheck.js +0 -29
  1370. package/dist/icons/components/OutlineSystemCheckCircle.js +0 -38
  1371. package/dist/icons/components/OutlineSystemCheckDouble.js +0 -29
  1372. package/dist/icons/components/OutlineSystemClock.js +0 -29
  1373. package/dist/icons/components/OutlineSystemClose.js +0 -29
  1374. package/dist/icons/components/OutlineSystemConfities.js +0 -73
  1375. package/dist/icons/components/OutlineSystemCopy.js +0 -29
  1376. package/dist/icons/components/OutlineSystemDelete.js +0 -29
  1377. package/dist/icons/components/OutlineSystemDoc.js +0 -29
  1378. package/dist/icons/components/OutlineSystemDocEmpty.js +0 -29
  1379. package/dist/icons/components/OutlineSystemDownload.js +0 -29
  1380. package/dist/icons/components/OutlineSystemEdit.js +0 -29
  1381. package/dist/icons/components/OutlineSystemEditAlt.js +0 -29
  1382. package/dist/icons/components/OutlineSystemExpand.js +0 -29
  1383. package/dist/icons/components/OutlineSystemEyeOff.js +0 -29
  1384. package/dist/icons/components/OutlineSystemEyeOffAlt.js +0 -29
  1385. package/dist/icons/components/OutlineSystemEyeOn.js +0 -29
  1386. package/dist/icons/components/OutlineSystemFileAccept.js +0 -38
  1387. package/dist/icons/components/OutlineSystemFileAdd.js +0 -38
  1388. package/dist/icons/components/OutlineSystemFileError.js +0 -38
  1389. package/dist/icons/components/OutlineSystemFilterFromLessToMore.js +0 -43
  1390. package/dist/icons/components/OutlineSystemFilterFromMoreToLess.js +0 -43
  1391. package/dist/icons/components/OutlineSystemFolder.js +0 -29
  1392. package/dist/icons/components/OutlineSystemGame.js +0 -52
  1393. package/dist/icons/components/OutlineSystemGridView.js +0 -29
  1394. package/dist/icons/components/OutlineSystemGrowth.js +0 -29
  1395. package/dist/icons/components/OutlineSystemHeadphones.js +0 -29
  1396. package/dist/icons/components/OutlineSystemHeart.js +0 -29
  1397. package/dist/icons/components/OutlineSystemHelpCircle.js +0 -29
  1398. package/dist/icons/components/OutlineSystemHex.js +0 -29
  1399. package/dist/icons/components/OutlineSystemHistory.js +0 -38
  1400. package/dist/icons/components/OutlineSystemHome.js +0 -29
  1401. package/dist/icons/components/OutlineSystemHomeFavourite.js +0 -29
  1402. package/dist/icons/components/OutlineSystemIdea.js +0 -66
  1403. package/dist/icons/components/OutlineSystemIn.js +0 -36
  1404. package/dist/icons/components/OutlineSystemInfo.js +0 -45
  1405. package/dist/icons/components/OutlineSystemIslam.js +0 -40
  1406. package/dist/icons/components/OutlineSystemLanguage.js +0 -29
  1407. package/dist/icons/components/OutlineSystemLink.js +0 -36
  1408. package/dist/icons/components/OutlineSystemLink2.js +0 -29
  1409. package/dist/icons/components/OutlineSystemListView.js +0 -29
  1410. package/dist/icons/components/OutlineSystemLock.js +0 -29
  1411. package/dist/icons/components/OutlineSystemMail.js +0 -29
  1412. package/dist/icons/components/OutlineSystemMapPin.js +0 -29
  1413. package/dist/icons/components/OutlineSystemMenu.js +0 -29
  1414. package/dist/icons/components/OutlineSystemMistake.js +0 -47
  1415. package/dist/icons/components/OutlineSystemMoon.js +0 -29
  1416. package/dist/icons/components/OutlineSystemMoreHorizontal.js +0 -29
  1417. package/dist/icons/components/OutlineSystemMoreVertical.js +0 -29
  1418. package/dist/icons/components/OutlineSystemMove.js +0 -29
  1419. package/dist/icons/components/OutlineSystemNavigation.js +0 -29
  1420. package/dist/icons/components/OutlineSystemNews.js +0 -29
  1421. package/dist/icons/components/OutlineSystemOut.js +0 -36
  1422. package/dist/icons/components/OutlineSystemPaperclip.js +0 -29
  1423. package/dist/icons/components/OutlineSystemPlus.js +0 -29
  1424. package/dist/icons/components/OutlineSystemPlusRect.js +0 -29
  1425. package/dist/icons/components/OutlineSystemPrinter.js +0 -29
  1426. package/dist/icons/components/OutlineSystemRefresh.js +0 -29
  1427. package/dist/icons/components/OutlineSystemRefreshCW.js +0 -29
  1428. package/dist/icons/components/OutlineSystemRemove.js +0 -29
  1429. package/dist/icons/components/OutlineSystemRemoveCircle.js +0 -40
  1430. package/dist/icons/components/OutlineSystemRepeat.js +0 -29
  1431. package/dist/icons/components/OutlineSystemResize.js +0 -40
  1432. package/dist/icons/components/OutlineSystemSearch.js +0 -29
  1433. package/dist/icons/components/OutlineSystemSend.js +0 -29
  1434. package/dist/icons/components/OutlineSystemSettings.js +0 -29
  1435. package/dist/icons/components/OutlineSystemShippingAndDelivery.js +0 -29
  1436. package/dist/icons/components/OutlineSystemShoppingBasket.js +0 -45
  1437. package/dist/icons/components/OutlineSystemSidebar.js +0 -29
  1438. package/dist/icons/components/OutlineSystemSignature.js +0 -29
  1439. package/dist/icons/components/OutlineSystemSlash.js +0 -29
  1440. package/dist/icons/components/OutlineSystemSmartphone.js +0 -27
  1441. package/dist/icons/components/OutlineSystemSmile.js +0 -27
  1442. package/dist/icons/components/OutlineSystemStar.js +0 -29
  1443. package/dist/icons/components/OutlineSystemSun.js +0 -29
  1444. package/dist/icons/components/OutlineSystemSurvey.js +0 -38
  1445. package/dist/icons/components/OutlineSystemTariffs.js +0 -64
  1446. package/dist/icons/components/OutlineSystemTelegram.js +0 -29
  1447. package/dist/icons/components/OutlineSystemTrash.js +0 -29
  1448. package/dist/icons/components/OutlineSystemTune.js +0 -29
  1449. package/dist/icons/components/OutlineSystemUnlock.js +0 -29
  1450. package/dist/icons/components/OutlineSystemUpload.js +0 -29
  1451. package/dist/icons/components/OutlineSystemUploadCloud.js +0 -29
  1452. package/dist/icons/components/OutlineSystemUser.js +0 -29
  1453. package/dist/icons/components/OutlineSystemUserAdd.js +0 -29
  1454. package/dist/icons/components/OutlineSystemUsers.js +0 -29
  1455. package/dist/icons/components/OutlineSystemWifiOff.js +0 -50
  1456. package/dist/icons/components/SolidNavigationArrowDown.js +0 -29
  1457. package/dist/icons/components/SolidNavigationArrowLeft.js +0 -29
  1458. package/dist/icons/components/SolidNavigationArrowRight.js +0 -29
  1459. package/dist/icons/components/SolidNavigationArrowUp.js +0 -29
  1460. package/dist/icons/components/SolidNavigationDoubleLeft.js +0 -40
  1461. package/dist/icons/components/SolidNavigationDoubleRight.js +0 -40
  1462. package/dist/icons/components/SolidNavigationLeftPrev.js +0 -29
  1463. package/dist/icons/components/SolidNavigationRightNext.js +0 -29
  1464. package/dist/icons/components/SolidNavigationSelectOpenDown.js +0 -29
  1465. package/dist/icons/components/SolidNavigationSelectTop.js +0 -29
  1466. package/dist/icons/components/SolidSystemAdd.js +0 -29
  1467. package/dist/icons/components/SolidSystemAdd2.js +0 -29
  1468. package/dist/icons/components/SolidSystemAlertCircle.js +0 -29
  1469. package/dist/icons/components/SolidSystemBell.js +0 -29
  1470. package/dist/icons/components/SolidSystemBellOff.js +0 -29
  1471. package/dist/icons/components/SolidSystemBill.js +0 -29
  1472. package/dist/icons/components/SolidSystemCalendar.js +0 -29
  1473. package/dist/icons/components/SolidSystemCamera.js +0 -29
  1474. package/dist/icons/components/SolidSystemChat.js +0 -29
  1475. package/dist/icons/components/SolidSystemCheck.js +0 -29
  1476. package/dist/icons/components/SolidSystemCheckCircle.js +0 -29
  1477. package/dist/icons/components/SolidSystemClock.js +0 -29
  1478. package/dist/icons/components/SolidSystemClose.js +0 -29
  1479. package/dist/icons/components/SolidSystemCopy.js +0 -40
  1480. package/dist/icons/components/SolidSystemDoc.js +0 -29
  1481. package/dist/icons/components/SolidSystemDocEmpty.js +0 -29
  1482. package/dist/icons/components/SolidSystemDownload.js +0 -29
  1483. package/dist/icons/components/SolidSystemEdit.js +0 -29
  1484. package/dist/icons/components/SolidSystemEditAlt.js +0 -47
  1485. package/dist/icons/components/SolidSystemExclamation.js +0 -29
  1486. package/dist/icons/components/SolidSystemExpand.js +0 -40
  1487. package/dist/icons/components/SolidSystemEyeOff.js +0 -29
  1488. package/dist/icons/components/SolidSystemEyeOffAlt.js +0 -40
  1489. package/dist/icons/components/SolidSystemEyeOn.js +0 -29
  1490. package/dist/icons/components/SolidSystemFileAccept.js +0 -29
  1491. package/dist/icons/components/SolidSystemFolder.js +0 -27
  1492. package/dist/icons/components/SolidSystemGridView.js +0 -29
  1493. package/dist/icons/components/SolidSystemHeadphones.js +0 -29
  1494. package/dist/icons/components/SolidSystemHeart.js +0 -29
  1495. package/dist/icons/components/SolidSystemHelpCircle.js +0 -29
  1496. package/dist/icons/components/SolidSystemHex.js +0 -58
  1497. package/dist/icons/components/SolidSystemHome.js +0 -29
  1498. package/dist/icons/components/SolidSystemInfo.js +0 -29
  1499. package/dist/icons/components/SolidSystemLanguage.js +0 -29
  1500. package/dist/icons/components/SolidSystemLink.js +0 -36
  1501. package/dist/icons/components/SolidSystemLink2.js +0 -40
  1502. package/dist/icons/components/SolidSystemListView.js +0 -76
  1503. package/dist/icons/components/SolidSystemLock.js +0 -40
  1504. package/dist/icons/components/SolidSystemMail.js +0 -29
  1505. package/dist/icons/components/SolidSystemMapPin.js +0 -29
  1506. package/dist/icons/components/SolidSystemMenu.js +0 -49
  1507. package/dist/icons/components/SolidSystemMoon.js +0 -29
  1508. package/dist/icons/components/SolidSystemMoreHorizontal.js +0 -29
  1509. package/dist/icons/components/SolidSystemMoreVertical.js +0 -29
  1510. package/dist/icons/components/SolidSystemMove.js +0 -40
  1511. package/dist/icons/components/SolidSystemPaperclip.js +0 -29
  1512. package/dist/icons/components/SolidSystemPrinter.js +0 -56
  1513. package/dist/icons/components/SolidSystemRefresh.js +0 -29
  1514. package/dist/icons/components/SolidSystemRefresh2.js +0 -58
  1515. package/dist/icons/components/SolidSystemRemove.js +0 -29
  1516. package/dist/icons/components/SolidSystemRemoveCircle.js +0 -29
  1517. package/dist/icons/components/SolidSystemRightNext.js +0 -58
  1518. package/dist/icons/components/SolidSystemSearch.js +0 -29
  1519. package/dist/icons/components/SolidSystemSend.js +0 -40
  1520. package/dist/icons/components/SolidSystemSettings.js +0 -29
  1521. package/dist/icons/components/SolidSystemSidebar.js +0 -29
  1522. package/dist/icons/components/SolidSystemSlash.js +0 -40
  1523. package/dist/icons/components/SolidSystemSmartphone.js +0 -29
  1524. package/dist/icons/components/SolidSystemStar.js +0 -29
  1525. package/dist/icons/components/SolidSystemSun.js +0 -103
  1526. package/dist/icons/components/SolidSystemTickDouble.js +0 -40
  1527. package/dist/icons/components/SolidSystemTrash.js +0 -40
  1528. package/dist/icons/components/SolidSystemTune.js +0 -29
  1529. package/dist/icons/components/SolidSystemUnlock.js +0 -40
  1530. package/dist/icons/components/SolidSystemUpload.js +0 -29
  1531. package/dist/icons/components/SolidSystemUploadCloud.js +0 -40
  1532. package/dist/icons/components/SolidSystemUser.js +0 -58
  1533. package/dist/icons/components/SolidSystemUserFilled.js +0 -40
  1534. package/dist/icons/components/SolidSystemUsers.js +0 -45
  1535. package/dist/icons/components/SolidSystemWifiOff.js +0 -50
  1536. package/dist/icons/components/countries-flags/AeFlag.js +0 -87
  1537. package/dist/icons/components/countries-flags/RuFlag.js +0 -78
  1538. package/dist/icons/components/countries-flags/TjFlag.js +0 -50
  1539. package/dist/icons/components/countries-flags/UsFlag.js +0 -117
  1540. package/dist/icons/components/countries-flags/UzFlag.js +0 -85
  1541. package/dist/providers/AlifProvider/AlifProvider.consts.js +0 -5
  1542. package/dist/providers/AlifProvider/AlifProvider.types.js +0 -1
  1543. package/dist/types/css-modules.d.js +0 -1
  1544. package/dist/types/global.js +0 -1
  1545. package/dist/types/icon.js +0 -1
  1546. package/dist/utils/create-safe-context/create-safe-context.utils.js +0 -11
  1547. package/dist/utils/validate-icon-button-props.js +0 -8
package/dist/main.d.ts CHANGED
@@ -1,3885 +1 @@
1
- import { BaseHTMLAttributes } from 'react';
2
- import { ButtonHTMLAttributes } from 'react';
3
- import { ChangeEvent } from 'react';
4
- import { ClipboardEvent as ClipboardEvent_2 } from 'react';
5
- import { ComponentType } from 'react';
6
- import { CSSProperties } from 'react';
7
- import { default as default_2 } from 'react';
8
- import { Dispatch } from 'react';
9
- import { FocusEventHandler } from 'react';
10
- import { HTMLAttributes } from 'react';
11
- import { InputHTMLAttributes } from 'react';
12
- import { JSX } from 'react/jsx-runtime';
13
- import { JSXElementConstructor } from 'react';
14
- import { PropsWithChildren } from 'react';
15
- import { ReactElement } from 'react';
16
- import { ReactNode } from 'react';
17
- import { ReactPortal } from 'react';
18
- import { SetStateAction } from 'react';
19
- import { SVGProps } from 'react';
20
- import { TextareaHTMLAttributes } from 'react';
21
-
22
- export declare const Accordion: {
23
- ({ children, className, variant, size, type, isOpen, }: AccordionProps): JSX.Element;
24
- Summary: ({ title, subTitle, icon, onToggle, children, }: AccordionSummaryProps) => JSX.Element;
25
- Details: ({ children }: AccordionDetailsProps) => JSX.Element;
26
- };
27
-
28
- declare interface AccordionDetailsProps {
29
- /**
30
- * The content to display when the Accordion is expanded.
31
- */
32
- children: ReactNode;
33
- /**
34
- * Additional CSS class for custom styling of the Accordion content.
35
- */
36
- className?: string;
37
- }
38
-
39
- export declare interface AccordionProps {
40
- /**
41
- * The content of the Accordion, typically consisting of `Accordion.Summary` and `Accordion.Details`.
42
- */
43
- children: ReactNode;
44
- /**
45
- * Additional CSS class for custom styling of the Accordion.
46
- */
47
- className?: string;
48
- /**
49
- * Defines the visual style of the Accordion based on the device type.
50
- * - `'desktop'`: Optimized for larger screens.
51
- * - `'mobile'`: Optimized for smaller screens.
52
- */
53
- variant?: 'desktop' | 'mobile';
54
- /**
55
- * Controls the size of the Accordion.
56
- * - `'s'`: Small size.
57
- * - `'m'`: Medium size.
58
- * - `'l'`: Large size.
59
- */
60
- size?: 's' | 'm' | 'l';
61
- /**
62
- * Determines whether the Accordion has a divider.
63
- * - `'default'`: No divider.
64
- * - `'withDivider'`: Includes a divider below the content.
65
- */
66
- type?: 'default' | 'withDivider';
67
- /**
68
- * Indicates whether the Accordion is currently open.
69
- */
70
- isOpen: boolean;
71
- }
72
-
73
- declare interface AccordionSummaryProps {
74
- /**
75
- * The main title displayed in the Accordion header.
76
- */
77
- title?: string;
78
- /**
79
- * An optional subtitle displayed below the title.
80
- */
81
- subTitle?: string;
82
- /**
83
- * A custom icon to display in the Accordion header.
84
- * If not provided, a default icon (chevron) is used.
85
- */
86
- icon?: ReactNode;
87
- /**
88
- * Callback function triggered when the Accordion header is clicked.
89
- */
90
- onToggle: () => void;
91
- /**
92
- * Custom content to display in the Accordion header.
93
- * If provided, the `title`, `subTitle`, and `icon` props are ignored.
94
- */
95
- children?: ReactNode;
96
- /**
97
- * Additional CSS class for custom styling of the Accordion header.
98
- */
99
- className?: string;
100
- }
101
-
102
- export declare const ActionButton: ({ leftSection, rightSection, children, className, size, rounded, variant, isIconBtn, isLoading, disabled, ...props }: ActionButtonProps) => JSX.Element;
103
-
104
- export declare interface ActionButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
105
- /**
106
- * Variant of the button. Defaults to 'primary'
107
- */
108
- variant?: Variant;
109
- /**
110
- * If true, the button will be rounded.
111
- */
112
- rounded?: boolean;
113
- /**
114
- * Left section of the button
115
- */
116
- leftSection?: ReactNode;
117
- /**
118
- * Right section of the button
119
- */
120
- rightSection?: ReactNode;
121
- /**
122
- * Override or extend the styles applied to the component.
123
- */
124
- className?: string;
125
- /**
126
- * The size of the button.
127
- */
128
- size?: Size;
129
- /**
130
- * If true, the button will be disabled.
131
- */
132
- disabled?: boolean;
133
- /**
134
- * If true, the button will be an icon button.
135
- */
136
- isIconBtn?: boolean;
137
- /**
138
- * If `true`, the button will display a loading indicator and disable user interactions.
139
- */
140
- isLoading?: boolean;
141
- }
142
-
143
- export declare const AeFlag: ({ height, width, ...props }: IconProps) => JSX.Element;
144
-
145
- export declare const Alert: ({ title, description, variant, type, showCloseIcon, showIcon, onClose, }: AlertProps) => JSX.Element;
146
-
147
- export declare interface AlertProps {
148
- /**
149
- * The title of the alert.
150
- */
151
- title: string;
152
- /**
153
- * The description of the alert.
154
- */
155
- description?: string;
156
- /**
157
- * The variant of the alert.
158
- */
159
- variant?: Variant_2;
160
- /**
161
- * The type of the alert.
162
- */
163
- type?: Type;
164
- /**
165
- * Show the icon based on the type. If `false`, the icon will not be shown.
166
- */
167
- showIcon?: boolean;
168
- /**
169
- * If `true`, the alert will show a close icon.
170
- */
171
- showCloseIcon?: boolean;
172
- /**
173
- * The function to call on close icon click.
174
- */
175
- onClose?: () => void;
176
- }
177
-
178
- export declare const AlifBusinessLogo: ({ fill, height, width, ...props }: IconProps) => JSX.Element;
179
-
180
- export declare const AlifIcon: ({ height, width, ...props }: IconProps) => JSX.Element;
181
-
182
- export declare const AlifProvider: ({ children, initialMode, initialLocale, brand, }: ThemeWrapperProps) => JSX.Element;
183
-
184
- export declare interface AlifProviderProps {
185
- /**
186
- * Your application.
187
- */
188
- children: ReactNode;
189
- /**
190
- * Initial mode of the application. Can be accessible via the `useMode` hook.
191
- */
192
- initialMode?: Mode;
193
- /**
194
- * Initial locale of the application. Can be accessible via the `useLocale` hook.
195
- */
196
- initialLocale?: Locale;
197
- /**
198
- * Brand of the application.
199
- */
200
- brand?: Brand;
201
- }
202
-
203
- export declare const AppLayout: ({ navbar, aside, children }: AppLayoutProps) => JSX.Element;
204
-
205
- export declare interface AppLayoutProps {
206
- /**
207
- * Navbar component. Top fixed bar.
208
- */
209
- navbar?: ReactNode;
210
- /**
211
- * Sidebar component. Left fixed bar.
212
- */
213
- aside?: ReactNode;
214
- /**
215
- * Content of the layout.
216
- */
217
- children: ReactNode;
218
- }
219
-
220
- export declare const ArrowIcon: ({ className, fill }: IconProps) => JSX.Element;
221
-
222
- declare interface ArrowPositionProps extends PositionProps {
223
- /**
224
- * The rotation of the arrow.
225
- */
226
- transform: string;
227
- /**
228
- * The origin point for the transformation of the arrow.
229
- */
230
- transformOrigin?: string;
231
- }
232
-
233
- export declare const Avatar: ({ id, src, className, badgeContent, badgeContentType, placeholderContent, size, hasStatus, statusVariant, reversePosition, }: AvatarProps) => JSX.Element;
234
-
235
- export declare const AvatarGroup: ({ children, spacing }: AvatarGroupProps) => JSX.Element;
236
-
237
- export declare interface AvatarGroupProps {
238
- /**
239
- * The content of the AvatarGroup. Place the Avatar components inside this prop.
240
- */
241
- children: ReactNode;
242
- /**
243
- * The spacing between the Avatars in the group.
244
- */
245
- spacing?: 'xxl' | 'xl' | 'l' | 'm' | 's' | 'xs' | 'xxs';
246
- }
247
-
248
- export declare interface AvatarProps {
249
- /**
250
- * Override or extend the styles applied to the component.
251
- */
252
- className?: string;
253
- /**
254
- * The size of the avatar.
255
- */
256
- size?: Size_2;
257
- /**
258
- * Placeholder content for the avatar.
259
- */
260
- placeholderContent?: ReactNode;
261
- /**
262
- * The type of the badge content. Indicates whether the badge content is an icon or text.
263
- */
264
- badgeContentType?: BadgeContent;
265
- /**
266
- * The content of the badge.
267
- */
268
- badgeContent?: ReactNode;
269
- /**
270
- * If `true`, the avatar will have a status. That is a small colored dot in the bottom or top right corner.
271
- */
272
- hasStatus?: boolean;
273
- /**
274
- * The status variant of the avatar.
275
- */
276
- statusVariant?: StatusVariant;
277
- /**
278
- * If `true`, the badge will be positioned at the top right corner of the avatar and the status will be positioned at the bottom right corner.
279
- */
280
- reversePosition?: boolean;
281
- /**
282
- * The source of the image to be displayed in the avatar.
283
- */
284
- src?: string;
285
- /**
286
- * The `id` of the avatar.
287
- */
288
- id?: string;
289
- }
290
-
291
- export declare const Backdrop: ({ isOpen, onClose, children, isCloseOutside, className, zIndex, transitionProps, ...props }: BackdropProps) => JSX.Element;
292
-
293
- export declare interface BackdropProps extends HTMLAttributes<HTMLDivElement> {
294
- /**
295
- * Determines whether modal/drawer is opened
296
- */
297
- isOpen: boolean;
298
- /**
299
- * Function to close the modal/drawer. This can be triggered by clicking the close button or outside the modal/drawer (if `isCloseOutside` is `true`).
300
- */
301
- onClose: () => void;
302
- /**
303
- * Content to be rendered inside.
304
- */
305
- children?: ReactNode;
306
- /**
307
- * Determines whether the modal/drawer should be closed when user clicks on the overlay.
308
- */
309
- isCloseOutside?: boolean;
310
- /**
311
- * Z-index of the backdrop, used to control its stacking order.
312
- */
313
- zIndex?: number | string;
314
- /**
315
- * Props for the transition effect when the component opens or closes.
316
- */
317
- transitionProps?: Omit<TransitionProps, 'mounted' | 'children'>;
318
- }
319
-
320
- export declare const Badge: ({ counter, children, className, leftSection, rightSection, size, type, variant, ...props }: BadgeProps) => JSX.Element;
321
-
322
- declare type BadgeContent = 'initial' | 'with-icons';
323
-
324
- export declare interface BadgeProps extends BaseHTMLAttributes<HTMLSpanElement> {
325
- /**
326
- * Variant of the badge.
327
- */
328
- variant?: Variant_3;
329
- /**
330
- * Type of the badge.
331
- */
332
- type?: Type_2;
333
- /**
334
- * Size of the badge.
335
- */
336
- size?: Size_3;
337
- /**
338
- * Left section of the badge.
339
- */
340
- leftSection?: ReactNode;
341
- /**
342
- * Right section of the badge.
343
- */
344
- rightSection?: ReactNode;
345
- /**
346
- * The number displayed above to the right of the badge text.
347
- */
348
- counter?: number;
349
- /**
350
- * Override or extend the styles applied to the component.
351
- */
352
- className?: string;
353
- }
354
-
355
- /**
356
- * Base props shared by all DatePicker types
357
- */
358
- declare interface BaseDatePickerProps {
359
- /** Minimum selectable date */
360
- minDate?: Date;
361
- /** Maximum selectable date */
362
- maxDate?: Date;
363
- /** Additional CSS class for the root container */
364
- className?: string;
365
- /**
366
- * Callback triggered when a date or range is selected.
367
- * - Single date: Date
368
- * - Range: [Date, Date]
369
- * - Cleared value: null
370
- */
371
- onPickerChange?: (val: [Date, Date] | Date | null) => void;
372
- /**
373
- * Sets a custom width for the picker (CSS value, e.g. '100%', '400px').
374
- * If provided, overrides the default picker width.
375
- */
376
- pickerWidth?: string;
377
- }
378
-
379
- declare interface BaseTabMenuProps {
380
- /**
381
- * The tabs to be rendered in the tab menu.
382
- */
383
- tabs: TabItem[];
384
- /**
385
- * The default value of the tab menu. This is used when the `value` prop is not provided.
386
- */
387
- defaultValue?: string;
388
- /**
389
- * If `true`, the tab menu is disabled and cannot be interacted with.
390
- */
391
- disabled?: boolean;
392
- /**
393
- * If `true`, the tab menu will take up the full width of its container.
394
- */
395
- fullWidth?: boolean;
396
- /**
397
- * The class name to apply to the tab menu.
398
- */
399
- className?: string;
400
- /**
401
- * If `true`, the tabs will be rounded.
402
- */
403
- rounded?: boolean;
404
- /**
405
- * The size of the tabs.
406
- */
407
- size?: Size_13;
408
- /**
409
- * The function to call when the selected tab changes.
410
- */
411
- onChange: (value: string) => void;
412
- /**
413
- * The value of the tab menu. This is used to control the selected tab.
414
- */
415
- value?: string;
416
- /**
417
- * The alignment of the tabs within the tab menu.
418
- */
419
- justify?: 'flex-start' | 'center' | 'flex-end' | 'space-between' | 'space-around';
420
- }
421
-
422
- export declare type Brand = 'alif' | 'aliftech' | 'universal' | 'umed-mall' | 'p-job';
423
-
424
- declare interface Breadcrumb {
425
- label: string;
426
- path: string;
427
- }
428
-
429
- export declare const Breadcrumbs: <T>({ variant, links, LinkComponent, linkProps, maxItems, }: BreadcrumbsProps<T>) => JSX.Element;
430
-
431
- /**
432
- * Props for the Breadcrumb component.
433
- *
434
- * @template T Type of props passed to the `LinkComponent`
435
- */
436
- export declare interface BreadcrumbsProps<T> {
437
- /**
438
- * List of breadcrumb links.
439
- */
440
- links: Breadcrumb[];
441
- /**
442
- * Variant of the breadcrumb display.
443
- */
444
- variant?: Variant_4;
445
- /**
446
- * Custom link component to be used instead of a default anchor (`<a>`).
447
- */
448
- LinkComponent: ComponentType<T>;
449
- /**
450
- * Function to generate additional props for each link.
451
- * Receives the path as an argument and returns an object with props.
452
- */
453
- linkProps?: (path: string) => T;
454
- /**
455
- * Maximum number of items to display before collapsing.
456
- * If exceeded, intermediate items will be collapsed.
457
- */
458
- maxItems?: number;
459
- }
460
-
461
- export declare const Button: ({ children, className, leftSection, rightSection, size, variant, isIconBtn, isActive, isLoading, disabled, ...props }: ButtonProps) => JSX.Element;
462
-
463
- export declare interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
464
- /**
465
- * Variant of the button.
466
- */
467
- variant?: Variant_5;
468
- /**
469
- * Size of the button.
470
- */
471
- size?: Size_4;
472
- /**
473
- * Element placed before the button text.
474
- */
475
- leftSection?: ReactNode;
476
- /**
477
- * Element placed after the button text.
478
- */
479
- rightSection?: ReactNode;
480
- /**
481
- * Override or extend the styles applied to the component.
482
- */
483
- className?: string;
484
- /**
485
- * If `true`, the button will be Icon Button. Pass the icon as children.
486
- */
487
- isIconBtn?: boolean;
488
- /**
489
- * If `true`, the button will be active.
490
- */
491
- isActive?: boolean;
492
- /**
493
- * If `true`, the button will display a loading indicator and disable user interactions.
494
- */
495
- isLoading?: boolean;
496
- }
497
-
498
- export declare const Checkbox: ({ label, description, size, checked, isAllChecked, ...props }: CheckboxProps) => JSX.Element;
499
-
500
- export declare interface CheckboxProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'size'> {
501
- /**
502
- * The label of the checkbox.
503
- */
504
- label?: ReactNode;
505
- /**
506
- * If `true`, the checkbox will be checked.
507
- */
508
- checked: boolean;
509
- /**
510
- * The size of the checkbox.
511
- */
512
- size?: Size_5;
513
- /**
514
- * The description of the checkbox.
515
- */
516
- description?: string;
517
- /**
518
- * If `true`, the checkbox will be checked. If
519
- */
520
- isAllChecked?: boolean;
521
- /**
522
- * Callback fired when the state is changed.
523
- */
524
- onChange?: (event: ChangeEvent<HTMLInputElement>) => void;
525
- }
526
-
527
- export declare const classNames: (...args: (string | undefined | null | boolean | number)[]) => string;
528
-
529
- export declare const closeEscape: <T>(event: T & {
530
- key: string;
531
- }, onClose: () => void) => void;
532
-
533
- export declare const Collapse: ({ isOpen, className, children, duration, }: CollapseProps) => JSX.Element;
534
-
535
- export declare interface CollapseProps {
536
- /**
537
- * If `true`, the content will be visible.
538
- */
539
- isOpen: boolean;
540
- /**
541
- * Override or extend the styles applied to the component.
542
- */
543
- className?: string;
544
- /**
545
- * The content of the component
546
- */
547
- children: React.ReactNode;
548
- /**
549
- * Duration of the animation in milliseconds.
550
- */
551
- duration?: number;
552
- }
553
-
554
- export declare function createSafeContext<ContextValue>(errorMessage: string): readonly [({ children, value, }: {
555
- value: ContextValue;
556
- children: ReactNode;
557
- }) => JSX.Element, () => ContextValue & ({} | undefined)];
558
-
559
- declare type DarkLevel = 1 | 2 | 3 | 4 | 5;
560
-
561
- declare type DateOption = {
562
- text: string;
563
- /**
564
- * Value can be a Date object or an array of Date objects for range selection
565
- */
566
- value: Date | Date[];
567
- };
568
-
569
- export declare const DatePicker: ({ className, proportions, label, placeholder, values, isRange, autoFocus, disabled, hintText, showCorrectHintIcon, hasError, isHintAlwaysShown, mask, onDateChange, onClear, onBlur, allowPicker, allowTime, timeControl, allowSeconds, allowPeriod, allowDay, allowMonth, allowYear, dateOptions, fullWidth, style, ...props }: DatePickerProps) => JSX.Element;
570
-
571
- export declare interface DatePickerProps extends InputHTMLAttributes<HTMLInputElement> {
572
- /**
573
- * ClassName will be applied to the root element.
574
- */
575
- className?: string;
576
- /**
577
- * Proportions will be used to define the size of the input field.
578
- */
579
- proportions?: Proportions;
580
- /**
581
- * The label of the input field.
582
- */
583
- label?: string;
584
- /**
585
- * The placeholder of the input field.
586
- */
587
- placeholder?: string;
588
- /**
589
- * The selected date value(s).
590
- */
591
- values: Date | Date[] | null;
592
- /**
593
- * The type of the date picker.
594
- * If isRange is `true`, then values should be an array of two Date objects.
595
- * If isRange is `false`, then values should be a Date object.
596
- */
597
- isRange?: boolean;
598
- /**
599
- * If autoFocus is `true`, then the input field will be focused when the page is loaded.
600
- */
601
- autoFocus?: boolean;
602
- /**
603
- * If disabled is `true`, then the input field will be disabled.
604
- */
605
- disabled?: boolean;
606
- /**
607
- * Hint text will be displayed below the input field.
608
- */
609
- hintText?: string;
610
- /**
611
- * If showCorrectHintIcon is `true`, then the correct icon will be displayed in the hint.
612
- */
613
- showCorrectHintIcon?: boolean;
614
- /**
615
- * If hasError is `true`, then the input field will be displayed with an error style.
616
- */
617
- hasError?: boolean;
618
- /**
619
- * If isHintAlwaysShown is `true`, then the hintText will be displayed always.
620
- */
621
- isHintAlwaysShown?: boolean;
622
- /**
623
- * Callback function that will be triggered when the date value is changed.
624
- */
625
- onDateChange: (date: Date | Date[] | null) => void;
626
- /**
627
- * Callback function to clear the date value(s).
628
- */
629
- onClear?: () => void;
630
- /**
631
- * If allowPicker is `true`, then the Picker will be displayed.
632
- * If allowPicker is `false`, then the Picker will not be displayed.
633
- */
634
- allowPicker?: boolean;
635
- /**
636
- * If allowTime is `true`, then the time can be selected along with the date.
637
- * If allowTime is `false`, then only the date can be selected.
638
- */
639
- allowTime?: boolean;
640
- /**
641
- * If timeControl is `true`, then the time picker will be displayed as a controlled time calendar.
642
- * If timeControl is `false`, then the time picker will be displayed as a list of time values from 00:00 to 23:45 with 15 minutes interval.
643
- */
644
- timeControl?: boolean;
645
- /**
646
- * If allowSeconds is `true`, then the time picker will be displayed with seconds.
647
- * If allowSeconds is `false`, then the time picker will be displayed without seconds.
648
- * Does not work if timeControl is `false`.
649
- */
650
- allowSeconds?: boolean;
651
- /**
652
- * If allowPeriod is `true`, then the time picker will be displayed with AM/PM period and 12-hour format.
653
- * If allowPeriod is `false`, then the time picker will be displayed with 24-hour format.
654
- * Does not work if timeControl is `false`.
655
- */
656
- allowPeriod?: boolean;
657
- /**
658
- * If allowDay is `true`, then the day picker will be displayed.
659
- * If allowDay is `false`, you can't select the day.
660
- */
661
- allowDay?: boolean;
662
- /**
663
- * If allowMonth is `true`, then the month picker will be displayed.
664
- * If allowMonth is `false`, you can't select the month.
665
- */
666
- allowMonth?: boolean;
667
- /**
668
- * If allowYear is `true`, then the year picker will be displayed.
669
- * If allowYear is `false`, you can't select the year.
670
- */
671
- allowYear?: boolean;
672
- /**
673
- * DateOptions is a list of predefined date options that can be selected by the user for instant selection.
674
- */
675
- dateOptions?: DateOption[];
676
- /**
677
- * Mask will be applied like hint for input value, but not control the input value onChange.
678
- */
679
- mask?: string;
680
- /**
681
- * If fullWidth is `true`, then the input field will take the full width of the parent container.
682
- */
683
- fullWidth?: boolean;
684
- }
685
-
686
- export declare type Direction = 'top' | 'bottom' | 'left' | 'right';
687
-
688
- declare type Direction_2 = 'asc' | 'desc';
689
-
690
- export declare const Divider: ({ className, variant, size, }: DividerProps) => JSX.Element;
691
-
692
- export declare interface DividerProps {
693
- /**
694
- * Override or extend the styles applied to the component.
695
- */
696
- className?: string;
697
- /**
698
- * The variant to use.
699
- */
700
- variant?: Variant_6;
701
- /**
702
- * The size of the divider.
703
- */
704
- size?: Size_6;
705
- }
706
-
707
- export declare const Drawer: ({ title, subTitle, isOpen, onClose, children, isCloseOutside, width, height, type, position, zIndex, className, ...props }: DrawerProps) => JSX.Element;
708
-
709
- export declare interface DrawerProps extends Omit<BackdropProps, 'transitionProps'> {
710
- /**
711
- * Width of the drawer (for left and right drawers).
712
- */
713
- width?: string;
714
- /**
715
- * Height of the drawer (for top and bottom drawers).
716
- */
717
- height?: string;
718
- /**
719
- * Title of the drawer.
720
- */
721
- title: string;
722
- /**
723
- * Subtitle of the drawer.
724
- */
725
- subTitle?: string;
726
- /**
727
- * Type of the drawer. The rounded type has rounded corners.
728
- */
729
- type?: 'default' | 'rounded';
730
- /**
731
- * Position of the drawer.
732
- */
733
- position?: Position_2;
734
- }
735
-
736
- export declare const Elevated: ({ className, children, p, px, py, m, mt, mr, mb, ml, rounded, style, shadowLevel, ...props }: ElevatedProps) => JSX.Element;
737
-
738
- export declare interface ElevatedProps extends PaperProps {
739
- /**
740
- * Shadow level of the paper.
741
- */
742
- shadowLevel?: ShadowLevel;
743
- }
744
-
745
- declare interface ExtendedFile extends Partial<File> {
746
- /**
747
- * Optional URL or link associated with the file (e.g. for preview or download).
748
- */
749
- href?: string;
750
- /**
751
- * Optional error message related to the file (e.g. invalid format or upload failure).
752
- */
753
- errorText?: string;
754
- /**
755
- * Upload progress represented as a percentage (0 to 100).
756
- */
757
- progress?: number;
758
- }
759
-
760
- export declare const Field: ({ label, placeholder, onClear, leftSection, leftIcon, rightIcon, hasError, id, value, mask, inputRegExp, className, disabled, keepLabel, keepLabelFixed, style, fullWidth, bordered, proportions, onFieldClick, ...props }: FieldProps) => JSX.Element;
761
-
762
- export declare interface FieldProps extends InputHTMLAttributes<HTMLInputElement> {
763
- /**
764
- * Label for the field.
765
- */
766
- label?: string;
767
- /**
768
- * Placeholder for the field.
769
- */
770
- placeholder?: string;
771
- /**
772
- * Triggered when the clear button is clicked.
773
- */
774
- onClear?: () => void;
775
- /**
776
- * Icon displayed to the right of the input.
777
- */
778
- rightIcon?: ReactNode;
779
- /**
780
- * Whether the field is bordered or not.
781
- */
782
- bordered?: boolean;
783
- /**
784
- * Proportions of the field.
785
- */
786
- proportions?: Proportions_2;
787
- /**
788
- * Whether the label should be kept when the field is focused.
789
- */
790
- keepLabel?: boolean;
791
- /**
792
- * Whether the label should be kept fixed on top.
793
- */
794
- keepLabelFixed?: boolean;
795
- /**
796
- * If `true`, the field will have an error style.
797
- */
798
- hasError?: boolean;
799
- /**
800
- * If `true`, the field will take the full width of its container.
801
- */
802
- fullWidth?: boolean;
803
- /**
804
- * Content before the input. Comes before leftIcon
805
- */
806
- leftSection?: ReactNode;
807
- /**
808
- * Comes before the input and after leftSection
809
- */
810
- leftIcon?: ReactNode;
811
- /**
812
- * mask will be applied like hint for input value, but not control the input value onChange
813
- */
814
- mask?: string;
815
- /**
816
- * inputRegExp will be applied to the input value to control the input value onChange.
817
- * mask is not required for inputRegExp, but mask can be used with inputRegExp.
818
- */
819
- inputRegExp?: RegExp | string;
820
- /**
821
- * Triggered when the value of the input change.
822
- */
823
- onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
824
- /**
825
- * The current value of the input.
826
- */
827
- value?: string | number | readonly string[];
828
- /**
829
- * Called when the field is clicked.
830
- */
831
- onFieldClick?: () => void;
832
- }
833
-
834
- export declare const FileUploader: ({ onFilesChange, files, width, hasError, title, description, buttonText, errorText, isMultiple, allowedExtensions, allowedMimeTypes, maxFileSize, maxCount, className, disabled, variant, }: FileUploaderProps) => JSX.Element;
835
-
836
- declare interface FileUploaderProps {
837
- /**
838
- * An array of currently selected or dropped File objects.
839
- * Can be used to display file names, sizes, or previews.
840
- */
841
- files: File[];
842
- /**
843
- * Callback function triggered when files are selected or dropped.
844
- * Returns an array of selected File objects.
845
- */
846
- onFilesChange: (files: File[]) => void;
847
- /**
848
- * Optional width of the uploader component (e.g., '100%', '300px').
849
- */
850
- width?: number | string;
851
- /**
852
- * Indicates whether the component is in an error state.
853
- * Useful for providing visual feedback (e.g., red border).
854
- */
855
- hasError?: boolean;
856
- /**
857
- * Main title text displayed at the top of the uploader.
858
- */
859
- title: string;
860
- /**
861
- * Text displayed on the upload button or drag area.
862
- */
863
- buttonText: string;
864
- /**
865
- * Optional descriptive text displayed below the title or upload area.
866
- */
867
- description?: string;
868
- /**
869
- * Error message to display when `hasError` is true.
870
- */
871
- errorText?: string;
872
- /**
873
- * Enables the selection of multiple files when set to true.
874
- */
875
- isMultiple?: boolean;
876
- /**
877
- * Optional visual layout variant of the uploader (e.g., 'mobile' or 'desktop').
878
- */
879
- variant?: Variant_7;
880
- /**
881
- * List of allowed file extensions (e.g., ['jpg', 'png', 'pdf']).
882
- * Used to validate selected files before uploading.
883
- */
884
- allowedExtensions: string[];
885
- /**
886
- * List of allowed MIME types (e.g., ['image/jpeg', 'application/pdf']).
887
- * Used to validate selected files by MIME type.
888
- */
889
- allowedMimeTypes: string[];
890
- /**
891
- * Maximum allowed file size in megabytes (MB) for each individual file.
892
- * Files exceeding this size will be rejected.
893
- * @default 20
894
- */
895
- maxFileSize?: number;
896
- /**
897
- * Maximum number of files that can be selected or dropped.
898
- * Additional files will be ignored or rejected.
899
- * @default 5
900
- */
901
- maxCount?: number;
902
- /**
903
- * Custom CSS class name to apply additional or overridden styles.
904
- */
905
- className?: string;
906
- /**
907
- * If true, disables the uploader.
908
- * User interactions like selecting or dropping files will be blocked.
909
- */
910
- disabled?: boolean;
911
- }
912
-
913
- export declare const FileView: ({ file, rightIcon, onFileClick, onIconClick, className, style, }: FileViewProps) => JSX.Element;
914
-
915
- declare interface FileViewProps {
916
- /**
917
- * A single file to be displayed in the list.
918
- * Can include additional metadata.
919
- */
920
- file: ExtendedFile;
921
- /**
922
- * Optional icon displayed on the right side of each file item.
923
- */
924
- rightIcon?: ReactNode;
925
- /**
926
- * Callback triggered when a file item is clicked.
927
- * Receives the clicked file as an argument.
928
- */
929
- onFileClick?: (file: ExtendedFile) => void;
930
- /**
931
- * Callback triggered when the right icon is clicked.
932
- * Receives the index of the clicked file.
933
- */
934
- onIconClick?: () => void;
935
- /**
936
- * Optional width of the uploader component (e.g., '100%', '300px').
937
- */
938
- style?: CSSProperties;
939
- /**
940
- * Override or extend the styles applied to the component.
941
- */
942
- className?: string;
943
- }
944
-
945
- declare type FontStyle = {
946
- fontFamily: string;
947
- fontWeight: string;
948
- fontSize: string;
949
- lineHeight: string;
950
- letterSpacing: string;
951
- };
952
-
953
- export declare const FunctionButton: ({ variant, size, leftSection, rightSection, children, className, ...props }: FunctionButtonProps) => JSX.Element;
954
-
955
- export declare interface FunctionButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
956
- /**
957
- * The variant to use.
958
- */
959
- variant?: Variant_8;
960
- /**
961
- * The size to use.
962
- */
963
- size?: Size_7;
964
- /**
965
- * Element placed before the button text.
966
- */
967
- leftSection?: ReactNode;
968
- /**
969
- * Element placed after the button text.
970
- */
971
- rightSection?: ReactNode;
972
- /**
973
- * Override or extend the styles applied to the component.
974
- */
975
- className?: string;
976
- }
977
-
978
- export declare function getFontSize(size: unknown): string | undefined;
979
-
980
- export declare function getLineHeight(size: unknown): string | undefined;
981
-
982
- export declare function getRadius(size: unknown): string | undefined;
983
-
984
- export declare function getShadow(size: unknown): string | undefined;
985
-
986
- export declare function getSize(size: unknown, prefix?: string): string | undefined;
987
-
988
- export declare const Hinter: ({ maxLength, className, disabled, isFilled, hasError, hintText, isHintAlwaysShown, showCorrectHintIcon, showLengthHint, filledLength, style, }: HinterProps) => JSX.Element | null;
989
-
990
- export declare interface HinterProps {
991
- /**
992
- * Optional class to add to the root element.
993
- */
994
- className?: string;
995
- /**
996
- * If `true`, the component will be disabled.
997
- */
998
- disabled?: boolean;
999
- /**
1000
- * Indicates if the input it is hinting is filled.
1001
- */
1002
- isFilled?: boolean;
1003
- /**
1004
- * Indicates if the input it is hinting has an error.
1005
- */
1006
- hasError?: boolean;
1007
- /**
1008
- * The hint text to display.
1009
- */
1010
- hintText?: ReactNode;
1011
- /**
1012
- * If `true`, the hint will always be shown.
1013
- */
1014
- isHintAlwaysShown?: boolean;
1015
- /**
1016
- * If `true`, the correct hint icon will be shown (if the hint is always shown and the input is filled).
1017
- */
1018
- showCorrectHintIcon?: boolean;
1019
- /**
1020
- * If `true`, the length hint will be shown.
1021
- */
1022
- showLengthHint?: boolean;
1023
- /**
1024
- * The filled length of the input.
1025
- */
1026
- filledLength?: number;
1027
- /**
1028
- * The maximum length of the input.
1029
- */
1030
- maxLength?: number;
1031
- /**
1032
- * Additional styles for the component.
1033
- */
1034
- style?: CSSProperties;
1035
- }
1036
-
1037
- export declare interface IconProps extends SVGProps<SVGSVGElement> {
1038
- className?: string;
1039
- width?: string;
1040
- height?: string;
1041
- fill?: string;
1042
- }
1043
-
1044
- declare interface IMarks {
1045
- /**
1046
- * The label of the mark.
1047
- */
1048
- label: string;
1049
- /**
1050
- * The value of the mark.
1051
- */
1052
- value: number;
1053
- }
1054
-
1055
- export declare const InlineDatePicker: ({ value, onChange, onPickerChange, minDate, maxDate, className, isRange, options, withTime, pickerWidth, }: InlineDatePickerProps) => JSX.Element;
1056
-
1057
- /** Props for DatePicker (either single date or range) */
1058
- export declare type InlineDatePickerProps = SingleDatePickerProps | RangeDatePickerProps;
1059
-
1060
- export declare const Input: ({ isFilled, hintText, isHintAlwaysShown, showCorrectHintIcon, showLengthHint, filledLength, maxLength, style, fullWidth, ...props }: InputProps) => JSX.Element;
1061
-
1062
- export declare const InputDatePicker: ({ onClear, onChange, onBlur, value, isRange, withTime, maxDate, minDate, options, className, style, pickerWidth, ...props }: InputDatePickerProps) => JSX.Element;
1063
-
1064
- declare type InputDatePickerBaseProps = Omit<TimePickerProps, 'onClick' | 'onScroll' | 'value' | 'withConfirmationButton' | 'withHeader'> & Omit<InputProps, 'onChange' | 'value' | 'mask' | 'inputRegExp'>;
1065
-
1066
- export declare type InputDatePickerProps = InputDatePickerBaseProps & InlineDatePickerProps;
1067
-
1068
- export declare const InputMonthPicker: ({ value, isRange, disabledMonths, onClear, onChange, onBlur, options, style, className, pickerWidth, ...props }: InputMonthPickerProps) => JSX.Element;
1069
-
1070
- export declare interface InputMonthPickerProps extends Omit<InputProps, 'onChange' | 'value' | 'mask' | 'inputRegExp'>, MonthPickerProps {
1071
- }
1072
-
1073
- export declare const InputMonthYearPicker: ({ value, className, style, minYear, maxYear, disabledDates, options, isRange, onChange, onClear, onBlur, pickerWidth, ...props }: InputMonthYearPickerProps) => JSX.Element;
1074
-
1075
- export declare interface InputMonthYearPickerProps extends MonthYearPickerProps, Omit<InputProps, 'onChange' | 'value' | 'mask' | 'inputRegExp'> {
1076
- }
1077
-
1078
- export declare const InputOtp: ({ value, onChange, onPaste, onComplete, length, size, variant, hasError, disabled, className, inputClassName, mask, inputStyle, integerOnly, autoFocus, placeholder, }: InputOtpProps) => JSX.Element;
1079
-
1080
- export declare interface InputOtpProps {
1081
- /**
1082
- * Current OTP value as a single string
1083
- */
1084
- value: string;
1085
- /**
1086
- * Callback fired when OTP value changes
1087
- */
1088
- onChange: (code: string) => void;
1089
- /**
1090
- * Optional callback fired when a paste event occurs
1091
- */
1092
- onPaste?: (e: ClipboardEvent_2<HTMLInputElement>) => void;
1093
- /**
1094
- * Callback fired when all OTP inputs are filled
1095
- */
1096
- onComplete?: (code: string) => void;
1097
- /**
1098
- * Number of OTP input boxes to render (default: 4)
1099
- */
1100
- length?: number;
1101
- /**
1102
- * Visual style variant of the input boxes
1103
- */
1104
- variant?: Variant_18;
1105
- /**
1106
- * Size of the input boxes
1107
- */
1108
- size?: Size_18;
1109
- /**
1110
- * Whether the input boxes should display an error state
1111
- */
1112
- hasError?: boolean;
1113
- /**
1114
- * Additional class name for the root container
1115
- */
1116
- className?: string;
1117
- /**
1118
- * Additional class name for each input box
1119
- */
1120
- inputClassName?: string;
1121
- /**
1122
- * Disables all input boxes
1123
- */
1124
- disabled?: boolean;
1125
- /**
1126
- * Masks input characters (e.g., for password-style input)
1127
- */
1128
- mask?: boolean;
1129
- /**
1130
- * Restricts input to numeric digits only
1131
- */
1132
- integerOnly?: boolean;
1133
- /**
1134
- * Automatically focuses the first input box on mount
1135
- */
1136
- autoFocus?: boolean;
1137
- /**
1138
- * Inline style object for customizing each input box
1139
- */
1140
- inputStyle?: CSSProperties;
1141
- /**
1142
- * Placeholder text for each input box
1143
- */
1144
- placeholder?: string;
1145
- }
1146
-
1147
- export declare interface InputProps extends FieldProps, HinterProps {
1148
- }
1149
-
1150
- export declare const InputTimePicker: ({ onClick, onClear, onBlur, onScroll, value, minTime, maxTime, hoursStep, minutesStep, withHeader, withConfirmationButton, className, style, ...props }: InputTimePickerProps) => JSX.Element;
1151
-
1152
- export declare interface InputTimePickerProps extends TimePickerProps, Omit<InputProps, 'onClick' | 'onScroll' | 'value' | 'mask' | 'inputRegExp'> {
1153
- }
1154
-
1155
- export declare const InputYearPicker: ({ value, isRange, maxYear, minYear, disabledYears, onClear, onChange, onBlur, options, className, style, pickerWidth, ...props }: InputYearPickerProps) => JSX.Element;
1156
-
1157
- export declare interface InputYearPickerProps extends Omit<InputProps, 'onChange' | 'value' | 'mask' | 'inputRegExp'>, YearPickerProps {
1158
- }
1159
-
1160
- declare interface LabelProps {
1161
- /**
1162
- * Label text. The label is displayed above the slider on the left side.
1163
- */
1164
- label?: string | number;
1165
- /**
1166
- * Counter text. The counter is displayed above the slider on the right side.
1167
- */
1168
- counter?: string | number;
1169
- /**
1170
- * Disabled state. If `true`, the label and counter will be greyed out.
1171
- */
1172
- disabled?: boolean;
1173
- }
1174
-
1175
- export declare const ListItem: <T>({ isLoading, className, itemClassName, onSearch, onChangeList, customNoOptionsText, style, proportions, options, values, hasSearch, searchValue, searchPlaceholder, fullWidth, isCenteredContent, ...props }: ListItemProps<T>) => JSX.Element;
1176
-
1177
- export declare interface ListItemOptionType<T> {
1178
- /**
1179
- * Name of the option.
1180
- */
1181
- name?: string;
1182
- /**
1183
- * Value of the option.
1184
- */
1185
- value: T;
1186
- /**
1187
- * Secondary text of the option.
1188
- */
1189
- secondaryText?: string;
1190
- /**
1191
- * Label that will be displayed in the list item.
1192
- */
1193
- label: string;
1194
- /**
1195
- * Indicates if the option is disabled.
1196
- */
1197
- isDisabled?: boolean;
1198
- /**
1199
- * Left icon of the option.
1200
- */
1201
- leftIcon?: ReactNode;
1202
- /**
1203
- * Right icon of the option.
1204
- */
1205
- rightIcon?: ReactNode;
1206
- }
1207
-
1208
- export declare interface ListItemProps<T> extends HTMLAttributes<HTMLDivElement> {
1209
- /**
1210
- * Loading state of the list item.
1211
- */
1212
- isLoading?: boolean;
1213
- /**
1214
- * Class name for the list item.
1215
- */
1216
- className?: string;
1217
- /**
1218
- * Class name for the list item.
1219
- */
1220
- itemClassName?: string;
1221
- /**
1222
- * Proportions of the list item.
1223
- */
1224
- proportions?: Proportions_3;
1225
- /**
1226
- * Indicates if the content is centered.
1227
- */
1228
- isCenteredContent?: boolean;
1229
- /**
1230
- * Array of options to be displayed in the list.
1231
- */
1232
- options: ListItemOptionType<T>[];
1233
- /**
1234
- * Handler for changing the selected
1235
- * value(s) in the list.
1236
- **/
1237
- onChangeList: (value: T, option: ListItemOptionType<T>) => void;
1238
- /**
1239
- * Selected value(s) in the list.
1240
- */
1241
- values?: T | T[];
1242
- /**
1243
- * Indicates if the list item has a search input.
1244
- */
1245
- hasSearch?: boolean;
1246
- /**
1247
- * Value of the search input.
1248
- */
1249
- searchValue?: string;
1250
- /**
1251
- * Placeholder for the search input
1252
- **/
1253
- searchPlaceholder?: string;
1254
- /**
1255
- * Handler for the search input.
1256
- */
1257
- onSearch?: (searchText: string, event?: ChangeEvent<HTMLInputElement>) => void;
1258
- /**
1259
- * Custom text to be displayed when no options are available.
1260
- */
1261
- customNoOptionsText?: string;
1262
- /**
1263
- * Indicates if the list item should take up the full width.
1264
- */
1265
- fullWidth?: boolean;
1266
- }
1267
-
1268
- export declare const Loader: ({ variant, size }: LoaderProps) => JSX.Element;
1269
-
1270
- export declare interface LoaderProps {
1271
- /**
1272
- * Variant of the loader.
1273
- */
1274
- variant?: Variant_9;
1275
- /**
1276
- * Size of the loader.
1277
- */
1278
- size?: Size_8;
1279
- }
1280
-
1281
- export declare type Locale = 'ru' | 'en' | 'tj';
1282
-
1283
- declare class Localization {
1284
- private translations;
1285
- private locale;
1286
- private cache;
1287
- private ready;
1288
- constructor();
1289
- init(): Promise<void>;
1290
- load(locale: string): Promise<void>;
1291
- t(key: string): string;
1292
- }
1293
-
1294
- export declare const localization: Localization;
1295
-
1296
- declare interface MarksProps {
1297
- /**
1298
- * The minimum value of the slider. The slider will not be able to go below this value.
1299
- */
1300
- min?: number;
1301
- /**
1302
- * The maximum value of the slider. The slider will not be able to go above this value.
1303
- */
1304
- max?: number;
1305
- /**
1306
- * Marks indicate predetermined values to which the user can move the slider. Each mark should have a label and a value.
1307
- */
1308
- marks?: IMarks[];
1309
- /**
1310
- * Disabled state. If `true`, the marks will be greyed out.
1311
- */
1312
- disabled?: boolean;
1313
- }
1314
-
1315
- export declare const Menu: {
1316
- ({ trigger, children, size, offset, position, maxHeight, className, ...props }: MenuProps): JSX.Element;
1317
- Item: ({ children, disabled, onClick, leftIcon, rightIcon, secondaryText, }: MenuItemProps) => JSX.Element;
1318
- };
1319
-
1320
- declare interface MenuItemProps {
1321
- /**
1322
- * The content inside the menu item.
1323
- */
1324
- children: ReactNode;
1325
- /**
1326
- * Adds an icon to the left of the item.
1327
- */
1328
- leftIcon?: ReactNode;
1329
- /**
1330
- * Adds an icon to the right of the item.
1331
- */
1332
- rightIcon?: ReactNode;
1333
- /**
1334
- * Disables the menu item, preventing interaction.
1335
- */
1336
- disabled?: boolean;
1337
- /**
1338
- * A callback function triggered when the item is clicked.
1339
- */
1340
- onClick?: () => void;
1341
- /**
1342
- * Optional secondary text displayed alongside the main label.
1343
- */
1344
- secondaryText?: string;
1345
- }
1346
-
1347
- export declare interface MenuProps extends PopoverProps {
1348
- /**
1349
- * Maximum height of the menu in pixels.
1350
- */
1351
- maxHeight?: number;
1352
- /**
1353
- * Size of the menu
1354
- */
1355
- size?: Proportions_4;
1356
- /**
1357
- * The element that triggers the menu to open.
1358
- */
1359
- trigger: ReactNode;
1360
- /**
1361
- * Additional class names to apply to the menu.
1362
- */
1363
- className?: string;
1364
- }
1365
-
1366
- export declare const Modal: {
1367
- ({ children, onClose, isOpen, variant, className, withCloseButton, isCentered, isCloseOutside, zIndex, transitionProps, }: ModalProps): JSX.Element;
1368
- Header: ({ className, description, icon, title, align, }: ModalHeaderProps) => JSX.Element;
1369
- Content: ({ children, className }: ModalContentProps) => JSX.Element;
1370
- Actions: ({ children, className }: ModalActionsProps) => JSX.Element;
1371
- };
1372
-
1373
- declare interface ModalActionsProps extends PropsWithChildren {
1374
- /**
1375
- * Custom class name to apply additional styling to the modal actions.
1376
- */
1377
- className?: string;
1378
- }
1379
-
1380
- declare interface ModalContentProps extends PropsWithChildren {
1381
- /**
1382
- * Custom class name to apply additional styling to the modal content.
1383
- */
1384
- className?: string;
1385
- }
1386
-
1387
- declare interface ModalHeaderProps {
1388
- /**
1389
- * Custom class name to apply additional styling to the modal header.
1390
- */
1391
- className?: string;
1392
- /**
1393
- * Icon to display in the header.
1394
- */
1395
- icon?: ReactNode;
1396
- /**
1397
- * Title of the modal.
1398
- */
1399
- title?: string;
1400
- /**
1401
- * Description of the modal.
1402
- */
1403
- description?: string;
1404
- /**
1405
- * Aligns the content of the header.
1406
- */
1407
- align?: 'start' | 'center';
1408
- }
1409
-
1410
- export declare interface ModalProps extends BackdropProps {
1411
- /**
1412
- * Defines the modal style variant, such as desktop or mobile.
1413
- */
1414
- variant?: Variant_10;
1415
- /**
1416
- * Custom class name to apply additional styling to the modal.
1417
- */
1418
- className?: string;
1419
- /**
1420
- * If `true`, the modal will have a close button in the top right corner.
1421
- */
1422
- withCloseButton?: boolean;
1423
- /**
1424
- * Centers the modal on the screen. If `false`, the modal will be positioned at the top of the screen.
1425
- */
1426
- isCentered?: boolean;
1427
- }
1428
-
1429
- export declare type Mode = 'light' | 'dark';
1430
-
1431
- export declare const MonthPicker: ({ className, onChange, onPickerChange, value, isRange, disabledMonths, options, pickerWidth, }: MonthPickerProps) => JSX.Element;
1432
-
1433
- declare interface MonthPickerOption {
1434
- /**
1435
- * Display text for the month option.
1436
- */
1437
- text: string;
1438
- /**
1439
- * Value of the month option.
1440
- */
1441
- value: MonthValue;
1442
- }
1443
-
1444
- export declare interface MonthPickerProps {
1445
- /**
1446
- * Optional class name for custom styling.
1447
- */
1448
- className?: string;
1449
- /**
1450
- * Current value of the picker (single month or range).
1451
- */
1452
- value: MonthValue;
1453
- /**
1454
- * Callback triggered when the value changes via interaction.
1455
- */
1456
- onChange?: (value: MonthValue) => void;
1457
- /**
1458
- * Callback triggered specifically when picker selection changes.
1459
- */
1460
- onPickerChange?: (value: MonthValue) => void;
1461
- /**
1462
- * Enables range selection mode.
1463
- */
1464
- isRange?: boolean;
1465
- /**
1466
- * Array of months (1-12) that should be disabled (not selectable).
1467
- */
1468
- disabledMonths?: number[];
1469
- /**
1470
- * Optional array of custom options to display in the picker.
1471
- */
1472
- options?: MonthPickerOption[];
1473
- /**
1474
- * Sets a custom width for the picker (CSS value, e.g. '100%', '400px').
1475
- * If provided, overrides the default picker width.
1476
- */
1477
- pickerWidth?: string;
1478
- }
1479
-
1480
- declare type MonthValue = number | [number, number] | null;
1481
-
1482
- export declare const MonthYearPicker: ({ value, isRange, minYear, maxYear, onChange, onPickerChange, disabledDates, options, className, pickerWidth, }: MonthYearPickerProps) => JSX.Element;
1483
-
1484
- export declare interface MonthYearPickerProps {
1485
- /**
1486
- * The currently selected value.
1487
- * Can be a single value (string), a range ([string, string]), or null.
1488
- */
1489
- value: MonthYearPickerValue;
1490
- /**
1491
- * Enables range selection if true.
1492
- */
1493
- isRange?: boolean;
1494
- /**
1495
- * Minimum year allowed in the picker.
1496
- */
1497
- minYear?: number;
1498
- /**
1499
- * Maximum year allowed in the picker.
1500
- */
1501
- maxYear?: number;
1502
- /**
1503
- * Callback triggered when the value changes via user interaction.
1504
- */
1505
- onChange?: (val: MonthYearPickerValue) => void;
1506
- /**
1507
- * Callback triggered when the picker’s internal view changes
1508
- * (e.g., month/year navigation).
1509
- */
1510
- onPickerChange?: (val: MonthYearPickerValue) => void;
1511
- /**
1512
- * List of dates (formatted as strings) that should be disabled.
1513
- */
1514
- disabledDates?: string[];
1515
- /**
1516
- * Predefined list of options for quick selection.
1517
- */
1518
- options?: Option_2[];
1519
- /**
1520
- * Custom class name for styling.
1521
- */
1522
- className?: string;
1523
- /**
1524
- * Sets a custom width for the picker (CSS value, e.g. '100%', '400px').
1525
- * If provided, overrides the default picker width.
1526
- */
1527
- pickerWidth?: string;
1528
- }
1529
-
1530
- declare type MonthYearPickerValue = string | [string, string] | null;
1531
-
1532
- export declare const Navbar: ({ children, type, className, }: NavbarProps) => JSX.Element;
1533
-
1534
- export declare interface NavbarProps {
1535
- /**
1536
- * The content to be rendered inside the navbar, such as logos, menus, or buttons.
1537
- * This prop is required and defines what appears within the navbar.
1538
- */
1539
- children: ReactNode;
1540
- /**
1541
- * The visual style variant of the navbar.
1542
- * - 'default': A solid navbar with a background and subtle shadow.
1543
- * - 'with-border': A navbar with a solid background and a bottom border.
1544
- * - 'transparent': A navbar with no background, blending into its surroundings.
1545
- * Defaults to 'default' if not specified.
1546
- */
1547
- type?: 'default' | 'with-border' | 'transparent';
1548
- /** Determines whether the navbar should be fixed to the top of the viewport */
1549
- fixed?: boolean;
1550
- /**
1551
- * Additional CSS class to apply to the navbar.
1552
- */
1553
- className?: string;
1554
- }
1555
-
1556
- declare interface Option_2 {
1557
- text: string;
1558
- value: MonthYearPickerValue;
1559
- }
1560
-
1561
- declare type Orientation = 'vertical' | 'horizontal';
1562
-
1563
- declare interface OtherVariantProps extends BaseTabMenuProps {
1564
- /**
1565
- * The variant of the tabs. This controls the color and style of the tabs.
1566
- */
1567
- variant?: Exclude<Variant_15, 'text' | 'outline'>;
1568
- /**
1569
- * There is no divider for other variants.
1570
- */
1571
- divider?: never;
1572
- }
1573
-
1574
- export declare const OutlineFinanceAccounts: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1575
-
1576
- export declare const OutlineFinanceAnalytics: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1577
-
1578
- export declare const OutlineFinanceBank: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1579
-
1580
- export declare const OutlineFinanceBill: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1581
-
1582
- export declare const OutlineFinanceCardAdd: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1583
-
1584
- export declare const OutlineFinanceCardSalom: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1585
-
1586
- export declare const OutlineFinanceCardWebCheckout: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1587
-
1588
- export declare const OutlineFinanceCash: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1589
-
1590
- export declare const OutlineFinanceCashDollar: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1591
-
1592
- export declare const OutlineFinanceCoins: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1593
-
1594
- export declare const OutlineFinanceCreditCard: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1595
-
1596
- export declare const OutlineFinanceCurrencyDollar: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1597
-
1598
- export declare const OutlineFinanceCurrencyLira: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1599
-
1600
- export declare const OutlineFinanceCurrencyRuble: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1601
-
1602
- export declare const OutlineFinanceDeposit: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1603
-
1604
- export declare const OutlineFinanceDollar: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1605
-
1606
- export declare const OutlineFinanceDollarCoin: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1607
-
1608
- export declare const OutlineFinanceEuroCoin: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1609
-
1610
- export declare const OutlineFinanceLimits: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1611
-
1612
- export declare const OutlineFinanceMerch: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1613
-
1614
- export declare const OutlineFinanceMoney: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1615
-
1616
- export declare const OutlineFinanceOnline: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1617
-
1618
- export declare const OutlineFinancePercent: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1619
-
1620
- export declare const OutlineFinancePosTerminal: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1621
-
1622
- export declare const OutlineFinanceRubleCoin: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1623
-
1624
- export declare const OutlineFinanceSendCard: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1625
-
1626
- export declare const OutlineFinanceSendDoc: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1627
-
1628
- export declare const OutlineFinanceSomoniTjsCoin: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1629
-
1630
- export declare const OutlineFinanceStock: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1631
-
1632
- export declare const OutlineFinanceTerminal: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1633
-
1634
- export declare const OutlineFinanceTransfer: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1635
-
1636
- export declare const OutlineFinanceVisa: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1637
-
1638
- export declare const OutlineFinanceWallet: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1639
-
1640
- export declare const OutlineFinanceWalletPlus: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1641
-
1642
- export declare const OutlineFinanceWalletTransfer: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1643
-
1644
- export declare const OutlineFinanceYenYuanCoin: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1645
-
1646
- export declare const OutlineFinanceZP: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1647
-
1648
- export declare const OutlineNavigationArrowBack: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1649
-
1650
- export declare const OutlineNavigationArrowDown: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1651
-
1652
- export declare const OutlineNavigationArrowReturn: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1653
-
1654
- export declare const OutlineNavigationArrowUp: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1655
-
1656
- export declare const OutlineNavigationChevronDownSmall: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1657
-
1658
- export declare const OutlineNavigationChevronLeftSmall: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1659
-
1660
- export declare const OutlineNavigationChevronRightSmall: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1661
-
1662
- export declare const OutlineNavigationChevronUpSmall: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1663
-
1664
- export declare const OutlineNavigationDoubleLeft: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1665
-
1666
- export declare const OutlineNavigationDoubleRight: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1667
-
1668
- export declare const OutlineNavigationLeftArrow: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1669
-
1670
- export declare const OutlineNavigationLeftDown: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1671
-
1672
- export declare const OutlineNavigationRightArrow: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1673
-
1674
- export declare const OutlineNavigationRightTop: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1675
-
1676
- export declare const OutlineNavigationTrendingDown: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1677
-
1678
- export declare const OutlineNavigationTrendingUp: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1679
-
1680
- export declare const OutlineNavigationZoomOut: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1681
-
1682
- export declare const OutlineSystemAdd: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1683
-
1684
- export declare const OutlineSystemAdd2: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1685
-
1686
- export declare const OutlineSystemAlertCircle: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1687
-
1688
- export declare const OutlineSystemAll: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1689
-
1690
- export declare const OutlineSystemArticle: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1691
-
1692
- export declare const OutlineSystemBell: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1693
-
1694
- export declare const OutlineSystemBellOff: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1695
-
1696
- export declare const OutlineSystemBill: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1697
-
1698
- export declare const OutlineSystemBookOpen: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1699
-
1700
- export declare const OutlineSystemCalendar: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1701
-
1702
- export declare const OutlineSystemCalling: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1703
-
1704
- export declare const OutlineSystemCamera: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1705
-
1706
- export declare const OutlineSystemChat: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1707
-
1708
- export declare const OutlineSystemCheck: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1709
-
1710
- export declare const OutlineSystemCheckCircle: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1711
-
1712
- export declare const OutlineSystemCheckDouble: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1713
-
1714
- export declare const OutlineSystemClock: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1715
-
1716
- export declare const OutlineSystemClose: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1717
-
1718
- export declare const OutlineSystemConfities: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1719
-
1720
- export declare const OutlineSystemCopy: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1721
-
1722
- export declare const OutlineSystemDelete: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1723
-
1724
- export declare const OutlineSystemDoc: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1725
-
1726
- export declare const OutlineSystemDocEmpty: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1727
-
1728
- export declare const OutlineSystemDownload: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1729
-
1730
- export declare const OutlineSystemEdit: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1731
-
1732
- export declare const OutlineSystemEditAlt: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1733
-
1734
- export declare const OutlineSystemExpand: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1735
-
1736
- export declare const OutlineSystemEyeOff: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1737
-
1738
- export declare const OutlineSystemEyeOffAlt: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1739
-
1740
- export declare const OutlineSystemEyeOn: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1741
-
1742
- export declare const OutlineSystemFileAccept: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1743
-
1744
- export declare const OutlineSystemFileAdd: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1745
-
1746
- export declare const OutlineSystemFileError: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1747
-
1748
- export declare const OutlineSystemFilterFromLessToMore: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1749
-
1750
- export declare const OutlineSystemFilterFromMoreToLess: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1751
-
1752
- export declare const OutlineSystemFolder: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1753
-
1754
- export declare const OutlineSystemGame: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1755
-
1756
- export declare const OutlineSystemGridView: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1757
-
1758
- export declare const OutlineSystemGrowth: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1759
-
1760
- export declare const OutlineSystemHeadphones: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1761
-
1762
- export declare const OutlineSystemHeart: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1763
-
1764
- export declare const OutlineSystemHelpCircle: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1765
-
1766
- export declare const OutlineSystemHex: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1767
-
1768
- export declare const OutlineSystemHistory: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1769
-
1770
- export declare const OutlineSystemHome: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1771
-
1772
- export declare const OutlineSystemHomeFavourite: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1773
-
1774
- export declare const OutlineSystemIdea: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1775
-
1776
- export declare const OutlineSystemIn: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1777
-
1778
- export declare const OutlineSystemInfo: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1779
-
1780
- export declare const OutlineSystemIslam: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1781
-
1782
- export declare const OutlineSystemLanguage: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1783
-
1784
- export declare const OutlineSystemLink: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1785
-
1786
- export declare const OutlineSystemLink2: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1787
-
1788
- export declare const OutlineSystemListView: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1789
-
1790
- export declare const OutlineSystemLock: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1791
-
1792
- export declare const OutlineSystemMail: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1793
-
1794
- export declare const OutlineSystemMapPin: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1795
-
1796
- export declare const OutlineSystemMenu: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1797
-
1798
- export declare const OutlineSystemMistake: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1799
-
1800
- export declare const OutlineSystemMoon: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1801
-
1802
- export declare const OutlineSystemMoreHorizontal: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1803
-
1804
- export declare const OutlineSystemMoreVertical: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1805
-
1806
- export declare const OutlineSystemMove: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1807
-
1808
- export declare const OutlineSystemNavigation: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1809
-
1810
- export declare const OutlineSystemNews: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1811
-
1812
- export declare const OutlineSystemOut: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1813
-
1814
- export declare const OutlineSystemPaperclip: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1815
-
1816
- export declare const OutlineSystemPlus: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1817
-
1818
- export declare const OutlineSystemPlusRect: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1819
-
1820
- export declare const OutlineSystemPrinter: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1821
-
1822
- export declare const OutlineSystemRefresh: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1823
-
1824
- export declare const OutlineSystemRefreshCW: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1825
-
1826
- export declare const OutlineSystemRemove: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1827
-
1828
- export declare const OutlineSystemRemoveCircle: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1829
-
1830
- export declare const OutlineSystemRepeat: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1831
-
1832
- export declare const OutlineSystemResize: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1833
-
1834
- export declare const OutlineSystemSearch: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1835
-
1836
- export declare const OutlineSystemSend: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1837
-
1838
- export declare const OutlineSystemSettings: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1839
-
1840
- export declare const OutlineSystemShippingAndDelivery: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1841
-
1842
- export declare const OutlineSystemShoppingBasket: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1843
-
1844
- export declare const OutlineSystemSidebar: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1845
-
1846
- export declare const OutlineSystemSignature: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1847
-
1848
- export declare const OutlineSystemSlash: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1849
-
1850
- export declare const OutlineSystemSmartphone: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1851
-
1852
- export declare const OutlineSystemSmile: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1853
-
1854
- export declare const OutlineSystemStar: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1855
-
1856
- export declare const OutlineSystemSun: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1857
-
1858
- export declare const OutlineSystemSurvey: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1859
-
1860
- export declare const OutlineSystemTariffs: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1861
-
1862
- export declare const OutlineSystemTelegram: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1863
-
1864
- export declare const OutlineSystemTrash: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1865
-
1866
- export declare const OutlineSystemTune: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1867
-
1868
- export declare const OutlineSystemUnlock: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1869
-
1870
- export declare const OutlineSystemUpload: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1871
-
1872
- export declare const OutlineSystemUploadCloud: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1873
-
1874
- export declare const OutlineSystemUser: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1875
-
1876
- export declare const OutlineSystemUserAdd: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1877
-
1878
- export declare const OutlineSystemUsers: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1879
-
1880
- export declare const OutlineSystemWifiOff: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
1881
-
1882
- export declare type Padding = 'px' | '0-5' | '1' | '1-5' | '2' | '2-5' | '3' | '3-5' | '4' | '5' | '6' | '8' | '10' | '12' | '16' | '20' | '24' | '32' | '48';
1883
-
1884
- export declare const Pagination: ({ onPageChange, onPageSizeChange, totalCount, pageOptions, currentPage, pageSize, size, variant, className, rounded, showInputPage, showFirstLastButton, showPages, }: PaginationProps) => JSX.Element | null;
1885
-
1886
- export declare interface PaginationProps {
1887
- /**
1888
- * Function to call when the current page is changed.
1889
- */
1890
- onPageChange: (page: number) => void;
1891
- /**
1892
- * Function to call when the page size (number of items per page) is changed.
1893
- */
1894
- onPageSizeChange?: (size: number) => void;
1895
- /**
1896
- * Total number of items or records that the pagination component handles.
1897
- */
1898
- totalCount: number;
1899
- /**
1900
- * The current active page in the pagination component.
1901
- */
1902
- currentPage: number;
1903
- /**
1904
- * The number of items to display per page.
1905
- */
1906
- pageSize: number;
1907
- /**
1908
- * An array of numbers representing the available options for the number of items per page.
1909
- */
1910
- pageOptions?: number[];
1911
- /**
1912
- * Custom class name to apply additional styling to the pagination component.
1913
- */
1914
- className?: string;
1915
- /**
1916
- * Determines the size of the pagination component.
1917
- */
1918
- size?: Size_9;
1919
- /**
1920
- * Defines the style or layout of the pagination component.
1921
- * `default` - A list of page numbers with navigation buttons. Full text labels for navigation buttons.
1922
- * `compact` - A more compact version of the pagination component. No text labels for navigation buttons.
1923
- * `mobile` - A mobile-friendly version of the pagination component. No list of page numbers.
1924
- */
1925
- variant?: Variant_11;
1926
- /**
1927
- * if `true`, the list of page numbers will have rounded corners.
1928
- */
1929
- rounded?: boolean;
1930
- /**
1931
- * Determines whether an input field for navigating to a specific page is displayed.
1932
- */
1933
- showInputPage?: boolean;
1934
- /**
1935
- * Toggles the visibility of buttons for navigating to the first and last pages.
1936
- */
1937
- showFirstLastButton?: boolean;
1938
- /**
1939
- * Controls whether page numbers are displayed in the pagination component.
1940
- */
1941
- showPages?: boolean;
1942
- }
1943
-
1944
- declare interface PaperProps extends BaseHTMLAttributes<HTMLDivElement> {
1945
- /**
1946
- * Border radius of the paper.
1947
- */
1948
- borderRadius?: string;
1949
- /**
1950
- * Horizontal padding of the paper.
1951
- */
1952
- px?: Padding;
1953
- /**
1954
- * Vertical padding of the paper.
1955
- */
1956
- py?: Padding;
1957
- /**
1958
- * Padding of the paper.
1959
- */
1960
- p?: Padding;
1961
- /**
1962
- * Rounded corners of the paper.
1963
- */
1964
- rounded?: Radius;
1965
- /**
1966
- * Margin of the paper.
1967
- */
1968
- m?: CSSProperties['margin'];
1969
- /**
1970
- * Top margin of the paper.
1971
- */
1972
- mt?: CSSProperties['marginTop'];
1973
- /**
1974
- * Right margin of the paper.
1975
- */
1976
- mr?: CSSProperties['marginRight'];
1977
- /**
1978
- * Bottom margin of the paper.
1979
- */
1980
- mb?: CSSProperties['marginBottom'];
1981
- /**
1982
- * Left margin of the paper.
1983
- */
1984
- ml?: CSSProperties['marginLeft'];
1985
- }
1986
-
1987
- export declare const Picker: ({ className, allowTime, timeControl, allowSeconds, allowPeriod, allowDay, allowMonth, allowYear, isRange, values, onDateChange, dateOptions, ...props }: PickerProps) => JSX.Element;
1988
-
1989
- /**
1990
- * Represents a single option item in a picker.
1991
- *
1992
- * @template T - The type of the option value.
1993
- */
1994
- declare interface PickerOption<T> {
1995
- /**
1996
- * Text to display for the option.
1997
- */
1998
- text: string;
1999
- /**
2000
- * Value associated with the option.
2001
- */
2002
- value: T;
2003
- }
2004
-
2005
- export declare interface PickerProps extends HTMLAttributes<HTMLDivElement> {
2006
- /**
2007
- * Override or extend the styles applied to the component.
2008
- */
2009
- className?: string;
2010
- /**
2011
- * If `true`, the date picker will be displayed with a time picker.
2012
- */
2013
- allowTime?: boolean;
2014
- /**
2015
- * If timeControl is `true`, then the time picker will be displayed as a controlled time calendar.
2016
- * If timeControl is `false`, then the time picker will be displayed as a list of time values from 00:00 to 23:45 with 15 minutes interval.
2017
- */
2018
- timeControl?: boolean;
2019
- /**
2020
- * If allowSeconds is `true`, then the time picker will be displayed with seconds.
2021
- * If allowSeconds is `false`, then the time picker will be displayed without seconds.
2022
- * Does not work if timeControl is `false`.
2023
- */
2024
- allowSeconds?: boolean;
2025
- /**
2026
- * If allowPeriod is `true`, then the time picker will be displayed with AM/PM period and 12-hour format.
2027
- * If allowPeriod is `false`, then the time picker will be displayed with 24-hour format.
2028
- * Does not work if timeControl is `false`.
2029
- */
2030
- allowPeriod?: boolean;
2031
- /**
2032
- * If allowDay is `true`, then the day picker will be displayed.
2033
- * If allowDay is `false`, you can't select the day.
2034
- */
2035
- allowDay?: boolean;
2036
- /**
2037
- * If allowMonth is `true`, then the month picker will be displayed.
2038
- * If allowMonth is `false`, you can't select the month.
2039
- */
2040
- allowMonth?: boolean;
2041
- /**
2042
- * If allowYear is `true`, then the year picker will be displayed.
2043
- * If allowYear is `false`, you can't select the year.
2044
- */
2045
- allowYear?: boolean;
2046
- /**
2047
- * DateOptions is a list of predefined date options that can be selected by the user for instant selection.
2048
- */
2049
- dateOptions?: DateOption[];
2050
- /**
2051
- * The selected date value(s).
2052
- */
2053
- values: Date | Date[] | null;
2054
- /**
2055
- * The type of the date picker.
2056
- * If isRange is `true`, then values should be an array of two Date objects.
2057
- * If isRange is `false`, then values should be a Date object.
2058
- */
2059
- isRange?: boolean;
2060
- /**
2061
- * Callback function that will be triggered when the date value is changed.
2062
- */
2063
- onDateChange: (date: Date | Date[] | null) => void;
2064
- }
2065
-
2066
- declare interface PlacementProps extends PositionProps {
2067
- zIndex?: number | string;
2068
- }
2069
-
2070
- export declare const Popover: {
2071
- ({ children, offset, position, isOpen: isOpenControlled, onChange, onClose, withArrow, width, zIndex, isFixed, transitionProps, }: PopoverProps): JSX.Element;
2072
- Trigger: ({ children, className, style, ...props }: PopoverTriggerProps) => JSX.Element;
2073
- Dropdown: ({ children, className, style, }: PopoverDropdownProps) => JSX.Element;
2074
- };
2075
-
2076
- declare interface PopoverDropdownProps {
2077
- /**
2078
- * The content to be rendered inside the popover dropdown.
2079
- */
2080
- children: default_2.ReactNode;
2081
- /**
2082
- * Additional class names to apply to the dropdown.
2083
- */
2084
- className?: string;
2085
- /**
2086
- * Inline styles to apply to the dropdown.
2087
- */
2088
- style?: CSSProperties;
2089
- }
2090
-
2091
- export declare interface PopoverProps {
2092
- /**
2093
- * The content to be displayed.
2094
- */
2095
- children: ReactNode;
2096
- /**
2097
- * Position of the popover relative to the trigger.
2098
- */
2099
- position?: Position;
2100
- /**
2101
- * Offset in pixels from the trigger.
2102
- */
2103
- offset?: number;
2104
- /**
2105
- * Dropdown isOpen state can be controlled from outside.
2106
- */
2107
- isOpen?: boolean;
2108
- /**
2109
- * Callback to be called to change the isOpen state.
2110
- */
2111
- onChange?: (isOpen: boolean) => void;
2112
- /**
2113
- * Callback to be called when the popover is closed.
2114
- */
2115
- onClose?: () => void;
2116
- /**
2117
- * If `true`, the popover will have an arrow pointing to the trigger element.
2118
- */
2119
- withArrow?: boolean;
2120
- /**
2121
- * Dropdown width, or `'trigger'` to make dropdown width the same as target element, 'max-content' by default.
2122
- **/
2123
- width?: number | string;
2124
- /**
2125
- * Z-index of the popover.
2126
- * Defaults to `300` (value from getDefaultZIndex('popover')). This can be overridden to ensure the popover appears above other elements.
2127
- */
2128
- zIndex?: string | number;
2129
- /**
2130
- * Custom style for the popover.
2131
- */
2132
- style?: CSSProperties;
2133
- /**
2134
- * Props to customize the popover's transition
2135
- */
2136
- transitionProps?: Omit<TransitionProps, 'mounted' | 'children'>;
2137
- /**
2138
- * Optional prop to indicate if the popover should be fixed
2139
- */
2140
- isFixed?: boolean;
2141
- }
2142
-
2143
- declare interface PopoverTriggerProps extends default_2.HTMLAttributes<HTMLDivElement> {
2144
- /**
2145
- * The content to be rendered as the popover trigger.
2146
- */
2147
- children: ReactNode;
2148
- /**
2149
- * Additional class names to apply to the popover trigger.
2150
- */
2151
- className?: string;
2152
- /**
2153
- * Inline styles to apply to the popover trigger.
2154
- */
2155
- style?: CSSProperties;
2156
- }
2157
-
2158
- export declare const Portal: ({ children, placement, isFixed, }: PortalProps) => default_2.ReactPortal;
2159
-
2160
- export declare interface PortalProps {
2161
- /**
2162
- * The children to render in the portal
2163
- */
2164
- children: ReactNode;
2165
- /**
2166
- * The position of the portal
2167
- */
2168
- placement: PlacementProps;
2169
- /**
2170
- * Optional prop to indicate if the popover should be fixed
2171
- */
2172
- isFixed?: boolean;
2173
- }
2174
-
2175
- export declare type Position = 'top' | 'top-start' | 'top-end' | 'right' | 'right-start' | 'right-end' | 'bottom' | 'bottom-start' | 'bottom-end' | 'left' | 'left-start' | 'left-end';
2176
-
2177
- declare type Position_2 = 'right' | 'left' | 'top' | 'bottom';
2178
-
2179
- declare interface PositionProps {
2180
- /**
2181
- * The left position of the element
2182
- */
2183
- left: number;
2184
- /**
2185
- * The top position of the element
2186
- */
2187
- top: number;
2188
- }
2189
-
2190
- export declare const ProgressBar: ({ className, style, size, value, ...props }: ProgressBarProps) => JSX.Element;
2191
-
2192
- export declare interface ProgressBarProps extends HTMLAttributes<HTMLDivElement> {
2193
- /**
2194
- * The size of the progress bar
2195
- */
2196
- size?: Size_10;
2197
- /**
2198
- * The value of the progress bar. Should be between 0 and 100.
2199
- */
2200
- value: number;
2201
- }
2202
-
2203
- declare type Proportions = 'l' | 'm' | 's';
2204
-
2205
- declare type Proportions_2 = 'l' | 'm' | 's';
2206
-
2207
- declare type Proportions_3 = 'm' | 'l';
2208
-
2209
- declare type Proportions_4 = 'm' | 'l';
2210
-
2211
- declare type Proportions_5 = 'l' | 'm' | 's';
2212
-
2213
- declare type Proportions_6 = 'l' | 'm' | 's';
2214
-
2215
- export declare const Radio: ({ label, description, className, disabled, checked, onChange, value, size, variant, ...props }: RadioProps) => JSX.Element;
2216
-
2217
- export declare const RadioGroup: ({ value, onChange, children, name, orientation, className, size, disabled, defaultValue, variant, }: RadioGroupProps) => JSX.Element;
2218
-
2219
- export declare interface RadioGroupProps {
2220
- /**
2221
- * The value of the selected radio button.
2222
- */
2223
- value?: string | null;
2224
- /**
2225
- * The default value of the selected radio button.
2226
- */
2227
- defaultValue?: string | null;
2228
- /**
2229
- * Function to call when the radio is clicked.
2230
- */
2231
- onChange?: (value: string, e?: ChangeEvent<HTMLInputElement>) => void;
2232
- /**
2233
- * The size of the radio buttons.
2234
- */
2235
- size?: Size_11;
2236
- /**
2237
- * The name of the radio group.
2238
- */
2239
- name?: string;
2240
- /**
2241
- * If `true`, the radio group will be read-only.
2242
- */
2243
- readOnly?: boolean;
2244
- /**
2245
- * The content of the radio group.
2246
- */
2247
- children: ReactElement<RadioProps>[];
2248
- /**
2249
- * The layout orientation of the radio group.
2250
- */
2251
- orientation?: Orientation;
2252
- /**
2253
- * Additional class name for the radio group.
2254
- */
2255
- className?: string;
2256
- /**
2257
- * If `true`, the radio group will be disabled.
2258
- */
2259
- disabled?: boolean;
2260
- /**
2261
- * The variant of the radio buttons.
2262
- */
2263
- variant?: Variant_12;
2264
- }
2265
-
2266
- export declare interface RadioProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'size' | 'onChange'> {
2267
- /**
2268
- * The variant of the radio button.
2269
- */
2270
- variant?: Variant_12;
2271
- /**
2272
- * The label of the radio button.
2273
- */
2274
- label?: string;
2275
- /**
2276
- * The description of the radio button. The description is displayed below the label.
2277
- */
2278
- description?: string;
2279
- /**
2280
- * The size of the radio button.
2281
- */
2282
- size?: Size_11;
2283
- /**
2284
- * Function to call when the radio is clicked.
2285
- */
2286
- onChange?: (value: string, e?: ChangeEvent<HTMLInputElement>) => void;
2287
- /**
2288
- * The value of the radio button.
2289
- */
2290
- value: string;
2291
- }
2292
-
2293
- export declare type Radius = 'none' | '2' | '3' | '4' | '6' | '8' | '10' | '12' | '14' | '16' | '20' | '24' | '32' | 'full';
2294
-
2295
- /**
2296
- * Props for date-range selection
2297
- */
2298
- declare type RangeDatePickerProps = BaseDatePickerProps & {
2299
- /** Enables range selection */
2300
- isRange: true;
2301
- /** Selected date range */
2302
- value: [Date, Date] | null;
2303
- /** Callback when the range changes */
2304
- onChange: (val: [Date, Date] | null) => void;
2305
- /** Predefined options for quick range selection */
2306
- options?: PickerOption<[Date, Date]>[];
2307
- /** Time selection is not supported in range mode */
2308
- withTime?: never;
2309
- };
2310
-
2311
- export declare const RangeSlider: ({ min, max, step, disabled, value, onChange, counter, label, withTooltip, marks, }: RangeSliderProps) => JSX.Element;
2312
-
2313
- export declare interface RangeSliderProps extends SliderCommonProps {
2314
- /**
2315
- * The `value` of the RangeSlider. It should be an object with `min` and `max` properties.
2316
- */
2317
- value: {
2318
- min: number;
2319
- max: number;
2320
- };
2321
- /**
2322
- * The `onChange` function is called when the value of the RangeSlider changes.
2323
- */
2324
- onChange: (prop: {
2325
- min: number;
2326
- max: number;
2327
- }) => void;
2328
- }
2329
-
2330
- export declare const Rating: ({ size, variant, value, onChange, className, filledIcon, defaultIcon, }: RatingProps) => JSX.Element;
2331
-
2332
- export declare interface RatingProps {
2333
- /**
2334
- * The size of the rating component.
2335
- */
2336
- size?: Size_12;
2337
- /**
2338
- * The variant of the rating component.
2339
- * - `outline`: Stars are outlined.
2340
- * - `solid`: Stars are solid.
2341
- */
2342
- variant?: Variant_13;
2343
- /**
2344
- * The current rating value.
2345
- */
2346
- value: number;
2347
- /**
2348
- * Callback function triggered when the rating changes.
2349
- * @param value - The new rating value.
2350
- */
2351
- onChange: (value: number) => void;
2352
- /**
2353
- * Custom class names for root.
2354
- */
2355
- className?: string;
2356
- /**
2357
- * Custom icons for different states of the stars
2358
- */
2359
- filledIcon?: ReactNode;
2360
- /**
2361
- * Custom icons for different states of the stars
2362
- */
2363
- defaultIcon?: ReactNode;
2364
- }
2365
-
2366
- export declare const resolveTypography: <C extends TypographyCategory>(category: C, proportion: TypographyProportions[C]) => FontStyle;
2367
-
2368
- declare type RowSpacing = 'xl' | 'l' | 'm' | 's';
2369
-
2370
- export declare const RuFlag: ({ height, width, ...props }: IconProps) => JSX.Element;
2371
-
2372
- export declare const Search: ({ disabled, style, variant, withIcon, fullWidth, keepLabel, proportions, className, ...props }: SearchProps) => JSX.Element;
2373
-
2374
- export declare const SearchAccent: ({ className, disabled, onSearch, style, fullWidth, proportions, keepLabel, ...props }: SearchAccentProps) => JSX.Element;
2375
-
2376
- export declare interface SearchAccentProps extends Omit<SearchProps, 'withIcon' | 'variant' | 'label'> {
2377
- /**
2378
- * The Label of the search input.
2379
- */
2380
- label: string;
2381
- /**
2382
- * If `true`, the input will be full width.
2383
- */
2384
- fullWidth?: boolean;
2385
- /**
2386
- * The function triggered on clear button click.
2387
- */
2388
- onClear?: () => void;
2389
- /**
2390
- * The function triggered on search button click.
2391
- */
2392
- onSearch?: () => void;
2393
- /**
2394
- * The size of the search component.
2395
- */
2396
- proportions?: Proportions_6;
2397
- /**
2398
- * If `true`, the input label will be displayed even when the input is focused.
2399
- */
2400
- keepLabel?: boolean;
2401
- }
2402
-
2403
- export declare interface SearchProps extends InputHTMLAttributes<HTMLInputElement> {
2404
- /**
2405
- * The variant of the search component.
2406
- */
2407
- variant?: Variant_14;
2408
- /**
2409
- * The label of the search component.
2410
- */
2411
- label?: string;
2412
- /**
2413
- * Function triggered when the clear button is clicked.
2414
- */
2415
- onClear?: () => void;
2416
- /**
2417
- * The size of the search component.
2418
- */
2419
- proportions?: Proportions_5;
2420
- /**
2421
- * If `true`, the search component will take up the full width of its container.
2422
- */
2423
- fullWidth?: boolean;
2424
- /**
2425
- * If `false`, the search component will not have an icon.
2426
- */
2427
- withIcon?: boolean;
2428
- /**
2429
- * If `true`, the label will be displayed even when the input is focused.
2430
- */
2431
- keepLabel?: boolean;
2432
- }
2433
-
2434
- export declare const SegmentedControl: ({ className, tabs, value, defaultValue, onChange, rounded, size, variant, fullWidth, disabled, }: SegmentedControlProps) => JSX.Element;
2435
-
2436
- export declare interface SegmentedControlProps {
2437
- /**
2438
- * The tabs to be rendered in the segmented control.
2439
- */
2440
- tabs: TabItem[];
2441
- /**
2442
- * The default value of the segmented control. This is used when the `value` prop is not provided.
2443
- */
2444
- defaultValue?: string;
2445
- /**
2446
- * If `true`, the segmented control is disabled and cannot be interacted with.
2447
- */
2448
- disabled?: boolean;
2449
- /**
2450
- * If `true`, the segmented control will take up the full width of its container.
2451
- */
2452
- fullWidth?: boolean;
2453
- /**
2454
- * The class name to apply to the segmented control.
2455
- */
2456
- className?: string;
2457
- /**
2458
- * If `true`, the tabs will be rounded.
2459
- */
2460
- rounded?: boolean;
2461
- /**
2462
- * The size of the tabs.
2463
- */
2464
- size?: Size_13;
2465
- /**
2466
- * The variant of the tabs. This controls the color and style of the tabs.
2467
- */
2468
- variant?: Exclude<Variant_15, 'text' | 'outline'>;
2469
- /**
2470
- * The function to call when the selected tab changes.
2471
- */
2472
- onChange: (value: string) => void;
2473
- /**
2474
- * The value of the segmented control. This is used to control the selected tab.
2475
- */
2476
- value?: string;
2477
- }
2478
-
2479
- export declare const Select: <T>({ onChange, value, onSearch, onSearchList, className, fullWidth, style, id, name, searchValue: searchValueList, searchPlaceholder, customNoOptionsText, isCenteredContent, itemClassName, hasSearch, options, proportions, keepLabel, filterable, showClearIcon, isLoading, onBlur, disabled, disableClientFilter, ...props }: SelectProps<T>) => JSX.Element;
2480
-
2481
- declare type SelectionType = 'single' | 'multiple';
2482
-
2483
- export declare const SelectMultiple: <T>({ onChange, values, label, placeholder, hasError, onSearch, onSearchList, className, style, id, name, searchValue: searchValueList, searchPlaceholder, customNoOptionsText, isCenteredContent, itemClassName, hasSearch, disabled, keepLabel, options, proportions, isStayOpenAfterSelection, isClearTextAfterSelection, fullWidth, filterable, isLoading, onBlur, disableClientFilter, ...hintProps }: SelectMultipleProps<T>) => JSX.Element;
2484
-
2485
- export declare interface SelectMultipleProps<T> extends Omit<SelectProps<T>, 'onChange' | 'value' | 'options'> {
2486
- /**
2487
- * The selected values of the SelectMultiple component.
2488
- * **Note:** This can be a primitive value or an object of type `ListItemOptionType`.
2489
- * Use value of `ListItemOptionType` type when implementing server-side filtering.
2490
- * In such cases, the selected values might not be present in the `options` array,
2491
- * which prevents the component from displaying the selected labels.
2492
- * To handle this, pass the full objects to `values`.
2493
- */
2494
- values: string[] | number[] | ValIsObject[];
2495
- /**
2496
- * Callback function triggered when the selected values change.
2497
- */
2498
- onChange: (values: string[] | number[] | ValIsObject[], options?: ValIsObject[]) => void;
2499
- options: ValIsObject[];
2500
- /**
2501
- * Indicates if the ListItem is open after selection.
2502
- */
2503
- isStayOpenAfterSelection?: boolean;
2504
- /**
2505
- * Indicates if the text in the input should be cleared after selection.
2506
- */
2507
- isClearTextAfterSelection?: boolean;
2508
- }
2509
-
2510
- export declare const SelectorInput: <T>({ inputProps, selectorProps, disabled, showIcon, showLabel, size, variant, }: SelectorInputProps<T>) => JSX.Element;
2511
-
2512
- export declare interface SelectorInputProps<T> {
2513
- /**
2514
- * Props for the input part of the SelectorInput.
2515
- * This includes standard input settings such as label, placeholder, value, etc.
2516
- * Omits proportions and disabled to control them via SelectorInput directly.
2517
- */
2518
- inputProps?: Omit<InputProps, 'proportions' | 'disabled'>;
2519
- /**
2520
- * Props for the dropdown/select part of the SelectorInput.
2521
- * Combines the basic ListItemProps<T> with additional custom properties.
2522
- */
2523
- selectorProps?: ListItemProps<T> & {
2524
- /**
2525
- * If true, disables the selector so the user cannot interact with it.
2526
- */
2527
- disabled?: boolean;
2528
- };
2529
- /**
2530
- * If true, shows additional secondary text (e.g., country name)
2531
- * next to the primary label (e.g., country code).
2532
- */
2533
- showLabel?: boolean;
2534
- /**
2535
- * If true, shows an icon next to the selector input.
2536
- */
2537
- showIcon?: boolean;
2538
- /**
2539
- * Visual style variant for the selector input. 'primary' or 'secondary'.
2540
- */
2541
- variant?: Variant_19;
2542
- /**
2543
- * Size variant for the selector input. 'l', 'm', or 's'.
2544
- */
2545
- size?: Size_19;
2546
- /**
2547
- * If true, disables the entire SelectorInput component.
2548
- */
2549
- disabled?: boolean;
2550
- }
2551
-
2552
- export declare interface SelectProps<T> extends HinterProps {
2553
- /**
2554
- * The selected value of the select component.
2555
- * **Note:** This can be a primitive value of type `T` or an object of type `ListItemOptionType`.
2556
- * Use value of `ListItemOptionType` type when implementing server-side filtering.
2557
- * In such cases, the selected value might not be present in the `options` array,
2558
- * which prevents the component from displaying the selected label.
2559
- * To handle this, pass the full object to `value`.
2560
- *
2561
- */
2562
- value: T | ValIsObject | null;
2563
- /**
2564
- * Callback function triggered when the selected value changes.
2565
- */
2566
- onChange: (value: T | null, option: ListItemOptionType<T> | ValIsObject | null) => void;
2567
- /**
2568
- * List of options to display in the select dropdown.
2569
- */
2570
- options: ListItemOptionType<T>[] | ValIsObject[];
2571
- /**
2572
- * Label for the select component.
2573
- */
2574
- label?: string;
2575
- /**
2576
- * Placeholder text when no value is selected.
2577
- */
2578
- placeholder?: string;
2579
- /**
2580
- * If `true`, the select component will take the full width of its container.
2581
- */
2582
- fullWidth?: boolean;
2583
- /**
2584
- * The size of the select component.
2585
- */
2586
- proportions?: Proportions_2;
2587
- /**
2588
- * If `true`, the select component behaves as auto-complete. This means the values will be filtered based on the input.
2589
- */
2590
- filterable?: boolean;
2591
- /**
2592
- * Callback function triggered when the user types in the search input.
2593
- */
2594
- onSearch?: (value: string, event?: ChangeEvent<HTMLInputElement>) => void;
2595
- /**
2596
- * Callback function triggered when the user types in the search input of the listItem.
2597
- */
2598
- onSearchList?: (searchText: string, event?: ChangeEvent<HTMLInputElement>) => void;
2599
- /**
2600
- * Style object for custom styling.
2601
- */
2602
- style?: CSSProperties;
2603
- /**
2604
- * The id attribute of the select component.
2605
- */
2606
- id?: string;
2607
- /**
2608
- * The name attribute of the select component.
2609
- */
2610
- name?: string;
2611
- /**
2612
- * If `true`, the listItem will have a search input.
2613
- */
2614
- hasSearch?: boolean;
2615
- /**
2616
- * Whether the label should be kept when the field is focused.
2617
- */
2618
- keepLabel?: boolean;
2619
- /**
2620
- * The value of the search input in the listItem.
2621
- */
2622
- searchValue?: string;
2623
- /**
2624
- * The placeholder text for the search input in the listItem.
2625
- */
2626
- searchPlaceholder?: string;
2627
- /**
2628
- * Custom text to display when there are no options available. If not provided, a default message will be shown.
2629
- * Please note that the default message may vary based on language settings.
2630
- */
2631
- customNoOptionsText?: string;
2632
- /**
2633
- * Indicates if the content of the listItem is centered.
2634
- */
2635
- isCenteredContent?: boolean;
2636
- /**
2637
- * Class name for the list item.
2638
- */
2639
- itemClassName?: string;
2640
- /**
2641
- * Indicates if the search input is with clear icon.
2642
- */
2643
- showClearIcon?: boolean;
2644
- /**
2645
- * If `true` the select component will be in loading state.
2646
- */
2647
- isLoading?: boolean;
2648
- /**
2649
- * Callback function triggered when the select component is blurred.
2650
- */
2651
- onBlur?: FocusEventHandler<HTMLDivElement>;
2652
- /**
2653
- * To support server-side filtering, set this to `true`.
2654
- */
2655
- disableClientFilter?: boolean;
2656
- }
2657
-
2658
- declare type ShadowLevel = 'xs' | 's' | 'm' | 'l' | 'xl';
2659
-
2660
- export declare const Sidebar: {
2661
- ({ size, variant, children, showControlButton, type, hideScrollbar, className, }: SidebarProps): JSX.Element;
2662
- Items: ({ children }: SidebarItemsProps) => JSX.Element;
2663
- Item: ({ children, icon, isCollapseParent, count, path, active, onClick, }: SidebarItemProps) => JSX.Element;
2664
- Collapse: ({ children, icon, label, isCollapse, collapseVariant, showArrowIcon, count, index, }: SidebarCollapseProps) => JSX.Element;
2665
- HeaderSection: ({ children, logo }: SidebarHeaderProps) => JSX.Element;
2666
- BottomSection: ({ children }: SidebarBottomProps) => JSX.Element;
2667
- Element: ({ children, icon }: SidebarElementProps) => JSX.Element;
2668
- };
2669
-
2670
- declare interface SidebarBottomProps {
2671
- /**
2672
- * The content of the sidebar bottom.
2673
- */
2674
- children: ReactNode;
2675
- }
2676
-
2677
- declare interface SidebarCollapseProps {
2678
- /**
2679
- * The content of the collapse.
2680
- */
2681
- children: ReactNode;
2682
- /**
2683
- * The icon to be displayed on the collapse button.
2684
- */
2685
- icon?: ReactNode;
2686
- /**
2687
- * The text to be displayed on the collapse button.
2688
- */
2689
- label: string;
2690
- /**
2691
- * The variant of the collapse button. If `group`, the collapse button will have a different style.
2692
- */
2693
- collapseVariant?: 'default' | 'group';
2694
- /**
2695
- * Whether the collapse button is collapsible. If `false`, the collapse button will always be expanded.
2696
- */
2697
- isCollapse?: boolean;
2698
- /**
2699
- * Indicates if the arrow icon should be shown.
2700
- */
2701
- showArrowIcon?: boolean;
2702
- /**
2703
- * The number to be displayed on the collapse button. Usually used for notifications.
2704
- */
2705
- count?: number;
2706
- /**
2707
- * Index of the collapse element in the sidebar structure.
2708
- */
2709
- index?: number;
2710
- }
2711
-
2712
- declare interface SidebarElementProps {
2713
- /**
2714
- * The content of the sidebar element. Children are rendered only when the sidebar is not compact.
2715
- */
2716
- children: ReactNode;
2717
- /**
2718
- * The icon to be displayed on the sidebar element. This is rendered only when the sidebar is compact.
2719
- */
2720
- icon: ReactNode;
2721
- }
2722
-
2723
- declare interface SidebarHeaderProps {
2724
- /**
2725
- * The content of the header.
2726
- */
2727
- children?: ReactNode;
2728
- /**
2729
- * The logo to be displayed in the header.
2730
- */
2731
- logo?: {
2732
- default: ReactNode;
2733
- compact: ReactNode;
2734
- };
2735
- }
2736
-
2737
- declare interface SidebarItemProps {
2738
- /** The text to be displayed on the sidebar item */
2739
- children: string;
2740
- /** The icon to be displayed on the sidebar item to the left of the text */
2741
- icon?: ReactNode;
2742
- /** Whether the item is a collapse parent. A collapse parent is an item that has children that can be expanded or collapsed */
2743
- isCollapseParent?: boolean;
2744
- /** The number to be displayed on the sidebar item */
2745
- count?: number;
2746
- /** The path to be used for navigation */
2747
- path: string;
2748
- /** The function to be called when the item is clicked */
2749
- onClick?: (path: string) => void;
2750
- /** Whether the item is active */
2751
- active?: boolean;
2752
- }
2753
-
2754
- declare interface SidebarItemsProps {
2755
- /**
2756
- * The content of the sidebar items.
2757
- */
2758
- children: ReactElement | ReactElement[];
2759
- }
2760
-
2761
- export declare interface SidebarProps {
2762
- /**
2763
- * The size variant of the sidebar.
2764
- */
2765
- size?: Size_14;
2766
- /**
2767
- * The type of sidebar. 'default' renders a standard sidebar, 'floating' renders a sidebar that can be positioned anywhere on the screen.
2768
- */
2769
- type?: Type_3;
2770
- /**
2771
- * The visual style variant of the sidebar. Options: 'default', 'contrast', 'velora', 'everdeep', 'abyss', 'phantor'.
2772
- */
2773
- variant?: Variant_16;
2774
- /**
2775
- * The content of the sidebar.
2776
- */
2777
- children: ReactElement | ReactElement[];
2778
- /**
2779
- * If `true`, the button to control the sidebar's size will be shown.
2780
- */
2781
- showControlButton?: boolean;
2782
- /**
2783
- * Indicates whether the scrollbar should be hidden.
2784
- */
2785
- hideScrollbar?: boolean;
2786
- /**
2787
- * Additional class names to apply to the sidebar.
2788
- */
2789
- className?: string;
2790
- }
2791
-
2792
- /**
2793
- * Props for single-date selection
2794
- */
2795
- declare type SingleDatePickerProps = BaseDatePickerProps & {
2796
- /** Set to true for range selection; false or undefined for single date */
2797
- isRange?: false;
2798
- /** Enable time selection */
2799
- withTime?: boolean;
2800
- /** Currently selected date */
2801
- value: Date | null;
2802
- /** Callback when the date changes */
2803
- onChange: (val: Date | null) => void;
2804
- /** Predefined options for quick selection */
2805
- options?: PickerOption<Date>[];
2806
- };
2807
-
2808
- declare type Size = 'l' | 'm' | 's' | 'xs';
2809
-
2810
- declare type Size_10 = 'l' | 'm' | 's';
2811
-
2812
- declare type Size_11 = 'm' | 's';
2813
-
2814
- declare type Size_12 = 'xs' | 's' | 'm' | 'l';
2815
-
2816
- declare type Size_13 = 's' | 'm' | 'l';
2817
-
2818
- declare type Size_14 = 'large' | 'compact';
2819
-
2820
- declare type Size_15 = 's' | 'm';
2821
-
2822
- declare type Size_16 = 'xs' | 's' | 'm';
2823
-
2824
- declare type Size_17 = 'l' | 'm' | 's';
2825
-
2826
- declare type Size_18 = 'l' | 'm' | 's';
2827
-
2828
- declare type Size_19 = 'l' | 'm' | 's';
2829
-
2830
- declare type Size_2 = 'xxl' | 'xl' | 'l' | 'm' | 's' | 'xs' | 'xxs';
2831
-
2832
- declare type Size_3 = 'm' | 's' | 'xs';
2833
-
2834
- declare type Size_4 = 'l' | 'm' | 's' | 'xs';
2835
-
2836
- declare type Size_5 = 's' | 'm';
2837
-
2838
- declare type Size_6 = 's' | 'm' | 'l';
2839
-
2840
- declare type Size_7 = 'm' | 'l';
2841
-
2842
- declare type Size_8 = 'xl' | 'l' | 'm' | 's' | 'xs';
2843
-
2844
- declare type Size_9 = 's' | 'm';
2845
-
2846
- export declare const Skeleton: ({ className, style, type, height, width, radius, ...props }: SkeletonProps) => JSX.Element;
2847
-
2848
- export declare interface SkeletonProps extends HTMLAttributes<HTMLDivElement> {
2849
- /**
2850
- * The height of the skeleton.
2851
- */
2852
- height?: string;
2853
- /**
2854
- * The width of the skeleton.
2855
- */
2856
- width?: string;
2857
- /**
2858
- * The type of the skeleton.
2859
- */
2860
- type?: Type_4;
2861
- /**
2862
- * The border radius of the skeleton.
2863
- */
2864
- radius?: Radius;
2865
- }
2866
-
2867
- export declare const Slider: ({ label, counter, min, max, value, step, onChange, disabled, marks, withTooltip, }: SliderProps) => JSX.Element;
2868
-
2869
- declare interface SliderCommonProps extends LabelProps, MarksProps {
2870
- /**
2871
- * The granularity with which the slider can step through values. (A "discrete" slider.)
2872
- * The min prop serves as the origin for the valid values.
2873
- * We recommend (max - min) to be evenly divisible by the step.
2874
- */
2875
- step?: number;
2876
- /**
2877
- * If `true`, the value will display in the tooltip when the slider thumb is hovered.
2878
- */
2879
- withTooltip?: boolean;
2880
- }
2881
-
2882
- export declare interface SliderProps extends SliderCommonProps {
2883
- /**
2884
- * The `value` of the Slider. It should be a number.
2885
- */
2886
- value: number;
2887
- /**
2888
- * The `onChange` function is called when the value of the Slider changes.
2889
- */
2890
- onChange: (value: number) => void;
2891
- }
2892
-
2893
- export declare const snackbar: SnackbarFunc;
2894
-
2895
- export declare const SnackbarContainer: ({ position, }: SnackbarContainerProps) => JSX.Element;
2896
-
2897
- export declare interface SnackbarContainerProps {
2898
- /**
2899
- * Position of the notification container (defaults to top-right)
2900
- */
2901
- position?: SnackbarPosition;
2902
- }
2903
-
2904
- declare interface SnackbarFunc {
2905
- /**
2906
- * Function to display a notification
2907
- */
2908
- show: (props: SnackbarProps) => void;
2909
- }
2910
-
2911
- /**
2912
- * Notification position on the screen
2913
- */
2914
- declare type SnackbarPosition = 'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right';
2915
-
2916
- declare interface SnackbarProps {
2917
- /**
2918
- * Notification title (required)
2919
- */
2920
- title: string;
2921
- /**
2922
- * Optional subtitle for additional information
2923
- */
2924
- subtitle?: string;
2925
- /**
2926
- * Automatically hide the notification (default: true)
2927
- */
2928
- autoHide?: boolean;
2929
- /**
2930
- * Type of notification, determines styling and icon
2931
- */
2932
- type?: SnackbarType;
2933
- /**
2934
- * Additional actions as React elements
2935
- */
2936
- actions?: ReactNode;
2937
- /**
2938
- * Slot on the left side of the content (icon or custom element)
2939
- */
2940
- leftSlot?: ReactNode;
2941
- /**
2942
- * Slot on the right side of the content (custom element)
2943
- */
2944
- rightSlot?: ReactNode;
2945
- /**
2946
- * Display duration in milliseconds (default: 3000)
2947
- */
2948
- duration?: number;
2949
- /**
2950
- * Show a close button for manual dismissal
2951
- */
2952
- withCloseButton?: boolean;
2953
- /**
2954
- * Show a timer indicator for notification lifespan
2955
- */
2956
- withTimer?: boolean;
2957
- /**
2958
- * Additional classes for styling
2959
- */
2960
- className?: string;
2961
- }
2962
-
2963
- /**
2964
- * Notification type (success, error, warning, info)
2965
- */
2966
- declare type SnackbarType = 'success' | 'error' | 'warning' | 'info';
2967
-
2968
- export declare const SolidNavigationArrowDown: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
2969
-
2970
- export declare const SolidNavigationArrowLeft: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
2971
-
2972
- export declare const SolidNavigationArrowRight: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
2973
-
2974
- export declare const SolidNavigationArrowUp: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
2975
-
2976
- export declare const SolidNavigationDoubleLeft: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
2977
-
2978
- export declare const SolidNavigationDoubleRight: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
2979
-
2980
- export declare const SolidNavigationLeftPrev: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
2981
-
2982
- export declare const SolidNavigationRightNext: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
2983
-
2984
- export declare const SolidNavigationSelectOpenDown: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
2985
-
2986
- export declare const SolidNavigationSelectTop: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
2987
-
2988
- export declare const SolidSystemAdd: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
2989
-
2990
- export declare const SolidSystemAdd2: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
2991
-
2992
- export declare const SolidSystemAlertCircle: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
2993
-
2994
- export declare const SolidSystemBell: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
2995
-
2996
- export declare const SolidSystemBellOff: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
2997
-
2998
- export declare const SolidSystemBill: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
2999
-
3000
- export declare const SolidSystemCalendar: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3001
-
3002
- export declare const SolidSystemCamera: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3003
-
3004
- export declare const SolidSystemChat: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3005
-
3006
- export declare const SolidSystemCheck: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3007
-
3008
- export declare const SolidSystemCheckCircle: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3009
-
3010
- export declare const SolidSystemClock: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3011
-
3012
- export declare const SolidSystemClose: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3013
-
3014
- export declare const SolidSystemCopy: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3015
-
3016
- export declare const SolidSystemDoc: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3017
-
3018
- export declare const SolidSystemDocEmpty: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3019
-
3020
- export declare const SolidSystemDownload: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3021
-
3022
- export declare const SolidSystemEdit: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3023
-
3024
- export declare const SolidSystemEditAlt: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3025
-
3026
- export declare const SolidSystemExclamation: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3027
-
3028
- export declare const SolidSystemExpand: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3029
-
3030
- export declare const SolidSystemEyeOff: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3031
-
3032
- export declare const SolidSystemEyeOffAlt: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3033
-
3034
- export declare const SolidSystemEyeOn: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3035
-
3036
- export declare const SolidSystemFileAccept: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3037
-
3038
- export declare const SolidSystemFolder: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3039
-
3040
- export declare const SolidSystemGridView: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3041
-
3042
- export declare const SolidSystemHeadphones: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3043
-
3044
- export declare const SolidSystemHeart: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3045
-
3046
- export declare const SolidSystemHelpCircle: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3047
-
3048
- export declare const SolidSystemHex: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3049
-
3050
- export declare const SolidSystemHome: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3051
-
3052
- export declare const SolidSystemInfo: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3053
-
3054
- export declare const SolidSystemLanguage: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3055
-
3056
- export declare const SolidSystemLink: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3057
-
3058
- export declare const SolidSystemLink2: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3059
-
3060
- export declare const SolidSystemListView: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3061
-
3062
- export declare const SolidSystemLock: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3063
-
3064
- export declare const SolidSystemMail: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3065
-
3066
- export declare const SolidSystemMapPin: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3067
-
3068
- export declare const SolidSystemMenu: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3069
-
3070
- export declare const SolidSystemMoon: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3071
-
3072
- export declare const SolidSystemMoreHorizontal: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3073
-
3074
- export declare const SolidSystemMoreVertical: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3075
-
3076
- export declare const SolidSystemMove: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3077
-
3078
- export declare const SolidSystemPaperclip: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3079
-
3080
- export declare const SolidSystemPrinter: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3081
-
3082
- export declare const SolidSystemRefresh: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3083
-
3084
- export declare const SolidSystemRefresh2: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3085
-
3086
- export declare const SolidSystemRemove: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3087
-
3088
- export declare const SolidSystemRemoveCircle: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3089
-
3090
- export declare const SolidSystemRightNext: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3091
-
3092
- export declare const SolidSystemSearch: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3093
-
3094
- export declare const SolidSystemSend: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3095
-
3096
- export declare const SolidSystemSettings: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3097
-
3098
- export declare const SolidSystemSidebar: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3099
-
3100
- export declare const SolidSystemSlash: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3101
-
3102
- export declare const SolidSystemSmartphone: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3103
-
3104
- export declare const SolidSystemStar: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3105
-
3106
- export declare const SolidSystemSun: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3107
-
3108
- export declare const SolidSystemTickDouble: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3109
-
3110
- export declare const SolidSystemTrash: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3111
-
3112
- export declare const SolidSystemTune: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3113
-
3114
- export declare const SolidSystemUnlock: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3115
-
3116
- export declare const SolidSystemUpload: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3117
-
3118
- export declare const SolidSystemUploadCloud: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3119
-
3120
- export declare const SolidSystemUser: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3121
-
3122
- export declare const SolidSystemUserFilled: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3123
-
3124
- export declare const SolidSystemUsers: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3125
-
3126
- export declare const SolidSystemWifiOff: ({ width, height, fill, ...props }: IconProps) => JSX.Element;
3127
-
3128
- declare type SortIconPosition = 'right' | 'left';
3129
-
3130
- declare type Status = 'error' | 'active';
3131
-
3132
- declare type StatusVariant = 'online' | 'offline' | 'warning';
3133
-
3134
- export declare const Surface: ({ className, children, p, px, py, m, mt, mr, mb, ml, rounded, style, darkLevel, ...props }: SurfaceProps) => JSX.Element;
3135
-
3136
- export declare interface SurfaceProps extends PaperProps {
3137
- /**
3138
- * Dark level of the surface.
3139
- */
3140
- darkLevel?: DarkLevel;
3141
- }
3142
-
3143
- export declare const Switch: ({ className, label, description, size, ...props }: SwitchProps) => JSX.Element;
3144
-
3145
- export declare interface SwitchProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'size'> {
3146
- label?: ReactNode;
3147
- description?: ReactNode;
3148
- size?: Size_15;
3149
- }
3150
-
3151
- export declare const Tab: ({ className, value, onChange, label, leftIcon, rightIcon, counter, variant, size, rounded, isAlert, selectionType, withBackground, ...props }: TabProps) => JSX.Element;
3152
-
3153
- export declare const TabGroup: ({ className, value, defaultValue, onChange, fullWidth, children, selectionType, disabled, variant, rounded, size, justify, spacing, }: TabGroupProps) => JSX.Element;
3154
-
3155
- export declare interface TabGroupProps {
3156
- /**
3157
- * The default value of the tab group. This is used when the `value` prop is not provided.
3158
- */
3159
- defaultValue?: string | string[];
3160
- /**
3161
- * If `true`, the tab group is disabled and cannot be interacted with.
3162
- */
3163
- disabled?: boolean;
3164
- /**
3165
- * If `true`, the tab group will take up the full width of its container.
3166
- */
3167
- fullWidth?: boolean;
3168
- /**
3169
- * The class name to apply to the tab group.
3170
- */
3171
- className?: string;
3172
- /**
3173
- * If `true`, the tabs will be rounded.
3174
- */
3175
- rounded?: boolean;
3176
- /**
3177
- * The size of the tabs.
3178
- */
3179
- size?: Size_13;
3180
- /**
3181
- * The variant of the tabs. This controls the color and style of the tabs.
3182
- */
3183
- variant?: Variant_15;
3184
- /**
3185
- * The children of the tab group. This should be a list of `Tab` components.
3186
- */
3187
- children: ReactElement<TabProps>[];
3188
- /**
3189
- * The alignment of the tabs within the tab group.
3190
- */
3191
- justify?: 'flex-start' | 'center' | 'flex-end' | 'space-between';
3192
- /**
3193
- * The selection type of the tab group. This controls whether multiple or single tab(s) can be selected.
3194
- */
3195
- selectionType?: SelectionType;
3196
- /**
3197
- * The value of the tab group. This is used to control the selected tab.
3198
- */
3199
- value: string | string[];
3200
- /**
3201
- * The callback function that is called when the selected tab changes.
3202
- */
3203
- onChange: (value: string | string[]) => void;
3204
- /**
3205
- * The spacing between the tabs.
3206
- */
3207
- spacing?: string;
3208
- }
3209
-
3210
- declare interface TabItem extends Omit<InputHTMLAttributes<HTMLInputElement>, 'size' | 'onChange'> {
3211
- /**
3212
- * The label of the tab.
3213
- */
3214
- label: ReactNode;
3215
- /**
3216
- * Icon to display on the left side of the tab.
3217
- */
3218
- leftIcon?: ReactNode;
3219
- /**
3220
- * Icon to display on the right side of the tab.
3221
- */
3222
- rightIcon?: ReactNode;
3223
- /**
3224
- * The number to display on the tab. This is typically used for notifications.
3225
- */
3226
- counter?: number;
3227
- /**
3228
- * If `true`, the tab is in an alert state. Alerts are typically used to indicate that the tab has new information or requires attention.
3229
- */
3230
- isAlert?: boolean;
3231
- /**
3232
- * If `true`, the tab has a background color. Only relevant for `primary` and `accent` variants.
3233
- */
3234
- withBackground?: boolean;
3235
- }
3236
-
3237
- export declare const Table: <T>({ isLoading, columns, records, selectedRecords, accessorId, onSelectedRecordsChange, rowSpacing, withRowBorders, withColBorders, onRowClick, rowExpansion, rowGap, tableClassNames, emptyPlaceholder, defaultExpandedRow, defaultExpandedRows, isMultiExpanded, verticalAlign, skeletonRowsCount, }: TableProps<T>) => JSX.Element;
3238
-
3239
- declare interface TableClassNames {
3240
- root?: string;
3241
- thead?: string;
3242
- tbody?: string;
3243
- row?: string;
3244
- rowContent?: string;
3245
- }
3246
-
3247
- declare interface TableColumnProps<T> {
3248
- /**
3249
- * Key of the record used to display data in the column.
3250
- */
3251
- accessor: string;
3252
- /**
3253
- * Header title displayed in the table's header.
3254
- */
3255
- title: string;
3256
- /**
3257
- * Maximum width of the column (CSS value, e.g., '100px').
3258
- */
3259
- maxWidth?: string;
3260
- /**
3261
- * Minimum width of the column (CSS value, e.g., '50px').
3262
- */
3263
- minWidth?: string;
3264
- /**
3265
- * Text alignment for the cells in the column and rows (`left`, `center`, `right`).
3266
- */
3267
- textAlign?: TextAlign;
3268
- /**
3269
- * Indicates whether the column can be sorted.
3270
- */
3271
- sortable?: boolean;
3272
- /**
3273
- * Position of the sort icon relative to the header (`left` or `right`).
3274
- */
3275
- sortIconPosition?: SortIconPosition;
3276
- /**
3277
- * Handler triggered when sorting is applied.
3278
- */
3279
- onSort?: (direction: Direction_2) => void;
3280
- /**
3281
- * Custom renderer for the row cell content of this column.
3282
- */
3283
- renderRowCell?: (props: T, index: number) => ReactNode;
3284
- /**
3285
- * Custom renderer for the column header content.
3286
- */
3287
- renderHeaderCell?: (title?: string) => ReactNode;
3288
- }
3289
-
3290
- export declare interface TableProps<T> {
3291
- /**
3292
- * Indicates whether the table is in a loading state.
3293
- */
3294
- isLoading?: boolean;
3295
- /**
3296
- * Columns of the table.
3297
- * Contains information about headers, sorting settings, and custom rendering for cells.
3298
- */
3299
- columns: TableColumnProps<T>[];
3300
- /**
3301
- * Array of data records displayed in the table.
3302
- * Each record must match the fields defined in the `columns`.
3303
- */
3304
- records: T[];
3305
- /**
3306
- * Object containing class names for styling different parts of the table,
3307
- * such as the root, header, body, and row content.
3308
- */
3309
- tableClassNames?: TableClassNames;
3310
- /**
3311
- * Field used as the identifier for rows.
3312
- * Defaults to `'id'` or any key from the record.
3313
- */
3314
- accessorId?: keyof T | 'id';
3315
- /**
3316
- * Array of identifiers for selected records.
3317
- * Used when the table supports row selection.
3318
- */
3319
- selectedRecords?: number[];
3320
- /**
3321
- * Enables row borders for the table.
3322
- */
3323
- withRowBorders?: boolean;
3324
- /**
3325
- * Enables row borders for the table.
3326
- */
3327
- withColBorders?: boolean;
3328
- /**
3329
- * Handler for changing selected rows.
3330
- * Receives an array of selected record IDs.
3331
- */
3332
- onSelectedRecordsChange?: Dispatch<SetStateAction<number[]>>;
3333
- /**
3334
- * Configuration for row expansion.
3335
- * Allows additional content to be displayed below rows.
3336
- */
3337
- rowExpansion?: {
3338
- /**
3339
- * Content to display when a row is expanded.
3340
- * Receives the current record as props.
3341
- */
3342
- content: (props: T, isExpanded: boolean) => ReactNode;
3343
- };
3344
- /**
3345
- * Handler for when a row is clicked.
3346
- * Receives the current record and its index in the `records` array as arguments.
3347
- */
3348
- onRowClick?: (props: T, index: number) => void;
3349
- /**
3350
- * Defines the spacing style for rows, controlling the `padding-top` and `padding-bottom` of each row.
3351
- * Example values: s, m, x, xl.
3352
- */
3353
- rowSpacing?: RowSpacing;
3354
- /**
3355
- * Gap between rows (in pixels). Works only if both withColBorders and withRowBorders are false.
3356
- */
3357
- rowGap?: number;
3358
- /**
3359
- * Specifies the identifier of the row that should be expanded by default when the table is rendered.
3360
- * Useful for initially showing detailed content for a specific record.
3361
- * It works only if `isMultiExpanded` is `false`.
3362
- */
3363
- defaultExpandedRow?: number;
3364
- /**
3365
- * Specifies the identifier of the rows that should be expanded by default when the table is rendered.
3366
- * Useful for initially showing detailed content for a specific records.
3367
- * It works only if `isMultiExpanded` is set to `true` as it allows multiple rows to be expanded at once.
3368
- */
3369
- defaultExpandedRows?: number[];
3370
- /**
3371
- * Open several expanded rows of tables.
3372
- */
3373
- isMultiExpanded?: boolean;
3374
- /**
3375
- * Set another element instead of the default text that indicates missing data.
3376
- */
3377
- emptyPlaceholder?: ReactNode;
3378
- /**
3379
- * Controls vertical alignment of table cell content. Accepts CSS values: 'top', 'middle', 'bottom', or 'baseline'.
3380
- */
3381
- verticalAlign?: VerticalAlign;
3382
- /**
3383
- * Number of skeleton rows to display when the table is loading.
3384
- */
3385
- skeletonRowsCount?: number;
3386
- }
3387
-
3388
- export declare function TabMenu({ variant, ...props }: TabMenuProps): JSX.Element;
3389
-
3390
- export declare const TabMenuNew: ({ className, tabs, value, defaultValue, onChange, size, fullWidth, disabled, divider, justify, }: TabMenuNewProps) => JSX.Element;
3391
-
3392
- export declare interface TabMenuNewProps {
3393
- /**
3394
- * The tabs to be rendered in the tab menu.
3395
- */
3396
- tabs: TabItem[];
3397
- /**
3398
- * The default value of the tab menu. This is used when the `value` prop is not provided.
3399
- */
3400
- defaultValue?: string;
3401
- /**
3402
- * If `true`, the tab menu is disabled and cannot be interacted with.
3403
- */
3404
- disabled?: boolean;
3405
- /**
3406
- * If `true`, the tab menu will take up the full width of its container.
3407
- */
3408
- fullWidth?: boolean;
3409
- /**
3410
- * The class name to apply to the tab menu.
3411
- */
3412
- className?: string;
3413
- /**
3414
- * The size of the tabs.
3415
- */
3416
- size?: Size_13;
3417
- /**
3418
- * The function to call when the selected tab changes.
3419
- */
3420
- onChange: (value: string) => void;
3421
- /**
3422
- * The value of the tab menu. This is used to control the selected tab.
3423
- */
3424
- value?: string;
3425
- /**
3426
- * The alignment of the tabs within the tab menu.
3427
- */
3428
- justify?: 'flex-start' | 'center' | 'flex-end' | 'space-between' | 'space-around';
3429
- /**
3430
- * If `true`, a divider will be displayed under the tab menu. Only applicable for the `text` variant.
3431
- */
3432
- divider?: boolean;
3433
- }
3434
-
3435
- export declare type TabMenuProps = OtherVariantProps | TextVariantProps;
3436
-
3437
- export declare interface TabProps extends TabItem {
3438
- /**
3439
- * If `true`, the tab is rounded.
3440
- */
3441
- rounded?: boolean;
3442
- /**
3443
- * Function to call when the tab is clicked.
3444
- */
3445
- onChange?: (value: string) => void;
3446
- /**
3447
- * The Variant of the tab. This controls the color and style of the tab.
3448
- */
3449
- variant?: Variant_15;
3450
- /**
3451
- * The size of the tab.
3452
- */
3453
- size?: Size_13;
3454
- /**
3455
- * The selection type of the tab. This controls whether multiple or single tab(s) can be selected.
3456
- */
3457
- selectionType?: SelectionType;
3458
- }
3459
-
3460
- export declare const Tag: ({ leftIcon, counter, children, className, onClose, status, disabled, variant, size, ...props }: TagProps) => JSX.Element;
3461
-
3462
- export declare interface TagProps extends BaseHTMLAttributes<HTMLSpanElement> {
3463
- variant?: Variant_17;
3464
- size?: Size_16;
3465
- status?: Status;
3466
- leftIcon?: ReactNode;
3467
- disabled?: boolean;
3468
- counter?: number;
3469
- className?: string;
3470
- onClose?: () => void;
3471
- }
3472
-
3473
- declare type TextAlign = 'start' | 'center' | 'end';
3474
-
3475
- export declare const TextArea: ({ className, label, value, maxLength, onClear, hintText, isFilled, filledLength, style, fullWidth, size, hasError, disabled, showCorrectHintIcon, isHintAlwaysShown, showLengthHint, rows, ...props }: TextAreaProps) => JSX.Element;
3476
-
3477
- export declare interface TextAreaProps extends TextareaHTMLAttributes<HTMLTextAreaElement>, HinterProps {
3478
- /**
3479
- * The size of the TextArea
3480
- */
3481
- size?: Size_17;
3482
- /**
3483
- * The label of the TextArea
3484
- */
3485
- label?: string;
3486
- /**
3487
- * Function to be called when the TextArea is focused to clear the input
3488
- */
3489
- onClear?: () => void;
3490
- /**
3491
- * Indicates if the TextArea fills the entire width of its container. If you want the cols attribute to work, set this prop to `false`.
3492
- */
3493
- fullWidth?: boolean;
3494
- }
3495
-
3496
- declare interface TextVariantProps extends BaseTabMenuProps {
3497
- /**
3498
- * The variant of the tab that is used to highlight the selected tab.
3499
- */
3500
- variant: 'text';
3501
- /**
3502
- * If `true`, a divider will be displayed under the tab menu. Only applicable for the `text` variant.
3503
- */
3504
- divider?: boolean;
3505
- }
3506
-
3507
- declare interface ThemeWrapperProps {
3508
- children: ReactNode;
3509
- initialMode?: Mode;
3510
- initialLocale?: Locale;
3511
- brand?: Brand;
3512
- }
3513
-
3514
- export declare const Timeline: {
3515
- ({ horizontal, active, children, contentRatio, }: TimelineProps): JSX.Element;
3516
- displayName: string;
3517
- Item: ({ children, bullet, tabIndex, }: TimelineItemProps) => JSX.Element;
3518
- OppositeContent: ({ children, }: TimelineOppositeContentProps) => JSX.Element;
3519
- Content: ({ children }: TimelineContentProps) => JSX.Element;
3520
- };
3521
-
3522
- declare interface TimelineContentProps {
3523
- /**
3524
- * The content of the timeline item.
3525
- * If the Timeline is `horizontal`, this will be displayed in a row layout **below the line**.
3526
- * If the Timeline is `vertical`, this will be displayed in a column layout **to the right of the line**.
3527
- */
3528
- children?: ReactNode;
3529
- }
3530
-
3531
- declare interface TimelineItemProps extends Partial<Pick<HTMLDivElement, 'tabIndex'>> {
3532
- /**
3533
- * The content of the timeline item.
3534
- */
3535
- children?: ReactNode;
3536
- /**
3537
- * The bullet element to display in the timeline item.
3538
- */
3539
- bullet?: ReactNode;
3540
- }
3541
-
3542
- declare interface TimelineOppositeContentProps {
3543
- /**
3544
- * The content to display in the opposite content area of the timeline item.
3545
- */
3546
- children?: ReactNode;
3547
- }
3548
-
3549
- export declare interface TimelineProps {
3550
- /**
3551
- * Determines whether the timeline is displayed horizontally.
3552
- **/
3553
- horizontal?: boolean;
3554
- /**
3555
- * Timeline items to be rendered inside the timeline
3556
- */
3557
- children?: ReactNode;
3558
- /**
3559
- * Indicates the currently active timeline step.
3560
- **/
3561
- active?: number;
3562
- /**
3563
- * Adjusts the flex grow ratio between opposite content and content.
3564
- * **Important**: This prop only has an effect when the timeline is vertical (horizontal = false).
3565
- */
3566
- contentRatio?: {
3567
- opposite?: number;
3568
- main?: number;
3569
- };
3570
- }
3571
-
3572
- export declare const TimePicker: ({ value, onClick, onScroll, maxTime, minTime, hoursStep, minutesStep, className, withHeader, withConfirmationButton, isStandalone, }: TimePickerProps & {
3573
- isStandalone?: boolean;
3574
- }) => JSX.Element;
3575
-
3576
- export declare interface TimePickerProps {
3577
- /**
3578
- * Selected time value in `"HH:MM"` format (e.g., `"09:30"`).
3579
- */
3580
- value: string;
3581
- /**
3582
- * Callback fired when a time is selected.
3583
- * Receives the selected time as `"HH:MM"`.
3584
- */
3585
- onClick?: (val: string) => void;
3586
- /**
3587
- * Callback fired when the user scrolls the time picker.
3588
- * Receives the currently visible time as `"HH:MM"`.
3589
- */
3590
- onScroll?: (val: string) => void;
3591
- /**
3592
- * The minimum selectable time in `"HH:MM"` format.
3593
- * Example: `"08:00"`.
3594
- */
3595
- minTime?: string;
3596
- /**
3597
- * The maximum selectable time in `"HH:MM"` format.
3598
- * Example: `"18:30"`.
3599
- */
3600
- maxTime?: string;
3601
- /**
3602
- * Step for minutes.
3603
- * Defines the interval between available minute options (e.g., 5, 10, 15).
3604
- * Default is `1`.
3605
- */
3606
- minutesStep?: number;
3607
- /**
3608
- * Step for hours.
3609
- * Defines the interval between available hour options (e.g., 1, 2).
3610
- * Default is `1`.
3611
- */
3612
- hoursStep?: number;
3613
- /**
3614
- * Whether to display the header with the label "Время".
3615
- */
3616
- withHeader?: boolean;
3617
- /**
3618
- * Whether to show a confirmation button below the time picker.
3619
- */
3620
- withConfirmationButton?: boolean;
3621
- /**
3622
- * Custom CSS class for styling the root element.
3623
- */
3624
- className?: string;
3625
- }
3626
-
3627
- export declare const TjFlag: ({ height, width, ...props }: IconProps) => JSX.Element;
3628
-
3629
- export declare const Tooltip: ({ label, icon, className, isOpen, children, withArrow, position, offset, ...props }: TooltipProps) => JSX.Element;
3630
-
3631
- export declare interface TooltipProps extends Omit<PopoverProps, 'trigger'> {
3632
- /**
3633
- * The content to display in the tooltip.
3634
- */
3635
- label: string;
3636
- /**
3637
- * The icon to display in the tooltip on the left side of the label.
3638
- */
3639
- icon?: ReactNode;
3640
- /**
3641
- * Additional class names to apply to the tooltip.
3642
- */
3643
- className?: string;
3644
- }
3645
-
3646
- export declare const Transition: ({ children, mounted, duration, enterDelay, exitDelay, exitDuration, onEnter, onEntered, onExit, onExited, timingFunction, transition, }: TransitionProps) => string | number | bigint | boolean | Iterable<ReactNode> | Promise<string | number | bigint | boolean | ReactPortal | ReactElement<unknown, string | JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | JSX.Element | null | undefined;
3647
-
3648
- declare type Transition_2 = TransitionName | TransitionStyles;
3649
-
3650
- export declare type TransitionName = 'fade' | 'fade-down' | 'fade-up' | 'fade-left' | 'fade-right' | 'slide-down' | 'slide-up' | 'slide-right' | 'slide-left' | 'skew-up' | 'skew-down' | 'rotate-right' | 'rotate-left' | 'scale-y' | 'scale-x' | 'scale' | 'pop' | 'pop-top-left' | 'pop-top-right' | 'pop-bottom-left' | 'pop-bottom-right' | 'collapser';
3651
-
3652
- export declare interface TransitionProps {
3653
- /**
3654
- * Name of the transition or a custom transition object
3655
- */
3656
- transition?: Transition_2;
3657
- /**
3658
- * Duration (in ms) for the enter animation
3659
- */
3660
- duration?: number;
3661
- /**
3662
- * Duration (in ms) for the exit animation; falls back to `duration` if not provided
3663
- */
3664
- exitDuration?: number;
3665
- /**
3666
- * CSS transition timing function (e.g., 'ease', 'linear', 'ease-in-out')
3667
- */
3668
- timingFunction?: CSSProperties['transitionTimingFunction'];
3669
- /**
3670
- * Controls whether the element should be mounted (true = visible, false = hidden)
3671
- */
3672
- mounted: boolean;
3673
- /**
3674
- * A function that receives the computed transition styles and returns a React element
3675
- */
3676
- children: (styles: CSSProperties) => ReactNode;
3677
- /**
3678
- * Called right after the exit transition starts
3679
- */
3680
- onExit?: () => void;
3681
- /**
3682
- * Called right after the exit transition ends and the component unmounts
3683
- */
3684
- onExited?: () => void;
3685
- /**
3686
- * Called right after the enter transition starts
3687
- */
3688
- onEnter?: () => void;
3689
- /**
3690
- * Called right after the enter transition ends
3691
- */
3692
- onEntered?: () => void;
3693
- /**
3694
- * Delay (in ms) before the enter animation starts
3695
- */
3696
- enterDelay?: number;
3697
- /**
3698
- * Delay (in ms) before the exit animation starts
3699
- */
3700
- exitDelay?: number;
3701
- }
3702
-
3703
- export declare type TransitionStatus = 'entered' | 'exited' | 'entering' | 'exiting' | 'pre-entering' | 'pre-exiting';
3704
-
3705
- declare interface TransitionStyles {
3706
- base?: CSSProperties;
3707
- enter: CSSProperties;
3708
- exit: CSSProperties;
3709
- transitionProperty: CSSProperties['transitionProperty'];
3710
- }
3711
-
3712
- declare type Type = 'warning' | 'error' | 'success' | 'info';
3713
-
3714
- declare type Type_2 = 'primary' | 'secondary';
3715
-
3716
- declare type Type_3 = 'default' | 'floating';
3717
-
3718
- declare type Type_4 = 'rectangle' | 'circle';
3719
-
3720
- export declare const Typography: ({ category, proportions, color, margin, className, style, element, ...rest }: TypographyProps) => JSX.Element;
3721
-
3722
- export declare type TypographyCategory = 'description' | 'body' | 'display' | 'heading';
3723
-
3724
- export declare type TypographyProportions = {
3725
- description: 's' | 'm' | 'l' | 'sStrong' | 'mStrong' | 'lStrong' | 'sTag';
3726
- body: 'xs' | 's' | 'm' | 'l' | 'xsStrong' | 'sStrong' | 'mStrong' | 'lStrong';
3727
- display: 's' | 'm' | 'l' | 'sStrong' | 'mStrong' | 'lStrong';
3728
- heading: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'h7' | 'h8' | 'h9';
3729
- };
3730
-
3731
- export declare type TypographyProps = ({
3732
- category: 'description';
3733
- proportions: TypographyProportions['description'];
3734
- } | {
3735
- category: 'body';
3736
- proportions: TypographyProportions['body'];
3737
- } | {
3738
- category: 'display';
3739
- proportions: TypographyProportions['display'];
3740
- } | {
3741
- category: 'heading';
3742
- proportions: TypographyProportions['heading'];
3743
- }) & HTMLAttributes<HTMLParagraphElement> & {
3744
- color?: string;
3745
- margin?: string;
3746
- element?: 'p' | 'span' | 'div';
3747
- };
3748
-
3749
- export declare const useFloatingPosition: (trigger: HTMLDivElement | null, popover: HTMLDivElement | null, position: Position | undefined, offset: number | undefined, withArrow: boolean | undefined, isFixed: boolean) => {
3750
- placement: PositionProps;
3751
- arrowPlacement: ArrowPositionProps;
3752
- };
3753
-
3754
- export declare const useLocale: () => {
3755
- locale: Locale;
3756
- setLocale: Dispatch<SetStateAction<Locale>>;
3757
- };
3758
-
3759
- export declare const useMode: () => {
3760
- mode: string;
3761
- toggleMode: () => void;
3762
- };
3763
-
3764
- export declare const useTranslation: () => {
3765
- t: (key: string) => string;
3766
- language: Locale;
3767
- changeLanguage: (nextLocale: Locale | ((prev: Locale) => Locale)) => Promise<void>;
3768
- };
3769
-
3770
- export declare const UsFlag: ({ height, width, ...props }: IconProps) => JSX.Element;
3771
-
3772
- export declare const UzFlag: ({ height, width, ...props }: IconProps) => JSX.Element;
3773
-
3774
- export declare const validateIconButtonProps: (isIconBtn: boolean, leftSection?: ReactNode, rightSection?: ReactNode, children?: ReactNode) => void;
3775
-
3776
- declare type ValIsObject = ListItemOptionType<any>;
3777
-
3778
- declare type Variant = 'primary' | 'secondary';
3779
-
3780
- declare type Variant_10 = 'desktop' | 'mobile';
3781
-
3782
- declare type Variant_11 = 'default' | 'compact' | 'mobile';
3783
-
3784
- declare type Variant_12 = 'default' | 'warning' | 'risk';
3785
-
3786
- declare type Variant_13 = 'outline' | 'solid';
3787
-
3788
- declare type Variant_14 = 'primary' | 'filled' | 'accent';
3789
-
3790
- declare type Variant_15 = 'accent' | 'primary' | 'secondary' | 'outline' | 'text';
3791
-
3792
- declare type Variant_16 = 'default' | 'contrast' | 'velora' | 'everdeep' | 'abyss' | 'phantor';
3793
-
3794
- declare type Variant_17 = 'primary' | 'secondary' | 'tertiary';
3795
-
3796
- declare type Variant_18 = 'solid' | 'outline' | 'outline-filled';
3797
-
3798
- declare type Variant_19 = 'primary' | 'secondary';
3799
-
3800
- declare type Variant_2 = 'default' | 'outlined' | 'filled';
3801
-
3802
- declare type Variant_3 = 'info' | 'success' | 'neutral' | 'warning' | 'error' | 'status-01' | 'status-02' | 'status-03' | 'status-04' | 'status-05' | 'status-06' | 'status-07';
3803
-
3804
- declare type Variant_4 = 'primary' | 'secondary';
3805
-
3806
- declare type Variant_5 = 'primary' | 'secondary' | 'tertiary' | 'outline' | 'outline-neutral' | 'risk';
3807
-
3808
- declare type Variant_6 = 'primary' | 'secondary' | 'accent' | 'contrast';
3809
-
3810
- declare type Variant_7 = 'mobile' | 'desktop';
3811
-
3812
- declare type Variant_8 = 'primary' | 'secondary' | 'tertiary' | 'accent';
3813
-
3814
- declare type Variant_9 = 'primary' | 'secondary' | 'contrast' | 'risk';
3815
-
3816
- declare type VerticalAlign = 'top' | 'middle' | 'bottom' | 'baseline';
3817
-
3818
- export declare const YearPicker: ({ className, maxYear, minYear, onChange, onPickerChange, value, isRange, disabledYears, options, pickerWidth, }: YearPickerProps) => JSX.Element;
3819
-
3820
- declare interface YearPickerOption {
3821
- /**
3822
- * Display text for the year option.
3823
- */
3824
- text: string;
3825
- /**
3826
- * Value of the year option.
3827
- */
3828
- value: YearValue;
3829
- }
3830
-
3831
- export declare interface YearPickerProps {
3832
- /**
3833
- * Optional class name for custom styling.
3834
- */
3835
- className?: string;
3836
- /**
3837
- * Minimum year selectable in the picker.
3838
- * Default can be provided in the component.
3839
- */
3840
- minYear?: number;
3841
- /**
3842
- * Maximum year selectable in the picker.
3843
- * Default can be provided in the component.
3844
- */
3845
- maxYear?: number;
3846
- /**
3847
- * Current value of the picker (single year or range).
3848
- */
3849
- value: YearValue;
3850
- /**
3851
- * Callback triggered when the value changes via interaction.
3852
- */
3853
- onChange?: (value: YearValue) => void;
3854
- /**
3855
- * Callback triggered specifically when picker selection changes.
3856
- */
3857
- onPickerChange?: (value: YearValue) => void;
3858
- /**
3859
- * Enables range selection mode.
3860
- */
3861
- isRange?: boolean;
3862
- /**
3863
- * Array of years that should be disabled (not selectable).
3864
- */
3865
- disabledYears?: number[];
3866
- /**
3867
- * Optional array of custom options to display in the picker.
3868
- */
3869
- options?: YearPickerOption[];
3870
- /**
3871
- * Sets a custom width for the picker (CSS value, e.g. '100%', '400px').
3872
- * If provided, overrides the default picker width.
3873
- */
3874
- pickerWidth?: string;
3875
- }
3876
-
3877
- declare type YearValue = number | [number, number] | null;
3878
-
3879
- export { }
3880
-
3881
-
3882
- export declare namespace patchConsoleError {
3883
- var release: () => void;
3884
- }
3885
-
1
+ export * from './core/src/main'