cozy-ui 76.0.0 → 76.2.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 +22 -0
- package/dist/cozy-ui.min.css +1 -1
- package/package.json +1 -1
- package/react/ActionMenu/ActionMenuWrapper.jsx +13 -5
- package/react/ActionMenu/Readme.md +2 -2
- package/react/ActionMenu/index.jsx +20 -13
- package/react/BottomSheet/BottomSheet.jsx +1 -1
- package/react/BottomSheet/helpers.js +4 -1
- package/react/BottomSheet/helpers.spec.js +4 -1
- package/react/CozyDialogs/Readme.md +28 -9
- package/react/CozyDialogs/background.png +0 -0
- package/react/CozyDialogs/dialogPropTypes.js +4 -3
- package/react/CozyDialogs/useCozyDialog.js +14 -10
- package/react/Icon/Readme.md +2 -22
- package/react/__snapshots__/examples.spec.jsx.snap +358 -358
- package/react/helpers/getSafeArea.ts +15 -0
- package/stylus/components/action-menu.styl +1 -3
- package/stylus/elements/defaults.styl +6 -0
- package/transpiled/react/ActionMenu/ActionMenuWrapper.js +13 -7
- package/transpiled/react/ActionMenu/index.js +24 -14
- package/transpiled/react/BottomSheet/BottomSheet.js +1 -1
- package/transpiled/react/BottomSheet/helpers.js +2 -1
- package/transpiled/react/CozyDialogs/dialogPropTypes.js +4 -3
- package/transpiled/react/CozyDialogs/useCozyDialog.js +16 -10
- package/transpiled/react/helpers/getSafeArea.d.ts +10 -0
- package/transpiled/react/helpers/getSafeArea.js +15 -0
- package/transpiled/react/stylesheet.css +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
# [76.2.0](https://github.com/cozy/cozy-ui/compare/v76.1.0...v76.2.0) (2022-10-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **BottomSheet:** Add safe area ([06b0ff3](https://github.com/cozy/cozy-ui/commit/06b0ff3))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **ActionMenu:** Use BottomSheet instead of BottomDrawer on mobile ([9967d0c](https://github.com/cozy/cozy-ui/commit/9967d0c))
|
|
12
|
+
* Add helper to get safe area value ([650e901](https://github.com/cozy/cozy-ui/commit/650e901))
|
|
13
|
+
* Add safe area inset css value in root variable ([abe1b48](https://github.com/cozy/cozy-ui/commit/abe1b48))
|
|
14
|
+
* **BottomSheet:** Larger handle for easier handling ([7e7baba](https://github.com/cozy/cozy-ui/commit/7e7baba))
|
|
15
|
+
|
|
16
|
+
# [76.1.0](https://github.com/cozy/cozy-ui/compare/v76.0.0...v76.1.0) (2022-10-10)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
* **CozyDialogs:** Add background prop to set a background ([38bf008](https://github.com/cozy/cozy-ui/commit/38bf008))
|
|
22
|
+
|
|
1
23
|
# [76.0.0](https://github.com/cozy/cozy-ui/compare/v75.6.1...v76.0.0) (2022-10-05)
|
|
2
24
|
|
|
3
25
|
|