nestiq-component-library 1.1.63 → 1.1.65
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/dist/assets/images/imooly.890e3dd01ea33574.svg +7 -0
- package/dist/index.es.js +18 -22
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +18 -22
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/assets/images/imooly.svg +7 -0
- package/src/components/NewPropertyCard/NewPropertyCard.tsx +18 -24
- package/src/components/PropertyCard/PropertyCard.css +2 -2
|
@@ -13,6 +13,7 @@ import FloorPlanPopup from "../FloorPlanPopup/FloorPlanPopup";
|
|
|
13
13
|
// import MessagePopUp from "../MessagePopup/MessagePopUp";
|
|
14
14
|
import SharePopup from "../SharePopup/SharePopup";
|
|
15
15
|
import { MessageModel } from "../../models/message.model";
|
|
16
|
+
import immooly from "../../assets/images/imooly.svg";
|
|
16
17
|
|
|
17
18
|
interface PopupProps {
|
|
18
19
|
property: {
|
|
@@ -178,14 +179,12 @@ export default function PropertyCard(props: PopupProps) {
|
|
|
178
179
|
</span>
|
|
179
180
|
</div>
|
|
180
181
|
</div>
|
|
181
|
-
<div className="d-flex flex-row gap-
|
|
182
|
-
<
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
</span>
|
|
188
|
-
</div>
|
|
182
|
+
<div className="d-flex flex-row gap-lg-5 col-6 col-lg-8 gap-md-2 ">
|
|
183
|
+
<span className="value col-lg-3 col-md-4 col-sm-6 ">
|
|
184
|
+
{formatPrice(props.property?.evaluation?.askingPrice ?? 0)} €
|
|
185
|
+
<br />
|
|
186
|
+
<span className="details">Kaufpreis</span>
|
|
187
|
+
</span>
|
|
189
188
|
<span className="text-dark value col-lg-4 col-md-4 col-sm-6 text-truncate ">
|
|
190
189
|
{+props.property.rooms}
|
|
191
190
|
<br />
|
|
@@ -227,31 +226,26 @@ export default function PropertyCard(props: PopupProps) {
|
|
|
227
226
|
<span className="layersText ">{"Balkon"}</span>
|
|
228
227
|
</label>
|
|
229
228
|
)}
|
|
230
|
-
</div>
|
|
231
229
|
{props.property.terrace && (
|
|
232
230
|
<label className="thirdLabels justify-content-center align-items-center ">
|
|
233
231
|
<span className="layersText">{"Terrace"}</span>
|
|
234
232
|
</label>
|
|
235
233
|
)}
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
<
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
</div>
|
|
234
|
+
{props.property.guestBathroom && (
|
|
235
|
+
<label className="col-1 thirdLabels justify-content-center align-items-center ">
|
|
236
|
+
<span className="layersText ">{"Gäste-WC"}</span>
|
|
237
|
+
</label>
|
|
238
|
+
)}
|
|
239
|
+
</div>
|
|
243
240
|
</div>
|
|
244
241
|
<div className="Frame-136 d-flex flex-row">
|
|
245
|
-
<div className="d-flex flex-column col-
|
|
246
|
-
<
|
|
247
|
-
<strong>McGrath</strong>{" "}
|
|
248
|
-
</span>
|
|
242
|
+
<div className="d-flex flex-column flex-lg-row col-4 justify-content-between ">
|
|
243
|
+
<img src={immooly} alt="Logo" className="immooly" />
|
|
249
244
|
</div>
|
|
250
|
-
<div className="d-flex flex-column justify-content-between">
|
|
251
|
-
<span>
|
|
252
|
-
|
|
245
|
+
<div className="d-flex flex-column flex-lg-row justify-content-between">
|
|
246
|
+
<span className="d-flex col-5">
|
|
247
|
+
Herr Florian Gauss Immogart UGh
|
|
253
248
|
</span>
|
|
254
|
-
<span>McGrath</span>
|
|
255
249
|
<button
|
|
256
250
|
className="kontactbutton text-light "
|
|
257
251
|
onClick={handleMessagPopUp}
|