reshaped 2.6.4 → 2.7.1
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.
- package/CHANGELOG.md +1 -10
- package/bundle.css +1 -1
- package/bundle.d.ts +2 -0
- package/bundle.js +10 -10
- package/components/Calendar/Calendar.d.ts +4 -0
- package/components/Calendar/Calendar.js +9 -0
- package/components/Calendar/Calendar.module.css +1 -0
- package/components/Calendar/Calendar.types.d.ts +102 -0
- package/components/Calendar/Calendar.types.js +1 -0
- package/components/Calendar/Calendar.utils.d.ts +43 -0
- package/components/Calendar/Calendar.utils.js +110 -0
- package/components/Calendar/CalendarControlled.d.ts +4 -0
- package/components/Calendar/CalendarControlled.js +72 -0
- package/components/Calendar/CalendarControls.d.ts +4 -0
- package/components/Calendar/CalendarControls.js +56 -0
- package/components/Calendar/CalendarDate.d.ts +4 -0
- package/components/Calendar/CalendarDate.js +58 -0
- package/components/Calendar/CalendarMonth.d.ts +4 -0
- package/components/Calendar/CalendarMonth.js +54 -0
- package/components/Calendar/CalendarUncontrolled.d.ts +4 -0
- package/components/Calendar/CalendarUncontrolled.js +29 -0
- package/components/Calendar/CalendarYear.d.ts +4 -0
- package/components/Calendar/CalendarYear.js +45 -0
- package/components/Calendar/index.d.ts +2 -0
- package/components/Calendar/index.js +1 -0
- package/components/Calendar/tests/Calendar.stories.d.ts +9 -0
- package/components/Calendar/tests/Calendar.stories.js +30 -0
- package/components/Calendar/useCalendarKeyboardNavigation.d.ts +11 -0
- package/components/Calendar/useCalendarKeyboardNavigation.js +67 -0
- package/components/Modal/Modal.js +110 -3
- package/components/Modal/Modal.module.css +1 -1
- package/components/Modal/tests/Modal.stories.js +3 -0
- package/components/Overlay/Overlay.js +14 -10
- package/components/Overlay/Overlay.module.css +1 -1
- package/components/Overlay/Overlay.types.d.ts +1 -1
- package/components/Slider/Slider.module.css +1 -1
- package/components/Text/Text.js +1 -1
- package/components/Text/Text.module.css +1 -1
- package/components/Text/tests/Text.stories.js +1 -1
- package/hooks/useResponsiveClientValue.d.ts +1 -1
- package/hooks/useResponsiveClientValue.js +3 -0
- package/index.d.ts +2 -0
- package/index.js +1 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
@@ -1,10 +1 @@
|
|
1
|
-
2.
|
2
|
-
|
3
|
-
- Github actions setup
|
4
|
-
- Themes: Updated on color generation algorithm to be more precise according to the wcag requirements
|
5
|
-
- Themes: Added rgb variants for the border color tokens
|
6
|
-
- Themes: Updated contrast edge cases to be handled with APCA formula
|
7
|
-
|
8
|
-
- Link: Fixed iOS Safari currentColor
|
9
|
-
- View: Updating padding array mentioned in the docs
|
10
|
-
- Toast: Added className support
|
1
|
+
2.8.0
|