project-booster-vue 8.113.4 → 8.115.1

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": "project-booster-vue",
3
- "version": "8.113.4",
3
+ "version": "8.115.1",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "test:unit": "vue-cli-service test:unit --forceExit --detectOpenHandles",
@@ -99,6 +99,12 @@ export default {
99
99
  image: 'https://storage.googleapis.com/project-booster-media/insulation/logo-insulation-estimator.png',
100
100
  href: '/estimation-budget-cout-isolation.html',
101
101
  },
102
+ {
103
+ title: 'Estimer le coût de votre sol',
104
+ text: 'Carrelage, sol stratifié, sol souple ...',
105
+ image: 'https://storage.googleapis.com/project-booster-media/floor/illu-floor-cover.png',
106
+ href: '/projets/estimations/estimation-budget-cout-revetement-de-sol.html',
107
+ },
102
108
  ],
103
109
  };
104
110
  },
@@ -375,7 +375,7 @@ export default {
375
375
  },
376
376
 
377
377
  reset() {
378
- this.mediaName = this.media.title ? this.media.title : '';
378
+ this.mediaName = this.media && this.media.title ? this.media.title : '';
379
379
  this.isEditingName = false;
380
380
  this.isDisplayingInfo = false;
381
381
  this.isSharing = false;
@@ -65,7 +65,6 @@
65
65
  </transition>
66
66
  </m-flex>
67
67
  <pb-media-detail
68
- v-if="currentMedia"
69
68
  :namespace="namespace"
70
69
  :media="currentMedia"
71
70
  @click-on-delete="handleClickOnDelete"
@@ -159,6 +159,10 @@ export default {
159
159
 
160
160
  .mc-toggle {
161
161
  @include set-font-face('regular');
162
+
163
+ &__label {
164
+ padding-left: $mu400 !important;
165
+ }
162
166
  }
163
167
  </style>
164
168
 
@@ -4,7 +4,7 @@
4
4
  :class="`pb-restitution pb-restitution--${componentTheme}`"
5
5
  align-items="center"
6
6
  direction="column"
7
- :style="`min-height: ${exitOptions ? 'auto' : minHeight};`"
7
+ :style="`min-height: ${displayRestitutionExit ? 'auto' : minHeight};`"
8
8
  ref="pbRestitution"
9
9
  >
10
10
  <m-link
@@ -53,7 +53,7 @@
53
53
  rel="noopener noreferrer"
54
54
  :label="call.label"
55
55
  :left-icon="call.icon"
56
- :theme="theme === 'light' ? 'primary' : 'light'"
56
+ :theme="call.theme ? call.theme : theme === 'light' ? 'primary' : 'light'"
57
57
  @click="callAction(call)"
58
58
  />
59
59
  </m-flex>