nestiq-component-library 1.1.65 → 1.1.67
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 -2
- package/dist/index.es.js +17 -19
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +17 -19
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/MessagePopup/SuccessPopup.tsx +44 -49
- package/src/components/NewPropertyCard/NewPropertyCard.tsx +2 -1
|
@@ -13,59 +13,54 @@ export default function SuccessPopUp(props: PopupProps) {
|
|
|
13
13
|
props.onClick();
|
|
14
14
|
};
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
setShowSuccessPopUp(false);
|
|
18
|
-
};
|
|
16
|
+
|
|
19
17
|
|
|
20
18
|
return (
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
</div>
|
|
39
|
-
|
|
40
|
-
<div className="d-flex flex-column mt-4 mb-4">
|
|
41
|
-
<span className="text-center ms-5 text-wrap">
|
|
42
|
-
Neben vielen weiteren Einstellungen und Aktionen kannst du die Antwort auf deine Nachricht in deinem Control Center einsehen, sobald der Verkäufer darauf reagiert hat.
|
|
43
|
-
</span>
|
|
44
|
-
</div>
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
<div className=" d-flex flex-row align-self-center ">
|
|
49
|
-
|
|
50
|
-
<button
|
|
51
|
-
className="d-flex button_success-left col-sm-5 border-0 rounded-4"
|
|
52
|
-
type="button"
|
|
53
|
-
id="button"
|
|
54
|
-
onClick={handleSendMessage}
|
|
55
|
-
>
|
|
19
|
+
<div>
|
|
20
|
+
<div className="popup-overlay">
|
|
21
|
+
<div className="shareSection-Success d-flex flex-column col-7 ">
|
|
22
|
+
<img
|
|
23
|
+
src={x}
|
|
24
|
+
alt="close"
|
|
25
|
+
className="closeIcon d-flex flex-column align-self-end ms-5 "
|
|
26
|
+
onClick={handleClose}
|
|
27
|
+
/>
|
|
28
|
+
<div className=" d-flex flex-column align-self-center ms-5 ">
|
|
29
|
+
<img src={icon_checkmark} alt="facebook" className=" mb-4" />
|
|
30
|
+
</div>
|
|
31
|
+
<div className="popUpHeader d-flex flex-column col- text-center text-wrap mb-5 align-self-center">
|
|
32
|
+
<span> Herzlichen Glückwunsch! </span>
|
|
33
|
+
<span> Deine Nachricht wurde erfolgreich gesendet. </span>
|
|
34
|
+
</div>
|
|
56
35
|
|
|
57
|
-
|
|
58
|
-
|
|
36
|
+
<div className="d-flex flex-column mt-4 mb-4">
|
|
37
|
+
<span className="text-center ms-5 text-wrap">
|
|
38
|
+
Neben vielen weiteren Einstellungen und Aktionen kannst du die
|
|
39
|
+
Antwort auf deine Nachricht in deinem Control Center einsehen,
|
|
40
|
+
sobald der Verkäufer darauf reagiert hat.
|
|
41
|
+
</span>
|
|
42
|
+
</div>
|
|
59
43
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
44
|
+
<div className=" d-flex flex-row align-self-center ">
|
|
45
|
+
<button
|
|
46
|
+
className="d-flex button_success-left col-sm-5 border-0 rounded-4"
|
|
47
|
+
type="button"
|
|
48
|
+
id="button"
|
|
49
|
+
onClick={handleClose}
|
|
50
|
+
>
|
|
51
|
+
<strong> Zum Control Center</strong>
|
|
52
|
+
</button>
|
|
67
53
|
|
|
68
|
-
|
|
69
|
-
|
|
54
|
+
<button
|
|
55
|
+
className="button_success-right col-sm-3 border-1 ms-3 rounded-4"
|
|
56
|
+
type="button"
|
|
57
|
+
id="button"
|
|
58
|
+
>
|
|
59
|
+
<strong>Abbrechen</strong>
|
|
60
|
+
</button>
|
|
61
|
+
</div>
|
|
62
|
+
</div>
|
|
63
|
+
</div>
|
|
64
|
+
</div>
|
|
70
65
|
);
|
|
71
66
|
}
|
|
@@ -44,8 +44,9 @@ interface PopupProps {
|
|
|
44
44
|
};
|
|
45
45
|
themesList: any;
|
|
46
46
|
floorPlanUrl: string;
|
|
47
|
-
onMessagePopupSubmitClick: (formValues: MessageModel) => void;
|
|
47
|
+
// onMessagePopupSubmitClick: (formValues: MessageModel) => void;
|
|
48
48
|
messageOnClick: () => void;
|
|
49
|
+
onclickSuccess: () => void;
|
|
49
50
|
}
|
|
50
51
|
export default function PropertyCard(props: PopupProps) {
|
|
51
52
|
const [liked, setLiked] = useState(false);
|