@alauda/ui 6.3.1-beta.10 → 6.3.1-beta.11
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/fesm2020/alauda-ui.mjs
CHANGED
|
@@ -2923,8 +2923,8 @@ class CommonFormControl {
|
|
|
2923
2923
|
this._disabled = false;
|
|
2924
2924
|
this.model = null;
|
|
2925
2925
|
this.model$ = new ReplaySubject(1);
|
|
2926
|
-
this.model$.subscribe(
|
|
2927
|
-
this.model =
|
|
2926
|
+
this.model$.subscribe(model => {
|
|
2927
|
+
this.model = model;
|
|
2928
2928
|
this.cdr.markForCheck();
|
|
2929
2929
|
});
|
|
2930
2930
|
}
|
|
@@ -2973,11 +2973,11 @@ class CommonFormControl {
|
|
|
2973
2973
|
}
|
|
2974
2974
|
this.valueChange.emit(value);
|
|
2975
2975
|
}
|
|
2976
|
-
valueIn(
|
|
2977
|
-
return
|
|
2976
|
+
valueIn(value) {
|
|
2977
|
+
return value;
|
|
2978
2978
|
}
|
|
2979
|
-
modelOut(
|
|
2980
|
-
return
|
|
2979
|
+
modelOut(model) {
|
|
2980
|
+
return model;
|
|
2981
2981
|
}
|
|
2982
2982
|
}
|
|
2983
2983
|
CommonFormControl.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.3", ngImport: i0, type: CommonFormControl, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|