cozy-viewer 2.8.0 → 2.9.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 +19 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +8 -0
- package/package.json +3 -3
- package/src/index.jsx +1 -0
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
|
+
## [2.9.1](https://github.com/cozy/cozy-libs/compare/cozy-viewer@2.9.0...cozy-viewer@2.9.1) (2024-11-22)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package cozy-viewer
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [2.9.0](https://github.com/cozy/cozy-libs/compare/cozy-viewer@2.8.0...cozy-viewer@2.9.0) (2024-11-22)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **cozy-viewer:** Exposing the components used by apps at the root ([4a1d9e5](https://github.com/cozy/cozy-libs/commit/4a1d9e5690287bc280edadc2b6e412bc19acd46f))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [2.8.0](https://github.com/cozy/cozy-libs/compare/cozy-viewer@2.7.0...cozy-viewer@2.8.0) (2024-11-18)
|
|
7
26
|
|
|
8
27
|
|
package/dist/index.d.ts
CHANGED
|
@@ -6,5 +6,6 @@ export { default as ToolbarButtons } from "./components/ToolbarButtons";
|
|
|
6
6
|
export { default as FooterActionButtons } from "./Footer/FooterActionButtons";
|
|
7
7
|
export { default as ForwardButton } from "./Footer/ForwardButton";
|
|
8
8
|
export { default as ForwardOrDownloadButton } from "./Footer/ForwardOrDownloadButton";
|
|
9
|
+
export { default as SharingButton } from "./Footer/Sharing";
|
|
9
10
|
export default ViewerContainer;
|
|
10
11
|
import ViewerContainer from "./ViewerContainer";
|
package/dist/index.js
CHANGED
|
@@ -23,6 +23,12 @@ Object.defineProperty(exports, "ForwardOrDownloadButton", {
|
|
|
23
23
|
return _ForwardOrDownloadButton.default;
|
|
24
24
|
}
|
|
25
25
|
});
|
|
26
|
+
Object.defineProperty(exports, "SharingButton", {
|
|
27
|
+
enumerable: true,
|
|
28
|
+
get: function get() {
|
|
29
|
+
return _Sharing.default;
|
|
30
|
+
}
|
|
31
|
+
});
|
|
26
32
|
Object.defineProperty(exports, "ToolbarButtons", {
|
|
27
33
|
enumerable: true,
|
|
28
34
|
get: function get() {
|
|
@@ -71,5 +77,7 @@ var _ForwardButton = _interopRequireDefault(require("./Footer/ForwardButton"));
|
|
|
71
77
|
|
|
72
78
|
var _ForwardOrDownloadButton = _interopRequireDefault(require("./Footer/ForwardOrDownloadButton"));
|
|
73
79
|
|
|
80
|
+
var _Sharing = _interopRequireDefault(require("./Footer/Sharing"));
|
|
81
|
+
|
|
74
82
|
var _default = _ViewerContainer.default;
|
|
75
83
|
exports.default = _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cozy-viewer",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.9.1",
|
|
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,7 +27,7 @@
|
|
|
27
27
|
"babel-preset-cozy-app": "^2.8.1",
|
|
28
28
|
"cozy-client": "50.0.0",
|
|
29
29
|
"cozy-device-helper": "2.0.0",
|
|
30
|
-
"cozy-harvest-lib": "^30.
|
|
30
|
+
"cozy-harvest-lib": "^30.7.0",
|
|
31
31
|
"cozy-intent": "^2.29.1",
|
|
32
32
|
"cozy-logger": "^1.16.1",
|
|
33
33
|
"cozy-sharing": "14.1.0",
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"react": ">=16.12.0",
|
|
61
61
|
"react-dom": ">=16.12.0"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "7b897f6e8327175b29bb2b35d388ef8753c8e846"
|
|
64
64
|
}
|
package/src/index.jsx
CHANGED
|
@@ -8,5 +8,6 @@ export { default as ToolbarButtons } from './components/ToolbarButtons'
|
|
|
8
8
|
export { default as FooterActionButtons } from './Footer/FooterActionButtons'
|
|
9
9
|
export { default as ForwardButton } from './Footer/ForwardButton'
|
|
10
10
|
export { default as ForwardOrDownloadButton } from './Footer/ForwardOrDownloadButton'
|
|
11
|
+
export { default as SharingButton } from './Footer/Sharing'
|
|
11
12
|
|
|
12
13
|
export default ViewerContainer
|