@elite.framework/ng.core 1.0.40 → 1.0.42
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
|
@@ -923,6 +923,7 @@ declare class GenericSelectorTypeComponent extends FieldType$1<FieldTypeConfig<G
|
|
|
923
923
|
onSelectionChange(val: any): void;
|
|
924
924
|
private initOfflineSelection;
|
|
925
925
|
private initOnlineSelection;
|
|
926
|
+
getFixedFilters(): any;
|
|
926
927
|
search(event: {
|
|
927
928
|
query: string;
|
|
928
929
|
}): void;
|
|
@@ -983,10 +984,13 @@ declare class LabelTypeComponent extends FieldType$1 {
|
|
|
983
984
|
static ɵcmp: i0.ɵɵComponentDeclaration<LabelTypeComponent, "formly-label-type", never, {}, {}, never, never, true, never>;
|
|
984
985
|
}
|
|
985
986
|
|
|
986
|
-
declare class RepeatTypeComponent extends FieldArrayType {
|
|
987
|
+
declare class RepeatTypeComponent extends FieldArrayType implements OnInit {
|
|
988
|
+
private cdr;
|
|
987
989
|
getFirstRowColumns(): i5.FormlyFieldConfig<i5.FormlyFieldProps & {
|
|
988
990
|
[additionalProperties: string]: any;
|
|
989
991
|
}>[];
|
|
992
|
+
constructor(cdr: ChangeDetectorRef);
|
|
993
|
+
ngOnInit(): void;
|
|
990
994
|
static ɵfac: i0.ɵɵFactoryDeclaration<RepeatTypeComponent, never>;
|
|
991
995
|
static ɵcmp: i0.ɵɵComponentDeclaration<RepeatTypeComponent, "formly-repeat-section", never, {}, {}, never, never, true, never>;
|
|
992
996
|
}
|