@saooti/octopus-sdk 41.12.0 → 41.12.1-beta

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 CHANGED
@@ -1,5 +1,16 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 41.12.1 (En cours)
4
+
5
+ **Fixes**
6
+
7
+ - Correction d'une anomalie de chargement du style de la modale utilisée par
8
+ `ClassicNotifications`
9
+
10
+ **Misc**
11
+
12
+ - Suppression de la marge entre le titre et le contenu pour `PresentationLayout`
13
+
3
14
  ## 41.12.0 (13/07/2026)
4
15
 
5
16
  **Features**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "41.12.0",
3
+ "version": "41.12.1-beta",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -30,7 +30,7 @@
30
30
  <router-link
31
31
  v-if="href"
32
32
  :to="href"
33
- class="btn btn-primary align-self-center w-fit-content m-4 icon-available"
33
+ class="btn btn-primary align-self-center w-fit-content m-4"
34
34
  >
35
35
  {{ buttonText }}
36
36
  </router-link>
@@ -3,10 +3,7 @@
3
3
  -->
4
4
  <template>
5
5
  <div class="d-flex flex-column p-3">
6
- <h2
7
- v-if="title"
8
- class="mb-3"
9
- >
6
+ <h2 v-if="title">
10
7
  {{ title }}
11
8
  </h2>
12
9
 
@@ -14,7 +14,10 @@
14
14
  <script setup lang="ts">
15
15
  import { storeToRefs } from 'pinia';
16
16
  import { useNotificationStore } from '../../stores/NotificationStore';
17
- import MessageModal from './modal/MessageModal.vue';
17
+
18
+ const MessageModal = defineAsyncComponent(() => import('./modal/MessageModal.vue'));
19
+
20
+ import { defineAsyncComponent } from 'vue';
18
21
 
19
22
  const {
20
23
  clearNotification
@@ -1,6 +1,5 @@
1
1
  <template>
2
2
  <section v-if="isInit" class="page-box">
3
- <!-- TODO à intégrer dans frontoffice -->
4
3
  <router-link
5
4
  v-if="isRolePlaylists && !isPodcastmaker"
6
5
  to="/main/priv/edit/playlist"
@@ -227,7 +227,8 @@ export const useAuthStore = defineStore("AuthStore", {
227
227
  });
228
228
  this.authUpdateOrganisation(activeOrganisation);
229
229
  this.fetchProfileAsynchrone();
230
- } catch {
230
+ } catch(error) {
231
+ console.error(error);
231
232
  if (this.authReload > 5) {
232
233
  return;
233
234
  }