@saooti/octopus-sdk 38.1.6 → 38.1.8
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/index.html +0 -1
- package/package.json +1 -1
- package/public/css/fonts/localFonts/Comfortaa-Regular.ttf +0 -0
- package/public/css/fonts/localFonts/Cookie-Regular.ttf +0 -0
- package/public/css/fonts/localFonts/Roboto-Regular.ttf +0 -0
- package/public/css/fonts/localFonts/RobotoSlab-Regular.ttf +0 -0
- package/public/css/fonts/localFonts/style.css +56 -0
- package/src/assets/share.scss +15 -0
- package/src/components/display/rubriques/RubriqueChooser.vue +2 -1
- package/src/components/misc/HomeDropdown.vue +1 -1
- package/src/locale/fr.ts +1 -1
- package/src/main.ts +1 -1
- package/src/stores/ParamSdkStore.ts +10 -10
- package/public/css/fonts/montserrat/style.css +0 -28
- /package/public/css/fonts/{montserrat → localFonts}/Montserrat-Black.ttf +0 -0
- /package/public/css/fonts/{montserrat → localFonts}/Montserrat-BlackItalic.ttf +0 -0
- /package/public/css/fonts/{montserrat → localFonts}/Montserrat-Bold.ttf +0 -0
- /package/public/css/fonts/{montserrat → localFonts}/Montserrat-BoldItalic.ttf +0 -0
- /package/public/css/fonts/{montserrat → localFonts}/Montserrat-ExtraBold.ttf +0 -0
- /package/public/css/fonts/{montserrat → localFonts}/Montserrat-ExtraBoldItalic.ttf +0 -0
- /package/public/css/fonts/{montserrat → localFonts}/Montserrat-ExtraLight.ttf +0 -0
- /package/public/css/fonts/{montserrat → localFonts}/Montserrat-ExtraLightItalic.ttf +0 -0
- /package/public/css/fonts/{montserrat → localFonts}/Montserrat-Italic.ttf +0 -0
- /package/public/css/fonts/{montserrat → localFonts}/Montserrat-Light.ttf +0 -0
- /package/public/css/fonts/{montserrat → localFonts}/Montserrat-LightItalic.ttf +0 -0
- /package/public/css/fonts/{montserrat → localFonts}/Montserrat-Medium.ttf +0 -0
- /package/public/css/fonts/{montserrat → localFonts}/Montserrat-MediumItalic.ttf +0 -0
- /package/public/css/fonts/{montserrat → localFonts}/Montserrat-Regular.ttf +0 -0
- /package/public/css/fonts/{montserrat → localFonts}/Montserrat-SemiBold.ttf +0 -0
- /package/public/css/fonts/{montserrat → localFonts}/Montserrat-SemiBoldItalic.ttf +0 -0
- /package/public/css/fonts/{montserrat → localFonts}/Montserrat-Thin.ttf +0 -0
- /package/public/css/fonts/{montserrat → localFonts}/Montserrat-ThinItalic.ttf +0 -0
package/index.html
CHANGED
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
|
7
7
|
<link rel="icon" href="/favicon.ico">
|
|
8
8
|
<link rel="stylesheet" href="/css/fonts/style.css">
|
|
9
|
-
<link rel="stylesheet" href="/css/fonts/montserrat/style.css">
|
|
10
9
|
<title>octopus-library</title>
|
|
11
10
|
</head>
|
|
12
11
|
<body>
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "Montserrat";
|
|
3
|
+
src: local("Montserrat"),
|
|
4
|
+
url("./Montserrat-Regular.ttf") format("truetype");
|
|
5
|
+
font-weight: 400;
|
|
6
|
+
font-style: normal;
|
|
7
|
+
}
|
|
8
|
+
@font-face {
|
|
9
|
+
font-family: "Montserrat";
|
|
10
|
+
src: local("Montserrat"),
|
|
11
|
+
url("./Montserrat-Medium.ttf") format("truetype");
|
|
12
|
+
font-weight: 500;
|
|
13
|
+
font-style: normal;
|
|
14
|
+
}
|
|
15
|
+
@font-face {
|
|
16
|
+
font-family: "Montserrat";
|
|
17
|
+
src: local("Montserrat"),
|
|
18
|
+
url("./Montserrat-SemiBold.ttf") format("truetype");
|
|
19
|
+
font-weight: 600;
|
|
20
|
+
font-style: normal;
|
|
21
|
+
}
|
|
22
|
+
@font-face {
|
|
23
|
+
font-family: "Montserrat";
|
|
24
|
+
src: local("Montserrat"),
|
|
25
|
+
url("./Montserrat-Bold.ttf") format("truetype");
|
|
26
|
+
font-weight: 700;
|
|
27
|
+
font-style: normal;
|
|
28
|
+
}
|
|
29
|
+
@font-face {
|
|
30
|
+
font-family: "Cookie";
|
|
31
|
+
src: local("Cookie"),
|
|
32
|
+
url("./Cookie-Regular.ttf") format("truetype");
|
|
33
|
+
font-weight: 400;
|
|
34
|
+
font-style: normal;
|
|
35
|
+
}
|
|
36
|
+
@font-face {
|
|
37
|
+
font-family: "Comfortaa";
|
|
38
|
+
src: local("Comfortaa"),
|
|
39
|
+
url("./Comfortaa-Regular.ttf") format("truetype");
|
|
40
|
+
font-weight: 400;
|
|
41
|
+
font-style: normal;
|
|
42
|
+
}
|
|
43
|
+
@font-face {
|
|
44
|
+
font-family: "Roboto";
|
|
45
|
+
src: local("Roboto"),
|
|
46
|
+
url("./Roboto-Regular.ttf") format("truetype");
|
|
47
|
+
font-weight: 400;
|
|
48
|
+
font-style: normal;
|
|
49
|
+
}
|
|
50
|
+
@font-face {
|
|
51
|
+
font-family: "Roboto Slab";
|
|
52
|
+
src: local("Roboto Slab"),
|
|
53
|
+
url("./Roboto-Regular.ttf") format("truetype");
|
|
54
|
+
font-weight: 400;
|
|
55
|
+
font-style: normal;
|
|
56
|
+
}
|
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;
|
|
@@ -135,7 +135,8 @@ export default defineComponent({
|
|
|
135
135
|
"update:rubriqueSelected",
|
|
136
136
|
(rubrique as Rubrique).rubriqueId,
|
|
137
137
|
);
|
|
138
|
-
}
|
|
138
|
+
}
|
|
139
|
+
if (undefined !== this.rubriqueSelectedArray) {
|
|
139
140
|
const idsArray: Array<number> = [];
|
|
140
141
|
(rubrique as Array<Rubrique>).forEach((el: Rubrique) => {
|
|
141
142
|
idsArray.push(el.rubriqueId ?? 0);
|
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
|
-
|
|
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 = "";
|
|
@@ -3,16 +3,16 @@ import { Category } from "./class/general/category";
|
|
|
3
3
|
|
|
4
4
|
const state: ParamStore = {
|
|
5
5
|
generalParameters: {
|
|
6
|
-
organisationId:
|
|
7
|
-
authenticated:
|
|
8
|
-
isAdmin:
|
|
9
|
-
isRoleLive:
|
|
10
|
-
isCommments:
|
|
11
|
-
isOrganisation:
|
|
12
|
-
isPlaylist:
|
|
13
|
-
isProduction:
|
|
14
|
-
isContribution:
|
|
15
|
-
isRadio:
|
|
6
|
+
organisationId: "ecbd98d9-79bd-4312-ad5e-fc7c1c4a191c",
|
|
7
|
+
authenticated: true,
|
|
8
|
+
isAdmin: true,
|
|
9
|
+
isRoleLive: true,
|
|
10
|
+
isCommments: true,
|
|
11
|
+
isOrganisation:true,
|
|
12
|
+
isPlaylist: true,
|
|
13
|
+
isProduction: true,
|
|
14
|
+
isContribution: true,
|
|
15
|
+
isRadio: true,
|
|
16
16
|
ApiUri: "https://api.dev2.saooti.org/",
|
|
17
17
|
podcastmaker: false,
|
|
18
18
|
buttonPlus: true,
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
@font-face {
|
|
2
|
-
font-family: "Montserrat";
|
|
3
|
-
src: local("Montserrat"),
|
|
4
|
-
url("/css/fonts/montserrat/Montserrat-Regular.ttf") format("truetype");
|
|
5
|
-
font-weight: 400;
|
|
6
|
-
font-style: normal;
|
|
7
|
-
}
|
|
8
|
-
@font-face {
|
|
9
|
-
font-family: "Montserrat";
|
|
10
|
-
src: local("Montserrat"),
|
|
11
|
-
url("/css/fonts/montserrat/Montserrat-Medium.ttf") format("truetype");
|
|
12
|
-
font-weight: 500;
|
|
13
|
-
font-style: normal;
|
|
14
|
-
}
|
|
15
|
-
@font-face {
|
|
16
|
-
font-family: "Montserrat";
|
|
17
|
-
src: local("Montserrat"),
|
|
18
|
-
url("/css/fonts/montserrat/Montserrat-SemiBold.ttf") format("truetype");
|
|
19
|
-
font-weight: 600;
|
|
20
|
-
font-style: normal;
|
|
21
|
-
}
|
|
22
|
-
@font-face {
|
|
23
|
-
font-family: "Montserrat";
|
|
24
|
-
src: local("Montserrat"),
|
|
25
|
-
url("/css/fonts/montserrat/Montserrat-Bold.ttf") format("truetype");
|
|
26
|
-
font-weight: 700;
|
|
27
|
-
font-style: normal;
|
|
28
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|