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.
- package/CHANGELOG.md +29 -0
- package/dist/cozy-ui.min.css +1 -1
- package/package.json +3 -3
- package/react/BarTitle/Readme.md +14 -4
- package/react/BarTitle/index.jsx +18 -4
- package/react/Viewer/Footer/BottomSheetContent.jsx +5 -4
- package/react/Viewer/Footer/FooterContent.jsx +10 -4
- package/react/Viewer/Panel/Certifications.jsx +2 -2
- package/react/Viewer/Panel/PanelContent.jsx +1 -1
- package/react/Viewer/Panel/Qualification.jsx +95 -0
- package/react/Viewer/Panel/QualificationListItemText.jsx +23 -0
- package/react/Viewer/Panel/getPanelBlocks.jsx +10 -1
- package/react/Viewer/Readme.md +12 -125
- package/react/Viewer/helpers.js +15 -1
- package/react/Viewer/helpers.spec.js +37 -31
- package/react/Viewer/index.jsx +22 -7
- package/react/Viewer/locales/en.json +19 -0
- package/react/Viewer/locales/fr.json +19 -0
- package/react/Viewer/queries.js +11 -0
- package/stylus/components/button.styl +22 -13
- package/transpiled/react/BarTitle/index.js +15 -4
- package/transpiled/react/Viewer/Footer/BottomSheetContent.js +7 -4
- package/transpiled/react/Viewer/Footer/FooterContent.js +7 -3
- package/transpiled/react/Viewer/Panel/Certifications.js +1 -3
- package/transpiled/react/Viewer/Panel/PanelContent.js +2 -1
- package/transpiled/react/Viewer/Panel/Qualification.js +67 -0
- package/transpiled/react/Viewer/Panel/QualificationListItemText.js +25 -0
- package/transpiled/react/Viewer/Panel/getPanelBlocks.js +6 -1
- package/transpiled/react/Viewer/helpers.js +18 -6
- package/transpiled/react/Viewer/index.js +15 -7
- package/transpiled/react/Viewer/queries.js +14 -0
- package/transpiled/react/Viewer/withViewerLocales.js +38 -0
- 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
|
|