@lumx/react 3.20.1-alpha.12 → 3.20.1-alpha.14

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 (721) hide show
  1. package/_internal/index.js +236 -0
  2. package/_internal/index.js.map +1 -0
  3. package/index.d.ts +1 -1
  4. package/index.js +14440 -65
  5. package/index.js.map +1 -1
  6. package/package.json +11 -3
  7. package/src/components/alert-dialog/AlertDialog.stories.tsx +127 -0
  8. package/src/components/alert-dialog/AlertDialog.test.tsx +34 -0
  9. package/src/components/alert-dialog/AlertDialog.tsx +189 -0
  10. package/src/components/alert-dialog/index.ts +1 -0
  11. package/src/components/autocomplete/Autocomplete.stories.tsx +75 -0
  12. package/src/components/autocomplete/Autocomplete.test.tsx +99 -0
  13. package/src/components/autocomplete/Autocomplete.tsx +294 -0
  14. package/src/components/autocomplete/AutocompleteMultiple.stories.tsx +167 -0
  15. package/src/components/autocomplete/AutocompleteMultiple.test.tsx +61 -0
  16. package/src/components/autocomplete/AutocompleteMultiple.tsx +156 -0
  17. package/src/components/autocomplete/__mockData__/index.ts +39 -0
  18. package/src/components/autocomplete/index.ts +2 -0
  19. package/src/components/avatar/Avatar.stories.tsx +119 -0
  20. package/src/components/avatar/Avatar.test.tsx +32 -0
  21. package/src/components/avatar/Avatar.tsx +114 -0
  22. package/src/components/avatar/index.ts +1 -0
  23. package/src/components/badge/Badge.stories.tsx +69 -0
  24. package/src/components/badge/Badge.test.tsx +45 -0
  25. package/src/components/badge/Badge.tsx +58 -0
  26. package/src/components/badge/BadgeWrapper.stories.tsx +75 -0
  27. package/src/components/badge/BadgeWrapper.test.tsx +47 -0
  28. package/src/components/badge/BadgeWrapper.tsx +37 -0
  29. package/src/components/badge/index.ts +2 -0
  30. package/src/components/button/Button.stories.tsx +355 -0
  31. package/src/components/button/Button.test.tsx +125 -0
  32. package/src/components/button/Button.tsx +101 -0
  33. package/src/components/button/ButtonGroup.stories.tsx +52 -0
  34. package/src/components/button/ButtonGroup.test.tsx +41 -0
  35. package/src/components/button/ButtonGroup.tsx +50 -0
  36. package/src/components/button/ButtonRoot.tsx +163 -0
  37. package/src/components/button/IconButton.stories.tsx +52 -0
  38. package/src/components/button/IconButton.test.tsx +66 -0
  39. package/src/components/button/IconButton.tsx +91 -0
  40. package/src/components/button/index.ts +4 -0
  41. package/src/components/checkbox/Checkbox.stories.tsx +64 -0
  42. package/src/components/checkbox/Checkbox.test.tsx +154 -0
  43. package/src/components/checkbox/Checkbox.tsx +164 -0
  44. package/src/components/checkbox/index.ts +1 -0
  45. package/src/components/chip/Chip.stories.tsx +164 -0
  46. package/src/components/chip/Chip.test.tsx +243 -0
  47. package/src/components/chip/Chip.tsx +168 -0
  48. package/src/components/chip/ChipGroup.stories.tsx +47 -0
  49. package/src/components/chip/ChipGroup.test.tsx +37 -0
  50. package/src/components/chip/ChipGroup.tsx +60 -0
  51. package/src/components/chip/index.ts +2 -0
  52. package/src/components/comment-block/CommentBlock.stories.tsx +91 -0
  53. package/src/components/comment-block/CommentBlock.test.tsx +28 -0
  54. package/src/components/comment-block/CommentBlock.tsx +172 -0
  55. package/src/components/comment-block/index.ts +1 -0
  56. package/src/components/date-picker/DatePicker.stories.tsx +118 -0
  57. package/src/components/date-picker/DatePicker.test.tsx +34 -0
  58. package/src/components/date-picker/DatePicker.tsx +52 -0
  59. package/src/components/date-picker/DatePickerControlled.test.tsx +91 -0
  60. package/src/components/date-picker/DatePickerControlled.tsx +259 -0
  61. package/src/components/date-picker/DatePickerField.stories.tsx +100 -0
  62. package/src/components/date-picker/DatePickerField.test.tsx +70 -0
  63. package/src/components/date-picker/DatePickerField.tsx +135 -0
  64. package/src/components/date-picker/constants.ts +11 -0
  65. package/src/components/date-picker/index.ts +4 -0
  66. package/src/components/date-picker/types.ts +28 -0
  67. package/src/components/dialog/Dialog.stories.tsx +318 -0
  68. package/src/components/dialog/Dialog.test.tsx +97 -0
  69. package/src/components/dialog/Dialog.tsx +288 -0
  70. package/src/components/dialog/index.ts +1 -0
  71. package/src/components/divider/Divider.test.tsx +51 -0
  72. package/src/components/divider/Divider.tsx +50 -0
  73. package/src/components/divider/index.ts +1 -0
  74. package/src/components/drag-handle/DragHandle.test.tsx +36 -0
  75. package/src/components/drag-handle/DragHandle.tsx +51 -0
  76. package/src/components/drag-handle/index.ts +1 -0
  77. package/src/components/dropdown/Dropdown.stories.tsx +31 -0
  78. package/src/components/dropdown/Dropdown.test.tsx +66 -0
  79. package/src/components/dropdown/Dropdown.tsx +186 -0
  80. package/src/components/dropdown/index.ts +1 -0
  81. package/src/components/expansion-panel/ExpansionPanel.stories.tsx +91 -0
  82. package/src/components/expansion-panel/ExpansionPanel.test.tsx +185 -0
  83. package/src/components/expansion-panel/ExpansionPanel.tsx +195 -0
  84. package/src/components/expansion-panel/index.ts +1 -0
  85. package/src/components/flag/Flag.stories.tsx +48 -0
  86. package/src/components/flag/Flag.test.tsx +62 -0
  87. package/src/components/flag/Flag.tsx +52 -0
  88. package/src/components/flag/index.ts +1 -0
  89. package/src/components/flex-box/FlexBox.stories.tsx +156 -0
  90. package/src/components/flex-box/FlexBox.test.tsx +24 -0
  91. package/src/components/flex-box/FlexBox.tsx +100 -0
  92. package/src/components/flex-box/index.ts +1 -0
  93. package/src/components/generic-block/GenericBlock.stories.jsx +128 -0
  94. package/src/components/generic-block/GenericBlock.test.tsx +156 -0
  95. package/src/components/generic-block/GenericBlock.tsx +225 -0
  96. package/src/components/generic-block/constants.ts +9 -0
  97. package/src/components/generic-block/index.ts +2 -0
  98. package/src/components/grid/Grid.tsx +83 -0
  99. package/src/components/grid/GridItem.tsx +55 -0
  100. package/src/components/grid/index.ts +2 -0
  101. package/src/components/grid-column/GridColumn.stories.tsx +45 -0
  102. package/src/components/grid-column/GridColumn.test.jsx +56 -0
  103. package/src/components/grid-column/GridColumn.tsx +83 -0
  104. package/src/components/grid-column/index.ts +1 -0
  105. package/src/components/heading/Heading.stories.tsx +69 -0
  106. package/src/components/heading/Heading.test.tsx +82 -0
  107. package/src/components/heading/Heading.tsx +65 -0
  108. package/src/components/heading/HeadingLevelProvider.tsx +30 -0
  109. package/src/components/heading/constants.ts +16 -0
  110. package/src/components/heading/context.tsx +13 -0
  111. package/src/components/heading/index.ts +3 -0
  112. package/src/components/heading/useHeadingLevel.tsx +8 -0
  113. package/src/components/icon/Icon.stories.tsx +73 -0
  114. package/src/components/icon/Icon.test.tsx +125 -0
  115. package/src/components/icon/Icon.tsx +133 -0
  116. package/src/components/icon/index.ts +1 -0
  117. package/src/components/image-block/ImageBlock.stories.tsx +117 -0
  118. package/src/components/image-block/ImageBlock.test.tsx +58 -0
  119. package/src/components/image-block/ImageBlock.tsx +142 -0
  120. package/src/components/image-block/ImageCaption.tsx +115 -0
  121. package/src/components/image-block/index.ts +1 -0
  122. package/src/components/image-lightbox/ImageLightbox.stories.tsx +160 -0
  123. package/src/components/image-lightbox/ImageLightbox.test.tsx +254 -0
  124. package/src/components/image-lightbox/ImageLightbox.tsx +90 -0
  125. package/src/components/image-lightbox/constants.ts +11 -0
  126. package/src/components/image-lightbox/index.ts +2 -0
  127. package/src/components/image-lightbox/internal/ImageSlide.tsx +107 -0
  128. package/src/components/image-lightbox/internal/ImageSlideshow.tsx +164 -0
  129. package/src/components/image-lightbox/internal/useAnimateScroll.ts +55 -0
  130. package/src/components/image-lightbox/internal/usePointerZoom.ts +148 -0
  131. package/src/components/image-lightbox/types.ts +48 -0
  132. package/src/components/image-lightbox/useImageLightbox.tsx +141 -0
  133. package/src/components/inline-list/InlineList.stories.tsx +77 -0
  134. package/src/components/inline-list/InlineList.test.tsx +52 -0
  135. package/src/components/inline-list/InlineList.tsx +96 -0
  136. package/src/components/inline-list/index.ts +1 -0
  137. package/src/components/input-helper/InputHelper.stories.tsx +35 -0
  138. package/src/components/input-helper/InputHelper.test.tsx +55 -0
  139. package/src/components/input-helper/InputHelper.tsx +65 -0
  140. package/src/components/input-helper/constants.ts +11 -0
  141. package/src/components/input-helper/index.ts +1 -0
  142. package/src/components/input-label/InputLabel.stories.tsx +45 -0
  143. package/src/components/input-label/InputLabel.test.tsx +59 -0
  144. package/src/components/input-label/InputLabel.tsx +69 -0
  145. package/src/components/input-label/index.ts +1 -0
  146. package/src/components/lightbox/Lightbox.stories.tsx +101 -0
  147. package/src/components/lightbox/Lightbox.test.tsx +53 -0
  148. package/src/components/lightbox/Lightbox.tsx +180 -0
  149. package/src/components/lightbox/index.ts +1 -0
  150. package/src/components/link/Link.stories.tsx +195 -0
  151. package/src/components/link/Link.test.tsx +127 -0
  152. package/src/components/link/Link.tsx +106 -0
  153. package/src/components/link/index.ts +1 -0
  154. package/src/components/link-preview/LinkPreview.stories.tsx +61 -0
  155. package/src/components/link-preview/LinkPreview.test.tsx +105 -0
  156. package/src/components/link-preview/LinkPreview.tsx +158 -0
  157. package/src/components/link-preview/index.ts +1 -0
  158. package/src/components/list/List.stories.tsx +116 -0
  159. package/src/components/list/List.test.tsx +18 -0
  160. package/src/components/list/List.tsx +104 -0
  161. package/src/components/list/ListDivider.stories.tsx +12 -0
  162. package/src/components/list/ListDivider.test.tsx +22 -0
  163. package/src/components/list/ListDivider.tsx +35 -0
  164. package/src/components/list/ListItem.stories.tsx +66 -0
  165. package/src/components/list/ListItem.test.tsx +93 -0
  166. package/src/components/list/ListItem.tsx +157 -0
  167. package/src/components/list/ListSubheader.stories.tsx +11 -0
  168. package/src/components/list/ListSubheader.test.tsx +21 -0
  169. package/src/components/list/ListSubheader.tsx +44 -0
  170. package/src/components/list/index.ts +4 -0
  171. package/src/components/list/useInteractiveList.tsx +202 -0
  172. package/src/components/message/Message.stories.tsx +72 -0
  173. package/src/components/message/Message.test.tsx +76 -0
  174. package/src/components/message/Message.tsx +100 -0
  175. package/src/components/message/index.ts +1 -0
  176. package/src/components/mosaic/Mosaic.stories.tsx +89 -0
  177. package/src/components/mosaic/Mosaic.test.tsx +77 -0
  178. package/src/components/mosaic/Mosaic.tsx +98 -0
  179. package/src/components/mosaic/index.ts +1 -0
  180. package/src/components/navigation/Navigation.stories.tsx +234 -0
  181. package/src/components/navigation/Navigation.test.tsx +65 -0
  182. package/src/components/navigation/Navigation.tsx +79 -0
  183. package/src/components/navigation/NavigationItem.test.tsx +35 -0
  184. package/src/components/navigation/NavigationItem.tsx +82 -0
  185. package/src/components/navigation/NavigationSection.test.tsx +137 -0
  186. package/src/components/navigation/NavigationSection.tsx +108 -0
  187. package/src/components/navigation/context.tsx +7 -0
  188. package/src/components/navigation/index.ts +1 -0
  189. package/src/components/notification/Notification.test.tsx +94 -0
  190. package/src/components/notification/Notification.tsx +138 -0
  191. package/src/components/notification/Notifications.stories.tsx +92 -0
  192. package/src/components/notification/constants.ts +28 -0
  193. package/src/components/notification/index.ts +1 -0
  194. package/src/components/popover/Popover.stories.tsx +264 -0
  195. package/src/components/popover/Popover.test.tsx +62 -0
  196. package/src/components/popover/Popover.tsx +201 -0
  197. package/src/components/popover/constants.ts +62 -0
  198. package/src/components/popover/index.ts +3 -0
  199. package/src/components/popover/usePopoverStyle.tsx +184 -0
  200. package/src/components/popover/useRestoreFocusOnClose.tsx +47 -0
  201. package/src/components/popover-dialog/PopoverDialog.stories.tsx +64 -0
  202. package/src/components/popover-dialog/PopoverDialog.test.tsx +139 -0
  203. package/src/components/popover-dialog/PopoverDialog.tsx +74 -0
  204. package/src/components/popover-dialog/index.tsx +1 -0
  205. package/src/components/post-block/PostBlock.test.tsx +27 -0
  206. package/src/components/post-block/PostBlock.tsx +122 -0
  207. package/src/components/post-block/index.ts +1 -0
  208. package/src/components/progress/Progress.tsx +68 -0
  209. package/src/components/progress/ProgressCircular.stories.tsx +43 -0
  210. package/src/components/progress/ProgressCircular.test.tsx +46 -0
  211. package/src/components/progress/ProgressCircular.tsx +82 -0
  212. package/src/components/progress/ProgressLinear.stories.tsx +12 -0
  213. package/src/components/progress/ProgressLinear.test.tsx +30 -0
  214. package/src/components/progress/ProgressLinear.tsx +50 -0
  215. package/src/components/progress/index.ts +3 -0
  216. package/src/components/progress-tracker/ProgressTracker.stories.tsx +145 -0
  217. package/src/components/progress-tracker/ProgressTracker.test.tsx +42 -0
  218. package/src/components/progress-tracker/ProgressTracker.tsx +87 -0
  219. package/src/components/progress-tracker/ProgressTrackerProvider.test.tsx +65 -0
  220. package/src/components/progress-tracker/ProgressTrackerProvider.tsx +67 -0
  221. package/src/components/progress-tracker/ProgressTrackerStep.test.tsx +36 -0
  222. package/src/components/progress-tracker/ProgressTrackerStep.tsx +159 -0
  223. package/src/components/progress-tracker/ProgressTrackerStepPanel.test.tsx +34 -0
  224. package/src/components/progress-tracker/ProgressTrackerStepPanel.tsx +67 -0
  225. package/src/components/progress-tracker/index.ts +4 -0
  226. package/src/components/radio-button/RadioButton.stories.tsx +71 -0
  227. package/src/components/radio-button/RadioButton.test.tsx +143 -0
  228. package/src/components/radio-button/RadioButton.tsx +143 -0
  229. package/src/components/radio-button/RadioGroup.stories.tsx +39 -0
  230. package/src/components/radio-button/RadioGroup.test.tsx +29 -0
  231. package/src/components/radio-button/RadioGroup.tsx +44 -0
  232. package/src/components/radio-button/index.ts +2 -0
  233. package/src/components/select/Select.stories.tsx +385 -0
  234. package/src/components/select/Select.test.tsx +199 -0
  235. package/src/components/select/Select.tsx +199 -0
  236. package/src/components/select/SelectMultiple.stories.tsx +315 -0
  237. package/src/components/select/SelectMultiple.test.tsx +213 -0
  238. package/src/components/select/SelectMultiple.tsx +206 -0
  239. package/src/components/select/WithSelectContext.tsx +147 -0
  240. package/src/components/select/constants.ts +55 -0
  241. package/src/components/select/index.ts +2 -0
  242. package/src/components/side-navigation/SideNavigation.stories.tsx +191 -0
  243. package/src/components/side-navigation/SideNavigation.test.tsx +37 -0
  244. package/src/components/side-navigation/SideNavigation.tsx +52 -0
  245. package/src/components/side-navigation/SideNavigationItem.stories.tsx +133 -0
  246. package/src/components/side-navigation/SideNavigationItem.test.tsx +136 -0
  247. package/src/components/side-navigation/SideNavigationItem.tsx +165 -0
  248. package/src/components/side-navigation/index.ts +2 -0
  249. package/src/components/skeleton/SkeletonCircle.stories.tsx +41 -0
  250. package/src/components/skeleton/SkeletonCircle.test.tsx +27 -0
  251. package/src/components/skeleton/SkeletonCircle.tsx +52 -0
  252. package/src/components/skeleton/SkeletonRectangle.stories.tsx +82 -0
  253. package/src/components/skeleton/SkeletonRectangle.test.tsx +27 -0
  254. package/src/components/skeleton/SkeletonRectangle.tsx +88 -0
  255. package/src/components/skeleton/SkeletonTypography.stories.tsx +19 -0
  256. package/src/components/skeleton/SkeletonTypography.test.tsx +27 -0
  257. package/src/components/skeleton/SkeletonTypography.tsx +59 -0
  258. package/src/components/skeleton/index.ts +3 -0
  259. package/src/components/slider/Slider.stories.tsx +45 -0
  260. package/src/components/slider/Slider.test.tsx +29 -0
  261. package/src/components/slider/Slider.tsx +299 -0
  262. package/src/components/slider/index.ts +2 -0
  263. package/src/components/slideshow/Slides.tsx +130 -0
  264. package/src/components/slideshow/Slideshow.stories.tsx +179 -0
  265. package/src/components/slideshow/Slideshow.test.tsx +35 -0
  266. package/src/components/slideshow/Slideshow.tsx +173 -0
  267. package/src/components/slideshow/SlideshowControls.stories.tsx +100 -0
  268. package/src/components/slideshow/SlideshowControls.tsx +243 -0
  269. package/src/components/slideshow/SlideshowItem.tsx +44 -0
  270. package/src/components/slideshow/SlideshowItemGroup.tsx +60 -0
  271. package/src/components/slideshow/constants.ts +24 -0
  272. package/src/components/slideshow/index.ts +4 -0
  273. package/src/components/slideshow/useKeyNavigate.ts +28 -0
  274. package/src/components/slideshow/usePaginationVisibleRange.ts +37 -0
  275. package/src/components/slideshow/useSlideFocusManagement.tsx +92 -0
  276. package/src/components/slideshow/useSwipeNavigate.ts +18 -0
  277. package/src/components/switch/Switch.stories.tsx +49 -0
  278. package/src/components/switch/Switch.test.tsx +144 -0
  279. package/src/components/switch/Switch.tsx +145 -0
  280. package/src/components/switch/index.ts +1 -0
  281. package/src/components/table/Table.test.tsx +29 -0
  282. package/src/components/table/Table.tsx +59 -0
  283. package/src/components/table/TableBody.test.tsx +30 -0
  284. package/src/components/table/TableBody.tsx +42 -0
  285. package/src/components/table/TableCell.test.tsx +72 -0
  286. package/src/components/table/TableCell.tsx +130 -0
  287. package/src/components/table/TableHeader.test.tsx +30 -0
  288. package/src/components/table/TableHeader.tsx +48 -0
  289. package/src/components/table/TableRow.test.tsx +40 -0
  290. package/src/components/table/TableRow.tsx +71 -0
  291. package/src/components/table/index.ts +5 -0
  292. package/src/components/tabs/Tab.test.tsx +50 -0
  293. package/src/components/tabs/Tab.tsx +133 -0
  294. package/src/components/tabs/TabList.test.tsx +49 -0
  295. package/src/components/tabs/TabList.tsx +94 -0
  296. package/src/components/tabs/TabPanel.test.tsx +37 -0
  297. package/src/components/tabs/TabPanel.tsx +67 -0
  298. package/src/components/tabs/TabProvider.test.tsx +161 -0
  299. package/src/components/tabs/TabProvider.tsx +67 -0
  300. package/src/components/tabs/Tabs.stories.tsx +170 -0
  301. package/src/components/tabs/index.ts +4 -0
  302. package/src/components/tabs/state.ts +114 -0
  303. package/src/components/tabs/test-utils.ts +39 -0
  304. package/src/components/text/Text.stories.tsx +177 -0
  305. package/src/components/text/Text.test.tsx +92 -0
  306. package/src/components/text/Text.tsx +139 -0
  307. package/src/components/text/index.ts +1 -0
  308. package/src/components/text-field/TextField.stories.tsx +180 -0
  309. package/src/components/text-field/TextField.test.tsx +298 -0
  310. package/src/components/text-field/TextField.tsx +493 -0
  311. package/src/components/text-field/index.ts +1 -0
  312. package/src/components/thumbnail/Thumbnail.stories.tsx +448 -0
  313. package/src/components/thumbnail/Thumbnail.test.tsx +88 -0
  314. package/src/components/thumbnail/Thumbnail.tsx +248 -0
  315. package/src/components/thumbnail/index.ts +3 -0
  316. package/src/components/thumbnail/types.ts +48 -0
  317. package/src/components/thumbnail/useFocusPointStyle.test.ts +92 -0
  318. package/src/components/thumbnail/useFocusPointStyle.tsx +107 -0
  319. package/src/components/thumbnail/useImageLoad.ts +40 -0
  320. package/src/components/toolbar/Toolbar.tsx +68 -0
  321. package/src/components/toolbar/index.ts +1 -0
  322. package/src/components/tooltip/Tooltip.stories.tsx +118 -0
  323. package/src/components/tooltip/Tooltip.test.tsx +417 -0
  324. package/src/components/tooltip/Tooltip.tsx +165 -0
  325. package/src/components/tooltip/constants.ts +8 -0
  326. package/src/components/tooltip/context.tsx +17 -0
  327. package/src/components/tooltip/index.ts +1 -0
  328. package/src/components/tooltip/useInjectTooltipRef.tsx +55 -0
  329. package/src/components/tooltip/useTooltipOpen.tsx +143 -0
  330. package/src/components/uploader/Uploader.stories.tsx +109 -0
  331. package/src/components/uploader/Uploader.test.tsx +146 -0
  332. package/src/components/uploader/Uploader.tsx +177 -0
  333. package/src/components/uploader/index.ts +1 -0
  334. package/src/components/user-block/UserBlock.stories.tsx +133 -0
  335. package/src/components/user-block/UserBlock.test.tsx +106 -0
  336. package/src/components/user-block/UserBlock.tsx +193 -0
  337. package/src/components/user-block/index.ts +1 -0
  338. package/src/constants.ts +27 -0
  339. package/src/hooks/useBooleanState.tsx +13 -0
  340. package/src/hooks/useCallbackOnEscape.ts +34 -0
  341. package/src/hooks/useChipGroupNavigation.tsx +75 -0
  342. package/src/hooks/useClickAway.tsx +48 -0
  343. package/src/hooks/useDisableBodyScroll.ts +28 -0
  344. package/src/hooks/useEventCallback.tsx +17 -0
  345. package/src/hooks/useFocus.tsx +21 -0
  346. package/src/hooks/useFocusTrap.ts +93 -0
  347. package/src/hooks/useFocusWithin.ts +33 -0
  348. package/src/hooks/useId.test.tsx +22 -0
  349. package/src/hooks/useId.ts +15 -0
  350. package/src/hooks/useImageSize.ts +17 -0
  351. package/src/hooks/useInfiniteScroll.tsx +60 -0
  352. package/src/hooks/useIntersectionObserver.tsx +43 -0
  353. package/src/hooks/useInterval.tsx +31 -0
  354. package/src/hooks/useKeyboardListNavigation.tsx +204 -0
  355. package/src/hooks/useListenFocus.tsx +26 -0
  356. package/src/hooks/useOverflowTooltipLabel.tsx +32 -0
  357. package/src/hooks/usePopper.ts +12 -0
  358. package/src/hooks/usePreviousValue.ts +12 -0
  359. package/src/hooks/useRovingTabIndex.tsx +90 -0
  360. package/src/hooks/useSizeOnWindowResize.ts +30 -0
  361. package/src/hooks/useSlideshowControls.ts +246 -0
  362. package/src/hooks/useStopPropagation.ts +21 -0
  363. package/src/hooks/useTransitionVisibility.ts +48 -0
  364. package/src/index.ts +63 -0
  365. package/src/stories/controls/color.ts +7 -0
  366. package/src/stories/controls/element.ts +6 -0
  367. package/src/stories/controls/focusPoint.ts +1 -0
  368. package/src/stories/controls/icons.ts +126 -0
  369. package/src/stories/controls/image.ts +84 -0
  370. package/src/stories/controls/selectArgType.ts +8 -0
  371. package/src/stories/controls/theme.ts +3 -0
  372. package/src/stories/controls/typography.ts +5 -0
  373. package/src/stories/controls/withUndefined.ts +1 -0
  374. package/src/stories/decorators/withChromaticForceScreenSize.tsx +7 -0
  375. package/src/stories/decorators/withCombinations.tsx +132 -0
  376. package/src/stories/decorators/withNestedProps.tsx +22 -0
  377. package/src/stories/decorators/withResizableBox.tsx +21 -0
  378. package/src/stories/decorators/withThemedBackground.tsx +16 -0
  379. package/src/stories/decorators/withValueOnChange.tsx +18 -0
  380. package/src/stories/decorators/withWrapper.tsx +19 -0
  381. package/src/stories/generated/Autocomplete/Demos.stories.tsx +7 -0
  382. package/src/stories/generated/Avatar/Demos.stories.tsx +7 -0
  383. package/src/stories/generated/Badge/Demos.stories.tsx +9 -0
  384. package/src/stories/generated/Button/Demos.stories.tsx +11 -0
  385. package/src/stories/generated/Checkbox/Demos.stories.tsx +6 -0
  386. package/src/stories/generated/Chip/Demos.stories.tsx +11 -0
  387. package/src/stories/generated/CommentBlock/Demos.stories.tsx +8 -0
  388. package/src/stories/generated/DatePicker/Demos.stories.tsx +8 -0
  389. package/src/stories/generated/Dialog/Demos.stories.tsx +10 -0
  390. package/src/stories/generated/Divider/Demos.stories.tsx +6 -0
  391. package/src/stories/generated/Dropdown/Demos.stories.tsx +8 -0
  392. package/src/stories/generated/ExpansionPanel/Demos.stories.tsx +9 -0
  393. package/src/stories/generated/Flag/Demos.stories.tsx +6 -0
  394. package/src/stories/generated/GenericBlock/Demos.stories.tsx +8 -0
  395. package/src/stories/generated/Heading/Demos.stories.tsx +6 -0
  396. package/src/stories/generated/Icon/Demos.stories.tsx +8 -0
  397. package/src/stories/generated/ImageBlock/Demos.stories.tsx +9 -0
  398. package/src/stories/generated/ImageLightbox/Demos.stories.tsx +6 -0
  399. package/src/stories/generated/Lightbox/Demos.stories.tsx +6 -0
  400. package/src/stories/generated/LinkPreview/Demos.stories.tsx +7 -0
  401. package/src/stories/generated/List/Demos.stories.tsx +11 -0
  402. package/src/stories/generated/Message/Demos.stories.tsx +11 -0
  403. package/src/stories/generated/Mosaic/Demos.stories.tsx +10 -0
  404. package/src/stories/generated/Notification/Demos.stories.tsx +6 -0
  405. package/src/stories/generated/Popover/Demos.stories.tsx +11 -0
  406. package/src/stories/generated/PopoverDialog/Demos.stories.tsx +6 -0
  407. package/src/stories/generated/PostBlock/Demos.stories.tsx +6 -0
  408. package/src/stories/generated/Progress/Demos.stories.tsx +7 -0
  409. package/src/stories/generated/ProgressTracker/Demos.stories.tsx +9 -0
  410. package/src/stories/generated/RadioButton/Demos.stories.tsx +6 -0
  411. package/src/stories/generated/Select/Demos.stories.tsx +14 -0
  412. package/src/stories/generated/SideNavigation/Demos.stories.tsx +10 -0
  413. package/src/stories/generated/Skeleton/Demos.stories.tsx +9 -0
  414. package/src/stories/generated/Slider/Demos.stories.tsx +9 -0
  415. package/src/stories/generated/Slideshow/Demos.stories.tsx +8 -0
  416. package/src/stories/generated/Switch/Demos.stories.tsx +6 -0
  417. package/src/stories/generated/Table/Demos.stories.tsx +7 -0
  418. package/src/stories/generated/Tabs/Demos.stories.tsx +8 -0
  419. package/src/stories/generated/TextField/Demos.stories.tsx +20 -0
  420. package/src/stories/generated/Thumbnail/Demos.stories.tsx +12 -0
  421. package/src/stories/generated/Toolbar/Demos.stories.tsx +10 -0
  422. package/src/stories/generated/Tooltip/Demos.stories.tsx +8 -0
  423. package/src/stories/generated/Uploader/Demos.stories.tsx +8 -0
  424. package/src/stories/generated/UserBlock/Demos.stories.tsx +11 -0
  425. package/src/stories/utils/CustomLink.tsx +12 -0
  426. package/src/stories/utils/concatPath.tsx +17 -0
  427. package/src/stories/utils/disableArgTypes.ts +3 -0
  428. package/src/stories/utils/initDemoShadowDOMPortal.ts +10 -0
  429. package/src/stories/utils/lorem.ts +59 -0
  430. package/src/stories/utils/theming.tsx +166 -0
  431. package/src/stories/utils/toFlattenProps.ts +28 -0
  432. package/src/stories/utils/withCategory.ts +12 -0
  433. package/src/testing/utils/ThemeSentinel.tsx +10 -0
  434. package/src/testing/utils/commonTestsSuiteRTL.tsx +193 -0
  435. package/src/testing/utils/index.ts +1 -0
  436. package/src/testing/utils/queries.ts +19 -0
  437. package/src/untypped-modules.d.ts +9 -0
  438. package/src/utils/ClickAwayProvider/ClickAwayProvider.stories.jsx +70 -0
  439. package/src/utils/ClickAwayProvider/ClickAwayProvider.tsx +69 -0
  440. package/src/utils/ClickAwayProvider/index.ts +1 -0
  441. package/src/utils/MaterialThemeSwitcher/MaterialThemeSwitcher.tsx +54 -0
  442. package/src/utils/MaterialThemeSwitcher/index.ts +1 -0
  443. package/src/utils/Portal/Portal.test.tsx +31 -0
  444. package/src/utils/Portal/Portal.tsx +33 -0
  445. package/src/utils/Portal/PortalProvider.stories.jsx +22 -0
  446. package/src/utils/Portal/PortalProvider.test.tsx +72 -0
  447. package/src/utils/Portal/PortalProvider.tsx +24 -0
  448. package/src/utils/Portal/index.tsx +2 -0
  449. package/src/utils/browser/DOM/findImage.tsx +3 -0
  450. package/src/utils/browser/DOM/startViewTransition.ts +68 -0
  451. package/src/utils/browser/focus/constants.ts +7 -0
  452. package/src/utils/browser/focus/getFirstAndLastFocusable.test.ts +134 -0
  453. package/src/utils/browser/focus/getFirstAndLastFocusable.ts +21 -0
  454. package/src/utils/browser/focus/getFocusableElements.test.ts +151 -0
  455. package/src/utils/browser/focus/getFocusableElements.ts +7 -0
  456. package/src/utils/browser/isFocusVisible.ts +9 -0
  457. package/src/utils/browser/isHoverNotSupported.test.js +24 -0
  458. package/src/utils/browser/isHoverNotSupported.ts +2 -0
  459. package/src/utils/browser/isReducedMotion.ts +6 -0
  460. package/src/utils/date/addMonthResetDay.test.ts +13 -0
  461. package/src/utils/date/addMonthResetDay.ts +9 -0
  462. package/src/utils/date/formatDayNumber.test.ts +12 -0
  463. package/src/utils/date/formatDayNumber.ts +5 -0
  464. package/src/utils/date/getFirstDayOfWeek.test.ts +20 -0
  465. package/src/utils/date/getFirstDayOfWeek.ts +59 -0
  466. package/src/utils/date/getMonthCalendar.test.ts +127 -0
  467. package/src/utils/date/getMonthCalendar.ts +69 -0
  468. package/src/utils/date/getWeekDays.test.ts +48 -0
  469. package/src/utils/date/getWeekDays.ts +34 -0
  470. package/src/utils/date/getYearDisplayName.test.ts +20 -0
  471. package/src/utils/date/getYearDisplayName.ts +12 -0
  472. package/src/utils/date/isDateValid.test.ts +15 -0
  473. package/src/utils/date/isDateValid.ts +4 -0
  474. package/src/utils/date/isSameDay.test.ts +37 -0
  475. package/src/utils/date/isSameDay.ts +11 -0
  476. package/src/utils/disabled/DisabledStateContext.tsx +29 -0
  477. package/src/utils/disabled/DisabledStateProvider.stories.tsx +92 -0
  478. package/src/utils/disabled/index.ts +2 -0
  479. package/src/utils/disabled/useDisableStateProps.test.tsx +74 -0
  480. package/src/utils/disabled/useDisableStateProps.tsx +37 -0
  481. package/src/utils/function/makeListenerTowerContext.ts +32 -0
  482. package/src/utils/index.ts +7 -0
  483. package/src/utils/locale/getCurrentLocale.ts +4 -0
  484. package/src/utils/locale/parseLocale.test.ts +17 -0
  485. package/src/utils/locale/parseLocale.ts +23 -0
  486. package/src/utils/locale/types.ts +8 -0
  487. package/src/utils/number/clamp.ts +17 -0
  488. package/src/utils/object/isEqual.test.ts +25 -0
  489. package/src/utils/object/isEqual.ts +11 -0
  490. package/src/utils/partitionMulti.test.ts +27 -0
  491. package/{_internal/4daccdd5.js → src/utils/partitionMulti.ts} +9 -5
  492. package/src/utils/react/OnBeforeUnmount.tsx +20 -0
  493. package/src/utils/react/RawClickable.test.tsx +153 -0
  494. package/src/utils/react/RawClickable.tsx +65 -0
  495. package/src/utils/react/flattenChildren.ts +32 -0
  496. package/src/utils/react/forwardRef.ts +11 -0
  497. package/src/utils/react/forwardRefPolymorphic.ts +9 -0
  498. package/src/utils/react/mergeRefs.ts +33 -0
  499. package/src/utils/react/renderLink.tsx +17 -0
  500. package/src/utils/react/skipRender.tsx +18 -0
  501. package/src/utils/react/unref.ts +7 -0
  502. package/src/utils/react/wrapChildrenIconWithSpaces.test.tsx +37 -0
  503. package/src/utils/react/wrapChildrenIconWithSpaces.tsx +22 -0
  504. package/src/utils/theme/ThemeContext.ts +16 -0
  505. package/src/utils/theme/invertTheme.ts +4 -0
  506. package/src/utils/type/Comp.ts +14 -0
  507. package/src/utils/type/ComponentRef.ts +16 -0
  508. package/src/utils/type/HasAriaDisabled.ts +6 -0
  509. package/src/utils/type/HasPolymorphicAs.ts +6 -0
  510. package/src/utils/type/HasRequiredLinkHref.ts +1 -0
  511. package/src/utils/type/MaybeElementOrRef.ts +6 -0
  512. package/src/utils/type/index.ts +9 -0
  513. package/src/utils/type/isComponent.ts +33 -0
  514. package/src/utils/type/isComponentType.ts +9 -0
  515. package/utils/index.d.ts +1 -1
  516. package/utils/index.js +1 -3
  517. package/utils/index.js.map +1 -1
  518. package/_internal/0420e67b.js +0 -119
  519. package/_internal/0420e67b.js.map +0 -1
  520. package/_internal/0a490b07.js +0 -75
  521. package/_internal/0a490b07.js.map +0 -1
  522. package/_internal/0b9c76cb.js +0 -6
  523. package/_internal/0b9c76cb.js.map +0 -1
  524. package/_internal/0be1006e.js +0 -97
  525. package/_internal/0be1006e.js.map +0 -1
  526. package/_internal/0d1a078c.js +0 -144
  527. package/_internal/0d1a078c.js.map +0 -1
  528. package/_internal/15eab19b.js +0 -75
  529. package/_internal/15eab19b.js.map +0 -1
  530. package/_internal/179a84d1.js +0 -259
  531. package/_internal/179a84d1.js.map +0 -1
  532. package/_internal/193521fa.js +0 -52
  533. package/_internal/193521fa.js.map +0 -1
  534. package/_internal/1a90ea3d.js +0 -51
  535. package/_internal/1a90ea3d.js.map +0 -1
  536. package/_internal/1deba7d7.js +0 -224
  537. package/_internal/1deba7d7.js.map +0 -1
  538. package/_internal/1ea72630.js +0 -146
  539. package/_internal/1ea72630.js.map +0 -1
  540. package/_internal/21b83d16.js +0 -137
  541. package/_internal/21b83d16.js.map +0 -1
  542. package/_internal/230173a8.js +0 -13
  543. package/_internal/230173a8.js.map +0 -1
  544. package/_internal/297bed8f.js +0 -457
  545. package/_internal/297bed8f.js.map +0 -1
  546. package/_internal/2a3d237c.js +0 -12
  547. package/_internal/2a3d237c.js.map +0 -1
  548. package/_internal/2c2b6a89.js +0 -52
  549. package/_internal/2c2b6a89.js.map +0 -1
  550. package/_internal/2f1716fa.js +0 -237
  551. package/_internal/2f1716fa.js.map +0 -1
  552. package/_internal/2f6c7f84.js +0 -103
  553. package/_internal/2f6c7f84.js.map +0 -1
  554. package/_internal/3181f000.js +0 -14
  555. package/_internal/3181f000.js.map +0 -1
  556. package/_internal/329b5f12.js +0 -55
  557. package/_internal/329b5f12.js.map +0 -1
  558. package/_internal/332e9844.js +0 -2
  559. package/_internal/332e9844.js.map +0 -1
  560. package/_internal/34c59f5b.js +0 -681
  561. package/_internal/34c59f5b.js.map +0 -1
  562. package/_internal/36bd7352.js +0 -219
  563. package/_internal/36bd7352.js.map +0 -1
  564. package/_internal/370bdaed.js +0 -61
  565. package/_internal/370bdaed.js.map +0 -1
  566. package/_internal/37b007a4.js +0 -20
  567. package/_internal/37b007a4.js.map +0 -1
  568. package/_internal/3a1facc0.js +0 -18
  569. package/_internal/3a1facc0.js.map +0 -1
  570. package/_internal/3a4e4636.js +0 -162
  571. package/_internal/3a4e4636.js.map +0 -1
  572. package/_internal/3e653144.js +0 -49
  573. package/_internal/3e653144.js.map +0 -1
  574. package/_internal/3f86608e.js +0 -45
  575. package/_internal/3f86608e.js.map +0 -1
  576. package/_internal/478b5c92.js +0 -24
  577. package/_internal/478b5c92.js.map +0 -1
  578. package/_internal/4962be5b.js +0 -121
  579. package/_internal/4962be5b.js.map +0 -1
  580. package/_internal/49bbeed3.js +0 -6
  581. package/_internal/49bbeed3.js.map +0 -1
  582. package/_internal/4cd870a5.js +0 -2155
  583. package/_internal/4cd870a5.js.map +0 -1
  584. package/_internal/4daccdd5.js.map +0 -1
  585. package/_internal/501f2f9f.js +0 -58
  586. package/_internal/501f2f9f.js.map +0 -1
  587. package/_internal/5e7b90e2.js +0 -2
  588. package/_internal/5e7b90e2.js.map +0 -1
  589. package/_internal/5ec059fe.js +0 -145
  590. package/_internal/5ec059fe.js.map +0 -1
  591. package/_internal/5f8f9454.js +0 -70
  592. package/_internal/5f8f9454.js.map +0 -1
  593. package/_internal/5fe09341.js +0 -112
  594. package/_internal/5fe09341.js.map +0 -1
  595. package/_internal/628468c4.js +0 -313
  596. package/_internal/628468c4.js.map +0 -1
  597. package/_internal/6589b796.js +0 -280
  598. package/_internal/6589b796.js.map +0 -1
  599. package/_internal/65f91970.js +0 -297
  600. package/_internal/65f91970.js.map +0 -1
  601. package/_internal/66f691d3.js +0 -74
  602. package/_internal/66f691d3.js.map +0 -1
  603. package/_internal/68c10f98.js +0 -166
  604. package/_internal/68c10f98.js.map +0 -1
  605. package/_internal/690ca33e.js +0 -109
  606. package/_internal/690ca33e.js.map +0 -1
  607. package/_internal/6ca04271.js +0 -108
  608. package/_internal/6ca04271.js.map +0 -1
  609. package/_internal/6da19518.js +0 -165
  610. package/_internal/6da19518.js.map +0 -1
  611. package/_internal/7093ba23.js +0 -95
  612. package/_internal/7093ba23.js.map +0 -1
  613. package/_internal/74a4a214.js +0 -82
  614. package/_internal/74a4a214.js.map +0 -1
  615. package/_internal/76be70dd.js +0 -42
  616. package/_internal/76be70dd.js.map +0 -1
  617. package/_internal/78df9309.js +0 -20
  618. package/_internal/78df9309.js.map +0 -1
  619. package/_internal/7b221b05.js +0 -9
  620. package/_internal/7b221b05.js.map +0 -1
  621. package/_internal/7daf0f24.js +0 -77
  622. package/_internal/7daf0f24.js.map +0 -1
  623. package/_internal/7f54e947.js +0 -758
  624. package/_internal/7f54e947.js.map +0 -1
  625. package/_internal/825ac334.js +0 -130
  626. package/_internal/825ac334.js.map +0 -1
  627. package/_internal/827b804a.js +0 -6
  628. package/_internal/827b804a.js.map +0 -1
  629. package/_internal/84dfe68f.js +0 -436
  630. package/_internal/84dfe68f.js.map +0 -1
  631. package/_internal/85e3a5ca.js +0 -145
  632. package/_internal/85e3a5ca.js.map +0 -1
  633. package/_internal/86aa4aa4.js +0 -154
  634. package/_internal/86aa4aa4.js.map +0 -1
  635. package/_internal/88ec77c2.js +0 -130
  636. package/_internal/88ec77c2.js.map +0 -1
  637. package/_internal/8ab42752.js +0 -103
  638. package/_internal/8ab42752.js.map +0 -1
  639. package/_internal/95cfd814.js +0 -70
  640. package/_internal/95cfd814.js.map +0 -1
  641. package/_internal/9a4dfad0.js +0 -326
  642. package/_internal/9a4dfad0.js.map +0 -1
  643. package/_internal/9c9df5f2.js +0 -80
  644. package/_internal/9c9df5f2.js.map +0 -1
  645. package/_internal/9d1336a1.js +0 -19
  646. package/_internal/9d1336a1.js.map +0 -1
  647. package/_internal/9fdc715b.js +0 -152
  648. package/_internal/9fdc715b.js.map +0 -1
  649. package/_internal/a003602b.js +0 -116
  650. package/_internal/a003602b.js.map +0 -1
  651. package/_internal/a34639bd.js +0 -97
  652. package/_internal/a34639bd.js.map +0 -1
  653. package/_internal/a84f4981.js +0 -122
  654. package/_internal/a84f4981.js.map +0 -1
  655. package/_internal/b0a7a999.js +0 -59
  656. package/_internal/b0a7a999.js.map +0 -1
  657. package/_internal/b0b2e33d.js +0 -359
  658. package/_internal/b0b2e33d.js.map +0 -1
  659. package/_internal/b1af5979.js +0 -653
  660. package/_internal/b1af5979.js.map +0 -1
  661. package/_internal/b477da26.js +0 -164
  662. package/_internal/b477da26.js.map +0 -1
  663. package/_internal/b8667090.js +0 -36
  664. package/_internal/b8667090.js.map +0 -1
  665. package/_internal/bae266a9.js +0 -61
  666. package/_internal/bae266a9.js.map +0 -1
  667. package/_internal/be6da9b0.js +0 -296
  668. package/_internal/be6da9b0.js.map +0 -1
  669. package/_internal/c0414b89.js +0 -101
  670. package/_internal/c0414b89.js.map +0 -1
  671. package/_internal/c2388b10.js +0 -58
  672. package/_internal/c2388b10.js.map +0 -1
  673. package/_internal/c459a04d.js +0 -148
  674. package/_internal/c459a04d.js.map +0 -1
  675. package/_internal/c6ca7494.js +0 -2
  676. package/_internal/c6ca7494.js.map +0 -1
  677. package/_internal/cdddaed8.js +0 -116
  678. package/_internal/cdddaed8.js.map +0 -1
  679. package/_internal/d0dd1815.js +0 -10
  680. package/_internal/d0dd1815.js.map +0 -1
  681. package/_internal/d45e3f16.js +0 -15
  682. package/_internal/d45e3f16.js.map +0 -1
  683. package/_internal/d5f316cb.js +0 -62
  684. package/_internal/d5f316cb.js.map +0 -1
  685. package/_internal/db4fdc7b.js +0 -310
  686. package/_internal/db4fdc7b.js.map +0 -1
  687. package/_internal/dbe0cf24.js +0 -75
  688. package/_internal/dbe0cf24.js.map +0 -1
  689. package/_internal/de24f857.js +0 -4
  690. package/_internal/de24f857.js.map +0 -1
  691. package/_internal/e2afb13f.js +0 -75
  692. package/_internal/e2afb13f.js.map +0 -1
  693. package/_internal/e52f0d3f.js +0 -94
  694. package/_internal/e52f0d3f.js.map +0 -1
  695. package/_internal/e6dd117e.js +0 -50
  696. package/_internal/e6dd117e.js.map +0 -1
  697. package/_internal/e806b848.js +0 -9
  698. package/_internal/e806b848.js.map +0 -1
  699. package/_internal/ea04260d.js +0 -29
  700. package/_internal/ea04260d.js.map +0 -1
  701. package/_internal/eaa8b1d8.js +0 -150
  702. package/_internal/eaa8b1d8.js.map +0 -1
  703. package/_internal/eaf6c45a.js +0 -4
  704. package/_internal/eaf6c45a.js.map +0 -1
  705. package/_internal/edab29ce.js +0 -308
  706. package/_internal/edab29ce.js.map +0 -1
  707. package/_internal/ef5d1aac.js +0 -4
  708. package/_internal/ef5d1aac.js.map +0 -1
  709. package/_internal/f0900583.js +0 -142
  710. package/_internal/f0900583.js.map +0 -1
  711. package/_internal/f0d7d6ea.js +0 -30
  712. package/_internal/f0d7d6ea.js.map +0 -1
  713. package/_internal/f23cdf84.js +0 -181
  714. package/_internal/f23cdf84.js.map +0 -1
  715. package/_internal/f52e979e.js +0 -3
  716. package/_internal/f52e979e.js.map +0 -1
  717. package/_internal/f5508d3d.js +0 -792
  718. package/_internal/f5508d3d.js.map +0 -1
  719. package/_internal/f93fe83e.js +0 -46
  720. package/_internal/f93fe83e.js.map +0 -1
  721. /package/_internal/{d95844c1.d.ts → Falsy.d.ts} +0 -0
@@ -1,681 +0,0 @@
1
- import { m as getRootClassName, n as forwardRef, l as classNames, b as Theme, d as Emphasis } from './6589b796.js';
2
- import { jsx, jsxs } from 'react/jsx-runtime';
3
- import React__default, { useRef, useEffect, useState, useCallback, useMemo, Children } from 'react';
4
- import range from 'lodash/range';
5
- import { h as handleBasicClasses } from './e2afb13f.js';
6
- import { W as WINDOW } from './478b5c92.js';
7
- import isFunction from 'lodash/isFunction';
8
- import { u as useId } from './3a1facc0.js';
9
- import { u as useRovingTabIndex } from './7daf0f24.js';
10
- import { u as useTheme } from './3181f000.js';
11
- import { d as detectHorizontalSwipe } from './88ec77c2.js';
12
- import { I as IconButton } from './0a490b07.js';
13
- import { m as mdiChevronLeft, a as mdiChevronRight } from './827b804a.js';
14
- import chunk from 'lodash/chunk';
15
- import { m as mergeRefs } from './f0d7d6ea.js';
16
- import { g as getFocusableElements } from './230173a8.js';
17
-
18
- const mdiPauseCircleOutline = 'M13 16V8h2v8zm-4 0V8h2v8zm3-14a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8';
19
-
20
- const mdiPlayCircleOutline = 'M12 20a8.01 8.01 0 0 1 0-16 8.01 8.01 0 0 1 0 16m0-18A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m-2 14.5 6-4.5-6-4.5z';
21
-
22
- /**
23
- * Making setInterval Declarative with React Hooks.
24
- * Credits: https://overreacted.io/making-setinterval-declarative-with-react-hooks/
25
- *
26
- * @param callback Function called by setInterval.
27
- * @param delay Delay for setInterval.
28
- */
29
- function useInterval(callback, delay) {
30
- const savedCallback = useRef();
31
- useEffect(() => {
32
- savedCallback.current = callback;
33
- });
34
- useEffect(() => {
35
- if (delay === null) return undefined;
36
- function tick() {
37
- if (isFunction(savedCallback.current)) {
38
- savedCallback.current();
39
- }
40
- }
41
- const id = setInterval(tick, delay);
42
- return () => clearInterval(id);
43
- }, [delay]);
44
- }
45
-
46
- /**
47
- * Autoplay default interval in ms.
48
- */
49
- const AUTOPLAY_DEFAULT_INTERVAL = 5000;
50
-
51
- /**
52
- * Full width size in percent.
53
- */
54
- const FULL_WIDTH_PERCENT = 100;
55
-
56
- /**
57
- * Edge from the active index.
58
- */
59
- const EDGE_FROM_ACTIVE_INDEX = 2;
60
-
61
- /**
62
- * Max number of pagination items.
63
- */
64
- const PAGINATION_ITEMS_MAX = 5;
65
-
66
- /**
67
- * Size of a pagination item. Used to translate wrapper.
68
- */
69
- const PAGINATION_ITEM_SIZE = 12;
70
-
71
- const DEFAULT_OPTIONS = {
72
- activeIndex: 0,
73
- groupBy: 1,
74
- interval: AUTOPLAY_DEFAULT_INTERVAL
75
- };
76
- const useSlideshowControls = ({
77
- activeIndex = DEFAULT_OPTIONS.activeIndex,
78
- groupBy = DEFAULT_OPTIONS.groupBy,
79
- interval = DEFAULT_OPTIONS.interval,
80
- autoPlay,
81
- defaultActiveIndex,
82
- onChange,
83
- itemsCount,
84
- id,
85
- slidesId
86
- }) => {
87
- const [currentIndex, setCurrentIndex] = useState(activeIndex);
88
- // Use state instead of a ref to make the slideshow controls update directly when the element is set.
89
- const [element, setElement] = useState(null);
90
-
91
- // Number of slides when using groupBy prop.
92
- const slidesCount = Math.ceil(itemsCount / Math.min(groupBy, itemsCount));
93
-
94
- // Change current index to display next slide.
95
- const goToNextSlide = useCallback((loopback = true) => {
96
- setCurrentIndex(index => {
97
- if (loopback && index === slidesCount - 1) {
98
- // Loopback to the start.
99
- return 0;
100
- }
101
- if (index < slidesCount - 1) {
102
- // Next slide.
103
- return index + 1;
104
- }
105
- return index;
106
- });
107
- }, [slidesCount, setCurrentIndex]);
108
-
109
- // Change current index to display previous slide.
110
- const goToPreviousSlide = useCallback((loopback = true) => {
111
- setCurrentIndex(index => {
112
- if (loopback && index === 0) {
113
- // Loopback to the end.
114
- return slidesCount - 1;
115
- }
116
- if (index > 0) {
117
- // Previous slide.
118
- return index - 1;
119
- }
120
- return index;
121
- });
122
- }, [slidesCount, setCurrentIndex]);
123
-
124
- // Auto play
125
- const [isAutoPlaying, setIsAutoPlaying] = useState(Boolean(autoPlay));
126
- const [isForcePaused, setIsForcePaused] = useState(false);
127
- const isSlideshowAutoPlaying = isForcePaused ? false : isAutoPlaying;
128
- // Start
129
- useInterval(goToNextSlide, isSlideshowAutoPlaying && slidesCount > 1 ? interval : null);
130
-
131
- // Reset current index if it become invalid.
132
- useEffect(() => {
133
- if (currentIndex > slidesCount - 1) {
134
- setCurrentIndex(defaultActiveIndex);
135
- }
136
- }, [currentIndex, slidesCount, defaultActiveIndex]);
137
- const startAutoPlay = () => {
138
- setIsAutoPlaying(Boolean(autoPlay));
139
- };
140
- const stopAutoPlay = () => {
141
- setIsAutoPlaying(false);
142
- };
143
-
144
- // Handle click on a bullet to go to a specific slide.
145
- const onPaginationClick = useCallback(index => {
146
- stopAutoPlay();
147
- setIsForcePaused(true);
148
- if (index >= 0 && index < slidesCount) {
149
- setCurrentIndex(index);
150
- }
151
- }, [slidesCount, setCurrentIndex]);
152
-
153
- // Handle click or keyboard event to go to next slide.
154
- const onNextClick = useCallback((loopback = true) => {
155
- stopAutoPlay();
156
- setIsForcePaused(true);
157
- goToNextSlide(loopback);
158
- }, [goToNextSlide]);
159
-
160
- // Handle click or keyboard event to go to previous slide.
161
- const onPreviousClick = useCallback((loopback = true) => {
162
- stopAutoPlay();
163
- setIsForcePaused(true);
164
- goToPreviousSlide(loopback);
165
- }, [goToPreviousSlide]);
166
-
167
- // If the activeIndex props changes, update the current slide
168
- useEffect(() => {
169
- setCurrentIndex(activeIndex);
170
- }, [activeIndex]);
171
-
172
- // If the slide changes, with autoplay for example, trigger "onChange"
173
- useEffect(() => {
174
- if (!onChange) return;
175
- onChange(currentIndex);
176
- }, [currentIndex, onChange]);
177
- const generatedSlideshowId = useId();
178
- const slideshowId = id || generatedSlideshowId;
179
- const generatedSlidesId = useId();
180
- const slideshowSlidesId = slidesId || generatedSlidesId;
181
- const toggleAutoPlay = () => {
182
- if (isSlideshowAutoPlaying) {
183
- stopAutoPlay();
184
- } else {
185
- startAutoPlay();
186
- }
187
- };
188
- const toggleForcePause = () => {
189
- const shouldBePaused = !isForcePaused;
190
- setIsForcePaused(shouldBePaused);
191
- if (!shouldBePaused) {
192
- startAutoPlay();
193
- } else {
194
- stopAutoPlay();
195
- }
196
- };
197
-
198
- // Start index and end index of visible slides.
199
- const startIndexVisible = currentIndex * groupBy;
200
- const endIndexVisible = startIndexVisible + groupBy;
201
- return {
202
- startIndexVisible,
203
- endIndexVisible,
204
- setSlideshow: setElement,
205
- slideshow: element,
206
- slideshowId,
207
- slideshowSlidesId,
208
- onPreviousClick,
209
- onNextClick,
210
- onPaginationClick,
211
- isAutoPlaying: isSlideshowAutoPlaying,
212
- toggleAutoPlay,
213
- activeIndex: currentIndex,
214
- slidesCount,
215
- setActiveIndex: setCurrentIndex,
216
- startAutoPlay,
217
- stopAutoPlay,
218
- isForcePaused,
219
- toggleForcePause
220
- };
221
- };
222
-
223
- /**
224
- * Classname set on elements whose focus was blocked.
225
- * This is to easily find elements that have been tempered with,
226
- * and not elements whose focus was already initially blocked.
227
- * */
228
- const BLOCKED_FOCUS_CLASSNAME = 'focus-blocked';
229
-
230
- /**
231
- * Manage how slides must behave when visible or not.
232
- * When not visible, they should be hidden from screen readers and not focusable.
233
- */
234
- const useSlideFocusManagement = ({
235
- isSlideDisplayed,
236
- slideRef
237
- }) => {
238
- useEffect(() => {
239
- const element = slideRef?.current;
240
- if (!element) {
241
- return undefined;
242
- }
243
-
244
- /**
245
- * Display given slide to screen readers and, if focus was blocked, restore focus on elements.
246
- */
247
- const enableSlide = () => {
248
- // Hide from screen readers
249
- element.setAttribute('aria-hidden', 'false');
250
- // Find elements we have blocked focus on
251
- element.querySelectorAll(`.${BLOCKED_FOCUS_CLASSNAME}`).forEach(focusableElement => {
252
- focusableElement.removeAttribute('tabindex');
253
- focusableElement.classList.remove(BLOCKED_FOCUS_CLASSNAME);
254
- });
255
- };
256
-
257
- /**
258
- * Hide given slide from screen readers and block focus on all focusable elements within.
259
- */
260
- const blockSlide = () => {
261
- element.setAttribute('aria-hidden', 'true');
262
- getFocusableElements(element).forEach(focusableElement => {
263
- focusableElement.setAttribute('tabindex', '-1');
264
- focusableElement.classList.add(BLOCKED_FOCUS_CLASSNAME);
265
- });
266
- };
267
- const handleDisplay = () => {
268
- if (!element) {
269
- return;
270
- }
271
- if (isSlideDisplayed) {
272
- enableSlide();
273
- } else {
274
- blockSlide();
275
- }
276
- };
277
-
278
- // Callback function to execute when mutations are observed
279
- const callback = mutationsList => {
280
- if (element) {
281
- for (const mutation of mutationsList) {
282
- if (mutation.type === 'childList') {
283
- handleDisplay();
284
- }
285
- }
286
- }
287
- };
288
-
289
- // Create an observer instance linked to the callback function
290
- const observer = new MutationObserver(callback);
291
- if (element) {
292
- handleDisplay();
293
-
294
- /** If slide is hidden, start observing for elements to block focus */
295
- if (!isSlideDisplayed) {
296
- observer.observe(element, {
297
- attributes: true,
298
- childList: true,
299
- subtree: true
300
- });
301
- }
302
- }
303
- return () => {
304
- if (!isSlideDisplayed) {
305
- observer.disconnect();
306
- }
307
- };
308
- }, [isSlideDisplayed, slideRef]);
309
- };
310
-
311
- /**
312
- * Component display name.
313
- */
314
- const COMPONENT_NAME$3 = 'SlideshowItemGroup';
315
-
316
- /**
317
- * Component default class name and class prefix.
318
- */
319
- const CLASSNAME$3 = getRootClassName(COMPONENT_NAME$3);
320
- const buildSlideShowGroupId = (slidesId, index) => `${slidesId}-slide-${index}`;
321
-
322
- /**
323
- * SlideshowItemGroup component.
324
- *
325
- * @param props Component props.
326
- * @param ref Component ref.
327
- * @return React element.
328
- */
329
- const SlideshowItemGroup = forwardRef((props, ref) => {
330
- const {
331
- className,
332
- children,
333
- role = 'group',
334
- label,
335
- isDisplayed,
336
- ...forwardedProps
337
- } = props;
338
- const groupRef = React__default.useRef(null);
339
- useSlideFocusManagement({
340
- isSlideDisplayed: isDisplayed,
341
- slideRef: groupRef
342
- });
343
- return /*#__PURE__*/jsx("div", {
344
- ref: mergeRefs(groupRef, ref),
345
- role: role,
346
- className: classNames(className, CLASSNAME$3),
347
- "aria-roledescription": "slide",
348
- "aria-label": label,
349
- ...forwardedProps,
350
- children: children
351
- });
352
- });
353
- SlideshowItemGroup.displayName = COMPONENT_NAME$3;
354
- SlideshowItemGroup.className = CLASSNAME$3;
355
-
356
- /**
357
- * Component display name.
358
- */
359
- const COMPONENT_NAME$2 = 'SlideshowItem';
360
-
361
- /**
362
- * Component default class name and class prefix.
363
- */
364
- const CLASSNAME$2 = getRootClassName(COMPONENT_NAME$2);
365
-
366
- /**
367
- * SlideshowItem component.
368
- *
369
- * @param props Component props.
370
- * @param ref Component ref.
371
- * @return React element.
372
- */
373
- const SlideshowItem = forwardRef((props, ref) => {
374
- const {
375
- className,
376
- children,
377
- ...forwardedProps
378
- } = props;
379
- return /*#__PURE__*/jsx("div", {
380
- ref: ref,
381
- className: classNames(className, CLASSNAME$2),
382
- ...forwardedProps,
383
- children: children
384
- });
385
- });
386
- SlideshowItem.displayName = COMPONENT_NAME$2;
387
- SlideshowItem.className = CLASSNAME$2;
388
-
389
- const isTouchDevice = () => 'ontouchstart' in window;
390
-
391
- /**
392
- * Listen swipe to navigate left and right.
393
- */
394
- function useSwipeNavigate(element, onNext, onPrevious) {
395
- useEffect(() => {
396
- if (!element || !isTouchDevice()) return undefined;
397
- return detectHorizontalSwipe(element, swipe => {
398
- const callback = swipe === 'right' ? onPrevious : onNext;
399
- callback?.();
400
- });
401
- }, [onPrevious, onNext, element]);
402
- }
403
-
404
- /**
405
- * Calculate the currently visible pagination "bullet" range.
406
- */
407
- function usePaginationVisibleRange(activeIndex, slideCount) {
408
- const previousVisibleRangeRef = useRef();
409
- return useMemo(() => {
410
- const lastSlide = slideCount - 1;
411
- const {
412
- current: previousVisibleRange
413
- } = previousVisibleRangeRef;
414
- let newVisibleRange;
415
- if (activeIndex === previousVisibleRange?.max && activeIndex < lastSlide) {
416
- newVisibleRange = {
417
- min: previousVisibleRange.min + 1,
418
- max: previousVisibleRange.max + 1
419
- };
420
- } else if (activeIndex === previousVisibleRange?.min && activeIndex > 0) {
421
- newVisibleRange = {
422
- min: previousVisibleRange.min - 1,
423
- max: previousVisibleRange.max - 1
424
- };
425
- } else {
426
- const deltaItems = PAGINATION_ITEMS_MAX - 1;
427
- let min = activeIndex - EDGE_FROM_ACTIVE_INDEX;
428
- let max = activeIndex + EDGE_FROM_ACTIVE_INDEX;
429
- if (activeIndex > lastSlide - EDGE_FROM_ACTIVE_INDEX) {
430
- min = lastSlide - deltaItems;
431
- max = lastSlide;
432
- } else if (activeIndex < deltaItems) {
433
- min = 0;
434
- max = deltaItems;
435
- }
436
- newVisibleRange = {
437
- min,
438
- max
439
- };
440
- }
441
- previousVisibleRangeRef.current = newVisibleRange;
442
- return newVisibleRange;
443
- }, [activeIndex, slideCount]);
444
- }
445
-
446
- /**
447
- * Component display name.
448
- */
449
- const COMPONENT_NAME$1 = 'SlideshowControls';
450
-
451
- /**
452
- * Component default class name and class prefix.
453
- */
454
- const CLASSNAME$1 = getRootClassName(COMPONENT_NAME$1);
455
-
456
- /**
457
- * Component default props.
458
- */
459
- const DEFAULT_PROPS = {
460
- activeIndex: 0
461
- };
462
-
463
- /**
464
- * SlideshowControls component.
465
- *
466
- * @param props Component props.
467
- * @param ref Component ref.
468
- * @return React element.
469
- */
470
- const InternalSlideshowControls = forwardRef((props, ref) => {
471
- const defaultTheme = useTheme() || Theme.light;
472
- const {
473
- activeIndex = DEFAULT_PROPS.activeIndex,
474
- className,
475
- nextButtonProps,
476
- onNextClick,
477
- onPaginationClick,
478
- onPreviousClick,
479
- parentRef,
480
- previousButtonProps,
481
- paginationProps,
482
- slidesCount,
483
- theme = defaultTheme,
484
- isAutoPlaying = false,
485
- playButtonProps,
486
- paginationItemLabel,
487
- paginationItemProps,
488
- ...forwardedProps
489
- } = props;
490
- let parent;
491
- if (WINDOW) {
492
- // Checking window object to avoid errors in SSR.
493
- parent = parentRef instanceof HTMLElement ? parentRef : parentRef?.current;
494
- }
495
- const paginationRef = React__default.useRef(null);
496
- // Listen to touch swipe navigate left & right.
497
- useSwipeNavigate(parent,
498
- // Go next without loopback.
499
- useCallback(() => onNextClick?.(false), [onNextClick]),
500
- // Go previous without loopback.
501
- useCallback(() => onPreviousClick?.(false), [onPreviousClick]));
502
-
503
- /**
504
- * Add roving tab index pattern to pagination items and activate slide on focus.
505
- */
506
- useRovingTabIndex({
507
- parentRef: paginationRef,
508
- elementSelector: 'button',
509
- keepTabIndex: true,
510
- onElementFocus: element => {
511
- element.click();
512
- }
513
- });
514
-
515
- // Pagination "bullet" range.
516
- const visibleRange = usePaginationVisibleRange(activeIndex, slidesCount);
517
-
518
- // Inline style of wrapper element.
519
- const wrapperStyle = {
520
- transform: `translateX(-${PAGINATION_ITEM_SIZE * visibleRange.min}px)`
521
- };
522
- return /*#__PURE__*/jsxs("div", {
523
- ref: ref,
524
- ...forwardedProps,
525
- className: classNames(className, handleBasicClasses({
526
- prefix: CLASSNAME$1,
527
- theme
528
- }), {
529
- [`${CLASSNAME$1}--has-infinite-pagination`]: slidesCount > PAGINATION_ITEMS_MAX
530
- }),
531
- children: [/*#__PURE__*/jsx(IconButton, {
532
- ...previousButtonProps,
533
- icon: mdiChevronLeft,
534
- className: `${CLASSNAME$1}__navigation`,
535
- color: theme === Theme.dark ? 'light' : 'dark',
536
- emphasis: Emphasis.low,
537
- onClick: onPreviousClick
538
- }), /*#__PURE__*/jsx("div", {
539
- ref: paginationRef,
540
- className: `${CLASSNAME$1}__pagination`,
541
- children: /*#__PURE__*/jsx("div", {
542
- className: `${CLASSNAME$1}__pagination-items`,
543
- style: wrapperStyle,
544
- role: "tablist",
545
- ...paginationProps,
546
- children: useMemo(() => range(slidesCount).map(index => {
547
- const isOnEdge = index !== 0 && index !== slidesCount - 1 && (index === visibleRange.min || index === visibleRange.max);
548
- const isActive = activeIndex === index;
549
- const isOutRange = index < visibleRange.min || index > visibleRange.max;
550
- const {
551
- className: itemClassName = undefined,
552
- label = undefined,
553
- ...itemProps
554
- } = paginationItemProps ? paginationItemProps(index) : {};
555
- const ariaLabel = label || paginationItemLabel?.(index) || `${index + 1} / ${slidesCount}`;
556
- return /*#__PURE__*/jsx("button", {
557
- className: classNames(handleBasicClasses({
558
- prefix: `${CLASSNAME$1}__pagination-item`,
559
- isActive,
560
- isOnEdge,
561
- isOutRange
562
- }), itemClassName),
563
- type: "button",
564
- tabIndex: isActive ? undefined : -1,
565
- role: "tab",
566
- "aria-selected": isActive,
567
- onClick: () => onPaginationClick?.(index),
568
- "aria-label": ariaLabel,
569
- ...itemProps
570
- }, index);
571
- }), [slidesCount, visibleRange.min, visibleRange.max, activeIndex, paginationItemProps, paginationItemLabel, onPaginationClick])
572
- })
573
- }), playButtonProps ? /*#__PURE__*/jsx(IconButton, {
574
- ...playButtonProps,
575
- icon: isAutoPlaying ? mdiPauseCircleOutline : mdiPlayCircleOutline,
576
- className: `${CLASSNAME$1}__play`,
577
- color: theme === Theme.dark ? 'light' : 'dark',
578
- emphasis: Emphasis.low
579
- }) : null, /*#__PURE__*/jsx(IconButton, {
580
- ...nextButtonProps,
581
- icon: mdiChevronRight,
582
- className: `${CLASSNAME$1}__navigation`,
583
- color: theme === Theme.dark ? 'light' : 'dark',
584
- emphasis: Emphasis.low,
585
- onClick: onNextClick
586
- })]
587
- });
588
- });
589
- InternalSlideshowControls.displayName = COMPONENT_NAME$1;
590
- InternalSlideshowControls.className = CLASSNAME$1;
591
- InternalSlideshowControls.defaultProps = DEFAULT_PROPS;
592
- const SlideshowControls = Object.assign(InternalSlideshowControls, {
593
- useSlideshowControls,
594
- useSlideshowControlsDefaultOptions: DEFAULT_OPTIONS
595
- });
596
-
597
- /**
598
- * Component display name.
599
- */
600
- const COMPONENT_NAME = 'Slideshow';
601
-
602
- /**
603
- * Component default class name and class prefix.
604
- */
605
- const CLASSNAME = getRootClassName(COMPONENT_NAME);
606
-
607
- /**
608
- * Slides component.
609
- *
610
- * @param props Component props.
611
- * @param ref Component ref.
612
- * @return React element.
613
- */
614
- const Slides = forwardRef((props, ref) => {
615
- const defaultTheme = useTheme();
616
- const {
617
- activeIndex,
618
- id,
619
- className,
620
- theme = defaultTheme,
621
- fillHeight,
622
- groupBy,
623
- isAutoPlaying,
624
- toggleAutoPlay,
625
- slidesId,
626
- children,
627
- afterSlides,
628
- hasControls,
629
- slideGroupLabel,
630
- ...forwardedProps
631
- } = props;
632
- const wrapperRef = React__default.useRef(null);
633
- const startIndexVisible = activeIndex;
634
- const endIndexVisible = startIndexVisible + 1;
635
-
636
- // Inline style of wrapper element.
637
- const wrapperStyle = {
638
- transform: `translateX(-${FULL_WIDTH_PERCENT * activeIndex}%)`
639
- };
640
- const groups = React__default.useMemo(() => {
641
- const childrenArray = Children.toArray(children);
642
- return groupBy && groupBy > 1 ? chunk(childrenArray, groupBy) : childrenArray;
643
- }, [children, groupBy]);
644
- return /*#__PURE__*/jsxs("section", {
645
- id: id,
646
- ref: ref,
647
- ...forwardedProps,
648
- className: classNames(className, handleBasicClasses({
649
- prefix: CLASSNAME,
650
- theme
651
- }), {
652
- [`${CLASSNAME}--fill-height`]: fillHeight,
653
- [`${CLASSNAME}--group-by-${groupBy}`]: Boolean(groupBy)
654
- }),
655
- "aria-roledescription": "carousel",
656
- children: [/*#__PURE__*/jsx("div", {
657
- id: slidesId,
658
- className: `${CLASSNAME}__slides`,
659
- onMouseEnter: toggleAutoPlay,
660
- onMouseLeave: toggleAutoPlay,
661
- "aria-live": isAutoPlaying ? 'off' : 'polite',
662
- children: /*#__PURE__*/jsx("div", {
663
- ref: wrapperRef,
664
- className: `${CLASSNAME}__wrapper`,
665
- style: wrapperStyle,
666
- children: groups.map((group, index) => /*#__PURE__*/jsx(SlideshowItemGroup, {
667
- id: slidesId && buildSlideShowGroupId(slidesId, index),
668
- role: hasControls ? 'tabpanel' : 'group',
669
- label: slideGroupLabel ? slideGroupLabel(index + 1, groups.length) : undefined,
670
- isDisplayed: index >= startIndexVisible && index < endIndexVisible,
671
- children: group
672
- }, index))
673
- })
674
- }), afterSlides]
675
- });
676
- });
677
- Slides.displayName = COMPONENT_NAME;
678
- Slides.className = CLASSNAME;
679
-
680
- export { DEFAULT_OPTIONS as D, SlideshowItem as S, SlideshowControls as a, Slides as b, buildSlideShowGroupId as c };
681
- //# sourceMappingURL=34c59f5b.js.map