cozy-viewer 14.0.0 → 14.0.2

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
@@ -3,6 +3,25 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [14.0.2](https://github.com/cozy/cozy-libs/compare/cozy-viewer@14.0.1...cozy-viewer@14.0.2) (2025-01-23)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **Viewer:** FooterContent wasn't using component correctly ([ab878f5](https://github.com/cozy/cozy-libs/commit/ab878f56c5b71d8bb12116adb062c47edd9ce056))
12
+
13
+
14
+
15
+
16
+
17
+ ## [14.0.1](https://github.com/cozy/cozy-libs/compare/cozy-viewer@14.0.0...cozy-viewer@14.0.1) (2025-01-23)
18
+
19
+ **Note:** Version bump only for package cozy-viewer
20
+
21
+
22
+
23
+
24
+
6
25
  # [14.0.0](https://github.com/cozy/cozy-libs/compare/cozy-viewer@13.3.2...cozy-viewer@14.0.0) (2025-01-23)
7
26
 
8
27
 
@@ -76,7 +76,7 @@ var FooterContent = function FooterContent(_ref) {
76
76
  settings: bottomSheetSettings
77
77
  }, /*#__PURE__*/_react.default.createElement(_BottomSheet.BottomSheetHeader, {
78
78
  className: (0, _classnames.default)('u-ph-1 u-pb-1', styles.bottomSheetHeader)
79
- }, /*#__PURE__*/_react.default.createElement(FooterActionButtonsWithFile, null)), /*#__PURE__*/_react.default.createElement(_BottomSheetContent.default, null));
79
+ }, FooterActionButtonsWithFile), /*#__PURE__*/_react.default.createElement(_BottomSheetContent.default, null));
80
80
  };
81
81
 
82
82
  FooterContent.propTypes = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cozy-viewer",
3
- "version": "14.0.0",
3
+ "version": "14.0.2",
4
4
  "description": "Cozy-Viewer provides a component to show files in a viewer.",
5
5
  "main": "dist/index.js",
6
6
  "license": "MIT",
@@ -27,10 +27,10 @@
27
27
  "babel-preset-cozy-app": "^2.8.1",
28
28
  "cozy-client": "^53.1.0",
29
29
  "cozy-device-helper": "2.0.0",
30
- "cozy-harvest-lib": "^32.2.20",
30
+ "cozy-harvest-lib": "^32.2.22",
31
31
  "cozy-intent": "^2.29.1",
32
32
  "cozy-logger": "^1.16.1",
33
- "cozy-sharing": "^20.0.0",
33
+ "cozy-sharing": "^21.0.0",
34
34
  "cozy-ui": "^117.1.0",
35
35
  "identity-obj-proxy": "3.0.0",
36
36
  "jest": "26.6.3",
@@ -59,5 +59,5 @@
59
59
  "react": ">=16.12.0",
60
60
  "react-dom": ">=16.12.0"
61
61
  },
62
- "gitHead": "33ea79ccc399cb2a06d5e4b979a05ff6791e7396"
62
+ "gitHead": "64c9c103cef8ab671c566423f95f087f8d09ab36"
63
63
  }
@@ -53,7 +53,7 @@ const FooterContent = ({ toolbarRef, children }) => {
53
53
  <BottomSheetHeader
54
54
  className={cx('u-ph-1 u-pb-1', styles.bottomSheetHeader)}
55
55
  >
56
- <FooterActionButtonsWithFile />
56
+ {FooterActionButtonsWithFile}
57
57
  </BottomSheetHeader>
58
58
  <BottomSheetContent />
59
59
  </BottomSheet>