@saooti/octopus-sdk 30.0.32 → 30.0.33

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/README.md CHANGED
@@ -529,4 +529,5 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
529
529
  * 30.0.29 Pour podcastmaker sudPresse
530
530
  * 30.0.30 Problème fetch participants
531
531
  * 30.0.31 Amélioration interface
532
- * 30.0.32 Amélioration interface
532
+ * 30.0.32 Amélioration interface
533
+ * 30.0.33 Pb categories list
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "30.0.32",
3
+ "version": "30.0.33",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -54,6 +54,7 @@
54
54
  <CategoryList
55
55
  v-if="!categoryFilter && !rubriquageFilter.length"
56
56
  :is-filter="true"
57
+ :is-display="isDisplay"
57
58
  @categoriesLength="checkIfCategories"
58
59
  />
59
60
  <RubriqueList
@@ -52,6 +52,7 @@ export default defineComponent({
52
52
 
53
53
  props: {
54
54
  isFilter: { default: false, type: Boolean },
55
+ isDisplay: { default: false, type: Boolean },
55
56
  },
56
57
  emits:['categoriesLength'],
57
58
 
@@ -88,6 +89,11 @@ export default defineComponent({
88
89
  },
89
90
  },
90
91
  watch: {
92
+ isDisplay():void{
93
+ this.$nextTick(() => {
94
+ this.resizeWindow();
95
+ });
96
+ },
91
97
  categories: {
92
98
  deep: true,
93
99
  handler(){