nestiq-component-library 1.1.119 → 1.1.121
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/MessagePopup/MessagePopUp.d.ts +4 -0
- package/dist/components/NewPropertyCard/NewPropertyCard.d.ts +0 -4
- package/dist/index.es.js +3 -3
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/MessagePopup/MessagePopUp.tsx +5 -1
- package/src/components/NewPropertyCard/NewPropertyCard.tsx +8 -5
|
@@ -39,10 +39,6 @@ interface PopupProps {
|
|
|
39
39
|
pictures: { contentUrl: string }[];
|
|
40
40
|
};
|
|
41
41
|
baseUrl: string;
|
|
42
|
-
userData: {
|
|
43
|
-
firstname: string;
|
|
44
|
-
lastname: string;
|
|
45
|
-
};
|
|
46
42
|
themesList: any;
|
|
47
43
|
floorPlanUrl: string;
|
|
48
44
|
// onMessagePopupSubmitClick: (formValues: MessageModel) => void;
|
|
@@ -107,6 +103,7 @@ export default function PropertyCard(props: PopupProps) {
|
|
|
107
103
|
console.warn("imageListRef is not set");
|
|
108
104
|
}
|
|
109
105
|
};
|
|
106
|
+
const boosted = "true";
|
|
110
107
|
|
|
111
108
|
return (
|
|
112
109
|
<div className="d-flex flex-row property-card">
|
|
@@ -158,7 +155,13 @@ export default function PropertyCard(props: PopupProps) {
|
|
|
158
155
|
</div>
|
|
159
156
|
</div>
|
|
160
157
|
</div>
|
|
161
|
-
<div
|
|
158
|
+
<div
|
|
159
|
+
className={
|
|
160
|
+
!boosted
|
|
161
|
+
? "listing-compacts d-flex flex-column col-6"
|
|
162
|
+
: "listing-compact d-flex flex-column col-6"
|
|
163
|
+
}
|
|
164
|
+
>
|
|
162
165
|
<div className="d-flex flex-row justify-content-between gap-2">
|
|
163
166
|
<span
|
|
164
167
|
className="propertyTitle align-items-start "
|