monkey-front-components 0.0.669 → 0.0.671
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/esm2020/lib/components/base/base-dynamic-array.mjs +2 -2
- package/esm2020/lib/components/base/base-dynamic.mjs +2 -2
- package/fesm2015/monkey-front-components.mjs +2 -2
- package/fesm2015/monkey-front-components.mjs.map +1 -1
- package/fesm2020/monkey-front-components.mjs +2 -2
- package/fesm2020/monkey-front-components.mjs.map +1 -1
- package/monkey-front-components-0.0.671.tgz +0 -0
- package/package.json +5 -5
- package/monkey-front-components-0.0.669.tgz +0 -0
|
@@ -546,7 +546,7 @@ class BaseDynamicArray extends BaseComponent {
|
|
|
546
546
|
if (this.enableListenerFormChange) {
|
|
547
547
|
this._form.markAsUntouched();
|
|
548
548
|
this._form.valueChanges
|
|
549
|
-
.pipe(debounceTime(
|
|
549
|
+
.pipe(debounceTime(400), takeUntil(this.__unsubscribeAll))
|
|
550
550
|
.subscribe(() => {
|
|
551
551
|
this.onFormChange.next(this._form);
|
|
552
552
|
});
|
|
@@ -655,7 +655,7 @@ class BaseDynamic extends BaseComponent {
|
|
|
655
655
|
if (this.enableListenerFormChange) {
|
|
656
656
|
this._form.markAsUntouched();
|
|
657
657
|
this._form.valueChanges
|
|
658
|
-
.pipe(debounceTime(
|
|
658
|
+
.pipe(debounceTime(400), takeUntil(this.__unsubscribeAll))
|
|
659
659
|
.subscribe(() => {
|
|
660
660
|
this.onFormChange.next(this._form);
|
|
661
661
|
});
|