cozy-ui 61.0.0 → 62.1.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 +44 -0
- package/dist/cozy-ui.min.css +1 -1
- package/package.json +1 -1
- package/react/Avatar/Readme.md +44 -104
- package/react/Avatar/index.jsx +4 -0
- package/react/Avatar/styles.styl +10 -0
- package/react/Checkbox/Readme.md +24 -77
- package/react/DateMonthPicker/index.jsx +2 -2
- package/react/I18n/format.jsx +18 -4
- package/react/I18n/format.spec.jsx +35 -1
- package/react/IconButton/Readme.md +15 -52
- package/react/MuiCozyTheme/makeOverrides.js +1 -1
- package/react/Sidebar/Readme.md +26 -14
- package/react/UploadQueue/Readme.md +2 -1
- package/react/UploadQueue/index.jsx +15 -9
- package/react/UploadQueue/index.spec.jsx +128 -0
- package/react/UploadQueue/locales/en.json +2 -2
- package/react/UploadQueue/locales/es.json +4 -3
- package/react/UploadQueue/locales/fr.json +3 -3
- package/react/UploadQueue/styles.styl +6 -2
- package/react/__snapshots__/examples.spec.jsx.snap +307 -397
- package/transpiled/react/Avatar/index.js +6 -2
- package/transpiled/react/DateMonthPicker/index.js +2 -2
- package/transpiled/react/I18n/format.js +16 -3
- package/transpiled/react/MuiCozyTheme/makeOverrides.js +1 -1
- package/transpiled/react/UploadQueue/index.js +24 -20
- package/transpiled/react/stylesheet.css +1 -1
- package/react/IconButton/styles.styl +0 -30
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,47 @@
|
|
|
1
|
+
# [62.1.0](https://github.com/cozy/cozy-ui/compare/v62.0.0...v62.1.0) (2022-02-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **upload:** Make progress bar size fixed ([1f58eee](https://github.com/cozy/cozy-ui/commit/1f58eee))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **Avatar:** Add ghost property ([d09135c](https://github.com/cozy/cozy-ui/commit/d09135c))
|
|
12
|
+
|
|
13
|
+
# [62.0.0](https://github.com/cozy/cozy-ui/compare/v61.1.1...v62.0.0) (2022-02-11)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* Use correct color for checkbox in inverted theme ([878c8ad](https://github.com/cozy/cozy-ui/commit/878c8ad))
|
|
19
|
+
* **UploadQueue:** UploadQueue manage internationalized progress message ([ecb00e1](https://github.com/cozy/cozy-ui/commit/ecb00e1))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
* Remove useless IconButton stylus ([7749774](https://github.com/cozy/cozy-ui/commit/7749774))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### BREAKING CHANGES
|
|
28
|
+
|
|
29
|
+
* The .IconButton css class is no longer available in the stylesheet
|
|
30
|
+
|
|
31
|
+
## [61.1.1](https://github.com/cozy/cozy-ui/compare/v61.1.0...v61.1.1) (2022-02-10)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Bug Fixes
|
|
35
|
+
|
|
36
|
+
* **deps:** update dependency handlebars to v4.7.7 [security] ([3df65a0](https://github.com/cozy/cozy-ui/commit/3df65a0))
|
|
37
|
+
|
|
38
|
+
# [61.1.0](https://github.com/cozy/cozy-ui/compare/v61.0.0...v61.1.0) (2022-02-10)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
### Features
|
|
42
|
+
|
|
43
|
+
* **import-cost:** Decrease size of import of date-fns ([9f2dc1f](https://github.com/cozy/cozy-ui/commit/9f2dc1f))
|
|
44
|
+
|
|
1
45
|
# [61.0.0](https://github.com/cozy/cozy-ui/compare/v60.12.0...v61.0.0) (2022-02-09)
|
|
2
46
|
|
|
3
47
|
|