cozy-viewer 23.0.0 → 23.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 +10 -0
- package/dist/locales/index.js +2 -2
- package/dist/stylesheet.css +2 -1
- package/package.json +4 -4
- package/src/components/styles.styl +2 -1
- package/src/locales/en.json +1 -1
- package/src/locales/fr.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
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
|
+
# [23.1.0](https://github.com/cozy/cozy-libs/compare/cozy-viewer@23.0.0...cozy-viewer@23.1.0) (2025-06-18)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **Viewer:** Controls arrows was pointing wrong direction ([a8b2c62](https://github.com/cozy/cozy-libs/commit/a8b2c629d4a53e18862d788819e846dcb75f355d))
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- Replace Cozy by Twake in locales ([5633122](https://github.com/cozy/cozy-libs/commit/5633122f343e9d14f1120c039cea6a16e7d020ef))
|
|
15
|
+
|
|
6
16
|
# [23.0.0](https://github.com/cozy/cozy-libs/compare/cozy-viewer@22.0.4...cozy-viewer@23.0.0) (2025-06-12)
|
|
7
17
|
|
|
8
18
|
### Features
|
package/dist/locales/index.js
CHANGED
|
@@ -50,7 +50,7 @@ var en = {
|
|
|
50
50
|
certifications: {
|
|
51
51
|
carbonCopy: {
|
|
52
52
|
title: "Carbon Copy",
|
|
53
|
-
caption: "Indicates whether the document is defined as \"authentic and original\" by
|
|
53
|
+
caption: "Indicates whether the document is defined as \"authentic and original\" by Twake Workplace, the host of your Twake, as it can claim that it comes directly from a third-party service, without having undergone any modification."
|
|
54
54
|
},
|
|
55
55
|
electronicSafe: {
|
|
56
56
|
title: "Electronic Safe",
|
|
@@ -134,7 +134,7 @@ var fr = {
|
|
|
134
134
|
certifications: {
|
|
135
135
|
carbonCopy: {
|
|
136
136
|
title: "Copie conforme",
|
|
137
|
-
caption: "Le document est d\xE9fini \"authentique et original\" par
|
|
137
|
+
caption: "Le document est d\xE9fini \"authentique et original\" par Twake Workplace, l'h\xE9bergeur de votre Twake, car il peut affirmer qu'il provient directement des services de son \xE9metteur sans avoir subi aucune modification."
|
|
138
138
|
},
|
|
139
139
|
electronicSafe: {
|
|
140
140
|
title: "Coffre-fort \xE9lectronique",
|
package/dist/stylesheet.css
CHANGED
|
@@ -187,7 +187,7 @@
|
|
|
187
187
|
.styles__viewer-nav--previous___2LsMS .styles__viewer-nav-arrow___Z0ykc {
|
|
188
188
|
align-self: flex-start;
|
|
189
189
|
margin-left: 2.5rem;
|
|
190
|
-
transform: rotate(
|
|
190
|
+
transform: rotate(-90deg);
|
|
191
191
|
}
|
|
192
192
|
.styles__viewer-nav--next___3mBHi {
|
|
193
193
|
right: 0;
|
|
@@ -195,6 +195,7 @@
|
|
|
195
195
|
.styles__viewer-nav--next___3mBHi .styles__viewer-nav-arrow___Z0ykc {
|
|
196
196
|
align-self: flex-end;
|
|
197
197
|
margin-right: 2.5rem;
|
|
198
|
+
transform: rotate(90deg);
|
|
198
199
|
}
|
|
199
200
|
@media (max-width: 63.938rem) {
|
|
200
201
|
.styles__viewer-nav___3V03k {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cozy-viewer",
|
|
3
|
-
"version": "23.
|
|
3
|
+
"version": "23.1.0",
|
|
4
4
|
"description": "Cozy-Viewer provides a component to show files in a viewer.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"license": "MIT",
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
"babel-preset-cozy-app": "^2.8.1",
|
|
32
32
|
"cozy-client": "^57.0.0",
|
|
33
33
|
"cozy-device-helper": "2.0.0",
|
|
34
|
-
"cozy-harvest-lib": "^32.
|
|
34
|
+
"cozy-harvest-lib": "^32.4.0",
|
|
35
35
|
"cozy-intent": "^2.30.0",
|
|
36
36
|
"cozy-logger": "^1.17.0",
|
|
37
|
-
"cozy-sharing": "^25.
|
|
37
|
+
"cozy-sharing": "^25.5.0",
|
|
38
38
|
"cozy-ui": "^126.0.0",
|
|
39
39
|
"identity-obj-proxy": "3.0.0",
|
|
40
40
|
"jest": "26.6.3",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"react": ">=16.12.0",
|
|
65
65
|
"react-dom": ">=16.12.0"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "11a9383d0995f744a38fe99cddfd9649bd8c9252"
|
|
68
68
|
}
|
|
@@ -27,13 +27,14 @@
|
|
|
27
27
|
.viewer-nav-arrow
|
|
28
28
|
align-self flex-start
|
|
29
29
|
margin-left 2.5rem
|
|
30
|
-
transform rotate(
|
|
30
|
+
transform rotate(-90deg)
|
|
31
31
|
|
|
32
32
|
&--next
|
|
33
33
|
right 0
|
|
34
34
|
.viewer-nav-arrow
|
|
35
35
|
align-self flex-end
|
|
36
36
|
margin-right 2.5rem
|
|
37
|
+
transform rotate(90deg)
|
|
37
38
|
|
|
38
39
|
+medium-screen()
|
|
39
40
|
display none
|
package/src/locales/en.json
CHANGED
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"certifications": {
|
|
42
42
|
"carbonCopy": {
|
|
43
43
|
"title": "Carbon Copy",
|
|
44
|
-
"caption": "Indicates whether the document is defined as \"authentic and original\" by
|
|
44
|
+
"caption": "Indicates whether the document is defined as \"authentic and original\" by Twake Workplace, the host of your Twake, as it can claim that it comes directly from a third-party service, without having undergone any modification."
|
|
45
45
|
},
|
|
46
46
|
"electronicSafe": {
|
|
47
47
|
"title": "Electronic Safe",
|
package/src/locales/fr.json
CHANGED
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"certifications": {
|
|
42
42
|
"carbonCopy": {
|
|
43
43
|
"title": "Copie conforme",
|
|
44
|
-
"caption": "Le document est défini \"authentique et original\" par
|
|
44
|
+
"caption": "Le document est défini \"authentique et original\" par Twake Workplace, l'hébergeur de votre Twake, car il peut affirmer qu'il provient directement des services de son émetteur sans avoir subi aucune modification."
|
|
45
45
|
},
|
|
46
46
|
"electronicSafe": {
|
|
47
47
|
"title": "Coffre-fort électronique",
|