reshaped 3.7.0-canary.15 → 3.7.0-canary.16
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 +18 -1
- package/dist/bundle.css +1 -1
- package/dist/bundle.js +11 -11
- package/dist/cjs/themes/_generator/tokens/color/utilities/generateColors.js +1 -1
- package/dist/cjs/themes/slate/theme.css +1 -1
- package/dist/components/Actionable/Actionable.js +3 -3
- package/dist/components/Actionable/Actionable.module.css +1 -1
- package/dist/components/Actionable/Actionable.types.d.ts +1 -0
- package/dist/components/Badge/Badge.js +3 -3
- package/dist/components/Badge/Badge.module.css +1 -1
- package/dist/components/Badge/Badge.types.d.ts +4 -4
- package/dist/components/Badge/tests/Badge.stories.js +11 -0
- package/dist/components/Button/Button.module.css +1 -1
- package/dist/components/Calendar/Calendar.types.d.ts +1 -0
- package/dist/components/Calendar/Calendar.utils.d.ts +11 -0
- package/dist/components/Calendar/Calendar.utils.js +25 -0
- package/dist/components/Calendar/CalendarDate.js +6 -2
- package/dist/components/Calendar/CalendarMonth.js +9 -23
- package/dist/components/Calendar/tests/Calendar.stories.js +9 -2
- package/dist/components/Carousel/Carousel.js +3 -1
- package/dist/components/Carousel/Carousel.types.d.ts +1 -0
- package/dist/components/Carousel/CarouselControl.d.ts +1 -2
- package/dist/components/Carousel/CarouselControl.js +8 -7
- package/dist/components/Checkbox/Checkbox.module.css +1 -1
- package/dist/components/Flyout/FlyoutTrigger.js +4 -3
- package/dist/components/Grid/Grid.js +8 -2
- package/dist/components/Grid/Grid.types.d.ts +2 -0
- package/dist/components/Grid/tests/Grid.stories.js +12 -1
- package/dist/components/PinField/PinField.module.css +1 -1
- package/dist/components/ProgressIndicator/ProgressIndicator.module.css +1 -1
- package/dist/components/Reshaped/Reshaped.css +1 -1
- package/dist/components/Resizable/Resizable.module.css +1 -1
- package/dist/components/ScrollArea/ScrollArea.module.css +1 -1
- package/dist/components/Select/Select.module.css +1 -1
- package/dist/components/Slider/Slider.module.css +1 -1
- package/dist/components/Switch/Switch.js +1 -1
- package/dist/components/Switch/Switch.module.css +1 -1
- package/dist/components/Tabs/TabsItem.js +2 -1
- package/dist/components/Tabs/TabsList.js +2 -2
- package/dist/components/TextField/TextField.module.css +1 -1
- package/dist/components/TextField/tests/TextField.stories.js +3 -1
- package/dist/themes/_generator/tokens/color/utilities/generateColors.js +1 -1
- package/dist/themes/slate/theme.css +1 -1
- 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,19 @@
|
|
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
|