nestiq-component-library 1.1.103 → 1.1.104
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.
|
@@ -18,6 +18,7 @@ import immooly from "../../assets/images/imooly.svg";
|
|
|
18
18
|
interface PopupProps {
|
|
19
19
|
property: {
|
|
20
20
|
city: string;
|
|
21
|
+
propertyArea: string;
|
|
21
22
|
historicalProtection: boolean;
|
|
22
23
|
basement: boolean;
|
|
23
24
|
balcony: boolean;
|
|
@@ -207,7 +208,7 @@ export default function PropertyCard(props: PopupProps) {
|
|
|
207
208
|
</div>
|
|
208
209
|
</div>
|
|
209
210
|
<div
|
|
210
|
-
className="d-flex flex-row gap-
|
|
211
|
+
className="d-flex flex-row gap-2 col-6 col-lg-8 justify-content-between "
|
|
211
212
|
style={{ paddingLeft: "32px", paddingRight: "32px" }}
|
|
212
213
|
>
|
|
213
214
|
<span className="priceValue col-lg-4 col-md-4 col-sm-6 ">
|
|
@@ -215,26 +216,26 @@ export default function PropertyCard(props: PopupProps) {
|
|
|
215
216
|
<br />
|
|
216
217
|
<span className="details">Kaufpreis</span>
|
|
217
218
|
</span>
|
|
218
|
-
<span className="text-dark value col-lg-
|
|
219
|
-
{
|
|
219
|
+
<span className="text-dark value col-lg-5 col-md-5 col-sm-7 ">
|
|
220
|
+
{props.property.constructedArea} m²
|
|
220
221
|
<br />
|
|
221
222
|
<span className="details">
|
|
222
|
-
|
|
223
|
-
<span>Zimmer</span>
|
|
223
|
+
<span>Wohnfläche</span>
|
|
224
224
|
</span>
|
|
225
225
|
</span>
|
|
226
|
-
<span className="text-dark value col-lg-
|
|
227
|
-
{+props.property
|
|
226
|
+
<span className="text-dark value col-lg-4 col-md-3 col-sm-6 text-truncate ">
|
|
227
|
+
{+props.property?.rooms}
|
|
228
228
|
<br />
|
|
229
229
|
<span className="details">
|
|
230
|
-
|
|
230
|
+
{" "}
|
|
231
|
+
<span>Zimmer</span>
|
|
231
232
|
</span>
|
|
232
233
|
</span>
|
|
233
|
-
<span className="text-dark value col-lg-
|
|
234
|
-
{props.property.
|
|
234
|
+
<span className="text-dark value col-lg-3 col-md-3 col-sm-4 text-truncate ">
|
|
235
|
+
{+props.property.propertyArea}
|
|
235
236
|
<br />
|
|
236
237
|
<span className="details">
|
|
237
|
-
<span>
|
|
238
|
+
<span>Grundstück</span>
|
|
238
239
|
</span>
|
|
239
240
|
</span>
|
|
240
241
|
</div>
|