@saooti/octopus-sdk 35.2.10 → 35.2.12

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.2.10",
3
+ "version": "35.2.12",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -16,6 +16,7 @@
16
16
  "test": "jest --coverage"
17
17
  },
18
18
  "dependencies": {
19
+ "@popperjs/core": "^2.11.6",
19
20
  "@saooti/octopus-api": "^0.34.3",
20
21
  "@vue/cli": "^5.0.8",
21
22
  "@vue/compat": "^3.2.45",
@@ -8,7 +8,7 @@
8
8
  <template #body>
9
9
  <div class="d-flex justify-content-between">
10
10
  <!-- eslint-disable vue/no-v-html -->
11
- <div v-html="newsletterHtml" />
11
+ <div v-html="newsletterHtml"/>
12
12
  <!-- eslint-enable -->
13
13
  <div class="d-flex flex-column flex-grow-1 ms-4">
14
14
  <h4 class="mb-3">
@@ -71,6 +71,10 @@
71
71
  />
72
72
  </div>
73
73
  </div>
74
+ <Snackbar
75
+ ref="snackbar"
76
+ position="bottom-left"
77
+ />
74
78
  </template>
75
79
  <template #footer>
76
80
  <button
@@ -81,10 +85,6 @@
81
85
  </button>
82
86
  </template>
83
87
  </ClassicModal>
84
- <Snackbar
85
- ref="snackbar"
86
- position="bottom-left"
87
- />
88
88
  </template>
89
89
 
90
90
  <script lang="ts">
@@ -259,7 +259,7 @@ export default defineComponent({
259
259
  ${this.title}
260
260
  </td>
261
261
  </tr>
262
- ${this.emissionName},${this.description}`
262
+ ${this.emissionName}${this.description}`
263
263
  ];
264
264
  html.push(
265
265
  `</table>
@@ -318,17 +318,20 @@ export default defineComponent({
318
318
 
319
319
  <style lang="scss">
320
320
  .octopus-app{
321
- #newsletter-modal {
322
- textarea {
323
- border: 2px solid #eee;
324
- height: 200px;
325
- padding: 1em;
326
- border-radius: 1em;
321
+ #newsletter-modal{
322
+ textarea {
323
+ border: 2px solid #eee;
324
+ height: 200px;
325
+ padding: 1em;
326
+ border-radius: 1em;
327
+ }
328
+ .octopus-modal-dialog{
329
+ max-width: 80%;
330
+ max-height: calc(100% - 3.5rem) !important;
331
+ }
332
+ .octopus-modal-content{
333
+ max-height: calc(100vh - 100px) !important;
334
+ }
327
335
  }
328
-
329
- .modal-dialog {
330
- max-width: 60%;
331
- }
332
- }
333
336
  }
334
337
  </style>