@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 +2 -2
- package/build/main.min.js +1 -1
- package/build/main.mjs +2 -2
- package/package.json +1 -1
package/build/main.mjs
CHANGED
|
@@ -7846,7 +7846,7 @@ var createObjectComponent = (objectProps) => {
|
|
|
7846
7846
|
);
|
|
7847
7847
|
},
|
|
7848
7848
|
validate() {
|
|
7849
|
-
return validateComponents(this.getChildren());
|
|
7849
|
+
return hidden ? true : validateComponents(this.getChildren());
|
|
7850
7850
|
}
|
|
7851
7851
|
};
|
|
7852
7852
|
};
|
|
@@ -9392,7 +9392,7 @@ var createTupleComponent = (tupleProps) => {
|
|
|
9392
9392
|
return this.components.map((child) => child.getLocalValue());
|
|
9393
9393
|
},
|
|
9394
9394
|
validate() {
|
|
9395
|
-
return validateComponents(this.getChildren());
|
|
9395
|
+
return hidden ? true : validateComponents(this.getChildren());
|
|
9396
9396
|
}
|
|
9397
9397
|
};
|
|
9398
9398
|
};
|