@alauda-fe/dynamic-plugin-shared 0.0.1-alpha.7 → 0.0.1-alpha.8
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/array-form-table/form/component.d.ts +1 -1
- package/array-form-table/form/index.d.ts +1 -0
- package/array-form-table/index.d.ts +1 -1
- package/esm2022/array-form-table/form/index.mjs +2 -1
- package/esm2022/array-form-table/index.mjs +2 -2
- package/fesm2022/alauda-fe-dynamic-plugin-shared.mjs +1 -1
- package/fesm2022/alauda-fe-dynamic-plugin-shared.mjs.map +1 -1
- package/form/base-nested-form-control.d.ts +1 -1
- package/package.json +1 -1
- package/utils/version.d.ts +1 -1
|
@@ -21,7 +21,7 @@ export declare class BaseNestedFormControl<V, M = V> implements AfterViewInit, O
|
|
|
21
21
|
protected asyncValidator: boolean;
|
|
22
22
|
protected cdr: ChangeDetectorRef;
|
|
23
23
|
protected destroy$$: Subject<void>;
|
|
24
|
-
protected hostForm:
|
|
24
|
+
protected hostForm: NgForm | FormGroupDirective;
|
|
25
25
|
constructor();
|
|
26
26
|
ngAfterViewInit(): void;
|
|
27
27
|
ngOnDestroy(): void;
|
package/package.json
CHANGED
package/utils/version.d.ts
CHANGED
|
@@ -36,4 +36,4 @@ export declare const compareVersion: {
|
|
|
36
36
|
gte: (v1: string, v2: string) => boolean;
|
|
37
37
|
cmp: (v1: string, v2: string, operator: CompareOperator) => boolean;
|
|
38
38
|
};
|
|
39
|
-
export declare const compareMinorVersion: (v1: string, v2: string) =>
|
|
39
|
+
export declare const compareMinorVersion: (v1: string, v2: string) => 1 | 0 | -1;
|