project-booster-vue 9.60.0 → 9.61.0
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
|
@@ -106,6 +106,14 @@
|
|
|
106
106
|
</div>
|
|
107
107
|
|
|
108
108
|
<ul class="pb-project-attributes__works">
|
|
109
|
+
<template v-for="[attributeId, attribute] of displayedProjectAttributes" :key="attributeId">
|
|
110
|
+
<template v-if="attributeId === 'bathroomStyle' && isArray(attribute.value)">
|
|
111
|
+
<li v-for="value in JSON.parse(attribute.value)">Style: {{ bathroomStyle[value] }}</li>
|
|
112
|
+
</template>
|
|
113
|
+
<template v-else-if="attributeId === 'bathroomStyle'">
|
|
114
|
+
<li>Style: {{ bathroomStyle[attribute.value] }}</li>
|
|
115
|
+
</template>
|
|
116
|
+
</template>
|
|
109
117
|
<template v-for="[attributeId, attribute] of displayedProjectAttributes" :key="attributeId">
|
|
110
118
|
<template v-if="attributeId === 'works' && isArray(attribute.value)">
|
|
111
119
|
<li v-for="value in JSON.parse(attribute.value)">
|
|
@@ -143,6 +151,14 @@ export default defineComponent({
|
|
|
143
151
|
COVERING_WALL: 'Revêtement mûr',
|
|
144
152
|
REPLACE_BATHTUB_TO_SHOWER: 'Remplacer une baignoire par une douche',
|
|
145
153
|
},
|
|
154
|
+
bathroomStyle: {
|
|
155
|
+
NATURAL: 'Naturel',
|
|
156
|
+
INDUSTRIAL: 'Industriel',
|
|
157
|
+
GLAMOR_CHIC: 'Glamour',
|
|
158
|
+
DESIGN: 'Design',
|
|
159
|
+
CHARME: 'Charme',
|
|
160
|
+
NEO: 'Néo-classique',
|
|
161
|
+
},
|
|
146
162
|
};
|
|
147
163
|
},
|
|
148
164
|
|