@saooti/octopus-sdk 30.0.14 → 30.0.15

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
@@ -511,4 +511,5 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
511
511
  * 30.0.11 Version pour release
512
512
  * 30.0.12 Export ClasicLoading
513
513
  * 30.0.13 Améliorations css
514
- * 30.0.14 Améliorations css
514
+ * 30.0.14 Améliorations css
515
+ * 30.0.15 Améliorations css
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "30.0.14",
3
+ "version": "30.0.15",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -255,6 +255,9 @@
255
255
  .accordion-button {
256
256
  padding: 0.5rem;
257
257
  }
258
+ .accordion-item:not(:first-of-type) {
259
+ border-top: 0.1rem solid rgba(0, 0, 0, 0.125);
260
+ }
258
261
  .breadcrumb{
259
262
  padding: 1rem;
260
263
  align-items: center;
@@ -166,7 +166,6 @@
166
166
  line-height: 28px;
167
167
  border: none;
168
168
  border-radius: 5px;
169
- background: #fff;
170
169
  padding: 0 0 0 5px;
171
170
  width: 100%;
172
171
  transition: border 0.1s ease;
@@ -14,6 +14,7 @@
14
14
  :rss-emission="rssEmission"
15
15
  :ftp-emission="ftpEmission"
16
16
  :is-ready="isReady"
17
+ @isUpdated="getEmissionDetails"
17
18
  />
18
19
  <div class="module-box">
19
20
  <h2 v-if="!isOuestFrance">
@@ -215,8 +216,6 @@ export default defineComponent({
215
216
  },
216
217
  watch: {
217
218
  emissionId(): void {
218
- this.loaded = false;
219
- this.error = false;
220
219
  this.getEmissionDetails();
221
220
  },
222
221
  },
@@ -226,6 +225,8 @@ export default defineComponent({
226
225
  },
227
226
  methods: {
228
227
  async getEmissionDetails(): Promise<void> {
228
+ this.loaded = false;
229
+ this.error = false;
229
230
  try {
230
231
  const data: Emission = await octopusApi.fetchEmission(this.emissionId);
231
232
  this.emission = data;