@integry/sdk 4.5.34 → 4.5.35

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.5.34",
3
+ "version": "4.5.35",
4
4
  "description": "Integry SDK",
5
5
  "main": "dist/umd/index.umd.js",
6
6
  "module": "dist/esm/index.csm.js",
@@ -485,6 +485,7 @@ class FunctionForm extends Component<
485
485
  ? fieldDetails.items.properties || {}
486
486
  : fieldDetails.properties || {},
487
487
  dependsOn: fieldDetails.meta.ui?.depends_on || [],
488
+ isVisible: fieldDetails.meta.ui?.is_visible,
488
489
  }),
489
490
  );
490
491
 
@@ -501,6 +502,10 @@ class FunctionForm extends Component<
501
502
  value: option.value,
502
503
  }));
503
504
 
505
+ if (!field.isVisible) {
506
+ return null;
507
+ }
508
+
504
509
  switch (field.type) {
505
510
  case 'TEXTFIELD':
506
511
  fieldElement = html`