cozy-ui 58.1.1 → 58.4.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 (33) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/dist/cozy-ui.min.css +1 -1
  3. package/package.json +3 -3
  4. package/react/BarTitle/Readme.md +14 -4
  5. package/react/BarTitle/index.jsx +18 -4
  6. package/react/Viewer/Footer/BottomSheetContent.jsx +5 -4
  7. package/react/Viewer/Footer/FooterContent.jsx +10 -4
  8. package/react/Viewer/Panel/Certifications.jsx +2 -2
  9. package/react/Viewer/Panel/PanelContent.jsx +1 -1
  10. package/react/Viewer/Panel/Qualification.jsx +95 -0
  11. package/react/Viewer/Panel/QualificationListItemText.jsx +23 -0
  12. package/react/Viewer/Panel/getPanelBlocks.jsx +10 -1
  13. package/react/Viewer/Readme.md +12 -125
  14. package/react/Viewer/helpers.js +15 -1
  15. package/react/Viewer/helpers.spec.js +37 -31
  16. package/react/Viewer/index.jsx +22 -7
  17. package/react/Viewer/locales/en.json +19 -0
  18. package/react/Viewer/locales/fr.json +19 -0
  19. package/react/Viewer/queries.js +11 -0
  20. package/stylus/components/button.styl +22 -13
  21. package/transpiled/react/BarTitle/index.js +15 -4
  22. package/transpiled/react/Viewer/Footer/BottomSheetContent.js +7 -4
  23. package/transpiled/react/Viewer/Footer/FooterContent.js +7 -3
  24. package/transpiled/react/Viewer/Panel/Certifications.js +1 -3
  25. package/transpiled/react/Viewer/Panel/PanelContent.js +2 -1
  26. package/transpiled/react/Viewer/Panel/Qualification.js +67 -0
  27. package/transpiled/react/Viewer/Panel/QualificationListItemText.js +25 -0
  28. package/transpiled/react/Viewer/Panel/getPanelBlocks.js +6 -1
  29. package/transpiled/react/Viewer/helpers.js +18 -6
  30. package/transpiled/react/Viewer/index.js +15 -7
  31. package/transpiled/react/Viewer/queries.js +14 -0
  32. package/transpiled/react/Viewer/withViewerLocales.js +38 -0
  33. package/transpiled/react/stylesheet.css +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,32 @@
1
+ # [58.4.0](https://github.com/cozy/cozy-ui/compare/v58.3.0...v58.4.0) (2021-12-14)
2
+
3
+
4
+ ### Features
5
+
6
+ * Added Qualification panel block ([9fbaaa6](https://github.com/cozy/cozy-ui/commit/9fbaaa6))
7
+ * Upgrade cozy-client ([8820f81](https://github.com/cozy/cozy-ui/commit/8820f81))
8
+
9
+ # [58.3.0](https://github.com/cozy/cozy-ui/compare/v58.2.0...v58.3.0) (2021-12-13)
10
+
11
+
12
+ ### Features
13
+
14
+ * Disable sharing button on Viewer ([c7303b3](https://github.com/cozy/cozy-ui/commit/c7303b3))
15
+
16
+ # [58.2.0](https://github.com/cozy/cozy-ui/compare/v58.1.2...v58.2.0) (2021-12-08)
17
+
18
+
19
+ ### Features
20
+
21
+ * Add `noWrap` prop on BarTitle ([74e3742](https://github.com/cozy/cozy-ui/commit/74e3742))
22
+
23
+ ## [58.1.2](https://github.com/cozy/cozy-ui/compare/v58.1.1...v58.1.2) (2021-12-07)
24
+
25
+
26
+ ### Bug Fixes
27
+
28
+ * Correct colors about Alerter buttons ([050c2b9](https://github.com/cozy/cozy-ui/commit/050c2b9))
29
+
1
30
  ## [58.1.1](https://github.com/cozy/cozy-ui/compare/v58.1.0...v58.1.1) (2021-12-07)
2
31
 
3
32