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 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