@integry/sdk 4.6.85 → 4.6.87

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": "@integry/sdk",
3
- "version": "4.6.85",
3
+ "version": "4.6.87",
4
4
  "description": "Integry SDK",
5
5
  "main": "dist/umd/index.umd.js",
6
6
  "module": "dist/esm/index.csm.js",
@@ -206,13 +206,10 @@ const FieldDropdown = (props: FieldMenuProps) => {
206
206
  tagMenuStyle.bottom = `${
207
207
  window.innerHeight - parentRect.top - parentRect.height
208
208
  }px`;
209
- tagMenuStyle.maxHeight = `${Math.min(
210
- estimatedMenuHeight,
211
- parentRect.top - 8,
212
- )}px`;
209
+ tagMenuStyle.maxHeight = `fit-content`;
213
210
  }
214
211
  } else {
215
- tagMenuStyle.maxHeight = `${estimatedMenuHeight}px`;
212
+ tagMenuStyle.maxHeight = `fit-content`;
216
213
  }
217
214
  } else {
218
215
  tagMenuStyle = {
@@ -158,7 +158,7 @@
158
158
 
159
159
  .tagMenuV2 {
160
160
  height: max-content;
161
- max-height: 400px !important;
161
+ max-height: fit-content;
162
162
  max-width: fit-content !important;
163
163
  overflow: hidden;
164
164
  min-width: 470px;
@@ -284,7 +284,7 @@
284
284
  }
285
285
  }
286
286
  .tagsListWrapper {
287
- max-height: 260px; /* Increased max height for better viewing */
287
+ max-height: 75vh; /* Increased max height for better viewing - old was 260px */
288
288
  overflow-y: auto;
289
289
  .valuesList {
290
290
  ul {