reshaped 2.6.3 → 2.7.0

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 (45) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/bundle.css +1 -1
  3. package/bundle.d.ts +2 -0
  4. package/bundle.js +15 -15
  5. package/components/Autocomplete/Autocomplete.js +1 -1
  6. package/components/Calendar/Calendar.d.ts +4 -0
  7. package/components/Calendar/Calendar.js +9 -0
  8. package/components/Calendar/Calendar.module.css +1 -0
  9. package/components/Calendar/Calendar.types.d.ts +102 -0
  10. package/components/Calendar/Calendar.types.js +1 -0
  11. package/components/Calendar/Calendar.utils.d.ts +43 -0
  12. package/components/Calendar/Calendar.utils.js +110 -0
  13. package/components/Calendar/CalendarControlled.d.ts +4 -0
  14. package/components/Calendar/CalendarControlled.js +72 -0
  15. package/components/Calendar/CalendarControls.d.ts +4 -0
  16. package/components/Calendar/CalendarControls.js +56 -0
  17. package/components/Calendar/CalendarDate.d.ts +4 -0
  18. package/components/Calendar/CalendarDate.js +58 -0
  19. package/components/Calendar/CalendarMonth.d.ts +4 -0
  20. package/components/Calendar/CalendarMonth.js +54 -0
  21. package/components/Calendar/CalendarUncontrolled.d.ts +4 -0
  22. package/components/Calendar/CalendarUncontrolled.js +29 -0
  23. package/components/Calendar/CalendarYear.d.ts +4 -0
  24. package/components/Calendar/CalendarYear.js +45 -0
  25. package/components/Calendar/index.d.ts +2 -0
  26. package/components/Calendar/index.js +1 -0
  27. package/components/Calendar/tests/Calendar.stories.d.ts +9 -0
  28. package/components/Calendar/tests/Calendar.stories.js +30 -0
  29. package/components/Calendar/useCalendarKeyboardNavigation.d.ts +11 -0
  30. package/components/Calendar/useCalendarKeyboardNavigation.js +67 -0
  31. package/components/Modal/Modal.js +97 -3
  32. package/components/Modal/Modal.module.css +1 -1
  33. package/components/Modal/tests/Modal.stories.js +3 -0
  34. package/components/Overlay/Overlay.js +14 -10
  35. package/components/Overlay/Overlay.module.css +1 -1
  36. package/components/Overlay/Overlay.types.d.ts +1 -1
  37. package/components/Slider/Slider.module.css +1 -1
  38. package/components/Text/Text.js +1 -1
  39. package/components/Text/Text.module.css +1 -1
  40. package/components/Text/tests/Text.stories.js +1 -1
  41. package/hooks/useResponsiveClientValue.d.ts +1 -1
  42. package/hooks/useResponsiveClientValue.js +3 -0
  43. package/index.d.ts +2 -0
  44. package/index.js +1 -0
  45. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -5,6 +5,14 @@
5
5
  - Themes: Added rgb variants for the border color tokens
6
6
  - Themes: Updated contrast edge cases to be handled with APCA formula
7
7
 
8
+ - Autocomplete: Fixed inputAttributes not applying correctly
8
9
  - Link: Fixed iOS Safari currentColor
9
10
  - View: Updating padding array mentioned in the docs
10
11
  - Toast: Added className support
12
+ - Text: Updated Text maxLines to break in the middle of the word
13
+ - Overlay: transparent number support
14
+ - Modal: Swipe close
15
+ - Overlay + Modal: Animation update
16
+ - Slider: Removed touch highlight on mobile devices
17
+
18
+ - Calendar: New component