@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.
Files changed (2) hide show
  1. package/index.esm.js +4 -1
  2. 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')).subscribe({
4135
+ })), distinctUntilKeyChanged('valid'), startWith({
4136
+ formIndex: this.index,
4137
+ valid: this.valid
4138
+ })).subscribe({
4136
4139
  next: callback
4137
4140
  });
4138
4141
  return sub;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bolttech/form-engine-core",
3
- "version": "1.0.0-beta.22",
3
+ "version": "1.0.0-beta.23",
4
4
  "module": "./index.esm.js",
5
5
  "type": "module",
6
6
  "main": "./index.esm.js",