@saooti/octopus-sdk 30.0.60 → 30.0.61

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
@@ -556,4 +556,5 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
556
556
  * 30.0.57 podcastmaker Le soir améliorations
557
557
  * 30.0.58 Prefix css dans component par octopus-app
558
558
  * 30.0.59 Pb productorChooser
559
- * 30.0.60 PlaylistPodcastInlineList
559
+ * 30.0.60 PlaylistPodcastInlineList
560
+ * 30.0.61 Page podcast -> init recherche
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "30.0.60",
3
+ "version": "30.0.61",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -90,6 +90,7 @@ export default defineComponent({
90
90
  props: {
91
91
  productor: { default: undefined, type: String},
92
92
  isEducation: { default: false, type: Boolean},
93
+ searchInit: { default: "", type: String}
93
94
  },
94
95
 
95
96
  data() {
@@ -154,6 +155,9 @@ export default defineComponent({
154
155
  },
155
156
 
156
157
  created() {
158
+ if(this.searchInit){
159
+ this.searchPattern = this.searchInit;
160
+ }
157
161
  if (this.productor) {
158
162
  this.organisationId = this.productor;
159
163
  } else if (this.$store.state.filter.organisationId) {