@lumx/react 3.15.1-alpha.0 → 3.15.1-alpha.2

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 (48) hide show
  1. package/index.d.ts +5 -1
  2. package/index.js +5525 -5530
  3. package/index.js.map +1 -1
  4. package/package.json +4 -3
  5. package/src/components/alert-dialog/AlertDialog.tsx +12 -2
  6. package/src/components/autocomplete/Autocomplete.tsx +5 -5
  7. package/src/components/autocomplete/AutocompleteMultiple.tsx +5 -5
  8. package/src/components/avatar/Avatar.tsx +1 -1
  9. package/src/components/badge/Badge.tsx +1 -1
  10. package/src/components/badge/BadgeWrapper.tsx +0 -2
  11. package/src/components/button/Button.tsx +10 -1
  12. package/src/components/button/IconButton.tsx +2 -2
  13. package/src/components/chip/Chip.tsx +1 -1
  14. package/src/components/comment-block/CommentBlock.tsx +1 -1
  15. package/src/components/dialog/Dialog.tsx +2 -2
  16. package/src/components/dropdown/Dropdown.tsx +8 -8
  17. package/src/components/generic-block/GenericBlock.tsx +2 -2
  18. package/src/components/grid/Grid.tsx +10 -1
  19. package/src/components/image-block/ImageBlock.tsx +2 -2
  20. package/src/components/input-helper/InputHelper.tsx +1 -1
  21. package/src/components/link-preview/LinkPreview.tsx +2 -2
  22. package/src/components/list/List.tsx +9 -1
  23. package/src/components/list/ListItem.tsx +1 -1
  24. package/src/components/navigation/Navigation.tsx +7 -1
  25. package/src/components/notification/Notification.tsx +2 -2
  26. package/src/components/popover/Popover.tsx +5 -5
  27. package/src/components/post-block/PostBlock.tsx +1 -1
  28. package/src/components/progress/Progress.tsx +1 -1
  29. package/src/components/progress-tracker/ProgressTrackerProvider.tsx +1 -0
  30. package/src/components/select/Select.tsx +2 -0
  31. package/src/components/select/SelectMultiple.tsx +2 -0
  32. package/src/components/select/WithSelectContext.tsx +2 -7
  33. package/src/components/side-navigation/SideNavigationItem.tsx +2 -2
  34. package/src/components/skeleton/SkeletonRectangle.tsx +10 -1
  35. package/src/components/slider/Slider.tsx +2 -2
  36. package/src/components/slideshow/Slideshow.tsx +4 -6
  37. package/src/components/slideshow/SlideshowControls.tsx +1 -1
  38. package/src/components/switch/Switch.tsx +1 -1
  39. package/src/components/table/TableCell.tsx +10 -1
  40. package/src/components/tabs/TabList.tsx +2 -2
  41. package/src/components/tabs/TabProvider.tsx +1 -1
  42. package/src/components/text-field/TextField.tsx +1 -1
  43. package/src/components/thumbnail/Thumbnail.tsx +2 -2
  44. package/src/components/tooltip/Tooltip.tsx +4 -4
  45. package/src/components/uploader/Uploader.tsx +3 -3
  46. package/src/components/user-block/UserBlock.tsx +2 -2
  47. package/src/hooks/useSlideshowControls.ts +2 -2
  48. package/src/testing/utils/queries.ts +1 -1
package/index.d.ts CHANGED
@@ -2885,7 +2885,11 @@ interface SlideshowControlsProps extends GenericProps, HasTheme {
2885
2885
  }
2886
2886
  declare const SlideshowControls: Comp<SlideshowControlsProps, HTMLDivElement> & {
2887
2887
  useSlideshowControls: ({ activeIndex, groupBy, interval, autoPlay, defaultActiveIndex, onChange, itemsCount, id, slidesId, }: UseSlideshowControlsOptions) => UseSlideshowControls;
2888
- useSlideshowControlsDefaultOptions: Partial<UseSlideshowControlsOptions>;
2888
+ useSlideshowControlsDefaultOptions: {
2889
+ readonly activeIndex: 0;
2890
+ readonly groupBy: 1;
2891
+ readonly interval: 5000;
2892
+ };
2889
2893
  };
2890
2894
 
2891
2895
  interface SlidesProps extends GenericProps, HasTheme {