@saooti/octopus-sdk 36.0.37 → 36.0.39

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.ts CHANGED
@@ -63,6 +63,7 @@ export const getClassicLoading = () => import("./src/components/form/ClassicLoad
63
63
  export const getClassicSelect = () => import("./src/components/form/ClassicSelect.vue");
64
64
  export const getClassicDatePicker = () => import("./src/components/form/ClassicDatePicker.vue");
65
65
  export const getPaginate = () => import("./src/components/display/list/Paginate.vue");
66
+ export const getPaginateParams = () => import("./src/components/display/list/PaginateParams.vue");
66
67
  export const getListPaginate = () => import("./src/components/display/list/ListPaginate.vue");
67
68
  export const getClassicMultiselect = () => import("./src/components/form/ClassicMultiselect.vue");
68
69
  export const getClassicInputText = () => import("./src/components/form/ClassicInputText.vue");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "36.0.37",
3
+ "version": "36.0.39",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -80,7 +80,7 @@ export default defineComponent({
80
80
  computed: {
81
81
  ...mapState(useFilterStore, ['filterOrgaId']),
82
82
  organisation(): Array<string> {
83
- if(this.organisationId){
83
+ if(this.organisationId.length){
84
84
  return this.organisationId;
85
85
  }
86
86
  return this.filterOrgaId ? [this.filterOrgaId] : [];
@@ -21,7 +21,6 @@
21
21
  v-if="!playerLargeVersion"
22
22
  v-model:notListenTime="notListenTime"
23
23
  :player-error="playerError"
24
- :hls-ready="hlsReady"
25
24
  :comments="comments"
26
25
  :display-alert-bar="displayAlertBar"
27
26
  :percent-live-progress="percentLiveProgress"
@@ -34,7 +33,6 @@
34
33
  v-else
35
34
  v-model:notListenTime="notListenTime"
36
35
  :player-error="playerError"
37
- :hls-ready="hlsReady"
38
36
  :comments="comments"
39
37
  :display-alert-bar="displayAlertBar"
40
38
  :percent-live-progress="percentLiveProgress"
@@ -75,7 +73,6 @@ export default defineComponent({
75
73
  percentLiveProgress: 0 as number,
76
74
  durationLivePosition: 0 as number,
77
75
  displayAlertBar: false as boolean,
78
- hlsReady: false as boolean,
79
76
  comments: [] as Array<CommentPodcast>,
80
77
  audioUrlToPlay: "" as string
81
78
  };
@@ -53,7 +53,6 @@
53
53
  </div>
54
54
  <PlayerProgressBar
55
55
  v-if="!radioUrl"
56
- :hls-ready="hlsReady"
57
56
  :show-timeline="showTimeline"
58
57
  :comments="comments"
59
58
  :display-alert-bar="displayAlertBar"
@@ -102,7 +101,6 @@ export default defineComponent({
102
101
  props: {
103
102
  playerError: { default: false, type: Boolean},
104
103
  notListenTime: { default: 0 , type: Number},
105
- hlsReady: { default: false , type: Boolean},
106
104
  comments: { default: ()=>[] , type: Array as ()=> Array<CommentPodcast> },
107
105
  displayAlertBar: { default: false , type: Boolean},
108
106
  percentLiveProgress: { default: 0 , type: Number},
@@ -34,7 +34,6 @@
34
34
  <PlayerProgressBar
35
35
  ref="progressbar"
36
36
  class-progress="large"
37
- :hls-ready="hlsReady"
38
37
  :show-timeline="showTimeline"
39
38
  :comments="comments"
40
39
  :display-alert-bar="displayAlertBar"
@@ -111,7 +110,6 @@ export default defineComponent({
111
110
  props: {
112
111
  playerError: { default: false, type: Boolean},
113
112
  notListenTime: { default: 0 , type: Number},
114
- hlsReady: { default: false , type: Boolean},
115
113
  comments: { default: ()=>[] , type: Array as ()=> Array<CommentPodcast> },
116
114
  displayAlertBar: { default: false , type: Boolean},
117
115
  percentLiveProgress: { default: 0 , type: Number},