@bolttech/form-engine-core 1.0.0-beta.18 → 1.0.0-beta.19
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/index.esm.js +3 -1
- package/package.json +1 -1
package/index.esm.js
CHANGED
|
@@ -4391,7 +4391,9 @@ class FormGroup {
|
|
|
4391
4391
|
formIndex
|
|
4392
4392
|
}) => ids.includes(formIndex)), groupBy(({
|
|
4393
4393
|
formIndex
|
|
4394
|
-
}) => formIndex), mergeMap(group$ => group$.pipe(debounceTime(this.config.defaultStateRefreshTimeMS))),
|
|
4394
|
+
}) => formIndex), mergeMap(group$ => group$.pipe(debounceTime(this.config.defaultStateRefreshTimeMS))), startWith({
|
|
4395
|
+
fieldTrigger: null
|
|
4396
|
+
}), map(() => ({
|
|
4395
4397
|
groupValid: ids.every(id => {
|
|
4396
4398
|
var _a;
|
|
4397
4399
|
return (_a = this.forms.get(id)) === null || _a === void 0 ? void 0 : _a.valid;
|