reshaped 3.5.1-canary.1 → 3.5.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.
- package/CHANGELOG-old.md +14 -0
- package/CHANGELOG.md +23 -3
- package/dist/bundle.css +1 -1
- package/dist/bundle.js +10 -10
- package/dist/components/Autocomplete/tests/Autocomplete.stories.js +1 -0
- package/dist/components/Card/Card.js +2 -2
- package/dist/components/Card/Card.module.css +1 -1
- package/dist/components/Checkbox/Checkbox.module.css +1 -1
- package/dist/components/Radio/Radio.module.css +1 -1
- package/dist/components/ScrollArea/ScrollArea.js +3 -6
- package/dist/components/ScrollArea/tests/ScrollArea.stories.d.ts +13 -4
- package/dist/components/ScrollArea/tests/ScrollArea.stories.js +129 -30
- package/dist/components/Slider/Slider.types.d.ts +1 -1
- package/dist/components/Slider/SliderControlled.js +4 -2
- package/dist/components/Slider/tests/Slider.stories.d.ts +1 -0
- package/dist/components/Slider/tests/Slider.stories.js +8 -0
- package/dist/utilities/a11y/focus.d.ts +3 -6
- package/dist/utilities/a11y/focus.js +11 -8
- package/dist/utilities/a11y/types.d.ts +4 -0
- package/package.json +8 -9
- package/dist/components/ScrollArea/tests/ScrollArea.test.stories.d.ts +0 -23
- package/dist/components/ScrollArea/tests/ScrollArea.test.stories.js +0 -66
package/CHANGELOG-old.md
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
## WIP 3.5.2
|
2
|
+
|
3
|
+
- Tailwind 3: Preflight compatibility
|
4
|
+
- ScrollArea: fixed maxHeight
|
5
|
+
- Updated sideEffects to \*.css
|
6
|
+
|
7
|
+
## 3.5.1
|
8
|
+
|
9
|
+
- NumberField: user-select none for touch devices
|
10
|
+
- Tabs: Fixed arrow navigation
|
11
|
+
- Slider: Fixed drag propagation when used in swipeable modals
|
12
|
+
- Card: Removed internal content wrapper to fix Safari absolute positioning of contents inside the card
|
13
|
+
- [Pro] Storybook: Preserve theme and mode values while navigating stories
|
14
|
+
- [Pro] Storybook config: switched to js to resolve TS resolving issues
|
package/CHANGELOG.md
CHANGED
@@ -1,4 +1,24 @@
|
|
1
|
-
|
1
|
+
# [Unreleased](https://github.com/formaat-design/reshaped-source/compare/v3.5.1...d89d79c5abaf00bbdd6a645badcc09cf09c312a0) (2025-05-10)
|
2
2
|
|
3
|
-
|
4
|
-
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* **Checkbox,Radio:** removed css layers to keep tw3 preflight compatibility ([84d9bae](https://github.com/formaat-design/reshaped-source/commit/84d9bae98f88ad60950b4d5ab25e405448bf6622))
|
7
|
+
* **ScrollArea:** fixed maxHeight ([6ba289f](https://github.com/formaat-design/reshaped-source/commit/6ba289f55bb62ac98ff8145264bc94c1dc975fa6))
|
8
|
+
* test changelog ([cc5759b](https://github.com/formaat-design/reshaped-source/commit/cc5759b59cb29337babac6c532ccc1159aa16783))
|
9
|
+
* test changelog again ([d89d79c](https://github.com/formaat-design/reshaped-source/commit/d89d79c5abaf00bbdd6a645badcc09cf09c312a0))
|
10
|
+
* updated sideEffects to *.css ([fb603ca](https://github.com/formaat-design/reshaped-source/commit/fb603cacb8057cb582f2d1f6b4d07ac0e79b19d8))
|
11
|
+
* updated sideEffects to *.css ([4346ddb](https://github.com/formaat-design/reshaped-source/commit/4346ddbe6d7983f22de807f52f504f42fa8fc5e6))
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
## [3.5.1](https://github.com/formaat-design/reshaped/compare/v3.5.1-canary.0...v3.5.1) (2025-04-26)
|
16
|
+
|
17
|
+
### Bug Fixes
|
18
|
+
|
19
|
+
- **Card:** fixed absolute positioning inside the cards ([f069c9d](https://github.com/formaat-design/reshaped/commit/f069c9defa88304b11bfa7e664628d7541ad1a4c))
|
20
|
+
- preserve themes/modes in storybook ([35c28d6](https://github.com/formaat-design/reshaped/commit/35c28d67da3f4cedf6f011a550a282ec980f1bef))
|
21
|
+
- **Slider:** fixed drag propagation to swipeable modals ([6cc537b](https://github.com/formaat-design/reshaped/commit/6cc537b02ca1ec1e43812fe29576061ea1683b93))
|
22
|
+
- storybook theme fallback ([99883b0](https://github.com/formaat-design/reshaped/commit/99883b00c479c7bf08427873883d86e4871de680))
|
23
|
+
- **Tabs:** fixed arrow navigation ([e5d0fe8](https://github.com/formaat-design/reshaped/commit/e5d0fe8eb456980ef3645d8cde32993a629d3a51))
|
24
|
+
- **View:** switch to inferred return types ([29a2528](https://github.com/formaat-design/reshaped/commit/29a25280040c6fb1ae7d1424efb0050cc57becbc))
|