cozy-ui 51.10.0 → 52.0.1
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 +42 -0
- package/dist/cozy-ui.min.css +1 -1
- package/package.json +5 -5
- package/react/Banner/Readme.md +13 -15
- package/react/CompositeRow/Readme.md +20 -19
- package/react/Empty/Readme.md +44 -37
- package/react/Empty/index.jsx +8 -3
- package/react/Empty/styles.styl +14 -8
- package/react/Icon/Readme.md +2 -1
- package/react/Icon/Sprite.jsx +2 -2
- package/react/Icon/index.jsx +0 -1
- package/react/MuiCozyTheme/Divider/Readme.md +16 -0
- package/react/MuiCozyTheme/Divider/TextDivider/index.jsx +33 -0
- package/react/MuiCozyTheme/Divider/TextDivider/styles.styl +26 -0
- package/react/MuiCozyTheme/Divider/index.jsx +18 -1
- package/react/Paper/Readme.md +2 -2
- package/react/Progress/Readme.md +15 -11
- package/react/ProgressionBanner/Readme.md +7 -7
- package/react/Viewer/Readme.md +28 -30
- package/react/__snapshots__/examples.spec.jsx.snap +361 -21
- package/react/examples.spec.jsx +6 -0
- package/react/index.js +2 -1
- package/stylus/components/empty.styl +33 -21
- package/transpiled/react/Empty/index.js +10 -4
- package/transpiled/react/Icon/Sprite.js +2 -2
- package/transpiled/react/Icon/index.js +1 -2
- package/transpiled/react/MuiCozyTheme/Divider/TextDivider/index.js +35 -0
- package/transpiled/react/MuiCozyTheme/Divider/index.js +14 -1
- package/transpiled/react/index.js +2 -1
- package/transpiled/react/stylesheet.css +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,45 @@
|
|
|
1
|
+
## [52.0.1](https://github.com/cozy/cozy-ui/compare/v52.0.0...v52.0.1) (2021-09-24)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Change import about Sprite ([5f0b88f](https://github.com/cozy/cozy-ui/commit/5f0b88f))
|
|
7
|
+
* Lint ([53ef0ce](https://github.com/cozy/cozy-ui/commit/53ef0ce))
|
|
8
|
+
|
|
9
|
+
# [52.0.0](https://github.com/cozy/cozy-ui/compare/v51.12.0...v52.0.0) (2021-09-22)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* Remove export Sprite from Icon (index.jsx) ([478e9d2](https://github.com/cozy/cozy-ui/commit/478e9d2))
|
|
15
|
+
* Remove unused import ([adee11b](https://github.com/cozy/cozy-ui/commit/adee11b))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### BREAKING CHANGES
|
|
19
|
+
|
|
20
|
+
* `<Sprite>` is no longer exported by `<Icon>`. However, you can import it directly with `import Sprite from 'cozy-ui/transpiled/react/Icon/Sprite'`. Be carful, it's no longer possible to set an icon with a string like this `<Icon icon="myIcon" />` without importing `<Sprite>`. If don't need the sprite, you can still use svgr icons:
|
|
21
|
+
```
|
|
22
|
+
import MyIcon from 'cozy-ui/transpiled/react/Icons/MyIcon'
|
|
23
|
+
<Icon icon={MyIcon} />
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
# [51.12.0](https://github.com/cozy/cozy-ui/compare/v51.11.0...v51.12.0) (2021-09-15)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Features
|
|
30
|
+
|
|
31
|
+
* Add text features to `Divider` component ([e509bb9](https://github.com/cozy/cozy-ui/commit/e509bb9))
|
|
32
|
+
|
|
33
|
+
# [51.11.0](https://github.com/cozy/cozy-ui/compare/v51.10.0...v51.11.0) (2021-09-10)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
### Features
|
|
37
|
+
|
|
38
|
+
* Add & fix snaps with Variants ([9d6ab89](https://github.com/cozy/cozy-ui/commit/9d6ab89))
|
|
39
|
+
* Add prop iconSize ([5398f53](https://github.com/cozy/cozy-ui/commit/5398f53))
|
|
40
|
+
* Delete useless spaces ([b5e21a4](https://github.com/cozy/cozy-ui/commit/b5e21a4))
|
|
41
|
+
* Refactor Empty Readme with Variants ([ddf999e](https://github.com/cozy/cozy-ui/commit/ddf999e))
|
|
42
|
+
|
|
1
43
|
# [51.10.0](https://github.com/cozy/cozy-ui/compare/v51.9.1...v51.10.0) (2021-09-08)
|
|
2
44
|
|
|
3
45
|
|