@saooti/octopus-sdk 36.0.26 → 36.0.27

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": "36.0.26",
3
+ "version": "36.0.27",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -19,6 +19,7 @@
19
19
  "@popperjs/core": "^2.11.7",
20
20
  "@saooti/octopus-api": "^0.34.3",
21
21
  "@tiptap/extension-link": "^2.0.3",
22
+ "@tiptap/pm": "^2.0.3",
22
23
  "@tiptap/extension-underline": "^2.0.3",
23
24
  "@tiptap/starter-kit": "^2.0.3",
24
25
  "@tiptap/vue-3": "^2.0.3",
@@ -204,14 +204,13 @@ export default defineComponent({
204
204
  iFrameHeight(): string {
205
205
  switch (this.iFrameModel) {
206
206
  case 'large':
207
- if (this.podcast) return '200px';
207
+ if (this.podcast) return '210px';
208
208
  return '350px';
209
209
  case 'emissionLarge':
210
210
  case 'largeSuggestion':
211
211
  return '350px';
212
212
  case 'emission':return '520px';
213
213
  default:
214
- if (this.podcast) return '500px';
215
214
  return '530px';
216
215
  }
217
216
  },