@osovitny/anatoly 3.20.29 → 3.20.30
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/fesm2022/osovitny-anatoly.mjs +23 -21
- package/fesm2022/osovitny-anatoly.mjs.map +1 -1
- package/index.d.ts +12 -11
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -868,6 +868,15 @@ declare abstract class EditComponentBase extends ComponentBase {
|
|
|
868
868
|
formSubmitted: boolean;
|
|
869
869
|
controlName: string;
|
|
870
870
|
controlTitle: string;
|
|
871
|
+
/**
|
|
872
|
+
* returns formgroup controls.
|
|
873
|
+
* main use case is used in html pages
|
|
874
|
+
*/
|
|
875
|
+
get fc(): {
|
|
876
|
+
[key: string]: AbstractControl<any, any, any>;
|
|
877
|
+
};
|
|
878
|
+
get isNgModelBased(): boolean;
|
|
879
|
+
get isFormBased(): boolean;
|
|
871
880
|
constructor();
|
|
872
881
|
isControlValid(name: string, frmGroup?: FormGroup): boolean;
|
|
873
882
|
isControlInvalid(name: string, frmGroup?: FormGroup): boolean;
|
|
@@ -908,14 +917,6 @@ declare abstract class EditComponentBase extends ComponentBase {
|
|
|
908
917
|
* @param frmGroup
|
|
909
918
|
*/
|
|
910
919
|
setInValidError(controlName: string, frmGroup?: FormGroup): void;
|
|
911
|
-
/**
|
|
912
|
-
* returns formgroup controls.
|
|
913
|
-
* main use case is used in html pages
|
|
914
|
-
*/
|
|
915
|
-
get fc(): {
|
|
916
|
-
[key: string]: AbstractControl<any, any, any>;
|
|
917
|
-
};
|
|
918
|
-
get isNgModelBased(): boolean;
|
|
919
920
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditComponentBase, never>;
|
|
920
921
|
static ɵcmp: i0.ɵɵComponentDeclaration<EditComponentBase, "ng-component", never, { "formGroup": { "alias": "formGroup"; "required": false; }; "formSubmitted": { "alias": "formSubmitted"; "required": false; }; "controlName": { "alias": "controlName"; "required": false; }; "controlTitle": { "alias": "controlTitle"; "required": false; }; }, {}, never, never, true, never>;
|
|
921
922
|
}
|
|
@@ -1540,16 +1541,17 @@ declare abstract class PagedPageBase extends PageBase {
|
|
|
1540
1541
|
}
|
|
1541
1542
|
|
|
1542
1543
|
declare abstract class ListBase extends ComponentBase implements OnInit {
|
|
1543
|
-
|
|
1544
|
-
dataLoaded: boolean;
|
|
1544
|
+
private _currentFilter;
|
|
1545
1545
|
items: any[];
|
|
1546
1546
|
totalItems: number;
|
|
1547
1547
|
skipItems: number;
|
|
1548
1548
|
currentPage: number;
|
|
1549
|
+
dataLoaded: boolean;
|
|
1549
1550
|
pageSize: number;
|
|
1550
1551
|
autoDataLoading: boolean;
|
|
1551
1552
|
filterRequest: EventEmitter<any>;
|
|
1552
1553
|
dataChange: EventEmitter<any>;
|
|
1554
|
+
get currentFilter(): any;
|
|
1553
1555
|
ngOnInit(): void;
|
|
1554
1556
|
protected init(): void;
|
|
1555
1557
|
protected fireFilterRequest(): void;
|
|
@@ -1650,7 +1652,6 @@ declare class HtmlEditorComponent extends HtmlEditorComponentBase {
|
|
|
1650
1652
|
constructor();
|
|
1651
1653
|
getHtml(): any;
|
|
1652
1654
|
setHtml(content: any): void;
|
|
1653
|
-
setFormValueAfterInitialized(name: any, value: any): void;
|
|
1654
1655
|
static ɵfac: i0.ɵɵFactoryDeclaration<HtmlEditorComponent, never>;
|
|
1655
1656
|
static ɵcmp: i0.ɵɵComponentDeclaration<HtmlEditorComponent, "anatoly-html-editor", never, {}, {}, never, never, false, never>;
|
|
1656
1657
|
}
|