@integry/sdk 4.6.18 → 4.6.20

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.18",
3
+ "version": "4.6.20",
4
4
  "description": "Integry SDK",
5
5
  "main": "dist/umd/index.umd.js",
6
6
  "module": "dist/esm/index.csm.js",
@@ -131,7 +131,7 @@ const FieldDropdown = (props: FieldMenuProps) => {
131
131
  : 'block',
132
132
  maxWidth: parentContainer
133
133
  ? `${
134
- parentContainer.getBoundingClientRect().width - (tagsTree ? 25 : 0)
134
+ parentContainer.getBoundingClientRect().width - (tagsTree ? 0 : 0)
135
135
  }px`
136
136
  : '342px',
137
137
  } as any;
@@ -228,7 +228,7 @@
228
228
  }
229
229
  }
230
230
  .tagsListWrapper {
231
- max-height: 300px;
231
+ max-height: 170px;
232
232
  overflow-y: scroll;
233
233
  }
234
234
  }
@@ -296,7 +296,7 @@ export type RenderFlowStepOptions = {
296
296
  tagsComponent?: any;
297
297
  onFieldChangeCallback: (fieldId: string, value: any) => void;
298
298
  tagsTree: any;
299
- showMappingMenu: boolean;
299
+ showMappingMenu?: boolean;
300
300
  };
301
301
  export type ShowFunctionOptions = {
302
302
  params?: Record<string, any>;