@saooti/octopus-sdk 35.0.3 → 35.1.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "35.0.3",
3
+ "version": "35.1.4",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -18,9 +18,9 @@
18
18
  "dependencies": {
19
19
  "@saooti/octopus-api": "^0.34.2",
20
20
  "@vue/cli": "^5.0.8",
21
- "@vue/compat": "^3.2.45",
21
+ "@vue/compat": "^3.2.47",
22
22
  "autoprefixer": "^10.4.13",
23
- "axios": "^1.3.0",
23
+ "axios": "^1.3.1",
24
24
  "dayjs": "^1.11.7",
25
25
  "express": "^4.18.2",
26
26
  "hls.js": "^1.3.2",
@@ -32,8 +32,8 @@
32
32
  "sonarqube-scanner": "^3.0.0",
33
33
  "swiper": "^8.4.7",
34
34
  "v-calendar": "^3.0.0-alpha.8",
35
- "vite": "^3.2.5",
36
- "vue": "^3.2.45",
35
+ "vite": "^4.1.1",
36
+ "vue": "^3.2.47",
37
37
  "vue-i18n": "^9.2.2",
38
38
  "vue-multiselect": "^3.0.0-alpha.2",
39
39
  "vue-recaptcha": "^2.0.3",
@@ -46,8 +46,8 @@
46
46
  "@types/jquery": "^3.5.16",
47
47
  "@typescript-eslint/eslint-plugin": "^5.50.0",
48
48
  "@typescript-eslint/parser": "^5.50.0",
49
- "@vitejs/plugin-vue": "^3.2.0",
50
- "@vue/compiler-sfc": "^3.2.45",
49
+ "@vitejs/plugin-vue": "^4.0.0",
50
+ "@vue/compiler-sfc": "^3.2.47",
51
51
  "@vue/eslint-config-typescript": "^8.0.0",
52
52
  "eslint": "^8.33.0",
53
53
  "eslint-plugin-vue": "^7.17.0",
@@ -16,7 +16,7 @@
16
16
  cursor: pointer;
17
17
  margin-right: 5px;
18
18
  }
19
- .form-input {
19
+ .form-input{
20
20
  appearance: none;
21
21
  background: #fff;
22
22
  background-image: none;
@@ -31,5 +31,8 @@
31
31
  padding: 0.25rem 0.4rem;
32
32
  position: relative;
33
33
  width: 100%;
34
+ &:disabled, &.disabled{
35
+ background: #eee;
36
+ }
34
37
  }
35
38
  }
@@ -110,7 +110,7 @@
110
110
  />
111
111
  <div v-if="editRight && !isPodcastmaker">
112
112
  <div
113
- v-if="podcast.annotations && podcast.annotations.RSS"
113
+ v-if="podcast.annotations && 'RSS'===podcast.annotations.SOURCE_KIND"
114
114
  class="me-5"
115
115
  >
116
116
  {{ $t('From RSS') }}
@@ -185,7 +185,7 @@ export default defineComponent({
185
185
  },
186
186
  handleAnnotations(){
187
187
  if (!this.emission || !this.emission.annotations) return;
188
- this.rssEmission = this.emission.annotations.RSS? true: false;
188
+ this.rssEmission = 'RSS'===this.emission.annotations.SOURCE_KIND? true: false;
189
189
  this.ftpEmission = this.emission.annotations.FTP? true: false;
190
190
  if (this.emission.annotations.exclusive) {
191
191
  this.exclusive ='true' === this.emission.annotations.exclusive;