@saooti/octopus-sdk 38.0.28 → 38.0.30
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/package.json +1 -1
- package/src/assets/share.scss +15 -0
- package/src/locale/fr.ts +1 -1
- package/src/main.ts +1 -1
package/package.json
CHANGED
package/src/assets/share.scss
CHANGED
|
@@ -71,6 +71,21 @@
|
|
|
71
71
|
border: solid 1px black;
|
|
72
72
|
border-radius: $octopus-borderradius !important;
|
|
73
73
|
}
|
|
74
|
+
.vue-swatches__fallback__input{
|
|
75
|
+
padding-top: 0;
|
|
76
|
+
padding-bottom: 0;
|
|
77
|
+
position:relative;
|
|
78
|
+
cursor: pointer;
|
|
79
|
+
&:after{
|
|
80
|
+
content: "+";
|
|
81
|
+
position: absolute;
|
|
82
|
+
top: 1px;
|
|
83
|
+
left: 50%;
|
|
84
|
+
color: white;
|
|
85
|
+
font-weight: bold;
|
|
86
|
+
font-size: 1rem;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
74
89
|
.podcast-list {
|
|
75
90
|
align-self: stretch;
|
|
76
91
|
flex-grow: 1;
|
package/src/locale/fr.ts
CHANGED
|
@@ -32,7 +32,7 @@ export default {
|
|
|
32
32
|
Emission: "Émission",
|
|
33
33
|
"Emission description": "Description de l'émission",
|
|
34
34
|
"Emission image": "Image de l'émission",
|
|
35
|
-
"Emission name": "
|
|
35
|
+
"Emission name": "Titre de l'émission",
|
|
36
36
|
"No elements found. Consider changing the search query.":
|
|
37
37
|
"Aucun élement ne correspond à votre recherche",
|
|
38
38
|
"Podcast is not visible for listeners":
|
package/src/main.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { setupI18n } from "./i18n";
|
|
|
5
5
|
import router from "@/router/router";
|
|
6
6
|
import { createPinia } from "pinia";
|
|
7
7
|
import paramStore from "@/stores/ParamSdkStore";
|
|
8
|
-
import '../public/css/fonts/
|
|
8
|
+
import '../public/css/fonts/localFonts/style.css';
|
|
9
9
|
const nameEQ = "octopus-language=";
|
|
10
10
|
const ca = document.cookie.split(";");
|
|
11
11
|
let language = "";
|