reshaped 2.6.0 → 2.6.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.md +6 -51
- package/bundle.css +1 -1
- package/bundle.js +7 -7
- package/components/Link/Link.module.css +1 -1
- package/components/Toast/Toast.js +2 -2
- package/components/Toast/Toast.types.d.ts +1 -0
- package/package.json +1 -1
- package/utilities/color.js +13 -1
package/CHANGELOG.md
CHANGED
@@ -1,53 +1,8 @@
|
|
1
|
-
|
1
|
+
2.7.0
|
2
2
|
|
3
|
-
|
3
|
+
- Github actions setup
|
4
|
+
- Themes: Updated on color generation algorithm to be more precise according to the wcag requirements
|
4
5
|
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
* **Breadcrumbs:** fixed breadcrumbs rendering when used in RSC ([98c14bc](https://github.com/formaat-design/reshaped-source/commit/98c14bc885707431ea2421fe865e9acf436ec650))
|
9
|
-
* **Themes:** added a way control individual "on" colors to fix themes with non-gray foreground color ([506e38c](https://github.com/formaat-design/reshaped-source/commit/506e38c4f0b3b45ce8c240f5fac6304a427de2b1))
|
10
|
-
|
11
|
-
## [2.5.8](https://github.com/formaat-design/reshaped-source/compare/v2.5.7...v2.5.8) (2023-11-04)
|
12
|
-
|
13
|
-
|
14
|
-
### Bug Fixes
|
15
|
-
|
16
|
-
* **Select:** fixed custom trigger start padding when used without slots ([e3c81a9](https://github.com/formaat-design/reshaped-source/commit/e3c81a92c13f159ecdb9a529e832ea25cd0ec6a5))
|
17
|
-
|
18
|
-
## [2.5.7](https://github.com/formaat-design/reshaped-source/compare/v2.5.6...v2.5.7) (2023-11-04)
|
19
|
-
|
20
|
-
|
21
|
-
### Bug Fixes
|
22
|
-
|
23
|
-
* **Popover:** fixed default render styles and improved transition for trigger width ([e4e4584](https://github.com/formaat-design/reshaped-source/commit/e4e4584b34d6d6b9f43107b6a6c591a6c549542d))
|
24
|
-
|
25
|
-
## [2.5.6](https://github.com/formaat-design/reshaped-source/compare/v2.5.5...v2.5.6) (2023-11-01)
|
26
|
-
|
27
|
-
|
28
|
-
### Bug Fixes
|
29
|
-
|
30
|
-
* **Flyout:** added support for automatic positioning inside position: fixed parent ([04c8239](https://github.com/formaat-design/reshaped-source/commit/04c8239264397b1aae90bbef3cb6bd6f75227707))
|
31
|
-
* **Toast:** removed logs ([15ee2c5](https://github.com/formaat-design/reshaped-source/commit/15ee2c5fe758287c11fccaef0fc49a36a38cf0bb))
|
32
|
-
|
33
|
-
## [2.5.5](https://github.com/formaat-design/reshaped-source/compare/v2.5.4...v2.5.5) (2023-10-31)
|
34
|
-
|
35
|
-
|
36
|
-
### Bug Fixes
|
37
|
-
|
38
|
-
* **deps:** update dependency autoprefixer to v10.4.16 ([f9a4361](https://github.com/formaat-design/reshaped-source/commit/f9a4361398eb17b8c0675e3f1259dfb731723fe1))
|
39
|
-
|
40
|
-
# 2.5.4 (2023-10-31)
|
41
|
-
|
42
|
-
### Bug Fixes
|
43
|
-
|
44
|
-
- **deps:** update dependency autoprefixer to v10.4.15 ([66b415c](https://github.com/formaat-design/reshaped-source/commit/66b415c308544779017b6799d9432c9ab168ef38))
|
45
|
-
- **Themes:** improved baseThemeDefiniion typings ([1bbb457](https://github.com/formaat-design/reshaped-source/commit/1bbb457c8ba1e76ced1a488aec308c8a7b14525e)), closes [#183](https://github.com/formaat-design/reshaped-source/issues/183)
|
46
|
-
|
47
|
-
2.6
|
48
|
-
|
49
|
-
* TextArea
|
50
|
-
- Added support for passing `rows` to `inputAttributes`
|
51
|
-
- Updated onFocus and onBlur typings to use correct html element reference
|
52
|
-
* TextField
|
53
|
-
- Updated onFocus and onBlur typings to use correct html element reference
|
6
|
+
- Link: Fixed iOS Safari currentColor
|
7
|
+
- View: Updating padding array mentioned in the docs
|
8
|
+
- Toast: Added className support
|