@bolttech/form-engine-core 1.0.0-beta.22 → 1.0.0-beta.23
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 +4 -1
- package/package.json +1 -1
package/index.esm.js
CHANGED
|
@@ -4132,7 +4132,10 @@ class FormCore {
|
|
|
4132
4132
|
}) => this.index === formIndex), debounceTime(this.config.defaultStateRefreshTimeMS), map(() => ({
|
|
4133
4133
|
formIndex: this.index,
|
|
4134
4134
|
valid: this.valid
|
|
4135
|
-
})), distinctUntilKeyChanged('valid')
|
|
4135
|
+
})), distinctUntilKeyChanged('valid'), startWith({
|
|
4136
|
+
formIndex: this.index,
|
|
4137
|
+
valid: this.valid
|
|
4138
|
+
})).subscribe({
|
|
4136
4139
|
next: callback
|
|
4137
4140
|
});
|
|
4138
4141
|
return sub;
|