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.
- package/CHANGELOG.md +20 -0
- package/dist/cozy-ui.min.css +1 -1
- package/package.json +1 -1
- package/react/ContactsList/Contacts/ContactIdentity.jsx +1 -5
- package/react/ContactsList/__snapshots__/ContactRow.spec.js.snap +0 -1
- package/react/List/Readme.md +0 -1
- package/react/Timeline/Readme.md +1 -0
- package/react/Timeline/index.js +3 -0
- package/react/TimelineConnector/Readme.md +1 -0
- package/react/TimelineConnector/index.js +3 -0
- package/react/TimelineContent/Readme.md +1 -0
- package/react/TimelineContent/index.js +3 -0
- package/react/TimelineDot/Readme.md +1 -0
- package/react/TimelineDot/index.js +3 -0
- package/react/TimelineItem/Readme.md +1 -0
- package/react/TimelineItem/index.js +3 -0
- package/react/TimelineOppositeContent/Readme.md +1 -0
- package/react/TimelineOppositeContent/index.js +3 -0
- package/react/TimelineSeparator/Readme.md +1 -0
- package/react/TimelineSeparator/index.js +3 -0
- package/react/__snapshots__/examples.spec.jsx.snap +126 -126
- package/react/index.js +7 -0
- package/stylus/components/avatar.styl +0 -1
- package/transpiled/react/ContactsList/Contacts/ContactIdentity.js +0 -3
- package/transpiled/react/Timeline/index.js +2 -0
- package/transpiled/react/TimelineConnector/index.js +2 -0
- package/transpiled/react/TimelineContent/index.js +2 -0
- package/transpiled/react/TimelineDot/index.js +2 -0
- package/transpiled/react/TimelineItem/index.js +2 -0
- package/transpiled/react/TimelineOppositeContent/index.js +2 -0
- package/transpiled/react/TimelineSeparator/index.js +2 -0
- package/transpiled/react/index.js +8 -1
- 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
|
|