cozy-ui 121.8.0 → 122.0.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.
- package/CHANGELOG.md +24 -0
- package/dist/cozy-ui.min.css +2 -2
- package/dist/cozy-ui.utils.min.css +1 -1
- package/package.json +1 -1
- package/react/SearchBar/Readme.md +11 -3
- package/react/SearchBar/index.jsx +11 -3
- package/stylus/settings/shadows.styl +3 -0
- package/stylus/utilities/bgcolor.styl +3 -0
- package/stylus/utilities/elevation.styl +3 -0
- package/transpiled/react/SearchBar/index.js +36 -26
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# [122.0.0](https://github.com/cozy/cozy-ui/compare/v121.9.0...v122.0.0) (2025-04-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* Accept a number as elevation in SearchBar ([280fc63](https://github.com/cozy/cozy-ui/commit/280fc63))
|
|
7
|
+
* Update font size of SearchBar ([60ea8e8](https://github.com/cozy/cozy-ui/commit/60ea8e8))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### BREAKING CHANGES
|
|
11
|
+
|
|
12
|
+
* SearchBar accepts now a number as elevation instead
|
|
13
|
+
of a bool. If you used `elevation={true}` you can use
|
|
14
|
+
`elevation={1}` and if you used `elevation={false}` you can use
|
|
15
|
+
`elevation={0}.` Default value is kept (it was true so it is 1).
|
|
16
|
+
|
|
17
|
+
# [121.9.0](https://github.com/cozy/cozy-ui/compare/v121.8.0...v121.9.0) (2025-04-01)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* Add .u-bg-transparent utility class ([bbbb018](https://github.com/cozy/cozy-ui/commit/bbbb018))
|
|
23
|
+
* Add .u-elevation-0 utility class ([1e3f322](https://github.com/cozy/cozy-ui/commit/1e3f322))
|
|
24
|
+
|
|
1
25
|
# [121.8.0](https://github.com/cozy/cozy-ui/compare/v121.7.0...v121.8.0) (2025-03-27)
|
|
2
26
|
|
|
3
27
|
|