cozy-ui 121.7.0 → 121.9.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.
Files changed (37) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/dist/cozy-ui.min.css +2 -2
  3. package/dist/cozy-ui.utils.min.css +1 -1
  4. package/package.json +1 -1
  5. package/react/Badge/Readme.md +2 -2
  6. package/react/InfosBadge/index.jsx +12 -9
  7. package/react/MuiCozyTheme/makeTheme.jsx +2 -0
  8. package/react/MuiCozyTheme/overrides/makeLightNormalOverrides.js +1 -0
  9. package/react/SquareAppIcon/Readme.md +9 -7
  10. package/react/SquareAppIcon/__snapshots__/SquareAppIcon.spec.js.snap +9 -9
  11. package/react/SquareAppIcon/index.jsx +42 -18
  12. package/react/SquareAppIcon/styles.styl +7 -1
  13. package/react/SquareAppIcon/styles_twake.styl +136 -0
  14. package/react/Typography/Readme.md +1 -0
  15. package/react/providers/CozyTheme/DumbCozyTheme.jsx +1 -0
  16. package/react/providers/CozyTheme/index.jsx +7 -2
  17. package/stylus/settings/shadows.styl +3 -0
  18. package/stylus/settings/themes/light-normal.styl +0 -2
  19. package/stylus/utilities/bgcolor.styl +3 -0
  20. package/stylus/utilities/elevation.styl +3 -0
  21. package/theme/palette_twake.json +1 -1
  22. package/transpiled/react/InfosBadge/index.js +19 -21
  23. package/transpiled/react/MuiCozyTheme/makeTheme.js +2 -0
  24. package/transpiled/react/MuiCozyTheme/overrides/makeDarkInvertedOverrides.d.ts +1 -0
  25. package/transpiled/react/MuiCozyTheme/overrides/makeDarkNormalOverrides.d.ts +1 -0
  26. package/transpiled/react/MuiCozyTheme/overrides/makeLightInvertedOverrides.d.ts +1 -0
  27. package/transpiled/react/MuiCozyTheme/overrides/makeLightNormalOverrides.d.ts +1 -0
  28. package/transpiled/react/MuiCozyTheme/overrides/makeLightNormalOverrides.js +1 -0
  29. package/transpiled/react/MuiCozyTheme/overrides/twake/makeDarkInvertedOverrides.d.ts +1 -0
  30. package/transpiled/react/MuiCozyTheme/overrides/twake/makeDarkNormalOverrides.d.ts +1 -0
  31. package/transpiled/react/MuiCozyTheme/overrides/twake/makeLightInvertedOverrides.d.ts +1 -0
  32. package/transpiled/react/MuiCozyTheme/overrides/twake/makeLightNormalOverrides.d.ts +1 -0
  33. package/transpiled/react/SquareAppIcon/index.js +44 -18
  34. package/transpiled/react/providers/CozyTheme/DumbCozyTheme.js +1 -0
  35. package/transpiled/react/providers/CozyTheme/index.d.ts +1 -0
  36. package/transpiled/react/providers/CozyTheme/index.js +3 -2
  37. package/transpiled/react/stylesheet.css +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,29 @@
1
+ # [121.9.0](https://github.com/cozy/cozy-ui/compare/v121.8.0...v121.9.0) (2025-04-01)
2
+
3
+
4
+ ### Features
5
+
6
+ * Add .u-bg-transparent utility class ([bbbb018](https://github.com/cozy/cozy-ui/commit/bbbb018))
7
+ * Add .u-elevation-0 utility class ([1e3f322](https://github.com/cozy/cozy-ui/commit/1e3f322))
8
+
9
+ # [121.8.0](https://github.com/cozy/cozy-ui/compare/v121.7.0...v121.8.0) (2025-03-27)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * **Badge:** Force 100% radius ([cf87bbd](https://github.com/cozy/cozy-ui/commit/cf87bbd))
15
+ * Change error.50 Twake color ([02554fb](https://github.com/cozy/cozy-ui/commit/02554fb))
16
+ * **SquareAppIcon:** Background color for shortcut wasn't correct ([fa86122](https://github.com/cozy/cozy-ui/commit/fa86122))
17
+
18
+
19
+ ### Features
20
+
21
+ * **CozyTheme:** Add theme name in hook result ([1dcb245](https://github.com/cozy/cozy-ui/commit/1dcb245))
22
+ * **InfosBadge:** Adjust Twake theme ([e71cd73](https://github.com/cozy/cozy-ui/commit/e71cd73))
23
+ * **MuiTheme:** Add theme type and variant ([be59079](https://github.com/cozy/cozy-ui/commit/be59079))
24
+ * Remove set of font in Twake theme css ([4851971](https://github.com/cozy/cozy-ui/commit/4851971))
25
+ * **SquareAppIcon:** Adjust Twake theme ([40ec0f7](https://github.com/cozy/cozy-ui/commit/40ec0f7))
26
+
1
27
  # [121.7.0](https://github.com/cozy/cozy-ui/compare/v121.6.0...v121.7.0) (2025-03-27)
2
28
 
3
29