@piying/view-angular-core 1.9.0 → 1.9.2
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.d.ts
CHANGED
|
@@ -134,6 +134,7 @@ declare abstract class AbstractControl<TValue = any> {
|
|
|
134
134
|
updateValue(value: any): void;
|
|
135
135
|
config$: FieldFormConfig$;
|
|
136
136
|
protected getInitValue(value: any): any;
|
|
137
|
+
protected transfomerToModel$$: Signal<((value: any, control: AbstractControl) => any) | undefined>;
|
|
137
138
|
find(name: string | number): AbstractControl | null;
|
|
138
139
|
setControl(name: string | number, control: AbstractControl): void;
|
|
139
140
|
/** 校验和获得值用 */
|