@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
|
@@ -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(){
|