nestiq-component-library 1.1.129 → 1.1.131
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/components/NewPropertyCard/NewPropertyCard.d.ts +1 -0
- package/dist/index.es.js +20 -3
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +20 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/NewPropertyCard/NewPropertyCard.tsx +57 -23
- package/src/components/PropertyImageList/PropertyImageList.css +1 -1
|
@@ -38,6 +38,7 @@ interface PopupProps {
|
|
|
38
38
|
};
|
|
39
39
|
pictures: { contentUrl: string }[];
|
|
40
40
|
};
|
|
41
|
+
Impliment: boolean;
|
|
41
42
|
baseUrl: string;
|
|
42
43
|
themesList: any;
|
|
43
44
|
floorPlanUrl: string;
|
|
@@ -267,33 +268,66 @@ export default function PropertyCard(props: PopupProps) {
|
|
|
267
268
|
)}
|
|
268
269
|
</div>
|
|
269
270
|
</div>
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
<div className="d-flex flex-
|
|
280
|
-
<
|
|
271
|
+
{props.Impliment && (
|
|
272
|
+
<div
|
|
273
|
+
className=""
|
|
274
|
+
style={{
|
|
275
|
+
paddingLeft: "32px",
|
|
276
|
+
paddingRight: "32px",
|
|
277
|
+
paddingTop: "32px",
|
|
278
|
+
}}
|
|
279
|
+
>
|
|
280
|
+
<div className="Frame-136 d-flex flex-row">
|
|
281
|
+
<div className="d-flex flex-column flex-lg-row col-4 justify-content-between ">
|
|
282
|
+
<img src={immooly} alt="Logo" className="immooly" />
|
|
283
|
+
</div>
|
|
284
|
+
<div className="d-flex flex-column col-8 justify-content-center ">
|
|
285
|
+
<span className="fw-bold">Herr Florian Gauss</span>
|
|
286
|
+
<span>Immogart UGh</span>
|
|
287
|
+
<button
|
|
288
|
+
className="kontactbutton text-light "
|
|
289
|
+
onClick={handleMessagPopUp}
|
|
290
|
+
role="button"
|
|
291
|
+
>
|
|
292
|
+
<span className="kontact-button-text">
|
|
293
|
+
Kontakt aufnehmen{" "}
|
|
294
|
+
</span>
|
|
295
|
+
</button>
|
|
296
|
+
</div>
|
|
281
297
|
</div>
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
298
|
+
</div>
|
|
299
|
+
)}
|
|
300
|
+
{!props.Impliment && (
|
|
301
|
+
<div
|
|
302
|
+
className=""
|
|
303
|
+
style={{
|
|
304
|
+
paddingLeft: "32px",
|
|
305
|
+
paddingRight: "32px",
|
|
306
|
+
paddingTop: "32px",
|
|
307
|
+
}}
|
|
308
|
+
>
|
|
309
|
+
<div className="Frame-136 d-flex flex-row">
|
|
310
|
+
<div className="d-flex flex-column flex-lg-row col-4 justify-content-between ">
|
|
311
|
+
<img src={immooly} alt="Logo" className="immooly" />
|
|
312
|
+
</div>
|
|
313
|
+
<div className="d-flex flex-column flex-lg-row justify-content-between">
|
|
314
|
+
<div className="d-flex flex-column col-7">
|
|
315
|
+
<span className="">Herr Florian Gauss</span>
|
|
316
|
+
<span>Immogart UGh</span>
|
|
317
|
+
</div>
|
|
318
|
+
<button
|
|
319
|
+
className="kontactbutton text-light "
|
|
320
|
+
onClick={handleMessagPopUp}
|
|
321
|
+
role="button"
|
|
322
|
+
>
|
|
323
|
+
<span className="kontact-button-text">
|
|
324
|
+
Kontakt aufnehmen{" "}
|
|
325
|
+
</span>
|
|
326
|
+
</button>
|
|
286
327
|
</div>
|
|
287
|
-
<button
|
|
288
|
-
className="kontactbutton text-light "
|
|
289
|
-
onClick={handleMessagPopUp}
|
|
290
|
-
role="button"
|
|
291
|
-
>
|
|
292
|
-
<span className="kontact-button-text">Kontakt aufnehmen </span>
|
|
293
|
-
</button>
|
|
294
328
|
</div>
|
|
295
329
|
</div>
|
|
296
|
-
|
|
330
|
+
)}
|
|
297
331
|
</div>
|
|
298
332
|
{floorPlan && (
|
|
299
333
|
<FloorPlanPopup
|