cozy-ui 90.7.1 → 91.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.
Files changed (33) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist/cozy-ui.min.css +1 -1
  3. package/package.json +1 -1
  4. package/react/ContactsList/Contacts/ContactIdentity.jsx +1 -5
  5. package/react/ContactsList/__snapshots__/ContactRow.spec.js.snap +0 -1
  6. package/react/List/Readme.md +0 -1
  7. package/react/Timeline/Readme.md +1 -0
  8. package/react/Timeline/index.js +3 -0
  9. package/react/TimelineConnector/Readme.md +1 -0
  10. package/react/TimelineConnector/index.js +3 -0
  11. package/react/TimelineContent/Readme.md +1 -0
  12. package/react/TimelineContent/index.js +3 -0
  13. package/react/TimelineDot/Readme.md +1 -0
  14. package/react/TimelineDot/index.js +3 -0
  15. package/react/TimelineItem/Readme.md +1 -0
  16. package/react/TimelineItem/index.js +3 -0
  17. package/react/TimelineOppositeContent/Readme.md +1 -0
  18. package/react/TimelineOppositeContent/index.js +3 -0
  19. package/react/TimelineSeparator/Readme.md +1 -0
  20. package/react/TimelineSeparator/index.js +3 -0
  21. package/react/__snapshots__/examples.spec.jsx.snap +126 -126
  22. package/react/index.js +7 -0
  23. package/stylus/components/avatar.styl +0 -1
  24. package/transpiled/react/ContactsList/Contacts/ContactIdentity.js +0 -3
  25. package/transpiled/react/Timeline/index.js +2 -0
  26. package/transpiled/react/TimelineConnector/index.js +2 -0
  27. package/transpiled/react/TimelineContent/index.js +2 -0
  28. package/transpiled/react/TimelineDot/index.js +2 -0
  29. package/transpiled/react/TimelineItem/index.js +2 -0
  30. package/transpiled/react/TimelineOppositeContent/index.js +2 -0
  31. package/transpiled/react/TimelineSeparator/index.js +2 -0
  32. package/transpiled/react/index.js +8 -1
  33. package/transpiled/react/stylesheet.css +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,23 @@
1
+ # [91.1.0](https://github.com/cozy/cozy-ui/compare/v91.0.0...v91.1.0) (2023-08-24)
2
+
3
+
4
+ ### Features
5
+
6
+ * Add components relative to Timeline ([c2203fc](https://github.com/cozy/cozy-ui/commit/c2203fc))
7
+
8
+ # [91.0.0](https://github.com/cozy/cozy-ui/compare/v90.7.1...v91.0.0) (2023-08-16)
9
+
10
+
11
+ ### Features
12
+
13
+ * **Avatar:** Remove z-index ([3d95434](https://github.com/cozy/cozy-ui/commit/3d95434))
14
+
15
+
16
+ ### BREAKING CHANGES
17
+
18
+ * **Avatar:** if you encounter some z-index problem with Avatar component, you must have to set it manually. Previously it was
19
+ set to `1`
20
+
1
21
  ## [90.7.1](https://github.com/cozy/cozy-ui/compare/v90.7.0...v90.7.1) (2023-08-16)
2
22
 
3
23