@wise/dynamic-flow-client 3.15.1 → 3.15.2

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/build/main.js CHANGED
@@ -7870,7 +7870,7 @@ var createObjectComponent = (objectProps) => {
7870
7870
  );
7871
7871
  },
7872
7872
  validate() {
7873
- return validateComponents(this.getChildren());
7873
+ return hidden ? true : validateComponents(this.getChildren());
7874
7874
  }
7875
7875
  };
7876
7876
  };
@@ -9416,7 +9416,7 @@ var createTupleComponent = (tupleProps) => {
9416
9416
  return this.components.map((child) => child.getLocalValue());
9417
9417
  },
9418
9418
  validate() {
9419
- return validateComponents(this.getChildren());
9419
+ return hidden ? true : validateComponents(this.getChildren());
9420
9420
  }
9421
9421
  };
9422
9422
  };