nestiq-component-library 1.1.135 → 1.1.137

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nestiq-component-library",
3
- "version": "1.1.135",
3
+ "version": "1.1.137",
4
4
  "type": "module",
5
5
  "description": "",
6
6
  "main": "dist/index.js",
@@ -38,6 +38,7 @@
38
38
  height: 20px;
39
39
  }
40
40
 
41
+
41
42
  .imagesArray {
42
43
  background-size: "cover" !important;
43
44
  }
@@ -74,3 +75,9 @@
74
75
  width: 58vw;
75
76
  }
76
77
  }
78
+ *{
79
+ -ms-overflow-style: none;
80
+ }
81
+ ::-webkit-scrollbar {
82
+ display: none;
83
+ }
@@ -109,7 +109,10 @@ export default function PropertyImageList(prop: PopupProps) {
109
109
  ref={imageListRef}
110
110
  >
111
111
  {prop.pictureUrls.length > 0 && (
112
- <div className="col-lg-5 h-100 d-flex gap-2 flex-row rounded-3">
112
+ <div
113
+ className="col-lg-5 h-100 d-flex gap-2 flex-row rounded-3"
114
+ style={{ overflow: "hidden" }}
115
+ >
113
116
  {prop.pictureUrls.map((picture, index) => (
114
117
  <div
115
118
  key={index}
@@ -128,7 +131,6 @@ export default function PropertyImageList(prop: PopupProps) {
128
131
  src={picture.url}
129
132
  alt={`Image ${index + 1}`}
130
133
  className="col-12 h-100 rounded-3 object-fit-cover"
131
- style={{ overflow: "hidden" }}
132
134
  />
133
135
  </div>
134
136
  ))}