reshaped 3.7.0-canary.15 → 3.7.0-canary.17

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 (52) hide show
  1. package/CHANGELOG.md +20 -1
  2. package/dist/bundle.css +1 -1
  3. package/dist/bundle.js +11 -11
  4. package/dist/cjs/themes/_generator/tokens/color/utilities/generateColors.js +1 -1
  5. package/dist/cjs/themes/slate/theme.css +1 -1
  6. package/dist/components/Actionable/Actionable.js +3 -3
  7. package/dist/components/Actionable/Actionable.module.css +1 -1
  8. package/dist/components/Actionable/Actionable.types.d.ts +1 -0
  9. package/dist/components/Autocomplete/Autocomplete.js +64 -24
  10. package/dist/components/Autocomplete/Autocomplete.types.d.ts +2 -0
  11. package/dist/components/Autocomplete/tests/Autocomplete.stories.js +2 -2
  12. package/dist/components/Badge/Badge.js +3 -3
  13. package/dist/components/Badge/Badge.module.css +1 -1
  14. package/dist/components/Badge/Badge.types.d.ts +4 -4
  15. package/dist/components/Badge/tests/Badge.stories.js +11 -0
  16. package/dist/components/Button/Button.module.css +1 -1
  17. package/dist/components/Calendar/Calendar.types.d.ts +1 -0
  18. package/dist/components/Calendar/Calendar.utils.d.ts +11 -0
  19. package/dist/components/Calendar/Calendar.utils.js +25 -0
  20. package/dist/components/Calendar/CalendarDate.js +6 -2
  21. package/dist/components/Calendar/CalendarMonth.js +9 -23
  22. package/dist/components/Calendar/tests/Calendar.stories.js +9 -2
  23. package/dist/components/Carousel/Carousel.js +3 -1
  24. package/dist/components/Carousel/Carousel.types.d.ts +1 -0
  25. package/dist/components/Carousel/CarouselControl.d.ts +1 -2
  26. package/dist/components/Carousel/CarouselControl.js +8 -7
  27. package/dist/components/Checkbox/Checkbox.module.css +1 -1
  28. package/dist/components/Flyout/FlyoutContent.js +1 -1
  29. package/dist/components/Flyout/FlyoutTrigger.js +4 -3
  30. package/dist/components/Grid/Grid.js +8 -2
  31. package/dist/components/Grid/Grid.types.d.ts +2 -0
  32. package/dist/components/Grid/tests/Grid.stories.js +12 -1
  33. package/dist/components/MenuItem/MenuItem.js +2 -2
  34. package/dist/components/MenuItem/MenuItem.module.css +1 -1
  35. package/dist/components/MenuItem/MenuItem.types.d.ts +1 -0
  36. package/dist/components/PinField/PinField.module.css +1 -1
  37. package/dist/components/Popover/Popover.js +1 -1
  38. package/dist/components/ProgressIndicator/ProgressIndicator.module.css +1 -1
  39. package/dist/components/Reshaped/Reshaped.css +1 -1
  40. package/dist/components/Resizable/Resizable.module.css +1 -1
  41. package/dist/components/ScrollArea/ScrollArea.module.css +1 -1
  42. package/dist/components/Select/Select.module.css +1 -1
  43. package/dist/components/Slider/Slider.module.css +1 -1
  44. package/dist/components/Switch/Switch.js +1 -1
  45. package/dist/components/Switch/Switch.module.css +1 -1
  46. package/dist/components/Tabs/TabsItem.js +2 -1
  47. package/dist/components/Tabs/TabsList.js +2 -2
  48. package/dist/components/TextField/TextField.module.css +1 -1
  49. package/dist/components/TextField/tests/TextField.stories.js +3 -1
  50. package/dist/themes/_generator/tokens/color/utilities/generateColors.js +1 -1
  51. package/dist/themes/slate/theme.css +1 -1
  52. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -3,7 +3,9 @@
3
3
  - Added Attributes type to the package exports
4
4
  - Added `mono` font family to the themes
5
5
  - Added zIndex tokens to the themes, updated components to use new zIndex tokens
6
+ - Increased contrast of primary border color in dark mode
6
7
  - Added isolation: isolate to components for better zIndex handling
8
+ - Added `--rs-radius-circular`
7
9
 
8
10
  - Image: added maxWidth property
9
11
  - Image: added aspectRatio property
@@ -23,4 +25,21 @@
23
25
  - Button: Updated :active styles
24
26
  - Theme: Supports passing multiple theme fragments to the same provider
25
27
  - FormControl: Label margin-bottom: 0 for the last child for better composition
26
- - DropdownMenu: Fixed items not working inside router links
28
+ - DropdownMenu: Fixed items not working inside router links
29
+ - Tooltip: Only apply aria-describedby when tooltip is active
30
+ - TextArea, TextField, Select: Updated placeholder color
31
+ - Tabs: Added missing id to the button elements
32
+ - Carousel: Updated control buttons to use small size
33
+ - Carousel: Fixed shadow conflicting with clip content on buttons in Figma
34
+ - Carousel: Return focus to the other control when one of them gets hidden
35
+ - Calendar: Improved tabIndex management for the dates
36
+ - Actionable: touchHitbox prop
37
+ - Badge: Increased min touch hitbox for actionable badges and dismiss button
38
+ - Switch: Increased min touch hitbox
39
+ - Tabs: Increase touch hitbox for the navigation arrows
40
+ - Badge: Icon only support
41
+ - Badge: Neutral empty
42
+ - Badge aligned small badge size with the overal unit scaling
43
+ - Grid: Added height/width props support
44
+ - MenuItem: Added highlighted property
45
+ - Autocomplete: Improved screen reader navigation