nestiq-component-library 1.1.118 → 1.1.120
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/index.es.js +4 -4
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +4 -4
- 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 +4 -5
|
@@ -124,7 +124,7 @@ export default function PropertyCard(props: PopupProps) {
|
|
|
124
124
|
<div className="d-flex flex-row col-12 justify-content-between ">
|
|
125
125
|
<div
|
|
126
126
|
className="d-felx align-self-start justify-items-start ms-4 "
|
|
127
|
-
style={{
|
|
127
|
+
style={{ left: "16px" }}
|
|
128
128
|
onClick={() => handleArrowClickInMainImage("left")}
|
|
129
129
|
role="button"
|
|
130
130
|
>
|
|
@@ -136,10 +136,7 @@ export default function PropertyCard(props: PopupProps) {
|
|
|
136
136
|
onClick={() => handleArrowClickInMainImage("right")}
|
|
137
137
|
role="button"
|
|
138
138
|
>
|
|
139
|
-
<img
|
|
140
|
-
src={arrowRight}
|
|
141
|
-
style={{ right: "16px" }}
|
|
142
|
-
/>
|
|
139
|
+
<img src={arrowRight} style={{ right: "16px" }} />
|
|
143
140
|
</div>
|
|
144
141
|
</div>
|
|
145
142
|
<div
|
|
@@ -188,12 +185,14 @@ export default function PropertyCard(props: PopupProps) {
|
|
|
188
185
|
className=" "
|
|
189
186
|
onClick={handleSharePopUp}
|
|
190
187
|
style={{ maxHeight: "24px", maxWidth: "24px" }}
|
|
188
|
+
role="button"
|
|
191
189
|
/>
|
|
192
190
|
<img
|
|
193
191
|
src={moreIcon}
|
|
194
192
|
alt="Location Icon"
|
|
195
193
|
className=""
|
|
196
194
|
style={{ maxHeight: "24px", maxWidth: "24px" }}
|
|
195
|
+
role="button"
|
|
197
196
|
/>
|
|
198
197
|
</div>
|
|
199
198
|
</div>
|