@panoramax/web-viewer 3.2.2-develop-e0cee138 → 3.2.2-develop-ef6bf81f
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 +1 -0
- package/build/index.css +1 -1
- package/build/index.css.map +1 -1
- package/build/index.js +2 -2
- package/build/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Loader.css +19 -1
- package/src/components/Loader.js +9 -1
- package/src/translations/en.json +1 -1
- package/src/translations/es.json +1 -1
- package/src/translations/fr.json +1 -1
- package/src/translations/it.json +1 -1
package/package.json
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
display: flex;
|
|
23
23
|
flex-direction: column;
|
|
24
24
|
justify-content: center;
|
|
25
|
-
gap:
|
|
25
|
+
gap: 20px;
|
|
26
26
|
align-items: center;
|
|
27
27
|
background: #37474F;
|
|
28
28
|
z-index: 9000;
|
|
@@ -53,4 +53,22 @@
|
|
|
53
53
|
@keyframes rotating {
|
|
54
54
|
from { transform: rotate(0deg); }
|
|
55
55
|
to { transform: rotate(360deg); }
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/* Call to action button */
|
|
59
|
+
.gvs .gvs-loader .gvs-loader-cta {
|
|
60
|
+
border: none;
|
|
61
|
+
border-radius: 7px;
|
|
62
|
+
font-weight: 500;
|
|
63
|
+
font-size: 1.0em;
|
|
64
|
+
color: white;
|
|
65
|
+
background-color: #EF6C00;
|
|
66
|
+
cursor: pointer;
|
|
67
|
+
margin: 10px;
|
|
68
|
+
padding: 5px 30px;
|
|
69
|
+
box-shadow: 2px 2px 2px rgba(0,0,0,0.3);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.gvs .gvs-loader .gvs-loader-cta:hover {
|
|
73
|
+
background-color: #F57C00;
|
|
56
74
|
}
|
package/src/components/Loader.js
CHANGED
|
@@ -83,7 +83,15 @@ export default class Loader {
|
|
|
83
83
|
this.container.children[0].src = LogoDead;
|
|
84
84
|
this.container.children[0].style.width = "200px";
|
|
85
85
|
this.container.children[0].style.animation = "unset";
|
|
86
|
-
|
|
86
|
+
|
|
87
|
+
let errHtml;
|
|
88
|
+
if(next) {
|
|
89
|
+
errHtml = `<button class="gvs-loader-cta">${this._parent._t.gvs.error_click}</button>`;
|
|
90
|
+
}
|
|
91
|
+
else {
|
|
92
|
+
errHtml = `<small>${this._parent._t.gvs.error_retry}</small>`;
|
|
93
|
+
}
|
|
94
|
+
|
|
87
95
|
if(errMeaningful) { errHtml = errMeaningful + "<br />" + errHtml; }
|
|
88
96
|
this.container.children[1].innerHTML = `${this._parent._t.gvs.error}<br />${errHtml}`;
|
|
89
97
|
if(next) {
|
package/src/translations/en.json
CHANGED
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"copy": "Copy",
|
|
43
43
|
"copied": "Copied",
|
|
44
44
|
"error": "We have a problem…",
|
|
45
|
-
"error_click": "
|
|
45
|
+
"error_click": "Continue",
|
|
46
46
|
"error_retry": "Please retry later",
|
|
47
47
|
"sequence_next": "Next picture in sequence",
|
|
48
48
|
"sequence_play": "Play along this sequence",
|
package/src/translations/es.json
CHANGED
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
"sequence_play": "Reproducir esta secuencia",
|
|
96
96
|
"sequence_pause": "Pausar la secuencia",
|
|
97
97
|
"sequence_prev": "Imagen anterior de la secuencia",
|
|
98
|
-
"error_click": "
|
|
98
|
+
"error_click": "Continuar",
|
|
99
99
|
"error_retry": "Por favor, inténtalo más tarde",
|
|
100
100
|
"error_psv": "El visor de fotos esféricas no se carga correctamente",
|
|
101
101
|
"error_pic": "No se encuentra la imagen que queríamos",
|
package/src/translations/fr.json
CHANGED
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"copy": "Copier",
|
|
43
43
|
"copied": "Copié",
|
|
44
44
|
"error": "On a un problème…",
|
|
45
|
-
"error_click": "
|
|
45
|
+
"error_click": "Continuer",
|
|
46
46
|
"error_retry": "Merci de réessayer plus tard",
|
|
47
47
|
"sequence_next": "Photo suivante dans la séquence",
|
|
48
48
|
"sequence_play": "Parcourir cette séquence",
|
package/src/translations/it.json
CHANGED
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"copy": "Copia",
|
|
27
27
|
"copied": "Copiato",
|
|
28
28
|
"error": "Abbiamo un problema…",
|
|
29
|
-
"error_click": "
|
|
29
|
+
"error_click": "Continuare",
|
|
30
30
|
"error_retry": "Riprovare più tardi",
|
|
31
31
|
"sequence_play": "Riproduci questa sequenza",
|
|
32
32
|
"sequence_pause": "Pausa la sequenza",
|